Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DMachO.h170 class MachORebaseEntry {
172 MachORebaseEntry(Error *Err, const MachOObjectFile *O,
182 bool operator==(const MachORebaseEntry &) const;
205 using rebase_iterator = content_iterator<MachORebaseEntry>;
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp3034 MachORebaseEntry::MachORebaseEntry(Error *E, const MachOObjectFile *O, in MachORebaseEntry() function in MachORebaseEntry
3039 void MachORebaseEntry::moveToFirst() { in moveToFirst()
3044 void MachORebaseEntry::moveToEnd() { in moveToEnd()
3050 void MachORebaseEntry::moveNext() { in moveNext()
3360 StringRef MachORebaseEntry::typeName() const { in typeName()
3374 StringRef MachORebaseEntry::segmentName() const { in segmentName()
3380 StringRef MachORebaseEntry::sectionName() const { in sectionName()
3386 uint64_t MachORebaseEntry::address() const { in address()
3390 bool MachORebaseEntry::operator==(const MachORebaseEntry &Other) const { in operator ==()
3406 MachORebaseEntry Start(&Err, O, Opcodes, is64); in rebaseTable()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp9902 for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable(Err)) { in printMachORebaseTable()