31 if (!InsertedStrTabFragment && StrTabFragment)
38 unsigned Idx = FileNumber - 1;
40 return Files[
Idx].Assigned;
47 uint8_t ChecksumKind) {
50 Filename = FilenameOffset.first;
51 unsigned Idx = FileNumber - 1;
58 if (Files[
Idx].Assigned)
62 Filename = FilenameOffset.first;
63 unsigned Offset = FilenameOffset.second;
65 auto ChecksumOffsetSymbol =
66 OS.getContext().createTempSymbol(
"checksum_offset",
false);
68 Files[
Idx].ChecksumTableOffset = ChecksumOffsetSymbol;
69 Files[
Idx].Assigned =
true;
70 Files[
Idx].Checksum = ChecksumBytes;
71 Files[
Idx].ChecksumKind = ChecksumKind;
77 if (
FuncId >= Functions.size())
79 if (Functions[
FuncId].isUnallocatedFunctionInfo())
85 if (
FuncId >= Functions.size())
86 Functions.resize(
FuncId + 1);
89 if (!Functions[
FuncId].isUnallocatedFunctionInfo())
98 unsigned IAFile,
unsigned IALine,
100 if (
FuncId >= Functions.size())
101 Functions.resize(
FuncId + 1);
104 if (!Functions[
FuncId].isUnallocatedFunctionInfo())
108 InlinedAt.
File = IAFile;
109 InlinedAt.
Line = IALine;
110 InlinedAt.
Col = IACol;
114 Info->ParentFuncIdPlusOne = IAFunc + 1;
115 Info->InlinedAt = InlinedAt;
119 while (
Info->isInlinedCallSite()) {
120 InlinedAt =
Info->InlinedAt;
130 unsigned Line,
unsigned Column,
131 bool PrologueEnd,
bool IsStmt) {
137 if (!StrTabFragment) {
142 return StrTabFragment;
148 StringTable.
insert(std::make_pair(S,
unsigned(Contents.
size())));
150 std::pair<StringRef, unsigned> Ret =
151 std::make_pair(Insertion.first->first(), Insertion.first->second);
152 if (Insertion.second) {
154 Contents.
append(Ret.first.begin(), Ret.first.end() + 1);
159unsigned CodeViewContext::getStringTableOffset(
StringRef S) {
163 auto I = StringTable.
find(S);
173 OS.emitInt32(
uint32_t(DebugSubsectionKind::StringTable));
174 OS.emitAbsoluteSymbolDiff(StringEnd, StringBegin, 4);
175 OS.emitLabel(StringBegin);
180 if (!InsertedStrTabFragment) {
181 OS.insert(getStringTableFragment());
182 InsertedStrTabFragment =
true;
185 OS.emitValueToAlignment(
Align(4), 0);
187 OS.emitLabel(StringEnd);
200 OS.emitInt32(
uint32_t(DebugSubsectionKind::FileChecksums));
201 OS.emitAbsoluteSymbolDiff(FileEnd, FileBegin, 4);
202 OS.emitLabel(FileBegin);
204 unsigned CurrentOffset = 0;
209 for (
auto File : Files) {
210 OS.emitAssignment(File.ChecksumTableOffset,
213 if (!File.ChecksumKind) {
218 CurrentOffset += File.Checksum.size();
219 CurrentOffset =
alignTo(CurrentOffset, 4);
222 OS.emitInt32(File.StringTableOffset);
224 if (!File.ChecksumKind) {
230 OS.emitInt8(
static_cast<uint8_t
>(File.Checksum.size()));
231 OS.emitInt8(File.ChecksumKind);
233 OS.emitValueToAlignment(
Align(4));
236 OS.emitLabel(FileEnd);
238 ChecksumOffsetsAssigned =
true;
247 unsigned Idx = FileNo - 1;
252 if (ChecksumOffsetsAssigned) {
253 OS.emitSymbolValue(Files[
Idx].ChecksumTableOffset, 4);
260 OS.emitValueImpl(SRE, 4);
264 size_t Offset = MCCVLines.size();
265 auto I = MCCVLineStartStop.insert(
268 I.first->second.second =
Offset + 1;
269 MCCVLines.push_back(LineEntry);
274 std::vector<MCCVLoc> FilteredLines;
278 if (LocBegin >= LocEnd) {
279 return FilteredLines;
283 for (
size_t Idx = LocBegin;
Idx != LocEnd; ++
Idx) {
284 unsigned LocationFuncId = MCCVLines[
Idx].getFunctionId();
285 if (LocationFuncId ==
FuncId) {
287 FilteredLines.push_back(MCCVLines[
Idx]);
297 if (FilteredLines.empty() ||
298 FilteredLines.back().getFileNum() != IA.File ||
299 FilteredLines.back().getLine() != IA.Line ||
300 FilteredLines.back().getColumn() != IA.Col) {
302 IA.File, IA.Line, IA.Col,
false,
308 return FilteredLines;
312 auto I = MCCVLineStartStop.find(
FuncId);
314 if (
I == MCCVLineStartStop.end())
319std::pair<size_t, size_t>
329 unsigned ChildId = KV.first;
331 LocBegin = std::min(LocBegin, Extent.first);
332 LocEnd = std::max(LocEnd, Extent.second);
336 return {LocBegin, LocEnd};
342 if (L >= MCCVLines.size())
344 return ArrayRef(&MCCVLines[L], R - L);
355 OS.emitInt32(
uint32_t(DebugSubsectionKind::Lines));
356 OS.emitAbsoluteSymbolDiff(LineEnd, LineBegin, 4);
357 OS.emitLabel(LineBegin);
358 OS.emitCOFFSecRel32(FuncBegin, 0);
359 OS.emitCOFFSectionIndex(FuncBegin);
363 bool HaveColumns =
any_of(Locs, [](
const MCCVLoc &LineEntry) {
367 OS.emitAbsoluteSymbolDiff(FuncEnd, FuncBegin, 4);
369 for (
auto I = Locs.begin(), E = Locs.end();
I != E;) {
371 unsigned CurFileNum =
I->getFileNum();
373 std::find_if(
I, E, [CurFileNum](
const MCCVLoc &Loc) {
376 unsigned EntryCount = FileSegEnd -
I;
378 "Segment for file '" +
379 Twine(getStringTableFragment()
380 ->getContents()[Files[CurFileNum - 1].StringTableOffset]) +
382 OS.emitCVFileChecksumOffsetDirective(CurFileNum);
383 OS.emitInt32(EntryCount);
385 SegmentSize += 8 * EntryCount;
387 SegmentSize += 4 * EntryCount;
388 OS.emitInt32(SegmentSize);
390 for (
auto J =
I; J != FileSegEnd; ++J) {
391 OS.emitAbsoluteSymbolDiff(J->getLabel(), FuncBegin, 4);
392 unsigned LineData = J->getLine();
394 LineData |= LineInfo::StatementFlag;
395 OS.emitInt32(LineData);
398 for (
auto J =
I; J != FileSegEnd; ++J) {
399 OS.emitInt16(J->getColumn());
405 OS.emitLabel(LineEnd);
409 if (isUInt<7>(
Data)) {
414 if (isUInt<14>(
Data)) {
420 if (isUInt<29>(
Data)) {
438 return ((-
Data) << 1) | 1;
443 unsigned PrimaryFunctionId,
444 unsigned SourceFileId,
445 unsigned SourceLineNum,
451 PrimaryFunctionId, SourceFileId, SourceLineNum, FnStartSym, FnEndSym);
457 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
477 assert(
Success &&
"failed to evaluate label difference as absolute");
479 assert(Result >= 0 &&
"negative label difference requested");
480 assert(Result < UINT_MAX &&
"label difference greater than 2GB");
490 if (LocBegin >= LocEnd)
498 const MCSection *FirstSec = &Locs.
front().getLabel()->getSection();
499 for (
const MCCVLoc &Loc : Locs) {
500 if (&Loc.getLabel()->getSection() != FirstSec) {
501 errs() <<
".cv_loc " << Loc.getFunctionId() <<
' ' << Loc.getFileNum()
502 <<
' ' << Loc.getLine() <<
' ' << Loc.getColumn()
503 <<
" is in the wrong section\n";
515 StartLoc.
setLine(Frag.StartLineNum);
516 bool HaveOpenRange =
false;
520 LastSourceLoc.
File = Frag.StartFileId;
521 LastSourceLoc.
Line = Frag.StartLineNum;
527 for (
const MCCVLoc &Loc : Locs) {
531 constexpr uint32_t InlineSiteSize = 12;
532 constexpr uint32_t AnnotationSize = 8;
533 size_t MaxBufferSize =
MaxRecordLength - InlineSiteSize - AnnotationSize;
534 if (Buffer.
size() >= MaxBufferSize)
537 if (Loc.getFunctionId() == Frag.SiteFuncId) {
538 CurSourceLoc.
File = Loc.getFileNum();
539 CurSourceLoc.
Line = Loc.getLine();
546 CurSourceLoc =
I->second;
554 LastLabel = Loc.getLabel();
556 HaveOpenRange =
false;
564 if (HaveOpenRange && CurSourceLoc.
File == LastSourceLoc.
File &&
565 CurSourceLoc.
Line == LastSourceLoc.
Line)
568 HaveOpenRange =
true;
570 if (CurSourceLoc.
File != LastSourceLoc.
File) {
572 Files[CurSourceLoc.
File - 1]
573 .ChecksumTableOffset->getVariableValue())
579 int LineDelta = CurSourceLoc.
Line - LastSourceLoc.
Line;
582 if (EncodedLineDelta < 0x8 && CodeDelta <= 0xf) {
586 unsigned Operand = (EncodedLineDelta << 4) | CodeDelta;
592 if (LineDelta != 0) {
600 LastLabel = Loc.getLabel();
601 LastSourceLoc = CurSourceLoc;
606 unsigned EndSymLength =
608 unsigned LocAfterLength = ~0U;
610 if (!LocAfter.
empty()) {
612 const MCCVLoc &Loc = LocAfter[0];
632 const MCSymbol *LastLabel =
nullptr;
633 for (std::pair<const MCSymbol *, const MCSymbol *>
Range : Frag.
getRanges()) {
637 GapAndRangeSizes.
push_back({GapSize, RangeSize});
638 LastLabel =
Range.second;
642 for (
size_t I = 0, E = Frag.
getRanges().size();
I != E;) {
646 unsigned RangeSize = GapAndRangeSizes[
I].second;
648 for (; J != E; ++J) {
649 unsigned GapAndRangeSize = GapAndRangeSizes[J].first + GapAndRangeSizes[J].second;
652 RangeSize += GapAndRangeSize;
654 unsigned NumGaps = J -
I - 1;
673 size_t RecordSize = FixedSizePortion.
size() +
678 OS << FixedSizePortion;
692 }
while (RangeSize > 0);
696 "large ranges should not have gaps");
697 unsigned GapStartOffset = GapAndRangeSizes[
I].second;
698 for (++
I;
I != J; ++
I) {
699 unsigned GapSize, RangeSize;
701 std::tie(GapSize, RangeSize) = GapAndRangeSizes[
I];
704 GapStartOffset += GapSize + RangeSize;
Analysis containing CSE Info
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
static unsigned computeLabelDiff(const MCAssembler &Asm, const MCSymbol *Begin, const MCSymbol *End)
static uint32_t encodeSignedNumber(uint32_t Data)
static bool compressAnnotation(uint32_t Data, SmallVectorImpl< char > &Buffer)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & front() const
front - Get the first element.
bool empty() const
empty - Check if the array is empty.
ArrayRef< MCCVLoc > getLinesForExtent(size_t L, size_t R)
std::pair< size_t, size_t > getLineExtent(unsigned FuncId)
void encodeInlineLineTable(const MCAssembler &Asm, MCCVInlineLineTableFragment &F)
Encodes the binary annotations once we have a layout.
void emitLineTableForFunction(MCObjectStreamer &OS, unsigned FuncId, const MCSymbol *FuncBegin, const MCSymbol *FuncEnd)
Emits a line table substream.
void emitFileChecksums(MCObjectStreamer &OS)
Emits the file checksum substream.
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.
bool addFile(MCStreamer &OS, unsigned FileNumber, StringRef Filename, ArrayRef< uint8_t > ChecksumBytes, uint8_t ChecksumKind)
MCCVFunctionInfo * getCVFunctionInfo(unsigned FuncId)
Retreive the function info if this is a valid function id, or nullptr.
bool recordFunctionId(unsigned FuncId)
Records the function id of a normal function.
void emitFileChecksumOffset(MCObjectStreamer &OS, unsigned FileNo)
Emits the offset into the checksum table of the given file number.
std::vector< MCCVLoc > getFunctionLineEntries(unsigned FuncId)
void addLineEntry(const MCCVLoc &LineEntry)
Add a line entry.
bool recordInlinedCallSiteId(unsigned FuncId, unsigned IAFunc, unsigned IAFile, unsigned IALine, unsigned IACol)
Records the function id of an inlined call site.
std::pair< size_t, size_t > getLineExtentIncludingInlinees(unsigned FuncId)
void emitInlineLineTableForFunction(MCObjectStreamer &OS, unsigned PrimaryFunctionId, unsigned SourceFileId, unsigned SourceLineNum, const MCSymbol *FnStartSym, const MCSymbol *FnEndSym)
void emitStringTable(MCObjectStreamer &OS)
Emits the string table substream.
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.
void encodeDefRange(const MCAssembler &Asm, MCCVDefRangeFragment &F)
MCFragment * emitDefRange(MCObjectStreamer &OS, ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > Ranges, StringRef FixedSizePortion)
std::pair< StringRef, unsigned > addToStringTable(StringRef S)
Add something to the string table.
Binary assembler expressions.
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
static const MCBinaryExpr * create(Opcode Op, const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
Fragment representing the .cv_def_range directive.
ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > getRanges() const
StringRef getFixedSizePortion() const
Fragment representing the binary annotations produced by the .cv_inline_linetable directive.
const MCSymbol * getFnStartSym() const
const MCSymbol * getFnEndSym() const
SmallString< 8 > & getContents()
Instances of this class represent the information from a .cv_loc directive.
void setFileNum(unsigned fileNum)
Set the FileNum of this MCCVLoc.
unsigned getFileNum() const
Get the FileNum of this MCCVLoc.
const MCSymbol * getLabel() const
void setLabel(const MCSymbol *L)
unsigned getColumn() const
Get the Column of this MCCVLoc.
unsigned getFunctionId() const
void setLine(unsigned line)
Set the Line of this MCCVLoc.
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Context object for machine code objects.
MCSymbol * createTempSymbol()
Create a temporary symbol with a unique name.
F * allocFragment(Args &&...args)
Fragment for data and encoded instructions.
SmallVectorImpl< MCFixup > & getFixups()
SmallVectorImpl< char > & getContents()
Base class for the full range of assembler expressions which are needed for parsing.
bool evaluateKnownAbsolute(int64_t &Res, const MCAssembler &Asm) const
Aggressive variant of evaluateAsRelocatable when relocations are unavailable (e.g.
static MCFixup create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc=SMLoc())
void destroy()
Destroys the current fragment.
Streaming object file generation interface.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Streaming machine code generation interface.
Represent a reference to a symbol from inside an expression.
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
MCSection & getSection() const
Get the section associated with a defined, non-absolute symbol.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
iterator find(StringRef Key)
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
StringRef - Represent a constant reference to a string, i.e.
constexpr bool empty() const
empty - Check if the string is empty.
constexpr size_t size() const
size - Get the string size.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
A raw_ostream that writes to an SmallVector or SmallString.
This class represents a function that is read from a sample profile.
#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.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
@ FK_SecRel_2
A two-byte section relative fixup.
@ FK_SecRel_4
A four-byte section relative fixup.
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.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Information describing a function or inlined call site introduced by .cv_func_id or ....
DenseMap< unsigned, LineInfo > InlinedAtMap
Map from inlined call site id to the inlined at location to use for that call site.
Adapter to write values to a stream in a particular byte order.
void write(ArrayRef< value_type > Val)