adefa5d31003f6d96b76a8caf872f8d9646165eb
[oota-llvm.git] / lib / MC / MCDwarf.cpp
1 //===- 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
10 #include "llvm/MC/MCDwarf.h"
11 #include "llvm/MC/MCAssembler.h"
12 #include "llvm/MC/MCStreamer.h"
13 #include "llvm/MC/MCSymbol.h"
14 #include "llvm/MC/MCExpr.h"
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCObjectWriter.h"
17 #include "llvm/ADT/SmallString.h"
18 #include "llvm/Support/Debug.h"
19 #include "llvm/Support/raw_ostream.h"
20 #include "llvm/Target/TargetAsmBackend.h"
21 using namespace llvm;
22
23 // Given a special op, return the address skip amount (in units of
24 // DWARF2_LINE_MIN_INSN_LENGTH.
25 #define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
26
27 // The maximum address skip amount that can be encoded with a special op.
28 #define MAX_SPECIAL_ADDR_DELTA          SPECIAL_ADDR(255)
29
30 // First special line opcode - leave room for the standard opcodes.
31 // Note: If you want to change this, you'll have to update the
32 // "standard_opcode_lengths" table that is emitted in DwarfFileTable::Emit().  
33 #define DWARF2_LINE_OPCODE_BASE         13
34
35 // Minimum line offset in a special line info. opcode.  This value
36 // was chosen to give a reasonable range of values.
37 #define DWARF2_LINE_BASE                -5
38
39 // Range of line offsets in a special line info. opcode.
40 # define DWARF2_LINE_RANGE              14
41
42 // Define the architecture-dependent minimum instruction length (in bytes).
43 // This value should be rather too small than too big.
44 # define DWARF2_LINE_MIN_INSN_LENGTH    1
45
46 // Note: when DWARF2_LINE_MIN_INSN_LENGTH == 1 which is the current setting,
47 // this routine is a nop and will be optimized away.
48 static inline uint64_t ScaleAddrDelta(uint64_t AddrDelta)
49 {
50   if (DWARF2_LINE_MIN_INSN_LENGTH == 1)
51     return AddrDelta;
52   if (AddrDelta % DWARF2_LINE_MIN_INSN_LENGTH != 0) {
53     // TODO: report this error, but really only once.
54     ;
55   }
56   return AddrDelta / DWARF2_LINE_MIN_INSN_LENGTH;
57 }
58
59 //
60 // This is called when an instruction is assembled into the specified section
61 // and if there is information from the last .loc directive that has yet to have
62 // a line entry made for it is made.
63 //
64 void MCLineEntry::Make(MCStreamer *MCOS, const MCSection *Section) {
65   if (!MCOS->getContext().getDwarfLocSeen())
66     return;
67
68   // Create a symbol at in the current section for use in the line entry.
69   MCSymbol *LineSym = MCOS->getContext().CreateTempSymbol();
70   // Set the value of the symbol to use for the MCLineEntry.
71   MCOS->EmitLabel(LineSym);
72
73   // Get the current .loc info saved in the context.
74   const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
75
76   // Create a (local) line entry with the symbol and the current .loc info.
77   MCLineEntry LineEntry(LineSym, DwarfLoc);
78
79   // clear DwarfLocSeen saying the current .loc info is now used.
80   MCOS->getContext().ClearDwarfLocSeen();
81
82   // Get the MCLineSection for this section, if one does not exist for this
83   // section create it.
84   const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
85     MCOS->getContext().getMCLineSections();
86   MCLineSection *LineSection = MCLineSections.lookup(Section);
87   if (!LineSection) {
88     // Create a new MCLineSection.  This will be deleted after the dwarf line
89     // table is created using it by iterating through the MCLineSections
90     // DenseMap.
91     LineSection = new MCLineSection;
92     // Save a pointer to the new LineSection into the MCLineSections DenseMap.
93     MCOS->getContext().addMCLineSection(Section, LineSection);
94   }
95
96   // Add the line entry to this section's entries.
97   LineSection->addLineEntry(LineEntry);
98 }
99
100 //
101 // This helper routine returns an expression of End - Start + IntVal .
102 // 
103 static inline const MCExpr *MakeStartMinusEndExpr(MCStreamer *MCOS,
104                                                   MCSymbol *Start,
105                                                   MCSymbol *End, int IntVal) {
106   MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
107   const MCExpr *Res =
108     MCSymbolRefExpr::Create(End, Variant, MCOS->getContext());
109   const MCExpr *RHS =
110     MCSymbolRefExpr::Create(Start, Variant, MCOS->getContext());
111   const MCExpr *Res1 =
112     MCBinaryExpr::Create(MCBinaryExpr::Sub, Res, RHS, MCOS->getContext());
113   const MCExpr *Res2 =
114     MCConstantExpr::Create(IntVal, MCOS->getContext());
115   const MCExpr *Res3 =
116     MCBinaryExpr::Create(MCBinaryExpr::Sub, Res1, Res2, MCOS->getContext());
117   return Res3;
118 }
119
120 // 
121 // This emits an "absolute" address used in the start of a dwarf line number
122 // table.  This will result in a relocatation entry for the address.
123 //
124 static inline void EmitDwarfSetAddress(MCStreamer *MCOS,
125                                        MCSymbol *Symbol,
126                                        int PointerSize) {
127   MCOS->EmitIntValue(dwarf::DW_LNS_extended_op, 1);
128
129   MCOS->EmitULEB128IntValue(PointerSize + 1);
130
131   MCOS->EmitIntValue(dwarf::DW_LNE_set_address, 1);
132   MCOS->EmitSymbolValue(Symbol, PointerSize);
133 }
134
135 //
136 // This emits the Dwarf line table for the specified section from the entries
137 // in the LineSection.
138 //
139 static inline void EmitDwarfLineTable(MCStreamer *MCOS,
140                                       const MCSection *Section,
141                                       const MCLineSection *LineSection,
142                                       const MCSection *DwarfLineSection,
143                                       MCSectionData *DLS,
144                                       int PointerSize) {
145   unsigned FileNum = 1;
146   unsigned LastLine = 1;
147   unsigned Column = 0;
148   unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
149   unsigned Isa = 0;
150   MCSymbol *LastLabel = NULL;
151
152   // Loop through each MCLineEntry and encode the dwarf line number table.
153   for (MCLineSection::const_iterator
154          it = LineSection->getMCLineEntries()->begin(),
155          ie = LineSection->getMCLineEntries()->end(); it != ie; ++it) {
156
157     if (FileNum != it->getFileNum()) {
158       FileNum = it->getFileNum();
159       MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
160       MCOS->EmitULEB128IntValue(FileNum);
161     }
162     if (Column != it->getColumn()) {
163       Column = it->getColumn();
164       MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
165       MCOS->EmitULEB128IntValue(Column);
166     }
167     if (Isa != it->getIsa()) {
168       Isa = it->getIsa();
169       MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
170       MCOS->EmitULEB128IntValue(Isa);
171     }
172     if ((it->getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
173       Flags = it->getFlags();
174       MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
175     }
176     if (it->getFlags() & DWARF2_FLAG_BASIC_BLOCK)
177       MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
178     if (it->getFlags() & DWARF2_FLAG_PROLOGUE_END)
179       MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
180     if (it->getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
181       MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
182
183     int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
184     MCSymbol *Label = it->getLabel();
185
186     // At this point we want to emit/create the sequence to encode the delta in
187     // line numbers and the increment of the address from the previous Label
188     // and the current Label.
189     if (LastLabel == NULL || DLS == NULL) {
190       // emit the sequence to set the address
191       EmitDwarfSetAddress(MCOS, Label, PointerSize);
192       // emit the sequence for the LineDelta (from 1) and a zero address delta.
193       MCDwarfLineAddr::Emit(MCOS, LineDelta, 0);
194     }
195     else {
196       // Create an expression for the address delta from the LastLabel and
197       // this Label (plus 0).
198       const MCExpr *AddrDelta = MakeStartMinusEndExpr(MCOS, LastLabel, Label,0);
199       // Create a Dwarf Line fragment for the LineDelta and AddrDelta.
200       new MCDwarfLineAddrFragment(LineDelta, *AddrDelta, DLS);
201     }
202
203     LastLine = it->getLine();
204     LastLabel = Label;
205   }
206
207   // Emit a DW_LNE_end_sequence for the end of the section.
208   // Using the pointer Section create a temporary label at the end of the
209   // section and use that and the LastLabel to compute the address delta
210   // and use INT64_MAX as the line delta which is the signal that this is
211   // actually a DW_LNE_end_sequence.
212
213   // Switch to the section to be able to create a symbol at its end.
214   MCOS->SwitchSection(Section);
215   // Create a symbol at the end of the section.
216   MCSymbol *SectionEnd = MCOS->getContext().CreateTempSymbol();
217   // Set the value of the symbol, as we are at the end of the section.
218   MCOS->EmitLabel(SectionEnd);
219
220   // Switch back the the dwarf line section.
221   MCOS->SwitchSection(DwarfLineSection);
222
223   if (DLS == NULL) {
224     // emit the sequence to set the address
225     EmitDwarfSetAddress(MCOS, SectionEnd, PointerSize);
226     // emit the sequence for the LineDelta (from 1) and a zero address delta.
227     MCDwarfLineAddr::Emit(MCOS, INT64_MAX, 0);
228   } else {
229     // Create an expression for the address delta from the LastLabel and this
230     // SectionEnd label.
231     const MCExpr *AddrDelta = MakeStartMinusEndExpr(MCOS, LastLabel, SectionEnd,
232                                                     0);
233     // Create a Dwarf Line fragment for the LineDelta and AddrDelta.
234     new MCDwarfLineAddrFragment(INT64_MAX, *AddrDelta, DLS);
235   }
236 }
237
238 //
239 // This emits the Dwarf file and the line tables.
240 //
241 void MCDwarfFileTable::Emit(MCStreamer *MCOS,
242                             const MCSection *DwarfLineSection,
243                             MCSectionData *DLS,
244                             int PointerSize) {
245   // Switch to the section where the table will be emitted into.
246   MCOS->SwitchSection(DwarfLineSection);
247
248   // Create a symbol at the beginning of this section.
249   MCSymbol *LineStartSym = MCOS->getContext().CreateTempSymbol();
250   // Set the value of the symbol, as we are at the start of the section.
251   MCOS->EmitLabel(LineStartSym);
252
253   // Create a symbol for the end of the section (to be set when we get there).
254   MCSymbol *LineEndSym = MCOS->getContext().CreateTempSymbol();
255
256   // The first 4 bytes is the total length of the information for this
257   // compilation unit (not including these 4 bytes for the length).
258   MCOS->EmitValue(MakeStartMinusEndExpr(MCOS, LineStartSym, LineEndSym, 4),
259                   4, 0);
260
261   // Next 2 bytes is the Version, which is Dwarf 2.
262   MCOS->EmitIntValue(2, 2);
263
264   // Create a symbol for the end of the prologue (to be set when we get there).
265   MCSymbol *ProEndSym = MCOS->getContext().CreateTempSymbol(); // Lprologue_end
266
267   // Length of the prologue, is the next 4 bytes.  Which is the start of the
268   // section to the end of the prologue.  Not including the 4 bytes for the
269   // total length, the 2 bytes for the version, and these 4 bytes for the
270   // length of the prologue.
271   MCOS->EmitValue(MakeStartMinusEndExpr(MCOS, LineStartSym, ProEndSym,
272                                         (4 + 2 + 4)),
273                   4, 0);
274
275   // Parameters of the state machine, are next.
276   MCOS->EmitIntValue(DWARF2_LINE_MIN_INSN_LENGTH, 1);
277   MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
278   MCOS->EmitIntValue(DWARF2_LINE_BASE, 1);
279   MCOS->EmitIntValue(DWARF2_LINE_RANGE, 1);
280   MCOS->EmitIntValue(DWARF2_LINE_OPCODE_BASE, 1);
281
282   // Standard opcode lengths
283   MCOS->EmitIntValue(0, 1); // length of DW_LNS_copy
284   MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_pc
285   MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_line
286   MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_file
287   MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_column
288   MCOS->EmitIntValue(0, 1); // length of DW_LNS_negate_stmt
289   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_basic_block
290   MCOS->EmitIntValue(0, 1); // length of DW_LNS_const_add_pc
291   MCOS->EmitIntValue(1, 1); // length of DW_LNS_fixed_advance_pc
292   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_prologue_end
293   MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_epilogue_begin
294   MCOS->EmitIntValue(1, 1); // DW_LNS_set_isa
295
296   // Put out the directory and file tables.
297
298   // First the directory table.
299   const std::vector<StringRef> &MCDwarfDirs =
300     MCOS->getContext().getMCDwarfDirs();
301   for (unsigned i = 0; i < MCDwarfDirs.size(); i++) {
302     MCOS->EmitBytes(MCDwarfDirs[i], 0); // the DirectoryName
303     MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
304   }
305   MCOS->EmitIntValue(0, 1); // Terminate the directory list
306
307   // Second the file table.
308   const std::vector<MCDwarfFile *> &MCDwarfFiles =
309     MCOS->getContext().getMCDwarfFiles();
310   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
311     MCOS->EmitBytes(MCDwarfFiles[i]->getName(), 0); // FileName
312     MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
313     // the Directory num
314     MCOS->EmitULEB128IntValue(MCDwarfFiles[i]->getDirIndex());
315     MCOS->EmitIntValue(0, 1); // last modification timestamp (always 0)
316     MCOS->EmitIntValue(0, 1); // filesize (always 0)
317   }
318   MCOS->EmitIntValue(0, 1); // Terminate the file list
319
320   // This is the end of the prologue, so set the value of the symbol at the
321   // end of the prologue (that was used in a previous expression).
322   MCOS->EmitLabel(ProEndSym);
323
324   // Put out the line tables.
325   const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
326     MCOS->getContext().getMCLineSections();
327   const std::vector<const MCSection *> &MCLineSectionOrder =
328     MCOS->getContext().getMCLineSectionOrder();
329   for (std::vector<const MCSection*>::const_iterator it =
330         MCLineSectionOrder.begin(), ie = MCLineSectionOrder.end(); it != ie;
331        ++it) {
332     const MCSection *Sec = *it;
333     const MCLineSection *Line = MCLineSections.lookup(Sec);
334     EmitDwarfLineTable(MCOS, Sec, Line, DwarfLineSection, DLS,
335                        PointerSize);
336
337     // Now delete the MCLineSections that were created in MCLineEntry::Make()
338     // and used to emit the line table.
339     delete Line;
340   }
341
342   // This is the end of the section, so set the value of the symbol at the end
343   // of this section (that was used in a previous expression).
344   MCOS->EmitLabel(LineEndSym);
345 }
346
347 /// Utility function to compute the size of the encoding.
348 uint64_t MCDwarfLineAddr::ComputeSize(int64_t LineDelta, uint64_t AddrDelta) {
349   SmallString<256> Tmp;
350   raw_svector_ostream OS(Tmp);
351   MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
352   return OS.GetNumBytesInBuffer();
353 }
354
355 /// Utility function to write the encoding to an object writer.
356 void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
357                             uint64_t AddrDelta) {
358   SmallString<256> Tmp;
359   raw_svector_ostream OS(Tmp);
360   MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
361   OW->WriteBytes(OS.str());
362 }
363
364 /// Utility function to emit the encoding to a streamer.
365 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
366                            uint64_t AddrDelta) {
367   SmallString<256> Tmp;
368   raw_svector_ostream OS(Tmp);
369   MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
370   MCOS->EmitBytes(OS.str(), /*AddrSpace=*/0);
371 }
372
373 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
374 void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
375                              raw_ostream &OS) {
376   uint64_t Temp, Opcode;
377   bool NeedCopy = false;
378
379   // Scale the address delta by the minimum instruction length.
380   AddrDelta = ScaleAddrDelta(AddrDelta);
381
382   // A LineDelta of INT64_MAX is a signal that this is actually a
383   // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the 
384   // end_sequence to emit the matrix entry.
385   if (LineDelta == INT64_MAX) {
386     if (AddrDelta == MAX_SPECIAL_ADDR_DELTA)
387       OS << char(dwarf::DW_LNS_const_add_pc);
388     else {
389       OS << char(dwarf::DW_LNS_advance_pc);
390       SmallString<32> Tmp;
391       raw_svector_ostream OSE(Tmp);
392       MCObjectWriter::EncodeULEB128(AddrDelta, OSE);
393       OS << OSE.str();
394     }
395     OS << char(dwarf::DW_LNS_extended_op);
396     OS << char(1);
397     OS << char(dwarf::DW_LNE_end_sequence);
398     return;
399   }
400
401   // Bias the line delta by the base.
402   Temp = LineDelta - DWARF2_LINE_BASE;
403
404   // If the line increment is out of range of a special opcode, we must encode
405   // it with DW_LNS_advance_line.
406   if (Temp >= DWARF2_LINE_RANGE) {
407     OS << char(dwarf::DW_LNS_advance_line);
408     SmallString<32> Tmp;
409     raw_svector_ostream OSE(Tmp);
410     MCObjectWriter::EncodeSLEB128(LineDelta, OSE);
411     OS << OSE.str();
412
413     LineDelta = 0;
414     Temp = 0 - DWARF2_LINE_BASE;
415     NeedCopy = true;
416   }
417
418   // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
419   if (LineDelta == 0 && AddrDelta == 0) {
420     OS << char(dwarf::DW_LNS_copy);
421     return;
422   }
423
424   // Bias the opcode by the special opcode base.
425   Temp += DWARF2_LINE_OPCODE_BASE;
426
427   // Avoid overflow when addr_delta is large.
428   if (AddrDelta < 256 + MAX_SPECIAL_ADDR_DELTA) {
429     // Try using a special opcode.
430     Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
431     if (Opcode <= 255) {
432       OS << char(Opcode);
433       return;
434     }
435
436     // Try using DW_LNS_const_add_pc followed by special op.
437     Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
438     if (Opcode <= 255) {
439       OS << char(dwarf::DW_LNS_const_add_pc);
440       OS << char(Opcode);
441       return;
442     }
443   }
444
445   // Otherwise use DW_LNS_advance_pc.
446   OS << char(dwarf::DW_LNS_advance_pc);
447   SmallString<32> Tmp;
448   raw_svector_ostream OSE(Tmp);
449   MCObjectWriter::EncodeULEB128(AddrDelta, OSE);
450   OS << OSE.str();
451
452   if (NeedCopy)
453     OS << char(dwarf::DW_LNS_copy);
454   else
455     OS << char(Temp);
456 }
457
458 void MCDwarfFile::print(raw_ostream &OS) const {
459   OS << '"' << getName() << '"';
460 }
461
462 void MCDwarfFile::dump() const {
463   print(dbgs());
464 }
465