Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DMachO.h168 class MachORebaseEntry {
170 MachORebaseEntry(Error *Err, const MachOObjectFile *O,
180 bool operator==(const MachORebaseEntry &) const;
203 using rebase_iterator = content_iterator<MachORebaseEntry>;
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp3295 MachORebaseEntry::MachORebaseEntry(Error *E, const MachOObjectFile *O, in MachORebaseEntry() function in MachORebaseEntry
3300 void MachORebaseEntry::moveToFirst() { in moveToFirst()
3305 void MachORebaseEntry::moveToEnd() { in moveToEnd()
3311 void MachORebaseEntry::moveNext() { in moveNext()
3573 StringRef MachORebaseEntry::typeName() const { in typeName()
3587 StringRef MachORebaseEntry::segmentName() const { in segmentName()
3593 StringRef MachORebaseEntry::sectionName() const { in sectionName()
3599 uint64_t MachORebaseEntry::address() const { in address()
3603 bool MachORebaseEntry::operator==(const MachORebaseEntry &Other) const { in operator ==()
3619 MachORebaseEntry Start(&Err, O, Opcodes, is64); in rebaseTable()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp10361 for (const object::MachORebaseEntry &Entry : Obj->rebaseTable(Err)) { in printMachORebaseTable()