Home
last modified time | relevance | path

Searched refs:IsDWARF64 (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp315 constexpr uint64_t getCIEId(bool IsDWARF64, bool IsEH) { in getCIEId() argument
318 if (IsDWARF64) in getCIEId()
332 << format(" %0*" PRIx64, IsDWARF64 ? 16 : 8, Length) in dump()
333 << format(" %0*" PRIx64, IsDWARF64 && !IsEH ? 16 : 8, in dump()
334 getCIEId(IsDWARF64, IsEH)) in dump()
336 << " Format: " << FormatString(IsDWARF64) << "\n" in dump()
363 << format(" %0*" PRIx64, IsDWARF64 ? 16 : 8, Length) in dump()
364 << format(" %0*" PRIx64, IsDWARF64 && !IsEH ? 16 : 8, CIEPointer) in dump()
372 OS << " Format: " << FormatString(IsDWARF64) << "\n"; in dump()
405 bool IsDWARF64 = Format == DWARF64; in parse() local
[all …]
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugFrame.h136 FrameEntry(FrameKind K, bool IsDWARF64, uint64_t Offset, uint64_t Length, in FrameEntry() argument
138 : Kind(K), IsDWARF64(IsDWARF64), Offset(Offset), Length(Length), in FrameEntry()
156 const bool IsDWARF64; variable
172 CIE(bool IsDWARF64, uint64_t Offset, uint64_t Length, uint8_t Version, in CIE() argument
179 : FrameEntry(FK_CIE, IsDWARF64, Offset, Length, CodeAlignmentFactor, in CIE()
229 FDE(bool IsDWARF64, uint64_t Offset, uint64_t Length, uint64_t CIEPointer, in FDE() argument
232 : FrameEntry(FK_FDE, IsDWARF64, Offset, Length, in FDE()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h66 bool IsDWARF64; member
68 return IsDWARF64 ? 12 : 4; in sizeofTotalLength()
71 return IsDWARF64 ? 8 : 4; in sizeofPrologueLength()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp363 bool IsDWARF64 = false; in parse() local
371 IsDWARF64 = true; in parse()
383 Id = Data.getUnsigned(&Offset, (IsDWARF64 && !IsEH) ? 8 : 4); in parse()
385 ((IsDWARF64 && Id == DW64_CIE_ID) || Id == DW_CIE_ID || (IsEH && !Id)); in parse()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp524 bool IsDWARF64 = false; in parse() local
532 IsDWARF64 = true; in parse()
546 Id = Data.getUnsigned(&Offset, (IsDWARF64 && !IsEH) ? 8 : 4); in parse()
547 bool IsCIE = ((IsDWARF64 && Id == DW64_CIE_ID) || in parse()
DDWARFDebugLine.cpp26 IsDWARF64 = false; in clear()
74 IsDWARF64 = true; in parse()
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugFrameTest.cpp21 dwarf::CIE createCIE(bool IsDWARF64, uint64_t Offset, uint64_t Length) { in createCIE() argument
22 return dwarf::CIE(IsDWARF64, Offset, Length, in createCIE()
/external/llvm-project/llvm/lib/BinaryFormat/
DDwarf.cpp794 StringRef llvm::dwarf::FormatString(bool IsDWARF64) { in FormatString() argument
795 return FormatString(IsDWARF64 ? DWARF64 : DWARF32); in FormatString()
/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp74 bool IsDWARF64 = Format == dwarf::DWARF64; in writeInitialLength() local
75 if (IsDWARF64) in writeInitialLength()
79 writeVariableSizedInteger(Length, IsDWARF64 ? 8 : 4, OS, IsLittleEndian)); in writeInitialLength()
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DDwarf.h557 StringRef FormatString(bool IsDWARF64);