Home
last modified time | relevance | path

Searched refs:CodeOffset (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeFunctionSymbol.cpp41 return Sym.CodeOffset; in getAddressOffset()
63 uint32_t CodeOffset = 0; in inlineSiteContainsAddress() local
66 case BinaryAnnotationsOpCode::CodeOffset: in inlineSiteContainsAddress()
69 CodeOffset += Annot.U1; in inlineSiteContainsAddress()
70 if (OffsetInFunc >= CodeOffset) in inlineSiteContainsAddress()
74 CodeOffset += Annot.U1; in inlineSiteContainsAddress()
75 if (Found && OffsetInFunc < CodeOffset) in inlineSiteContainsAddress()
80 CodeOffset += Annot.U2; in inlineSiteContainsAddress()
81 if (OffsetInFunc >= CodeOffset && OffsetInFunc < CodeOffset + Annot.U1) in inlineSiteContainsAddress()
108 uint32_t CodeOffset = VA - getVirtualAddress(); in findInlineFramesByVA() local
[all …]
H A DNativeInlineSiteSymbol.cpp100 uint32_t CodeOffset = 0; in getLineOffset() local
103 case BinaryAnnotationsOpCode::CodeOffset: in getLineOffset()
106 CodeOffset += Annot.U1; in getLineOffset()
109 CodeOffset += Annot.U2; in getLineOffset()
113 CodeOffset += Annot.U1; in getLineOffset()
123 if (CodeOffset >= OffsetInFunc) in getLineOffset()
H A DSymbolCache.cpp360 if (Sect == PS.Segment && Offset >= PS.CodeOffset && in findFunctionSymbolBySectOffset()
361 Offset < PS.CodeOffset + PS.CodeSize) { in findFunctionSymbolBySectOffset()
363 auto Found = AddressToSymbolId.find({PS.Segment, PS.CodeOffset}); in findFunctionSymbolBySectOffset()
369 AddressToSymbolId.insert({{PS.Segment, PS.CodeOffset}, Id}); in findFunctionSymbolBySectOffset()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h93 int32_t CodeOffset;
98 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
100 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
103 Line(int32_t CodeOffset, LineInfo LineInf, ColumnInfo ColumnInf) in Line() argument
104 : CodeOffset(CodeOffset), LineInf(LineInf), ColumnInf(ColumnInf) {} in Line()
110 int32_t getCodeOffset() const { return CodeOffset; } in getCodeOffset()
H A DSymbolRecord.h61 uint32_t CodeOffset = 0; variable
264 case BinaryAnnotationsOpCode::CodeOffset: in ParseCurrentAnnotation()
616 uint32_t CodeOffset = 0; variable
636 uint32_t CodeOffset = 0; variable
813 uint32_t CodeOffset = 0; variable
834 uint32_t CodeOffset = 0; variable
855 uint32_t CodeOffset = 0; variable
999 uint32_t CodeOffset = 0; variable
H A DCodeView.h493 CodeOffset, enumerator
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp406 formatSegmentOffset(Block.Segment, Block.CodeOffset)); in visitKnownRecord()
479 formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); in visitKnownRecord()
653 FC.CodeOffset, formatRegisterId(FC.Register, CompilationCPU), in visitKnownRecord()
680 formatSegmentOffset(HAS.Segment, HAS.CodeOffset), in visitKnownRecord()
693 uint32_t CodeOffset = 0; in visitKnownRecord() local
699 CodeOffset += Delta; in visitKnownRecord()
704 P.format(" code end 0x{0} (+0x{1})", utohexstr(CodeOffset + Length), in visitKnownRecord()
717 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord()
729 CodeOffset += Annot.U1; in visitKnownRecord()
803 formatSegmentOffset(Label.Segment, Label.CodeOffset)); in visitKnownRecord()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp52 error(IO.mapInteger(Block.CodeOffset)); in visitKnownRecord()
136 error(IO.mapInteger(CallSiteInfo.CodeOffset)); in visitKnownRecord()
307 error(IO.mapInteger(FrameCookie.CodeOffset)); in visitKnownRecord()
331 error(IO.mapInteger(HeapAllocSite.CodeOffset)); in visitKnownRecord()
384 error(IO.mapInteger(Label.CodeOffset)); in visitKnownRecord()
417 error(IO.mapInteger(Proc.CodeOffset)); in visitKnownRecord()
477 error(IO.mapInteger(Annot.CodeOffset)); in visitKnownRecord()
H A DSymbolDumper.cpp127 Block.CodeOffset, &LinkageName); in visitKnownRecord()
203 CallSiteInfo.CodeOffset, &LinkageName); in visitKnownRecord()
404 FrameCookie.CodeOffset, &LinkageName); in visitKnownRecord()
441 HeapAllocSite.CodeOffset, &LinkageName); in visitKnownRecord()
463 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord()
535 Label.CodeOffset, &LinkageName); in visitKnownRecord()
576 Proc.CodeOffset, &LinkageName); in visitKnownRecord()
638 W.printHex("Offset", Annot.CodeOffset); in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp352 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
447 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
453 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
504 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
517 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
580 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DWin64EH.h67 uint8_t CodeOffset; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h140 uint32_t CodeOffset; // start of Locals and Body member
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp218 return {record.Segment, record.CodeOffset}; in GetSegmentAndOffset()
298 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp221 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp98 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1318 Function.CodeOffset = Ctx.Ptr - FunctionStart; in parseCodeSection()