Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h94 int32_t CodeOffset;
99 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
101 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
104 Line(int32_t CodeOffset, LineInfo LineInf, ColumnInfo ColumnInf) in Line() argument
105 : CodeOffset(CodeOffset), LineInf(LineInf), ColumnInf(ColumnInf) {} in Line()
111 int32_t getCodeOffset() const { return CodeOffset; } in getCodeOffset()
H A DSymbolRecord.h61 uint32_t CodeOffset = 0; variable
270 case BinaryAnnotationsOpCode::CodeOffset: in ParseCurrentAnnotation()
610 uint32_t CodeOffset; variable
630 uint32_t CodeOffset; variable
807 uint32_t CodeOffset; variable
828 uint32_t CodeOffset; variable
849 uint32_t CodeOffset; variable
H A DCodeView.h487 CodeOffset, enumerator
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp128 Block.CodeOffset, &LinkageName); in visitKnownRecord()
204 CallSiteInfo.CodeOffset, &LinkageName); in visitKnownRecord()
405 FrameCookie.CodeOffset, &LinkageName); in visitKnownRecord()
441 HeapAllocSite.CodeOffset, &LinkageName); in visitKnownRecord()
463 case BinaryAnnotationsOpCode::CodeOffset: in visitKnownRecord()
534 Label.CodeOffset, &LinkageName); in visitKnownRecord()
575 Proc.CodeOffset, &LinkageName); in visitKnownRecord()
H A DSymbolRecordMapping.cpp53 error(IO.mapInteger(Block.CodeOffset)); in visitKnownRecord()
137 error(IO.mapInteger(CallSiteInfo.CodeOffset)); in visitKnownRecord()
308 error(IO.mapInteger(FrameCookie.CodeOffset)); in visitKnownRecord()
332 error(IO.mapInteger(HeapAllocSite.CodeOffset)); in visitKnownRecord()
385 error(IO.mapInteger(Label.CodeOffset)); in visitKnownRecord()
418 error(IO.mapInteger(Proc.CodeOffset)); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp330 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
425 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
431 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
482 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
495 IO.mapOptional("Offset", Symbol.CodeOffset, 0U); in map()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp374 formatSegmentOffset(Block.Segment, Block.CodeOffset)); in visitKnownRecord()
447 formatSegmentOffset(CSI.Segment, CSI.CodeOffset)); in visitKnownRecord()
620 FC.CodeOffset, formatRegisterId(FC.Register), in visitKnownRecord()
646 formatSegmentOffset(HAS.Segment, HAS.CodeOffset), in visitKnownRecord()
692 formatSegmentOffset(Label.Segment, Label.CodeOffset)); in visitKnownRecord()
720 formatSegmentOffset(Proc.Segment, Proc.CodeOffset), in visitKnownRecord()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DWin64EH.h60 uint8_t CodeOffset; member
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DWasm.h122 uint32_t CodeOffset; // start of Locals and Body member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp217 return {record.Segment, record.CodeOffset}; in GetSegmentAndOffset()
297 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp183 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp96 outs() << format(" 0x%02x: ", unsigned(UCs[0].u.CodeOffset)) in printUnwindCode()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp1059 Function.CodeOffset = Ctx.Ptr - FunctionStart; in parseCodeSection()