| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeFunctionSymbol.cpp | 45 return Sym.CodeOffset; in getAddressOffset() 56 return Session.getRVAFromSectOffset(Sym.Segment, Sym.CodeOffset); in getRelativeVirtualAddress() 60 return Session.getVAFromSectOffset(Sym.Segment, Sym.CodeOffset); in getVirtualAddress() 67 uint32_t CodeOffset = 0; in inlineSiteContainsAddress() local 70 case BinaryAnnotationsOpCode::CodeOffset: in inlineSiteContainsAddress() 73 CodeOffset += Annot.U1; in inlineSiteContainsAddress() 74 if (OffsetInFunc >= CodeOffset) in inlineSiteContainsAddress() 78 CodeOffset += Annot.U1; in inlineSiteContainsAddress() 79 if (Found && OffsetInFunc < CodeOffset) in inlineSiteContainsAddress() 84 CodeOffset += Annot.U2; in inlineSiteContainsAddress() [all …]
|
| H A D | NativeInlineSiteSymbol.cpp | 106 uint32_t CodeOffset = 0; in getLineOffset() local 114 CodeOffsetBase = CodeOffset; in getLineOffset() 152 case BinaryAnnotationsOpCode::CodeOffset: in getLineOffset() 155 CodeOffset += Annot.U1; in getLineOffset() 162 CodeOffset += Annot.U2; in getLineOffset() 170 CodeOffset += Annot.U1; in getLineOffset()
|
| H A D | SymbolCache.cpp | 365 if (Sect == PS.Segment && Offset >= PS.CodeOffset && in findFunctionSymbolBySectOffset() 366 Offset < PS.CodeOffset + PS.CodeSize) { in findFunctionSymbolBySectOffset() 368 auto Found = AddressToSymbolId.find({PS.Segment, PS.CodeOffset}); in findFunctionSymbolBySectOffset() 374 AddressToSymbolId.insert({{PS.Segment, PS.CodeOffset}, Id}); in findFunctionSymbolBySectOffset()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | Line.h | 92 int32_t CodeOffset; 97 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument 99 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line() 102 Line(int32_t CodeOffset, LineInfo LineInf, ColumnInfo ColumnInf) in Line() argument 103 : CodeOffset(CodeOffset), LineInf(LineInf), ColumnInf(ColumnInf) {} in Line() 109 int32_t getCodeOffset() const { return CodeOffset; } in getCodeOffset()
|
| H A D | SymbolRecord.h | 60 uint32_t CodeOffset = 0; variable 263 case BinaryAnnotationsOpCode::CodeOffset: in ParseCurrentAnnotation() 615 uint32_t CodeOffset = 0; variable 635 uint32_t CodeOffset = 0; variable 812 uint32_t CodeOffset = 0; variable 833 uint32_t CodeOffset = 0; variable 854 uint32_t CodeOffset = 0; variable 998 uint32_t CodeOffset = 0; variable
|
| H A D | CodeView.h | 495 CodeOffset, enumerator
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 409 formatSegmentOffset(Block.Segment, Block.CodeOffset)); in visitKnownRecord() 482 formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); in visitKnownRecord() 655 FC.CodeOffset, formatRegisterId(FC.Register, CompilationCPU), in visitKnownRecord() 682 formatSegmentOffset(HAS.Segment, HAS.CodeOffset), in visitKnownRecord() 695 uint32_t CodeOffset = 0; in visitKnownRecord() local 701 CodeOffset += Delta; in visitKnownRecord() 702 P.format(" code 0x{0} (+0x{1})", utohexstr(CodeOffset), utohexstr(Delta)); in visitKnownRecord() 706 P.format(" code end 0x{0} (+0x{1})", utohexstr(CodeOffset + Length), in visitKnownRecord() 719 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord() 731 CodeOffset += Annot.U1; in visitKnownRecord() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolRecordMapping.cpp | 52 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 D | SymbolDumper.cpp | 125 Block.CodeOffset, &LinkageName); in visitKnownRecord() 201 CallSiteInfo.CodeOffset, &LinkageName); in visitKnownRecord() 402 FrameCookie.CodeOffset, &LinkageName); in visitKnownRecord() 439 HeapAllocSite.CodeOffset, &LinkageName); in visitKnownRecord() 461 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord() 533 Label.CodeOffset, &LinkageName); in visitKnownRecord() 574 Proc.CodeOffset, &LinkageName); in visitKnownRecord() 636 W.printHex("Offset", Annot.CodeOffset); in visitKnownRecord()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 355 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map() 450 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map() 456 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map() 507 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map() 520 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map() 583 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Win64EH.h | 115 uint8_t CodeOffset; member
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
| H A D | Wasm.h | 154 uint32_t CodeOffset; // start of Locals and Body member
|
| /openbsd-src/gnu/llvm/lld/wasm/ |
| H A D | InputChunks.h | 278 uint32_t getFunctionCodeOffset() const { return function->CodeOffset; } in getFunctionCodeOffset()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 260 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | PECallFrameInfo.cpp | 192 uint8_t o = m_iterator.IsChained() ? 0 : code.u.CodeOffset; in ProcessUnwindCode()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbUtil.cpp | 365 return {record.Segment, record.CodeOffset}; in GetSegmentAndOffset() 445 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength()
|
| H A D | SymbolFileNativePDB.cpp | 420 m_index->MakeVirtualAddress(block.Segment, block.CodeOffset); in CreateBlock() 1462 case BinaryAnnotationsOpCode::CodeOffset: in ParseInlineSite()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 255 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 1409 Function.CodeOffset = Ctx.Ptr - FunctionStart; in parseCodeSection()
|