Home
last modified time | relevance | path

Searched refs:MachORebaseEntry (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h167 class MachORebaseEntry {
169 MachORebaseEntry(Error *Err, const MachOObjectFile *O,
179 bool operator==(const MachORebaseEntry &) const;
202 using rebase_iterator = content_iterator<MachORebaseEntry>;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3145 MachORebaseEntry::MachORebaseEntry(Error *E, const MachOObjectFile *O, in MachORebaseEntry() function in MachORebaseEntry
3150 void MachORebaseEntry::moveToFirst() { in moveToFirst()
3155 void MachORebaseEntry::moveToEnd() { in moveToEnd()
3161 void MachORebaseEntry::moveNext() { in moveNext()
3423 StringRef MachORebaseEntry::typeName() const { in typeName()
3437 StringRef MachORebaseEntry::segmentName() const { in segmentName()
3443 StringRef MachORebaseEntry::sectionName() const { in sectionName()
3449 uint64_t MachORebaseEntry::address() const { in address()
3453 bool MachORebaseEntry::operator==(const MachORebaseEntry &Other) const { in operator ==()
3469 MachORebaseEntry Start(&Err, O, Opcodes, is64); in rebaseTable()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp10322 for (const object::MachORebaseEntry &Entry : Obj->rebaseTable(Err)) { in printMachORebaseTable()