/external/llvm/include/llvm/Object/ |
D | ELF.h | 41 uint64_t, uint32_t>::type uintX_t; typedef 183 uintX_t getStringTableIndex() const; 246 uintX_t Offset = Sec->sh_offset; in getSectionContentsAsArray() 247 uintX_t Size = Sec->sh_size; in getSectionContentsAsArray() 321 typename ELFFile<ELFT>::uintX_t ELFFile<ELFT>::getStringTableIndex() const { in getStringTableIndex() 367 uintX_t StringTableIndex = getStringTableIndex(); in ELFFile() 446 uintX_t Size = Section.sh_size; in getSHNDXTable() 449 uintX_t NumSymbols = Size / sizeof(uint32_t); in getSHNDXTable()
|
D | ELFTypes.h | 368 uint64_t, uint32_t>::type uintX_t; 370 uintX_t getVal() const { return d_un.d_val; } 371 uintX_t getPtr() const { return d_un.d_ptr; }
|
D | ELFObjectFile.h | 192 typedef typename ELFFile<ELFT>::uintX_t uintX_t; typedef 662 uintX_t Type = EShdr->sh_type; in getRelocatedSection()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELF.h | 93 using uintX_t = typename ELFT::uint; 415 uintX_t Offset = Sec.sh_offset; in getSectionContentsAsArray() 416 uintX_t Size = Sec.sh_size; in getSectionContentsAsArray() 423 if (std::numeric_limits<uintX_t>::max() - Offset < Size) in getSectionContentsAsArray() 446 uintX_t Offset = Phdr.p_offset; in getSegmentContents() 447 uintX_t Size = Phdr.p_filesz; in getSegmentContents() 449 if (std::numeric_limits<uintX_t>::max() - Offset < Size) in getSegmentContents() 558 const uintX_t SectionTableOffset = getHeader().e_shoff; in sections() 568 SectionTableOffset + (uintX_t)sizeof(Elf_Shdr) < SectionTableOffset) in sections() 581 uintX_t NumSections = getHeader().e_shnum; in sections()
|
D | ELFTypes.h | 350 using uintX_t = std::conditional_t<ELFT::Is64Bits, uint64_t, uint32_t>; 352 uintX_t getVal() const { return d_un.d_val; } 353 uintX_t getPtr() const { return d_un.d_ptr; }
|
D | ELFObjectFile.h | 236 using uintX_t = typename ELFT::uint; 940 uintX_t Type = EShdr->sh_type; in getRelocatedSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELF.h | 75 using uintX_t = typename ELFT::uint; 397 uintX_t Offset = Sec->sh_offset; in getSectionContentsAsArray() 398 uintX_t Size = Sec->sh_size; in getSectionContentsAsArray() 405 if (std::numeric_limits<uintX_t>::max() - Offset < Size) in getSectionContentsAsArray() 511 const uintX_t SectionTableOffset = getHeader()->e_shoff; in sections() 521 SectionTableOffset + (uintX_t)sizeof(Elf_Shdr) < SectionTableOffset) in sections() 534 uintX_t NumSections = getHeader()->e_shnum; in sections()
|
D | ELFTypes.h | 351 using uintX_t = typename std::conditional<ELFT::Is64Bits, 354 uintX_t getVal() const { return d_un.d_val; } 355 uintX_t getPtr() const { return d_un.d_ptr; }
|
D | ELFObjectFile.h | 233 using uintX_t = typename ELFT::uint; 853 uintX_t Type = EShdr->sh_type; in getRelocatedSection()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 179 typedef typename ELFT::uint uintX_t; typedef in __anonbe606ff10111::ELFState 1249 CBA.write<uintX_t>(E, ELFT::TargetEndianness); in writeSectionContent() 1252 SHeader.sh_size = sizeof(uintX_t) * Section.Entries->size(); in writeSectionContent() 1331 CBA.write<uintX_t>(E.Address, ELFT::TargetEndianness); in writeSectionContent() 1332 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(E.Size); in writeSectionContent() 1345 CBA.write<uintX_t>(E.Address, ELFT::TargetEndianness); in writeSectionContent() 1348 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(NumBlocks); in writeSectionContent() 1619 SHeader.sh_entsize = 2 * sizeof(uintX_t); in writeSectionContent() 1625 CBA.write<uintX_t>(DE.Tag, ELFT::TargetEndianness); in writeSectionContent() 1626 CBA.write<uintX_t>(DE.Val, ELFT::TargetEndianness); in writeSectionContent() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | ELFEmitter.cpp | 113 typedef typename ELFT::uint uintX_t; typedef in __anon637653e50111::ELFState 853 support::endian::write<uintX_t>(OS, E, ELFT::TargetEndianness); in writeSectionContent() 856 SHeader.sh_size = sizeof(uintX_t) * Section.Entries->size(); in writeSectionContent() 930 support::endian::write<uintX_t>(OS, E.Address, ELFT::TargetEndianness); in writeSectionContent() 931 SHeader.sh_size += sizeof(uintX_t) + encodeULEB128(E.Size, OS); in writeSectionContent() 1157 SHeader.sh_size = 2 * sizeof(uintX_t) * Section.Entries.size(); in writeSectionContent() 1166 support::endian::write<uintX_t>(OS, DE.Tag, ELFT::TargetEndianness); in writeSectionContent() 1167 support::endian::write<uintX_t>(OS, DE.Val, ELFT::TargetEndianness); in writeSectionContent()
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 66 typedef typename ELFO::uintX_t uintX_t; 147 typedef typename ELFO::uintX_t uintX_t; typedef in __anon148931850111::ELFDumper 161 DynRegionInfo createDRIFrom(const Elf_Phdr *P, uintX_t EntSize) { in createDRIFrom() 1778 uintX_t Tag = Entry.getTag(); in printDynamicTable() 2526 uintX_t Offset = Sec.sh_offset; in printRelocations()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 110 using uintX_t = typename ELFT::uint; 3823 uintX_t Offset = Sec.sh_offset; in printRelocations() 4635 uintX_t Tag = Entry.getTag(); in printDynamic() 6410 uintX_t Addend = R.Addend.getValueOr(0); in printRelRelaReloc() 6609 uintX_t Tag = Entry.getTag(); in printDynamic()
|