85680c0164422cd8933016fe88035cd064e45ac1
[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/ADT/Hashing.h"
12 #include "llvm/ADT/STLExtras.h"
13 #include "llvm/ADT/SmallString.h"
14 #include "llvm/ADT/Twine.h"
15 #include "llvm/Config/config.h"
16 #include "llvm/MC/MCAsmInfo.h"
17 #include "llvm/MC/MCContext.h"
18 #include "llvm/MC/MCExpr.h"
19 #include "llvm/MC/MCObjectFileInfo.h"
20 #include "llvm/MC/MCObjectStreamer.h"
21 #include "llvm/MC/MCRegisterInfo.h"
22 #include "llvm/MC/MCSection.h"
23 #include "llvm/MC/MCSymbol.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/LEB128.h"
27 #include "llvm/Support/Path.h"
28 #include "llvm/Support/SourceMgr.h"
29 #include "llvm/Support/raw_ostream.h"
30
31 using namespace llvm;
32
33 static inline uint64_t ScaleAddrDelta(MCContext &Context, uint64_t AddrDelta) {
34   unsigned MinInsnLength = Context.getAsmInfo()->getMinInstAlignment();
35   if (MinInsnLength == 1)
36     return AddrDelta;
37   if (AddrDelta % MinInsnLength != 0) {
38     // TODO: report this error, but really only once.
39     ;
40   }
41   return AddrDelta / MinInsnLength;
42 }
43
44 //
45 // This is called when an instruction is assembled into the specified section
46 // and if there is information from the last .loc directive that has yet to have
47 // a line entry made for it is made.
48 //
49 void MCLineEntry::Make(MCObjectStreamer *MCOS, MCSection *Section) {
50   if (!MCOS->getContext().getDwarfLocSeen())
51     return;
52
53   // Create a symbol at in the current section for use in the line entry.
54   MCSymbol *LineSym = MCOS->getContext().createTempSymbol();
55   // Set the value of the symbol to use for the MCLineEntry.
56   MCOS->EmitLabel(LineSym);
57
58   // Get the current .loc info saved in the context.
59   const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
60
61   // Create a (local) line entry with the symbol and the current .loc info.
62   MCLineEntry LineEntry(LineSym, DwarfLoc);
63
64   // clear DwarfLocSeen saying the current .loc info is now used.
65   MCOS->getContext().clearDwarfLocSeen();
66
67   // Add the line entry to this section's entries.
68   MCOS->getContext()
69       .getMCDwarfLineTable(MCOS->getContext().getDwarfCompileUnitID())
70       .getMCLineSections()
71       .addLineEntry(LineEntry, Section);
72 }
73
74 //
75 // This helper routine returns an expression of End - Start + IntVal .
76 //
77 static inline const MCExpr *MakeStartMinusEndExpr(const MCStreamer &MCOS,
78                                                   const MCSymbol &Start,
79                                                   const MCSymbol &End,
80                                                   int IntVal) {
81   MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
82   const MCExpr *Res =
83     MCSymbolRefExpr::create(&End, Variant, MCOS.getContext());
84   const MCExpr *RHS =
85     MCSymbolRefExpr::create(&Start, Variant, MCOS.getContext());
86   const MCExpr *Res1 =
87     MCBinaryExpr::create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
88   const MCExpr *Res2 =
89     MCConstantExpr::create(IntVal, MCOS.getContext());
90   const MCExpr *Res3 =
91     MCBinaryExpr::create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());
92   return Res3;
93 }
94
95 //
96 // This emits the Dwarf line table for the specified section from the entries
97 // in the LineSection.
98 //
99 static inline void
100 EmitDwarfLineTable(MCObjectStreamer *MCOS, MCSection *Section,
101                    const MCLineSection::MCLineEntryCollection &LineEntries) {
102   unsigned FileNum = 1;
103   unsigned LastLine = 1;
104   unsigned Column = 0;
105   unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
106   unsigned Isa = 0;
107   unsigned Discriminator = 0;
108   MCSymbol *LastLabel = nullptr;
109
110   // Loop through each MCLineEntry and encode the dwarf line number table.
111   for (auto it = LineEntries.begin(),
112             ie = LineEntries.end();
113        it != ie; ++it) {
114
115     if (FileNum != it->getFileNum()) {
116       FileNum = it->getFileNum();
117       MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
118       MCOS->EmitULEB128IntValue(FileNum);
119     }
120     if (Column != it->getColumn()) {
121       Column = it->getColumn();
122       MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
123       MCOS->EmitULEB128IntValue(Column);
124     }
125     if (Discriminator != it->getDiscriminator()) {
126       Discriminator = it->getDiscriminator();
127       unsigned Size = getULEB128Size(Discriminator);
128       MCOS->EmitIntValue(dwarf::DW_LNS_extended_op, 1);
129       MCOS->EmitULEB128IntValue(Size + 1);
130       MCOS->EmitIntValue(dwarf::DW_LNE_set_discriminator, 1);
131       MCOS->EmitULEB128IntValue(Discriminator);
132     }
133     if (Isa != it->getIsa()) {
134       Isa = it->getIsa();
135       MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
136       MCOS->EmitULEB128IntValue(Isa);
137     }
138     if ((it->getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
139       Flags = it->getFlags();
140       MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
141     }
142     if (it->getFlags() & DWARF2_FLAG_BASIC_BLOCK)
143       MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
144     if (it->getFlags() & DWARF2_FLAG_PROLOGUE_END)
145       MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
146     if (it->getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
147       MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
148
149     int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
150     MCSymbol *Label = it->getLabel();
151
152     // At this point we want to emit/create the sequence to encode the delta in
153     // line numbers and the increment of the address from the previous Label
154     // and the current Label.
155     const MCAsmInfo *asmInfo = MCOS->getContext().getAsmInfo();
156     MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
157                                    asmInfo->getPointerSize());
158
159     LastLine = it->getLine();
160     LastLabel = Label;
161   }
162
163   // Emit a DW_LNE_end_sequence for the end of the section.
164   // Use the section end label to compute the address delta and use INT64_MAX
165   // as the line delta which is the signal that this is actually a
166   // DW_LNE_end_sequence.
167   MCSymbol *SectionEnd = MCOS->endSection(Section);
168
169   // Switch back the dwarf line section, in case endSection had to switch the
170   // section.
171   MCContext &Ctx = MCOS->getContext();
172   MCOS->SwitchSection(Ctx.getObjectFileInfo()->getDwarfLineSection());
173
174   const MCAsmInfo *AsmInfo = Ctx.getAsmInfo();
175   MCOS->EmitDwarfAdvanceLineAddr(INT64_MAX, LastLabel, SectionEnd,
176                                  AsmInfo->getPointerSize());
177 }
178
179 //
180 // This emits the Dwarf file and the line tables.
181 //
182 void MCDwarfLineTable::Emit(MCObjectStreamer *MCOS,
183                             MCDwarfLineTableParams Params) {
184   MCContext &context = MCOS->getContext();
185
186   auto &LineTables = context.getMCDwarfLineTables();
187
188   // Bail out early so we don't switch to the debug_line section needlessly and
189   // in doing so create an unnecessary (if empty) section.
190   if (LineTables.empty())
191     return;
192
193   // Switch to the section where the table will be emitted into.
194   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfLineSection());
195
196   // Handle the rest of the Compile Units.
197   for (const auto &CUIDTablePair : LineTables)
198     CUIDTablePair.second.EmitCU(MCOS, Params);
199 }
200
201 void MCDwarfDwoLineTable::Emit(MCStreamer &MCOS,
202                                MCDwarfLineTableParams Params) const {
203   MCOS.EmitLabel(Header.Emit(&MCOS, Params, None).second);
204 }
205
206 std::pair<MCSymbol *, MCSymbol *>
207 MCDwarfLineTableHeader::Emit(MCStreamer *MCOS,
208                              MCDwarfLineTableParams Params) const {
209   static const char StandardOpcodeLengths[] = {
210       0, // length of DW_LNS_copy
211       1, // length of DW_LNS_advance_pc
212       1, // length of DW_LNS_advance_line
213       1, // length of DW_LNS_set_file
214       1, // length of DW_LNS_set_column
215       0, // length of DW_LNS_negate_stmt
216       0, // length of DW_LNS_set_basic_block
217       0, // length of DW_LNS_const_add_pc
218       1, // length of DW_LNS_fixed_advance_pc
219       0, // length of DW_LNS_set_prologue_end
220       0, // length of DW_LNS_set_epilogue_begin
221       1  // DW_LNS_set_isa
222   };
223   assert(array_lengthof(StandardOpcodeLengths) >=
224          (Params.DWARF2LineOpcodeBase - 1U));
225   return Emit(MCOS, Params, makeArrayRef(StandardOpcodeLengths,
226                                          Params.DWARF2LineOpcodeBase - 1));
227 }
228
229 static const MCExpr *forceExpAbs(MCStreamer &OS, const MCExpr* Expr) {
230   MCContext &Context = OS.getContext();
231   assert(!isa<MCSymbolRefExpr>(Expr));
232   if (Context.getAsmInfo()->hasAggressiveSymbolFolding())
233     return Expr;
234
235   MCSymbol *ABS = Context.createTempSymbol();
236   OS.EmitAssignment(ABS, Expr);
237   return MCSymbolRefExpr::create(ABS, Context);
238 }
239
240 static void emitAbsValue(MCStreamer &OS, const MCExpr *Value, unsigned Size) {
241   const MCExpr *ABS = forceExpAbs(OS, Value);
242   OS.EmitValue(ABS, Size);
243 }
244
245 std::pair<MCSymbol *, MCSymbol *>
246 MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
247                              ArrayRef<char> StandardOpcodeLengths) const {
248   MCContext &context = MCOS->getContext();
249
250   // Create a symbol at the beginning of the line table.
251   MCSymbol *LineStartSym = Label;
252   if (!LineStartSym)
253     LineStartSym = context.createTempSymbol();
254   // Set the value of the symbol, as we are at the start of the line table.
255   MCOS->EmitLabel(LineStartSym);
256
257   // Create a symbol for the end of the section (to be set when we get there).
258   MCSymbol *LineEndSym = context.createTempSymbol();
259
260   // The first 4 bytes is the total length of the information for this
261   // compilation unit (not including these 4 bytes for the length).
262   emitAbsValue(*MCOS,
263                MakeStartMinusEndExpr(*MCOS, *LineStartSym, *LineEndSym, 4), 4);
264
265   // Next 2 bytes is the Version, which is Dwarf 2.
266   MCOS->EmitIntValue(2, 2);
267
268   // Create a symbol for the end of the prologue (to be set when we get there).
269   MCSymbol *ProEndSym = context.createTempSymbol(); // Lprologue_end
270
271   // Length of the prologue, is the next 4 bytes.  Which is the start of the
272   // section to the end of the prologue.  Not including the 4 bytes for the
273   // total length, the 2 bytes for the version, and these 4 bytes for the
274   // length of the prologue.
275   emitAbsValue(
276       *MCOS,
277       MakeStartMinusEndExpr(*MCOS, *LineStartSym, *ProEndSym, (4 + 2 + 4)), 4);
278
279   // Parameters of the state machine, are next.
280   MCOS->EmitIntValue(context.getAsmInfo()->getMinInstAlignment(), 1);
281   MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
282   MCOS->EmitIntValue(Params.DWARF2LineBase, 1);
283   MCOS->EmitIntValue(Params.DWARF2LineRange, 1);
284   MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1);
285
286   // Standard opcode lengths
287   for (char Length : StandardOpcodeLengths)
288     MCOS->EmitIntValue(Length, 1);
289
290   // Put out the directory and file tables.
291
292   // First the directory table.
293   for (unsigned i = 0; i < MCDwarfDirs.size(); i++) {
294     MCOS->EmitBytes(MCDwarfDirs[i]); // the DirectoryName
295     MCOS->EmitBytes(StringRef("\0", 1)); // the null term. of the string
296   }
297   MCOS->EmitIntValue(0, 1); // Terminate the directory list
298
299   // Second the file table.
300   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
301     assert(!MCDwarfFiles[i].Name.empty());
302     MCOS->EmitBytes(MCDwarfFiles[i].Name); // FileName
303     MCOS->EmitBytes(StringRef("\0", 1)); // the null term. of the string
304     // the Directory num
305     MCOS->EmitULEB128IntValue(MCDwarfFiles[i].DirIndex);
306     MCOS->EmitIntValue(0, 1); // last modification timestamp (always 0)
307     MCOS->EmitIntValue(0, 1); // filesize (always 0)
308   }
309   MCOS->EmitIntValue(0, 1); // Terminate the file list
310
311   // This is the end of the prologue, so set the value of the symbol at the
312   // end of the prologue (that was used in a previous expression).
313   MCOS->EmitLabel(ProEndSym);
314
315   return std::make_pair(LineStartSym, LineEndSym);
316 }
317
318 void MCDwarfLineTable::EmitCU(MCObjectStreamer *MCOS,
319                               MCDwarfLineTableParams Params) const {
320   MCSymbol *LineEndSym = Header.Emit(MCOS, Params).second;
321
322   // Put out the line tables.
323   for (const auto &LineSec : MCLineSections.getMCLineEntries())
324     EmitDwarfLineTable(MCOS, LineSec.first, LineSec.second);
325
326   // This is the end of the section, so set the value of the symbol at the end
327   // of this section (that was used in a previous expression).
328   MCOS->EmitLabel(LineEndSym);
329 }
330
331 unsigned MCDwarfLineTable::getFile(StringRef &Directory, StringRef &FileName,
332                                    unsigned FileNumber) {
333   return Header.getFile(Directory, FileName, FileNumber);
334 }
335
336 unsigned MCDwarfLineTableHeader::getFile(StringRef &Directory,
337                                          StringRef &FileName,
338                                          unsigned FileNumber) {
339   if (Directory == CompilationDir)
340     Directory = "";
341   if (FileName.empty()) {
342     FileName = "<stdin>";
343     Directory = "";
344   }
345   assert(!FileName.empty());
346   if (FileNumber == 0) {
347     FileNumber = SourceIdMap.size() + 1;
348     assert((MCDwarfFiles.empty() || FileNumber == MCDwarfFiles.size()) &&
349            "Don't mix autonumbered and explicit numbered line table usage");
350     SmallString<256> Buffer;
351     auto IterBool = SourceIdMap.insert(
352         std::make_pair((Directory + Twine('\0') + FileName).toStringRef(Buffer),
353                        FileNumber));
354     if (!IterBool.second)
355       return IterBool.first->second;
356   }
357   // Make space for this FileNumber in the MCDwarfFiles vector if needed.
358   MCDwarfFiles.resize(FileNumber + 1);
359
360   // Get the new MCDwarfFile slot for this FileNumber.
361   MCDwarfFile &File = MCDwarfFiles[FileNumber];
362
363   // It is an error to use see the same number more than once.
364   if (!File.Name.empty())
365     return 0;
366
367   if (Directory.empty()) {
368     // Separate the directory part from the basename of the FileName.
369     StringRef tFileName = sys::path::filename(FileName);
370     if (!tFileName.empty()) {
371       Directory = sys::path::parent_path(FileName);
372       if (!Directory.empty())
373         FileName = tFileName;
374     }
375   }
376
377   // Find or make an entry in the MCDwarfDirs vector for this Directory.
378   // Capture directory name.
379   unsigned DirIndex;
380   if (Directory.empty()) {
381     // For FileNames with no directories a DirIndex of 0 is used.
382     DirIndex = 0;
383   } else {
384     DirIndex = 0;
385     for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) {
386       if (Directory == MCDwarfDirs[DirIndex])
387         break;
388     }
389     if (DirIndex >= MCDwarfDirs.size())
390       MCDwarfDirs.push_back(Directory);
391     // The DirIndex is one based, as DirIndex of 0 is used for FileNames with
392     // no directories.  MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
393     // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames
394     // are stored at MCDwarfFiles[FileNumber].Name .
395     DirIndex++;
396   }
397
398   File.Name = FileName;
399   File.DirIndex = DirIndex;
400
401   // return the allocated FileNumber.
402   return FileNumber;
403 }
404
405 /// Utility function to emit the encoding to a streamer.
406 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
407                            int64_t LineDelta, uint64_t AddrDelta) {
408   MCContext &Context = MCOS->getContext();
409   SmallString<256> Tmp;
410   raw_svector_ostream OS(Tmp);
411   MCDwarfLineAddr::Encode(Context, Params, LineDelta, AddrDelta, OS);
412   MCOS->EmitBytes(OS.str());
413 }
414
415 /// Given a special op, return the address skip amount (in units of
416 /// DWARF2_LINE_MIN_INSN_LENGTH).
417 static uint64_t SpecialAddr(MCDwarfLineTableParams Params, uint64_t op) {
418   return (op - Params.DWARF2LineOpcodeBase) / Params.DWARF2LineRange;
419 }
420
421 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
422 void MCDwarfLineAddr::Encode(MCContext &Context, MCDwarfLineTableParams Params,
423                              int64_t LineDelta, uint64_t AddrDelta,
424                              raw_ostream &OS) {
425   uint64_t Temp, Opcode;
426   bool NeedCopy = false;
427
428   // The maximum address skip amount that can be encoded with a special op.
429   uint64_t MaxSpecialAddrDelta = SpecialAddr(Params, 255);
430
431   // Scale the address delta by the minimum instruction length.
432   AddrDelta = ScaleAddrDelta(Context, AddrDelta);
433
434   // A LineDelta of INT64_MAX is a signal that this is actually a
435   // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the
436   // end_sequence to emit the matrix entry.
437   if (LineDelta == INT64_MAX) {
438     if (AddrDelta == MaxSpecialAddrDelta)
439       OS << char(dwarf::DW_LNS_const_add_pc);
440     else if (AddrDelta) {
441       OS << char(dwarf::DW_LNS_advance_pc);
442       encodeULEB128(AddrDelta, OS);
443     }
444     OS << char(dwarf::DW_LNS_extended_op);
445     OS << char(1);
446     OS << char(dwarf::DW_LNE_end_sequence);
447     return;
448   }
449
450   // Bias the line delta by the base.
451   Temp = LineDelta - Params.DWARF2LineBase;
452
453   // If the line increment is out of range of a special opcode, we must encode
454   // it with DW_LNS_advance_line.
455   if (Temp >= Params.DWARF2LineRange) {
456     OS << char(dwarf::DW_LNS_advance_line);
457     encodeSLEB128(LineDelta, OS);
458
459     LineDelta = 0;
460     Temp = 0 - Params.DWARF2LineBase;
461     NeedCopy = true;
462   }
463
464   // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
465   if (LineDelta == 0 && AddrDelta == 0) {
466     OS << char(dwarf::DW_LNS_copy);
467     return;
468   }
469
470   // Bias the opcode by the special opcode base.
471   Temp += Params.DWARF2LineOpcodeBase;
472
473   // Avoid overflow when addr_delta is large.
474   if (AddrDelta < 256 + MaxSpecialAddrDelta) {
475     // Try using a special opcode.
476     Opcode = Temp + AddrDelta * Params.DWARF2LineRange;
477     if (Opcode <= 255) {
478       OS << char(Opcode);
479       return;
480     }
481
482     // Try using DW_LNS_const_add_pc followed by special op.
483     Opcode = Temp + (AddrDelta - MaxSpecialAddrDelta) * Params.DWARF2LineRange;
484     if (Opcode <= 255) {
485       OS << char(dwarf::DW_LNS_const_add_pc);
486       OS << char(Opcode);
487       return;
488     }
489   }
490
491   // Otherwise use DW_LNS_advance_pc.
492   OS << char(dwarf::DW_LNS_advance_pc);
493   encodeULEB128(AddrDelta, OS);
494
495   if (NeedCopy)
496     OS << char(dwarf::DW_LNS_copy);
497   else
498     OS << char(Temp);
499 }
500
501 // Utility function to write a tuple for .debug_abbrev.
502 static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) {
503   MCOS->EmitULEB128IntValue(Name);
504   MCOS->EmitULEB128IntValue(Form);
505 }
506
507 // When generating dwarf for assembly source files this emits
508 // the data for .debug_abbrev section which contains three DIEs.
509 static void EmitGenDwarfAbbrev(MCStreamer *MCOS) {
510   MCContext &context = MCOS->getContext();
511   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
512
513   // DW_TAG_compile_unit DIE abbrev (1).
514   MCOS->EmitULEB128IntValue(1);
515   MCOS->EmitULEB128IntValue(dwarf::DW_TAG_compile_unit);
516   MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
517   EmitAbbrev(MCOS, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4);
518   if (MCOS->getContext().getGenDwarfSectionSyms().size() > 1 &&
519       MCOS->getContext().getDwarfVersion() >= 3) {
520     EmitAbbrev(MCOS, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4);
521   } else {
522     EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
523     EmitAbbrev(MCOS, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr);
524   }
525   EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
526   if (!context.getCompilationDir().empty())
527     EmitAbbrev(MCOS, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string);
528   StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
529   if (!DwarfDebugFlags.empty())
530     EmitAbbrev(MCOS, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string);
531   EmitAbbrev(MCOS, dwarf::DW_AT_producer, dwarf::DW_FORM_string);
532   EmitAbbrev(MCOS, dwarf::DW_AT_language, dwarf::DW_FORM_data2);
533   EmitAbbrev(MCOS, 0, 0);
534
535   // DW_TAG_label DIE abbrev (2).
536   MCOS->EmitULEB128IntValue(2);
537   MCOS->EmitULEB128IntValue(dwarf::DW_TAG_label);
538   MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
539   EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
540   EmitAbbrev(MCOS, dwarf::DW_AT_decl_file, dwarf::DW_FORM_data4);
541   EmitAbbrev(MCOS, dwarf::DW_AT_decl_line, dwarf::DW_FORM_data4);
542   EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
543   EmitAbbrev(MCOS, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag);
544   EmitAbbrev(MCOS, 0, 0);
545
546   // DW_TAG_unspecified_parameters DIE abbrev (3).
547   MCOS->EmitULEB128IntValue(3);
548   MCOS->EmitULEB128IntValue(dwarf::DW_TAG_unspecified_parameters);
549   MCOS->EmitIntValue(dwarf::DW_CHILDREN_no, 1);
550   EmitAbbrev(MCOS, 0, 0);
551
552   // Terminate the abbreviations for this compilation unit.
553   MCOS->EmitIntValue(0, 1);
554 }
555
556 // When generating dwarf for assembly source files this emits the data for
557 // .debug_aranges section. This section contains a header and a table of pairs
558 // of PointerSize'ed values for the address and size of section(s) with line
559 // table entries.
560 static void EmitGenDwarfAranges(MCStreamer *MCOS,
561                                 const MCSymbol *InfoSectionSymbol) {
562   MCContext &context = MCOS->getContext();
563
564   auto &Sections = context.getGenDwarfSectionSyms();
565
566   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
567
568   // This will be the length of the .debug_aranges section, first account for
569   // the size of each item in the header (see below where we emit these items).
570   int Length = 4 + 2 + 4 + 1 + 1;
571
572   // Figure the padding after the header before the table of address and size
573   // pairs who's values are PointerSize'ed.
574   const MCAsmInfo *asmInfo = context.getAsmInfo();
575   int AddrSize = asmInfo->getPointerSize();
576   int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
577   if (Pad == 2 * AddrSize)
578     Pad = 0;
579   Length += Pad;
580
581   // Add the size of the pair of PointerSize'ed values for the address and size
582   // of each section we have in the table.
583   Length += 2 * AddrSize * Sections.size();
584   // And the pair of terminating zeros.
585   Length += 2 * AddrSize;
586
587
588   // Emit the header for this section.
589   // The 4 byte length not including the 4 byte value for the length.
590   MCOS->EmitIntValue(Length - 4, 4);
591   // The 2 byte version, which is 2.
592   MCOS->EmitIntValue(2, 2);
593   // The 4 byte offset to the compile unit in the .debug_info from the start
594   // of the .debug_info.
595   if (InfoSectionSymbol)
596     MCOS->EmitSymbolValue(InfoSectionSymbol, 4,
597                           asmInfo->needsDwarfSectionOffsetDirective());
598   else
599     MCOS->EmitIntValue(0, 4);
600   // The 1 byte size of an address.
601   MCOS->EmitIntValue(AddrSize, 1);
602   // The 1 byte size of a segment descriptor, we use a value of zero.
603   MCOS->EmitIntValue(0, 1);
604   // Align the header with the padding if needed, before we put out the table.
605   for(int i = 0; i < Pad; i++)
606     MCOS->EmitIntValue(0, 1);
607
608   // Now emit the table of pairs of PointerSize'ed values for the section
609   // addresses and sizes.
610   for (MCSection *Sec : Sections) {
611     const MCSymbol *StartSymbol = Sec->getBeginSymbol();
612     MCSymbol *EndSymbol = Sec->getEndSymbol(context);
613     assert(StartSymbol && "StartSymbol must not be NULL");
614     assert(EndSymbol && "EndSymbol must not be NULL");
615
616     const MCExpr *Addr = MCSymbolRefExpr::create(
617       StartSymbol, MCSymbolRefExpr::VK_None, context);
618     const MCExpr *Size = MakeStartMinusEndExpr(*MCOS,
619       *StartSymbol, *EndSymbol, 0);
620     MCOS->EmitValue(Addr, AddrSize);
621     emitAbsValue(*MCOS, Size, AddrSize);
622   }
623
624   // And finally the pair of terminating zeros.
625   MCOS->EmitIntValue(0, AddrSize);
626   MCOS->EmitIntValue(0, AddrSize);
627 }
628
629 // When generating dwarf for assembly source files this emits the data for
630 // .debug_info section which contains three parts.  The header, the compile_unit
631 // DIE and a list of label DIEs.
632 static void EmitGenDwarfInfo(MCStreamer *MCOS,
633                              const MCSymbol *AbbrevSectionSymbol,
634                              const MCSymbol *LineSectionSymbol,
635                              const MCSymbol *RangesSectionSymbol) {
636   MCContext &context = MCOS->getContext();
637
638   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
639
640   // Create a symbol at the start and end of this section used in here for the
641   // expression to calculate the length in the header.
642   MCSymbol *InfoStart = context.createTempSymbol();
643   MCOS->EmitLabel(InfoStart);
644   MCSymbol *InfoEnd = context.createTempSymbol();
645
646   // First part: the header.
647
648   // The 4 byte total length of the information for this compilation unit, not
649   // including these 4 bytes.
650   const MCExpr *Length = MakeStartMinusEndExpr(*MCOS, *InfoStart, *InfoEnd, 4);
651   emitAbsValue(*MCOS, Length, 4);
652
653   // The 2 byte DWARF version.
654   MCOS->EmitIntValue(context.getDwarfVersion(), 2);
655
656   const MCAsmInfo &AsmInfo = *context.getAsmInfo();
657   // The 4 byte offset to the debug abbrevs from the start of the .debug_abbrev,
658   // it is at the start of that section so this is zero.
659   if (AbbrevSectionSymbol == nullptr)
660     MCOS->EmitIntValue(0, 4);
661   else
662     MCOS->EmitSymbolValue(AbbrevSectionSymbol, 4,
663                           AsmInfo.needsDwarfSectionOffsetDirective());
664
665   const MCAsmInfo *asmInfo = context.getAsmInfo();
666   int AddrSize = asmInfo->getPointerSize();
667   // The 1 byte size of an address.
668   MCOS->EmitIntValue(AddrSize, 1);
669
670   // Second part: the compile_unit DIE.
671
672   // The DW_TAG_compile_unit DIE abbrev (1).
673   MCOS->EmitULEB128IntValue(1);
674
675   // DW_AT_stmt_list, a 4 byte offset from the start of the .debug_line section,
676   // which is at the start of that section so this is zero.
677   if (LineSectionSymbol)
678     MCOS->EmitSymbolValue(LineSectionSymbol, 4,
679                           AsmInfo.needsDwarfSectionOffsetDirective());
680   else
681     MCOS->EmitIntValue(0, 4);
682
683   if (RangesSectionSymbol) {
684     // There are multiple sections containing code, so we must use the
685     // .debug_ranges sections.
686
687     // AT_ranges, the 4 byte offset from the start of the .debug_ranges section
688     // to the address range list for this compilation unit.
689     MCOS->EmitSymbolValue(RangesSectionSymbol, 4);
690   } else {
691     // If we only have one non-empty code section, we can use the simpler
692     // AT_low_pc and AT_high_pc attributes.
693
694     // Find the first (and only) non-empty text section
695     auto &Sections = context.getGenDwarfSectionSyms();
696     const auto TextSection = Sections.begin();
697     assert(TextSection != Sections.end() && "No text section found");
698
699     MCSymbol *StartSymbol = (*TextSection)->getBeginSymbol();
700     MCSymbol *EndSymbol = (*TextSection)->getEndSymbol(context);
701     assert(StartSymbol && "StartSymbol must not be NULL");
702     assert(EndSymbol && "EndSymbol must not be NULL");
703
704     // AT_low_pc, the first address of the default .text section.
705     const MCExpr *Start = MCSymbolRefExpr::create(
706         StartSymbol, MCSymbolRefExpr::VK_None, context);
707     MCOS->EmitValue(Start, AddrSize);
708
709     // AT_high_pc, the last address of the default .text section.
710     const MCExpr *End = MCSymbolRefExpr::create(
711       EndSymbol, MCSymbolRefExpr::VK_None, context);
712     MCOS->EmitValue(End, AddrSize);
713   }
714
715   // AT_name, the name of the source file.  Reconstruct from the first directory
716   // and file table entries.
717   const SmallVectorImpl<std::string> &MCDwarfDirs = context.getMCDwarfDirs();
718   if (MCDwarfDirs.size() > 0) {
719     MCOS->EmitBytes(MCDwarfDirs[0]);
720     MCOS->EmitBytes(sys::path::get_separator());
721   }
722   const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles =
723     MCOS->getContext().getMCDwarfFiles();
724   MCOS->EmitBytes(MCDwarfFiles[1].Name);
725   MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
726
727   // AT_comp_dir, the working directory the assembly was done in.
728   if (!context.getCompilationDir().empty()) {
729     MCOS->EmitBytes(context.getCompilationDir());
730     MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
731   }
732
733   // AT_APPLE_flags, the command line arguments of the assembler tool.
734   StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
735   if (!DwarfDebugFlags.empty()){
736     MCOS->EmitBytes(DwarfDebugFlags);
737     MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
738   }
739
740   // AT_producer, the version of the assembler tool.
741   StringRef DwarfDebugProducer = context.getDwarfDebugProducer();
742   if (!DwarfDebugProducer.empty())
743     MCOS->EmitBytes(DwarfDebugProducer);
744   else
745     MCOS->EmitBytes(StringRef("llvm-mc (based on LLVM " PACKAGE_VERSION ")"));
746   MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
747
748   // AT_language, a 4 byte value.  We use DW_LANG_Mips_Assembler as the dwarf2
749   // draft has no standard code for assembler.
750   MCOS->EmitIntValue(dwarf::DW_LANG_Mips_Assembler, 2);
751
752   // Third part: the list of label DIEs.
753
754   // Loop on saved info for dwarf labels and create the DIEs for them.
755   const std::vector<MCGenDwarfLabelEntry> &Entries =
756       MCOS->getContext().getMCGenDwarfLabelEntries();
757   for (const auto &Entry : Entries) {
758     // The DW_TAG_label DIE abbrev (2).
759     MCOS->EmitULEB128IntValue(2);
760
761     // AT_name, of the label without any leading underbar.
762     MCOS->EmitBytes(Entry.getName());
763     MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
764
765     // AT_decl_file, index into the file table.
766     MCOS->EmitIntValue(Entry.getFileNumber(), 4);
767
768     // AT_decl_line, source line number.
769     MCOS->EmitIntValue(Entry.getLineNumber(), 4);
770
771     // AT_low_pc, start address of the label.
772     const MCExpr *AT_low_pc = MCSymbolRefExpr::create(Entry.getLabel(),
773                                              MCSymbolRefExpr::VK_None, context);
774     MCOS->EmitValue(AT_low_pc, AddrSize);
775
776     // DW_AT_prototyped, a one byte flag value of 0 saying we have no prototype.
777     MCOS->EmitIntValue(0, 1);
778
779     // The DW_TAG_unspecified_parameters DIE abbrev (3).
780     MCOS->EmitULEB128IntValue(3);
781
782     // Add the NULL DIE terminating the DW_TAG_unspecified_parameters DIE's.
783     MCOS->EmitIntValue(0, 1);
784   }
785
786   // Add the NULL DIE terminating the Compile Unit DIE's.
787   MCOS->EmitIntValue(0, 1);
788
789   // Now set the value of the symbol at the end of the info section.
790   MCOS->EmitLabel(InfoEnd);
791 }
792
793 // When generating dwarf for assembly source files this emits the data for
794 // .debug_ranges section. We only emit one range list, which spans all of the
795 // executable sections of this file.
796 static void EmitGenDwarfRanges(MCStreamer *MCOS) {
797   MCContext &context = MCOS->getContext();
798   auto &Sections = context.getGenDwarfSectionSyms();
799
800   const MCAsmInfo *AsmInfo = context.getAsmInfo();
801   int AddrSize = AsmInfo->getPointerSize();
802
803   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfRangesSection());
804
805   for (MCSection *Sec : Sections) {
806     const MCSymbol *StartSymbol = Sec->getBeginSymbol();
807     MCSymbol *EndSymbol = Sec->getEndSymbol(context);
808     assert(StartSymbol && "StartSymbol must not be NULL");
809     assert(EndSymbol && "EndSymbol must not be NULL");
810
811     // Emit a base address selection entry for the start of this section
812     const MCExpr *SectionStartAddr = MCSymbolRefExpr::create(
813       StartSymbol, MCSymbolRefExpr::VK_None, context);
814     MCOS->EmitFill(AddrSize, 0xFF);
815     MCOS->EmitValue(SectionStartAddr, AddrSize);
816
817     // Emit a range list entry spanning this section
818     const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS,
819       *StartSymbol, *EndSymbol, 0);
820     MCOS->EmitIntValue(0, AddrSize);
821     emitAbsValue(*MCOS, SectionSize, AddrSize);
822   }
823
824   // Emit end of list entry
825   MCOS->EmitIntValue(0, AddrSize);
826   MCOS->EmitIntValue(0, AddrSize);
827 }
828
829 //
830 // When generating dwarf for assembly source files this emits the Dwarf
831 // sections.
832 //
833 void MCGenDwarfInfo::Emit(MCStreamer *MCOS) {
834   MCContext &context = MCOS->getContext();
835
836   // Create the dwarf sections in this order (.debug_line already created).
837   const MCAsmInfo *AsmInfo = context.getAsmInfo();
838   bool CreateDwarfSectionSymbols =
839       AsmInfo->doesDwarfUseRelocationsAcrossSections();
840   MCSymbol *LineSectionSymbol = nullptr;
841   if (CreateDwarfSectionSymbols)
842     LineSectionSymbol = MCOS->getDwarfLineTableSymbol(0);
843   MCSymbol *AbbrevSectionSymbol = nullptr;
844   MCSymbol *InfoSectionSymbol = nullptr;
845   MCSymbol *RangesSectionSymbol = nullptr;
846
847   // Create end symbols for each section, and remove empty sections
848   MCOS->getContext().finalizeDwarfSections(*MCOS);
849
850   // If there are no sections to generate debug info for, we don't need
851   // to do anything
852   if (MCOS->getContext().getGenDwarfSectionSyms().empty())
853     return;
854
855   // We only use the .debug_ranges section if we have multiple code sections,
856   // and we are emitting a DWARF version which supports it.
857   const bool UseRangesSection =
858       MCOS->getContext().getGenDwarfSectionSyms().size() > 1 &&
859       MCOS->getContext().getDwarfVersion() >= 3;
860   CreateDwarfSectionSymbols |= UseRangesSection;
861
862   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
863   if (CreateDwarfSectionSymbols) {
864     InfoSectionSymbol = context.createTempSymbol();
865     MCOS->EmitLabel(InfoSectionSymbol);
866   }
867   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
868   if (CreateDwarfSectionSymbols) {
869     AbbrevSectionSymbol = context.createTempSymbol();
870     MCOS->EmitLabel(AbbrevSectionSymbol);
871   }
872   if (UseRangesSection) {
873     MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfRangesSection());
874     if (CreateDwarfSectionSymbols) {
875       RangesSectionSymbol = context.createTempSymbol();
876       MCOS->EmitLabel(RangesSectionSymbol);
877     }
878   }
879
880   assert((RangesSectionSymbol != NULL) || !UseRangesSection);
881
882   MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
883
884   // Output the data for .debug_aranges section.
885   EmitGenDwarfAranges(MCOS, InfoSectionSymbol);
886
887   if (UseRangesSection)
888     EmitGenDwarfRanges(MCOS);
889
890   // Output the data for .debug_abbrev section.
891   EmitGenDwarfAbbrev(MCOS);
892
893   // Output the data for .debug_info section.
894   EmitGenDwarfInfo(MCOS, AbbrevSectionSymbol, LineSectionSymbol,
895                    RangesSectionSymbol);
896 }
897
898 //
899 // When generating dwarf for assembly source files this is called when symbol
900 // for a label is created.  If this symbol is not a temporary and is in the
901 // section that dwarf is being generated for, save the needed info to create
902 // a dwarf label.
903 //
904 void MCGenDwarfLabelEntry::Make(MCSymbol *Symbol, MCStreamer *MCOS,
905                                      SourceMgr &SrcMgr, SMLoc &Loc) {
906   // We won't create dwarf labels for temporary symbols.
907   if (Symbol->isTemporary())
908     return;
909   MCContext &context = MCOS->getContext();
910   // We won't create dwarf labels for symbols in sections that we are not
911   // generating debug info for.
912   if (!context.getGenDwarfSectionSyms().count(MCOS->getCurrentSection().first))
913     return;
914
915   // The dwarf label's name does not have the symbol name's leading
916   // underbar if any.
917   StringRef Name = Symbol->getName();
918   if (Name.startswith("_"))
919     Name = Name.substr(1, Name.size()-1);
920
921   // Get the dwarf file number to be used for the dwarf label.
922   unsigned FileNumber = context.getGenDwarfFileNumber();
923
924   // Finding the line number is the expensive part which is why we just don't
925   // pass it in as for some symbols we won't create a dwarf label.
926   unsigned CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
927   unsigned LineNumber = SrcMgr.FindLineNumber(Loc, CurBuffer);
928
929   // We create a temporary symbol for use for the AT_high_pc and AT_low_pc
930   // values so that they don't have things like an ARM thumb bit from the
931   // original symbol. So when used they won't get a low bit set after
932   // relocation.
933   MCSymbol *Label = context.createTempSymbol();
934   MCOS->EmitLabel(Label);
935
936   // Create and entry for the info and add it to the other entries.
937   MCOS->getContext().addMCGenDwarfLabelEntry(
938       MCGenDwarfLabelEntry(Name, FileNumber, LineNumber, Label));
939 }
940
941 static int getDataAlignmentFactor(MCStreamer &streamer) {
942   MCContext &context = streamer.getContext();
943   const MCAsmInfo *asmInfo = context.getAsmInfo();
944   int size = asmInfo->getCalleeSaveStackSlotSize();
945   if (asmInfo->isStackGrowthDirectionUp())
946     return size;
947   else
948     return -size;
949 }
950
951 static unsigned getSizeForEncoding(MCStreamer &streamer,
952                                    unsigned symbolEncoding) {
953   MCContext &context = streamer.getContext();
954   unsigned format = symbolEncoding & 0x0f;
955   switch (format) {
956   default: llvm_unreachable("Unknown Encoding");
957   case dwarf::DW_EH_PE_absptr:
958   case dwarf::DW_EH_PE_signed:
959     return context.getAsmInfo()->getPointerSize();
960   case dwarf::DW_EH_PE_udata2:
961   case dwarf::DW_EH_PE_sdata2:
962     return 2;
963   case dwarf::DW_EH_PE_udata4:
964   case dwarf::DW_EH_PE_sdata4:
965     return 4;
966   case dwarf::DW_EH_PE_udata8:
967   case dwarf::DW_EH_PE_sdata8:
968     return 8;
969   }
970 }
971
972 static void emitFDESymbol(MCObjectStreamer &streamer, const MCSymbol &symbol,
973                        unsigned symbolEncoding, bool isEH) {
974   MCContext &context = streamer.getContext();
975   const MCAsmInfo *asmInfo = context.getAsmInfo();
976   const MCExpr *v = asmInfo->getExprForFDESymbol(&symbol,
977                                                  symbolEncoding,
978                                                  streamer);
979   unsigned size = getSizeForEncoding(streamer, symbolEncoding);
980   if (asmInfo->doDwarfFDESymbolsUseAbsDiff() && isEH)
981     emitAbsValue(streamer, v, size);
982   else
983     streamer.EmitValue(v, size);
984 }
985
986 static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
987                             unsigned symbolEncoding) {
988   MCContext &context = streamer.getContext();
989   const MCAsmInfo *asmInfo = context.getAsmInfo();
990   const MCExpr *v = asmInfo->getExprForPersonalitySymbol(&symbol,
991                                                          symbolEncoding,
992                                                          streamer);
993   unsigned size = getSizeForEncoding(streamer, symbolEncoding);
994   streamer.EmitValue(v, size);
995 }
996
997 namespace {
998 class FrameEmitterImpl {
999   int CFAOffset = 0;
1000   int InitialCFAOffset = 0;
1001   bool IsEH;
1002   const MCSymbol *SectionStart = nullptr;
1003   MCObjectStreamer &Streamer;
1004
1005 public:
1006   FrameEmitterImpl(bool IsEH, MCObjectStreamer &Streamer)
1007       : IsEH(IsEH), Streamer(Streamer) {}
1008
1009   void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
1010
1011   /// Emit the unwind information in a compact way.
1012   void EmitCompactUnwind(const MCDwarfFrameInfo &frame);
1013
1014   const MCSymbol &EmitCIE(const MCSymbol *personality,
1015                           unsigned personalityEncoding, const MCSymbol *lsda,
1016                           bool IsSignalFrame, unsigned lsdaEncoding,
1017                           bool IsSimple);
1018   void EmitFDE(const MCSymbol &cieStart, const MCDwarfFrameInfo &frame,
1019                bool LastInSection);
1020   void EmitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
1021                            MCSymbol *BaseLabel);
1022   void EmitCFIInstruction(const MCCFIInstruction &Instr);
1023 };
1024
1025 } // end anonymous namespace
1026
1027 static void emitEncodingByte(MCObjectStreamer &Streamer, unsigned Encoding) {
1028   Streamer.EmitIntValue(Encoding, 1);
1029 }
1030
1031 void FrameEmitterImpl::EmitCFIInstruction(const MCCFIInstruction &Instr) {
1032   int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
1033   auto *MRI = Streamer.getContext().getRegisterInfo();
1034
1035   switch (Instr.getOperation()) {
1036   case MCCFIInstruction::OpRegister: {
1037     unsigned Reg1 = Instr.getRegister();
1038     unsigned Reg2 = Instr.getRegister2();
1039     if (!IsEH) {
1040       Reg1 = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg1, true), false);
1041       Reg2 = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg2, true), false);
1042     }
1043     Streamer.EmitIntValue(dwarf::DW_CFA_register, 1);
1044     Streamer.EmitULEB128IntValue(Reg1);
1045     Streamer.EmitULEB128IntValue(Reg2);
1046     return;
1047   }
1048   case MCCFIInstruction::OpWindowSave: {
1049     Streamer.EmitIntValue(dwarf::DW_CFA_GNU_window_save, 1);
1050     return;
1051   }
1052   case MCCFIInstruction::OpUndefined: {
1053     unsigned Reg = Instr.getRegister();
1054     Streamer.EmitIntValue(dwarf::DW_CFA_undefined, 1);
1055     Streamer.EmitULEB128IntValue(Reg);
1056     return;
1057   }
1058   case MCCFIInstruction::OpAdjustCfaOffset:
1059   case MCCFIInstruction::OpDefCfaOffset: {
1060     const bool IsRelative =
1061       Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset;
1062
1063     Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
1064
1065     if (IsRelative)
1066       CFAOffset += Instr.getOffset();
1067     else
1068       CFAOffset = -Instr.getOffset();
1069
1070     Streamer.EmitULEB128IntValue(CFAOffset);
1071
1072     return;
1073   }
1074   case MCCFIInstruction::OpDefCfa: {
1075     unsigned Reg = Instr.getRegister();
1076     if (!IsEH)
1077       Reg = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg, true), false);
1078     Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
1079     Streamer.EmitULEB128IntValue(Reg);
1080     CFAOffset = -Instr.getOffset();
1081     Streamer.EmitULEB128IntValue(CFAOffset);
1082
1083     return;
1084   }
1085
1086   case MCCFIInstruction::OpDefCfaRegister: {
1087     unsigned Reg = Instr.getRegister();
1088     if (!IsEH)
1089       Reg = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg, true), false);
1090     Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
1091     Streamer.EmitULEB128IntValue(Reg);
1092
1093     return;
1094   }
1095
1096   case MCCFIInstruction::OpOffset:
1097   case MCCFIInstruction::OpRelOffset: {
1098     const bool IsRelative =
1099       Instr.getOperation() == MCCFIInstruction::OpRelOffset;
1100
1101     unsigned Reg = Instr.getRegister();
1102     if (!IsEH)
1103       Reg = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg, true), false);
1104
1105     int Offset = Instr.getOffset();
1106     if (IsRelative)
1107       Offset -= CFAOffset;
1108     Offset = Offset / dataAlignmentFactor;
1109
1110     if (Offset < 0) {
1111       Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
1112       Streamer.EmitULEB128IntValue(Reg);
1113       Streamer.EmitSLEB128IntValue(Offset);
1114     } else if (Reg < 64) {
1115       Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
1116       Streamer.EmitULEB128IntValue(Offset);
1117     } else {
1118       Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
1119       Streamer.EmitULEB128IntValue(Reg);
1120       Streamer.EmitULEB128IntValue(Offset);
1121     }
1122     return;
1123   }
1124   case MCCFIInstruction::OpRememberState:
1125     Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
1126     return;
1127   case MCCFIInstruction::OpRestoreState:
1128     Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
1129     return;
1130   case MCCFIInstruction::OpSameValue: {
1131     unsigned Reg = Instr.getRegister();
1132     Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
1133     Streamer.EmitULEB128IntValue(Reg);
1134     return;
1135   }
1136   case MCCFIInstruction::OpRestore: {
1137     unsigned Reg = Instr.getRegister();
1138     if (!IsEH)
1139       Reg = MRI->getDwarfRegNum(MRI->getLLVMRegNum(Reg, true), false);
1140     Streamer.EmitIntValue(dwarf::DW_CFA_restore | Reg, 1);
1141     return;
1142   }
1143   case MCCFIInstruction::OpGnuArgsSize: {
1144     Streamer.EmitIntValue(dwarf::DW_CFA_GNU_args_size, 1);
1145     Streamer.EmitULEB128IntValue(Instr.getOffset());
1146     return;
1147   }
1148   case MCCFIInstruction::OpEscape:
1149     Streamer.EmitBytes(Instr.getValues());
1150     return;
1151   }
1152   llvm_unreachable("Unhandled case in switch");
1153 }
1154
1155 /// Emit frame instructions to describe the layout of the frame.
1156 void FrameEmitterImpl::EmitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
1157                                            MCSymbol *BaseLabel) {
1158   for (unsigned i = 0, N = Instrs.size(); i < N; ++i) {
1159     const MCCFIInstruction &Instr = Instrs[i];
1160     MCSymbol *Label = Instr.getLabel();
1161     // Throw out move if the label is invalid.
1162     if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
1163
1164     // Advance row if new location.
1165     if (BaseLabel && Label) {
1166       MCSymbol *ThisSym = Label;
1167       if (ThisSym != BaseLabel) {
1168         Streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
1169         BaseLabel = ThisSym;
1170       }
1171     }
1172
1173     EmitCFIInstruction(Instr);
1174   }
1175 }
1176
1177 /// Emit the unwind information in a compact way.
1178 void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) {
1179   MCContext &Context = Streamer.getContext();
1180   const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
1181
1182   // range-start range-length  compact-unwind-enc personality-func   lsda
1183   //  _foo       LfooEnd-_foo  0x00000023          0                 0
1184   //  _bar       LbarEnd-_bar  0x00000025         __gxx_personality  except_tab1
1185   //
1186   //   .section __LD,__compact_unwind,regular,debug
1187   //
1188   //   # compact unwind for _foo
1189   //   .quad _foo
1190   //   .set L1,LfooEnd-_foo
1191   //   .long L1
1192   //   .long 0x01010001
1193   //   .quad 0
1194   //   .quad 0
1195   //
1196   //   # compact unwind for _bar
1197   //   .quad _bar
1198   //   .set L2,LbarEnd-_bar
1199   //   .long L2
1200   //   .long 0x01020011
1201   //   .quad __gxx_personality
1202   //   .quad except_tab1
1203
1204   uint32_t Encoding = Frame.CompactUnwindEncoding;
1205   if (!Encoding) return;
1206   bool DwarfEHFrameOnly = (Encoding == MOFI->getCompactUnwindDwarfEHFrameOnly());
1207
1208   // The encoding needs to know we have an LSDA.
1209   if (!DwarfEHFrameOnly && Frame.Lsda)
1210     Encoding |= 0x40000000;
1211
1212   // Range Start
1213   unsigned FDEEncoding = MOFI->getFDEEncoding();
1214   unsigned Size = getSizeForEncoding(Streamer, FDEEncoding);
1215   Streamer.EmitSymbolValue(Frame.Begin, Size);
1216
1217   // Range Length
1218   const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
1219                                               *Frame.End, 0);
1220   emitAbsValue(Streamer, Range, 4);
1221
1222   // Compact Encoding
1223   Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_udata4);
1224   Streamer.EmitIntValue(Encoding, Size);
1225
1226   // Personality Function
1227   Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_absptr);
1228   if (!DwarfEHFrameOnly && Frame.Personality)
1229     Streamer.EmitSymbolValue(Frame.Personality, Size);
1230   else
1231     Streamer.EmitIntValue(0, Size); // No personality fn
1232
1233   // LSDA
1234   Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding);
1235   if (!DwarfEHFrameOnly && Frame.Lsda)
1236     Streamer.EmitSymbolValue(Frame.Lsda, Size);
1237   else
1238     Streamer.EmitIntValue(0, Size); // No LSDA
1239 }
1240
1241 static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) {
1242   if (IsEH)
1243     return 1;
1244   switch (DwarfVersion) {
1245   case 2:
1246     return 1;
1247   case 3:
1248     return 3;
1249   case 4:
1250     return 4;
1251   }
1252   llvm_unreachable("Unknown version");
1253 }
1254
1255 const MCSymbol &FrameEmitterImpl::EmitCIE(const MCSymbol *personality,
1256                                           unsigned personalityEncoding,
1257                                           const MCSymbol *lsda,
1258                                           bool IsSignalFrame,
1259                                           unsigned lsdaEncoding,
1260                                           bool IsSimple) {
1261   MCContext &context = Streamer.getContext();
1262   const MCRegisterInfo *MRI = context.getRegisterInfo();
1263   const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
1264
1265   MCSymbol *sectionStart = context.createTempSymbol();
1266   Streamer.EmitLabel(sectionStart);
1267
1268   MCSymbol *sectionEnd = context.createTempSymbol();
1269
1270   // Length
1271   const MCExpr *Length =
1272       MakeStartMinusEndExpr(Streamer, *sectionStart, *sectionEnd, 4);
1273   emitAbsValue(Streamer, Length, 4);
1274
1275   // CIE ID
1276   unsigned CIE_ID = IsEH ? 0 : -1;
1277   Streamer.EmitIntValue(CIE_ID, 4);
1278
1279   // Version
1280   uint8_t CIEVersion = getCIEVersion(IsEH, context.getDwarfVersion());
1281   Streamer.EmitIntValue(CIEVersion, 1);
1282
1283   // Augmentation String
1284   SmallString<8> Augmentation;
1285   if (IsEH) {
1286     Augmentation += "z";
1287     if (personality)
1288       Augmentation += "P";
1289     if (lsda)
1290       Augmentation += "L";
1291     Augmentation += "R";
1292     if (IsSignalFrame)
1293       Augmentation += "S";
1294     Streamer.EmitBytes(Augmentation);
1295   }
1296   Streamer.EmitIntValue(0, 1);
1297
1298   if (CIEVersion >= 4) {
1299     // Address Size
1300     Streamer.EmitIntValue(context.getAsmInfo()->getPointerSize(), 1);
1301
1302     // Segment Descriptor Size
1303     Streamer.EmitIntValue(0, 1);
1304   }
1305
1306   // Code Alignment Factor
1307   Streamer.EmitULEB128IntValue(context.getAsmInfo()->getMinInstAlignment());
1308
1309   // Data Alignment Factor
1310   Streamer.EmitSLEB128IntValue(getDataAlignmentFactor(Streamer));
1311
1312   // Return Address Register
1313   if (CIEVersion == 1) {
1314     assert(MRI->getRARegister() <= 255 &&
1315            "DWARF 2 encodes return_address_register in one byte");
1316     Streamer.EmitIntValue(MRI->getDwarfRegNum(MRI->getRARegister(), IsEH), 1);
1317   } else {
1318     Streamer.EmitULEB128IntValue(
1319         MRI->getDwarfRegNum(MRI->getRARegister(), IsEH));
1320   }
1321
1322   // Augmentation Data Length (optional)
1323
1324   unsigned augmentationLength = 0;
1325   if (IsEH) {
1326     if (personality) {
1327       // Personality Encoding
1328       augmentationLength += 1;
1329       // Personality
1330       augmentationLength += getSizeForEncoding(Streamer, personalityEncoding);
1331     }
1332     if (lsda)
1333       augmentationLength += 1;
1334     // Encoding of the FDE pointers
1335     augmentationLength += 1;
1336
1337     Streamer.EmitULEB128IntValue(augmentationLength);
1338
1339     // Augmentation Data (optional)
1340     if (personality) {
1341       // Personality Encoding
1342       emitEncodingByte(Streamer, personalityEncoding);
1343       // Personality
1344       EmitPersonality(Streamer, *personality, personalityEncoding);
1345     }
1346
1347     if (lsda)
1348       emitEncodingByte(Streamer, lsdaEncoding);
1349
1350     // Encoding of the FDE pointers
1351     emitEncodingByte(Streamer, MOFI->getFDEEncoding());
1352   }
1353
1354   // Initial Instructions
1355
1356   const MCAsmInfo *MAI = context.getAsmInfo();
1357   if (!IsSimple) {
1358     const std::vector<MCCFIInstruction> &Instructions =
1359         MAI->getInitialFrameState();
1360     EmitCFIInstructions(Instructions, nullptr);
1361   }
1362
1363   InitialCFAOffset = CFAOffset;
1364
1365   // Padding
1366   Streamer.EmitValueToAlignment(IsEH ? 4 : MAI->getPointerSize());
1367
1368   Streamer.EmitLabel(sectionEnd);
1369   return *sectionStart;
1370 }
1371
1372 void FrameEmitterImpl::EmitFDE(const MCSymbol &cieStart,
1373                                const MCDwarfFrameInfo &frame,
1374                                bool LastInSection) {
1375   MCContext &context = Streamer.getContext();
1376   MCSymbol *fdeStart = context.createTempSymbol();
1377   MCSymbol *fdeEnd = context.createTempSymbol();
1378   const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
1379
1380   CFAOffset = InitialCFAOffset;
1381
1382   // Length
1383   const MCExpr *Length = MakeStartMinusEndExpr(Streamer, *fdeStart, *fdeEnd, 0);
1384   emitAbsValue(Streamer, Length, 4);
1385
1386   Streamer.EmitLabel(fdeStart);
1387
1388   // CIE Pointer
1389   const MCAsmInfo *asmInfo = context.getAsmInfo();
1390   if (IsEH) {
1391     const MCExpr *offset =
1392         MakeStartMinusEndExpr(Streamer, cieStart, *fdeStart, 0);
1393     emitAbsValue(Streamer, offset, 4);
1394   } else if (!asmInfo->doesDwarfUseRelocationsAcrossSections()) {
1395     const MCExpr *offset =
1396         MakeStartMinusEndExpr(Streamer, *SectionStart, cieStart, 0);
1397     emitAbsValue(Streamer, offset, 4);
1398   } else {
1399     Streamer.EmitSymbolValue(&cieStart, 4);
1400   }
1401
1402   // PC Begin
1403   unsigned PCEncoding =
1404       IsEH ? MOFI->getFDEEncoding() : (unsigned)dwarf::DW_EH_PE_absptr;
1405   unsigned PCSize = getSizeForEncoding(Streamer, PCEncoding);
1406   emitFDESymbol(Streamer, *frame.Begin, PCEncoding, IsEH);
1407
1408   // PC Range
1409   const MCExpr *Range =
1410       MakeStartMinusEndExpr(Streamer, *frame.Begin, *frame.End, 0);
1411   emitAbsValue(Streamer, Range, PCSize);
1412
1413   if (IsEH) {
1414     // Augmentation Data Length
1415     unsigned augmentationLength = 0;
1416
1417     if (frame.Lsda)
1418       augmentationLength += getSizeForEncoding(Streamer, frame.LsdaEncoding);
1419
1420     Streamer.EmitULEB128IntValue(augmentationLength);
1421
1422     // Augmentation Data
1423     if (frame.Lsda)
1424       emitFDESymbol(Streamer, *frame.Lsda, frame.LsdaEncoding, true);
1425   }
1426
1427   // Call Frame Instructions
1428   EmitCFIInstructions(frame.Instructions, frame.Begin);
1429
1430   // Padding
1431   // The size of a .eh_frame section has to be a multiple of the alignment
1432   // since a null CIE is interpreted as the end. Old systems overaligned
1433   // .eh_frame, so we do too and account for it in the last FDE.
1434   unsigned Align = LastInSection ? asmInfo->getPointerSize() : PCSize;
1435   Streamer.EmitValueToAlignment(Align);
1436
1437   Streamer.EmitLabel(fdeEnd);
1438 }
1439
1440 namespace {
1441   struct CIEKey {
1442     static const CIEKey getEmptyKey() {
1443       return CIEKey(nullptr, 0, -1, false, false);
1444     }
1445     static const CIEKey getTombstoneKey() {
1446       return CIEKey(nullptr, -1, 0, false, false);
1447     }
1448
1449     CIEKey(const MCSymbol *Personality_, unsigned PersonalityEncoding_,
1450            unsigned LsdaEncoding_, bool IsSignalFrame_, bool IsSimple_)
1451         : Personality(Personality_), PersonalityEncoding(PersonalityEncoding_),
1452           LsdaEncoding(LsdaEncoding_), IsSignalFrame(IsSignalFrame_),
1453           IsSimple(IsSimple_) {}
1454     const MCSymbol *Personality;
1455     unsigned PersonalityEncoding;
1456     unsigned LsdaEncoding;
1457     bool IsSignalFrame;
1458     bool IsSimple;
1459   };
1460 } // anonymous namespace
1461
1462 namespace llvm {
1463   template <>
1464   struct DenseMapInfo<CIEKey> {
1465     static CIEKey getEmptyKey() {
1466       return CIEKey::getEmptyKey();
1467     }
1468     static CIEKey getTombstoneKey() {
1469       return CIEKey::getTombstoneKey();
1470     }
1471     static unsigned getHashValue(const CIEKey &Key) {
1472       return static_cast<unsigned>(hash_combine(Key.Personality,
1473                                                 Key.PersonalityEncoding,
1474                                                 Key.LsdaEncoding,
1475                                                 Key.IsSignalFrame,
1476                                                 Key.IsSimple));
1477     }
1478     static bool isEqual(const CIEKey &LHS,
1479                         const CIEKey &RHS) {
1480       return LHS.Personality == RHS.Personality &&
1481         LHS.PersonalityEncoding == RHS.PersonalityEncoding &&
1482         LHS.LsdaEncoding == RHS.LsdaEncoding &&
1483         LHS.IsSignalFrame == RHS.IsSignalFrame &&
1484         LHS.IsSimple == RHS.IsSimple;
1485     }
1486   };
1487 } // namespace llvm
1488
1489 void MCDwarfFrameEmitter::Emit(MCObjectStreamer &Streamer, MCAsmBackend *MAB,
1490                                bool IsEH) {
1491   Streamer.generateCompactUnwindEncodings(MAB);
1492
1493   MCContext &Context = Streamer.getContext();
1494   const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
1495   FrameEmitterImpl Emitter(IsEH, Streamer);
1496   ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getDwarfFrameInfos();
1497
1498   // Emit the compact unwind info if available.
1499   bool NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame();
1500   if (IsEH && MOFI->getCompactUnwindSection()) {
1501     bool SectionEmitted = false;
1502     for (unsigned i = 0, n = FrameArray.size(); i < n; ++i) {
1503       const MCDwarfFrameInfo &Frame = FrameArray[i];
1504       if (Frame.CompactUnwindEncoding == 0) continue;
1505       if (!SectionEmitted) {
1506         Streamer.SwitchSection(MOFI->getCompactUnwindSection());
1507         Streamer.EmitValueToAlignment(Context.getAsmInfo()->getPointerSize());
1508         SectionEmitted = true;
1509       }
1510       NeedsEHFrameSection |=
1511         Frame.CompactUnwindEncoding ==
1512           MOFI->getCompactUnwindDwarfEHFrameOnly();
1513       Emitter.EmitCompactUnwind(Frame);
1514     }
1515   }
1516
1517   if (!NeedsEHFrameSection) return;
1518
1519   MCSection &Section =
1520       IsEH ? *const_cast<MCObjectFileInfo *>(MOFI)->getEHFrameSection()
1521            : *MOFI->getDwarfFrameSection();
1522
1523   Streamer.SwitchSection(&Section);
1524   MCSymbol *SectionStart = Context.createTempSymbol();
1525   Streamer.EmitLabel(SectionStart);
1526   Emitter.setSectionStart(SectionStart);
1527
1528   DenseMap<CIEKey, const MCSymbol *> CIEStarts;
1529
1530   const MCSymbol *DummyDebugKey = nullptr;
1531   bool CanOmitDwarf = MOFI->getOmitDwarfIfHaveCompactUnwind();
1532   for (auto I = FrameArray.begin(), E = FrameArray.end(); I != E;) {
1533     const MCDwarfFrameInfo &Frame = *I;
1534     ++I;
1535     if (CanOmitDwarf && Frame.CompactUnwindEncoding !=
1536           MOFI->getCompactUnwindDwarfEHFrameOnly())
1537       // Don't generate an EH frame if we don't need one. I.e., it's taken care
1538       // of by the compact unwind encoding.
1539       continue;
1540
1541     CIEKey Key(Frame.Personality, Frame.PersonalityEncoding,
1542                Frame.LsdaEncoding, Frame.IsSignalFrame, Frame.IsSimple);
1543     const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey;
1544     if (!CIEStart)
1545       CIEStart = &Emitter.EmitCIE(Frame.Personality, Frame.PersonalityEncoding,
1546                                   Frame.Lsda, Frame.IsSignalFrame,
1547                                   Frame.LsdaEncoding, Frame.IsSimple);
1548
1549     Emitter.EmitFDE(*CIEStart, Frame, I == E);
1550   }
1551 }
1552
1553 void MCDwarfFrameEmitter::EmitAdvanceLoc(MCObjectStreamer &Streamer,
1554                                          uint64_t AddrDelta) {
1555   MCContext &Context = Streamer.getContext();
1556   SmallString<256> Tmp;
1557   raw_svector_ostream OS(Tmp);
1558   MCDwarfFrameEmitter::EncodeAdvanceLoc(Context, AddrDelta, OS);
1559   Streamer.EmitBytes(OS.str());
1560 }
1561
1562 void MCDwarfFrameEmitter::EncodeAdvanceLoc(MCContext &Context,
1563                                            uint64_t AddrDelta,
1564                                            raw_ostream &OS) {
1565   // Scale the address delta by the minimum instruction length.
1566   AddrDelta = ScaleAddrDelta(Context, AddrDelta);
1567
1568   if (AddrDelta == 0) {
1569   } else if (isUIntN(6, AddrDelta)) {
1570     uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1571     OS << Opcode;
1572   } else if (isUInt<8>(AddrDelta)) {
1573     OS << uint8_t(dwarf::DW_CFA_advance_loc1);
1574     OS << uint8_t(AddrDelta);
1575   } else if (isUInt<16>(AddrDelta)) {
1576     OS << uint8_t(dwarf::DW_CFA_advance_loc2);
1577     if (Context.getAsmInfo()->isLittleEndian())
1578       support::endian::Writer<support::little>(OS).write<uint16_t>(AddrDelta);
1579     else
1580       support::endian::Writer<support::big>(OS).write<uint16_t>(AddrDelta);
1581   } else {
1582     assert(isUInt<32>(AddrDelta));
1583     OS << uint8_t(dwarf::DW_CFA_advance_loc4);
1584     if (Context.getAsmInfo()->isLittleEndian())
1585       support::endian::Writer<support::little>(OS).write<uint32_t>(AddrDelta);
1586     else
1587       support::endian::Writer<support::big>(OS).write<uint32_t>(AddrDelta);
1588   }
1589 }