Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDLine.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()
HDSymbolRecord.h61 uint32_t CodeOffset = 0; variable
264 case BinaryAnnotationsOpCode::CodeOffset: in ParseCurrentAnnotation()
609 uint32_t CodeOffset = 0; variable
629 uint32_t CodeOffset = 0; variable
806 uint32_t CodeOffset = 0; variable
827 uint32_t CodeOffset = 0; variable
848 uint32_t CodeOffset = 0; variable
992 uint32_t CodeOffset = 0; variable
HDCodeView.h490 CodeOffset, enumerator
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
HDMinimalSymbolDumper.cpp392 formatSegmentOffset(Block.Segment, Block.CodeOffset)); in visitKnownRecord()
465 formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); in visitKnownRecord()
639 FC.CodeOffset, formatRegisterId(FC.Register, CompilationCPU), in visitKnownRecord()
666 formatSegmentOffset(HAS.Segment, HAS.CodeOffset), in visitKnownRecord()
679 uint32_t CodeOffset = 0; in visitKnownRecord() local
685 CodeOffset += Delta; in visitKnownRecord()
686 P.format(" code 0x{0} (+0x{1})", utohexstr(CodeOffset), utohexstr(Delta)); in visitKnownRecord()
690 P.format(" code end 0x{0} (+0x{1})", utohexstr(CodeOffset + Length), in visitKnownRecord()
703 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord()
715 CodeOffset += Annot.U1; in visitKnownRecord()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
HDSymbolRecordMapping.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()
HDSymbolDumper.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-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDCodeViewYAMLSymbols.cpp329 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
424 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
430 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
481 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
494 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
557 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDWin64EH.h61 uint8_t CodeOffset; member
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDWasm.h133 uint32_t CodeOffset; // start of Locals and Body member
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDPdbUtil.cpp218 return {record.Segment, record.CodeOffset}; in GetSegmentAndOffset()
298 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
HDWin64EHDumper.cpp222 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
HDCOFFDump.cpp95 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
HDWasmObjectFile.cpp1152 Function.CodeOffset = Ctx.Ptr - FunctionStart; in parseCodeSection()