mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
ObjectFile: Add a method to check whether a section contains a symbol.
- No ELF or COFF implementation yet, I don't have a way to test that. Should be straightforward to add though. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135288 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
893818347e
commit
07ea23aa2d
@ -96,6 +96,8 @@ protected:
|
|||||||
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
||||||
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
||||||
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
||||||
|
virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
|
||||||
|
bool &Result) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
COFFObjectFile(MemoryBuffer *Object, error_code &ec);
|
COFFObjectFile(MemoryBuffer *Object, error_code &ec);
|
||||||
|
@ -58,6 +58,7 @@ public:
|
|||||||
/// SymbolRef - This is a value type class that represents a single symbol in
|
/// SymbolRef - This is a value type class that represents a single symbol in
|
||||||
/// the list of symbols in the object file.
|
/// the list of symbols in the object file.
|
||||||
class SymbolRef {
|
class SymbolRef {
|
||||||
|
friend class SectionRef;
|
||||||
DataRefImpl SymbolPimpl;
|
DataRefImpl SymbolPimpl;
|
||||||
const ObjectFile *OwningObject;
|
const ObjectFile *OwningObject;
|
||||||
|
|
||||||
@ -88,6 +89,7 @@ public:
|
|||||||
/// SectionRef - This is a value type class that represents a single section in
|
/// SectionRef - This is a value type class that represents a single section in
|
||||||
/// the list of sections in the object file.
|
/// the list of sections in the object file.
|
||||||
class SectionRef {
|
class SectionRef {
|
||||||
|
friend class SymbolRef;
|
||||||
DataRefImpl SectionPimpl;
|
DataRefImpl SectionPimpl;
|
||||||
const ObjectFile *OwningObject;
|
const ObjectFile *OwningObject;
|
||||||
|
|
||||||
@ -109,6 +111,8 @@ public:
|
|||||||
|
|
||||||
// FIXME: Move to the normalization layer when it's created.
|
// FIXME: Move to the normalization layer when it's created.
|
||||||
error_code isText(bool &Result) const;
|
error_code isText(bool &Result) const;
|
||||||
|
|
||||||
|
error_code containsSymbol(SymbolRef S, bool &Result) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint64_t UnknownAddressOrSize = ~0ULL;
|
const uint64_t UnknownAddressOrSize = ~0ULL;
|
||||||
@ -152,6 +156,8 @@ protected:
|
|||||||
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const = 0;
|
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const = 0;
|
||||||
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res)const=0;
|
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res)const=0;
|
||||||
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const = 0;
|
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const = 0;
|
||||||
|
virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
|
||||||
|
bool &Result) const = 0;
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -287,6 +293,11 @@ inline error_code SectionRef::isText(bool &Result) const {
|
|||||||
return OwningObject->isSectionText(SectionPimpl, Result);
|
return OwningObject->isSectionText(SectionPimpl, Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline error_code SectionRef::containsSymbol(SymbolRef S, bool &Result) const {
|
||||||
|
return OwningObject->sectionContainsSymbol(SectionPimpl, S.SymbolPimpl,
|
||||||
|
Result);
|
||||||
|
}
|
||||||
|
|
||||||
} // end namespace object
|
} // end namespace object
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
||||||
|
@ -293,6 +293,14 @@ error_code COFFObjectFile::isSectionText(DataRefImpl Sec,
|
|||||||
return object_error::success;
|
return object_error::success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl Sec,
|
||||||
|
DataRefImpl Symb,
|
||||||
|
bool &Result) const {
|
||||||
|
// FIXME: Unimplemented.
|
||||||
|
Result = false;
|
||||||
|
return object_error::success;
|
||||||
|
}
|
||||||
|
|
||||||
COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec)
|
COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec)
|
||||||
: ObjectFile(Binary::isCOFF, Object, ec) {
|
: ObjectFile(Binary::isCOFF, Object, ec) {
|
||||||
// Check that we at least have enough room for a header.
|
// Check that we at least have enough room for a header.
|
||||||
|
@ -235,6 +235,8 @@ protected:
|
|||||||
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
||||||
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
||||||
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
||||||
|
virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
|
||||||
|
bool &Result) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ELFObjectFile(MemoryBuffer *Object, error_code &ec);
|
ELFObjectFile(MemoryBuffer *Object, error_code &ec);
|
||||||
@ -495,6 +497,16 @@ error_code ELFObjectFile<target_endianness, is64Bits>
|
|||||||
return object_error::success;
|
return object_error::success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<support::endianness target_endianness, bool is64Bits>
|
||||||
|
error_code ELFObjectFile<target_endianness, is64Bits>
|
||||||
|
::sectionContainsSymbol(DataRefImpl Sec,
|
||||||
|
DataRefImpl Symb,
|
||||||
|
bool &Result) const {
|
||||||
|
// FIXME: Unimplemented.
|
||||||
|
Result = false;
|
||||||
|
return object_error::success;
|
||||||
|
}
|
||||||
|
|
||||||
template<support::endianness target_endianness, bool is64Bits>
|
template<support::endianness target_endianness, bool is64Bits>
|
||||||
ELFObjectFile<target_endianness, is64Bits>::ELFObjectFile(MemoryBuffer *Object
|
ELFObjectFile<target_endianness, is64Bits>::ELFObjectFile(MemoryBuffer *Object
|
||||||
, error_code &ec)
|
, error_code &ec)
|
||||||
|
@ -60,6 +60,8 @@ protected:
|
|||||||
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
||||||
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
||||||
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
||||||
|
virtual error_code sectionContainsSymbol(DataRefImpl DRI, DataRefImpl S,
|
||||||
|
bool &Result) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MachOObject *MachOObj;
|
MachOObject *MachOObj;
|
||||||
@ -383,6 +385,21 @@ error_code MachOObjectFile::isSectionText(DataRefImpl DRI,
|
|||||||
return object_error::success;
|
return object_error::success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
error_code MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec,
|
||||||
|
DataRefImpl Symb,
|
||||||
|
bool &Result) const {
|
||||||
|
if (MachOObj->is64Bit()) {
|
||||||
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
||||||
|
getSymbol64TableEntry(Symb, Entry);
|
||||||
|
Result = Entry->SectionIndex == 1 + Sec.d.a + Sec.d.b;
|
||||||
|
} else {
|
||||||
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
||||||
|
getSymbolTableEntry(Symb, Entry);
|
||||||
|
Result = Entry->SectionIndex == 1 + Sec.d.a + Sec.d.b;
|
||||||
|
}
|
||||||
|
return object_error::success;
|
||||||
|
}
|
||||||
|
|
||||||
ObjectFile::section_iterator MachOObjectFile::begin_sections() const {
|
ObjectFile::section_iterator MachOObjectFile::begin_sections() const {
|
||||||
DataRefImpl DRI;
|
DataRefImpl DRI;
|
||||||
DRI.d.a = DRI.d.b = 0;
|
DRI.d.a = DRI.d.b = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user