Home
last modified time | relevance | path

Searched refs:ulittle64_t (Results 1 – 16 of 16) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDRegisterContextMinidump_x86_64.h39 llvm::support::ulittle64_t high;
40 llvm::support::ulittle64_t low;
65 llvm::support::ulittle64_t p1_home;
66 llvm::support::ulittle64_t p2_home;
67 llvm::support::ulittle64_t p3_home;
68 llvm::support::ulittle64_t p4_home;
69 llvm::support::ulittle64_t p5_home;
70 llvm::support::ulittle64_t p6_home;
95 llvm::support::ulittle64_t dr0;
96 llvm::support::ulittle64_t dr1;
[all …]
HDNtStructures.h22 llvm::support::ulittle64_t reserved1[12];
23 llvm::support::ulittle64_t process_environment_block;
24 llvm::support::ulittle64_t reserved2[399];
26 llvm::support::ulittle64_t tls_slots[64];
28 llvm::support::ulittle64_t reserved5[26];
29 llvm::support::ulittle64_t reserved_for_ole; // Windows 2000 only
30 llvm::support::ulittle64_t reserved6[4];
31 llvm::support::ulittle64_t tls_expansion_slots;
HDMinidumpTypes.cpp62 const llvm::support::ulittle64_t *mem_ranges_count; in ParseMemory64List()
68 const llvm::support::ulittle64_t *base_rva; in ParseMemory64List()
HDMinidumpTypes.h79 llvm::support::ulittle64_t start_of_memory_range;
80 llvm::support::ulittle64_t data_size;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDMinidump.h44 support::ulittle64_t Flags;
68 support::ulittle64_t StartOfMemoryRange;
76 support::ulittle64_t NumberOfEntries;
105 support::ulittle64_t BaseAddress;
106 support::ulittle64_t AllocationBase;
109 support::ulittle64_t RegionSize;
204 support::ulittle64_t BaseOfImage;
212 support::ulittle64_t Reserved0;
213 support::ulittle64_t Reserved1;
224 support::ulittle64_t EnvironmentBlock;
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDCOFF.h149 support::ulittle64_t ImageBase;
164 support::ulittle64_t SizeOfStackReserve;
165 support::ulittle64_t SizeOfStackCommit;
166 support::ulittle64_t SizeOfHeapReserve;
167 support::ulittle64_t SizeOfHeapCommit;
664 support::ulittle64_t DeCommitFreeBlockThreshold;
665 support::ulittle64_t DeCommitTotalFreeThreshold;
666 support::ulittle64_t LockPrefixTable;
667 support::ulittle64_t MaximumAllocationSize;
668 support::ulittle64_t VirtualMemoryThreshold;
[all …]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
HDArchHandler_x86_64.cpp25 using llvm::support::ulittle64_t;
581 ulittle64_t *loc64 = reinterpret_cast<ulittle64_t *>(loc); in applyFixupFinal()
665 ulittle64_t *loc64 = reinterpret_cast<ulittle64_t *>(loc); in applyFixupRelocatable()
HDArchHandler_arm64.cpp26 using llvm::support::ulittle64_t;
593 ulittle64_t *loc64 = reinterpret_cast<ulittle64_t *>(loc); in applyFixupFinal()
699 ulittle64_t *loc64 = reinterpret_cast<ulittle64_t *>(loc); in applyFixupRelocatable()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
HDMachO_x86_64.cpp269 Addend = *(const ulittle64_t *)FixupContent; in addRelocations()
272 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations()
489 *(ulittle64_t *)FixupPtr = Value; in applyFixup()
HDMachO_arm64.cpp296 Addend = *(const ulittle64_t *)FixupContent; in addRelocations()
299 JITTargetAddress TargetAddress = *(const ulittle64_t *)FixupContent; in addRelocations()
565 *(ulittle64_t *)FixupPtr = Value; in applyFixup()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
HDRuntimeDyldMachOAArch64.h85 Addend = *reinterpret_cast<support::ulittle64_t *>(LocalAddress); in decodeAddend()
185 *reinterpret_cast<support::ulittle64_t *>(LocalAddress) = Addend; in encodeAddend()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDDWARFLocationExpression.cpp233 llvm::support::ulittle64_t U; in MakeConstantLocationExpression()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDMinidumpYAML.cpp49 template <> struct HexType<support::ulittle64_t> { using type = yaml::Hex64; };
391 support::ulittle64_t &Field = Exception.ExceptionInformation[Index]; in mapping()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
HDRuntimeDyldELF.cpp277 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = in resolveX86_64Relocation()
316 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = in resolveX86_64Relocation()
333 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = GOTOffset; in resolveX86_64Relocation()
1756 Value.Addend += support::ulittle64_t::ref(computePlaceholderAddress(SectionID, Offset)); in processRelocationRef()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
HDCOFFObjectFile.cpp42 using support::ulittle64_t;
1341 auto *Entry = reinterpret_cast<ulittle64_t *>(IntPtr); in importedSymbolEnd()
1449 Result = *reinterpret_cast<const ulittle64_t *>(IntPtr); in getImportAddress()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDEndian.h275 using ulittle64_t = variable