blob: 57823e419f798f1dbfbd3c2d53a7987e63af777a [file] [log] [blame]
Kevin Enderbye5930f12010-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
Chandler Carruth6bda14b2017-06-06 11:49:48 +000010#include "llvm/MC/MCDwarf.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000011#include "llvm/ADT/ArrayRef.h"
12#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000013#include "llvm/ADT/Hashing.h"
Scott Linder16c7bda2018-02-23 23:01:06 +000014#include "llvm/ADT/Optional.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/SmallString.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000017#include "llvm/ADT/SmallVector.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000018#include "llvm/ADT/StringRef.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/Twine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000020#include "llvm/BinaryFormat/Dwarf.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Config/config.h"
Evan Cheng76792992011-07-20 05:58:47 +000022#include "llvm/MC/MCAsmInfo.h"
23#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/MC/MCExpr.h"
Evan Cheng76792992011-07-20 05:58:47 +000025#include "llvm/MC/MCObjectFileInfo.h"
Rafael Espindola4066e8d2014-05-12 14:28:48 +000026#include "llvm/MC/MCObjectStreamer.h"
Evan Cheng76792992011-07-20 05:58:47 +000027#include "llvm/MC/MCRegisterInfo.h"
Oliver Stannard8b273082014-06-19 15:52:37 +000028#include "llvm/MC/MCSection.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000029#include "llvm/MC/MCStreamer.h"
Kevin Enderbye46564a2010-09-30 16:52:03 +000030#include "llvm/MC/MCSymbol.h"
Paul Robinson1f900292018-02-06 20:29:21 +000031#include "llvm/MC/StringTableBuilder.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000032#include "llvm/Support/Casting.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000033#include "llvm/Support/Endian.h"
Reid Kleckner858239d2016-06-22 23:23:08 +000034#include "llvm/Support/EndianStream.h"
Rafael Espindola85d91982010-12-28 18:36:23 +000035#include "llvm/Support/ErrorHandling.h"
Jim Grosbachbf387df2012-08-08 23:56:06 +000036#include "llvm/Support/LEB128.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000037#include "llvm/Support/MathExtras.h"
Kevin Enderbye7739d42011-12-09 18:09:40 +000038#include "llvm/Support/Path.h"
39#include "llvm/Support/SourceMgr.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/Support/raw_ostream.h"
Eugene Zelenkod96089b2017-02-14 00:33:36 +000041#include <cassert>
42#include <cstdint>
43#include <string>
44#include <utility>
45#include <vector>
Hans Wennborg083ca9b2015-10-06 23:24:35 +000046
Kevin Enderbye5930f12010-07-28 20:55:35 +000047using namespace llvm;
48
Paul Robinson1f900292018-02-06 20:29:21 +000049/// Manage the .debug_line_str section contents, if we use it.
50class llvm::MCDwarfLineStr {
51 MCSymbol *LineStrLabel = nullptr;
52 StringTableBuilder LineStrings{StringTableBuilder::DWARF};
53 bool UseRelocs = false;
54
55public:
56 /// Construct an instance that can emit .debug_line_str (for use in a normal
57 /// v5 line table).
58 explicit MCDwarfLineStr(MCContext &Ctx) {
59 UseRelocs = Ctx.getAsmInfo()->doesDwarfUseRelocationsAcrossSections();
60 if (UseRelocs)
61 LineStrLabel =
62 Ctx.getObjectFileInfo()->getDwarfLineStrSection()->getBeginSymbol();
63 }
64
65 /// Emit a reference to the string.
66 void emitRef(MCStreamer *MCOS, StringRef Path);
67
68 /// Emit the .debug_line_str section if appropriate.
69 void emitSection(MCStreamer *MCOS);
70};
71
Ulrich Weigand32d725b2013-06-12 14:46:54 +000072static inline uint64_t ScaleAddrDelta(MCContext &Context, uint64_t AddrDelta) {
Bill Wendlingbc07a892013-06-18 07:20:20 +000073 unsigned MinInsnLength = Context.getAsmInfo()->getMinInstAlignment();
Ulrich Weigand32d725b2013-06-12 14:46:54 +000074 if (MinInsnLength == 1)
Kevin Enderbye46564a2010-09-30 16:52:03 +000075 return AddrDelta;
Ulrich Weigand32d725b2013-06-12 14:46:54 +000076 if (AddrDelta % MinInsnLength != 0) {
Kevin Enderbye46564a2010-09-30 16:52:03 +000077 // TODO: report this error, but really only once.
78 ;
79 }
Ulrich Weigand32d725b2013-06-12 14:46:54 +000080 return AddrDelta / MinInsnLength;
Kevin Enderbye46564a2010-09-30 16:52:03 +000081}
82
83//
84// This is called when an instruction is assembled into the specified section
85// and if there is information from the last .loc directive that has yet to have
86// a line entry made for it is made.
87//
David Majnemer8cc30782016-01-21 01:59:03 +000088void MCDwarfLineEntry::Make(MCObjectStreamer *MCOS, MCSection *Section) {
Kevin Enderbye46564a2010-09-30 16:52:03 +000089 if (!MCOS->getContext().getDwarfLocSeen())
90 return;
91
92 // Create a symbol at in the current section for use in the line entry.
Jim Grosbach6f482002015-05-18 18:43:14 +000093 MCSymbol *LineSym = MCOS->getContext().createTempSymbol();
David Majnemer8cc30782016-01-21 01:59:03 +000094 // Set the value of the symbol to use for the MCDwarfLineEntry.
Kevin Enderbye46564a2010-09-30 16:52:03 +000095 MCOS->EmitLabel(LineSym);
96
97 // Get the current .loc info saved in the context.
98 const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
99
100 // Create a (local) line entry with the symbol and the current .loc info.
David Majnemer8cc30782016-01-21 01:59:03 +0000101 MCDwarfLineEntry LineEntry(LineSym, DwarfLoc);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000102
103 // clear DwarfLocSeen saying the current .loc info is now used.
Jim Grosbach6f482002015-05-18 18:43:14 +0000104 MCOS->getContext().clearDwarfLocSeen();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000105
Kevin Enderbye46564a2010-09-30 16:52:03 +0000106 // Add the line entry to this section's entries.
David Blaikiea55e64f2014-03-12 22:28:56 +0000107 MCOS->getContext()
David Blaikied9012ba2014-03-13 21:59:51 +0000108 .getMCDwarfLineTable(MCOS->getContext().getDwarfCompileUnitID())
David Blaikie11765bc2014-03-13 17:55:28 +0000109 .getMCLineSections()
David Blaikiea55e64f2014-03-12 22:28:56 +0000110 .addLineEntry(LineEntry, Section);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000111}
112
113//
114// This helper routine returns an expression of End - Start + IntVal .
Jim Grosbachdc1e36e2012-05-11 01:41:30 +0000115//
Rafael Espindolad66e65d2010-12-09 23:08:35 +0000116static inline const MCExpr *MakeStartMinusEndExpr(const MCStreamer &MCOS,
117 const MCSymbol &Start,
118 const MCSymbol &End,
119 int IntVal) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000120 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
121 const MCExpr *Res =
Jim Grosbach13760bd2015-05-30 01:25:56 +0000122 MCSymbolRefExpr::create(&End, Variant, MCOS.getContext());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000123 const MCExpr *RHS =
Jim Grosbach13760bd2015-05-30 01:25:56 +0000124 MCSymbolRefExpr::create(&Start, Variant, MCOS.getContext());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000125 const MCExpr *Res1 =
Jim Grosbach13760bd2015-05-30 01:25:56 +0000126 MCBinaryExpr::create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000127 const MCExpr *Res2 =
Jim Grosbach13760bd2015-05-30 01:25:56 +0000128 MCConstantExpr::create(IntVal, MCOS.getContext());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000129 const MCExpr *Res3 =
Jim Grosbach13760bd2015-05-30 01:25:56 +0000130 MCBinaryExpr::create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000131 return Res3;
132}
133
Kevin Enderbye46564a2010-09-30 16:52:03 +0000134//
Paul Robinson1f900292018-02-06 20:29:21 +0000135// This helper routine returns an expression of Start + IntVal .
136//
137static inline const MCExpr *
138makeStartPlusIntExpr(MCContext &Ctx, const MCSymbol &Start, int IntVal) {
139 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
140 const MCExpr *LHS = MCSymbolRefExpr::create(&Start, Variant, Ctx);
141 const MCExpr *RHS = MCConstantExpr::create(IntVal, Ctx);
142 const MCExpr *Res = MCBinaryExpr::create(MCBinaryExpr::Add, LHS, RHS, Ctx);
143 return Res;
144}
145
146//
Kevin Enderbye46564a2010-09-30 16:52:03 +0000147// This emits the Dwarf line table for the specified section from the entries
148// in the LineSection.
149//
David Blaikief4ad6982014-03-12 22:35:23 +0000150static inline void
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000151EmitDwarfLineTable(MCObjectStreamer *MCOS, MCSection *Section,
David Majnemer8cc30782016-01-21 01:59:03 +0000152 const MCLineSection::MCDwarfLineEntryCollection &LineEntries) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000153 unsigned FileNum = 1;
154 unsigned LastLine = 1;
155 unsigned Column = 0;
156 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
157 unsigned Isa = 0;
Diego Novillo5b5cf502014-02-14 19:27:53 +0000158 unsigned Discriminator = 0;
Craig Topperbb694de2014-04-13 04:57:38 +0000159 MCSymbol *LastLabel = nullptr;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000160
David Majnemer8cc30782016-01-21 01:59:03 +0000161 // Loop through each MCDwarfLineEntry and encode the dwarf line number table.
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000162 for (const MCDwarfLineEntry &LineEntry : LineEntries) {
163 int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000164
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000165 if (FileNum != LineEntry.getFileNum()) {
166 FileNum = LineEntry.getFileNum();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000167 MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
Rafael Espindola5e874982010-11-02 17:22:24 +0000168 MCOS->EmitULEB128IntValue(FileNum);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000169 }
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000170 if (Column != LineEntry.getColumn()) {
171 Column = LineEntry.getColumn();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000172 MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
Rafael Espindola5e874982010-11-02 17:22:24 +0000173 MCOS->EmitULEB128IntValue(Column);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000174 }
Dehao Chen6e0c8442016-10-07 15:21:31 +0000175 if (Discriminator != LineEntry.getDiscriminator() &&
176 MCOS->getContext().getDwarfVersion() >= 4) {
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000177 Discriminator = LineEntry.getDiscriminator();
Logan Chien5b776b72014-02-22 14:00:39 +0000178 unsigned Size = getULEB128Size(Discriminator);
Diego Novillo5b5cf502014-02-14 19:27:53 +0000179 MCOS->EmitIntValue(dwarf::DW_LNS_extended_op, 1);
180 MCOS->EmitULEB128IntValue(Size + 1);
181 MCOS->EmitIntValue(dwarf::DW_LNE_set_discriminator, 1);
182 MCOS->EmitULEB128IntValue(Discriminator);
183 }
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000184 if (Isa != LineEntry.getIsa()) {
185 Isa = LineEntry.getIsa();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000186 MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
Rafael Espindola5e874982010-11-02 17:22:24 +0000187 MCOS->EmitULEB128IntValue(Isa);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000188 }
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000189 if ((LineEntry.getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
190 Flags = LineEntry.getFlags();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000191 MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
192 }
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000193 if (LineEntry.getFlags() & DWARF2_FLAG_BASIC_BLOCK)
Kevin Enderbye46564a2010-09-30 16:52:03 +0000194 MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000195 if (LineEntry.getFlags() & DWARF2_FLAG_PROLOGUE_END)
Kevin Enderbye46564a2010-09-30 16:52:03 +0000196 MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000197 if (LineEntry.getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
Kevin Enderbye46564a2010-09-30 16:52:03 +0000198 MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
199
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000200 MCSymbol *Label = LineEntry.getLabel();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000201
202 // At this point we want to emit/create the sequence to encode the delta in
203 // line numbers and the increment of the address from the previous Label
204 // and the current Label.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000205 const MCAsmInfo *asmInfo = MCOS->getContext().getAsmInfo();
Evan Chengc7ac6902011-07-14 05:43:07 +0000206 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +0000207 asmInfo->getCodePointerSize());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000208
Dehao Chen1b54fce2016-04-28 22:09:37 +0000209 Discriminator = 0;
Benjamin Kramer7b4658f2016-06-26 14:49:00 +0000210 LastLine = LineEntry.getLine();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000211 LastLabel = Label;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000212 }
213
214 // Emit a DW_LNE_end_sequence for the end of the section.
Rafael Espindolaf2b408c2015-03-23 21:22:04 +0000215 // Use the section end label to compute the address delta and use INT64_MAX
216 // as the line delta which is the signal that this is actually a
217 // DW_LNE_end_sequence.
218 MCSymbol *SectionEnd = MCOS->endSection(Section);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000219
Rafael Espindolaf2b408c2015-03-23 21:22:04 +0000220 // Switch back the dwarf line section, in case endSection had to switch the
221 // section.
Rafael Espindolaae3d78a2015-03-23 20:25:31 +0000222 MCContext &Ctx = MCOS->getContext();
Rafael Espindolaae3d78a2015-03-23 20:25:31 +0000223 MCOS->SwitchSection(Ctx.getObjectFileInfo()->getDwarfLineSection());
Rafael Espindolab58867c2010-11-19 02:26:16 +0000224
Rafael Espindolaae3d78a2015-03-23 20:25:31 +0000225 const MCAsmInfo *AsmInfo = Ctx.getAsmInfo();
Evan Chengc7ac6902011-07-14 05:43:07 +0000226 MCOS->EmitDwarfAdvanceLineAddr(INT64_MAX, LastLabel, SectionEnd,
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +0000227 AsmInfo->getCodePointerSize());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000228}
229
230//
231// This emits the Dwarf file and the line tables.
232//
Frederic Rissa5ab8442015-08-07 15:14:08 +0000233void MCDwarfLineTable::Emit(MCObjectStreamer *MCOS,
234 MCDwarfLineTableParams Params) {
Rafael Espindola0a017a62010-12-10 07:39:47 +0000235 MCContext &context = MCOS->getContext();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000236
David Blaikie8bf66c42014-04-01 07:35:52 +0000237 auto &LineTables = context.getMCDwarfLineTables();
238
239 // Bail out early so we don't switch to the debug_line section needlessly and
240 // in doing so create an unnecessary (if empty) section.
241 if (LineTables.empty())
242 return;
David Blaikie11765bc2014-03-13 17:55:28 +0000243
Paul Robinson1f900292018-02-06 20:29:21 +0000244 // In a v5 non-split line table, put the strings in a separate section.
245 Optional<MCDwarfLineStr> LineStr;
246 if (context.getDwarfVersion() >= 5)
247 LineStr = MCDwarfLineStr(context);
248
David Blaikie11765bc2014-03-13 17:55:28 +0000249 // Switch to the section where the table will be emitted into.
250 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfLineSection());
251
Manman Ren4e042a62013-02-05 21:52:47 +0000252 // Handle the rest of the Compile Units.
David Blaikie8bf66c42014-04-01 07:35:52 +0000253 for (const auto &CUIDTablePair : LineTables)
Paul Robinson1f900292018-02-06 20:29:21 +0000254 CUIDTablePair.second.EmitCU(MCOS, Params, LineStr);
255
256 if (LineStr)
257 LineStr->emitSection(MCOS);
Manman Ren4e042a62013-02-05 21:52:47 +0000258}
259
Paul Robinson7cb26ad2018-03-27 21:28:59 +0000260void MCDwarfDwoLineTable::Emit(MCStreamer &MCOS, MCDwarfLineTableParams Params,
261 MCSection *Section) const {
262 if (Header.MCDwarfFiles.empty())
263 return;
Paul Robinson1f900292018-02-06 20:29:21 +0000264 Optional<MCDwarfLineStr> NoLineStr(None);
Paul Robinson7cb26ad2018-03-27 21:28:59 +0000265 MCOS.SwitchSection(Section);
Paul Robinson1f900292018-02-06 20:29:21 +0000266 MCOS.EmitLabel(Header.Emit(&MCOS, Params, None, NoLineStr).second);
David Blaikie8287aff2014-03-18 02:13:23 +0000267}
268
Frederic Rissa5ab8442015-08-07 15:14:08 +0000269std::pair<MCSymbol *, MCSymbol *>
Paul Robinson1f900292018-02-06 20:29:21 +0000270MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
271 Optional<MCDwarfLineStr> &LineStr) const {
David Blaikie8287aff2014-03-18 02:13:23 +0000272 static const char StandardOpcodeLengths[] = {
273 0, // length of DW_LNS_copy
274 1, // length of DW_LNS_advance_pc
275 1, // length of DW_LNS_advance_line
276 1, // length of DW_LNS_set_file
277 1, // length of DW_LNS_set_column
278 0, // length of DW_LNS_negate_stmt
279 0, // length of DW_LNS_set_basic_block
280 0, // length of DW_LNS_const_add_pc
281 1, // length of DW_LNS_fixed_advance_pc
282 0, // length of DW_LNS_set_prologue_end
283 0, // length of DW_LNS_set_epilogue_begin
284 1 // DW_LNS_set_isa
285 };
Frederic Rissa5ab8442015-08-07 15:14:08 +0000286 assert(array_lengthof(StandardOpcodeLengths) >=
Aaron Ballmand8ac7de2015-08-10 15:22:39 +0000287 (Params.DWARF2LineOpcodeBase - 1U));
Paul Robinson1f900292018-02-06 20:29:21 +0000288 return Emit(
289 MCOS, Params,
290 makeArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1),
291 LineStr);
David Blaikie8287aff2014-03-18 02:13:23 +0000292}
293
Rafael Espindolac23174b2014-08-15 15:12:13 +0000294static const MCExpr *forceExpAbs(MCStreamer &OS, const MCExpr* Expr) {
295 MCContext &Context = OS.getContext();
296 assert(!isa<MCSymbolRefExpr>(Expr));
297 if (Context.getAsmInfo()->hasAggressiveSymbolFolding())
298 return Expr;
299
Jim Grosbach6f482002015-05-18 18:43:14 +0000300 MCSymbol *ABS = Context.createTempSymbol();
Rafael Espindolac23174b2014-08-15 15:12:13 +0000301 OS.EmitAssignment(ABS, Expr);
Jim Grosbach13760bd2015-05-30 01:25:56 +0000302 return MCSymbolRefExpr::create(ABS, Context);
Rafael Espindolac23174b2014-08-15 15:12:13 +0000303}
304
305static void emitAbsValue(MCStreamer &OS, const MCExpr *Value, unsigned Size) {
306 const MCExpr *ABS = forceExpAbs(OS, Value);
307 OS.EmitValue(ABS, Size);
308}
309
Paul Robinson1f900292018-02-06 20:29:21 +0000310void MCDwarfLineStr::emitSection(MCStreamer *MCOS) {
311 // Switch to the .debug_line_str section.
312 MCOS->SwitchSection(
313 MCOS->getContext().getObjectFileInfo()->getDwarfLineStrSection());
314 // Emit the strings without perturbing the offsets we used.
315 LineStrings.finalizeInOrder();
316 SmallString<0> Data;
317 Data.resize(LineStrings.getSize());
318 LineStrings.write((uint8_t *)Data.data());
319 MCOS->EmitBinaryData(Data.str());
320}
321
322void MCDwarfLineStr::emitRef(MCStreamer *MCOS, StringRef Path) {
323 int RefSize = 4; // FIXME: Support DWARF-64
324 size_t Offset = LineStrings.add(Path);
325 if (UseRelocs) {
326 MCContext &Ctx = MCOS->getContext();
327 MCOS->EmitValue(makeStartPlusIntExpr(Ctx, *LineStrLabel, Offset), RefSize);
328 } else
329 MCOS->EmitIntValue(Offset, RefSize);
330}
331
Paul Robinson2bf8f492018-01-30 21:39:28 +0000332void MCDwarfLineTableHeader::emitV2FileDirTables(MCStreamer *MCOS) const {
Paul Robinson795ab0d2017-12-05 20:35:00 +0000333 // First the directory table.
Paul Robinson2bf8f492018-01-30 21:39:28 +0000334 for (auto &Dir : MCDwarfDirs) {
Paul Robinson795ab0d2017-12-05 20:35:00 +0000335 MCOS->EmitBytes(Dir); // The DirectoryName, and...
336 MCOS->EmitBytes(StringRef("\0", 1)); // its null terminator.
337 }
338 MCOS->EmitIntValue(0, 1); // Terminate the directory list.
339
340 // Second the file table.
341 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
342 assert(!MCDwarfFiles[i].Name.empty());
343 MCOS->EmitBytes(MCDwarfFiles[i].Name); // FileName and...
344 MCOS->EmitBytes(StringRef("\0", 1)); // its null terminator.
345 MCOS->EmitULEB128IntValue(MCDwarfFiles[i].DirIndex); // Directory number.
346 MCOS->EmitIntValue(0, 1); // Last modification timestamp (always 0).
347 MCOS->EmitIntValue(0, 1); // File size (always 0).
348 }
349 MCOS->EmitIntValue(0, 1); // Terminate the file list.
350}
351
Paul Robinsonb271f312018-03-29 17:16:41 +0000352static void emitOneV5FileEntry(MCStreamer *MCOS, const MCDwarfFile &DwarfFile,
353 bool HasMD5, bool HasSource,
354 Optional<MCDwarfLineStr> &LineStr) {
355 assert(!DwarfFile.Name.empty());
356 if (LineStr)
357 LineStr->emitRef(MCOS, DwarfFile.Name);
358 else {
359 MCOS->EmitBytes(DwarfFile.Name); // FileName and...
360 MCOS->EmitBytes(StringRef("\0", 1)); // its null terminator.
361 }
362 MCOS->EmitULEB128IntValue(DwarfFile.DirIndex); // Directory number.
363 if (HasMD5) {
364 MD5::MD5Result *Cksum = DwarfFile.Checksum;
365 MCOS->EmitBinaryData(
366 StringRef(reinterpret_cast<const char *>(Cksum->Bytes.data()),
367 Cksum->Bytes.size()));
368 }
369 if (HasSource) {
370 if (LineStr)
371 LineStr->emitRef(MCOS, DwarfFile.Source.getValueOr(StringRef()));
372 else {
373 MCOS->EmitBytes(
374 DwarfFile.Source.getValueOr(StringRef())); // Source and...
375 MCOS->EmitBytes(StringRef("\0", 1)); // its null terminator.
376 }
377 }
378}
379
Paul Robinson1f900292018-02-06 20:29:21 +0000380void MCDwarfLineTableHeader::emitV5FileDirTables(
381 MCStreamer *MCOS, Optional<MCDwarfLineStr> &LineStr) const {
382 // The directory format, which is just a list of the directory paths. In a
383 // non-split object, these are references to .debug_line_str; in a split
384 // object, they are inline strings.
Paul Robinson795ab0d2017-12-05 20:35:00 +0000385 MCOS->EmitIntValue(1, 1);
386 MCOS->EmitULEB128IntValue(dwarf::DW_LNCT_path);
Paul Robinson1f900292018-02-06 20:29:21 +0000387 MCOS->EmitULEB128IntValue(LineStr ? dwarf::DW_FORM_line_strp
388 : dwarf::DW_FORM_string);
Paul Robinson795ab0d2017-12-05 20:35:00 +0000389 MCOS->EmitULEB128IntValue(MCDwarfDirs.size() + 1);
Paul Robinson1f900292018-02-06 20:29:21 +0000390 if (LineStr) {
391 // Record path strings, emit references here.
392 LineStr->emitRef(MCOS, CompilationDir);
393 for (auto &Dir : MCDwarfDirs)
394 LineStr->emitRef(MCOS, Dir);
395 } else {
396 // The list of directory paths. CompilationDir comes first.
397 MCOS->EmitBytes(CompilationDir);
398 MCOS->EmitBytes(StringRef("\0", 1));
399 for (auto &Dir : MCDwarfDirs) {
400 MCOS->EmitBytes(Dir); // The DirectoryName, and...
401 MCOS->EmitBytes(StringRef("\0", 1)); // its null terminator.
402 }
Paul Robinson795ab0d2017-12-05 20:35:00 +0000403 }
404
405 // The file format, which is the inline null-terminated filename and a
406 // directory index. We don't track file size/timestamp so don't emit them
Scott Linder16c7bda2018-02-23 23:01:06 +0000407 // in the v5 table. Emit MD5 checksums and source if we have them.
408 uint64_t Entries = 2;
409 if (HasMD5)
410 Entries += 1;
411 if (HasSource)
412 Entries += 1;
413 MCOS->EmitIntValue(Entries, 1);
Paul Robinson795ab0d2017-12-05 20:35:00 +0000414 MCOS->EmitULEB128IntValue(dwarf::DW_LNCT_path);
Paul Robinson1f900292018-02-06 20:29:21 +0000415 MCOS->EmitULEB128IntValue(LineStr ? dwarf::DW_FORM_line_strp
416 : dwarf::DW_FORM_string);
Paul Robinson795ab0d2017-12-05 20:35:00 +0000417 MCOS->EmitULEB128IntValue(dwarf::DW_LNCT_directory_index);
418 MCOS->EmitULEB128IntValue(dwarf::DW_FORM_udata);
Paul Robinson29f5f982018-01-09 23:31:48 +0000419 if (HasMD5) {
420 MCOS->EmitULEB128IntValue(dwarf::DW_LNCT_MD5);
421 MCOS->EmitULEB128IntValue(dwarf::DW_FORM_data16);
422 }
Scott Linder16c7bda2018-02-23 23:01:06 +0000423 if (HasSource) {
424 MCOS->EmitULEB128IntValue(dwarf::DW_LNCT_LLVM_source);
425 MCOS->EmitULEB128IntValue(LineStr ? dwarf::DW_FORM_line_strp
426 : dwarf::DW_FORM_string);
427 }
Paul Robinsonb271f312018-03-29 17:16:41 +0000428 // Then the counted list of files. The root file is file #0, then emit the
429 // files as provide by .file directives.
430 MCOS->EmitULEB128IntValue(MCDwarfFiles.size());
431 emitOneV5FileEntry(MCOS, RootFile, HasMD5, HasSource, LineStr);
432 for (unsigned i = 1; i < MCDwarfFiles.size(); ++i)
433 emitOneV5FileEntry(MCOS, MCDwarfFiles[i], HasMD5, HasSource, LineStr);
Paul Robinson795ab0d2017-12-05 20:35:00 +0000434}
435
David Blaikie8287aff2014-03-18 02:13:23 +0000436std::pair<MCSymbol *, MCSymbol *>
Frederic Rissa5ab8442015-08-07 15:14:08 +0000437MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
Paul Robinson1f900292018-02-06 20:29:21 +0000438 ArrayRef<char> StandardOpcodeLengths,
439 Optional<MCDwarfLineStr> &LineStr) const {
Manman Ren4e042a62013-02-05 21:52:47 +0000440 MCContext &context = MCOS->getContext();
441
442 // Create a symbol at the beginning of the line table.
David Blaikie11765bc2014-03-13 17:55:28 +0000443 MCSymbol *LineStartSym = Label;
Manman Ren4e042a62013-02-05 21:52:47 +0000444 if (!LineStartSym)
Jim Grosbach6f482002015-05-18 18:43:14 +0000445 LineStartSym = context.createTempSymbol();
Manman Ren4e042a62013-02-05 21:52:47 +0000446 // Set the value of the symbol, as we are at the start of the line table.
Kevin Enderbye46564a2010-09-30 16:52:03 +0000447 MCOS->EmitLabel(LineStartSym);
448
449 // Create a symbol for the end of the section (to be set when we get there).
Jim Grosbach6f482002015-05-18 18:43:14 +0000450 MCSymbol *LineEndSym = context.createTempSymbol();
Kevin Enderbye46564a2010-09-30 16:52:03 +0000451
452 // The first 4 bytes is the total length of the information for this
453 // compilation unit (not including these 4 bytes for the length).
Rafael Espindolac23174b2014-08-15 15:12:13 +0000454 emitAbsValue(*MCOS,
455 MakeStartMinusEndExpr(*MCOS, *LineStartSym, *LineEndSym, 4), 4);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000456
Paul Robinson68ba7722017-12-04 21:27:46 +0000457 // Next 2 bytes is the Version.
Davide Italiano23b3f6d2017-12-07 00:57:25 +0000458 // FIXME: On Darwin we still default to V2.
Paul Robinson68ba7722017-12-04 21:27:46 +0000459 unsigned LineTableVersion = context.getDwarfVersion();
Davide Italiano23b3f6d2017-12-07 00:57:25 +0000460 if (context.getObjectFileInfo()->getTargetTriple().isOSDarwin())
461 LineTableVersion = 2;
Paul Robinson68ba7722017-12-04 21:27:46 +0000462 MCOS->EmitIntValue(LineTableVersion, 2);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000463
Paul Robinson795ab0d2017-12-05 20:35:00 +0000464 // Keep track of the bytes between the very start and where the header length
465 // comes out.
466 unsigned PreHeaderLengthBytes = 4 + 2;
467
468 // In v5, we get address info next.
469 if (LineTableVersion >= 5) {
470 MCOS->EmitIntValue(context.getAsmInfo()->getCodePointerSize(), 1);
471 MCOS->EmitIntValue(0, 1); // Segment selector; same as EmitGenDwarfAranges.
472 PreHeaderLengthBytes += 2;
473 }
474
Kevin Enderbye46564a2010-09-30 16:52:03 +0000475 // Create a symbol for the end of the prologue (to be set when we get there).
Jim Grosbach6f482002015-05-18 18:43:14 +0000476 MCSymbol *ProEndSym = context.createTempSymbol(); // Lprologue_end
Kevin Enderbye46564a2010-09-30 16:52:03 +0000477
Paul Robinson795ab0d2017-12-05 20:35:00 +0000478 // Length of the prologue, is the next 4 bytes. This is actually the length
479 // from after the length word, to the end of the prologue.
480 emitAbsValue(*MCOS,
481 MakeStartMinusEndExpr(*MCOS, *LineStartSym, *ProEndSym,
482 (PreHeaderLengthBytes + 4)),
483 4);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000484
485 // Parameters of the state machine, are next.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000486 MCOS->EmitIntValue(context.getAsmInfo()->getMinInstAlignment(), 1);
Paul Robinson68ba7722017-12-04 21:27:46 +0000487 // maximum_operations_per_instruction
488 // For non-VLIW architectures this field is always 1.
489 // FIXME: VLIW architectures need to update this field accordingly.
Paul Robinson795ab0d2017-12-05 20:35:00 +0000490 if (LineTableVersion >= 4)
Paul Robinson68ba7722017-12-04 21:27:46 +0000491 MCOS->EmitIntValue(1, 1);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000492 MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
Frederic Rissa5ab8442015-08-07 15:14:08 +0000493 MCOS->EmitIntValue(Params.DWARF2LineBase, 1);
494 MCOS->EmitIntValue(Params.DWARF2LineRange, 1);
David Blaikie8287aff2014-03-18 02:13:23 +0000495 MCOS->EmitIntValue(StandardOpcodeLengths.size() + 1, 1);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000496
497 // Standard opcode lengths
David Blaikie8287aff2014-03-18 02:13:23 +0000498 for (char Length : StandardOpcodeLengths)
499 MCOS->EmitIntValue(Length, 1);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000500
Paul Robinson795ab0d2017-12-05 20:35:00 +0000501 // Put out the directory and file tables. The formats vary depending on
502 // the version.
503 if (LineTableVersion >= 5)
Paul Robinson1f900292018-02-06 20:29:21 +0000504 emitV5FileDirTables(MCOS, LineStr);
Paul Robinson795ab0d2017-12-05 20:35:00 +0000505 else
Paul Robinson2bf8f492018-01-30 21:39:28 +0000506 emitV2FileDirTables(MCOS);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000507
508 // This is the end of the prologue, so set the value of the symbol at the
509 // end of the prologue (that was used in a previous expression).
510 MCOS->EmitLabel(ProEndSym);
511
David Blaikie5cff0e62014-03-13 21:47:12 +0000512 return std::make_pair(LineStartSym, LineEndSym);
513}
514
Frederic Rissa5ab8442015-08-07 15:14:08 +0000515void MCDwarfLineTable::EmitCU(MCObjectStreamer *MCOS,
Paul Robinson1f900292018-02-06 20:29:21 +0000516 MCDwarfLineTableParams Params,
517 Optional<MCDwarfLineStr> &LineStr) const {
518 MCSymbol *LineEndSym = Header.Emit(MCOS, Params, LineStr).second;
David Blaikie5cff0e62014-03-13 21:47:12 +0000519
Kevin Enderbye46564a2010-09-30 16:52:03 +0000520 // Put out the line tables.
David Blaikie11765bc2014-03-13 17:55:28 +0000521 for (const auto &LineSec : MCLineSections.getMCLineEntries())
522 EmitDwarfLineTable(MCOS, LineSec.first, LineSec.second);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000523
Kevin Enderbye46564a2010-09-30 16:52:03 +0000524 // This is the end of the section, so set the value of the symbol at the end
525 // of this section (that was used in a previous expression).
526 MCOS->EmitLabel(LineEndSym);
527}
528
Paul Robinson70def122018-02-22 21:03:33 +0000529Expected<unsigned> MCDwarfLineTable::tryGetFile(StringRef &Directory,
530 StringRef &FileName,
531 MD5::MD5Result *Checksum,
Scott Linder16c7bda2018-02-23 23:01:06 +0000532 Optional<StringRef> Source,
Paul Robinson70def122018-02-22 21:03:33 +0000533 unsigned FileNumber) {
Scott Linder16c7bda2018-02-23 23:01:06 +0000534 return Header.tryGetFile(Directory, FileName, Checksum, Source, FileNumber);
David Blaikie5cff0e62014-03-13 21:47:12 +0000535}
536
Scott Linder16c7bda2018-02-23 23:01:06 +0000537Expected<unsigned>
538MCDwarfLineTableHeader::tryGetFile(StringRef &Directory,
539 StringRef &FileName,
540 MD5::MD5Result *Checksum,
541 Optional<StringRef> &Source,
542 unsigned FileNumber) {
David Blaikiec7f29dc2014-03-17 23:29:40 +0000543 if (Directory == CompilationDir)
544 Directory = "";
David Blaikiec2df16b2014-03-17 18:13:58 +0000545 if (FileName.empty()) {
546 FileName = "<stdin>";
547 Directory = "";
548 }
549 assert(!FileName.empty());
Scott Linder16c7bda2018-02-23 23:01:06 +0000550 // If any files have an MD5 checksum or embedded source, they all must.
551 if (MCDwarfFiles.empty()) {
Paul Robinson70def122018-02-22 21:03:33 +0000552 HasMD5 = (Checksum != nullptr);
Scott Linder16c7bda2018-02-23 23:01:06 +0000553 HasSource = (Source != None);
554 }
David Blaikiec714ef42014-03-17 01:52:11 +0000555 if (FileNumber == 0) {
Adrian Prantld6cc53f2016-03-09 17:32:56 +0000556 // File numbers start with 1 and/or after any file numbers
557 // allocated by inline-assembler .file directives.
558 FileNumber = MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size();
Pete Cooperb7800812015-05-20 19:12:14 +0000559 SmallString<256> Buffer;
David Blaikie5106ce72014-11-19 05:49:42 +0000560 auto IterBool = SourceIdMap.insert(
Pete Cooperb7800812015-05-20 19:12:14 +0000561 std::make_pair((Directory + Twine('\0') + FileName).toStringRef(Buffer),
562 FileNumber));
David Blaikie5106ce72014-11-19 05:49:42 +0000563 if (!IterBool.second)
564 return IterBool.first->second;
David Blaikiec714ef42014-03-17 01:52:11 +0000565 }
David Blaikie498589c2014-03-13 19:15:04 +0000566 // Make space for this FileNumber in the MCDwarfFiles vector if needed.
Paul Robinsona1cedd62017-12-14 18:46:43 +0000567 if (FileNumber >= MCDwarfFiles.size())
568 MCDwarfFiles.resize(FileNumber + 1);
David Blaikie498589c2014-03-13 19:15:04 +0000569
570 // Get the new MCDwarfFile slot for this FileNumber.
571 MCDwarfFile &File = MCDwarfFiles[FileNumber];
572
Paul Robinson70def122018-02-22 21:03:33 +0000573 // It is an error to see the same number more than once.
David Blaikie498589c2014-03-13 19:15:04 +0000574 if (!File.Name.empty())
Paul Robinson70def122018-02-22 21:03:33 +0000575 return make_error<StringError>("file number already allocated",
576 inconvertibleErrorCode());
David Blaikie498589c2014-03-13 19:15:04 +0000577
Paul Robinson29f5f982018-01-09 23:31:48 +0000578 // If any files have an MD5 checksum, they all must.
Paul Robinson70def122018-02-22 21:03:33 +0000579 if (HasMD5 != (Checksum != nullptr))
580 return make_error<StringError>("inconsistent use of MD5 checksums",
581 inconvertibleErrorCode());
Scott Linder16c7bda2018-02-23 23:01:06 +0000582 // If any files have embedded source, they all must.
583 if (HasSource != (Source != None))
584 return make_error<StringError>("inconsistent use of embedded source",
585 inconvertibleErrorCode());
Paul Robinson29f5f982018-01-09 23:31:48 +0000586
David Blaikie498589c2014-03-13 19:15:04 +0000587 if (Directory.empty()) {
588 // Separate the directory part from the basename of the FileName.
589 StringRef tFileName = sys::path::filename(FileName);
590 if (!tFileName.empty()) {
591 Directory = sys::path::parent_path(FileName);
592 if (!Directory.empty())
593 FileName = tFileName;
594 }
595 }
596
597 // Find or make an entry in the MCDwarfDirs vector for this Directory.
598 // Capture directory name.
599 unsigned DirIndex;
600 if (Directory.empty()) {
601 // For FileNames with no directories a DirIndex of 0 is used.
602 DirIndex = 0;
603 } else {
604 DirIndex = 0;
605 for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) {
606 if (Directory == MCDwarfDirs[DirIndex])
607 break;
608 }
609 if (DirIndex >= MCDwarfDirs.size())
610 MCDwarfDirs.push_back(Directory);
611 // The DirIndex is one based, as DirIndex of 0 is used for FileNames with
612 // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
613 // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames
614 // are stored at MCDwarfFiles[FileNumber].Name .
615 DirIndex++;
616 }
617
618 File.Name = FileName;
619 File.DirIndex = DirIndex;
Paul Robinson29f5f982018-01-09 23:31:48 +0000620 File.Checksum = Checksum;
621 if (Checksum)
622 HasMD5 = true;
Scott Linder16c7bda2018-02-23 23:01:06 +0000623 File.Source = Source;
624 if (Source)
625 HasSource = true;
David Blaikie498589c2014-03-13 19:15:04 +0000626
627 // return the allocated FileNumber.
628 return FileNumber;
629}
630
Kevin Enderbye46564a2010-09-30 16:52:03 +0000631/// Utility function to emit the encoding to a streamer.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000632void MCDwarfLineAddr::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
633 int64_t LineDelta, uint64_t AddrDelta) {
Ulrich Weigand32d725b2013-06-12 14:46:54 +0000634 MCContext &Context = MCOS->getContext();
Alp Tokere69170a2014-06-26 22:52:05 +0000635 SmallString<256> Tmp;
636 raw_svector_ostream OS(Tmp);
Frederic Rissa5ab8442015-08-07 15:14:08 +0000637 MCDwarfLineAddr::Encode(Context, Params, LineDelta, AddrDelta, OS);
Eric Christophere3ab3d02013-01-09 01:57:54 +0000638 MCOS->EmitBytes(OS.str());
Kevin Enderbye46564a2010-09-30 16:52:03 +0000639}
640
Frederic Rissa5ab8442015-08-07 15:14:08 +0000641/// Given a special op, return the address skip amount (in units of
642/// DWARF2_LINE_MIN_INSN_LENGTH).
643static uint64_t SpecialAddr(MCDwarfLineTableParams Params, uint64_t op) {
644 return (op - Params.DWARF2LineOpcodeBase) / Params.DWARF2LineRange;
645}
646
Kevin Enderbye46564a2010-09-30 16:52:03 +0000647/// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000648void MCDwarfLineAddr::Encode(MCContext &Context, MCDwarfLineTableParams Params,
649 int64_t LineDelta, uint64_t AddrDelta,
650 raw_ostream &OS) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000651 uint64_t Temp, Opcode;
652 bool NeedCopy = false;
653
Frederic Rissa5ab8442015-08-07 15:14:08 +0000654 // The maximum address skip amount that can be encoded with a special op.
655 uint64_t MaxSpecialAddrDelta = SpecialAddr(Params, 255);
656
Kevin Enderbye46564a2010-09-30 16:52:03 +0000657 // Scale the address delta by the minimum instruction length.
Ulrich Weigand32d725b2013-06-12 14:46:54 +0000658 AddrDelta = ScaleAddrDelta(Context, AddrDelta);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000659
660 // A LineDelta of INT64_MAX is a signal that this is actually a
Jim Grosbachdc1e36e2012-05-11 01:41:30 +0000661 // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the
Kevin Enderbye46564a2010-09-30 16:52:03 +0000662 // end_sequence to emit the matrix entry.
663 if (LineDelta == INT64_MAX) {
Frederic Rissa5ab8442015-08-07 15:14:08 +0000664 if (AddrDelta == MaxSpecialAddrDelta)
Kevin Enderbye46564a2010-09-30 16:52:03 +0000665 OS << char(dwarf::DW_LNS_const_add_pc);
Frederic Rissceb18362015-03-15 20:45:39 +0000666 else if (AddrDelta) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000667 OS << char(dwarf::DW_LNS_advance_pc);
Jim Grosbachbf387df2012-08-08 23:56:06 +0000668 encodeULEB128(AddrDelta, OS);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000669 }
670 OS << char(dwarf::DW_LNS_extended_op);
671 OS << char(1);
672 OS << char(dwarf::DW_LNE_end_sequence);
673 return;
674 }
675
676 // Bias the line delta by the base.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000677 Temp = LineDelta - Params.DWARF2LineBase;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000678
679 // If the line increment is out of range of a special opcode, we must encode
680 // it with DW_LNS_advance_line.
Frederic Risse5b78d82016-01-31 22:06:35 +0000681 if (Temp >= Params.DWARF2LineRange ||
682 Temp + Params.DWARF2LineOpcodeBase > 255) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000683 OS << char(dwarf::DW_LNS_advance_line);
Jim Grosbachbf387df2012-08-08 23:56:06 +0000684 encodeSLEB128(LineDelta, OS);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000685
686 LineDelta = 0;
Frederic Rissa5ab8442015-08-07 15:14:08 +0000687 Temp = 0 - Params.DWARF2LineBase;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000688 NeedCopy = true;
689 }
690
691 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
692 if (LineDelta == 0 && AddrDelta == 0) {
693 OS << char(dwarf::DW_LNS_copy);
694 return;
695 }
696
697 // Bias the opcode by the special opcode base.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000698 Temp += Params.DWARF2LineOpcodeBase;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000699
700 // Avoid overflow when addr_delta is large.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000701 if (AddrDelta < 256 + MaxSpecialAddrDelta) {
Kevin Enderbye46564a2010-09-30 16:52:03 +0000702 // Try using a special opcode.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000703 Opcode = Temp + AddrDelta * Params.DWARF2LineRange;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000704 if (Opcode <= 255) {
705 OS << char(Opcode);
706 return;
707 }
708
709 // Try using DW_LNS_const_add_pc followed by special op.
Frederic Rissa5ab8442015-08-07 15:14:08 +0000710 Opcode = Temp + (AddrDelta - MaxSpecialAddrDelta) * Params.DWARF2LineRange;
Kevin Enderbye46564a2010-09-30 16:52:03 +0000711 if (Opcode <= 255) {
712 OS << char(dwarf::DW_LNS_const_add_pc);
713 OS << char(Opcode);
714 return;
715 }
716 }
717
718 // Otherwise use DW_LNS_advance_pc.
719 OS << char(dwarf::DW_LNS_advance_pc);
Jim Grosbachbf387df2012-08-08 23:56:06 +0000720 encodeULEB128(AddrDelta, OS);
Kevin Enderbye46564a2010-09-30 16:52:03 +0000721
722 if (NeedCopy)
723 OS << char(dwarf::DW_LNS_copy);
Frederic Risse5b78d82016-01-31 22:06:35 +0000724 else {
725 assert(Temp <= 255 && "Buggy special opcode encoding.");
Kevin Enderbye46564a2010-09-30 16:52:03 +0000726 OS << char(Temp);
Frederic Risse5b78d82016-01-31 22:06:35 +0000727 }
Kevin Enderbye46564a2010-09-30 16:52:03 +0000728}
729
Kevin Enderbye7739d42011-12-09 18:09:40 +0000730// Utility function to write a tuple for .debug_abbrev.
731static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) {
732 MCOS->EmitULEB128IntValue(Name);
733 MCOS->EmitULEB128IntValue(Form);
734}
735
736// When generating dwarf for assembly source files this emits
737// the data for .debug_abbrev section which contains three DIEs.
738static void EmitGenDwarfAbbrev(MCStreamer *MCOS) {
739 MCContext &context = MCOS->getContext();
740 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
741
742 // DW_TAG_compile_unit DIE abbrev (1).
743 MCOS->EmitULEB128IntValue(1);
744 MCOS->EmitULEB128IntValue(dwarf::DW_TAG_compile_unit);
745 MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
Paul Robinsone95fa422016-01-04 18:49:15 +0000746 EmitAbbrev(MCOS, dwarf::DW_AT_stmt_list, context.getDwarfVersion() >= 4
747 ? dwarf::DW_FORM_sec_offset
748 : dwarf::DW_FORM_data4);
Paul Robinson22d0d312015-12-23 01:57:31 +0000749 if (context.getGenDwarfSectionSyms().size() > 1 &&
750 context.getDwarfVersion() >= 3) {
Paul Robinsone95fa422016-01-04 18:49:15 +0000751 EmitAbbrev(MCOS, dwarf::DW_AT_ranges, context.getDwarfVersion() >= 4
752 ? dwarf::DW_FORM_sec_offset
Paul Robinson22d0d312015-12-23 01:57:31 +0000753 : dwarf::DW_FORM_data4);
Oliver Stannard8b273082014-06-19 15:52:37 +0000754 } else {
755 EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
756 EmitAbbrev(MCOS, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr);
757 }
Kevin Enderbye7739d42011-12-09 18:09:40 +0000758 EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
Andrew Trick32591d32013-12-10 04:39:09 +0000759 if (!context.getCompilationDir().empty())
760 EmitAbbrev(MCOS, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000761 StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
762 if (!DwarfDebugFlags.empty())
763 EmitAbbrev(MCOS, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string);
764 EmitAbbrev(MCOS, dwarf::DW_AT_producer, dwarf::DW_FORM_string);
765 EmitAbbrev(MCOS, dwarf::DW_AT_language, dwarf::DW_FORM_data2);
766 EmitAbbrev(MCOS, 0, 0);
767
Kevin Enderby8d4a2202012-01-10 17:52:29 +0000768 // DW_TAG_label DIE abbrev (2).
Kevin Enderbye7739d42011-12-09 18:09:40 +0000769 MCOS->EmitULEB128IntValue(2);
Kevin Enderby8d4a2202012-01-10 17:52:29 +0000770 MCOS->EmitULEB128IntValue(dwarf::DW_TAG_label);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000771 MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
772 EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
773 EmitAbbrev(MCOS, dwarf::DW_AT_decl_file, dwarf::DW_FORM_data4);
774 EmitAbbrev(MCOS, dwarf::DW_AT_decl_line, dwarf::DW_FORM_data4);
775 EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000776 EmitAbbrev(MCOS, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag);
777 EmitAbbrev(MCOS, 0, 0);
778
779 // DW_TAG_unspecified_parameters DIE abbrev (3).
780 MCOS->EmitULEB128IntValue(3);
781 MCOS->EmitULEB128IntValue(dwarf::DW_TAG_unspecified_parameters);
782 MCOS->EmitIntValue(dwarf::DW_CHILDREN_no, 1);
783 EmitAbbrev(MCOS, 0, 0);
784
785 // Terminate the abbreviations for this compilation unit.
786 MCOS->EmitIntValue(0, 1);
787}
788
789// When generating dwarf for assembly source files this emits the data for
Oliver Stannard8b273082014-06-19 15:52:37 +0000790// .debug_aranges section. This section contains a header and a table of pairs
791// of PointerSize'ed values for the address and size of section(s) with line
792// table entries.
Alexey Samsonov00fd5252012-11-14 09:55:38 +0000793static void EmitGenDwarfAranges(MCStreamer *MCOS,
794 const MCSymbol *InfoSectionSymbol) {
Kevin Enderbye7739d42011-12-09 18:09:40 +0000795 MCContext &context = MCOS->getContext();
796
Oliver Stannard8b273082014-06-19 15:52:37 +0000797 auto &Sections = context.getGenDwarfSectionSyms();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000798
799 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
800
801 // This will be the length of the .debug_aranges section, first account for
802 // the size of each item in the header (see below where we emit these items).
803 int Length = 4 + 2 + 4 + 1 + 1;
804
805 // Figure the padding after the header before the table of address and size
806 // pairs who's values are PointerSize'ed.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000807 const MCAsmInfo *asmInfo = context.getAsmInfo();
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +0000808 int AddrSize = asmInfo->getCodePointerSize();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000809 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
810 if (Pad == 2 * AddrSize)
811 Pad = 0;
812 Length += Pad;
813
814 // Add the size of the pair of PointerSize'ed values for the address and size
Oliver Stannard8b273082014-06-19 15:52:37 +0000815 // of each section we have in the table.
816 Length += 2 * AddrSize * Sections.size();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000817 // And the pair of terminating zeros.
818 Length += 2 * AddrSize;
819
Kevin Enderbye7739d42011-12-09 18:09:40 +0000820 // Emit the header for this section.
821 // The 4 byte length not including the 4 byte value for the length.
822 MCOS->EmitIntValue(Length - 4, 4);
823 // The 2 byte version, which is 2.
824 MCOS->EmitIntValue(2, 2);
825 // The 4 byte offset to the compile unit in the .debug_info from the start
Alexey Samsonov00fd5252012-11-14 09:55:38 +0000826 // of the .debug_info.
827 if (InfoSectionSymbol)
Saleem Abdulrasoolfcefa212014-09-06 19:57:48 +0000828 MCOS->EmitSymbolValue(InfoSectionSymbol, 4,
829 asmInfo->needsDwarfSectionOffsetDirective());
Alexey Samsonov00fd5252012-11-14 09:55:38 +0000830 else
831 MCOS->EmitIntValue(0, 4);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000832 // The 1 byte size of an address.
833 MCOS->EmitIntValue(AddrSize, 1);
834 // The 1 byte size of a segment descriptor, we use a value of zero.
835 MCOS->EmitIntValue(0, 1);
836 // Align the header with the padding if needed, before we put out the table.
837 for(int i = 0; i < Pad; i++)
838 MCOS->EmitIntValue(0, 1);
839
Oliver Stannard8b273082014-06-19 15:52:37 +0000840 // Now emit the table of pairs of PointerSize'ed values for the section
841 // addresses and sizes.
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000842 for (MCSection *Sec : Sections) {
843 const MCSymbol *StartSymbol = Sec->getBeginSymbol();
Rafael Espindolae0746792015-05-21 16:52:32 +0000844 MCSymbol *EndSymbol = Sec->getEndSymbol(context);
Oliver Stannard8b273082014-06-19 15:52:37 +0000845 assert(StartSymbol && "StartSymbol must not be NULL");
846 assert(EndSymbol && "EndSymbol must not be NULL");
847
Jim Grosbach13760bd2015-05-30 01:25:56 +0000848 const MCExpr *Addr = MCSymbolRefExpr::create(
Oliver Stannard8b273082014-06-19 15:52:37 +0000849 StartSymbol, MCSymbolRefExpr::VK_None, context);
850 const MCExpr *Size = MakeStartMinusEndExpr(*MCOS,
851 *StartSymbol, *EndSymbol, 0);
852 MCOS->EmitValue(Addr, AddrSize);
Rafael Espindolac23174b2014-08-15 15:12:13 +0000853 emitAbsValue(*MCOS, Size, AddrSize);
Oliver Stannard8b273082014-06-19 15:52:37 +0000854 }
Kevin Enderbye7739d42011-12-09 18:09:40 +0000855
856 // And finally the pair of terminating zeros.
857 MCOS->EmitIntValue(0, AddrSize);
858 MCOS->EmitIntValue(0, AddrSize);
859}
860
861// When generating dwarf for assembly source files this emits the data for
862// .debug_info section which contains three parts. The header, the compile_unit
Kevin Enderby8d4a2202012-01-10 17:52:29 +0000863// DIE and a list of label DIEs.
Rafael Espindolac22c85c2012-02-28 21:13:05 +0000864static void EmitGenDwarfInfo(MCStreamer *MCOS,
865 const MCSymbol *AbbrevSectionSymbol,
Oliver Stannard8b273082014-06-19 15:52:37 +0000866 const MCSymbol *LineSectionSymbol,
867 const MCSymbol *RangesSectionSymbol) {
Kevin Enderbye7739d42011-12-09 18:09:40 +0000868 MCContext &context = MCOS->getContext();
869
Jim Grosbachdc1e36e2012-05-11 01:41:30 +0000870 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
Kevin Enderbye7739d42011-12-09 18:09:40 +0000871
872 // Create a symbol at the start and end of this section used in here for the
873 // expression to calculate the length in the header.
Jim Grosbach6f482002015-05-18 18:43:14 +0000874 MCSymbol *InfoStart = context.createTempSymbol();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000875 MCOS->EmitLabel(InfoStart);
Jim Grosbach6f482002015-05-18 18:43:14 +0000876 MCSymbol *InfoEnd = context.createTempSymbol();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000877
878 // First part: the header.
879
880 // The 4 byte total length of the information for this compilation unit, not
881 // including these 4 bytes.
882 const MCExpr *Length = MakeStartMinusEndExpr(*MCOS, *InfoStart, *InfoEnd, 4);
Rafael Espindolac23174b2014-08-15 15:12:13 +0000883 emitAbsValue(*MCOS, Length, 4);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000884
Oliver Stannard7eacbd52014-05-01 08:46:02 +0000885 // The 2 byte DWARF version.
886 MCOS->EmitIntValue(context.getDwarfVersion(), 2);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000887
Paul Robinsondccb4fe2017-02-28 23:40:46 +0000888 // The DWARF v5 header has unit type, address size, abbrev offset.
889 // Earlier versions have abbrev offset, address size.
Saleem Abdulrasool00426d92014-07-19 21:01:58 +0000890 const MCAsmInfo &AsmInfo = *context.getAsmInfo();
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +0000891 int AddrSize = AsmInfo.getCodePointerSize();
Paul Robinsondccb4fe2017-02-28 23:40:46 +0000892 if (context.getDwarfVersion() >= 5) {
893 MCOS->EmitIntValue(dwarf::DW_UT_compile, 1);
894 MCOS->EmitIntValue(AddrSize, 1);
895 }
Kevin Enderbye7739d42011-12-09 18:09:40 +0000896 // The 4 byte offset to the debug abbrevs from the start of the .debug_abbrev,
897 // it is at the start of that section so this is zero.
Saleem Abdulrasool7d095302014-07-17 16:27:44 +0000898 if (AbbrevSectionSymbol == nullptr)
Rafael Espindolac22c85c2012-02-28 21:13:05 +0000899 MCOS->EmitIntValue(0, 4);
Saleem Abdulrasool7d095302014-07-17 16:27:44 +0000900 else
Saleem Abdulrasool00426d92014-07-19 21:01:58 +0000901 MCOS->EmitSymbolValue(AbbrevSectionSymbol, 4,
902 AsmInfo.needsDwarfSectionOffsetDirective());
Paul Robinsondccb4fe2017-02-28 23:40:46 +0000903 if (context.getDwarfVersion() <= 4)
904 MCOS->EmitIntValue(AddrSize, 1);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000905
906 // Second part: the compile_unit DIE.
907
908 // The DW_TAG_compile_unit DIE abbrev (1).
909 MCOS->EmitULEB128IntValue(1);
910
911 // DW_AT_stmt_list, a 4 byte offset from the start of the .debug_line section,
912 // which is at the start of that section so this is zero.
Saleem Abdulrasool5c70de12014-09-05 04:15:00 +0000913 if (LineSectionSymbol)
914 MCOS->EmitSymbolValue(LineSectionSymbol, 4,
915 AsmInfo.needsDwarfSectionOffsetDirective());
916 else
Rafael Espindolac22c85c2012-02-28 21:13:05 +0000917 MCOS->EmitIntValue(0, 4);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000918
Oliver Stannard8b273082014-06-19 15:52:37 +0000919 if (RangesSectionSymbol) {
920 // There are multiple sections containing code, so we must use the
921 // .debug_ranges sections.
Kevin Enderbye7739d42011-12-09 18:09:40 +0000922
Oliver Stannard8b273082014-06-19 15:52:37 +0000923 // AT_ranges, the 4 byte offset from the start of the .debug_ranges section
924 // to the address range list for this compilation unit.
925 MCOS->EmitSymbolValue(RangesSectionSymbol, 4);
926 } else {
927 // If we only have one non-empty code section, we can use the simpler
928 // AT_low_pc and AT_high_pc attributes.
929
930 // Find the first (and only) non-empty text section
931 auto &Sections = context.getGenDwarfSectionSyms();
932 const auto TextSection = Sections.begin();
933 assert(TextSection != Sections.end() && "No text section found");
934
Rafael Espindolae0746792015-05-21 16:52:32 +0000935 MCSymbol *StartSymbol = (*TextSection)->getBeginSymbol();
936 MCSymbol *EndSymbol = (*TextSection)->getEndSymbol(context);
Oliver Stannard8b273082014-06-19 15:52:37 +0000937 assert(StartSymbol && "StartSymbol must not be NULL");
938 assert(EndSymbol && "EndSymbol must not be NULL");
939
940 // AT_low_pc, the first address of the default .text section.
Jim Grosbach13760bd2015-05-30 01:25:56 +0000941 const MCExpr *Start = MCSymbolRefExpr::create(
Oliver Stannard8b273082014-06-19 15:52:37 +0000942 StartSymbol, MCSymbolRefExpr::VK_None, context);
943 MCOS->EmitValue(Start, AddrSize);
944
945 // AT_high_pc, the last address of the default .text section.
Jim Grosbach13760bd2015-05-30 01:25:56 +0000946 const MCExpr *End = MCSymbolRefExpr::create(
Oliver Stannard8b273082014-06-19 15:52:37 +0000947 EndSymbol, MCSymbolRefExpr::VK_None, context);
948 MCOS->EmitValue(End, AddrSize);
949 }
Kevin Enderbye7739d42011-12-09 18:09:40 +0000950
951 // AT_name, the name of the source file. Reconstruct from the first directory
952 // and file table entries.
David Blaikie533490de2014-03-13 19:05:33 +0000953 const SmallVectorImpl<std::string> &MCDwarfDirs = context.getMCDwarfDirs();
Kevin Enderbye7739d42011-12-09 18:09:40 +0000954 if (MCDwarfDirs.size() > 0) {
Eric Christophere3ab3d02013-01-09 01:57:54 +0000955 MCOS->EmitBytes(MCDwarfDirs[0]);
Yaron Keren15217202014-05-16 13:16:30 +0000956 MCOS->EmitBytes(sys::path::get_separator());
Kevin Enderbye7739d42011-12-09 18:09:40 +0000957 }
David Blaikiea55ddad2014-03-13 18:55:04 +0000958 const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles =
Kevin Enderbye7739d42011-12-09 18:09:40 +0000959 MCOS->getContext().getMCDwarfFiles();
David Blaikiea55ddad2014-03-13 18:55:04 +0000960 MCOS->EmitBytes(MCDwarfFiles[1].Name);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000961 MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
962
963 // AT_comp_dir, the working directory the assembly was done in.
Andrew Trick32591d32013-12-10 04:39:09 +0000964 if (!context.getCompilationDir().empty()) {
965 MCOS->EmitBytes(context.getCompilationDir());
966 MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
967 }
Kevin Enderbye7739d42011-12-09 18:09:40 +0000968
969 // AT_APPLE_flags, the command line arguments of the assembler tool.
970 StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
971 if (!DwarfDebugFlags.empty()){
Eric Christophere3ab3d02013-01-09 01:57:54 +0000972 MCOS->EmitBytes(DwarfDebugFlags);
Kevin Enderbye7739d42011-12-09 18:09:40 +0000973 MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
974 }
975
976 // AT_producer, the version of the assembler tool.
Kevin Enderbye82ada62013-01-16 17:46:23 +0000977 StringRef DwarfDebugProducer = context.getDwarfDebugProducer();
Saleem Abdulrasool19f8bc62014-07-17 16:27:35 +0000978 if (!DwarfDebugProducer.empty())
Kevin Enderbye82ada62013-01-16 17:46:23 +0000979 MCOS->EmitBytes(DwarfDebugProducer);
Saleem Abdulrasool19f8bc62014-07-17 16:27:35 +0000980 else
981 MCOS->EmitBytes(StringRef("llvm-mc (based on LLVM " PACKAGE_VERSION ")"));
Kevin Enderbye7739d42011-12-09 18:09:40 +0000982 MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
983
984 // AT_language, a 4 byte value. We use DW_LANG_Mips_Assembler as the dwarf2
985 // draft has no standard code for assembler.
986 MCOS->EmitIntValue(dwarf::DW_LANG_Mips_Assembler, 2);
987
Kevin Enderby8d4a2202012-01-10 17:52:29 +0000988 // Third part: the list of label DIEs.
Kevin Enderbye7739d42011-12-09 18:09:40 +0000989
Kevin Enderbyf7d77062012-01-10 21:12:34 +0000990 // Loop on saved info for dwarf labels and create the DIEs for them.
David Blaikie1e0fc8f2014-04-11 00:43:52 +0000991 const std::vector<MCGenDwarfLabelEntry> &Entries =
992 MCOS->getContext().getMCGenDwarfLabelEntries();
993 for (const auto &Entry : Entries) {
Kevin Enderby8d4a2202012-01-10 17:52:29 +0000994 // The DW_TAG_label DIE abbrev (2).
Kevin Enderbye7739d42011-12-09 18:09:40 +0000995 MCOS->EmitULEB128IntValue(2);
996
997 // AT_name, of the label without any leading underbar.
David Blaikie1e0fc8f2014-04-11 00:43:52 +0000998 MCOS->EmitBytes(Entry.getName());
Kevin Enderbye7739d42011-12-09 18:09:40 +0000999 MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
1000
1001 // AT_decl_file, index into the file table.
David Blaikie1e0fc8f2014-04-11 00:43:52 +00001002 MCOS->EmitIntValue(Entry.getFileNumber(), 4);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001003
1004 // AT_decl_line, source line number.
David Blaikie1e0fc8f2014-04-11 00:43:52 +00001005 MCOS->EmitIntValue(Entry.getLineNumber(), 4);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001006
1007 // AT_low_pc, start address of the label.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001008 const MCExpr *AT_low_pc = MCSymbolRefExpr::create(Entry.getLabel(),
Kevin Enderbye7739d42011-12-09 18:09:40 +00001009 MCSymbolRefExpr::VK_None, context);
Rafael Espindola98629c42014-03-20 21:26:38 +00001010 MCOS->EmitValue(AT_low_pc, AddrSize);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001011
Kevin Enderbye7739d42011-12-09 18:09:40 +00001012 // DW_AT_prototyped, a one byte flag value of 0 saying we have no prototype.
1013 MCOS->EmitIntValue(0, 1);
1014
1015 // The DW_TAG_unspecified_parameters DIE abbrev (3).
1016 MCOS->EmitULEB128IntValue(3);
1017
1018 // Add the NULL DIE terminating the DW_TAG_unspecified_parameters DIE's.
1019 MCOS->EmitIntValue(0, 1);
1020 }
Kevin Enderbye7739d42011-12-09 18:09:40 +00001021
1022 // Add the NULL DIE terminating the Compile Unit DIE's.
1023 MCOS->EmitIntValue(0, 1);
1024
1025 // Now set the value of the symbol at the end of the info section.
1026 MCOS->EmitLabel(InfoEnd);
1027}
1028
Oliver Stannard8b273082014-06-19 15:52:37 +00001029// When generating dwarf for assembly source files this emits the data for
1030// .debug_ranges section. We only emit one range list, which spans all of the
1031// executable sections of this file.
1032static void EmitGenDwarfRanges(MCStreamer *MCOS) {
1033 MCContext &context = MCOS->getContext();
1034 auto &Sections = context.getGenDwarfSectionSyms();
1035
1036 const MCAsmInfo *AsmInfo = context.getAsmInfo();
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001037 int AddrSize = AsmInfo->getCodePointerSize();
Oliver Stannard8b273082014-06-19 15:52:37 +00001038
1039 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfRangesSection());
1040
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001041 for (MCSection *Sec : Sections) {
1042 const MCSymbol *StartSymbol = Sec->getBeginSymbol();
Rafael Espindolae0746792015-05-21 16:52:32 +00001043 MCSymbol *EndSymbol = Sec->getEndSymbol(context);
Oliver Stannard8b273082014-06-19 15:52:37 +00001044 assert(StartSymbol && "StartSymbol must not be NULL");
1045 assert(EndSymbol && "EndSymbol must not be NULL");
1046
1047 // Emit a base address selection entry for the start of this section
Jim Grosbach13760bd2015-05-30 01:25:56 +00001048 const MCExpr *SectionStartAddr = MCSymbolRefExpr::create(
Oliver Stannard8b273082014-06-19 15:52:37 +00001049 StartSymbol, MCSymbolRefExpr::VK_None, context);
Petr Hosekfaef3202016-06-01 01:59:58 +00001050 MCOS->emitFill(AddrSize, 0xFF);
Oliver Stannard8b273082014-06-19 15:52:37 +00001051 MCOS->EmitValue(SectionStartAddr, AddrSize);
1052
1053 // Emit a range list entry spanning this section
1054 const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS,
1055 *StartSymbol, *EndSymbol, 0);
1056 MCOS->EmitIntValue(0, AddrSize);
Rafael Espindolac23174b2014-08-15 15:12:13 +00001057 emitAbsValue(*MCOS, SectionSize, AddrSize);
Oliver Stannard8b273082014-06-19 15:52:37 +00001058 }
1059
1060 // Emit end of list entry
1061 MCOS->EmitIntValue(0, AddrSize);
1062 MCOS->EmitIntValue(0, AddrSize);
1063}
1064
Kevin Enderbye7739d42011-12-09 18:09:40 +00001065//
1066// When generating dwarf for assembly source files this emits the Dwarf
1067// sections.
1068//
David Blaikie8bf66c42014-04-01 07:35:52 +00001069void MCGenDwarfInfo::Emit(MCStreamer *MCOS) {
Kevin Enderbye7739d42011-12-09 18:09:40 +00001070 MCContext &context = MCOS->getContext();
Oliver Stannard8b273082014-06-19 15:52:37 +00001071
1072 // Create the dwarf sections in this order (.debug_line already created).
Bill Wendlingbc07a892013-06-18 07:20:20 +00001073 const MCAsmInfo *AsmInfo = context.getAsmInfo();
Alexey Samsonov00fd5252012-11-14 09:55:38 +00001074 bool CreateDwarfSectionSymbols =
Bill Wendlingbc07a892013-06-18 07:20:20 +00001075 AsmInfo->doesDwarfUseRelocationsAcrossSections();
David Blaikie8bf66c42014-04-01 07:35:52 +00001076 MCSymbol *LineSectionSymbol = nullptr;
David Blaikie34641612014-04-01 08:07:52 +00001077 if (CreateDwarfSectionSymbols)
1078 LineSectionSymbol = MCOS->getDwarfLineTableSymbol(0);
Craig Topperbb694de2014-04-13 04:57:38 +00001079 MCSymbol *AbbrevSectionSymbol = nullptr;
1080 MCSymbol *InfoSectionSymbol = nullptr;
Hans Wennborg083ca9b2015-10-06 23:24:35 +00001081 MCSymbol *RangesSectionSymbol = nullptr;
Oliver Stannard8b273082014-06-19 15:52:37 +00001082
1083 // Create end symbols for each section, and remove empty sections
1084 MCOS->getContext().finalizeDwarfSections(*MCOS);
1085
1086 // If there are no sections to generate debug info for, we don't need
1087 // to do anything
1088 if (MCOS->getContext().getGenDwarfSectionSyms().empty())
1089 return;
1090
Oliver Stannard14f97d02014-09-22 10:45:16 +00001091 // We only use the .debug_ranges section if we have multiple code sections,
1092 // and we are emitting a DWARF version which supports it.
Oliver Stannard8b273082014-06-19 15:52:37 +00001093 const bool UseRangesSection =
Oliver Stannard14f97d02014-09-22 10:45:16 +00001094 MCOS->getContext().getGenDwarfSectionSyms().size() > 1 &&
1095 MCOS->getContext().getDwarfVersion() >= 3;
Oliver Stannard8b273082014-06-19 15:52:37 +00001096 CreateDwarfSectionSymbols |= UseRangesSection;
1097
Kevin Enderbye7739d42011-12-09 18:09:40 +00001098 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
Alexey Samsonov00fd5252012-11-14 09:55:38 +00001099 if (CreateDwarfSectionSymbols) {
Jim Grosbach6f482002015-05-18 18:43:14 +00001100 InfoSectionSymbol = context.createTempSymbol();
Alexey Samsonov00fd5252012-11-14 09:55:38 +00001101 MCOS->EmitLabel(InfoSectionSymbol);
1102 }
Kevin Enderbye7739d42011-12-09 18:09:40 +00001103 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
Alexey Samsonov00fd5252012-11-14 09:55:38 +00001104 if (CreateDwarfSectionSymbols) {
Jim Grosbach6f482002015-05-18 18:43:14 +00001105 AbbrevSectionSymbol = context.createTempSymbol();
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001106 MCOS->EmitLabel(AbbrevSectionSymbol);
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001107 }
Oliver Stannard8b273082014-06-19 15:52:37 +00001108 if (UseRangesSection) {
1109 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfRangesSection());
1110 if (CreateDwarfSectionSymbols) {
Jim Grosbach6f482002015-05-18 18:43:14 +00001111 RangesSectionSymbol = context.createTempSymbol();
Oliver Stannard8b273082014-06-19 15:52:37 +00001112 MCOS->EmitLabel(RangesSectionSymbol);
1113 }
1114 }
Kevin Enderbye7739d42011-12-09 18:09:40 +00001115
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001116 assert((RangesSectionSymbol != nullptr) || !UseRangesSection);
Oliver Stannard8b273082014-06-19 15:52:37 +00001117
1118 MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
Kevin Enderbye7739d42011-12-09 18:09:40 +00001119
1120 // Output the data for .debug_aranges section.
Alexey Samsonov00fd5252012-11-14 09:55:38 +00001121 EmitGenDwarfAranges(MCOS, InfoSectionSymbol);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001122
Oliver Stannard8b273082014-06-19 15:52:37 +00001123 if (UseRangesSection)
1124 EmitGenDwarfRanges(MCOS);
1125
Kevin Enderbye7739d42011-12-09 18:09:40 +00001126 // Output the data for .debug_abbrev section.
1127 EmitGenDwarfAbbrev(MCOS);
1128
1129 // Output the data for .debug_info section.
Oliver Stannard8b273082014-06-19 15:52:37 +00001130 EmitGenDwarfInfo(MCOS, AbbrevSectionSymbol, LineSectionSymbol,
1131 RangesSectionSymbol);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001132}
1133
1134//
1135// When generating dwarf for assembly source files this is called when symbol
1136// for a label is created. If this symbol is not a temporary and is in the
1137// section that dwarf is being generated for, save the needed info to create
Kevin Enderbyf7d77062012-01-10 21:12:34 +00001138// a dwarf label.
Kevin Enderbye7739d42011-12-09 18:09:40 +00001139//
Kevin Enderbyf7d77062012-01-10 21:12:34 +00001140void MCGenDwarfLabelEntry::Make(MCSymbol *Symbol, MCStreamer *MCOS,
Kevin Enderbye7739d42011-12-09 18:09:40 +00001141 SourceMgr &SrcMgr, SMLoc &Loc) {
Oliver Stannard8b273082014-06-19 15:52:37 +00001142 // We won't create dwarf labels for temporary symbols.
Kevin Enderbye7739d42011-12-09 18:09:40 +00001143 if (Symbol->isTemporary())
1144 return;
1145 MCContext &context = MCOS->getContext();
Oliver Stannard8b273082014-06-19 15:52:37 +00001146 // We won't create dwarf labels for symbols in sections that we are not
1147 // generating debug info for.
Eric Christopher445c9522016-10-14 05:47:37 +00001148 if (!context.getGenDwarfSectionSyms().count(MCOS->getCurrentSectionOnly()))
Kevin Enderbye7739d42011-12-09 18:09:40 +00001149 return;
1150
Kevin Enderbyf7d77062012-01-10 21:12:34 +00001151 // The dwarf label's name does not have the symbol name's leading
Kevin Enderbye7739d42011-12-09 18:09:40 +00001152 // underbar if any.
1153 StringRef Name = Symbol->getName();
1154 if (Name.startswith("_"))
1155 Name = Name.substr(1, Name.size()-1);
1156
Kevin Enderbyf7d77062012-01-10 21:12:34 +00001157 // Get the dwarf file number to be used for the dwarf label.
Kevin Enderbye7739d42011-12-09 18:09:40 +00001158 unsigned FileNumber = context.getGenDwarfFileNumber();
1159
1160 // Finding the line number is the expensive part which is why we just don't
Kevin Enderbyf7d77062012-01-10 21:12:34 +00001161 // pass it in as for some symbols we won't create a dwarf label.
Alp Tokera55b95b2014-07-06 10:33:31 +00001162 unsigned CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001163 unsigned LineNumber = SrcMgr.FindLineNumber(Loc, CurBuffer);
1164
1165 // We create a temporary symbol for use for the AT_high_pc and AT_low_pc
1166 // values so that they don't have things like an ARM thumb bit from the
1167 // original symbol. So when used they won't get a low bit set after
1168 // relocation.
Jim Grosbach6f482002015-05-18 18:43:14 +00001169 MCSymbol *Label = context.createTempSymbol();
Kevin Enderbye7739d42011-12-09 18:09:40 +00001170 MCOS->EmitLabel(Label);
1171
1172 // Create and entry for the info and add it to the other entries.
David Blaikie1e0fc8f2014-04-11 00:43:52 +00001173 MCOS->getContext().addMCGenDwarfLabelEntry(
1174 MCGenDwarfLabelEntry(Name, FileNumber, LineNumber, Label));
Kevin Enderbye7739d42011-12-09 18:09:40 +00001175}
1176
Rafael Espindola0a017a62010-12-10 07:39:47 +00001177static int getDataAlignmentFactor(MCStreamer &streamer) {
1178 MCContext &context = streamer.getContext();
Bill Wendlingbc07a892013-06-18 07:20:20 +00001179 const MCAsmInfo *asmInfo = context.getAsmInfo();
1180 int size = asmInfo->getCalleeSaveStackSlotSize();
1181 if (asmInfo->isStackGrowthDirectionUp())
Rafael Espindola0a017a62010-12-10 07:39:47 +00001182 return size;
Evan Chenga83b37a2011-07-15 02:09:41 +00001183 else
1184 return -size;
Rafael Espindola0a017a62010-12-10 07:39:47 +00001185}
1186
Rafael Espindola5395f442011-04-22 00:08:43 +00001187static unsigned getSizeForEncoding(MCStreamer &streamer,
1188 unsigned symbolEncoding) {
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001189 MCContext &context = streamer.getContext();
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001190 unsigned format = symbolEncoding & 0x0f;
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001191 switch (format) {
Craig Toppera2886c22012-02-07 05:05:23 +00001192 default: llvm_unreachable("Unknown Encoding");
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001193 case dwarf::DW_EH_PE_absptr:
1194 case dwarf::DW_EH_PE_signed:
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001195 return context.getAsmInfo()->getCodePointerSize();
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001196 case dwarf::DW_EH_PE_udata2:
1197 case dwarf::DW_EH_PE_sdata2:
Rafael Espindola5395f442011-04-22 00:08:43 +00001198 return 2;
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001199 case dwarf::DW_EH_PE_udata4:
1200 case dwarf::DW_EH_PE_sdata4:
Rafael Espindola5395f442011-04-22 00:08:43 +00001201 return 4;
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001202 case dwarf::DW_EH_PE_udata8:
1203 case dwarf::DW_EH_PE_sdata8:
Rafael Espindola5395f442011-04-22 00:08:43 +00001204 return 8;
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001205 }
Rafael Espindola5395f442011-04-22 00:08:43 +00001206}
1207
Rafael Espindolafe963b12014-08-15 03:07:13 +00001208static void emitFDESymbol(MCObjectStreamer &streamer, const MCSymbol &symbol,
1209 unsigned symbolEncoding, bool isEH) {
Rafael Espindola6bd6a702011-04-28 21:04:39 +00001210 MCContext &context = streamer.getContext();
Bill Wendlingbc07a892013-06-18 07:20:20 +00001211 const MCAsmInfo *asmInfo = context.getAsmInfo();
1212 const MCExpr *v = asmInfo->getExprForFDESymbol(&symbol,
1213 symbolEncoding,
1214 streamer);
Rafael Espindola5395f442011-04-22 00:08:43 +00001215 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
Iain Sandoe618def62014-01-08 10:22:54 +00001216 if (asmInfo->doDwarfFDESymbolsUseAbsDiff() && isEH)
Rafael Espindolac23174b2014-08-15 15:12:13 +00001217 emitAbsValue(streamer, v, size);
Iain Sandoe618def62014-01-08 10:22:54 +00001218 else
1219 streamer.EmitValue(v, size);
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001220}
1221
Rafael Espindolac5dac4d2011-04-28 16:09:09 +00001222static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
1223 unsigned symbolEncoding) {
1224 MCContext &context = streamer.getContext();
Bill Wendlingbc07a892013-06-18 07:20:20 +00001225 const MCAsmInfo *asmInfo = context.getAsmInfo();
1226 const MCExpr *v = asmInfo->getExprForPersonalitySymbol(&symbol,
1227 symbolEncoding,
1228 streamer);
Rafael Espindolac5dac4d2011-04-28 16:09:09 +00001229 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
Rafael Espindolafd057852011-05-01 03:50:49 +00001230 streamer.EmitValue(v, size);
Rafael Espindolac5dac4d2011-04-28 16:09:09 +00001231}
1232
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001233namespace {
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001234
Rafael Espindola68c21652015-11-05 23:54:18 +00001235class FrameEmitterImpl {
Rafael Espindolaa1d960e2015-11-05 23:55:51 +00001236 int CFAOffset = 0;
1237 int InitialCFAOffset = 0;
Rafael Espindola68c21652015-11-05 23:54:18 +00001238 bool IsEH;
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001239 MCObjectStreamer &Streamer;
Bill Wendling4d9aa512011-07-22 21:18:59 +00001240
Rafael Espindola68c21652015-11-05 23:54:18 +00001241public:
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001242 FrameEmitterImpl(bool IsEH, MCObjectStreamer &Streamer)
1243 : IsEH(IsEH), Streamer(Streamer) {}
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001244
Rafael Espindola68c21652015-11-05 23:54:18 +00001245 /// Emit the unwind information in a compact way.
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001246 void EmitCompactUnwind(const MCDwarfFrameInfo &frame);
Rafael Espindola68c21652015-11-05 23:54:18 +00001247
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001248 const MCSymbol &EmitCIE(const MCDwarfFrameInfo &F);
Rafael Espindola46be4352015-11-06 03:02:51 +00001249 void EmitFDE(const MCSymbol &cieStart, const MCDwarfFrameInfo &frame,
Rafael Espindola97588e12015-11-06 13:14:59 +00001250 bool LastInSection, const MCSymbol &SectionStart);
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001251 void EmitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
Rafael Espindola68c21652015-11-05 23:54:18 +00001252 MCSymbol *BaseLabel);
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001253 void EmitCFIInstruction(const MCCFIInstruction &Instr);
Rafael Espindola68c21652015-11-05 23:54:18 +00001254};
Bill Wendling567a1ae2011-06-30 21:25:51 +00001255
1256} // end anonymous namespace
1257
Rafael Espindolafe963b12014-08-15 03:07:13 +00001258static void emitEncodingByte(MCObjectStreamer &Streamer, unsigned Encoding) {
Bill Wendling567a1ae2011-06-30 21:25:51 +00001259 Streamer.EmitIntValue(Encoding, 1);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001260}
1261
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001262void FrameEmitterImpl::EmitCFIInstruction(const MCCFIInstruction &Instr) {
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001263 int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
Frederic Rissadbb3f22015-02-26 19:48:07 +00001264 auto *MRI = Streamer.getContext().getRegisterInfo();
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001265
1266 switch (Instr.getOperation()) {
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001267 case MCCFIInstruction::OpRegister: {
1268 unsigned Reg1 = Instr.getRegister();
1269 unsigned Reg2 = Instr.getRegister2();
Frederic Rissadbb3f22015-02-26 19:48:07 +00001270 if (!IsEH) {
Jake Ehrlich3da79822017-12-01 21:44:27 +00001271 Reg1 = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg1);
1272 Reg2 = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg2);
Frederic Rissadbb3f22015-02-26 19:48:07 +00001273 }
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001274 Streamer.EmitIntValue(dwarf::DW_CFA_register, 1);
1275 Streamer.EmitULEB128IntValue(Reg1);
1276 Streamer.EmitULEB128IntValue(Reg2);
1277 return;
1278 }
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001279 case MCCFIInstruction::OpWindowSave:
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +00001280 Streamer.EmitIntValue(dwarf::DW_CFA_GNU_window_save, 1);
1281 return;
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001282
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001283 case MCCFIInstruction::OpUndefined: {
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001284 unsigned Reg = Instr.getRegister();
Rafael Espindola9bb24782012-11-23 16:59:41 +00001285 Streamer.EmitIntValue(dwarf::DW_CFA_undefined, 1);
1286 Streamer.EmitULEB128IntValue(Reg);
1287 return;
1288 }
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001289 case MCCFIInstruction::OpAdjustCfaOffset:
1290 case MCCFIInstruction::OpDefCfaOffset: {
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001291 const bool IsRelative =
1292 Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset;
1293
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001294 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
1295
1296 if (IsRelative)
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001297 CFAOffset += Instr.getOffset();
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001298 else
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001299 CFAOffset = -Instr.getOffset();
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001300
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001301 Streamer.EmitULEB128IntValue(CFAOffset);
1302
1303 return;
1304 }
1305 case MCCFIInstruction::OpDefCfa: {
Frederic Rissadbb3f22015-02-26 19:48:07 +00001306 unsigned Reg = Instr.getRegister();
1307 if (!IsEH)
Jake Ehrlich3da79822017-12-01 21:44:27 +00001308 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg);
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001309 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
Frederic Rissadbb3f22015-02-26 19:48:07 +00001310 Streamer.EmitULEB128IntValue(Reg);
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001311 CFAOffset = -Instr.getOffset();
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001312 Streamer.EmitULEB128IntValue(CFAOffset);
1313
1314 return;
1315 }
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001316 case MCCFIInstruction::OpDefCfaRegister: {
Frederic Rissadbb3f22015-02-26 19:48:07 +00001317 unsigned Reg = Instr.getRegister();
1318 if (!IsEH)
Jake Ehrlich3da79822017-12-01 21:44:27 +00001319 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg);
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001320 Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
Frederic Rissadbb3f22015-02-26 19:48:07 +00001321 Streamer.EmitULEB128IntValue(Reg);
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001322
1323 return;
1324 }
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001325 case MCCFIInstruction::OpOffset:
1326 case MCCFIInstruction::OpRelOffset: {
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001327 const bool IsRelative =
1328 Instr.getOperation() == MCCFIInstruction::OpRelOffset;
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001329
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001330 unsigned Reg = Instr.getRegister();
Frederic Rissadbb3f22015-02-26 19:48:07 +00001331 if (!IsEH)
Jake Ehrlich3da79822017-12-01 21:44:27 +00001332 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg);
Frederic Rissadbb3f22015-02-26 19:48:07 +00001333
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001334 int Offset = Instr.getOffset();
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001335 if (IsRelative)
1336 Offset -= CFAOffset;
1337 Offset = Offset / dataAlignmentFactor;
1338
1339 if (Offset < 0) {
1340 Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
1341 Streamer.EmitULEB128IntValue(Reg);
1342 Streamer.EmitSLEB128IntValue(Offset);
1343 } else if (Reg < 64) {
1344 Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
Rafael Espindolaea61f222011-04-21 23:26:40 +00001345 Streamer.EmitULEB128IntValue(Offset);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001346 } else {
1347 Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
Rafael Espindolaea61f222011-04-21 23:26:40 +00001348 Streamer.EmitULEB128IntValue(Reg);
1349 Streamer.EmitULEB128IntValue(Offset);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001350 }
1351 return;
1352 }
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001353 case MCCFIInstruction::OpRememberState:
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001354 Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
1355 return;
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001356 case MCCFIInstruction::OpRestoreState:
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001357 Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
1358 return;
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001359 case MCCFIInstruction::OpSameValue: {
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001360 unsigned Reg = Instr.getRegister();
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001361 Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
Rafael Espindola6aea5922011-04-21 23:39:26 +00001362 Streamer.EmitULEB128IntValue(Reg);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001363 return;
1364 }
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001365 case MCCFIInstruction::OpRestore: {
Rafael Espindolacc0c74a2012-11-24 04:33:48 +00001366 unsigned Reg = Instr.getRegister();
Frederic Rissadbb3f22015-02-26 19:48:07 +00001367 if (!IsEH)
Jake Ehrlich3da79822017-12-01 21:44:27 +00001368 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(Reg);
Rafael Espindola4ea99812011-12-29 21:43:03 +00001369 Streamer.EmitIntValue(dwarf::DW_CFA_restore | Reg, 1);
1370 return;
1371 }
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001372 case MCCFIInstruction::OpGnuArgsSize:
Michael Kuperstein259f1502015-10-07 07:01:31 +00001373 Streamer.EmitIntValue(dwarf::DW_CFA_GNU_args_size, 1);
1374 Streamer.EmitULEB128IntValue(Instr.getOffset());
1375 return;
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001376
Rafael Espindola5dce65b2012-11-24 03:10:54 +00001377 case MCCFIInstruction::OpEscape:
Eric Christophere3ab3d02013-01-09 01:57:54 +00001378 Streamer.EmitBytes(Instr.getValues());
Rafael Espindolaef4aa352011-12-29 20:24:47 +00001379 return;
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001380 }
1381 llvm_unreachable("Unhandled case in switch");
1382}
1383
Rafael Espindolafe963b12014-08-15 03:07:13 +00001384/// Emit frame instructions to describe the layout of the frame.
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001385void FrameEmitterImpl::EmitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001386 MCSymbol *BaseLabel) {
Benjamin Kramer7b4658f2016-06-26 14:49:00 +00001387 for (const MCCFIInstruction &Instr : Instrs) {
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001388 MCSymbol *Label = Instr.getLabel();
1389 // Throw out move if the label is invalid.
1390 if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
1391
1392 // Advance row if new location.
1393 if (BaseLabel && Label) {
1394 MCSymbol *ThisSym = Label;
1395 if (ThisSym != BaseLabel) {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001396 Streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001397 BaseLabel = ThisSym;
1398 }
1399 }
1400
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001401 EmitCFIInstruction(Instr);
Rafael Espindola1ec0f462011-04-12 16:12:03 +00001402 }
1403}
1404
Rafael Espindolafe963b12014-08-15 03:07:13 +00001405/// Emit the unwind information in a compact way.
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001406void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) {
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001407 MCContext &Context = Streamer.getContext();
Evan Cheng76792992011-07-20 05:58:47 +00001408 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001409
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001410 // range-start range-length compact-unwind-enc personality-func lsda
1411 // _foo LfooEnd-_foo 0x00000023 0 0
1412 // _bar LbarEnd-_bar 0x00000025 __gxx_personality except_tab1
1413 //
1414 // .section __LD,__compact_unwind,regular,debug
1415 //
1416 // # compact unwind for _foo
1417 // .quad _foo
1418 // .set L1,LfooEnd-_foo
1419 // .long L1
1420 // .long 0x01010001
1421 // .quad 0
1422 // .quad 0
1423 //
1424 // # compact unwind for _bar
1425 // .quad _bar
1426 // .set L2,LbarEnd-_bar
1427 // .long L2
1428 // .long 0x01020011
1429 // .quad __gxx_personality
1430 // .quad except_tab1
1431
Bill Wendling49bc6802011-07-19 00:06:12 +00001432 uint32_t Encoding = Frame.CompactUnwindEncoding;
Bill Wendling99bce5f2013-04-18 23:16:46 +00001433 if (!Encoding) return;
Bill Wendling2d1df6b2013-04-10 21:42:06 +00001434 bool DwarfEHFrameOnly = (Encoding == MOFI->getCompactUnwindDwarfEHFrameOnly());
Bill Wendlingb6adf462011-07-07 00:54:13 +00001435
Bill Wendlingdafd5982011-07-14 23:34:45 +00001436 // The encoding needs to know we have an LSDA.
Bill Wendling2d1df6b2013-04-10 21:42:06 +00001437 if (!DwarfEHFrameOnly && Frame.Lsda)
Bill Wendlingdafd5982011-07-14 23:34:45 +00001438 Encoding |= 0x40000000;
1439
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001440 // Range Start
Rafael Espindolaaa7851d2014-05-12 13:47:05 +00001441 unsigned FDEEncoding = MOFI->getFDEEncoding();
Bill Wendling8fa4ada2011-06-29 23:49:12 +00001442 unsigned Size = getSizeForEncoding(Streamer, FDEEncoding);
Rafael Espindola88604822014-06-23 15:34:32 +00001443 Streamer.EmitSymbolValue(Frame.Begin, Size);
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001444
1445 // Range Length
1446 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
1447 *Frame.End, 0);
Rafael Espindolac23174b2014-08-15 15:12:13 +00001448 emitAbsValue(Streamer, Range, 4);
Bill Wendling75174662011-06-30 00:30:52 +00001449
Bill Wendling75174662011-06-30 00:30:52 +00001450 // Compact Encoding
Bill Wendling75174662011-06-30 00:30:52 +00001451 Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_udata4);
1452 Streamer.EmitIntValue(Encoding, Size);
1453
Bill Wendling8fa4ada2011-06-29 23:49:12 +00001454 // Personality Function
Bill Wendlingdafd5982011-07-14 23:34:45 +00001455 Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_absptr);
Bill Wendling2d1df6b2013-04-10 21:42:06 +00001456 if (!DwarfEHFrameOnly && Frame.Personality)
Bill Wendling8fa4ada2011-06-29 23:49:12 +00001457 Streamer.EmitSymbolValue(Frame.Personality, Size);
Bill Wendling4cdb2062011-06-29 23:53:16 +00001458 else
1459 Streamer.EmitIntValue(0, Size); // No personality fn
Bill Wendling8fa4ada2011-06-29 23:49:12 +00001460
1461 // LSDA
Bill Wendling4cdb2062011-06-29 23:53:16 +00001462 Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding);
Bill Wendling2d1df6b2013-04-10 21:42:06 +00001463 if (!DwarfEHFrameOnly && Frame.Lsda)
Bill Wendling8fa4ada2011-06-29 23:49:12 +00001464 Streamer.EmitSymbolValue(Frame.Lsda, Size);
Bill Wendling4cdb2062011-06-29 23:53:16 +00001465 else
1466 Streamer.EmitIntValue(0, Size); // No LSDA
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001467}
1468
Rafael Espindolaeffdc7e2015-04-28 13:55:31 +00001469static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) {
1470 if (IsEH)
1471 return 1;
1472 switch (DwarfVersion) {
1473 case 2:
1474 return 1;
1475 case 3:
1476 return 3;
1477 case 4:
Eric Christopher2ae71802015-12-28 23:02:42 +00001478 case 5:
Rafael Espindolaeffdc7e2015-04-28 13:55:31 +00001479 return 4;
1480 }
1481 llvm_unreachable("Unknown version");
1482}
1483
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001484const MCSymbol &FrameEmitterImpl::EmitCIE(const MCDwarfFrameInfo &Frame) {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001485 MCContext &context = Streamer.getContext();
Bill Wendlingbc07a892013-06-18 07:20:20 +00001486 const MCRegisterInfo *MRI = context.getRegisterInfo();
Evan Cheng76792992011-07-20 05:58:47 +00001487 const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
Rafael Espindolabf60fb02011-04-28 03:26:11 +00001488
Jim Grosbach6f482002015-05-18 18:43:14 +00001489 MCSymbol *sectionStart = context.createTempSymbol();
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001490 Streamer.EmitLabel(sectionStart);
Rafael Espindolabf60fb02011-04-28 03:26:11 +00001491
Jim Grosbach6f482002015-05-18 18:43:14 +00001492 MCSymbol *sectionEnd = context.createTempSymbol();
Rafael Espindola0a017a62010-12-10 07:39:47 +00001493
1494 // Length
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001495 const MCExpr *Length =
1496 MakeStartMinusEndExpr(Streamer, *sectionStart, *sectionEnd, 4);
1497 emitAbsValue(Streamer, Length, 4);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001498
1499 // CIE ID
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001500 unsigned CIE_ID = IsEH ? 0 : -1;
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001501 Streamer.EmitIntValue(CIE_ID, 4);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001502
1503 // Version
Rafael Espindolaeffdc7e2015-04-28 13:55:31 +00001504 uint8_t CIEVersion = getCIEVersion(IsEH, context.getDwarfVersion());
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001505 Streamer.EmitIntValue(CIEVersion, 1);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001506
1507 // Augmentation String
1508 SmallString<8> Augmentation;
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001509 if (IsEH) {
1510 Augmentation += "z";
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001511 if (Frame.Personality)
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001512 Augmentation += "P";
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001513 if (Frame.Lsda)
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001514 Augmentation += "L";
1515 Augmentation += "R";
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001516 if (Frame.IsSignalFrame)
Rafael Espindola3c47e372012-01-23 21:51:52 +00001517 Augmentation += "S";
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001518 Streamer.EmitBytes(Augmentation);
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001519 }
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001520 Streamer.EmitIntValue(0, 1);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001521
Keith Walkerea9483f2015-05-12 15:25:08 +00001522 if (CIEVersion >= 4) {
1523 // Address Size
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001524 Streamer.EmitIntValue(context.getAsmInfo()->getCodePointerSize(), 1);
Keith Walkerea9483f2015-05-12 15:25:08 +00001525
1526 // Segment Descriptor Size
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001527 Streamer.EmitIntValue(0, 1);
Keith Walkerea9483f2015-05-12 15:25:08 +00001528 }
1529
Rafael Espindola0a017a62010-12-10 07:39:47 +00001530 // Code Alignment Factor
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001531 Streamer.EmitULEB128IntValue(context.getAsmInfo()->getMinInstAlignment());
Rafael Espindola0a017a62010-12-10 07:39:47 +00001532
1533 // Data Alignment Factor
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001534 Streamer.EmitSLEB128IntValue(getDataAlignmentFactor(Streamer));
Rafael Espindola0a017a62010-12-10 07:39:47 +00001535
1536 // Return Address Register
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001537 unsigned RAReg = Frame.RAReg;
Saleem Abdulrasoola219b3d2017-07-28 03:39:19 +00001538 if (RAReg == static_cast<unsigned>(INT_MAX))
1539 RAReg = MRI->getDwarfRegNum(MRI->getRARegister(), IsEH);
1540
Oliver Stannardf7693f42014-06-19 15:39:33 +00001541 if (CIEVersion == 1) {
Saleem Abdulrasoola219b3d2017-07-28 03:39:19 +00001542 assert(RAReg <= 255 &&
Oliver Stannardf7693f42014-06-19 15:39:33 +00001543 "DWARF 2 encodes return_address_register in one byte");
Saleem Abdulrasoola219b3d2017-07-28 03:39:19 +00001544 Streamer.EmitIntValue(RAReg, 1);
Oliver Stannardf7693f42014-06-19 15:39:33 +00001545 } else {
Saleem Abdulrasoola219b3d2017-07-28 03:39:19 +00001546 Streamer.EmitULEB128IntValue(RAReg);
Oliver Stannardf7693f42014-06-19 15:39:33 +00001547 }
Rafael Espindola0a017a62010-12-10 07:39:47 +00001548
1549 // Augmentation Data Length (optional)
Rafael Espindola6a85f9b2011-04-29 21:50:57 +00001550 unsigned augmentationLength = 0;
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001551 if (IsEH) {
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001552 if (Frame.Personality) {
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001553 // Personality Encoding
1554 augmentationLength += 1;
1555 // Personality
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001556 augmentationLength +=
1557 getSizeForEncoding(Streamer, Frame.PersonalityEncoding);
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001558 }
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001559 if (Frame.Lsda)
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001560 augmentationLength += 1;
1561 // Encoding of the FDE pointers
Rafael Espindola6a85f9b2011-04-29 21:50:57 +00001562 augmentationLength += 1;
Rafael Espindola6a85f9b2011-04-29 21:50:57 +00001563
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001564 Streamer.EmitULEB128IntValue(augmentationLength);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001565
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001566 // Augmentation Data (optional)
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001567 if (Frame.Personality) {
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001568 // Personality Encoding
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001569 emitEncodingByte(Streamer, Frame.PersonalityEncoding);
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001570 // Personality
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001571 EmitPersonality(Streamer, *Frame.Personality, Frame.PersonalityEncoding);
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001572 }
Bill Wendling567a1ae2011-06-30 21:25:51 +00001573
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001574 if (Frame.Lsda)
1575 emitEncodingByte(Streamer, Frame.LsdaEncoding);
Bill Wendling567a1ae2011-06-30 21:25:51 +00001576
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001577 // Encoding of the FDE pointers
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001578 emitEncodingByte(Streamer, MOFI->getFDEEncoding());
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001579 }
Rafael Espindola0a017a62010-12-10 07:39:47 +00001580
1581 // Initial Instructions
1582
Bill Wendlingbc07a892013-06-18 07:20:20 +00001583 const MCAsmInfo *MAI = context.getAsmInfo();
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001584 if (!Frame.IsSimple) {
David Majnemere035cf92014-01-27 17:20:25 +00001585 const std::vector<MCCFIInstruction> &Instructions =
1586 MAI->getInitialFrameState();
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001587 EmitCFIInstructions(Instructions, nullptr);
David Majnemere035cf92014-01-27 17:20:25 +00001588 }
Rafael Espindola0a017a62010-12-10 07:39:47 +00001589
Rafael Espindola8b4817b2015-03-24 21:47:31 +00001590 InitialCFAOffset = CFAOffset;
1591
Rafael Espindola0a017a62010-12-10 07:39:47 +00001592 // Padding
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001593 Streamer.EmitValueToAlignment(IsEH ? 4 : MAI->getCodePointerSize());
Rafael Espindola0a017a62010-12-10 07:39:47 +00001594
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001595 Streamer.EmitLabel(sectionEnd);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001596 return *sectionStart;
1597}
1598
Rafael Espindola46be4352015-11-06 03:02:51 +00001599void FrameEmitterImpl::EmitFDE(const MCSymbol &cieStart,
1600 const MCDwarfFrameInfo &frame,
Rafael Espindola97588e12015-11-06 13:14:59 +00001601 bool LastInSection,
1602 const MCSymbol &SectionStart) {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001603 MCContext &context = Streamer.getContext();
Jim Grosbach6f482002015-05-18 18:43:14 +00001604 MCSymbol *fdeStart = context.createTempSymbol();
1605 MCSymbol *fdeEnd = context.createTempSymbol();
Evan Cheng76792992011-07-20 05:58:47 +00001606 const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
Rafael Espindola0a017a62010-12-10 07:39:47 +00001607
Rafael Espindola8b4817b2015-03-24 21:47:31 +00001608 CFAOffset = InitialCFAOffset;
1609
Rafael Espindola0a017a62010-12-10 07:39:47 +00001610 // Length
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001611 const MCExpr *Length = MakeStartMinusEndExpr(Streamer, *fdeStart, *fdeEnd, 0);
1612 emitAbsValue(Streamer, Length, 4);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001613
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001614 Streamer.EmitLabel(fdeStart);
Rafael Espindola99f67352011-05-10 20:59:42 +00001615
Rafael Espindola0a017a62010-12-10 07:39:47 +00001616 // CIE Pointer
Bill Wendlingbc07a892013-06-18 07:20:20 +00001617 const MCAsmInfo *asmInfo = context.getAsmInfo();
Rafael Espindola27390b42011-05-10 15:20:23 +00001618 if (IsEH) {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001619 const MCExpr *offset =
1620 MakeStartMinusEndExpr(Streamer, cieStart, *fdeStart, 0);
1621 emitAbsValue(Streamer, offset, 4);
Bill Wendlingbc07a892013-06-18 07:20:20 +00001622 } else if (!asmInfo->doesDwarfUseRelocationsAcrossSections()) {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001623 const MCExpr *offset =
Rafael Espindola97588e12015-11-06 13:14:59 +00001624 MakeStartMinusEndExpr(Streamer, SectionStart, cieStart, 0);
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001625 emitAbsValue(Streamer, offset, 4);
Rafael Espindola27390b42011-05-10 15:20:23 +00001626 } else {
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001627 Streamer.EmitSymbolValue(&cieStart, 4);
Rafael Espindola27390b42011-05-10 15:20:23 +00001628 }
Bill Wendlingf166ab42011-06-30 22:02:20 +00001629
Rafael Espindola0a017a62010-12-10 07:39:47 +00001630 // PC Begin
Rafael Espindola01ee31b2014-05-12 13:40:49 +00001631 unsigned PCEncoding =
Rafael Espindolaaa7851d2014-05-12 13:47:05 +00001632 IsEH ? MOFI->getFDEEncoding() : (unsigned)dwarf::DW_EH_PE_absptr;
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001633 unsigned PCSize = getSizeForEncoding(Streamer, PCEncoding);
1634 emitFDESymbol(Streamer, *frame.Begin, PCEncoding, IsEH);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001635
1636 // PC Range
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001637 const MCExpr *Range =
1638 MakeStartMinusEndExpr(Streamer, *frame.Begin, *frame.End, 0);
1639 emitAbsValue(Streamer, Range, PCSize);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001640
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001641 if (IsEH) {
1642 // Augmentation Data Length
1643 unsigned augmentationLength = 0;
Rafael Espindola6a85f9b2011-04-29 21:50:57 +00001644
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001645 if (frame.Lsda)
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001646 augmentationLength += getSizeForEncoding(Streamer, frame.LsdaEncoding);
Rafael Espindola6a85f9b2011-04-29 21:50:57 +00001647
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001648 Streamer.EmitULEB128IntValue(augmentationLength);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001649
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001650 // Augmentation Data
1651 if (frame.Lsda)
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001652 emitFDESymbol(Streamer, *frame.Lsda, frame.LsdaEncoding, true);
Rafael Espindola1ecb12f2011-05-10 03:54:12 +00001653 }
Rafael Espindola68067662011-04-29 03:06:29 +00001654
Rafael Espindola0a017a62010-12-10 07:39:47 +00001655 // Call Frame Instructions
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001656 EmitCFIInstructions(frame.Instructions, frame.Begin);
Rafael Espindolaa75b87b2010-12-28 04:15:37 +00001657
Rafael Espindola0a017a62010-12-10 07:39:47 +00001658 // Padding
Rafael Espindola46be4352015-11-06 03:02:51 +00001659 // The size of a .eh_frame section has to be a multiple of the alignment
1660 // since a null CIE is interpreted as the end. Old systems overaligned
1661 // .eh_frame, so we do too and account for it in the last FDE.
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001662 unsigned Align = LastInSection ? asmInfo->getCodePointerSize() : PCSize;
Rafael Espindola46be4352015-11-06 03:02:51 +00001663 Streamer.EmitValueToAlignment(Align);
Rafael Espindola32c74ea2010-12-17 00:28:02 +00001664
Rafael Espindola46be4352015-11-06 03:02:51 +00001665 Streamer.EmitLabel(fdeEnd);
Rafael Espindola0a017a62010-12-10 07:39:47 +00001666}
1667
Benjamin Kramer570dd782010-12-30 22:34:44 +00001668namespace {
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001669
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001670struct CIEKey {
1671 static const CIEKey getEmptyKey() {
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001672 return CIEKey(nullptr, 0, -1, false, false, static_cast<unsigned>(INT_MAX));
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001673 }
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001674
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001675 static const CIEKey getTombstoneKey() {
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001676 return CIEKey(nullptr, -1, 0, false, false, static_cast<unsigned>(INT_MAX));
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001677 }
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001678
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001679 CIEKey(const MCSymbol *Personality, unsigned PersonalityEncoding,
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001680 unsigned LSDAEncoding, bool IsSignalFrame, bool IsSimple,
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001681 unsigned RAReg)
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001682 : Personality(Personality), PersonalityEncoding(PersonalityEncoding),
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001683 LsdaEncoding(LSDAEncoding), IsSignalFrame(IsSignalFrame),
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001684 IsSimple(IsSimple), RAReg(RAReg) {}
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001685
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001686 explicit CIEKey(const MCDwarfFrameInfo &Frame)
1687 : Personality(Frame.Personality),
1688 PersonalityEncoding(Frame.PersonalityEncoding),
1689 LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame),
1690 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg) {}
1691
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001692 const MCSymbol *Personality;
1693 unsigned PersonalityEncoding;
1694 unsigned LsdaEncoding;
1695 bool IsSignalFrame;
1696 bool IsSimple;
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001697 unsigned RAReg;
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001698};
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001699
1700} // end anonymous namespace
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001701
1702namespace llvm {
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001703
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001704template <> struct DenseMapInfo<CIEKey> {
1705 static CIEKey getEmptyKey() { return CIEKey::getEmptyKey(); }
1706 static CIEKey getTombstoneKey() { return CIEKey::getTombstoneKey(); }
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001707
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001708 static unsigned getHashValue(const CIEKey &Key) {
1709 return static_cast<unsigned>(
1710 hash_combine(Key.Personality, Key.PersonalityEncoding, Key.LsdaEncoding,
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001711 Key.IsSignalFrame, Key.IsSimple, Key.RAReg));
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001712 }
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001713
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001714 static bool isEqual(const CIEKey &LHS, const CIEKey &RHS) {
1715 return LHS.Personality == RHS.Personality &&
1716 LHS.PersonalityEncoding == RHS.PersonalityEncoding &&
1717 LHS.LsdaEncoding == RHS.LsdaEncoding &&
1718 LHS.IsSignalFrame == RHS.IsSignalFrame &&
Saleem Abdulrasoolfc850672017-07-29 20:03:00 +00001719 LHS.IsSimple == RHS.IsSimple &&
1720 LHS.RAReg == RHS.RAReg;
Rafael Espindola5b2131c2015-11-06 14:12:17 +00001721 }
1722};
Eugene Zelenkod96089b2017-02-14 00:33:36 +00001723
1724} // end namespace llvm
Rafael Espindola1de2dd02010-12-27 15:56:22 +00001725
Rafael Espindola4066e8d2014-05-12 14:28:48 +00001726void MCDwarfFrameEmitter::Emit(MCObjectStreamer &Streamer, MCAsmBackend *MAB,
Rafael Espindola8285b772014-05-12 13:34:25 +00001727 bool IsEH) {
Bill Wendling550c76d2013-09-09 19:48:37 +00001728 Streamer.generateCompactUnwindEncodings(MAB);
1729
Bill Wendlinga4b9d1f2011-06-23 07:44:54 +00001730 MCContext &Context = Streamer.getContext();
Bill Wendlinga800f952013-05-30 18:52:57 +00001731 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001732 const MCAsmInfo *AsmInfo = Context.getAsmInfo();
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001733 FrameEmitterImpl Emitter(IsEH, Streamer);
Saleem Abdulrasool3f3cefd2014-07-13 19:03:36 +00001734 ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getDwarfFrameInfos();
Bill Wendling4d9aa512011-07-22 21:18:59 +00001735
Bill Wendling9803abb2011-09-06 18:37:11 +00001736 // Emit the compact unwind info if available.
Tim Northoverd1c6f512014-03-29 09:03:13 +00001737 bool NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame();
Bill Wendling4e9fc022013-04-24 03:11:14 +00001738 if (IsEH && MOFI->getCompactUnwindSection()) {
Bill Wendling4e9fc022013-04-24 03:11:14 +00001739 bool SectionEmitted = false;
Benjamin Kramer7b4658f2016-06-26 14:49:00 +00001740 for (const MCDwarfFrameInfo &Frame : FrameArray) {
Bob Wilson0e180f22013-05-07 20:56:33 +00001741 if (Frame.CompactUnwindEncoding == 0) continue;
1742 if (!SectionEmitted) {
1743 Streamer.SwitchSection(MOFI->getCompactUnwindSection());
Konstantin Zhuravlyovdc77b2e2017-04-17 17:41:25 +00001744 Streamer.EmitValueToAlignment(AsmInfo->getCodePointerSize());
Bob Wilson0e180f22013-05-07 20:56:33 +00001745 SectionEmitted = true;
Bill Wendling4e9fc022013-04-24 03:11:14 +00001746 }
Tim Northoverd1c6f512014-03-29 09:03:13 +00001747 NeedsEHFrameSection |=
1748 Frame.CompactUnwindEncoding ==
1749 MOFI->getCompactUnwindDwarfEHFrameOnly();
Rafael Espindola6efa6fb2015-11-06 00:05:57 +00001750 Emitter.EmitCompactUnwind(Frame);
Bill Wendling4d9aa512011-07-22 21:18:59 +00001751 }
Bill Wendling4e9fc022013-04-24 03:11:14 +00001752 }
Bill Wendling4d9aa512011-07-22 21:18:59 +00001753
Tim Northoverd1c6f512014-03-29 09:03:13 +00001754 if (!NeedsEHFrameSection) return;
1755
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001756 MCSection &Section =
1757 IsEH ? *const_cast<MCObjectFileInfo *>(MOFI)->getEHFrameSection()
1758 : *MOFI->getDwarfFrameSection();
Tim Northoverd1c6f512014-03-29 09:03:13 +00001759
Bill Wendlinga4b9d1f2011-06-23 07:44:54 +00001760 Streamer.SwitchSection(&Section);
Jim Grosbach6f482002015-05-18 18:43:14 +00001761 MCSymbol *SectionStart = Context.createTempSymbol();
Bill Wendlinga4b9d1f2011-06-23 07:44:54 +00001762 Streamer.EmitLabel(SectionStart);
Rafael Espindola7c715152011-04-29 02:42:28 +00001763
Eric Christopherd29430d2014-06-19 20:00:09 +00001764 DenseMap<CIEKey, const MCSymbol *> CIEStarts;
Rafael Espindola9141b612010-12-26 20:20:31 +00001765
Craig Topperbb694de2014-04-13 04:57:38 +00001766 const MCSymbol *DummyDebugKey = nullptr;
Tim Northoverf8e47e42015-10-28 22:56:36 +00001767 bool CanOmitDwarf = MOFI->getOmitDwarfIfHaveCompactUnwind();
Rafael Espindola46be4352015-11-06 03:02:51 +00001768 for (auto I = FrameArray.begin(), E = FrameArray.end(); I != E;) {
1769 const MCDwarfFrameInfo &Frame = *I;
1770 ++I;
Tim Northoverf8e47e42015-10-28 22:56:36 +00001771 if (CanOmitDwarf && Frame.CompactUnwindEncoding !=
Tim Northoverd1c6f512014-03-29 09:03:13 +00001772 MOFI->getCompactUnwindDwarfEHFrameOnly())
1773 // Don't generate an EH frame if we don't need one. I.e., it's taken care
1774 // of by the compact unwind encoding.
1775 continue;
1776
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001777 CIEKey Key(Frame);
Bill Wendlinga4b9d1f2011-06-23 07:44:54 +00001778 const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey;
1779 if (!CIEStart)
Saleem Abdulrasool29199f52017-07-29 20:03:02 +00001780 CIEStart = &Emitter.EmitCIE(Frame);
Bill Wendlinge8fc92a2011-06-23 01:06:23 +00001781
Rafael Espindola97588e12015-11-06 13:14:59 +00001782 Emitter.EmitFDE(*CIEStart, Frame, I == E, *SectionStart);
Rafael Espindola32c74ea2010-12-17 00:28:02 +00001783 }
Rafael Espindola0a017a62010-12-10 07:39:47 +00001784}
Rafael Espindola736a35d2010-12-28 05:39:27 +00001785
Rafael Espindola4066e8d2014-05-12 14:28:48 +00001786void MCDwarfFrameEmitter::EmitAdvanceLoc(MCObjectStreamer &Streamer,
Rafael Espindola736a35d2010-12-28 05:39:27 +00001787 uint64_t AddrDelta) {
Ulrich Weigand32d725b2013-06-12 14:46:54 +00001788 MCContext &Context = Streamer.getContext();
Alp Tokere69170a2014-06-26 22:52:05 +00001789 SmallString<256> Tmp;
1790 raw_svector_ostream OS(Tmp);
Ulrich Weigand32d725b2013-06-12 14:46:54 +00001791 MCDwarfFrameEmitter::EncodeAdvanceLoc(Context, AddrDelta, OS);
Eric Christophere3ab3d02013-01-09 01:57:54 +00001792 Streamer.EmitBytes(OS.str());
Rafael Espindola736a35d2010-12-28 05:39:27 +00001793}
1794
Ulrich Weigand32d725b2013-06-12 14:46:54 +00001795void MCDwarfFrameEmitter::EncodeAdvanceLoc(MCContext &Context,
1796 uint64_t AddrDelta,
Rafael Espindolaab39c632011-05-08 14:35:21 +00001797 raw_ostream &OS) {
Ulrich Weigand32d725b2013-06-12 14:46:54 +00001798 // Scale the address delta by the minimum instruction length.
1799 AddrDelta = ScaleAddrDelta(Context, AddrDelta);
1800
Peter Collingbournee3f65292018-05-18 19:46:24 +00001801 support::endianness E =
1802 Context.getAsmInfo()->isLittleEndian() ? support::little : support::big;
Rafael Espindola6bbfb6c2010-12-28 23:38:03 +00001803 if (AddrDelta == 0) {
Rafael Espindolaab39c632011-05-08 14:35:21 +00001804 } else if (isUIntN(6, AddrDelta)) {
Rafael Espindola736a35d2010-12-28 05:39:27 +00001805 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
1806 OS << Opcode;
Rafael Espindolaab39c632011-05-08 14:35:21 +00001807 } else if (isUInt<8>(AddrDelta)) {
Rafael Espindola736a35d2010-12-28 05:39:27 +00001808 OS << uint8_t(dwarf::DW_CFA_advance_loc1);
1809 OS << uint8_t(AddrDelta);
Rafael Espindolaab39c632011-05-08 14:35:21 +00001810 } else if (isUInt<16>(AddrDelta)) {
Rafael Espindola736a35d2010-12-28 05:39:27 +00001811 OS << uint8_t(dwarf::DW_CFA_advance_loc2);
Peter Collingbournee3f65292018-05-18 19:46:24 +00001812 support::endian::write<uint16_t>(OS, AddrDelta, E);
Rafael Espindola736a35d2010-12-28 05:39:27 +00001813 } else {
1814 assert(isUInt<32>(AddrDelta));
1815 OS << uint8_t(dwarf::DW_CFA_advance_loc4);
Peter Collingbournee3f65292018-05-18 19:46:24 +00001816 support::endian::write<uint32_t>(OS, AddrDelta, E);
Rafael Espindola736a35d2010-12-28 05:39:27 +00001817 }
1818}