mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
Temporarily reverting 241765, 241768, and 241772 to unbreak the build bots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dc4dccabf3
commit
2efb9f7c3e
@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseMap.h"
|
||||||
#include "llvm/ADT/IntervalMap.h"
|
|
||||||
#include "llvm/ADT/PointerIntPair.h"
|
#include "llvm/ADT/PointerIntPair.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/StringSwitch.h"
|
#include "llvm/ADT/StringSwitch.h"
|
||||||
@ -140,7 +139,6 @@ public:
|
|||||||
typedef Elf_Verneed_Impl<ELFT> Elf_Verneed;
|
typedef Elf_Verneed_Impl<ELFT> Elf_Verneed;
|
||||||
typedef Elf_Vernaux_Impl<ELFT> Elf_Vernaux;
|
typedef Elf_Vernaux_Impl<ELFT> Elf_Vernaux;
|
||||||
typedef Elf_Versym_Impl<ELFT> Elf_Versym;
|
typedef Elf_Versym_Impl<ELFT> Elf_Versym;
|
||||||
typedef Elf_Hash<ELFT> Elf_Hash;
|
|
||||||
typedef ELFEntityIterator<const Elf_Dyn> Elf_Dyn_Iter;
|
typedef ELFEntityIterator<const Elf_Dyn> Elf_Dyn_Iter;
|
||||||
typedef iterator_range<Elf_Dyn_Iter> Elf_Dyn_Range;
|
typedef iterator_range<Elf_Dyn_Iter> Elf_Dyn_Range;
|
||||||
typedef ELFEntityIterator<const Elf_Rela> Elf_Rela_Iter;
|
typedef ELFEntityIterator<const Elf_Rela> Elf_Rela_Iter;
|
||||||
@ -178,7 +176,6 @@ private:
|
|||||||
const Elf_Shdr *dot_symtab_sec = nullptr; // Symbol table section.
|
const Elf_Shdr *dot_symtab_sec = nullptr; // Symbol table section.
|
||||||
StringRef DynSymStrTab; // Dynnamic symbol string table.
|
StringRef DynSymStrTab; // Dynnamic symbol string table.
|
||||||
const Elf_Shdr *DotDynSymSec = nullptr; // Dynamic symbol table section.
|
const Elf_Shdr *DotDynSymSec = nullptr; // Dynamic symbol table section.
|
||||||
const Elf_Hash *HashTable = nullptr;
|
|
||||||
|
|
||||||
const Elf_Shdr *SymbolTableSectionHeaderIndex = nullptr;
|
const Elf_Shdr *SymbolTableSectionHeaderIndex = nullptr;
|
||||||
DenseMap<const Elf_Sym *, ELF::Elf64_Word> ExtendedSymbolTable;
|
DenseMap<const Elf_Sym *, ELF::Elf64_Word> ExtendedSymbolTable;
|
||||||
@ -232,8 +229,6 @@ private:
|
|||||||
void LoadVersionNeeds(const Elf_Shdr *ec) const;
|
void LoadVersionNeeds(const Elf_Shdr *ec) const;
|
||||||
void LoadVersionMap() const;
|
void LoadVersionMap() const;
|
||||||
|
|
||||||
void scanDynamicTable();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
template<typename T>
|
template<typename T>
|
||||||
const T *getEntry(uint32_t Section, uint32_t Entry) const;
|
const T *getEntry(uint32_t Section, uint32_t Entry) const;
|
||||||
@ -242,7 +237,6 @@ public:
|
|||||||
|
|
||||||
const Elf_Shdr *getDotSymtabSec() const { return dot_symtab_sec; }
|
const Elf_Shdr *getDotSymtabSec() const { return dot_symtab_sec; }
|
||||||
const Elf_Shdr *getDotDynSymSec() const { return DotDynSymSec; }
|
const Elf_Shdr *getDotDynSymSec() const { return DotDynSymSec; }
|
||||||
const Elf_Hash *getHashTable() const { return HashTable; }
|
|
||||||
|
|
||||||
ErrorOr<StringRef> getStringTable(const Elf_Shdr *Section) const;
|
ErrorOr<StringRef> getStringTable(const Elf_Shdr *Section) const;
|
||||||
const char *getDynamicString(uintX_t Offset) const;
|
const char *getDynamicString(uintX_t Offset) const;
|
||||||
@ -584,10 +578,8 @@ ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
|
|||||||
|
|
||||||
Header = reinterpret_cast<const Elf_Ehdr *>(base());
|
Header = reinterpret_cast<const Elf_Ehdr *>(base());
|
||||||
|
|
||||||
if (Header->e_shoff == 0) {
|
if (Header->e_shoff == 0)
|
||||||
scanDynamicTable();
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
const uint64_t SectionTableOffset = Header->e_shoff;
|
const uint64_t SectionTableOffset = Header->e_shoff;
|
||||||
|
|
||||||
@ -612,13 +604,6 @@ ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
|
|||||||
|
|
||||||
for (const Elf_Shdr &Sec : sections()) {
|
for (const Elf_Shdr &Sec : sections()) {
|
||||||
switch (Sec.sh_type) {
|
switch (Sec.sh_type) {
|
||||||
case ELF::SHT_HASH:
|
|
||||||
if (HashTable) {
|
|
||||||
EC = object_error::parse_failed;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
HashTable = reinterpret_cast<const Elf_Hash *>(base() + Sec.sh_offset);
|
|
||||||
break;
|
|
||||||
case ELF::SHT_SYMTAB_SHNDX:
|
case ELF::SHT_SYMTAB_SHNDX:
|
||||||
if (SymbolTableSectionHeaderIndex) {
|
if (SymbolTableSectionHeaderIndex) {
|
||||||
// More than one .symtab_shndx!
|
// More than one .symtab_shndx!
|
||||||
@ -716,21 +701,7 @@ ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
scanDynamicTable();
|
// Scan program headers.
|
||||||
|
|
||||||
EC = std::error_code();
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class ELFT>
|
|
||||||
void ELFFile<ELFT>::scanDynamicTable() {
|
|
||||||
// Build load-address to file-offset map.
|
|
||||||
typedef IntervalMap<
|
|
||||||
uintX_t, uintptr_t,
|
|
||||||
IntervalMapImpl::NodeSizer<uintX_t, uintptr_t>::LeafSize,
|
|
||||||
IntervalMapHalfOpenInfo<uintX_t>> LoadMapT;
|
|
||||||
typename LoadMapT::Allocator Alloc;
|
|
||||||
LoadMapT LoadMap(Alloc);
|
|
||||||
|
|
||||||
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
|
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
|
||||||
PhdrE = program_header_end();
|
PhdrE = program_header_end();
|
||||||
PhdrI != PhdrE; ++PhdrI) {
|
PhdrI != PhdrE; ++PhdrI) {
|
||||||
@ -738,36 +709,34 @@ void ELFFile<ELFT>::scanDynamicTable() {
|
|||||||
DynamicRegion.Addr = base() + PhdrI->p_offset;
|
DynamicRegion.Addr = base() + PhdrI->p_offset;
|
||||||
DynamicRegion.Size = PhdrI->p_filesz;
|
DynamicRegion.Size = PhdrI->p_filesz;
|
||||||
DynamicRegion.EntSize = sizeof(Elf_Dyn);
|
DynamicRegion.EntSize = sizeof(Elf_Dyn);
|
||||||
continue;
|
break;
|
||||||
}
|
}
|
||||||
if (PhdrI->p_type != ELF::PT_LOAD)
|
|
||||||
continue;
|
|
||||||
if (PhdrI->p_filesz == 0)
|
|
||||||
continue;
|
|
||||||
LoadMap.insert(PhdrI->p_vaddr, PhdrI->p_vaddr + PhdrI->p_filesz,
|
|
||||||
PhdrI->p_offset);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto toMappedAddr = [&](uint64_t VAddr) -> const uint8_t * {
|
// Scan dynamic table.
|
||||||
auto I = LoadMap.find(VAddr);
|
|
||||||
if (I == LoadMap.end())
|
|
||||||
return nullptr;
|
|
||||||
return base() + I.value() + (VAddr - I.start());
|
|
||||||
};
|
|
||||||
|
|
||||||
for (Elf_Dyn_Iter DynI = dynamic_table_begin(), DynE = dynamic_table_end();
|
for (Elf_Dyn_Iter DynI = dynamic_table_begin(), DynE = dynamic_table_end();
|
||||||
DynI != DynE; ++DynI) {
|
DynI != DynE; ++DynI) {
|
||||||
switch (DynI->d_tag) {
|
switch (DynI->d_tag) {
|
||||||
case ELF::DT_HASH:
|
case ELF::DT_RELA: {
|
||||||
if (HashTable)
|
uint64_t VBase = 0;
|
||||||
continue;
|
const uint8_t *FBase = nullptr;
|
||||||
HashTable =
|
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
|
||||||
reinterpret_cast<const Elf_Hash *>(toMappedAddr(DynI->getPtr()));
|
PhdrE = program_header_end();
|
||||||
break;
|
PhdrI != PhdrE; ++PhdrI) {
|
||||||
case ELF::DT_RELA:
|
if (PhdrI->p_type != ELF::PT_LOAD)
|
||||||
if (!DynRelaRegion.Addr)
|
continue;
|
||||||
DynRelaRegion.Addr = toMappedAddr(DynI->getPtr());
|
if (DynI->getPtr() >= PhdrI->p_vaddr &&
|
||||||
|
DynI->getPtr() < PhdrI->p_vaddr + PhdrI->p_memsz) {
|
||||||
|
VBase = PhdrI->p_vaddr;
|
||||||
|
FBase = base() + PhdrI->p_offset;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!VBase)
|
||||||
|
return;
|
||||||
|
DynRelaRegion.Addr = FBase + DynI->getPtr() - VBase;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case ELF::DT_RELASZ:
|
case ELF::DT_RELASZ:
|
||||||
DynRelaRegion.Size = DynI->getVal();
|
DynRelaRegion.Size = DynI->getVal();
|
||||||
break;
|
break;
|
||||||
@ -775,6 +744,8 @@ void ELFFile<ELFT>::scanDynamicTable() {
|
|||||||
DynRelaRegion.EntSize = DynI->getVal();
|
DynRelaRegion.EntSize = DynI->getVal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EC = std::error_code();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class ELFT>
|
template <class ELFT>
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
#ifndef LLVM_OBJECT_ELFTYPES_H
|
#ifndef LLVM_OBJECT_ELFTYPES_H
|
||||||
#define LLVM_OBJECT_ELFTYPES_H
|
#define LLVM_OBJECT_ELFTYPES_H
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
#include "llvm/Support/ELF.h"
|
#include "llvm/Support/ELF.h"
|
||||||
@ -464,23 +463,6 @@ struct Elf_Phdr_Impl<ELFType<TargetEndianness, true>> {
|
|||||||
Elf_Xword p_align; // Segment alignment constraint
|
Elf_Xword p_align; // Segment alignment constraint
|
||||||
};
|
};
|
||||||
|
|
||||||
// ELFT needed for endianess.
|
|
||||||
template <class ELFT>
|
|
||||||
struct Elf_Hash {
|
|
||||||
LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
|
|
||||||
Elf_Word nbucket;
|
|
||||||
Elf_Word nchain;
|
|
||||||
|
|
||||||
ArrayRef<const Elf_Word> buckets() const {
|
|
||||||
return ArrayRef<const Elf_Word>(&nbucket + 2, &nbucket + 2 + nbucket);
|
|
||||||
}
|
|
||||||
|
|
||||||
ArrayRef<const Elf_Word> chains() const {
|
|
||||||
return ArrayRef<const Elf_Word>(&nbucket + 2 + nbucket,
|
|
||||||
&nbucket + 2 + nbucket + nchain);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// MIPS .reginfo section
|
// MIPS .reginfo section
|
||||||
template <class ELFT>
|
template <class ELFT>
|
||||||
struct Elf_Mips_RegInfo;
|
struct Elf_Mips_RegInfo;
|
||||||
|
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
RUN: llvm-readobj %p/Inputs/no-section-table.so -hash-table | FileCheck %s
|
|
||||||
|
|
||||||
CHECK: HashTable {
|
|
||||||
CHECK: Num Buckets: 3
|
|
||||||
CHECK: Num Chains: 13
|
|
||||||
CHECK: Buckets: [12, 10, 11]
|
|
||||||
CHECK: Chains: [0, 0, 0, 0, 2, 3, 4, 0, 7, 5, 6, 8, 9]
|
|
||||||
CHECK: }
|
|
@ -56,7 +56,6 @@ public:
|
|||||||
void printDynamicTable() override;
|
void printDynamicTable() override;
|
||||||
void printNeededLibraries() override;
|
void printNeededLibraries() override;
|
||||||
void printProgramHeaders() override;
|
void printProgramHeaders() override;
|
||||||
void printHashTable() override;
|
|
||||||
|
|
||||||
void printAttributes() override;
|
void printAttributes() override;
|
||||||
void printMipsPLTGOT() override;
|
void printMipsPLTGOT() override;
|
||||||
@ -1120,18 +1119,6 @@ void ELFDumper<ELFT>::printProgramHeaders() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename ELFT>
|
|
||||||
void ELFDumper<ELFT>::printHashTable() {
|
|
||||||
DictScope D(W, "HashTable");
|
|
||||||
auto HT = Obj->getHashTable();
|
|
||||||
if (!HT)
|
|
||||||
return;
|
|
||||||
W.printNumber("Num Buckets", HT->nbucket);
|
|
||||||
W.printNumber("Num Chains", HT->nchain);
|
|
||||||
W.printList("Buckets", HT->buckets());
|
|
||||||
W.printList("Chains", HT->chains());
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class ELFT>
|
template <class ELFT>
|
||||||
void ELFDumper<ELFT>::printAttributes() {
|
void ELFDumper<ELFT>::printAttributes() {
|
||||||
W.startLine() << "Attributes not implemented.\n";
|
W.startLine() << "Attributes not implemented.\n";
|
||||||
|
@ -37,7 +37,6 @@ public:
|
|||||||
virtual void printDynamicTable() { }
|
virtual void printDynamicTable() { }
|
||||||
virtual void printNeededLibraries() { }
|
virtual void printNeededLibraries() { }
|
||||||
virtual void printProgramHeaders() { }
|
virtual void printProgramHeaders() { }
|
||||||
virtual void printHashTable() { }
|
|
||||||
|
|
||||||
// Only implemented for ARM ELF at this time.
|
// Only implemented for ARM ELF at this time.
|
||||||
virtual void printAttributes() { }
|
virtual void printAttributes() { }
|
||||||
|
@ -181,8 +181,8 @@ public:
|
|||||||
startLine() << Label << ": " << (Value ? "Yes" : "No") << '\n';
|
startLine() << Label << ": " << (Value ? "Yes" : "No") << '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T_>
|
||||||
void printList(StringRef Label, const T &List) {
|
void printList(StringRef Label, const SmallVectorImpl<T_> &List) {
|
||||||
startLine() << Label << ": [";
|
startLine() << Label << ": [";
|
||||||
bool Comma = false;
|
bool Comma = false;
|
||||||
for (const auto &Item : List) {
|
for (const auto &Item : List) {
|
||||||
|
@ -127,10 +127,6 @@ namespace opts {
|
|||||||
cl::opt<bool> ProgramHeaders("program-headers",
|
cl::opt<bool> ProgramHeaders("program-headers",
|
||||||
cl::desc("Display ELF program headers"));
|
cl::desc("Display ELF program headers"));
|
||||||
|
|
||||||
// -hash-table
|
|
||||||
cl::opt<bool> HashTable("hash-table",
|
|
||||||
cl::desc("Display ELF hash table"));
|
|
||||||
|
|
||||||
// -expand-relocs
|
// -expand-relocs
|
||||||
cl::opt<bool> ExpandRelocs("expand-relocs",
|
cl::opt<bool> ExpandRelocs("expand-relocs",
|
||||||
cl::desc("Expand each shown relocation to multiple lines"));
|
cl::desc("Expand each shown relocation to multiple lines"));
|
||||||
@ -304,8 +300,6 @@ static void dumpObject(const ObjectFile *Obj) {
|
|||||||
Dumper->printNeededLibraries();
|
Dumper->printNeededLibraries();
|
||||||
if (opts::ProgramHeaders)
|
if (opts::ProgramHeaders)
|
||||||
Dumper->printProgramHeaders();
|
Dumper->printProgramHeaders();
|
||||||
if (opts::HashTable)
|
|
||||||
Dumper->printHashTable();
|
|
||||||
if (Obj->getArch() == llvm::Triple::arm && Obj->isELF())
|
if (Obj->getArch() == llvm::Triple::arm && Obj->isELF())
|
||||||
if (opts::ARMAttributes)
|
if (opts::ARMAttributes)
|
||||||
Dumper->printAttributes();
|
Dumper->printAttributes();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user