blob: e5dfccffd6c29b3de1eedc0063fd409fc049cf85 [file] [log] [blame]
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001//===- lib/MC/MCDwarf.cpp - MCDwarf implementation ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Rafael Espindolabdc31672010-12-27 15:56:22 +000010#include "llvm/ADT/FoldingSet.h"
Rafael Espindola767b1be2010-12-04 00:31:13 +000011#include "llvm/MC/MCAsmInfo.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000012#include "llvm/MC/MCDwarf.h"
Kevin Enderbyc0957932010-09-30 16:52:03 +000013#include "llvm/MC/MCAssembler.h"
Rafael Espindolaad8aaa02010-11-22 11:53:17 +000014#include "llvm/MC/MCStreamer.h"
Kevin Enderbyc0957932010-09-30 16:52:03 +000015#include "llvm/MC/MCSymbol.h"
16#include "llvm/MC/MCExpr.h"
17#include "llvm/MC/MCContext.h"
18#include "llvm/MC/MCObjectWriter.h"
19#include "llvm/ADT/SmallString.h"
Rafael Espindolaa8cfb872011-04-28 02:46:42 +000020#include "llvm/ADT/Twine.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000021#include "llvm/Support/Debug.h"
Rafael Espindolafe024d02010-12-28 18:36:23 +000022#include "llvm/Support/ErrorHandling.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000023#include "llvm/Support/raw_ostream.h"
Kevin Enderbyc0957932010-09-30 16:52:03 +000024#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000025#include "llvm/Target/TargetAsmInfo.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000026using namespace llvm;
27
Kevin Enderbyc0957932010-09-30 16:52:03 +000028// Given a special op, return the address skip amount (in units of
29// DWARF2_LINE_MIN_INSN_LENGTH.
30#define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
31
32// The maximum address skip amount that can be encoded with a special op.
33#define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
34
35// First special line opcode - leave room for the standard opcodes.
36// Note: If you want to change this, you'll have to update the
37// "standard_opcode_lengths" table that is emitted in DwarfFileTable::Emit().
38#define DWARF2_LINE_OPCODE_BASE 13
39
40// Minimum line offset in a special line info. opcode. This value
41// was chosen to give a reasonable range of values.
42#define DWARF2_LINE_BASE -5
43
44// Range of line offsets in a special line info. opcode.
45# define DWARF2_LINE_RANGE 14
46
47// Define the architecture-dependent minimum instruction length (in bytes).
48// This value should be rather too small than too big.
49# define DWARF2_LINE_MIN_INSN_LENGTH 1
50
51// Note: when DWARF2_LINE_MIN_INSN_LENGTH == 1 which is the current setting,
52// this routine is a nop and will be optimized away.
53static inline uint64_t ScaleAddrDelta(uint64_t AddrDelta)
54{
55 if (DWARF2_LINE_MIN_INSN_LENGTH == 1)
56 return AddrDelta;
57 if (AddrDelta % DWARF2_LINE_MIN_INSN_LENGTH != 0) {
58 // TODO: report this error, but really only once.
59 ;
60 }
61 return AddrDelta / DWARF2_LINE_MIN_INSN_LENGTH;
62}
63
64//
65// This is called when an instruction is assembled into the specified section
66// and if there is information from the last .loc directive that has yet to have
67// a line entry made for it is made.
68//
Rafael Espindola195a0ce2010-11-19 02:26:16 +000069void MCLineEntry::Make(MCStreamer *MCOS, const MCSection *Section) {
Kevin Enderbyc0957932010-09-30 16:52:03 +000070 if (!MCOS->getContext().getDwarfLocSeen())
71 return;
72
73 // Create a symbol at in the current section for use in the line entry.
74 MCSymbol *LineSym = MCOS->getContext().CreateTempSymbol();
75 // Set the value of the symbol to use for the MCLineEntry.
76 MCOS->EmitLabel(LineSym);
77
78 // Get the current .loc info saved in the context.
79 const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
80
81 // Create a (local) line entry with the symbol and the current .loc info.
82 MCLineEntry LineEntry(LineSym, DwarfLoc);
83
84 // clear DwarfLocSeen saying the current .loc info is now used.
Kevin Enderby3f55c242010-10-04 20:17:24 +000085 MCOS->getContext().ClearDwarfLocSeen();
Kevin Enderbyc0957932010-09-30 16:52:03 +000086
87 // Get the MCLineSection for this section, if one does not exist for this
88 // section create it.
Rafael Espindola17fd7bd2010-11-19 07:41:23 +000089 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
Kevin Enderbyc0957932010-09-30 16:52:03 +000090 MCOS->getContext().getMCLineSections();
Rafael Espindola17fd7bd2010-11-19 07:41:23 +000091 MCLineSection *LineSection = MCLineSections.lookup(Section);
Kevin Enderbyc0957932010-09-30 16:52:03 +000092 if (!LineSection) {
93 // Create a new MCLineSection. This will be deleted after the dwarf line
94 // table is created using it by iterating through the MCLineSections
95 // DenseMap.
96 LineSection = new MCLineSection;
97 // Save a pointer to the new LineSection into the MCLineSections DenseMap.
Rafael Espindola17fd7bd2010-11-19 07:41:23 +000098 MCOS->getContext().addMCLineSection(Section, LineSection);
Kevin Enderbyc0957932010-09-30 16:52:03 +000099 }
100
101 // Add the line entry to this section's entries.
102 LineSection->addLineEntry(LineEntry);
103}
104
105//
106// This helper routine returns an expression of End - Start + IntVal .
107//
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000108static inline const MCExpr *MakeStartMinusEndExpr(const MCStreamer &MCOS,
109 const MCSymbol &Start,
110 const MCSymbol &End,
111 int IntVal) {
Kevin Enderbyc0957932010-09-30 16:52:03 +0000112 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
113 const MCExpr *Res =
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000114 MCSymbolRefExpr::Create(&End, Variant, MCOS.getContext());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000115 const MCExpr *RHS =
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000116 MCSymbolRefExpr::Create(&Start, Variant, MCOS.getContext());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000117 const MCExpr *Res1 =
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000118 MCBinaryExpr::Create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000119 const MCExpr *Res2 =
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000120 MCConstantExpr::Create(IntVal, MCOS.getContext());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000121 const MCExpr *Res3 =
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000122 MCBinaryExpr::Create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000123 return Res3;
124}
125
Kevin Enderbyc0957932010-09-30 16:52:03 +0000126//
127// This emits the Dwarf line table for the specified section from the entries
128// in the LineSection.
129//
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000130static inline void EmitDwarfLineTable(MCStreamer *MCOS,
Kevin Enderbyc0957932010-09-30 16:52:03 +0000131 const MCSection *Section,
Rafael Espindola89b93722010-12-10 07:39:47 +0000132 const MCLineSection *LineSection) {
Kevin Enderbyc0957932010-09-30 16:52:03 +0000133 unsigned FileNum = 1;
134 unsigned LastLine = 1;
135 unsigned Column = 0;
136 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
137 unsigned Isa = 0;
Kevin Enderbyc0957932010-09-30 16:52:03 +0000138 MCSymbol *LastLabel = NULL;
Kevin Enderbyc0957932010-09-30 16:52:03 +0000139
140 // Loop through each MCLineEntry and encode the dwarf line number table.
Rafael Espindola17fd7bd2010-11-19 07:41:23 +0000141 for (MCLineSection::const_iterator
Kevin Enderbyc0957932010-09-30 16:52:03 +0000142 it = LineSection->getMCLineEntries()->begin(),
143 ie = LineSection->getMCLineEntries()->end(); it != ie; ++it) {
144
145 if (FileNum != it->getFileNum()) {
146 FileNum = it->getFileNum();
147 MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000148 MCOS->EmitULEB128IntValue(FileNum);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000149 }
150 if (Column != it->getColumn()) {
151 Column = it->getColumn();
152 MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000153 MCOS->EmitULEB128IntValue(Column);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000154 }
155 if (Isa != it->getIsa()) {
156 Isa = it->getIsa();
157 MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000158 MCOS->EmitULEB128IntValue(Isa);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000159 }
160 if ((it->getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
161 Flags = it->getFlags();
162 MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
163 }
164 if (it->getFlags() & DWARF2_FLAG_BASIC_BLOCK)
165 MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
166 if (it->getFlags() & DWARF2_FLAG_PROLOGUE_END)
167 MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
168 if (it->getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
169 MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
170
Rafael Espindola64185cc2010-11-13 01:06:27 +0000171 int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
Kevin Enderbyc0957932010-09-30 16:52:03 +0000172 MCSymbol *Label = it->getLabel();
173
174 // At this point we want to emit/create the sequence to encode the delta in
175 // line numbers and the increment of the address from the previous Label
176 // and the current Label.
Rafael Espindola32a006e2010-12-03 00:55:40 +0000177 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000178
179 LastLine = it->getLine();
180 LastLabel = Label;
Kevin Enderbyc0957932010-09-30 16:52:03 +0000181 }
182
183 // Emit a DW_LNE_end_sequence for the end of the section.
184 // Using the pointer Section create a temporary label at the end of the
185 // section and use that and the LastLabel to compute the address delta
186 // and use INT64_MAX as the line delta which is the signal that this is
187 // actually a DW_LNE_end_sequence.
188
189 // Switch to the section to be able to create a symbol at its end.
190 MCOS->SwitchSection(Section);
Rafael Espindola89b93722010-12-10 07:39:47 +0000191
192 MCContext &context = MCOS->getContext();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000193 // Create a symbol at the end of the section.
Rafael Espindola89b93722010-12-10 07:39:47 +0000194 MCSymbol *SectionEnd = context.CreateTempSymbol();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000195 // Set the value of the symbol, as we are at the end of the section.
196 MCOS->EmitLabel(SectionEnd);
197
198 // Switch back the the dwarf line section.
Rafael Espindola89b93722010-12-10 07:39:47 +0000199 MCOS->SwitchSection(context.getTargetAsmInfo().getDwarfLineSection());
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000200
Rafael Espindola32a006e2010-12-03 00:55:40 +0000201 MCOS->EmitDwarfAdvanceLineAddr(INT64_MAX, LastLabel, SectionEnd);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000202}
203
204//
205// This emits the Dwarf file and the line tables.
206//
Rafael Espindola89b93722010-12-10 07:39:47 +0000207void MCDwarfFileTable::Emit(MCStreamer *MCOS) {
208 MCContext &context = MCOS->getContext();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000209 // Switch to the section where the table will be emitted into.
Rafael Espindola89b93722010-12-10 07:39:47 +0000210 MCOS->SwitchSection(context.getTargetAsmInfo().getDwarfLineSection());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000211
212 // Create a symbol at the beginning of this section.
Rafael Espindola89b93722010-12-10 07:39:47 +0000213 MCSymbol *LineStartSym = context.CreateTempSymbol();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000214 // Set the value of the symbol, as we are at the start of the section.
215 MCOS->EmitLabel(LineStartSym);
216
217 // Create a symbol for the end of the section (to be set when we get there).
Rafael Espindola89b93722010-12-10 07:39:47 +0000218 MCSymbol *LineEndSym = context.CreateTempSymbol();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000219
220 // The first 4 bytes is the total length of the information for this
221 // compilation unit (not including these 4 bytes for the length).
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000222 MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *LineEndSym,4),
Rafael Espindola0bbe0b42010-12-06 17:27:56 +0000223 4);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000224
225 // Next 2 bytes is the Version, which is Dwarf 2.
226 MCOS->EmitIntValue(2, 2);
227
228 // Create a symbol for the end of the prologue (to be set when we get there).
Rafael Espindola89b93722010-12-10 07:39:47 +0000229 MCSymbol *ProEndSym = context.CreateTempSymbol(); // Lprologue_end
Kevin Enderbyc0957932010-09-30 16:52:03 +0000230
231 // Length of the prologue, is the next 4 bytes. Which is the start of the
232 // section to the end of the prologue. Not including the 4 bytes for the
233 // total length, the 2 bytes for the version, and these 4 bytes for the
234 // length of the prologue.
Rafael Espindola5fad7a92010-12-09 23:08:35 +0000235 MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *ProEndSym,
Kevin Enderbyc0957932010-09-30 16:52:03 +0000236 (4 + 2 + 4)),
Rafael Espindola5d4918d2010-12-04 03:21:47 +0000237 4, 0);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000238
239 // Parameters of the state machine, are next.
240 MCOS->EmitIntValue(DWARF2_LINE_MIN_INSN_LENGTH, 1);
241 MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
242 MCOS->EmitIntValue(DWARF2_LINE_BASE, 1);
243 MCOS->EmitIntValue(DWARF2_LINE_RANGE, 1);
244 MCOS->EmitIntValue(DWARF2_LINE_OPCODE_BASE, 1);
245
246 // Standard opcode lengths
247 MCOS->EmitIntValue(0, 1); // length of DW_LNS_copy
248 MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_pc
249 MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_line
250 MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_file
251 MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_column
252 MCOS->EmitIntValue(0, 1); // length of DW_LNS_negate_stmt
253 MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_basic_block
254 MCOS->EmitIntValue(0, 1); // length of DW_LNS_const_add_pc
255 MCOS->EmitIntValue(1, 1); // length of DW_LNS_fixed_advance_pc
256 MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_prologue_end
257 MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_epilogue_begin
258 MCOS->EmitIntValue(1, 1); // DW_LNS_set_isa
259
260 // Put out the directory and file tables.
261
262 // First the directory table.
263 const std::vector<StringRef> &MCDwarfDirs =
Rafael Espindola89b93722010-12-10 07:39:47 +0000264 context.getMCDwarfDirs();
Kevin Enderbyc0957932010-09-30 16:52:03 +0000265 for (unsigned i = 0; i < MCDwarfDirs.size(); i++) {
266 MCOS->EmitBytes(MCDwarfDirs[i], 0); // the DirectoryName
267 MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
268 }
269 MCOS->EmitIntValue(0, 1); // Terminate the directory list
270
271 // Second the file table.
272 const std::vector<MCDwarfFile *> &MCDwarfFiles =
273 MCOS->getContext().getMCDwarfFiles();
274 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
275 MCOS->EmitBytes(MCDwarfFiles[i]->getName(), 0); // FileName
276 MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
Rafael Espindola3ff57092010-11-02 17:22:24 +0000277 // the Directory num
278 MCOS->EmitULEB128IntValue(MCDwarfFiles[i]->getDirIndex());
Kevin Enderbyc0957932010-09-30 16:52:03 +0000279 MCOS->EmitIntValue(0, 1); // last modification timestamp (always 0)
280 MCOS->EmitIntValue(0, 1); // filesize (always 0)
281 }
282 MCOS->EmitIntValue(0, 1); // Terminate the file list
283
284 // This is the end of the prologue, so set the value of the symbol at the
285 // end of the prologue (that was used in a previous expression).
286 MCOS->EmitLabel(ProEndSym);
287
288 // Put out the line tables.
Rafael Espindola17fd7bd2010-11-19 07:41:23 +0000289 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
Kevin Enderbyc0957932010-09-30 16:52:03 +0000290 MCOS->getContext().getMCLineSections();
Rafael Espindola17fd7bd2010-11-19 07:41:23 +0000291 const std::vector<const MCSection *> &MCLineSectionOrder =
292 MCOS->getContext().getMCLineSectionOrder();
293 for (std::vector<const MCSection*>::const_iterator it =
294 MCLineSectionOrder.begin(), ie = MCLineSectionOrder.end(); it != ie;
295 ++it) {
296 const MCSection *Sec = *it;
297 const MCLineSection *Line = MCLineSections.lookup(Sec);
Rafael Espindola89b93722010-12-10 07:39:47 +0000298 EmitDwarfLineTable(MCOS, Sec, Line);
Kevin Enderbyc0957932010-09-30 16:52:03 +0000299
300 // Now delete the MCLineSections that were created in MCLineEntry::Make()
301 // and used to emit the line table.
Rafael Espindola17fd7bd2010-11-19 07:41:23 +0000302 delete Line;
Kevin Enderbyc0957932010-09-30 16:52:03 +0000303 }
304
Rafael Espindola767b1be2010-12-04 00:31:13 +0000305 if (MCOS->getContext().getAsmInfo().getLinkerRequiresNonEmptyDwarfLines()
306 && MCLineSectionOrder.begin() == MCLineSectionOrder.end()) {
Rafael Espindolaa8de83c2010-12-03 23:36:59 +0000307 // The darwin9 linker has a bug (see PR8715). For for 32-bit architectures
308 // it requires:
309 // total_length >= prologue_length + 10
310 // We are 4 bytes short, since we have total_length = 51 and
311 // prologue_length = 45
Devang Patel5113cdb2010-12-03 00:10:48 +0000312
Rafael Espindolaa8de83c2010-12-03 23:36:59 +0000313 // The regular end_sequence should be sufficient.
314 MCDwarfLineAddr::Emit(MCOS, INT64_MAX, 0);
Devang Patel5113cdb2010-12-03 00:10:48 +0000315 }
316
Kevin Enderbyc0957932010-09-30 16:52:03 +0000317 // This is the end of the section, so set the value of the symbol at the end
318 // of this section (that was used in a previous expression).
319 MCOS->EmitLabel(LineEndSym);
320}
321
Kevin Enderbyc0957932010-09-30 16:52:03 +0000322/// Utility function to write the encoding to an object writer.
323void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
324 uint64_t AddrDelta) {
325 SmallString<256> Tmp;
326 raw_svector_ostream OS(Tmp);
327 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
328 OW->WriteBytes(OS.str());
329}
330
331/// Utility function to emit the encoding to a streamer.
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000332void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
Kevin Enderbyc0957932010-09-30 16:52:03 +0000333 uint64_t AddrDelta) {
334 SmallString<256> Tmp;
335 raw_svector_ostream OS(Tmp);
336 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
337 MCOS->EmitBytes(OS.str(), /*AddrSpace=*/0);
338}
339
340/// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
341void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
342 raw_ostream &OS) {
343 uint64_t Temp, Opcode;
344 bool NeedCopy = false;
345
346 // Scale the address delta by the minimum instruction length.
347 AddrDelta = ScaleAddrDelta(AddrDelta);
348
349 // A LineDelta of INT64_MAX is a signal that this is actually a
350 // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the
351 // end_sequence to emit the matrix entry.
352 if (LineDelta == INT64_MAX) {
353 if (AddrDelta == MAX_SPECIAL_ADDR_DELTA)
354 OS << char(dwarf::DW_LNS_const_add_pc);
355 else {
356 OS << char(dwarf::DW_LNS_advance_pc);
357 SmallString<32> Tmp;
358 raw_svector_ostream OSE(Tmp);
359 MCObjectWriter::EncodeULEB128(AddrDelta, OSE);
360 OS << OSE.str();
361 }
362 OS << char(dwarf::DW_LNS_extended_op);
363 OS << char(1);
364 OS << char(dwarf::DW_LNE_end_sequence);
365 return;
366 }
367
368 // Bias the line delta by the base.
369 Temp = LineDelta - DWARF2_LINE_BASE;
370
371 // If the line increment is out of range of a special opcode, we must encode
372 // it with DW_LNS_advance_line.
373 if (Temp >= DWARF2_LINE_RANGE) {
374 OS << char(dwarf::DW_LNS_advance_line);
375 SmallString<32> Tmp;
376 raw_svector_ostream OSE(Tmp);
377 MCObjectWriter::EncodeSLEB128(LineDelta, OSE);
378 OS << OSE.str();
379
380 LineDelta = 0;
381 Temp = 0 - DWARF2_LINE_BASE;
382 NeedCopy = true;
383 }
384
385 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
386 if (LineDelta == 0 && AddrDelta == 0) {
387 OS << char(dwarf::DW_LNS_copy);
388 return;
389 }
390
391 // Bias the opcode by the special opcode base.
392 Temp += DWARF2_LINE_OPCODE_BASE;
393
394 // Avoid overflow when addr_delta is large.
395 if (AddrDelta < 256 + MAX_SPECIAL_ADDR_DELTA) {
396 // Try using a special opcode.
397 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
398 if (Opcode <= 255) {
399 OS << char(Opcode);
400 return;
401 }
402
403 // Try using DW_LNS_const_add_pc followed by special op.
404 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
405 if (Opcode <= 255) {
406 OS << char(dwarf::DW_LNS_const_add_pc);
407 OS << char(Opcode);
408 return;
409 }
410 }
411
412 // Otherwise use DW_LNS_advance_pc.
413 OS << char(dwarf::DW_LNS_advance_pc);
414 SmallString<32> Tmp;
415 raw_svector_ostream OSE(Tmp);
416 MCObjectWriter::EncodeULEB128(AddrDelta, OSE);
417 OS << OSE.str();
418
419 if (NeedCopy)
420 OS << char(dwarf::DW_LNS_copy);
421 else
422 OS << char(Temp);
423}
424
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000425void MCDwarfFile::print(raw_ostream &OS) const {
426 OS << '"' << getName() << '"';
427}
428
429void MCDwarfFile::dump() const {
430 print(dbgs());
431}
Kevin Enderbyc0957932010-09-30 16:52:03 +0000432
Rafael Espindola89b93722010-12-10 07:39:47 +0000433static int getDataAlignmentFactor(MCStreamer &streamer) {
434 MCContext &context = streamer.getContext();
435 const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
436 int size = asmInfo.getPointerSize();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000437 if (asmInfo.getStackGrowthDirection() == TargetFrameLowering::StackGrowsUp)
Rafael Espindola89b93722010-12-10 07:39:47 +0000438 return size;
439 else
440 return -size;
441}
442
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000443static unsigned getSizeForEncoding(MCStreamer &streamer,
444 unsigned symbolEncoding) {
Rafael Espindolabdc31672010-12-27 15:56:22 +0000445 MCContext &context = streamer.getContext();
446 const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
447 unsigned format = symbolEncoding & 0x0f;
Rafael Espindolabdc31672010-12-27 15:56:22 +0000448 switch (format) {
449 default:
450 assert(0 && "Unknown Encoding");
Rafael Espindolabdc31672010-12-27 15:56:22 +0000451 case dwarf::DW_EH_PE_absptr:
452 case dwarf::DW_EH_PE_signed:
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000453 return asmInfo.getPointerSize();
Rafael Espindolabdc31672010-12-27 15:56:22 +0000454 case dwarf::DW_EH_PE_udata2:
455 case dwarf::DW_EH_PE_sdata2:
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000456 return 2;
Rafael Espindolabdc31672010-12-27 15:56:22 +0000457 case dwarf::DW_EH_PE_udata4:
458 case dwarf::DW_EH_PE_sdata4:
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000459 return 4;
Rafael Espindolabdc31672010-12-27 15:56:22 +0000460 case dwarf::DW_EH_PE_udata8:
461 case dwarf::DW_EH_PE_sdata8:
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000462 return 8;
Rafael Espindolabdc31672010-12-27 15:56:22 +0000463 }
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000464}
465
466static void EmitSymbol(MCStreamer &streamer, const MCSymbol &symbol,
467 unsigned symbolEncoding) {
Rafael Espindolaa0057ca2011-04-28 21:04:39 +0000468 MCContext &context = streamer.getContext();
469 const MCAsmInfo &asmInfo = context.getAsmInfo();
470 const MCExpr *v = asmInfo.getExprForFDESymbol(&symbol,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000471 symbolEncoding,
Rafael Espindolaa0057ca2011-04-28 21:04:39 +0000472 streamer);
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000473 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000474 streamer.EmitAbsValue(v, size);
Rafael Espindolabdc31672010-12-27 15:56:22 +0000475}
476
Rafael Espindolabfa27cc2011-04-28 16:09:09 +0000477static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
478 unsigned symbolEncoding) {
479 MCContext &context = streamer.getContext();
480 const MCAsmInfo &asmInfo = context.getAsmInfo();
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000481 const MCExpr *v = asmInfo.getExprForPersonalitySymbol(&symbol,
482 symbolEncoding,
483 streamer);
Rafael Espindolabfa27cc2011-04-28 16:09:09 +0000484 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000485 streamer.EmitValue(v, size);
Rafael Espindolabfa27cc2011-04-28 16:09:09 +0000486}
487
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000488static const MachineLocation TranslateMachineLocation(
489 const TargetAsmInfo &AsmInfo,
490 const MachineLocation &Loc) {
491 unsigned Reg = Loc.getReg() == MachineLocation::VirtualFP ?
492 MachineLocation::VirtualFP :
493 unsigned(AsmInfo.getDwarfRegNum(Loc.getReg(), true));
494 const MachineLocation &NewLoc = Loc.isReg() ?
495 MachineLocation(Reg) : MachineLocation(Reg, Loc.getOffset());
496 return NewLoc;
497}
498
Rafael Espindola25f492e2011-04-12 16:12:03 +0000499namespace {
500 class FrameEmitterImpl {
501 int CFAOffset;
Rafael Espindola514cecc2011-04-28 03:26:11 +0000502 int CIENum;
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000503 bool UsingCFI;
Rafael Espindola25f492e2011-04-12 16:12:03 +0000504
505 public:
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000506 FrameEmitterImpl(bool usingCFI) : CFAOffset(0), CIENum(0),
507 UsingCFI(usingCFI) {
Rafael Espindola25f492e2011-04-12 16:12:03 +0000508 }
509
510 const MCSymbol &EmitCIE(MCStreamer &streamer,
511 const MCSymbol *personality,
512 unsigned personalityEncoding,
513 const MCSymbol *lsda,
514 unsigned lsdaEncoding);
515 MCSymbol *EmitFDE(MCStreamer &streamer,
516 const MCSymbol &cieStart,
Rafael Espindola4892dff2011-04-29 03:06:29 +0000517 const MCDwarfFrameInfo &frame,
518 bool forceLsda);
Rafael Espindola25f492e2011-04-12 16:12:03 +0000519 void EmitCFIInstructions(MCStreamer &streamer,
520 const std::vector<MCCFIInstruction> &Instrs,
521 MCSymbol *BaseLabel);
522 void EmitCFIInstruction(MCStreamer &Streamer,
523 const MCCFIInstruction &Instr);
524 };
525}
526
527void FrameEmitterImpl::EmitCFIInstruction(MCStreamer &Streamer,
528 const MCCFIInstruction &Instr) {
529 int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
530
531 switch (Instr.getOperation()) {
532 case MCCFIInstruction::Move:
533 case MCCFIInstruction::RelMove: {
534 const MachineLocation &Dst = Instr.getDestination();
535 const MachineLocation &Src = Instr.getSource();
Rafael Espindola5d7dcd32011-04-12 18:53:30 +0000536 const bool IsRelative = Instr.getOperation() == MCCFIInstruction::RelMove;
Rafael Espindola25f492e2011-04-12 16:12:03 +0000537
538 // If advancing cfa.
539 if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
540 assert(!Src.isReg() && "Machine move not supported yet.");
541
542 if (Src.getReg() == MachineLocation::VirtualFP) {
543 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
544 } else {
545 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
546 Streamer.EmitULEB128IntValue(Src.getReg());
547 }
548
Rafael Espindola5d7dcd32011-04-12 18:53:30 +0000549 if (IsRelative)
550 CFAOffset += Src.getOffset();
551 else
552 CFAOffset = -Src.getOffset();
553
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000554 Streamer.EmitULEB128IntValue(CFAOffset);
Rafael Espindola25f492e2011-04-12 16:12:03 +0000555 return;
556 }
557
558 if (Src.isReg() && Src.getReg() == MachineLocation::VirtualFP) {
559 assert(Dst.isReg() && "Machine move not supported yet.");
560 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
561 Streamer.EmitULEB128IntValue(Dst.getReg());
562 return;
563 }
564
565 unsigned Reg = Src.getReg();
566
Rafael Espindola25f492e2011-04-12 16:12:03 +0000567 int Offset = Dst.getOffset();
568 if (IsRelative)
569 Offset -= CFAOffset;
570 Offset = Offset / dataAlignmentFactor;
571
572 if (Offset < 0) {
573 Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
574 Streamer.EmitULEB128IntValue(Reg);
575 Streamer.EmitSLEB128IntValue(Offset);
576 } else if (Reg < 64) {
577 Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
Rafael Espindolaeccbad72011-04-21 23:26:40 +0000578 Streamer.EmitULEB128IntValue(Offset);
Rafael Espindola25f492e2011-04-12 16:12:03 +0000579 } else {
580 Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
Rafael Espindolaeccbad72011-04-21 23:26:40 +0000581 Streamer.EmitULEB128IntValue(Reg);
582 Streamer.EmitULEB128IntValue(Offset);
Rafael Espindola25f492e2011-04-12 16:12:03 +0000583 }
584 return;
585 }
586 case MCCFIInstruction::Remember:
587 Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
588 return;
589 case MCCFIInstruction::Restore:
590 Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
591 return;
592 case MCCFIInstruction::SameValue: {
593 unsigned Reg = Instr.getDestination().getReg();
594 Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000595 Streamer.EmitULEB128IntValue(Reg);
Rafael Espindola25f492e2011-04-12 16:12:03 +0000596 return;
597 }
598 }
599 llvm_unreachable("Unhandled case in switch");
600}
601
602/// EmitFrameMoves - Emit frame instructions to describe the layout of the
603/// frame.
604void FrameEmitterImpl::EmitCFIInstructions(MCStreamer &streamer,
605 const std::vector<MCCFIInstruction> &Instrs,
606 MCSymbol *BaseLabel) {
607 for (unsigned i = 0, N = Instrs.size(); i < N; ++i) {
608 const MCCFIInstruction &Instr = Instrs[i];
609 MCSymbol *Label = Instr.getLabel();
610 // Throw out move if the label is invalid.
611 if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
612
613 // Advance row if new location.
614 if (BaseLabel && Label) {
615 MCSymbol *ThisSym = Label;
616 if (ThisSym != BaseLabel) {
617 streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
618 BaseLabel = ThisSym;
619 }
620 }
621
622 EmitCFIInstruction(streamer, Instr);
623 }
624}
625
626const MCSymbol &FrameEmitterImpl::EmitCIE(MCStreamer &streamer,
627 const MCSymbol *personality,
628 unsigned personalityEncoding,
629 const MCSymbol *lsda,
630 unsigned lsdaEncoding) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000631 MCContext &context = streamer.getContext();
632 const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
633 const MCSection &section = *asmInfo.getEHFrameSection();
634 streamer.SwitchSection(&section);
Rafael Espindola514cecc2011-04-28 03:26:11 +0000635
636 MCSymbol *sectionStart;
637 if (asmInfo.isFunctionEHFrameSymbolPrivate())
638 sectionStart = context.CreateTempSymbol();
639 else
640 sectionStart = context.GetOrCreateSymbol(Twine("EH_frame") + Twine(CIENum));
641
642 CIENum++;
643
Rafael Espindola89b93722010-12-10 07:39:47 +0000644 MCSymbol *sectionEnd = streamer.getContext().CreateTempSymbol();
645
646 // Length
647 const MCExpr *Length = MakeStartMinusEndExpr(streamer, *sectionStart,
648 *sectionEnd, 4);
649 streamer.EmitLabel(sectionStart);
Rafael Espindola9266cc42011-04-27 01:43:49 +0000650 streamer.EmitAbsValue(Length, 4);
Rafael Espindola89b93722010-12-10 07:39:47 +0000651
652 // CIE ID
653 streamer.EmitIntValue(0, 4);
654
655 // Version
656 streamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1);
657
658 // Augmentation String
659 SmallString<8> Augmentation;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000660 Augmentation += "z";
661 if (personality)
662 Augmentation += "P";
Rafael Espindolabdc31672010-12-27 15:56:22 +0000663 if (lsda)
664 Augmentation += "L";
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000665 Augmentation += "R";
Rafael Espindola89b93722010-12-10 07:39:47 +0000666 streamer.EmitBytes(Augmentation.str(), 0);
667 streamer.EmitIntValue(0, 1);
668
669 // Code Alignment Factor
670 streamer.EmitULEB128IntValue(1);
671
672 // Data Alignment Factor
673 streamer.EmitSLEB128IntValue(getDataAlignmentFactor(streamer));
674
675 // Return Address Register
676 streamer.EmitULEB128IntValue(asmInfo.getDwarfRARegNum(true));
677
678 // Augmentation Data Length (optional)
Rafael Espindola1f6c8752011-04-29 21:50:57 +0000679
680 unsigned augmentationLength = 0;
681 if (personality) {
682 // Personality Encoding
683 augmentationLength += 1;
684 // Personality
685 augmentationLength += getSizeForEncoding(streamer, personalityEncoding);
686 }
687 if (lsda) {
688 augmentationLength += 1;
689 }
690 // Encoding of the FDE pointers
691 augmentationLength += 1;
692
693 streamer.EmitULEB128IntValue(augmentationLength);
Rafael Espindola89b93722010-12-10 07:39:47 +0000694
695 // Augmentation Data (optional)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000696 if (personality) {
697 // Personality Encoding
Rafael Espindola3a83c402010-12-27 00:36:05 +0000698 streamer.EmitIntValue(personalityEncoding, 1);
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000699 // Personality
Rafael Espindolabfa27cc2011-04-28 16:09:09 +0000700 EmitPersonality(streamer, *personality, personalityEncoding);
Rafael Espindolabdc31672010-12-27 15:56:22 +0000701 }
702 if (lsda) {
703 // LSDA Encoding
704 streamer.EmitIntValue(lsdaEncoding, 1);
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000705 }
706 // Encoding of the FDE pointers
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000707 streamer.EmitIntValue(asmInfo.getFDEEncoding(UsingCFI), 1);
Rafael Espindola89b93722010-12-10 07:39:47 +0000708
709 // Initial Instructions
710
711 const std::vector<MachineMove> Moves = asmInfo.getInitialFrameState();
Rafael Espindolafe024d02010-12-28 18:36:23 +0000712 std::vector<MCCFIInstruction> Instructions;
Rafael Espindola89b93722010-12-10 07:39:47 +0000713
Rafael Espindolafe024d02010-12-28 18:36:23 +0000714 for (int i = 0, n = Moves.size(); i != n; ++i) {
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000715 MCSymbol *Label = Moves[i].getLabel();
716 const MachineLocation &Dst =
717 TranslateMachineLocation(asmInfo, Moves[i].getDestination());
718 const MachineLocation &Src =
719 TranslateMachineLocation(asmInfo, Moves[i].getSource());
720 MCCFIInstruction Inst(Label, Dst, Src);
Rafael Espindolafe024d02010-12-28 18:36:23 +0000721 Instructions.push_back(Inst);
722 }
723
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000724 EmitCFIInstructions(streamer, Instructions, NULL);
Rafael Espindola89b93722010-12-10 07:39:47 +0000725
726 // Padding
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000727 streamer.EmitValueToAlignment(4);
Rafael Espindola89b93722010-12-10 07:39:47 +0000728
729 streamer.EmitLabel(sectionEnd);
730 return *sectionStart;
731}
732
Rafael Espindola25f492e2011-04-12 16:12:03 +0000733MCSymbol *FrameEmitterImpl::EmitFDE(MCStreamer &streamer,
734 const MCSymbol &cieStart,
Rafael Espindola4892dff2011-04-29 03:06:29 +0000735 const MCDwarfFrameInfo &frame,
736 bool forceLsda) {
Rafael Espindolabdc31672010-12-27 15:56:22 +0000737 MCContext &context = streamer.getContext();
738 MCSymbol *fdeStart = context.CreateTempSymbol();
739 MCSymbol *fdeEnd = context.CreateTempSymbol();
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000740 const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
Rafael Espindola89b93722010-12-10 07:39:47 +0000741
Rafael Espindolaa8cfb872011-04-28 02:46:42 +0000742 if (!asmInfo.isFunctionEHFrameSymbolPrivate()) {
Daniel Dunbarb47426b2011-05-03 21:33:37 +0000743 MCSymbol *EHSym = context.GetOrCreateSymbol(
744 frame.Function->getName() + Twine(".eh"));
Rafael Espindola8bca4102011-04-28 12:50:37 +0000745 streamer.EmitEHSymAttributes(frame.Function, EHSym);
Rafael Espindolaa8cfb872011-04-28 02:46:42 +0000746 streamer.EmitLabel(EHSym);
747 }
748
Rafael Espindola89b93722010-12-10 07:39:47 +0000749 // Length
750 const MCExpr *Length = MakeStartMinusEndExpr(streamer, *fdeStart, *fdeEnd, 0);
Rafael Espindola9266cc42011-04-27 01:43:49 +0000751 streamer.EmitAbsValue(Length, 4);
Rafael Espindola89b93722010-12-10 07:39:47 +0000752
753 streamer.EmitLabel(fdeStart);
754 // CIE Pointer
755 const MCExpr *offset = MakeStartMinusEndExpr(streamer, cieStart, *fdeStart,
756 0);
Rafael Espindola9266cc42011-04-27 01:43:49 +0000757 streamer.EmitAbsValue(offset, 4);
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000758 unsigned fdeEncoding = asmInfo.getFDEEncoding(UsingCFI);
Rafael Espindolaabf9af62011-04-22 00:08:43 +0000759 unsigned size = getSizeForEncoding(streamer, fdeEncoding);
Rafael Espindola89b93722010-12-10 07:39:47 +0000760
761 // PC Begin
Rafael Espindolaa0057ca2011-04-28 21:04:39 +0000762 EmitSymbol(streamer, *frame.Begin, fdeEncoding);
Rafael Espindola89b93722010-12-10 07:39:47 +0000763
764 // PC Range
765 const MCExpr *Range = MakeStartMinusEndExpr(streamer, *frame.Begin,
766 *frame.End, 0);
Rafael Espindola9266cc42011-04-27 01:43:49 +0000767 streamer.EmitAbsValue(Range, size);
Rafael Espindola89b93722010-12-10 07:39:47 +0000768
769 // Augmentation Data Length
Rafael Espindola1f6c8752011-04-29 21:50:57 +0000770 unsigned augmentationLength = 0;
771
772 if (frame.Lsda || forceLsda)
773 augmentationLength += getSizeForEncoding(streamer, frame.LsdaEncoding);
774
775 streamer.EmitULEB128IntValue(augmentationLength);
Rafael Espindola89b93722010-12-10 07:39:47 +0000776
777 // Augmentation Data
Rafael Espindola4892dff2011-04-29 03:06:29 +0000778
779 // When running in "CodeGen compatibility mode" a FDE with no LSDA can be
780 // assigned to a CIE that requires one. In that case we output a 0 (as does
781 // CodeGen).
Rafael Espindolabdc31672010-12-27 15:56:22 +0000782 if (frame.Lsda)
783 EmitSymbol(streamer, *frame.Lsda, frame.LsdaEncoding);
Rafael Espindola4892dff2011-04-29 03:06:29 +0000784 else if (forceLsda)
Rafael Espindola1f6c8752011-04-29 21:50:57 +0000785 streamer.EmitIntValue(0, getSizeForEncoding(streamer, frame.LsdaEncoding));
Rafael Espindola4892dff2011-04-29 03:06:29 +0000786
Rafael Espindola89b93722010-12-10 07:39:47 +0000787 // Call Frame Instructions
788
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000789 EmitCFIInstructions(streamer, frame.Instructions, frame.Begin);
Rafael Espindola5bba0842010-12-28 04:15:37 +0000790
Rafael Espindola89b93722010-12-10 07:39:47 +0000791 // Padding
Rafael Espindola9266cc42011-04-27 01:43:49 +0000792 streamer.EmitValueToAlignment(size);
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000793
794 return fdeEnd;
Rafael Espindola89b93722010-12-10 07:39:47 +0000795}
796
Benjamin Kramer19282362010-12-30 22:34:44 +0000797namespace {
798 struct CIEKey {
799 static const CIEKey getEmptyKey() { return CIEKey(0, 0, -1); }
800 static const CIEKey getTombstoneKey() { return CIEKey(0, -1, 0); }
Rafael Espindolabdc31672010-12-27 15:56:22 +0000801
Benjamin Kramer19282362010-12-30 22:34:44 +0000802 CIEKey(const MCSymbol* Personality_, unsigned PersonalityEncoding_,
803 unsigned LsdaEncoding_) : Personality(Personality_),
804 PersonalityEncoding(PersonalityEncoding_),
805 LsdaEncoding(LsdaEncoding_) {
806 }
807 const MCSymbol* Personality;
808 unsigned PersonalityEncoding;
809 unsigned LsdaEncoding;
810 };
811}
Rafael Espindolabdc31672010-12-27 15:56:22 +0000812
813namespace llvm {
814 template <>
815 struct DenseMapInfo<CIEKey> {
816 static CIEKey getEmptyKey() {
Benjamin Kramer19282362010-12-30 22:34:44 +0000817 return CIEKey::getEmptyKey();
Rafael Espindolabdc31672010-12-27 15:56:22 +0000818 }
819 static CIEKey getTombstoneKey() {
Benjamin Kramer19282362010-12-30 22:34:44 +0000820 return CIEKey::getTombstoneKey();
Rafael Espindolabdc31672010-12-27 15:56:22 +0000821 }
822 static unsigned getHashValue(const CIEKey &Key) {
823 FoldingSetNodeID ID;
824 ID.AddPointer(Key.Personality);
825 ID.AddInteger(Key.PersonalityEncoding);
826 ID.AddInteger(Key.LsdaEncoding);
827 return ID.ComputeHash();
828 }
829 static bool isEqual(const CIEKey &LHS,
830 const CIEKey &RHS) {
831 return LHS.Personality == RHS.Personality &&
832 LHS.PersonalityEncoding == RHS.PersonalityEncoding &&
833 LHS.LsdaEncoding == RHS.LsdaEncoding;
834 }
835 };
836}
837
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000838void MCDwarfFrameEmitter::Emit(MCStreamer &streamer,
839 bool usingCFI) {
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000840 const MCContext &context = streamer.getContext();
841 const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
Rafael Espindola90998132011-04-29 02:42:28 +0000842
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000843 MCSymbol *fdeEnd = NULL;
Rafael Espindolabdc31672010-12-27 15:56:22 +0000844 DenseMap<CIEKey, const MCSymbol*> CIEStarts;
Rafael Espindola5426a9e2011-05-01 04:49:54 +0000845 FrameEmitterImpl Emitter(usingCFI);
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000846
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000847 for (unsigned i = 0, n = streamer.getNumFrameInfos(); i < n; ++i) {
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000848 const MCDwarfFrameInfo &frame = streamer.getFrameInfo(i);
Rafael Espindolabdc31672010-12-27 15:56:22 +0000849 CIEKey key(frame.Personality, frame.PersonalityEncoding,
850 frame.LsdaEncoding);
851 const MCSymbol *&cieStart = CIEStarts[key];
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000852 if (!cieStart)
Rafael Espindola25f492e2011-04-12 16:12:03 +0000853 cieStart = &Emitter.EmitCIE(streamer, frame.Personality,
854 frame.PersonalityEncoding, frame.Lsda,
855 frame.LsdaEncoding);
Rafael Espindola4892dff2011-04-29 03:06:29 +0000856 fdeEnd = Emitter.EmitFDE(streamer, *cieStart, frame, false);
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000857 if (i != n - 1)
858 streamer.EmitLabel(fdeEnd);
859 }
Rafael Espindolad7c8cca2010-12-26 20:20:31 +0000860
Rafael Espindoladfe125c2010-12-17 00:28:02 +0000861 streamer.EmitValueToAlignment(asmInfo.getPointerSize());
862 if (fdeEnd)
863 streamer.EmitLabel(fdeEnd);
Rafael Espindola89b93722010-12-10 07:39:47 +0000864}
Rafael Espindola245a1e22010-12-28 05:39:27 +0000865
866void MCDwarfFrameEmitter::EmitAdvanceLoc(MCStreamer &Streamer,
867 uint64_t AddrDelta) {
868 SmallString<256> Tmp;
869 raw_svector_ostream OS(Tmp);
Rafael Espindola235b8302011-04-28 04:04:14 +0000870 const TargetAsmInfo &AsmInfo = Streamer.getContext().getTargetAsmInfo();
Rafael Espindola4eafe102011-05-08 14:35:21 +0000871 MCDwarfFrameEmitter::EncodeAdvanceLoc(AddrDelta, OS);
Rafael Espindola245a1e22010-12-28 05:39:27 +0000872 Streamer.EmitBytes(OS.str(), /*AddrSpace=*/0);
873}
874
875void MCDwarfFrameEmitter::EncodeAdvanceLoc(uint64_t AddrDelta,
Rafael Espindola4eafe102011-05-08 14:35:21 +0000876 raw_ostream &OS) {
Rafael Espindola245a1e22010-12-28 05:39:27 +0000877 // FIXME: Assumes the code alignment factor is 1.
Rafael Espindola3b78cdc2010-12-28 23:38:03 +0000878 if (AddrDelta == 0) {
Rafael Espindola4eafe102011-05-08 14:35:21 +0000879 } else if (isUIntN(6, AddrDelta)) {
Rafael Espindola245a1e22010-12-28 05:39:27 +0000880 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
881 OS << Opcode;
Rafael Espindola4eafe102011-05-08 14:35:21 +0000882 } else if (isUInt<8>(AddrDelta)) {
Rafael Espindola245a1e22010-12-28 05:39:27 +0000883 OS << uint8_t(dwarf::DW_CFA_advance_loc1);
884 OS << uint8_t(AddrDelta);
Rafael Espindola4eafe102011-05-08 14:35:21 +0000885 } else if (isUInt<16>(AddrDelta)) {
Rafael Espindolaa7e45052010-12-29 02:30:49 +0000886 // FIXME: check what is the correct behavior on a big endian machine.
Rafael Espindola245a1e22010-12-28 05:39:27 +0000887 OS << uint8_t(dwarf::DW_CFA_advance_loc2);
Rafael Espindolaa7e45052010-12-29 02:30:49 +0000888 OS << uint8_t( AddrDelta & 0xff);
889 OS << uint8_t((AddrDelta >> 8) & 0xff);
Rafael Espindola245a1e22010-12-28 05:39:27 +0000890 } else {
Rafael Espindolaa7e45052010-12-29 02:30:49 +0000891 // FIXME: check what is the correct behavior on a big endian machine.
Rafael Espindola245a1e22010-12-28 05:39:27 +0000892 assert(isUInt<32>(AddrDelta));
893 OS << uint8_t(dwarf::DW_CFA_advance_loc4);
Rafael Espindolaa7e45052010-12-29 02:30:49 +0000894 OS << uint8_t( AddrDelta & 0xff);
895 OS << uint8_t((AddrDelta >> 8) & 0xff);
896 OS << uint8_t((AddrDelta >> 16) & 0xff);
897 OS << uint8_t((AddrDelta >> 24) & 0xff);
898
Rafael Espindola245a1e22010-12-28 05:39:27 +0000899 }
900}