1//===- lib/MC/MCDwarf.cpp - MCDwarf implementation ------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/MC/MCDwarf.h"
10#include "llvm/ADT/ArrayRef.h"
11#include "llvm/ADT/STLExtras.h"
12#include "llvm/ADT/SmallString.h"
13#include "llvm/ADT/SmallVector.h"
14#include "llvm/ADT/StringRef.h"
15#include "llvm/ADT/Twine.h"
16#include "llvm/BinaryFormat/Dwarf.h"
17#include "llvm/Config/config.h"
18#include "llvm/MC/MCAsmInfo.h"
19#include "llvm/MC/MCContext.h"
20#include "llvm/MC/MCExpr.h"
21#include "llvm/MC/MCObjectFileInfo.h"
22#include "llvm/MC/MCObjectStreamer.h"
23#include "llvm/MC/MCRegisterInfo.h"
24#include "llvm/MC/MCSection.h"
25#include "llvm/MC/MCStreamer.h"
26#include "llvm/MC/MCSymbol.h"
27#include "llvm/Support/Casting.h"
28#include "llvm/Support/EndianStream.h"
29#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/LEB128.h"
31#include "llvm/Support/MathExtras.h"
32#include "llvm/Support/Path.h"
33#include "llvm/Support/SourceMgr.h"
34#include "llvm/Support/raw_ostream.h"
35#include <cassert>
36#include <cstdint>
37#include <optional>
38#include <string>
39#include <utility>
40#include <vector>
41
42using namespace llvm;
43
44MCSymbol *mcdwarf::emitListsTableHeaderStart(MCStreamer &S) {
45 MCSymbol *Start = S.getContext().createTempSymbol(Name: "debug_list_header_start");
46 MCSymbol *End = S.getContext().createTempSymbol(Name: "debug_list_header_end");
47 auto DwarfFormat = S.getContext().getDwarfFormat();
48 if (DwarfFormat == dwarf::DWARF64) {
49 S.AddComment(T: "DWARF64 mark");
50 S.emitInt32(Value: dwarf::DW_LENGTH_DWARF64);
51 }
52 S.AddComment(T: "Length");
53 S.emitAbsoluteSymbolDiff(Hi: End, Lo: Start,
54 Size: dwarf::getDwarfOffsetByteSize(Format: DwarfFormat));
55 S.emitLabel(Symbol: Start);
56 S.AddComment(T: "Version");
57 S.emitInt16(Value: S.getContext().getDwarfVersion());
58 S.AddComment(T: "Address size");
59 S.emitInt8(Value: S.getContext().getAsmInfo().getCodePointerSize());
60 S.AddComment(T: "Segment selector size");
61 S.emitInt8(Value: 0);
62 return End;
63}
64
65static inline uint64_t ScaleAddrDelta(MCContext &Context, uint64_t AddrDelta) {
66 unsigned MinInsnLength = Context.getAsmInfo().getMinInstAlignment();
67 if (MinInsnLength == 1)
68 return AddrDelta;
69 if (AddrDelta % MinInsnLength != 0) {
70 // TODO: report this error, but really only once.
71 ;
72 }
73 return AddrDelta / MinInsnLength;
74}
75
76MCDwarfLineStr::MCDwarfLineStr(MCContext &Ctx) {
77 UseRelocs = Ctx.getAsmInfo().doesDwarfUseRelocationsAcrossSections();
78 if (UseRelocs) {
79 MCSection *DwarfLineStrSection =
80 Ctx.getObjectFileInfo()->getDwarfLineStrSection();
81 assert(DwarfLineStrSection && "DwarfLineStrSection must not be NULL");
82 LineStrLabel = DwarfLineStrSection->getBeginSymbol();
83 }
84}
85
86//
87// This is called when an instruction is assembled into the specified section
88// and if there is information from the last .loc directive that has yet to have
89// a line entry made for it is made.
90//
91void MCDwarfLineEntry::make(MCStreamer *MCOS, MCSection *Section) {
92 if (!MCOS->getContext().getDwarfLocSeen())
93 return;
94
95 // Create a symbol at in the current section for use in the line entry.
96 MCSymbol *LineSym = MCOS->getContext().createTempSymbol();
97 // Set the value of the symbol to use for the MCDwarfLineEntry.
98 MCOS->emitLabel(Symbol: LineSym);
99
100 // Get the current .loc info saved in the context.
101 const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
102
103 // Create a (local) line entry with the symbol and the current .loc info.
104 MCDwarfLineEntry LineEntry(LineSym, DwarfLoc);
105
106 // clear DwarfLocSeen saying the current .loc info is now used.
107 MCOS->getContext().clearDwarfLocSeen();
108
109 // Add the line entry to this section's entries.
110 MCOS->getContext()
111 .getMCDwarfLineTable(CUID: MCOS->getContext().getDwarfCompileUnitID())
112 .getMCLineSections()
113 .addLineEntry(LineEntry, Sec: Section);
114}
115
116//
117// This helper routine returns an expression of End - Start - IntVal .
118//
119static inline const MCExpr *makeEndMinusStartExpr(MCContext &Ctx,
120 const MCSymbol &Start,
121 const MCSymbol &End,
122 int IntVal) {
123 const MCExpr *Res = MCSymbolRefExpr::create(Symbol: &End, Ctx);
124 const MCExpr *RHS = MCSymbolRefExpr::create(Symbol: &Start, Ctx);
125 const MCExpr *Res1 = MCBinaryExpr::create(Op: MCBinaryExpr::Sub, LHS: Res, RHS, Ctx);
126 const MCExpr *Res2 = MCConstantExpr::create(Value: IntVal, Ctx);
127 const MCExpr *Res3 = MCBinaryExpr::create(Op: MCBinaryExpr::Sub, LHS: Res1, RHS: Res2, Ctx);
128 return Res3;
129}
130
131//
132// This helper routine returns an expression of Start + IntVal .
133//
134static inline const MCExpr *
135makeStartPlusIntExpr(MCContext &Ctx, const MCSymbol &Start, int IntVal) {
136 const MCExpr *LHS = MCSymbolRefExpr::create(Symbol: &Start, Ctx);
137 const MCExpr *RHS = MCConstantExpr::create(Value: IntVal, Ctx);
138 const MCExpr *Res = MCBinaryExpr::create(Op: MCBinaryExpr::Add, LHS, RHS, Ctx);
139 return Res;
140}
141
142void MCLineSection::addEndEntry(MCSymbol *EndLabel) {
143 auto *Sec = &EndLabel->getSection();
144 // The line table may be empty, which we should skip adding an end entry.
145 // There are three cases:
146 // (1) MCAsmStreamer - emitDwarfLocDirective emits a location directive in
147 // place instead of adding a line entry.
148 // (2) MCObjectStreamer - if a function has incomplete debug info where
149 // instructions don't have DILocations, the line entries are missing.
150 // (3) It's also possible that there are no prior line entries if the section
151 // itself is empty before this end label.
152 auto I = MCLineDivisions.find(Key: Sec);
153 if (I == MCLineDivisions.end()) // If section not found, do nothing.
154 return;
155
156 auto &Entries = I->second;
157 // If no entries in this section's list, nothing to base the end entry on.
158 if (Entries.empty())
159 return;
160
161 // Create the end entry based on the last existing entry.
162 MCDwarfLineEntry EndEntry = Entries.back();
163
164 // An end entry is just for marking the end of a sequence of code locations.
165 // It should not carry forward a LineStreamLabel from a previous special entry
166 // if Entries.back() happened to be such an entry. So here we clear
167 // LineStreamLabel.
168 EndEntry.LineStreamLabel = nullptr;
169 EndEntry.setEndLabel(EndLabel);
170 Entries.push_back(x: EndEntry);
171}
172
173//
174// This emits the Dwarf line table for the specified section from the entries
175// in the LineSection.
176//
177void MCDwarfLineTable::emitOne(
178 MCStreamer *MCOS, MCSection *Section,
179 const MCLineSection::MCDwarfLineEntryCollection &LineEntries) {
180
181 unsigned FileNum, LastLine, Column, Flags, Isa, Discriminator;
182 bool IsAtStartSeq;
183 MCSymbol *PrevLabel;
184 auto init = [&]() {
185 FileNum = 1;
186 LastLine = 1;
187 Column = 0;
188 Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
189 Isa = 0;
190 Discriminator = 0;
191 PrevLabel = nullptr;
192 IsAtStartSeq = true;
193 };
194 init();
195
196 // Loop through each MCDwarfLineEntry and encode the dwarf line number table.
197 bool EndEntryEmitted = false;
198 for (auto It = LineEntries.begin(); It != LineEntries.end(); ++It) {
199 auto LineEntry = *It;
200 MCSymbol *CurrLabel = LineEntry.getLabel();
201 const MCAsmInfo &asmInfo = MCOS->getContext().getAsmInfo();
202
203 if (LineEntry.LineStreamLabel) {
204 if (!IsAtStartSeq) {
205 auto *Label = CurrLabel;
206 auto NextIt = It + 1;
207 // LineEntry with a null Label is probably a fake LineEntry we added
208 // when `-emit-func-debug-line-table-offsets` in order to terminate the
209 // sequence. Look for the next Label if possible, otherwise we will set
210 // the PC to the end of the section.
211 if (!Label && NextIt != LineEntries.end()) {
212 Label = NextIt->getLabel();
213 }
214 MCOS->emitDwarfLineEndEntry(Section, LastLabel: PrevLabel,
215 /*EndLabel =*/Label);
216 init();
217 }
218 MCOS->emitLabel(Symbol: LineEntry.LineStreamLabel, Loc: LineEntry.StreamLabelDefLoc);
219 continue;
220 }
221
222 if (LineEntry.IsEndEntry) {
223 MCOS->emitDwarfAdvanceLineAddr(INT64_MAX, LastLabel: PrevLabel, Label: CurrLabel,
224 PointerSize: asmInfo.getCodePointerSize());
225 init();
226 EndEntryEmitted = true;
227 continue;
228 }
229
230 int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
231
232 if (FileNum != LineEntry.getFileNum()) {
233 FileNum = LineEntry.getFileNum();
234 MCOS->emitInt8(Value: dwarf::DW_LNS_set_file);
235 MCOS->emitULEB128IntValue(Value: FileNum);
236 }
237 if (Column != LineEntry.getColumn()) {
238 Column = LineEntry.getColumn();
239 MCOS->emitInt8(Value: dwarf::DW_LNS_set_column);
240 MCOS->emitULEB128IntValue(Value: Column);
241 }
242 if (Discriminator != LineEntry.getDiscriminator() &&
243 MCOS->getContext().getDwarfVersion() >= 4) {
244 Discriminator = LineEntry.getDiscriminator();
245 unsigned Size = getULEB128Size(Value: Discriminator);
246 MCOS->emitInt8(Value: dwarf::DW_LNS_extended_op);
247 MCOS->emitULEB128IntValue(Value: Size + 1);
248 MCOS->emitInt8(Value: dwarf::DW_LNE_set_discriminator);
249 MCOS->emitULEB128IntValue(Value: Discriminator);
250 }
251 if (Isa != LineEntry.getIsa()) {
252 Isa = LineEntry.getIsa();
253 MCOS->emitInt8(Value: dwarf::DW_LNS_set_isa);
254 MCOS->emitULEB128IntValue(Value: Isa);
255 }
256 if ((LineEntry.getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
257 Flags = LineEntry.getFlags();
258 MCOS->emitInt8(Value: dwarf::DW_LNS_negate_stmt);
259 }
260 if (LineEntry.getFlags() & DWARF2_FLAG_BASIC_BLOCK)
261 MCOS->emitInt8(Value: dwarf::DW_LNS_set_basic_block);
262 if (LineEntry.getFlags() & DWARF2_FLAG_PROLOGUE_END)
263 MCOS->emitInt8(Value: dwarf::DW_LNS_set_prologue_end);
264 if (LineEntry.getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
265 MCOS->emitInt8(Value: dwarf::DW_LNS_set_epilogue_begin);
266
267 // At this point we want to emit/create the sequence to encode the delta in
268 // line numbers and the increment of the address from the previous Label
269 // and the current Label.
270 MCOS->emitDwarfAdvanceLineAddr(LineDelta, LastLabel: PrevLabel, Label: CurrLabel,
271 PointerSize: asmInfo.getCodePointerSize());
272
273 Discriminator = 0;
274 LastLine = LineEntry.getLine();
275 PrevLabel = CurrLabel;
276 IsAtStartSeq = false;
277 }
278
279 // Generate DWARF line end entry.
280 // We do not need this for DwarfDebug that explicitly terminates the line
281 // table using ranges whenever CU or section changes. However, the MC path
282 // does not track ranges nor terminate the line table. In that case,
283 // conservatively use the section end symbol to end the line table.
284 if (!EndEntryEmitted && !IsAtStartSeq)
285 MCOS->emitDwarfLineEndEntry(Section, LastLabel: PrevLabel);
286}
287
288void MCDwarfLineTable::endCurrentSeqAndEmitLineStreamLabel(MCStreamer *MCOS,
289 SMLoc DefLoc,
290 StringRef Name) {
291 auto &ctx = MCOS->getContext();
292 auto *LineStreamLabel = ctx.getOrCreateSymbol(Name);
293 auto *LineSym = ctx.createTempSymbol();
294 MCOS->emitLabel(Symbol: LineSym);
295 const MCDwarfLoc &DwarfLoc = ctx.getCurrentDwarfLoc();
296
297 // Create a 'fake' line entry by having LineStreamLabel be non-null. This
298 // won't actually emit any line information, it will reset the line table
299 // sequence and emit a label at the start of the new line table sequence.
300 MCDwarfLineEntry LineEntry(LineSym, DwarfLoc, LineStreamLabel, DefLoc);
301 getMCLineSections().addLineEntry(LineEntry, Sec: MCOS->getCurrentSectionOnly());
302}
303
304//
305// This emits the Dwarf file and the line tables.
306//
307void MCDwarfLineTable::emit(MCStreamer *MCOS, MCDwarfLineTableParams Params) {
308 MCContext &context = MCOS->getContext();
309
310 auto &LineTables = context.getMCDwarfLineTables();
311
312 // Bail out early so we don't switch to the debug_line section needlessly and
313 // in doing so create an unnecessary (if empty) section.
314 if (LineTables.empty())
315 return;
316
317 // In a v5 non-split line table, put the strings in a separate section.
318 std::optional<MCDwarfLineStr> LineStr;
319 if (context.getDwarfVersion() >= 5)
320 LineStr.emplace(args&: context);
321
322 // Switch to the section where the table will be emitted into.
323 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfLineSection());
324
325 // Handle the rest of the Compile Units.
326 for (const auto &CUIDTablePair : LineTables) {
327 CUIDTablePair.second.emitCU(MCOS, Params, LineStr);
328 }
329
330 if (LineStr)
331 LineStr->emitSection(MCOS);
332}
333
334void MCDwarfDwoLineTable::Emit(MCStreamer &MCOS, MCDwarfLineTableParams Params,
335 MCSection *Section) const {
336 if (!HasSplitLineTable)
337 return;
338 std::optional<MCDwarfLineStr> NoLineStr(std::nullopt);
339 MCOS.switchSection(Section);
340 MCOS.emitLabel(Symbol: Header.Emit(MCOS: &MCOS, Params, SpecialOpcodeLengths: {}, LineStr&: NoLineStr).second);
341}
342
343std::pair<MCSymbol *, MCSymbol *>
344MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
345 std::optional<MCDwarfLineStr> &LineStr) const {
346 static const char StandardOpcodeLengths[] = {
347 0, // length of DW_LNS_copy
348 1, // length of DW_LNS_advance_pc
349 1, // length of DW_LNS_advance_line
350 1, // length of DW_LNS_set_file
351 1, // length of DW_LNS_set_column
352 0, // length of DW_LNS_negate_stmt
353 0, // length of DW_LNS_set_basic_block
354 0, // length of DW_LNS_const_add_pc
355 1, // length of DW_LNS_fixed_advance_pc
356 0, // length of DW_LNS_set_prologue_end
357 0, // length of DW_LNS_set_epilogue_begin
358 1 // DW_LNS_set_isa
359 };
360 assert(std::size(StandardOpcodeLengths) >=
361 (Params.DWARF2LineOpcodeBase - 1U));
362 return Emit(MCOS, Params,
363 SpecialOpcodeLengths: ArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1),
364 LineStr);
365}
366
367static const MCExpr *forceExpAbs(MCStreamer &OS, const MCExpr* Expr) {
368 MCContext &Context = OS.getContext();
369 assert(!isa<MCSymbolRefExpr>(Expr));
370 if (!Context.getAsmInfo().doesSetDirectiveSuppressReloc())
371 return Expr;
372
373 // On Mach-O, try to avoid a relocation by using a set directive.
374 MCSymbol *ABS = Context.createTempSymbol();
375 OS.emitAssignment(Symbol: ABS, Value: Expr);
376 return MCSymbolRefExpr::create(Symbol: ABS, Ctx&: Context);
377}
378
379static void emitAbsValue(MCStreamer &OS, const MCExpr *Value, unsigned Size) {
380 const MCExpr *ABS = forceExpAbs(OS, Expr: Value);
381 OS.emitValue(Value: ABS, Size);
382}
383
384void MCDwarfLineStr::emitSection(MCStreamer *MCOS) {
385 // Switch to the .debug_line_str section.
386 MCOS->switchSection(
387 Section: MCOS->getContext().getObjectFileInfo()->getDwarfLineStrSection());
388 SmallString<0> Data = getFinalizedData();
389 MCOS->emitBinaryData(Data: Data.str());
390}
391
392SmallString<0> MCDwarfLineStr::getFinalizedData() {
393 // Emit the strings without perturbing the offsets we used.
394 if (!LineStrings.isFinalized())
395 LineStrings.finalizeInOrder();
396 SmallString<0> Data;
397 Data.resize(N: LineStrings.getSize());
398 LineStrings.write(Buf: (uint8_t *)Data.data());
399 return Data;
400}
401
402size_t MCDwarfLineStr::addString(StringRef Path) {
403 return LineStrings.add(S: Path);
404}
405
406void MCDwarfLineStr::emitRef(MCStreamer *MCOS, StringRef Path) {
407 int RefSize =
408 dwarf::getDwarfOffsetByteSize(Format: MCOS->getContext().getDwarfFormat());
409 size_t Offset = addString(Path);
410 if (UseRelocs) {
411 MCContext &Ctx = MCOS->getContext();
412 if (Ctx.getAsmInfo().needsDwarfSectionOffsetDirective()) {
413 MCOS->emitCOFFSecRel32(Symbol: LineStrLabel, Offset);
414 } else {
415 MCOS->emitValue(Value: makeStartPlusIntExpr(Ctx, Start: *LineStrLabel, IntVal: Offset),
416 Size: RefSize);
417 }
418 } else
419 MCOS->emitIntValue(Value: Offset, Size: RefSize);
420}
421
422void MCDwarfLineTableHeader::emitV2FileDirTables(MCStreamer *MCOS) const {
423 // First the directory table.
424 for (auto &Dir : MCDwarfDirs) {
425 MCOS->emitBytes(Data: Dir); // The DirectoryName, and...
426 MCOS->emitBytes(Data: StringRef("\0", 1)); // its null terminator.
427 }
428 MCOS->emitInt8(Value: 0); // Terminate the directory list.
429
430 // Second the file table.
431 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
432 assert(!MCDwarfFiles[i].Name.empty());
433 MCOS->emitBytes(Data: MCDwarfFiles[i].Name); // FileName and...
434 MCOS->emitBytes(Data: StringRef("\0", 1)); // its null terminator.
435 MCOS->emitULEB128IntValue(Value: MCDwarfFiles[i].DirIndex); // Directory number.
436 MCOS->emitInt8(Value: 0); // Last modification timestamp (always 0).
437 MCOS->emitInt8(Value: 0); // File size (always 0).
438 }
439 MCOS->emitInt8(Value: 0); // Terminate the file list.
440}
441
442static void emitOneV5FileEntry(MCStreamer *MCOS, const MCDwarfFile &DwarfFile,
443 bool EmitMD5, bool HasAnySource,
444 std::optional<MCDwarfLineStr> &LineStr) {
445 assert(!DwarfFile.Name.empty());
446 if (LineStr)
447 LineStr->emitRef(MCOS, Path: DwarfFile.Name);
448 else {
449 MCOS->emitBytes(Data: DwarfFile.Name); // FileName and...
450 MCOS->emitBytes(Data: StringRef("\0", 1)); // its null terminator.
451 }
452 MCOS->emitULEB128IntValue(Value: DwarfFile.DirIndex); // Directory number.
453 if (EmitMD5) {
454 const MD5::MD5Result &Cksum = *DwarfFile.Checksum;
455 MCOS->emitBinaryData(
456 Data: StringRef(reinterpret_cast<const char *>(Cksum.data()), Cksum.size()));
457 }
458 if (HasAnySource) {
459 // From https://dwarfstd.org/issues/180201.1.html
460 // * The value is an empty null-terminated string if no source is available
461 StringRef Source = DwarfFile.Source.value_or(u: StringRef());
462 // * If the source is available but is an empty file then the value is a
463 // null-terminated single "\n".
464 if (DwarfFile.Source && DwarfFile.Source->empty())
465 Source = "\n";
466 if (LineStr)
467 LineStr->emitRef(MCOS, Path: Source);
468 else {
469 MCOS->emitBytes(Data: Source); // Source and...
470 MCOS->emitBytes(Data: StringRef("\0", 1)); // its null terminator.
471 }
472 }
473}
474
475void MCDwarfLineTableHeader::emitV5FileDirTables(
476 MCStreamer *MCOS, std::optional<MCDwarfLineStr> &LineStr) const {
477 // The directory format, which is just a list of the directory paths. In a
478 // non-split object, these are references to .debug_line_str; in a split
479 // object, they are inline strings.
480 MCOS->emitInt8(Value: 1);
481 MCOS->emitULEB128IntValue(Value: dwarf::DW_LNCT_path);
482 MCOS->emitULEB128IntValue(Value: LineStr ? dwarf::DW_FORM_line_strp
483 : dwarf::DW_FORM_string);
484 MCOS->emitULEB128IntValue(Value: MCDwarfDirs.size() + 1);
485 // Try not to emit an empty compilation directory.
486 SmallString<256> Dir;
487 StringRef CompDir = MCOS->getContext().getCompilationDir();
488 if (!CompilationDir.empty()) {
489 Dir = CompilationDir;
490 MCOS->getContext().remapDebugPath(Path&: Dir);
491 CompDir = Dir.str();
492 if (LineStr)
493 CompDir = LineStr->getSaver().save(S: CompDir);
494 }
495 if (LineStr) {
496 // Record path strings, emit references here.
497 LineStr->emitRef(MCOS, Path: CompDir);
498 for (const auto &Dir : MCDwarfDirs)
499 LineStr->emitRef(MCOS, Path: Dir);
500 } else {
501 // The list of directory paths. Compilation directory comes first.
502 MCOS->emitBytes(Data: CompDir);
503 MCOS->emitBytes(Data: StringRef("\0", 1));
504 for (const auto &Dir : MCDwarfDirs) {
505 MCOS->emitBytes(Data: Dir); // The DirectoryName, and...
506 MCOS->emitBytes(Data: StringRef("\0", 1)); // its null terminator.
507 }
508 }
509
510 // The file format, which is the inline null-terminated filename and a
511 // directory index. We don't track file size/timestamp so don't emit them
512 // in the v5 table. Emit MD5 checksums and source if we have them.
513 uint64_t Entries = 2;
514 if (HasAllMD5)
515 Entries += 1;
516 if (HasAnySource)
517 Entries += 1;
518 MCOS->emitInt8(Value: Entries);
519 MCOS->emitULEB128IntValue(Value: dwarf::DW_LNCT_path);
520 MCOS->emitULEB128IntValue(Value: LineStr ? dwarf::DW_FORM_line_strp
521 : dwarf::DW_FORM_string);
522 MCOS->emitULEB128IntValue(Value: dwarf::DW_LNCT_directory_index);
523 MCOS->emitULEB128IntValue(Value: dwarf::DW_FORM_udata);
524 if (HasAllMD5) {
525 MCOS->emitULEB128IntValue(Value: dwarf::DW_LNCT_MD5);
526 MCOS->emitULEB128IntValue(Value: dwarf::DW_FORM_data16);
527 }
528 if (HasAnySource) {
529 MCOS->emitULEB128IntValue(Value: dwarf::DW_LNCT_LLVM_source);
530 MCOS->emitULEB128IntValue(Value: LineStr ? dwarf::DW_FORM_line_strp
531 : dwarf::DW_FORM_string);
532 }
533 // Then the counted list of files. The root file is file #0, then emit the
534 // files as provide by .file directives.
535 // MCDwarfFiles has an unused element [0] so use size() not size()+1.
536 // But sometimes MCDwarfFiles is empty, in which case we still emit one file.
537 MCOS->emitULEB128IntValue(Value: MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size());
538 // To accommodate assembler source written for DWARF v4 but trying to emit
539 // v5: If we didn't see a root file explicitly, replicate file #1.
540 assert((!RootFile.Name.empty() || MCDwarfFiles.size() >= 1) &&
541 "No root file and no .file directives");
542 emitOneV5FileEntry(MCOS, DwarfFile: RootFile.Name.empty() ? MCDwarfFiles[1] : RootFile,
543 EmitMD5: HasAllMD5, HasAnySource, LineStr);
544 for (unsigned i = 1; i < MCDwarfFiles.size(); ++i)
545 emitOneV5FileEntry(MCOS, DwarfFile: MCDwarfFiles[i], EmitMD5: HasAllMD5, HasAnySource, LineStr);
546}
547
548std::pair<MCSymbol *, MCSymbol *>
549MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
550 ArrayRef<char> StandardOpcodeLengths,
551 std::optional<MCDwarfLineStr> &LineStr) const {
552 MCContext &context = MCOS->getContext();
553
554 // Create a symbol at the beginning of the line table.
555 MCSymbol *LineStartSym = Label;
556 if (!LineStartSym)
557 LineStartSym = context.createTempSymbol();
558
559 // Set the value of the symbol, as we are at the start of the line table.
560 MCOS->emitDwarfLineStartLabel(StartSym: LineStartSym);
561
562 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(Format: context.getDwarfFormat());
563
564 MCSymbol *LineEndSym = MCOS->emitDwarfUnitLength(Prefix: "debug_line", Comment: "unit length");
565
566 // Next 2 bytes is the Version.
567 unsigned LineTableVersion = context.getDwarfVersion();
568 MCOS->emitInt16(Value: LineTableVersion);
569
570 // In v5, we get address info next.
571 if (LineTableVersion >= 5) {
572 MCOS->emitInt8(Value: context.getAsmInfo().getCodePointerSize());
573 MCOS->emitInt8(Value: 0); // Segment selector; same as EmitGenDwarfAranges.
574 }
575
576 // Create symbols for the start/end of the prologue.
577 MCSymbol *ProStartSym = context.createTempSymbol(Name: "prologue_start");
578 MCSymbol *ProEndSym = context.createTempSymbol(Name: "prologue_end");
579
580 // Length of the prologue, is the next 4 bytes (8 bytes for DWARF64). This is
581 // actually the length from after the length word, to the end of the prologue.
582 MCOS->emitAbsoluteSymbolDiff(Hi: ProEndSym, Lo: ProStartSym, Size: OffsetSize);
583
584 MCOS->emitLabel(Symbol: ProStartSym);
585
586 // Parameters of the state machine, are next.
587 MCOS->emitInt8(Value: context.getAsmInfo().getMinInstAlignment());
588 // maximum_operations_per_instruction
589 // For non-VLIW architectures this field is always 1.
590 // FIXME: VLIW architectures need to update this field accordingly.
591 if (LineTableVersion >= 4)
592 MCOS->emitInt8(Value: 1);
593 MCOS->emitInt8(DWARF2_LINE_DEFAULT_IS_STMT);
594 MCOS->emitInt8(Value: Params.DWARF2LineBase);
595 MCOS->emitInt8(Value: Params.DWARF2LineRange);
596 MCOS->emitInt8(Value: StandardOpcodeLengths.size() + 1);
597
598 // Standard opcode lengths
599 for (char Length : StandardOpcodeLengths)
600 MCOS->emitInt8(Value: Length);
601
602 // Put out the directory and file tables. The formats vary depending on
603 // the version.
604 if (LineTableVersion >= 5)
605 emitV5FileDirTables(MCOS, LineStr);
606 else
607 emitV2FileDirTables(MCOS);
608
609 // This is the end of the prologue, so set the value of the symbol at the
610 // end of the prologue (that was used in a previous expression).
611 MCOS->emitLabel(Symbol: ProEndSym);
612
613 return std::make_pair(x&: LineStartSym, y&: LineEndSym);
614}
615
616void MCDwarfLineTable::emitCU(MCStreamer *MCOS, MCDwarfLineTableParams Params,
617 std::optional<MCDwarfLineStr> &LineStr) const {
618 MCSymbol *LineEndSym = Header.Emit(MCOS, Params, LineStr).second;
619
620 // Put out the line tables.
621 for (const auto &LineSec : MCLineSections.getMCLineEntries())
622 emitOne(MCOS, Section: LineSec.first, LineEntries: LineSec.second);
623
624 // This is the end of the section, so set the value of the symbol at the end
625 // of this section (that was used in a previous expression).
626 MCOS->emitLabel(Symbol: LineEndSym);
627}
628
629Expected<unsigned>
630MCDwarfLineTable::tryGetFile(StringRef &Directory, StringRef &FileName,
631 std::optional<MD5::MD5Result> Checksum,
632 std::optional<StringRef> Source,
633 uint16_t DwarfVersion, unsigned FileNumber) {
634 return Header.tryGetFile(Directory, FileName, Checksum, Source, DwarfVersion,
635 FileNumber);
636}
637
638static bool isRootFile(const MCDwarfFile &RootFile, StringRef &Directory,
639 StringRef &FileName,
640 std::optional<MD5::MD5Result> Checksum) {
641 if (RootFile.Name.empty() || StringRef(RootFile.Name) != FileName)
642 return false;
643 return RootFile.Checksum == Checksum;
644}
645
646Expected<unsigned>
647MCDwarfLineTableHeader::tryGetFile(StringRef &Directory, StringRef &FileName,
648 std::optional<MD5::MD5Result> Checksum,
649 std::optional<StringRef> Source,
650 uint16_t DwarfVersion, unsigned FileNumber) {
651 if (Directory == CompilationDir)
652 Directory = "";
653 if (FileName.empty()) {
654 FileName = "<stdin>";
655 Directory = "";
656 }
657 assert(!FileName.empty());
658 // Keep track of whether any or all files have an MD5 checksum.
659 // If any files have embedded source, they all must.
660 if (MCDwarfFiles.empty()) {
661 trackMD5Usage(MD5Used: Checksum.has_value());
662 HasAnySource |= Source.has_value();
663 }
664 if (DwarfVersion >= 5 && isRootFile(RootFile, Directory, FileName, Checksum))
665 return 0;
666 if (FileNumber == 0) {
667 // File numbers start with 1 and/or after any file numbers
668 // allocated by inline-assembler .file directives.
669 FileNumber = MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size();
670 SmallString<256> Buffer;
671 auto IterBool = SourceIdMap.insert(
672 KV: std::make_pair(x: (Directory + Twine('\0') + FileName).toStringRef(Out&: Buffer),
673 y&: FileNumber));
674 if (!IterBool.second)
675 return IterBool.first->second;
676 }
677 // Make space for this FileNumber in the MCDwarfFiles vector if needed.
678 if (FileNumber >= MCDwarfFiles.size())
679 MCDwarfFiles.resize(N: FileNumber + 1);
680
681 // Get the new MCDwarfFile slot for this FileNumber.
682 MCDwarfFile &File = MCDwarfFiles[FileNumber];
683
684 // It is an error to see the same number more than once.
685 if (!File.Name.empty())
686 return make_error<StringError>(Args: "file number already allocated",
687 Args: inconvertibleErrorCode());
688
689 if (Directory.empty()) {
690 // Separate the directory part from the basename of the FileName.
691 StringRef tFileName = sys::path::filename(path: FileName);
692 if (!tFileName.empty()) {
693 Directory = sys::path::parent_path(path: FileName);
694 if (!Directory.empty())
695 FileName = tFileName;
696 }
697 }
698
699 // Find or make an entry in the MCDwarfDirs vector for this Directory.
700 // Capture directory name.
701 unsigned DirIndex;
702 if (Directory.empty()) {
703 // For FileNames with no directories a DirIndex of 0 is used.
704 DirIndex = 0;
705 } else {
706 DirIndex = llvm::find(Range&: MCDwarfDirs, Val: Directory) - MCDwarfDirs.begin();
707 if (DirIndex >= MCDwarfDirs.size())
708 MCDwarfDirs.push_back(Elt: std::string(Directory));
709 // The DirIndex is one based, as DirIndex of 0 is used for FileNames with
710 // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
711 // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames
712 // are stored at MCDwarfFiles[FileNumber].Name .
713 DirIndex++;
714 }
715
716 File.Name = std::string(FileName);
717 File.DirIndex = DirIndex;
718 File.Checksum = Checksum;
719 trackMD5Usage(MD5Used: Checksum.has_value());
720 File.Source = Source;
721 if (Source.has_value())
722 HasAnySource = true;
723
724 // return the allocated FileNumber.
725 return FileNumber;
726}
727
728/// Utility function to emit the encoding to a streamer.
729void MCDwarfLineAddr::Emit(MCStreamer *MCOS, MCDwarfLineTableParams Params,
730 int64_t LineDelta, uint64_t AddrDelta) {
731 MCContext &Context = MCOS->getContext();
732 SmallString<256> Tmp;
733 MCDwarfLineAddr::encode(Context, Params, LineDelta, AddrDelta, OS&: Tmp);
734 MCOS->emitBytes(Data: Tmp);
735}
736
737/// Given a special op, return the address skip amount (in units of
738/// DWARF2_LINE_MIN_INSN_LENGTH).
739static uint64_t SpecialAddr(MCDwarfLineTableParams Params, uint64_t op) {
740 return (op - Params.DWARF2LineOpcodeBase) / Params.DWARF2LineRange;
741}
742
743/// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
744void MCDwarfLineAddr::encode(MCContext &Context, MCDwarfLineTableParams Params,
745 int64_t LineDelta, uint64_t AddrDelta,
746 SmallVectorImpl<char> &Out) {
747 uint64_t Temp, Opcode;
748 bool NeedCopy = false;
749
750 // The maximum address skip amount that can be encoded with a special op.
751 uint64_t MaxSpecialAddrDelta = SpecialAddr(Params, op: 255);
752
753 // Scale the address delta by the minimum instruction length.
754 AddrDelta = ScaleAddrDelta(Context, AddrDelta);
755
756 // A LineDelta of INT64_MAX is a signal that this is actually a
757 // DW_LNE_end_sequence. We cannot use special opcodes here, since we want the
758 // end_sequence to emit the matrix entry.
759 if (LineDelta == INT64_MAX) {
760 if (AddrDelta == MaxSpecialAddrDelta)
761 Out.push_back(Elt: dwarf::DW_LNS_const_add_pc);
762 else if (AddrDelta) {
763 Out.push_back(Elt: dwarf::DW_LNS_advance_pc);
764 appendLEB128<LEB128Sign::Unsigned>(Buffer&: Out, Value: AddrDelta);
765 }
766 Out.push_back(Elt: dwarf::DW_LNS_extended_op);
767 Out.push_back(Elt: 1);
768 Out.push_back(Elt: dwarf::DW_LNE_end_sequence);
769 return;
770 }
771
772 // Bias the line delta by the base.
773 Temp = LineDelta - Params.DWARF2LineBase;
774
775 // If the line increment is out of range of a special opcode, we must encode
776 // it with DW_LNS_advance_line.
777 if (Temp >= Params.DWARF2LineRange ||
778 Temp + Params.DWARF2LineOpcodeBase > 255) {
779 Out.push_back(Elt: dwarf::DW_LNS_advance_line);
780 appendLEB128<LEB128Sign::Signed>(Buffer&: Out, Value: LineDelta);
781
782 LineDelta = 0;
783 Temp = 0 - Params.DWARF2LineBase;
784 NeedCopy = true;
785 }
786
787 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
788 if (LineDelta == 0 && AddrDelta == 0) {
789 Out.push_back(Elt: dwarf::DW_LNS_copy);
790 return;
791 }
792
793 // Bias the opcode by the special opcode base.
794 Temp += Params.DWARF2LineOpcodeBase;
795
796 // Avoid overflow when addr_delta is large.
797 if (AddrDelta < 256 + MaxSpecialAddrDelta) {
798 // Try using a special opcode.
799 Opcode = Temp + AddrDelta * Params.DWARF2LineRange;
800 if (Opcode <= 255) {
801 Out.push_back(Elt: Opcode);
802 return;
803 }
804
805 // Try using DW_LNS_const_add_pc followed by special op.
806 Opcode = Temp + (AddrDelta - MaxSpecialAddrDelta) * Params.DWARF2LineRange;
807 if (Opcode <= 255) {
808 Out.push_back(Elt: dwarf::DW_LNS_const_add_pc);
809 Out.push_back(Elt: Opcode);
810 return;
811 }
812 }
813
814 // Otherwise use DW_LNS_advance_pc.
815 Out.push_back(Elt: dwarf::DW_LNS_advance_pc);
816 appendLEB128<LEB128Sign::Unsigned>(Buffer&: Out, Value: AddrDelta);
817
818 if (NeedCopy)
819 Out.push_back(Elt: dwarf::DW_LNS_copy);
820 else {
821 assert(Temp <= 255 && "Buggy special opcode encoding.");
822 Out.push_back(Elt: Temp);
823 }
824}
825
826// Utility function to write a tuple for .debug_abbrev.
827static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) {
828 MCOS->emitULEB128IntValue(Value: Name);
829 MCOS->emitULEB128IntValue(Value: Form);
830}
831
832// When generating dwarf for assembly source files this emits
833// the data for .debug_abbrev section which contains three DIEs.
834static void EmitGenDwarfAbbrev(MCStreamer *MCOS) {
835 MCContext &context = MCOS->getContext();
836 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfAbbrevSection());
837
838 // DW_TAG_compile_unit DIE abbrev (1).
839 MCOS->emitULEB128IntValue(Value: 1);
840 MCOS->emitULEB128IntValue(Value: dwarf::DW_TAG_compile_unit);
841 MCOS->emitInt8(Value: dwarf::DW_CHILDREN_yes);
842 dwarf::Form SecOffsetForm =
843 context.getDwarfVersion() >= 4
844 ? dwarf::DW_FORM_sec_offset
845 : (context.getDwarfFormat() == dwarf::DWARF64 ? dwarf::DW_FORM_data8
846 : dwarf::DW_FORM_data4);
847 EmitAbbrev(MCOS, Name: dwarf::DW_AT_stmt_list, Form: SecOffsetForm);
848 if (context.getGenDwarfSectionSyms().size() > 1 &&
849 context.getDwarfVersion() >= 3) {
850 EmitAbbrev(MCOS, Name: dwarf::DW_AT_ranges, Form: SecOffsetForm);
851 } else {
852 EmitAbbrev(MCOS, Name: dwarf::DW_AT_low_pc, Form: dwarf::DW_FORM_addr);
853 EmitAbbrev(MCOS, Name: dwarf::DW_AT_high_pc, Form: dwarf::DW_FORM_addr);
854 }
855 EmitAbbrev(MCOS, Name: dwarf::DW_AT_name, Form: dwarf::DW_FORM_string);
856 if (!context.getCompilationDir().empty())
857 EmitAbbrev(MCOS, Name: dwarf::DW_AT_comp_dir, Form: dwarf::DW_FORM_string);
858 StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
859 if (!DwarfDebugFlags.empty())
860 EmitAbbrev(MCOS, Name: dwarf::DW_AT_APPLE_flags, Form: dwarf::DW_FORM_string);
861 EmitAbbrev(MCOS, Name: dwarf::DW_AT_producer, Form: dwarf::DW_FORM_string);
862
863 if (context.getDwarfVersion() >= 6)
864 EmitAbbrev(MCOS, Name: dwarf::DW_AT_language_name, Form: dwarf::DW_FORM_data2);
865 else
866 EmitAbbrev(MCOS, Name: dwarf::DW_AT_language, Form: dwarf::DW_FORM_data2);
867
868 EmitAbbrev(MCOS, Name: 0, Form: 0);
869
870 // DW_TAG_label DIE abbrev (2).
871 MCOS->emitULEB128IntValue(Value: 2);
872 MCOS->emitULEB128IntValue(Value: dwarf::DW_TAG_label);
873 MCOS->emitInt8(Value: dwarf::DW_CHILDREN_no);
874 EmitAbbrev(MCOS, Name: dwarf::DW_AT_name, Form: dwarf::DW_FORM_string);
875 EmitAbbrev(MCOS, Name: dwarf::DW_AT_decl_file, Form: dwarf::DW_FORM_data4);
876 EmitAbbrev(MCOS, Name: dwarf::DW_AT_decl_line, Form: dwarf::DW_FORM_data4);
877 EmitAbbrev(MCOS, Name: dwarf::DW_AT_low_pc, Form: dwarf::DW_FORM_addr);
878 EmitAbbrev(MCOS, Name: 0, Form: 0);
879
880 // Terminate the abbreviations for this compilation unit.
881 MCOS->emitInt8(Value: 0);
882}
883
884// When generating dwarf for assembly source files this emits the data for
885// .debug_aranges section. This section contains a header and a table of pairs
886// of PointerSize'ed values for the address and size of section(s) with line
887// table entries.
888static void EmitGenDwarfAranges(MCStreamer *MCOS,
889 const MCSymbol *InfoSectionSymbol) {
890 MCContext &context = MCOS->getContext();
891
892 auto &Sections = context.getGenDwarfSectionSyms();
893
894 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfARangesSection());
895
896 unsigned UnitLengthBytes =
897 dwarf::getUnitLengthFieldByteSize(Format: context.getDwarfFormat());
898 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(Format: context.getDwarfFormat());
899
900 // This will be the length of the .debug_aranges section, first account for
901 // the size of each item in the header (see below where we emit these items).
902 int Length = UnitLengthBytes + 2 + OffsetSize + 1 + 1;
903
904 // Figure the padding after the header before the table of address and size
905 // pairs who's values are PointerSize'ed.
906 const MCAsmInfo &asmInfo = context.getAsmInfo();
907 int AddrSize = asmInfo.getCodePointerSize();
908 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
909 if (Pad == 2 * AddrSize)
910 Pad = 0;
911 Length += Pad;
912
913 // Add the size of the pair of PointerSize'ed values for the address and size
914 // of each section we have in the table.
915 Length += 2 * AddrSize * Sections.size();
916 // And the pair of terminating zeros.
917 Length += 2 * AddrSize;
918
919 // Emit the header for this section.
920 if (context.getDwarfFormat() == dwarf::DWARF64)
921 // The DWARF64 mark.
922 MCOS->emitInt32(Value: dwarf::DW_LENGTH_DWARF64);
923 // The 4 (8 for DWARF64) byte length not including the length of the unit
924 // length field itself.
925 MCOS->emitIntValue(Value: Length - UnitLengthBytes, Size: OffsetSize);
926 // The 2 byte version, which is 2.
927 MCOS->emitInt16(Value: 2);
928 // The 4 (8 for DWARF64) byte offset to the compile unit in the .debug_info
929 // from the start of the .debug_info.
930 if (InfoSectionSymbol)
931 MCOS->emitSymbolValue(Sym: InfoSectionSymbol, Size: OffsetSize,
932 IsSectionRelative: asmInfo.needsDwarfSectionOffsetDirective());
933 else
934 MCOS->emitIntValue(Value: 0, Size: OffsetSize);
935 // The 1 byte size of an address.
936 MCOS->emitInt8(Value: AddrSize);
937 // The 1 byte size of a segment descriptor, we use a value of zero.
938 MCOS->emitInt8(Value: 0);
939 // Align the header with the padding if needed, before we put out the table.
940 for(int i = 0; i < Pad; i++)
941 MCOS->emitInt8(Value: 0);
942
943 // Now emit the table of pairs of PointerSize'ed values for the section
944 // addresses and sizes.
945 for (MCSection *Sec : Sections) {
946 const MCSymbol *StartSymbol = Sec->getBeginSymbol();
947 MCSymbol *EndSymbol = Sec->getEndSymbol(Ctx&: context);
948 assert(StartSymbol && "StartSymbol must not be NULL");
949 assert(EndSymbol && "EndSymbol must not be NULL");
950
951 const MCExpr *Addr = MCSymbolRefExpr::create(Symbol: StartSymbol, Ctx&: context);
952 const MCExpr *Size =
953 makeEndMinusStartExpr(Ctx&: context, Start: *StartSymbol, End: *EndSymbol, IntVal: 0);
954 MCOS->emitValue(Value: Addr, Size: AddrSize);
955 emitAbsValue(OS&: *MCOS, Value: Size, Size: AddrSize);
956 }
957
958 // And finally the pair of terminating zeros.
959 MCOS->emitIntValue(Value: 0, Size: AddrSize);
960 MCOS->emitIntValue(Value: 0, Size: AddrSize);
961}
962
963// When generating dwarf for assembly source files this emits the data for
964// .debug_info section which contains three parts. The header, the compile_unit
965// DIE and a list of label DIEs.
966static void EmitGenDwarfInfo(MCStreamer *MCOS,
967 const MCSymbol *AbbrevSectionSymbol,
968 const MCSymbol *LineSectionSymbol,
969 const MCSymbol *RangesSymbol) {
970 MCContext &context = MCOS->getContext();
971
972 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfInfoSection());
973
974 // Create a symbol at the start and end of this section used in here for the
975 // expression to calculate the length in the header.
976 MCSymbol *InfoStart = context.createTempSymbol();
977 MCOS->emitLabel(Symbol: InfoStart);
978 MCSymbol *InfoEnd = context.createTempSymbol();
979
980 // First part: the header.
981
982 unsigned UnitLengthBytes =
983 dwarf::getUnitLengthFieldByteSize(Format: context.getDwarfFormat());
984 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(Format: context.getDwarfFormat());
985
986 if (context.getDwarfFormat() == dwarf::DWARF64)
987 // Emit DWARF64 mark.
988 MCOS->emitInt32(Value: dwarf::DW_LENGTH_DWARF64);
989
990 // The 4 (8 for DWARF64) byte total length of the information for this
991 // compilation unit, not including the unit length field itself.
992 const MCExpr *Length =
993 makeEndMinusStartExpr(Ctx&: context, Start: *InfoStart, End: *InfoEnd, IntVal: UnitLengthBytes);
994 emitAbsValue(OS&: *MCOS, Value: Length, Size: OffsetSize);
995
996 // The 2 byte DWARF version.
997 MCOS->emitInt16(Value: context.getDwarfVersion());
998
999 // The DWARF v5 header has unit type, address size, abbrev offset.
1000 // Earlier versions have abbrev offset, address size.
1001 const MCAsmInfo &AsmInfo = context.getAsmInfo();
1002 int AddrSize = AsmInfo.getCodePointerSize();
1003 if (context.getDwarfVersion() >= 5) {
1004 MCOS->emitInt8(Value: dwarf::DW_UT_compile);
1005 MCOS->emitInt8(Value: AddrSize);
1006 }
1007 // The 4 (8 for DWARF64) byte offset to the debug abbrevs from the start of
1008 // the .debug_abbrev.
1009 if (AbbrevSectionSymbol)
1010 MCOS->emitSymbolValue(Sym: AbbrevSectionSymbol, Size: OffsetSize,
1011 IsSectionRelative: AsmInfo.needsDwarfSectionOffsetDirective());
1012 else
1013 // Since the abbrevs are at the start of the section, the offset is zero.
1014 MCOS->emitIntValue(Value: 0, Size: OffsetSize);
1015 if (context.getDwarfVersion() <= 4)
1016 MCOS->emitInt8(Value: AddrSize);
1017
1018 // Second part: the compile_unit DIE.
1019
1020 // The DW_TAG_compile_unit DIE abbrev (1).
1021 MCOS->emitULEB128IntValue(Value: 1);
1022
1023 // DW_AT_stmt_list, a 4 (8 for DWARF64) byte offset from the start of the
1024 // .debug_line section.
1025 if (LineSectionSymbol)
1026 MCOS->emitSymbolValue(Sym: LineSectionSymbol, Size: OffsetSize,
1027 IsSectionRelative: AsmInfo.needsDwarfSectionOffsetDirective());
1028 else
1029 // The line table is at the start of the section, so the offset is zero.
1030 MCOS->emitIntValue(Value: 0, Size: OffsetSize);
1031
1032 if (RangesSymbol) {
1033 // There are multiple sections containing code, so we must use
1034 // .debug_ranges/.debug_rnglists. AT_ranges, the 4/8 byte offset from the
1035 // start of the .debug_ranges/.debug_rnglists.
1036 MCOS->emitSymbolValue(Sym: RangesSymbol, Size: OffsetSize);
1037 } else {
1038 // If we only have one non-empty code section, we can use the simpler
1039 // AT_low_pc and AT_high_pc attributes.
1040
1041 // Find the first (and only) non-empty text section
1042 auto &Sections = context.getGenDwarfSectionSyms();
1043 const auto TextSection = Sections.begin();
1044 assert(TextSection != Sections.end() && "No text section found");
1045
1046 MCSymbol *StartSymbol = (*TextSection)->getBeginSymbol();
1047 MCSymbol *EndSymbol = (*TextSection)->getEndSymbol(Ctx&: context);
1048 assert(StartSymbol && "StartSymbol must not be NULL");
1049 assert(EndSymbol && "EndSymbol must not be NULL");
1050
1051 // AT_low_pc, the first address of the default .text section.
1052 const MCExpr *Start = MCSymbolRefExpr::create(Symbol: StartSymbol, Ctx&: context);
1053 MCOS->emitValue(Value: Start, Size: AddrSize);
1054
1055 // AT_high_pc, the last address of the default .text section.
1056 const MCExpr *End = MCSymbolRefExpr::create(Symbol: EndSymbol, Ctx&: context);
1057 MCOS->emitValue(Value: End, Size: AddrSize);
1058 }
1059
1060 // AT_name, the name of the source file. Reconstruct from the first directory
1061 // and file table entries.
1062 const SmallVectorImpl<std::string> &MCDwarfDirs = context.getMCDwarfDirs();
1063 if (MCDwarfDirs.size() > 0) {
1064 MCOS->emitBytes(Data: MCDwarfDirs[0]);
1065 MCOS->emitBytes(Data: sys::path::get_separator());
1066 }
1067 const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles = context.getMCDwarfFiles();
1068 // MCDwarfFiles might be empty if we have an empty source file.
1069 // If it's not empty, [0] is unused and [1] is the first actual file.
1070 assert(MCDwarfFiles.empty() || MCDwarfFiles.size() >= 2);
1071 const MCDwarfFile &RootFile =
1072 MCDwarfFiles.empty()
1073 ? context.getMCDwarfLineTable(/*CUID=*/0).getRootFile()
1074 : MCDwarfFiles[1];
1075 MCOS->emitBytes(Data: RootFile.Name);
1076 MCOS->emitInt8(Value: 0); // NULL byte to terminate the string.
1077
1078 // AT_comp_dir, the working directory the assembly was done in.
1079 if (!context.getCompilationDir().empty()) {
1080 MCOS->emitBytes(Data: context.getCompilationDir());
1081 MCOS->emitInt8(Value: 0); // NULL byte to terminate the string.
1082 }
1083
1084 // AT_APPLE_flags, the command line arguments of the assembler tool.
1085 StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
1086 if (!DwarfDebugFlags.empty()){
1087 MCOS->emitBytes(Data: DwarfDebugFlags);
1088 MCOS->emitInt8(Value: 0); // NULL byte to terminate the string.
1089 }
1090
1091 // AT_producer, the version of the assembler tool.
1092 StringRef DwarfDebugProducer = context.getDwarfDebugProducer();
1093 if (!DwarfDebugProducer.empty())
1094 MCOS->emitBytes(Data: DwarfDebugProducer);
1095 else
1096 MCOS->emitBytes(Data: StringRef("llvm-mc (based on LLVM " PACKAGE_VERSION ")"));
1097 MCOS->emitInt8(Value: 0); // NULL byte to terminate the string.
1098
1099 if (context.getDwarfVersion() >= 6) {
1100 // AT_language_name, a 4 byte value.
1101 MCOS->emitInt16(Value: dwarf::DW_LNAME_Assembly);
1102 } else {
1103 // AT_language, a 4 byte value. We use DW_LANG_Mips_Assembler as the dwarf2
1104 // draft has no standard code for assembler.
1105 // FIXME: dwarf4 has DW_LANG_Assembly which we could use instead.
1106 MCOS->emitInt16(Value: dwarf::DW_LANG_Mips_Assembler);
1107 }
1108
1109 // Third part: the list of label DIEs.
1110
1111 // Loop on saved info for dwarf labels and create the DIEs for them.
1112 const std::vector<MCGenDwarfLabelEntry> &Entries =
1113 MCOS->getContext().getMCGenDwarfLabelEntries();
1114 for (const auto &Entry : Entries) {
1115 // The DW_TAG_label DIE abbrev (2).
1116 MCOS->emitULEB128IntValue(Value: 2);
1117
1118 // AT_name, of the label without any leading underbar.
1119 MCOS->emitBytes(Data: Entry.getName());
1120 MCOS->emitInt8(Value: 0); // NULL byte to terminate the string.
1121
1122 // AT_decl_file, index into the file table.
1123 MCOS->emitInt32(Value: Entry.getFileNumber());
1124
1125 // AT_decl_line, source line number.
1126 MCOS->emitInt32(Value: Entry.getLineNumber());
1127
1128 // AT_low_pc, start address of the label.
1129 const auto *AT_low_pc = MCSymbolRefExpr::create(Symbol: Entry.getLabel(), Ctx&: context);
1130 MCOS->emitValue(Value: AT_low_pc, Size: AddrSize);
1131 }
1132
1133 // Add the NULL DIE terminating the Compile Unit DIE's.
1134 MCOS->emitInt8(Value: 0);
1135
1136 // Now set the value of the symbol at the end of the info section.
1137 MCOS->emitLabel(Symbol: InfoEnd);
1138}
1139
1140// When generating dwarf for assembly source files this emits the data for
1141// .debug_ranges section. We only emit one range list, which spans all of the
1142// executable sections of this file.
1143static MCSymbol *emitGenDwarfRanges(MCStreamer *MCOS) {
1144 MCContext &context = MCOS->getContext();
1145 auto &Sections = context.getGenDwarfSectionSyms();
1146
1147 const MCAsmInfo &AsmInfo = context.getAsmInfo();
1148 int AddrSize = AsmInfo.getCodePointerSize();
1149 MCSymbol *RangesSymbol;
1150
1151 if (MCOS->getContext().getDwarfVersion() >= 5) {
1152 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfRnglistsSection());
1153 MCSymbol *EndSymbol = mcdwarf::emitListsTableHeaderStart(S&: *MCOS);
1154 MCOS->AddComment(T: "Offset entry count");
1155 MCOS->emitInt32(Value: 0);
1156 RangesSymbol = context.createTempSymbol(Name: "debug_rnglist0_start");
1157 MCOS->emitLabel(Symbol: RangesSymbol);
1158 for (MCSection *Sec : Sections) {
1159 const MCSymbol *StartSymbol = Sec->getBeginSymbol();
1160 const MCSymbol *EndSymbol = Sec->getEndSymbol(Ctx&: context);
1161 const MCExpr *SectionStartAddr =
1162 MCSymbolRefExpr::create(Symbol: StartSymbol, Ctx&: context);
1163 const MCExpr *SectionSize =
1164 makeEndMinusStartExpr(Ctx&: context, Start: *StartSymbol, End: *EndSymbol, IntVal: 0);
1165 MCOS->emitInt8(Value: dwarf::DW_RLE_start_length);
1166 MCOS->emitValue(Value: SectionStartAddr, Size: AddrSize);
1167 MCOS->emitULEB128Value(Value: SectionSize);
1168 }
1169 MCOS->emitInt8(Value: dwarf::DW_RLE_end_of_list);
1170 MCOS->emitLabel(Symbol: EndSymbol);
1171 } else {
1172 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfRangesSection());
1173 RangesSymbol = context.createTempSymbol(Name: "debug_ranges_start");
1174 MCOS->emitLabel(Symbol: RangesSymbol);
1175 for (MCSection *Sec : Sections) {
1176 const MCSymbol *StartSymbol = Sec->getBeginSymbol();
1177 const MCSymbol *EndSymbol = Sec->getEndSymbol(Ctx&: context);
1178
1179 // Emit a base address selection entry for the section start.
1180 const MCExpr *SectionStartAddr =
1181 MCSymbolRefExpr::create(Symbol: StartSymbol, Ctx&: context);
1182 MCOS->emitFill(NumBytes: AddrSize, FillValue: 0xFF);
1183 MCOS->emitValue(Value: SectionStartAddr, Size: AddrSize);
1184
1185 // Emit a range list entry spanning this section.
1186 const MCExpr *SectionSize =
1187 makeEndMinusStartExpr(Ctx&: context, Start: *StartSymbol, End: *EndSymbol, IntVal: 0);
1188 MCOS->emitIntValue(Value: 0, Size: AddrSize);
1189 emitAbsValue(OS&: *MCOS, Value: SectionSize, Size: AddrSize);
1190 }
1191
1192 // Emit end of list entry
1193 MCOS->emitIntValue(Value: 0, Size: AddrSize);
1194 MCOS->emitIntValue(Value: 0, Size: AddrSize);
1195 }
1196
1197 return RangesSymbol;
1198}
1199
1200//
1201// When generating dwarf for assembly source files this emits the Dwarf
1202// sections.
1203//
1204void MCGenDwarfInfo::Emit(MCStreamer *MCOS) {
1205 MCContext &context = MCOS->getContext();
1206
1207 // Create the dwarf sections in this order (.debug_line already created).
1208 const MCAsmInfo &AsmInfo = context.getAsmInfo();
1209 bool CreateDwarfSectionSymbols =
1210 AsmInfo.doesDwarfUseRelocationsAcrossSections();
1211 MCSymbol *LineSectionSymbol = nullptr;
1212 if (CreateDwarfSectionSymbols)
1213 LineSectionSymbol = MCOS->getDwarfLineTableSymbol(CUID: 0);
1214 MCSymbol *AbbrevSectionSymbol = nullptr;
1215 MCSymbol *InfoSectionSymbol = nullptr;
1216 MCSymbol *RangesSymbol = nullptr;
1217
1218 // Create end symbols for each section, and remove empty sections
1219 MCOS->getContext().finalizeDwarfSections(MCOS&: *MCOS);
1220
1221 // If there are no sections to generate debug info for, we don't need
1222 // to do anything
1223 if (MCOS->getContext().getGenDwarfSectionSyms().empty())
1224 return;
1225
1226 // We only use the .debug_ranges section if we have multiple code sections,
1227 // and we are emitting a DWARF version which supports it.
1228 const bool UseRangesSection =
1229 MCOS->getContext().getGenDwarfSectionSyms().size() > 1 &&
1230 MCOS->getContext().getDwarfVersion() >= 3;
1231 CreateDwarfSectionSymbols |= UseRangesSection;
1232
1233 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfInfoSection());
1234 if (CreateDwarfSectionSymbols) {
1235 InfoSectionSymbol = context.createTempSymbol();
1236 MCOS->emitLabel(Symbol: InfoSectionSymbol);
1237 }
1238 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfAbbrevSection());
1239 if (CreateDwarfSectionSymbols) {
1240 AbbrevSectionSymbol = context.createTempSymbol();
1241 MCOS->emitLabel(Symbol: AbbrevSectionSymbol);
1242 }
1243
1244 MCOS->switchSection(Section: context.getObjectFileInfo()->getDwarfARangesSection());
1245
1246 // Output the data for .debug_aranges section.
1247 EmitGenDwarfAranges(MCOS, InfoSectionSymbol);
1248
1249 if (UseRangesSection) {
1250 RangesSymbol = emitGenDwarfRanges(MCOS);
1251 assert(RangesSymbol);
1252 }
1253
1254 // Output the data for .debug_abbrev section.
1255 EmitGenDwarfAbbrev(MCOS);
1256
1257 // Output the data for .debug_info section.
1258 EmitGenDwarfInfo(MCOS, AbbrevSectionSymbol, LineSectionSymbol, RangesSymbol);
1259}
1260
1261//
1262// When generating dwarf for assembly source files this is called when symbol
1263// for a label is created. If this symbol is not a temporary and is in the
1264// section that dwarf is being generated for, save the needed info to create
1265// a dwarf label.
1266//
1267void MCGenDwarfLabelEntry::Make(MCSymbol *Symbol, MCStreamer *MCOS,
1268 SourceMgr &SrcMgr, SMLoc &Loc) {
1269 // We won't create dwarf labels for temporary symbols.
1270 if (Symbol->isTemporary())
1271 return;
1272 MCContext &context = MCOS->getContext();
1273 // We won't create dwarf labels for symbols in sections that we are not
1274 // generating debug info for.
1275 if (!context.getGenDwarfSectionSyms().count(key: MCOS->getCurrentSectionOnly()))
1276 return;
1277
1278 // The dwarf label's name does not have the symbol name's leading
1279 // underbar if any.
1280 StringRef Name = Symbol->getName();
1281 if (Name.starts_with(Prefix: "_"))
1282 Name = Name.substr(Start: 1, N: Name.size()-1);
1283
1284 // Get the dwarf file number to be used for the dwarf label.
1285 unsigned FileNumber = context.getGenDwarfFileNumber();
1286
1287 // Finding the line number is the expensive part which is why we just don't
1288 // pass it in as for some symbols we won't create a dwarf label.
1289 unsigned CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
1290 unsigned LineNumber = SrcMgr.FindLineNumber(Loc, BufferID: CurBuffer);
1291
1292 // We create a temporary symbol for use for the AT_high_pc and AT_low_pc
1293 // values so that they don't have things like an ARM thumb bit from the
1294 // original symbol. So when used they won't get a low bit set after
1295 // relocation.
1296 MCSymbol *Label = context.createTempSymbol();
1297 MCOS->emitLabel(Symbol: Label);
1298
1299 // Create and entry for the info and add it to the other entries.
1300 MCOS->getContext().addMCGenDwarfLabelEntry(
1301 E: MCGenDwarfLabelEntry(Name, FileNumber, LineNumber, Label));
1302}
1303
1304void MCCFIInstruction::replaceRegister(unsigned FromReg, unsigned ToReg) {
1305 auto ReplaceReg = [=](unsigned &Reg) {
1306 if (Reg == FromReg)
1307 Reg = ToReg;
1308 };
1309 auto Visitor = makeVisitor(
1310 Callables: [=](CommonFields &F) {
1311 ReplaceReg(F.Register);
1312 ReplaceReg(F.Register2);
1313 },
1314 Callables: [](EscapeFields &) {}, Callables: [](LabelFields &) {},
1315 Callables: [=](RegisterPairFields &F) {
1316 ReplaceReg(F.Register);
1317 ReplaceReg(F.Reg1);
1318 ReplaceReg(F.Reg2);
1319 },
1320 Callables: [=](VectorRegistersFields &F) {
1321 ReplaceReg(F.Register);
1322 for (VectorRegisterWithLane &VRL : F.VectorRegisters)
1323 ReplaceReg(VRL.Register);
1324 },
1325 Callables: [=](VectorOffsetFields &F) {
1326 ReplaceReg(F.Register);
1327 ReplaceReg(F.MaskRegister);
1328 },
1329 Callables: [=](VectorRegisterMaskFields &F) {
1330 ReplaceReg(F.Register);
1331 ReplaceReg(F.SpillRegister);
1332 ReplaceReg(F.MaskRegister);
1333 });
1334 std::visit(visitor&: Visitor, variants&: ExtraFields);
1335}
1336
1337static int getDataAlignmentFactor(MCStreamer &streamer) {
1338 MCContext &context = streamer.getContext();
1339 const MCAsmInfo &asmInfo = context.getAsmInfo();
1340 int size = asmInfo.getCalleeSaveStackSlotSize();
1341 if (asmInfo.isStackGrowthDirectionUp())
1342 return size;
1343 else
1344 return -size;
1345}
1346
1347static unsigned getSizeForEncoding(MCStreamer &streamer,
1348 unsigned symbolEncoding) {
1349 MCContext &context = streamer.getContext();
1350 unsigned format = symbolEncoding & 0x0f;
1351 switch (format) {
1352 default: llvm_unreachable("Unknown Encoding");
1353 case dwarf::DW_EH_PE_absptr:
1354 case dwarf::DW_EH_PE_signed:
1355 return context.getAsmInfo().getCodePointerSize();
1356 case dwarf::DW_EH_PE_udata2:
1357 case dwarf::DW_EH_PE_sdata2:
1358 return 2;
1359 case dwarf::DW_EH_PE_udata4:
1360 case dwarf::DW_EH_PE_sdata4:
1361 return 4;
1362 case dwarf::DW_EH_PE_udata8:
1363 case dwarf::DW_EH_PE_sdata8:
1364 return 8;
1365 }
1366}
1367
1368static void emitFDESymbol(MCObjectStreamer &streamer, const MCSymbol &symbol,
1369 unsigned symbolEncoding, bool isEH) {
1370 MCContext &context = streamer.getContext();
1371 const MCAsmInfo &asmInfo = context.getAsmInfo();
1372 const MCExpr *v =
1373 asmInfo.getExprForFDESymbol(Sym: &symbol, Encoding: symbolEncoding, Streamer&: streamer);
1374 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
1375 if (asmInfo.doDwarfFDESymbolsUseAbsDiff() && isEH)
1376 emitAbsValue(OS&: streamer, Value: v, Size: size);
1377 else
1378 streamer.emitValue(Value: v, Size: size);
1379}
1380
1381static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
1382 unsigned symbolEncoding) {
1383 MCContext &context = streamer.getContext();
1384 const MCAsmInfo &asmInfo = context.getAsmInfo();
1385 const MCExpr *v =
1386 asmInfo.getExprForPersonalitySymbol(Sym: &symbol, Encoding: symbolEncoding, Streamer&: streamer);
1387 unsigned size = getSizeForEncoding(streamer, symbolEncoding);
1388 streamer.emitValue(Value: v, Size: size);
1389}
1390
1391namespace {
1392
1393class FrameEmitterImpl {
1394 int64_t CFAOffset = 0;
1395 int64_t InitialCFAOffset = 0;
1396 bool IsEH;
1397 MCObjectStreamer &Streamer;
1398
1399public:
1400 FrameEmitterImpl(bool IsEH, MCObjectStreamer &Streamer)
1401 : IsEH(IsEH), Streamer(Streamer) {}
1402
1403 /// Emit the unwind information in a compact way.
1404 void EmitCompactUnwind(const MCDwarfFrameInfo &frame);
1405
1406 const MCSymbol &EmitCIE(const MCDwarfFrameInfo &F);
1407 void EmitFDE(const MCSymbol &cieStart, const MCDwarfFrameInfo &frame,
1408 bool LastInSection, const MCSymbol &SectionStart);
1409 void emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
1410 MCSymbol *BaseLabel);
1411 void emitCFIInstruction(const MCCFIInstruction &Instr);
1412};
1413
1414} // end anonymous namespace
1415
1416static void emitEncodingByte(MCObjectStreamer &Streamer, unsigned Encoding) {
1417 Streamer.emitInt8(Value: Encoding);
1418}
1419
1420static void encodeDwarfRegisterLocation(int DwarfReg, raw_ostream &OS) {
1421 assert(DwarfReg >= 0);
1422 if (DwarfReg < 32) {
1423 OS << uint8_t(dwarf::DW_OP_reg0 + DwarfReg);
1424 } else {
1425 OS << uint8_t(dwarf::DW_OP_regx);
1426 encodeULEB128(Value: DwarfReg, OS);
1427 }
1428}
1429
1430void FrameEmitterImpl::emitCFIInstruction(const MCCFIInstruction &Instr) {
1431 int dataAlignmentFactor = getDataAlignmentFactor(streamer&: Streamer);
1432 auto *MRI = Streamer.getContext().getRegisterInfo();
1433
1434 switch (Instr.getOperation()) {
1435 case MCCFIInstruction::OpRegister: {
1436 unsigned Reg1 = Instr.getRegister();
1437 unsigned Reg2 = Instr.getRegister2();
1438 if (!IsEH) {
1439 Reg1 = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg1);
1440 Reg2 = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg2);
1441 }
1442 Streamer.emitInt8(Value: dwarf::DW_CFA_register);
1443 Streamer.emitULEB128IntValue(Value: Reg1);
1444 Streamer.emitULEB128IntValue(Value: Reg2);
1445 return;
1446 }
1447 case MCCFIInstruction::OpWindowSave:
1448 Streamer.emitInt8(Value: dwarf::DW_CFA_GNU_window_save);
1449 return;
1450
1451 case MCCFIInstruction::OpNegateRAState:
1452 Streamer.emitInt8(Value: dwarf::DW_CFA_AARCH64_negate_ra_state);
1453 return;
1454
1455 case MCCFIInstruction::OpNegateRAStateWithPC:
1456 Streamer.emitInt8(Value: dwarf::DW_CFA_AARCH64_negate_ra_state_with_pc);
1457 return;
1458
1459 case MCCFIInstruction::OpUndefined: {
1460 unsigned Reg = Instr.getRegister();
1461 Streamer.emitInt8(Value: dwarf::DW_CFA_undefined);
1462 Streamer.emitULEB128IntValue(Value: Reg);
1463 return;
1464 }
1465 case MCCFIInstruction::OpAdjustCfaOffset:
1466 case MCCFIInstruction::OpDefCfaOffset: {
1467 const bool IsRelative =
1468 Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset;
1469
1470 Streamer.emitInt8(Value: dwarf::DW_CFA_def_cfa_offset);
1471
1472 if (IsRelative)
1473 CFAOffset += Instr.getOffset();
1474 else
1475 CFAOffset = Instr.getOffset();
1476
1477 Streamer.emitULEB128IntValue(Value: CFAOffset);
1478
1479 return;
1480 }
1481 case MCCFIInstruction::OpDefCfa: {
1482 unsigned Reg = Instr.getRegister();
1483 if (!IsEH)
1484 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1485 Streamer.emitInt8(Value: dwarf::DW_CFA_def_cfa);
1486 Streamer.emitULEB128IntValue(Value: Reg);
1487 CFAOffset = Instr.getOffset();
1488 Streamer.emitULEB128IntValue(Value: CFAOffset);
1489
1490 return;
1491 }
1492 case MCCFIInstruction::OpDefCfaRegister: {
1493 unsigned Reg = Instr.getRegister();
1494 if (!IsEH)
1495 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1496 Streamer.emitInt8(Value: dwarf::DW_CFA_def_cfa_register);
1497 Streamer.emitULEB128IntValue(Value: Reg);
1498
1499 return;
1500 }
1501 // TODO: Implement `_sf` variants if/when they need to be emitted.
1502 case MCCFIInstruction::OpLLVMDefAspaceCfa: {
1503 unsigned Reg = Instr.getRegister();
1504 if (!IsEH)
1505 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1506 Streamer.emitIntValue(Value: dwarf::DW_CFA_LLVM_def_aspace_cfa, Size: 1);
1507 Streamer.emitULEB128IntValue(Value: Reg);
1508 CFAOffset = Instr.getOffset();
1509 Streamer.emitULEB128IntValue(Value: CFAOffset);
1510 Streamer.emitULEB128IntValue(Value: Instr.getAddressSpace());
1511
1512 return;
1513 }
1514 case MCCFIInstruction::OpOffset:
1515 case MCCFIInstruction::OpRelOffset: {
1516 const bool IsRelative =
1517 Instr.getOperation() == MCCFIInstruction::OpRelOffset;
1518
1519 unsigned Reg = Instr.getRegister();
1520 if (!IsEH)
1521 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1522
1523 int64_t Offset = Instr.getOffset();
1524 if (IsRelative)
1525 Offset -= CFAOffset;
1526 Offset = Offset / dataAlignmentFactor;
1527
1528 if (Offset < 0) {
1529 Streamer.emitInt8(Value: dwarf::DW_CFA_offset_extended_sf);
1530 Streamer.emitULEB128IntValue(Value: Reg);
1531 Streamer.emitSLEB128IntValue(Value: Offset);
1532 } else if (Reg < 64) {
1533 Streamer.emitInt8(Value: dwarf::DW_CFA_offset + Reg);
1534 Streamer.emitULEB128IntValue(Value: Offset);
1535 } else {
1536 Streamer.emitInt8(Value: dwarf::DW_CFA_offset_extended);
1537 Streamer.emitULEB128IntValue(Value: Reg);
1538 Streamer.emitULEB128IntValue(Value: Offset);
1539 }
1540 return;
1541 }
1542 case MCCFIInstruction::OpRememberState:
1543 Streamer.emitInt8(Value: dwarf::DW_CFA_remember_state);
1544 return;
1545 case MCCFIInstruction::OpRestoreState:
1546 Streamer.emitInt8(Value: dwarf::DW_CFA_restore_state);
1547 return;
1548 case MCCFIInstruction::OpSameValue: {
1549 unsigned Reg = Instr.getRegister();
1550 Streamer.emitInt8(Value: dwarf::DW_CFA_same_value);
1551 Streamer.emitULEB128IntValue(Value: Reg);
1552 return;
1553 }
1554 case MCCFIInstruction::OpRestore: {
1555 unsigned Reg = Instr.getRegister();
1556 if (!IsEH)
1557 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1558 if (Reg < 64) {
1559 Streamer.emitInt8(Value: dwarf::DW_CFA_restore | Reg);
1560 } else {
1561 Streamer.emitInt8(Value: dwarf::DW_CFA_restore_extended);
1562 Streamer.emitULEB128IntValue(Value: Reg);
1563 }
1564 return;
1565 }
1566 case MCCFIInstruction::OpGnuArgsSize:
1567 Streamer.emitInt8(Value: dwarf::DW_CFA_GNU_args_size);
1568 Streamer.emitULEB128IntValue(Value: Instr.getOffset());
1569 return;
1570
1571 case MCCFIInstruction::OpEscape:
1572 Streamer.emitBytes(Data: Instr.getValues());
1573 return;
1574
1575 case MCCFIInstruction::OpLabel:
1576 Streamer.emitLabel(Symbol: Instr.getCfiLabel(), Loc: Instr.getLoc());
1577 return;
1578 case MCCFIInstruction::OpValOffset: {
1579 unsigned Reg = Instr.getRegister();
1580 if (!IsEH)
1581 Reg = MRI->getDwarfRegNumFromDwarfEHRegNum(RegNum: Reg);
1582
1583 int Offset = Instr.getOffset();
1584 Offset = Offset / dataAlignmentFactor;
1585
1586 if (Offset < 0) {
1587 Streamer.emitInt8(Value: dwarf::DW_CFA_val_offset_sf);
1588 Streamer.emitULEB128IntValue(Value: Reg);
1589 Streamer.emitSLEB128IntValue(Value: Offset);
1590 } else {
1591 Streamer.emitInt8(Value: dwarf::DW_CFA_val_offset);
1592 Streamer.emitULEB128IntValue(Value: Reg);
1593 Streamer.emitULEB128IntValue(Value: Offset);
1594 }
1595 return;
1596 }
1597 case MCCFIInstruction::OpLLVMRegisterPair: {
1598 // CFI for a register spilled to a pair of SGPRs is implemented as an
1599 // expression(E) rule where E is a composite location description with
1600 // multiple parts each referencing SGPR register location storage with a bit
1601 // offset of 0. In other words we generate the following DWARF:
1602 //
1603 // DW_CFA_expression: <Reg>,
1604 // (DW_OP_regx <SGPRPair[0]>) (DW_OP_piece <Size>)
1605 // (DW_OP_regx <SGPRPair[1]>) (DW_OP_piece <Size>)
1606 //
1607 // The memory location description for the current CFA is pushed on the
1608 // stack before E is evaluated, but we choose not to drop it as it would
1609 // require a longer expression E and DWARF defines the result of the
1610 // evaulation to be the location description on the top of the stack (i.e.
1611 // the implictly pushed one is just ignored.)
1612
1613 const auto &Fields =
1614 Instr.getExtraFields<MCCFIInstruction::RegisterPairFields>();
1615
1616 SmallString<10> Block;
1617 raw_svector_ostream OSBlock(Block);
1618 encodeDwarfRegisterLocation(DwarfReg: Fields.Reg1, OS&: OSBlock);
1619 if (Fields.Reg1SizeInBits % 8 == 0) {
1620 OSBlock << uint8_t(dwarf::DW_OP_piece);
1621 encodeULEB128(Value: Fields.Reg1SizeInBits / 8, OS&: OSBlock);
1622 } else {
1623 OSBlock << uint8_t(dwarf::DW_OP_bit_piece);
1624 encodeULEB128(Value: Fields.Reg1SizeInBits, OS&: OSBlock);
1625 encodeULEB128(Value: 0, OS&: OSBlock);
1626 }
1627 encodeDwarfRegisterLocation(DwarfReg: Fields.Reg2, OS&: OSBlock);
1628 if (Fields.Reg2SizeInBits % 8 == 0) {
1629 OSBlock << uint8_t(dwarf::DW_OP_piece);
1630 encodeULEB128(Value: Fields.Reg2SizeInBits / 8, OS&: OSBlock);
1631 } else {
1632 OSBlock << uint8_t(dwarf::DW_OP_bit_piece);
1633 encodeULEB128(Value: Fields.Reg2SizeInBits, OS&: OSBlock);
1634 encodeULEB128(Value: 0, OS&: OSBlock);
1635 }
1636
1637 Streamer.emitInt8(Value: dwarf::DW_CFA_expression);
1638 Streamer.emitULEB128IntValue(Value: Fields.Register);
1639 Streamer.emitULEB128IntValue(Value: Block.size());
1640 Streamer.emitBinaryData(Data: StringRef(&Block[0], Block.size()));
1641 return;
1642 }
1643 case MCCFIInstruction::OpLLVMVectorRegisters: {
1644 // CFI for an SGPR spilled to a multiple lanes of VGPRs is implemented as an
1645 // expression(E) rule where E is a composite location description with
1646 // multiple parts each referencing VGPR register location storage with a bit
1647 // offset of the lane index multiplied by the size of a lane. In other words
1648 // we generate the following DWARF:
1649 //
1650 // DW_CFA_expression: <SGPR>,
1651 // (DW_OP_regx <VGPR[0]>) (DW_OP_bit_piece <Size>, <Lane[0]>*<Size>)
1652 // (DW_OP_regx <VGPR[1]>) (DW_OP_bit_piece <Size>, <Lane[1]>*<Size>)
1653 // ...
1654 // (DW_OP_regx <VGPR[N]>) (DW_OP_bit_piece <Size>, <Lane[N]>*<Size>)
1655 //
1656 // However if we're only using a single lane then we can emit a slightly
1657 // more optimal form:
1658 //
1659 // DW_CFA_expression: <SGPR>,
1660 // (DW_OP_regx <VGPR[0]>) (DW_OP_LLVM_offset_uconst <Lane[0]>*<Size>)
1661 //
1662 // The memory location description for the current CFA is pushed on the
1663 // stack before E is evaluated, but we choose not to drop it as it would
1664 // require a longer expression E and DWARF defines the result of the
1665 // evaulation to be the location description on the top of the stack (i.e.
1666 // the implictly pushed one is just ignored.)
1667
1668 const auto &Fields =
1669 Instr.getExtraFields<MCCFIInstruction::VectorRegistersFields>();
1670 auto &VRs = Fields.VectorRegisters;
1671
1672 SmallString<20> Block;
1673 raw_svector_ostream OSBlock(Block);
1674
1675 if (VRs.size() == 1 && VRs[0].SizeInBits % 8 == 0) {
1676 encodeDwarfRegisterLocation(DwarfReg: VRs[0].Register, OS&: OSBlock);
1677 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1678 << uint8_t(dwarf::DW_OP_LLVM_offset_uconst);
1679 encodeULEB128(Value: (VRs[0].SizeInBits / 8) * VRs[0].Lane, OS&: OSBlock);
1680 } else {
1681 for (const auto &VR : VRs) {
1682 // TODO: Detect when we can merge multiple adjacent pieces, or even
1683 // reduce this to a register location description (when all pieces are
1684 // adjacent).
1685 encodeDwarfRegisterLocation(DwarfReg: VR.Register, OS&: OSBlock);
1686 OSBlock << uint8_t(dwarf::DW_OP_bit_piece);
1687 encodeULEB128(Value: VR.SizeInBits, OS&: OSBlock);
1688 encodeULEB128(Value: VR.SizeInBits * VR.Lane, OS&: OSBlock);
1689 }
1690 }
1691
1692 Streamer.emitInt8(Value: dwarf::DW_CFA_expression);
1693 Streamer.emitULEB128IntValue(Value: Fields.Register);
1694 Streamer.emitULEB128IntValue(Value: Block.size());
1695 Streamer.emitBinaryData(Data: StringRef(&Block[0], Block.size()));
1696 return;
1697 }
1698 case MCCFIInstruction::OpLLVMVectorOffset: {
1699 // CFI for a vector register spilled to memory is implemented as an
1700 // expression(E) rule where E is a location description.
1701 //
1702 // DW_CFA_expression: <VGPR>,
1703 // (DW_OP_regx <VGPR>)
1704 // (DW_OP_swap)
1705 // (DW_OP_LLVM_offset_uconst <Offset>)
1706 // (DW_OP_LLVM_call_frame_entry_reg <Mask>)
1707 // (DW_OP_deref_size <MaskSize>)
1708 // (DW_OP_LLVM_select_bit_piece <VGPRSize> <MaskSize>)
1709
1710 const auto &Fields =
1711 Instr.getExtraFields<MCCFIInstruction::VectorOffsetFields>();
1712
1713 SmallString<20> Block;
1714 raw_svector_ostream OSBlock(Block);
1715 encodeDwarfRegisterLocation(DwarfReg: Fields.Register, OS&: OSBlock);
1716 OSBlock << uint8_t(dwarf::DW_OP_swap);
1717 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1718 << uint8_t(dwarf::DW_OP_LLVM_offset_uconst);
1719 encodeULEB128(Value: Fields.Offset, OS&: OSBlock);
1720 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1721 << uint8_t(dwarf::DW_OP_LLVM_call_frame_entry_reg);
1722 encodeULEB128(Value: Fields.MaskRegister, OS&: OSBlock);
1723 OSBlock << uint8_t(dwarf::DW_OP_deref_size);
1724 OSBlock << uint8_t(Fields.MaskRegisterSizeInBits / 8);
1725 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1726 << uint8_t(dwarf::DW_OP_LLVM_select_bit_piece);
1727 encodeULEB128(Value: Fields.RegisterSizeInBits, OS&: OSBlock);
1728 encodeULEB128(Value: Fields.MaskRegisterSizeInBits, OS&: OSBlock);
1729
1730 Streamer.emitInt8(Value: dwarf::DW_CFA_expression);
1731 Streamer.emitULEB128IntValue(Value: Fields.Register);
1732 Streamer.emitULEB128IntValue(Value: Block.size());
1733 Streamer.emitBinaryData(Data: StringRef(&Block[0], Block.size()));
1734 return;
1735 }
1736 case MCCFIInstruction::OpLLVMVectorRegisterMask: {
1737 // CFI for a VGPR/AGPR partially spilled to another VGPR/AGPR dependent on
1738 // an EXEC mask is implemented as an expression(E) rule where E is a
1739 // location description.
1740 //
1741 // DW_CFA_expression: <GPR>,
1742 // (DW_OP_regx <GPR>)
1743 // (DW_OP_regx <Spill GPR>)
1744 // (DW_OP_LLVM_call_frame_entry_reg <Mask>)
1745 // (DW_OP_deref_size <MaskSize>)
1746 // (DW_OP_LLVM_select_bit_piece <GPR lane size> <MaskSize>)
1747
1748 const auto Fields =
1749 Instr.getExtraFields<MCCFIInstruction::VectorRegisterMaskFields>();
1750
1751 SmallString<20> Block;
1752 raw_svector_ostream OSBlock(Block);
1753 encodeDwarfRegisterLocation(DwarfReg: Fields.Register, OS&: OSBlock);
1754 encodeDwarfRegisterLocation(DwarfReg: Fields.SpillRegister, OS&: OSBlock);
1755 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1756 << uint8_t(dwarf::DW_OP_LLVM_call_frame_entry_reg);
1757 encodeULEB128(Value: Fields.MaskRegister, OS&: OSBlock);
1758 OSBlock << uint8_t(dwarf::DW_OP_deref_size)
1759 << uint8_t(Fields.MaskRegisterSizeInBits / 8);
1760 OSBlock << uint8_t(dwarf::DW_OP_LLVM_user)
1761 << uint8_t(dwarf::DW_OP_LLVM_select_bit_piece);
1762 encodeULEB128(Value: Fields.SpillRegisterLaneSizeInBits, OS&: OSBlock);
1763 encodeULEB128(Value: Fields.MaskRegisterSizeInBits, OS&: OSBlock);
1764
1765 Streamer.emitInt8(Value: dwarf::DW_CFA_expression);
1766 Streamer.emitULEB128IntValue(Value: Fields.Register);
1767 Streamer.emitULEB128IntValue(Value: Block.size());
1768 Streamer.emitBinaryData(Data: StringRef(&Block[0], Block.size()));
1769 return;
1770 }
1771 }
1772
1773 llvm_unreachable("Unhandled case in switch");
1774}
1775
1776/// Emit frame instructions to describe the layout of the frame.
1777void FrameEmitterImpl::emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
1778 MCSymbol *BaseLabel) {
1779 for (const MCCFIInstruction &Instr : Instrs) {
1780 MCSymbol *Label = Instr.getLabel();
1781 // Throw out move if the label is invalid.
1782 if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
1783
1784 // Advance row if new location.
1785 if (BaseLabel && Label) {
1786 MCSymbol *ThisSym = Label;
1787 if (ThisSym != BaseLabel) {
1788 Streamer.emitDwarfAdvanceFrameAddr(LastLabel: BaseLabel, Label: ThisSym, Loc: Instr.getLoc());
1789 BaseLabel = ThisSym;
1790 }
1791 }
1792
1793 emitCFIInstruction(Instr);
1794 }
1795}
1796
1797/// Emit the unwind information in a compact way.
1798void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) {
1799 MCContext &Context = Streamer.getContext();
1800 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
1801
1802 // range-start range-length compact-unwind-enc personality-func lsda
1803 // _foo LfooEnd-_foo 0x00000023 0 0
1804 // _bar LbarEnd-_bar 0x00000025 __gxx_personality except_tab1
1805 //
1806 // .section __LD,__compact_unwind,regular,debug
1807 //
1808 // # compact unwind for _foo
1809 // .quad _foo
1810 // .set L1,LfooEnd-_foo
1811 // .long L1
1812 // .long 0x01010001
1813 // .quad 0
1814 // .quad 0
1815 //
1816 // # compact unwind for _bar
1817 // .quad _bar
1818 // .set L2,LbarEnd-_bar
1819 // .long L2
1820 // .long 0x01020011
1821 // .quad __gxx_personality
1822 // .quad except_tab1
1823
1824 uint32_t Encoding = Frame.CompactUnwindEncoding;
1825 if (!Encoding) return;
1826 bool DwarfEHFrameOnly = (Encoding == MOFI->getCompactUnwindDwarfEHFrameOnly());
1827
1828 // The encoding needs to know we have an LSDA.
1829 if (!DwarfEHFrameOnly && Frame.Lsda)
1830 Encoding |= 0x40000000;
1831
1832 // Range Start
1833 unsigned FDEEncoding = MOFI->getFDEEncoding();
1834 unsigned Size = getSizeForEncoding(streamer&: Streamer, symbolEncoding: FDEEncoding);
1835 Streamer.emitSymbolValue(Sym: Frame.Begin, Size);
1836
1837 // Range Length
1838 const MCExpr *Range =
1839 makeEndMinusStartExpr(Ctx&: Context, Start: *Frame.Begin, End: *Frame.End, IntVal: 0);
1840 emitAbsValue(OS&: Streamer, Value: Range, Size: 4);
1841
1842 // Compact Encoding
1843 Size = getSizeForEncoding(streamer&: Streamer, symbolEncoding: dwarf::DW_EH_PE_udata4);
1844 Streamer.emitIntValue(Value: Encoding, Size);
1845
1846 // Personality Function
1847 Size = getSizeForEncoding(streamer&: Streamer, symbolEncoding: dwarf::DW_EH_PE_absptr);
1848 if (!DwarfEHFrameOnly && Frame.Personality)
1849 Streamer.emitSymbolValue(Sym: Frame.Personality, Size);
1850 else
1851 Streamer.emitIntValue(Value: 0, Size); // No personality fn
1852
1853 // LSDA
1854 Size = getSizeForEncoding(streamer&: Streamer, symbolEncoding: Frame.LsdaEncoding);
1855 if (!DwarfEHFrameOnly && Frame.Lsda)
1856 Streamer.emitSymbolValue(Sym: Frame.Lsda, Size);
1857 else
1858 Streamer.emitIntValue(Value: 0, Size); // No LSDA
1859}
1860
1861static unsigned getCIEVersion(bool IsEH, unsigned DwarfVersion) {
1862 if (IsEH)
1863 return 1;
1864 switch (DwarfVersion) {
1865 case 2:
1866 return 1;
1867 case 3:
1868 return 3;
1869 case 4:
1870 case 5:
1871 return 4;
1872 }
1873 llvm_unreachable("Unknown version");
1874}
1875
1876const MCSymbol &FrameEmitterImpl::EmitCIE(const MCDwarfFrameInfo &Frame) {
1877 MCContext &context = Streamer.getContext();
1878 const MCRegisterInfo *MRI = context.getRegisterInfo();
1879 const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
1880
1881 MCSymbol *sectionStart = context.createTempSymbol();
1882 Streamer.emitLabel(Symbol: sectionStart);
1883
1884 MCSymbol *sectionEnd = context.createTempSymbol();
1885
1886 dwarf::DwarfFormat Format = IsEH ? dwarf::DWARF32 : context.getDwarfFormat();
1887 unsigned UnitLengthBytes = dwarf::getUnitLengthFieldByteSize(Format);
1888 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(Format);
1889 bool IsDwarf64 = Format == dwarf::DWARF64;
1890
1891 if (IsDwarf64)
1892 // DWARF64 mark
1893 Streamer.emitInt32(Value: dwarf::DW_LENGTH_DWARF64);
1894
1895 // Length
1896 const MCExpr *Length = makeEndMinusStartExpr(Ctx&: context, Start: *sectionStart,
1897 End: *sectionEnd, IntVal: UnitLengthBytes);
1898 emitAbsValue(OS&: Streamer, Value: Length, Size: OffsetSize);
1899
1900 // CIE ID
1901 uint64_t CIE_ID =
1902 IsEH ? 0 : (IsDwarf64 ? dwarf::DW64_CIE_ID : dwarf::DW_CIE_ID);
1903 Streamer.emitIntValue(Value: CIE_ID, Size: OffsetSize);
1904
1905 // Version
1906 uint8_t CIEVersion = getCIEVersion(IsEH, DwarfVersion: context.getDwarfVersion());
1907 Streamer.emitInt8(Value: CIEVersion);
1908
1909 if (IsEH) {
1910 SmallString<8> Augmentation;
1911 Augmentation += "z";
1912 if (Frame.Personality)
1913 Augmentation += "P";
1914 if (Frame.Lsda)
1915 Augmentation += "L";
1916 Augmentation += "R";
1917 if (Frame.IsSignalFrame)
1918 Augmentation += "S";
1919 if (Frame.IsBKeyFrame)
1920 Augmentation += "B";
1921 if (Frame.IsMTETaggedFrame)
1922 Augmentation += "G";
1923 Streamer.emitBytes(Data: Augmentation);
1924 }
1925 Streamer.emitInt8(Value: 0);
1926
1927 if (CIEVersion >= 4) {
1928 // Address Size
1929 Streamer.emitInt8(Value: context.getAsmInfo().getCodePointerSize());
1930
1931 // Segment Descriptor Size
1932 Streamer.emitInt8(Value: 0);
1933 }
1934
1935 // Code Alignment Factor
1936 Streamer.emitULEB128IntValue(Value: context.getAsmInfo().getMinInstAlignment());
1937
1938 // Data Alignment Factor
1939 Streamer.emitSLEB128IntValue(Value: getDataAlignmentFactor(streamer&: Streamer));
1940
1941 // Return Address Register
1942 unsigned RAReg = Frame.RAReg;
1943 if (RAReg == static_cast<unsigned>(INT_MAX))
1944 RAReg = MRI->getDwarfRegNum(Reg: MRI->getRARegister(), isEH: IsEH);
1945
1946 if (CIEVersion == 1) {
1947 assert(RAReg <= 255 &&
1948 "DWARF 2 encodes return_address_register in one byte");
1949 Streamer.emitInt8(Value: RAReg);
1950 } else {
1951 Streamer.emitULEB128IntValue(Value: RAReg);
1952 }
1953
1954 // Augmentation Data Length (optional)
1955 unsigned augmentationLength = 0;
1956 if (IsEH) {
1957 if (Frame.Personality) {
1958 // Personality Encoding
1959 augmentationLength += 1;
1960 // Personality
1961 augmentationLength +=
1962 getSizeForEncoding(streamer&: Streamer, symbolEncoding: Frame.PersonalityEncoding);
1963 }
1964 if (Frame.Lsda)
1965 augmentationLength += 1;
1966 // Encoding of the FDE pointers
1967 augmentationLength += 1;
1968
1969 Streamer.emitULEB128IntValue(Value: augmentationLength);
1970
1971 // Augmentation Data (optional)
1972 if (Frame.Personality) {
1973 // Personality Encoding
1974 emitEncodingByte(Streamer, Encoding: Frame.PersonalityEncoding);
1975 // Personality
1976 EmitPersonality(streamer&: Streamer, symbol: *Frame.Personality, symbolEncoding: Frame.PersonalityEncoding);
1977 }
1978
1979 if (Frame.Lsda)
1980 emitEncodingByte(Streamer, Encoding: Frame.LsdaEncoding);
1981
1982 // Encoding of the FDE pointers
1983 emitEncodingByte(Streamer, Encoding: MOFI->getFDEEncoding());
1984 }
1985
1986 // Initial Instructions
1987
1988 const MCAsmInfo &MAI = context.getAsmInfo();
1989 if (!Frame.IsSimple) {
1990 const std::vector<MCCFIInstruction> &Instructions =
1991 MAI.getInitialFrameState();
1992 emitCFIInstructions(Instrs: Instructions, BaseLabel: nullptr);
1993 }
1994
1995 InitialCFAOffset = CFAOffset;
1996
1997 // Padding
1998 Streamer.emitValueToAlignment(Alignment: Align(IsEH ? 4 : MAI.getCodePointerSize()));
1999
2000 Streamer.emitLabel(Symbol: sectionEnd);
2001 return *sectionStart;
2002}
2003
2004void FrameEmitterImpl::EmitFDE(const MCSymbol &cieStart,
2005 const MCDwarfFrameInfo &frame,
2006 bool LastInSection,
2007 const MCSymbol &SectionStart) {
2008 MCContext &context = Streamer.getContext();
2009 MCSymbol *fdeStart = context.createTempSymbol();
2010 MCSymbol *fdeEnd = context.createTempSymbol();
2011 const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
2012
2013 CFAOffset = InitialCFAOffset;
2014
2015 dwarf::DwarfFormat Format = IsEH ? dwarf::DWARF32 : context.getDwarfFormat();
2016 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(Format);
2017
2018 if (Format == dwarf::DWARF64)
2019 // DWARF64 mark
2020 Streamer.emitInt32(Value: dwarf::DW_LENGTH_DWARF64);
2021
2022 // Length
2023 const MCExpr *Length = makeEndMinusStartExpr(Ctx&: context, Start: *fdeStart, End: *fdeEnd, IntVal: 0);
2024 emitAbsValue(OS&: Streamer, Value: Length, Size: OffsetSize);
2025
2026 Streamer.emitLabel(Symbol: fdeStart);
2027
2028 // CIE Pointer
2029 const MCAsmInfo &asmInfo = context.getAsmInfo();
2030 if (IsEH) {
2031 const MCExpr *offset =
2032 makeEndMinusStartExpr(Ctx&: context, Start: cieStart, End: *fdeStart, IntVal: 0);
2033 emitAbsValue(OS&: Streamer, Value: offset, Size: OffsetSize);
2034 } else if (!asmInfo.doesDwarfUseRelocationsAcrossSections()) {
2035 const MCExpr *offset =
2036 makeEndMinusStartExpr(Ctx&: context, Start: SectionStart, End: cieStart, IntVal: 0);
2037 emitAbsValue(OS&: Streamer, Value: offset, Size: OffsetSize);
2038 } else {
2039 Streamer.emitSymbolValue(Sym: &cieStart, Size: OffsetSize,
2040 IsSectionRelative: asmInfo.needsDwarfSectionOffsetDirective());
2041 }
2042
2043 // PC Begin
2044 unsigned PCEncoding =
2045 IsEH ? MOFI->getFDEEncoding() : (unsigned)dwarf::DW_EH_PE_absptr;
2046 unsigned PCSize = getSizeForEncoding(streamer&: Streamer, symbolEncoding: PCEncoding);
2047 emitFDESymbol(streamer&: Streamer, symbol: *frame.Begin, symbolEncoding: PCEncoding, isEH: IsEH);
2048
2049 // PC Range
2050 const MCExpr *Range =
2051 makeEndMinusStartExpr(Ctx&: context, Start: *frame.Begin, End: *frame.End, IntVal: 0);
2052 emitAbsValue(OS&: Streamer, Value: Range, Size: PCSize);
2053
2054 if (IsEH) {
2055 // Augmentation Data Length
2056 unsigned augmentationLength = 0;
2057
2058 if (frame.Lsda)
2059 augmentationLength += getSizeForEncoding(streamer&: Streamer, symbolEncoding: frame.LsdaEncoding);
2060
2061 Streamer.emitULEB128IntValue(Value: augmentationLength);
2062
2063 // Augmentation Data
2064 if (frame.Lsda)
2065 emitFDESymbol(streamer&: Streamer, symbol: *frame.Lsda, symbolEncoding: frame.LsdaEncoding, isEH: true);
2066 }
2067
2068 // Call Frame Instructions
2069 emitCFIInstructions(Instrs: frame.Instructions, BaseLabel: frame.Begin);
2070
2071 // Padding
2072 // The size of a .eh_frame section has to be a multiple of the alignment
2073 // since a null CIE is interpreted as the end. Old systems overaligned
2074 // .eh_frame, so we do too and account for it in the last FDE.
2075 unsigned Alignment = LastInSection ? asmInfo.getCodePointerSize() : PCSize;
2076 Streamer.emitValueToAlignment(Alignment: Align(Alignment));
2077
2078 Streamer.emitLabel(Symbol: fdeEnd);
2079}
2080
2081namespace {
2082
2083struct CIEKey {
2084 CIEKey() = default;
2085
2086 explicit CIEKey(const MCDwarfFrameInfo &Frame, bool IsEH)
2087 : Personality(Frame.Personality),
2088 PersonalityEncoding(Frame.PersonalityEncoding),
2089 LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame),
2090 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg),
2091 IsBKeyFrame(Frame.IsBKeyFrame),
2092 IsMTETaggedFrame(Frame.IsMTETaggedFrame), IsEH(IsEH) {}
2093
2094 StringRef PersonalityName() const {
2095 if (!Personality)
2096 return StringRef();
2097 return Personality->getName();
2098 }
2099
2100 bool operator<(const CIEKey &Other) const {
2101 assert(IsEH == Other.IsEH);
2102 if (!IsEH)
2103 return std::make_tuple(args: RAReg, args: IsSimple) <
2104 std::make_tuple(args: Other.RAReg, args: Other.IsSimple);
2105
2106 return std::make_tuple(args: PersonalityName(), args: PersonalityEncoding, args: LsdaEncoding,
2107 args: IsSignalFrame, args: IsSimple, args: RAReg, args: IsBKeyFrame,
2108 args: IsMTETaggedFrame) <
2109 std::make_tuple(args: Other.PersonalityName(), args: Other.PersonalityEncoding,
2110 args: Other.LsdaEncoding, args: Other.IsSignalFrame,
2111 args: Other.IsSimple, args: Other.RAReg, args: Other.IsBKeyFrame,
2112 args: Other.IsMTETaggedFrame);
2113 }
2114
2115 bool operator==(const CIEKey &Other) const {
2116 assert(IsEH == Other.IsEH);
2117 if (!IsEH)
2118 return RAReg == Other.RAReg && IsSimple == Other.IsSimple;
2119
2120 return Personality == Other.Personality &&
2121 PersonalityEncoding == Other.PersonalityEncoding &&
2122 LsdaEncoding == Other.LsdaEncoding &&
2123 IsSignalFrame == Other.IsSignalFrame && IsSimple == Other.IsSimple &&
2124 RAReg == Other.RAReg && IsBKeyFrame == Other.IsBKeyFrame &&
2125 IsMTETaggedFrame == Other.IsMTETaggedFrame;
2126 }
2127 bool operator!=(const CIEKey &Other) const { return !(*this == Other); }
2128
2129 const MCSymbol *Personality = nullptr;
2130 unsigned PersonalityEncoding = 0;
2131 unsigned LsdaEncoding = -1;
2132 bool IsSignalFrame = false;
2133 bool IsSimple = false;
2134 unsigned RAReg = UINT_MAX;
2135 bool IsBKeyFrame = false;
2136 bool IsMTETaggedFrame = false;
2137 bool IsEH = false;
2138};
2139
2140} // end anonymous namespace
2141
2142void MCDwarfFrameEmitter::emit(MCObjectStreamer &Streamer, bool IsEH) {
2143 MCContext &Context = Streamer.getContext();
2144 const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
2145 const MCAsmInfo &AsmInfo = Context.getAsmInfo();
2146 FrameEmitterImpl Emitter(IsEH, Streamer);
2147 ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getDwarfFrameInfos();
2148
2149 // Emit the compact unwind info if available.
2150 bool NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame();
2151 if (IsEH && MOFI->getCompactUnwindSection()) {
2152 Streamer.generateCompactUnwindEncodings();
2153 bool SectionEmitted = false;
2154 for (const MCDwarfFrameInfo &Frame : FrameArray) {
2155 if (Frame.CompactUnwindEncoding == 0) continue;
2156 if (!SectionEmitted) {
2157 Streamer.switchSection(Section: MOFI->getCompactUnwindSection());
2158 Streamer.emitValueToAlignment(Alignment: Align(AsmInfo.getCodePointerSize()));
2159 SectionEmitted = true;
2160 }
2161 NeedsEHFrameSection |=
2162 Frame.CompactUnwindEncoding ==
2163 MOFI->getCompactUnwindDwarfEHFrameOnly();
2164 Emitter.EmitCompactUnwind(Frame);
2165 }
2166 }
2167
2168 // Compact unwind information can be emitted in the eh_frame section or the
2169 // debug_frame section. Skip emitting FDEs and CIEs when the compact unwind
2170 // doesn't need an eh_frame section and the emission location is the eh_frame
2171 // section.
2172 if (!NeedsEHFrameSection && IsEH) return;
2173
2174 MCSection &Section =
2175 IsEH ? *const_cast<MCObjectFileInfo *>(MOFI)->getEHFrameSection()
2176 : *MOFI->getDwarfFrameSection();
2177
2178 Streamer.switchSection(Section: &Section);
2179 MCSymbol *SectionStart = Context.createTempSymbol();
2180 Streamer.emitLabel(Symbol: SectionStart);
2181
2182 bool CanOmitDwarf = MOFI->getOmitDwarfIfHaveCompactUnwind();
2183 // Sort the FDEs by their corresponding CIE before we emit them.
2184 // This isn't technically necessary according to the DWARF standard,
2185 // but the Android libunwindstack rejects eh_frame sections where
2186 // an FDE refers to a CIE other than the closest previous CIE.
2187 std::vector<MCDwarfFrameInfo> FrameArrayX(FrameArray.begin(), FrameArray.end());
2188 llvm::stable_sort(Range&: FrameArrayX, C: [IsEH](const MCDwarfFrameInfo &X,
2189 const MCDwarfFrameInfo &Y) {
2190 return CIEKey(X, IsEH) < CIEKey(Y, IsEH);
2191 });
2192 CIEKey LastKey;
2193 const MCSymbol *LastCIEStart = nullptr;
2194 for (auto I = FrameArrayX.begin(), E = FrameArrayX.end(); I != E;) {
2195 const MCDwarfFrameInfo &Frame = *I;
2196 ++I;
2197 if (CanOmitDwarf && Frame.CompactUnwindEncoding !=
2198 MOFI->getCompactUnwindDwarfEHFrameOnly() && IsEH)
2199 // CIEs and FDEs can be emitted in either the eh_frame section or the
2200 // debug_frame section, on some platforms (e.g. AArch64) the target object
2201 // file supports emitting a compact_unwind section without an associated
2202 // eh_frame section. If the eh_frame section is not needed, and the
2203 // location where the CIEs and FDEs are to be emitted is the eh_frame
2204 // section, do not emit anything.
2205 continue;
2206
2207 CIEKey Key(Frame, IsEH);
2208 if (!LastCIEStart || Key != LastKey) {
2209 LastKey = Key;
2210 LastCIEStart = &Emitter.EmitCIE(Frame);
2211 }
2212
2213 Emitter.EmitFDE(cieStart: *LastCIEStart, frame: Frame, LastInSection: I == E, SectionStart: *SectionStart);
2214 }
2215}
2216
2217void MCDwarfFrameEmitter::encodeAdvanceLoc(MCContext &Context,
2218 uint64_t AddrDelta,
2219 SmallVectorImpl<char> &Out) {
2220 // Scale the address delta by the minimum instruction length.
2221 AddrDelta = ScaleAddrDelta(Context, AddrDelta);
2222 if (AddrDelta == 0)
2223 return;
2224
2225 llvm::endianness E = Context.getAsmInfo().isLittleEndian()
2226 ? llvm::endianness::little
2227 : llvm::endianness::big;
2228
2229 if (isUIntN(N: 6, x: AddrDelta)) {
2230 uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
2231 Out.push_back(Elt: Opcode);
2232 } else if (isUInt<8>(x: AddrDelta)) {
2233 Out.push_back(Elt: dwarf::DW_CFA_advance_loc1);
2234 Out.push_back(Elt: AddrDelta);
2235 } else if (isUInt<16>(x: AddrDelta)) {
2236 Out.push_back(Elt: dwarf::DW_CFA_advance_loc2);
2237 support::endian::write<uint16_t>(Out, V: AddrDelta, E);
2238 } else {
2239 assert(isUInt<32>(AddrDelta));
2240 Out.push_back(Elt: dwarf::DW_CFA_advance_loc4);
2241 support::endian::write<uint32_t>(Out, V: AddrDelta, E);
2242 }
2243}
2244