Home
last modified time | relevance | path

Searched refs:UnitOffset (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp638 uint64_t UnitOffset = 0; in write() local
639 while (Info.size() > UnitOffset) { in write()
641 parseInfoSectionUnitHeader(Info.substr(UnitOffset, Info.size())); in write()
651 UnitOffset += C.Length; in write()
656 Info.substr(UnitOffset - C.Length, C.Length), in write()
675 Out.emitBytes(Info.substr(UnitOffset - C.Length, C.Length)); in write()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h112 struct UnitOffset { struct
116 Optional<UnitOffset> getAsRelativeReference() const; argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp694 Optional<DWARFFormValue::UnitOffset> DWARFFormValue::getAsRelativeReference() const { in getAsRelativeReference()
705 return UnitOffset{const_cast<DWARFUnit*>(U), Value.uval}; in getAsRelativeReference()
709 return UnitOffset{nullptr, Value.uval}; in getAsRelativeReference()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp178 IO.mapRequired("UnitOffset", Section.UnitOffset); in mapping()
H A DDWARFEmitter.cpp230 writeInteger((uint32_t)Sect.UnitOffset, OS, IsLittleEndian); in emitPubSection()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h87 uint32_t UnitOffset; member