Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeFunctionSymbol.cpp41 return Sym.CodeOffset; in getAddressOffset()
52 return Session.getRVAFromSectOffset(Sym.Segment, Sym.CodeOffset); in getRelativeVirtualAddress()
56 return Session.getVAFromSectOffset(Sym.Segment, Sym.CodeOffset); in getVirtualAddress()
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()
[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()
/netbsd-src/external/apache2/llvm/dist/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.h490 CodeOffset, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp403 formatSegmentOffset(Block.Segment, Block.CodeOffset)); in visitKnownRecord()
476 formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); in visitKnownRecord()
650 FC.CodeOffset, formatRegisterId(FC.Register, CompilationCPU), in visitKnownRecord()
677 formatSegmentOffset(HAS.Segment, HAS.CodeOffset), in visitKnownRecord()
690 uint32_t CodeOffset = 0; in visitKnownRecord() local
696 CodeOffset += Delta; in visitKnownRecord()
697 P.format(" code 0x{0} (+0x{1})", utohexstr(CodeOffset), utohexstr(Delta)); in visitKnownRecord()
701 P.format(" code end 0x{0} (+0x{1})", utohexstr(CodeOffset + Length), in visitKnownRecord()
714 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord()
726 CodeOffset += Annot.U1; in visitKnownRecord()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DWin64EH.h67 uint8_t CodeOffset; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h140 uint32_t CodeOffset; // start of Locals and Body member
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp221 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp98 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp1317 Function.CodeOffset = Ctx.Ptr - FunctionStart; in parseCodeSection()