LLVM 19.0.0git
MCCodeView.cpp
Go to the documentation of this file.
1//===- MCCodeView.h - Machine Code CodeView support -------------*- C++ -*-===//
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// Holds state from .cv_file and .cv_loc directives for later emission.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/MC/MCCodeView.h"
14#include "llvm/ADT/STLExtras.h"
19#include "llvm/MC/MCAsmLayout.h"
20#include "llvm/MC/MCAssembler.h"
21#include "llvm/MC/MCContext.h"
23#include "llvm/MC/MCValue.h"
25
26using namespace llvm;
27using namespace llvm::codeview;
28
30 // If someone inserted strings into the string table but never actually
31 // emitted them somewhere, clean up the fragment.
32 if (!InsertedStrTabFragment && StrTabFragment)
33 StrTabFragment->destroy();
34}
35
36/// This is a valid number for use with .cv_loc if we've already seen a .cv_file
37/// for it.
38bool CodeViewContext::isValidFileNumber(unsigned FileNumber) const {
39 unsigned Idx = FileNumber - 1;
40 if (Idx < Files.size())
41 return Files[Idx].Assigned;
42 return false;
43}
44
45bool CodeViewContext::addFile(MCStreamer &OS, unsigned FileNumber,
46 StringRef Filename,
47 ArrayRef<uint8_t> ChecksumBytes,
48 uint8_t ChecksumKind) {
49 assert(FileNumber > 0);
50 auto FilenameOffset = addToStringTable(Filename);
51 Filename = FilenameOffset.first;
52 unsigned Idx = FileNumber - 1;
53 if (Idx >= Files.size())
54 Files.resize(Idx + 1);
55
56 if (Filename.empty())
57 Filename = "<stdin>";
58
59 if (Files[Idx].Assigned)
60 return false;
61
62 FilenameOffset = addToStringTable(Filename);
63 Filename = FilenameOffset.first;
64 unsigned Offset = FilenameOffset.second;
65
66 auto ChecksumOffsetSymbol =
67 OS.getContext().createTempSymbol("checksum_offset", false);
68 Files[Idx].StringTableOffset = Offset;
69 Files[Idx].ChecksumTableOffset = ChecksumOffsetSymbol;
70 Files[Idx].Assigned = true;
71 Files[Idx].Checksum = ChecksumBytes;
72 Files[Idx].ChecksumKind = ChecksumKind;
73
74 return true;
75}
76
78 if (FuncId >= Functions.size())
79 return nullptr;
80 if (Functions[FuncId].isUnallocatedFunctionInfo())
81 return nullptr;
82 return &Functions[FuncId];
83}
84
86 if (FuncId >= Functions.size())
87 Functions.resize(FuncId + 1);
88
89 // Return false if this function info was already allocated.
90 if (!Functions[FuncId].isUnallocatedFunctionInfo())
91 return false;
92
93 // Mark this as an allocated normal function, and leave the rest alone.
94 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel;
95 return true;
96}
97
98bool CodeViewContext::recordInlinedCallSiteId(unsigned FuncId, unsigned IAFunc,
99 unsigned IAFile, unsigned IALine,
100 unsigned IACol) {
101 if (FuncId >= Functions.size())
102 Functions.resize(FuncId + 1);
103
104 // Return false if this function info was already allocated.
105 if (!Functions[FuncId].isUnallocatedFunctionInfo())
106 return false;
107
109 InlinedAt.File = IAFile;
110 InlinedAt.Line = IALine;
111 InlinedAt.Col = IACol;
112
113 // Mark this as an inlined call site and record call site line info.
114 MCCVFunctionInfo *Info = &Functions[FuncId];
115 Info->ParentFuncIdPlusOne = IAFunc + 1;
116 Info->InlinedAt = InlinedAt;
117
118 // Walk up the call chain adding this function id to the InlinedAtMap of all
119 // transitive callers until we hit a real function.
120 while (Info->isInlinedCallSite()) {
121 InlinedAt = Info->InlinedAt;
122 Info = getCVFunctionInfo(Info->getParentFuncId());
123 Info->InlinedAtMap[FuncId] = InlinedAt;
124 }
125
126 return true;
127}
128
130 unsigned FunctionId, unsigned FileNo,
131 unsigned Line, unsigned Column,
132 bool PrologueEnd, bool IsStmt) {
134 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt});
135}
136
137MCDataFragment *CodeViewContext::getStringTableFragment() {
138 if (!StrTabFragment) {
139 StrTabFragment = MCCtx->allocFragment<MCDataFragment>();
140 // Start a new string table out with a null byte.
141 StrTabFragment->getContents().push_back('\0');
142 }
143 return StrTabFragment;
144}
145
146std::pair<StringRef, unsigned> CodeViewContext::addToStringTable(StringRef S) {
147 SmallVectorImpl<char> &Contents = getStringTableFragment()->getContents();
148 auto Insertion =
149 StringTable.insert(std::make_pair(S, unsigned(Contents.size())));
150 // Return the string from the table, since it is stable.
151 std::pair<StringRef, unsigned> Ret =
152 std::make_pair(Insertion.first->first(), Insertion.first->second);
153 if (Insertion.second) {
154 // The string map key is always null terminated.
155 Contents.append(Ret.first.begin(), Ret.first.end() + 1);
156 }
157 return Ret;
158}
159
160unsigned CodeViewContext::getStringTableOffset(StringRef S) {
161 // A string table offset of zero is always the empty string.
162 if (S.empty())
163 return 0;
164 auto I = StringTable.find(S);
165 assert(I != StringTable.end());
166 return I->second;
167}
168
170 MCContext &Ctx = OS.getContext();
171 MCSymbol *StringBegin = Ctx.createTempSymbol("strtab_begin", false),
172 *StringEnd = Ctx.createTempSymbol("strtab_end", false);
173
174 OS.emitInt32(uint32_t(DebugSubsectionKind::StringTable));
175 OS.emitAbsoluteSymbolDiff(StringEnd, StringBegin, 4);
176 OS.emitLabel(StringBegin);
177
178 // Put the string table data fragment here, if we haven't already put it
179 // somewhere else. If somebody wants two string tables in their .s file, one
180 // will just be empty.
181 if (!InsertedStrTabFragment) {
182 OS.insert(getStringTableFragment());
183 InsertedStrTabFragment = true;
184 }
185
186 OS.emitValueToAlignment(Align(4), 0);
187
188 OS.emitLabel(StringEnd);
189}
190
192 // Do nothing if there are no file checksums. Microsoft's linker rejects empty
193 // CodeView substreams.
194 if (Files.empty())
195 return;
196
197 MCContext &Ctx = OS.getContext();
198 MCSymbol *FileBegin = Ctx.createTempSymbol("filechecksums_begin", false),
199 *FileEnd = Ctx.createTempSymbol("filechecksums_end", false);
200
201 OS.emitInt32(uint32_t(DebugSubsectionKind::FileChecksums));
202 OS.emitAbsoluteSymbolDiff(FileEnd, FileBegin, 4);
203 OS.emitLabel(FileBegin);
204
205 unsigned CurrentOffset = 0;
206
207 // Emit an array of FileChecksum entries. We index into this table using the
208 // user-provided file number. Each entry may be a variable number of bytes
209 // determined by the checksum kind and size.
210 for (auto File : Files) {
211 OS.emitAssignment(File.ChecksumTableOffset,
212 MCConstantExpr::create(CurrentOffset, Ctx));
213 CurrentOffset += 4; // String table offset.
214 if (!File.ChecksumKind) {
215 CurrentOffset +=
216 4; // One byte each for checksum size and kind, then align to 4 bytes.
217 } else {
218 CurrentOffset += 2; // One byte each for checksum size and kind.
219 CurrentOffset += File.Checksum.size();
220 CurrentOffset = alignTo(CurrentOffset, 4);
221 }
222
223 OS.emitInt32(File.StringTableOffset);
224
225 if (!File.ChecksumKind) {
226 // There is no checksum. Therefore zero the next two fields and align
227 // back to 4 bytes.
228 OS.emitInt32(0);
229 continue;
230 }
231 OS.emitInt8(static_cast<uint8_t>(File.Checksum.size()));
232 OS.emitInt8(File.ChecksumKind);
233 OS.emitBytes(toStringRef(File.Checksum));
234 OS.emitValueToAlignment(Align(4));
235 }
236
237 OS.emitLabel(FileEnd);
238
239 ChecksumOffsetsAssigned = true;
240}
241
242// Output checksum table offset of the given file number. It is possible that
243// not all files have been registered yet, and so the offset cannot be
244// calculated. In this case a symbol representing the offset is emitted, and
245// the value of this symbol will be fixed up at a later time.
247 unsigned FileNo) {
248 unsigned Idx = FileNo - 1;
249
250 if (Idx >= Files.size())
251 Files.resize(Idx + 1);
252
253 if (ChecksumOffsetsAssigned) {
254 OS.emitSymbolValue(Files[Idx].ChecksumTableOffset, 4);
255 return;
256 }
257
258 const MCSymbolRefExpr *SRE =
259 MCSymbolRefExpr::create(Files[Idx].ChecksumTableOffset, OS.getContext());
260
261 OS.emitValueImpl(SRE, 4);
262}
263
265 size_t Offset = MCCVLines.size();
266 auto I = MCCVLineStartStop.insert(
267 {LineEntry.getFunctionId(), {Offset, Offset + 1}});
268 if (!I.second)
269 I.first->second.second = Offset + 1;
270 MCCVLines.push_back(LineEntry);
271}
272
273std::vector<MCCVLoc>
275 std::vector<MCCVLoc> FilteredLines;
276 size_t LocBegin;
277 size_t LocEnd;
278 std::tie(LocBegin, LocEnd) = getLineExtentIncludingInlinees(FuncId);
279 if (LocBegin >= LocEnd) {
280 return FilteredLines;
281 }
282
284 for (size_t Idx = LocBegin; Idx != LocEnd; ++Idx) {
285 unsigned LocationFuncId = MCCVLines[Idx].getFunctionId();
286 if (LocationFuncId == FuncId) {
287 // This was a .cv_loc directly for FuncId, so record it.
288 FilteredLines.push_back(MCCVLines[Idx]);
289 } else {
290 // Check if the current location is inlined in this function. If it is,
291 // synthesize a statement .cv_loc at the original inlined call site.
292 auto I = SiteInfo->InlinedAtMap.find(LocationFuncId);
293 if (I != SiteInfo->InlinedAtMap.end()) {
294 MCCVFunctionInfo::LineInfo &IA = I->second;
295 // Only add the location if it differs from the previous location.
296 // Large inlined calls will have many .cv_loc entries and we only need
297 // one line table entry in the parent function.
298 if (FilteredLines.empty() ||
299 FilteredLines.back().getFileNum() != IA.File ||
300 FilteredLines.back().getLine() != IA.Line ||
301 FilteredLines.back().getColumn() != IA.Col) {
302 FilteredLines.push_back(MCCVLoc(MCCVLines[Idx].getLabel(), FuncId,
303 IA.File, IA.Line, IA.Col, false,
304 false));
305 }
306 }
307 }
308 }
309 return FilteredLines;
310}
311
312std::pair<size_t, size_t> CodeViewContext::getLineExtent(unsigned FuncId) {
313 auto I = MCCVLineStartStop.find(FuncId);
314 // Return an empty extent if there are no cv_locs for this function id.
315 if (I == MCCVLineStartStop.end())
316 return {~0ULL, 0};
317 return I->second;
318}
319
320std::pair<size_t, size_t>
322 size_t LocBegin;
323 size_t LocEnd;
324 std::tie(LocBegin, LocEnd) = getLineExtent(FuncId);
325
326 // Include all child inline call sites in our extent.
328 if (SiteInfo) {
329 for (auto &KV : SiteInfo->InlinedAtMap) {
330 unsigned ChildId = KV.first;
331 auto Extent = getLineExtent(ChildId);
332 LocBegin = std::min(LocBegin, Extent.first);
333 LocEnd = std::max(LocEnd, Extent.second);
334 }
335 }
336
337 return {LocBegin, LocEnd};
338}
339
341 if (R <= L)
342 return std::nullopt;
343 if (L >= MCCVLines.size())
344 return std::nullopt;
345 return ArrayRef(&MCCVLines[L], R - L);
346}
347
349 unsigned FuncId,
350 const MCSymbol *FuncBegin,
351 const MCSymbol *FuncEnd) {
352 MCContext &Ctx = OS.getContext();
353 MCSymbol *LineBegin = Ctx.createTempSymbol("linetable_begin", false),
354 *LineEnd = Ctx.createTempSymbol("linetable_end", false);
355
356 OS.emitInt32(uint32_t(DebugSubsectionKind::Lines));
357 OS.emitAbsoluteSymbolDiff(LineEnd, LineBegin, 4);
358 OS.emitLabel(LineBegin);
359 OS.emitCOFFSecRel32(FuncBegin, /*Offset=*/0);
360 OS.emitCOFFSectionIndex(FuncBegin);
361
362 // Actual line info.
363 std::vector<MCCVLoc> Locs = getFunctionLineEntries(FuncId);
364 bool HaveColumns = any_of(Locs, [](const MCCVLoc &LineEntry) {
365 return LineEntry.getColumn() != 0;
366 });
367 OS.emitInt16(HaveColumns ? int(LF_HaveColumns) : 0);
368 OS.emitAbsoluteSymbolDiff(FuncEnd, FuncBegin, 4);
369
370 for (auto I = Locs.begin(), E = Locs.end(); I != E;) {
371 // Emit a file segment for the run of locations that share a file id.
372 unsigned CurFileNum = I->getFileNum();
373 auto FileSegEnd =
374 std::find_if(I, E, [CurFileNum](const MCCVLoc &Loc) {
375 return Loc.getFileNum() != CurFileNum;
376 });
377 unsigned EntryCount = FileSegEnd - I;
378 OS.AddComment(
379 "Segment for file '" +
380 Twine(getStringTableFragment()
381 ->getContents()[Files[CurFileNum - 1].StringTableOffset]) +
382 "' begins");
383 OS.emitCVFileChecksumOffsetDirective(CurFileNum);
384 OS.emitInt32(EntryCount);
385 uint32_t SegmentSize = 12;
386 SegmentSize += 8 * EntryCount;
387 if (HaveColumns)
388 SegmentSize += 4 * EntryCount;
389 OS.emitInt32(SegmentSize);
390
391 for (auto J = I; J != FileSegEnd; ++J) {
392 OS.emitAbsoluteSymbolDiff(J->getLabel(), FuncBegin, 4);
393 unsigned LineData = J->getLine();
394 if (J->isStmt())
395 LineData |= LineInfo::StatementFlag;
396 OS.emitInt32(LineData);
397 }
398 if (HaveColumns) {
399 for (auto J = I; J != FileSegEnd; ++J) {
400 OS.emitInt16(J->getColumn());
401 OS.emitInt16(0);
402 }
403 }
404 I = FileSegEnd;
405 }
406 OS.emitLabel(LineEnd);
407}
408
410 if (isUInt<7>(Data)) {
411 Buffer.push_back(Data);
412 return true;
413 }
414
415 if (isUInt<14>(Data)) {
416 Buffer.push_back((Data >> 8) | 0x80);
417 Buffer.push_back(Data & 0xff);
418 return true;
419 }
420
421 if (isUInt<29>(Data)) {
422 Buffer.push_back((Data >> 24) | 0xC0);
423 Buffer.push_back((Data >> 16) & 0xff);
424 Buffer.push_back((Data >> 8) & 0xff);
425 Buffer.push_back(Data & 0xff);
426 return true;
427 }
428
429 return false;
430}
431
433 SmallVectorImpl<char> &Buffer) {
434 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer);
435}
436
438 if (Data >> 31)
439 return ((-Data) << 1) | 1;
440 return Data << 1;
441}
442
444 unsigned PrimaryFunctionId,
445 unsigned SourceFileId,
446 unsigned SourceLineNum,
447 const MCSymbol *FnStartSym,
448 const MCSymbol *FnEndSym) {
449 // Create and insert a fragment into the current section that will be encoded
450 // later.
452 PrimaryFunctionId, SourceFileId, SourceLineNum, FnStartSym, FnEndSym);
453 OS.insert(F);
454}
455
458 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
459 StringRef FixedSizePortion) {
460 // Create and insert a fragment into the current section that will be encoded
461 // later.
462 auto *F =
463 MCCtx->allocFragment<MCCVDefRangeFragment>(Ranges, FixedSizePortion);
464 OS.insert(F);
465 return F;
466}
467
468static unsigned computeLabelDiff(MCAsmLayout &Layout, const MCSymbol *Begin,
469 const MCSymbol *End) {
470 MCContext &Ctx = Layout.getAssembler().getContext();
472 const MCExpr *BeginRef = MCSymbolRefExpr::create(Begin, Variant, Ctx),
473 *EndRef = MCSymbolRefExpr::create(End, Variant, Ctx);
474 const MCExpr *AddrDelta =
475 MCBinaryExpr::create(MCBinaryExpr::Sub, EndRef, BeginRef, Ctx);
476 int64_t Result;
477 bool Success = AddrDelta->evaluateKnownAbsolute(Result, Layout);
478 assert(Success && "failed to evaluate label difference as absolute");
479 (void)Success;
480 assert(Result >= 0 && "negative label difference requested");
481 assert(Result < UINT_MAX && "label difference greater than 2GB");
482 return unsigned(Result);
483}
484
487 size_t LocBegin;
488 size_t LocEnd;
489 std::tie(LocBegin, LocEnd) = getLineExtentIncludingInlinees(Frag.SiteFuncId);
490
491 if (LocBegin >= LocEnd)
492 return;
493 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd);
494 if (Locs.empty())
495 return;
496
497 // Check that the locations are all in the same section.
498#ifndef NDEBUG
499 const MCSection *FirstSec = &Locs.front().getLabel()->getSection();
500 for (const MCCVLoc &Loc : Locs) {
501 if (&Loc.getLabel()->getSection() != FirstSec) {
502 errs() << ".cv_loc " << Loc.getFunctionId() << ' ' << Loc.getFileNum()
503 << ' ' << Loc.getLine() << ' ' << Loc.getColumn()
504 << " is in the wrong section\n";
505 llvm_unreachable(".cv_loc crosses sections");
506 }
507 }
508#endif
509
510 // Make an artificial start location using the function start and the inlinee
511 // lines start location information. All deltas start relative to this
512 // location.
513 MCCVLoc StartLoc = Locs.front();
514 StartLoc.setLabel(Frag.getFnStartSym());
515 StartLoc.setFileNum(Frag.StartFileId);
516 StartLoc.setLine(Frag.StartLineNum);
517 bool HaveOpenRange = false;
518
519 const MCSymbol *LastLabel = Frag.getFnStartSym();
520 MCCVFunctionInfo::LineInfo LastSourceLoc, CurSourceLoc;
521 LastSourceLoc.File = Frag.StartFileId;
522 LastSourceLoc.Line = Frag.StartLineNum;
523
524 MCCVFunctionInfo *SiteInfo = getCVFunctionInfo(Frag.SiteFuncId);
525
526 SmallVectorImpl<char> &Buffer = Frag.getContents();
527 Buffer.clear(); // Clear old contents if we went through relaxation.
528 for (const MCCVLoc &Loc : Locs) {
529 // Exit early if our line table would produce an oversized InlineSiteSym
530 // record. Account for the ChangeCodeLength annotation emitted after the
531 // loop ends.
532 constexpr uint32_t InlineSiteSize = 12;
533 constexpr uint32_t AnnotationSize = 8;
534 size_t MaxBufferSize = MaxRecordLength - InlineSiteSize - AnnotationSize;
535 if (Buffer.size() >= MaxBufferSize)
536 break;
537
538 if (Loc.getFunctionId() == Frag.SiteFuncId) {
539 CurSourceLoc.File = Loc.getFileNum();
540 CurSourceLoc.Line = Loc.getLine();
541 } else {
542 auto I = SiteInfo->InlinedAtMap.find(Loc.getFunctionId());
543 if (I != SiteInfo->InlinedAtMap.end()) {
544 // This .cv_loc is from a child inline call site. Use the source
545 // location of the inlined call site instead of the .cv_loc directive
546 // source location.
547 CurSourceLoc = I->second;
548 } else {
549 // We've hit a cv_loc not attributed to this inline call site. Use this
550 // label to end the PC range.
551 if (HaveOpenRange) {
552 unsigned Length = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
553 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeLength, Buffer);
554 compressAnnotation(Length, Buffer);
555 LastLabel = Loc.getLabel();
556 }
557 HaveOpenRange = false;
558 continue;
559 }
560 }
561
562 // Skip this .cv_loc if we have an open range and this isn't a meaningful
563 // source location update. The current table format does not support column
564 // info, so we can skip updates for those.
565 if (HaveOpenRange && CurSourceLoc.File == LastSourceLoc.File &&
566 CurSourceLoc.Line == LastSourceLoc.Line)
567 continue;
568
569 HaveOpenRange = true;
570
571 if (CurSourceLoc.File != LastSourceLoc.File) {
572 unsigned FileOffset = static_cast<const MCConstantExpr *>(
573 Files[CurSourceLoc.File - 1]
574 .ChecksumTableOffset->getVariableValue())
575 ->getValue();
576 compressAnnotation(BinaryAnnotationsOpCode::ChangeFile, Buffer);
577 compressAnnotation(FileOffset, Buffer);
578 }
579
580 int LineDelta = CurSourceLoc.Line - LastSourceLoc.Line;
581 unsigned EncodedLineDelta = encodeSignedNumber(LineDelta);
582 unsigned CodeDelta = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
583 if (EncodedLineDelta < 0x8 && CodeDelta <= 0xf) {
584 // The ChangeCodeOffsetAndLineOffset combination opcode is used when the
585 // encoded line delta uses 3 or fewer set bits and the code offset fits
586 // in one nibble.
587 unsigned Operand = (EncodedLineDelta << 4) | CodeDelta;
588 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeOffsetAndLineOffset,
589 Buffer);
590 compressAnnotation(Operand, Buffer);
591 } else {
592 // Otherwise use the separate line and code deltas.
593 if (LineDelta != 0) {
594 compressAnnotation(BinaryAnnotationsOpCode::ChangeLineOffset, Buffer);
595 compressAnnotation(EncodedLineDelta, Buffer);
596 }
597 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeOffset, Buffer);
598 compressAnnotation(CodeDelta, Buffer);
599 }
600
601 LastLabel = Loc.getLabel();
602 LastSourceLoc = CurSourceLoc;
603 }
604
605 assert(HaveOpenRange);
606
607 unsigned EndSymLength =
608 computeLabelDiff(Layout, LastLabel, Frag.getFnEndSym());
609 unsigned LocAfterLength = ~0U;
610 ArrayRef<MCCVLoc> LocAfter = getLinesForExtent(LocEnd, LocEnd + 1);
611 if (!LocAfter.empty()) {
612 // Only try to compute this difference if we're in the same section.
613 const MCCVLoc &Loc = LocAfter[0];
614 if (&Loc.getLabel()->getSection() == &LastLabel->getSection())
615 LocAfterLength = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
616 }
617
618 compressAnnotation(BinaryAnnotationsOpCode::ChangeCodeLength, Buffer);
619 compressAnnotation(std::min(EndSymLength, LocAfterLength), Buffer);
620}
621
623 MCCVDefRangeFragment &Frag) {
624 MCContext &Ctx = Layout.getAssembler().getContext();
625 SmallVectorImpl<char> &Contents = Frag.getContents();
626 Contents.clear();
627 SmallVectorImpl<MCFixup> &Fixups = Frag.getFixups();
628 Fixups.clear();
629 raw_svector_ostream OS(Contents);
630
631 // Compute all the sizes up front.
633 const MCSymbol *LastLabel = nullptr;
634 for (std::pair<const MCSymbol *, const MCSymbol *> Range : Frag.getRanges()) {
635 unsigned GapSize =
636 LastLabel ? computeLabelDiff(Layout, LastLabel, Range.first) : 0;
637 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second);
638 GapAndRangeSizes.push_back({GapSize, RangeSize});
639 LastLabel = Range.second;
640 }
641
642 // Write down each range where the variable is defined.
643 for (size_t I = 0, E = Frag.getRanges().size(); I != E;) {
644 // If the range size of multiple consecutive ranges is under the max,
645 // combine the ranges and emit some gaps.
646 const MCSymbol *RangeBegin = Frag.getRanges()[I].first;
647 unsigned RangeSize = GapAndRangeSizes[I].second;
648 size_t J = I + 1;
649 for (; J != E; ++J) {
650 unsigned GapAndRangeSize = GapAndRangeSizes[J].first + GapAndRangeSizes[J].second;
651 if (RangeSize + GapAndRangeSize > MaxDefRange)
652 break;
653 RangeSize += GapAndRangeSize;
654 }
655 unsigned NumGaps = J - I - 1;
656
658
659 unsigned Bias = 0;
660 // We must split the range into chunks of MaxDefRange, this is a fundamental
661 // limitation of the file format.
662 do {
663 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize);
664
665 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(RangeBegin, Ctx);
666 const MCBinaryExpr *BE =
668
669 // Each record begins with a 2-byte number indicating how large the record
670 // is.
671 StringRef FixedSizePortion = Frag.getFixedSizePortion();
672 // Our record is a fixed sized prefix and a LocalVariableAddrRange that we
673 // are artificially constructing.
674 size_t RecordSize = FixedSizePortion.size() +
675 sizeof(LocalVariableAddrRange) + 4 * NumGaps;
676 // Write out the record size.
677 LEWriter.write<uint16_t>(RecordSize);
678 // Write out the fixed size prefix.
679 OS << FixedSizePortion;
680 // Make space for a fixup that will eventually have a section relative
681 // relocation pointing at the offset where the variable becomes live.
682 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_4));
683 LEWriter.write<uint32_t>(0); // Fixup for code start.
684 // Make space for a fixup that will record the section index for the code.
685 Fixups.push_back(MCFixup::create(Contents.size(), BE, FK_SecRel_2));
686 LEWriter.write<uint16_t>(0); // Fixup for section index.
687 // Write down the range's extent.
688 LEWriter.write<uint16_t>(Chunk);
689
690 // Move on to the next range.
691 Bias += Chunk;
692 RangeSize -= Chunk;
693 } while (RangeSize > 0);
694
695 // Emit the gaps afterwards.
696 assert((NumGaps == 0 || Bias <= MaxDefRange) &&
697 "large ranges should not have gaps");
698 unsigned GapStartOffset = GapAndRangeSizes[I].second;
699 for (++I; I != J; ++I) {
700 unsigned GapSize, RangeSize;
701 assert(I < GapAndRangeSizes.size());
702 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I];
703 LEWriter.write<uint16_t>(GapStartOffset);
704 LEWriter.write<uint16_t>(GapSize);
705 GapStartOffset += GapSize + RangeSize;
706 }
707 }
708}
#define Success
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
bool End
Definition: ELF_riscv.cpp:480
static unsigned computeLabelDiff(MCAsmLayout &Layout, const MCSymbol *Begin, const MCSymbol *End)
Definition: MCCodeView.cpp:468
static uint32_t encodeSignedNumber(uint32_t Data)
Definition: MCCodeView.cpp:437
static bool compressAnnotation(uint32_t Data, SmallVectorImpl< char > &Buffer)
Definition: MCCodeView.cpp:409
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
Profile::FuncID FuncId
Definition: Profile.cpp:321
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file contains some templates that are useful if you are working with the STL at all.
raw_pwrite_stream & OS
This file contains some functions that are useful when dealing with strings.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
const T & front() const
front - Get the first element.
Definition: ArrayRef.h:168
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:160
ArrayRef< MCCVLoc > getLinesForExtent(size_t L, size_t R)
Definition: MCCodeView.cpp:340
std::pair< size_t, size_t > getLineExtent(unsigned FuncId)
Definition: MCCodeView.cpp:312
void emitLineTableForFunction(MCObjectStreamer &OS, unsigned FuncId, const MCSymbol *FuncBegin, const MCSymbol *FuncEnd)
Emits a line table substream.
Definition: MCCodeView.cpp:348
void emitFileChecksums(MCObjectStreamer &OS)
Emits the file checksum substream.
Definition: MCCodeView.cpp:191
void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId, unsigned FileNo, unsigned Line, unsigned Column, bool PrologueEnd, bool IsStmt)
Saves the information from the currently parsed .cv_loc directive and sets CVLocSeen.
Definition: MCCodeView.cpp:129
bool addFile(MCStreamer &OS, unsigned FileNumber, StringRef Filename, ArrayRef< uint8_t > ChecksumBytes, uint8_t ChecksumKind)
Definition: MCCodeView.cpp:45
MCCVFunctionInfo * getCVFunctionInfo(unsigned FuncId)
Retreive the function info if this is a valid function id, or nullptr.
Definition: MCCodeView.cpp:77
bool recordFunctionId(unsigned FuncId)
Records the function id of a normal function.
Definition: MCCodeView.cpp:85
void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo)
Emits the offset into the checksum table of the given file number.
Definition: MCCodeView.cpp:246
void encodeInlineLineTable(MCAsmLayout &Layout, MCCVInlineLineTableFragment &F)
Encodes the binary annotations once we have a layout.
Definition: MCCodeView.cpp:485
std::vector< MCCVLoc > getFunctionLineEntries(unsigned FuncId)
Definition: MCCodeView.cpp:274
void addLineEntry(const MCCVLoc &LineEntry)
Add a line entry.
Definition: MCCodeView.cpp:264
bool recordInlinedCallSiteId(unsigned FuncId, unsigned IAFunc, unsigned IAFile, unsigned IALine, unsigned IACol)
Records the function id of an inlined call site.
Definition: MCCodeView.cpp:98
std::pair< size_t, size_t > getLineExtentIncludingInlinees(unsigned FuncId)
Definition: MCCodeView.cpp:321
void emitInlineLineTableForFunction(MCObjectStreamer &OS, unsigned PrimaryFunctionId, unsigned SourceFileId, unsigned SourceLineNum, const MCSymbol *FnStartSym, const MCSymbol *FnEndSym)
Definition: MCCodeView.cpp:443
void emitStringTable(MCObjectStreamer &OS)
Emits the string table substream.
Definition: MCCodeView.cpp:169
void encodeDefRange(MCAsmLayout &Layout, MCCVDefRangeFragment &F)
Definition: MCCodeView.cpp:622
bool isValidFileNumber(unsigned FileNumber) const
This is a valid number for use with .cv_loc if we've already seen a .cv_file for it.
Definition: MCCodeView.cpp:38
MCFragment * emitDefRange(MCObjectStreamer &OS, ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > Ranges, StringRef FixedSizePortion)
Definition: MCCodeView.cpp:456
std::pair< StringRef, unsigned > addToStringTable(StringRef S)
Add something to the string table.
Definition: MCCodeView.cpp:146
Encapsulates the layout of an assembly file at a particular point in time.
Definition: MCAsmLayout.h:28
MCAssembler & getAssembler() const
Get the assembler object this is a layout for.
Definition: MCAsmLayout.h:41
MCContext & getContext() const
Definition: MCAssembler.h:322
Binary assembler expressions.
Definition: MCExpr.h:492
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
Definition: MCExpr.h:536
static const MCBinaryExpr * create(Opcode Op, const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition: MCExpr.cpp:183
@ Sub
Subtraction.
Definition: MCExpr.h:517
Fragment representing the .cv_def_range directive.
Definition: MCFragment.h:534
ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > getRanges() const
Definition: MCFragment.h:550
StringRef getFixedSizePortion() const
Definition: MCFragment.h:554
Fragment representing the binary annotations produced by the .cv_inline_linetable directive.
Definition: MCFragment.h:502
const MCSymbol * getFnStartSym() const
Definition: MCFragment.h:522
const MCSymbol * getFnEndSym() const
Definition: MCFragment.h:523
SmallString< 8 > & getContents()
Definition: MCFragment.h:525
Instances of this class represent the information from a .cv_loc directive.
Definition: MCCodeView.h:38
void setFileNum(unsigned fileNum)
Set the FileNum of this MCCVLoc.
Definition: MCCodeView.h:79
unsigned getFileNum() const
Get the FileNum of this MCCVLoc.
Definition: MCCodeView.h:63
const MCSymbol * getLabel() const
Definition: MCCodeView.h:58
void setLabel(const MCSymbol *L)
Definition: MCCodeView.h:74
unsigned getColumn() const
Get the Column of this MCCVLoc.
Definition: MCCodeView.h:69
unsigned getFunctionId() const
Definition: MCCodeView.h:60
void setLine(unsigned line)
Set the Line of this MCCVLoc.
Definition: MCCodeView.h:82
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition: MCExpr.cpp:194
Context object for machine code objects.
Definition: MCContext.h:83
MCSymbol * createTempSymbol()
Create a temporary symbol with a unique name.
Definition: MCContext.cpp:345
F * allocFragment(Args &&...args)
Definition: MCContext.h:440
Fragment for data and encoded instructions.
Definition: MCFragment.h:232
SmallVectorImpl< char > & getContents()
Definition: MCFragment.h:189
SmallVectorImpl< MCFixup > & getFixups()
Definition: MCFragment.h:213
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:35
bool evaluateKnownAbsolute(int64_t &Res, const MCAsmLayout &Layout) const
Definition: MCExpr.cpp:572
static MCFixup create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc=SMLoc())
Definition: MCFixup.h:87
void destroy()
Destroys the current fragment.
Definition: MCFragment.cpp:163
Streaming object file generation interface.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:36
Streaming machine code generation interface.
Definition: MCStreamer.h:213
Represent a reference to a symbol from inside an expression.
Definition: MCExpr.h:192
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
Definition: MCExpr.h:397
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
MCSection & getSection() const
Get the section associated with a defined, non-absolute symbol.
Definition: MCSymbol.h:269
bool empty() const
Definition: SmallVector.h:94
size_t size() const
Definition: SmallVector.h:91
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
Definition: SmallVector.h:696
void resize(size_type N)
Definition: SmallVector.h:651
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
iterator end()
Definition: StringMap.h:220
iterator find(StringRef Key)
Definition: StringMap.h:233
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
Definition: StringMap.h:308
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
constexpr size_t size() const
size - Get the string size.
Definition: StringRef.h:137
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
A raw_ostream that writes to an SmallVector or SmallString.
Definition: raw_ostream.h:691
This class represents a function that is read from a sample profile.
Definition: FunctionId.h:36
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
StringRef toStringRef(const std::optional< DWARFFormValue > &V, StringRef Default={})
Take an optional DWARFFormValue and try to extract a string value from it.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480
@ Length
Definition: DWP.cpp:480
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1729
@ FK_SecRel_2
A two-byte section relative fixup.
Definition: MCFixup.h:41
@ FK_SecRel_4
A four-byte section relative fixup.
Definition: MCFixup.h:42
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition: Alignment.h:155
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
Information describing a function or inlined call site introduced by .cv_func_id or ....
Definition: MCCodeView.h:98
DenseMap< unsigned, LineInfo > InlinedAtMap
Map from inlined call site id to the inlined at location to use for that call site.
Definition: MCCodeView.h:124
Adapter to write values to a stream in a particular byte order.
Definition: EndianStream.h:67
void write(ArrayRef< value_type > Val)
Definition: EndianStream.h:71