/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugFrame.cpp | 315 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/ |
D | DWARFDebugFrame.h | 136 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/ |
D | DWARFDebugLine.h | 66 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/ |
D | DWARFDebugFrame.cpp | 363 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/ |
D | DWARFDebugFrame.cpp | 524 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()
|
D | DWARFDebugLine.cpp | 26 IsDWARF64 = false; in clear() 74 IsDWARF64 = true; in parse()
|
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFDebugFrameTest.cpp | 21 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/ |
D | Dwarf.cpp | 794 StringRef llvm::dwarf::FormatString(bool IsDWARF64) { in FormatString() argument 795 return FormatString(IsDWARF64 ? DWARF64 : DWARF32); in FormatString()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFEmitter.cpp | 74 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/ |
D | Dwarf.h | 557 StringRef FormatString(bool IsDWARF64);
|