LLVM  8.0.1
Public Types | Public Member Functions | Friends | List of all members
llvm::object::MachOBindEntry Class Reference

MachOBindEntry encapsulates the current state in the decompression of binding opcodes. More...

#include "llvm/Object/MachO.h"

Public Types

enum  Kind { Kind::Regular, Kind::Lazy, Kind::Weak }
 

Public Member Functions

 MachOBindEntry (Error *Err, const MachOObjectFile *O, ArrayRef< uint8_t > Opcodes, bool is64Bit, MachOBindEntry::Kind)
 
int32_t segmentIndex () const
 
uint64_t segmentOffset () const
 
StringRef typeName () const
 
StringRef symbolName () const
 
uint32_t flags () const
 
int64_t addend () const
 
int ordinal () const
 
StringRef segmentName () const
 
StringRef sectionName () const
 
uint64_t address () const
 
bool operator== (const MachOBindEntry &) const
 
void moveNext ()
 

Friends

class MachOObjectFile
 

Detailed Description

MachOBindEntry encapsulates the current state in the decompression of binding opcodes.

This allows you to iterate through the compressed table of bindings using: Error Err; for (const llvm::object::MachOBindEntry &Entry : Obj->bindTable(&Err)) { } if (Err) { report error ...

Definition at line 214 of file MachO.h.

Member Enumeration Documentation

◆ Kind

Enumerator
Regular 
Lazy 
Weak 

Definition at line 216 of file MachO.h.

Constructor & Destructor Documentation

◆ MachOBindEntry()

MachOBindEntry::MachOBindEntry ( Error Err,
const MachOObjectFile O,
ArrayRef< uint8_t >  Opcodes,
bool  is64Bit,
MachOBindEntry::Kind  BK 
)

Member Function Documentation

◆ addend()

int64_t MachOBindEntry::addend ( ) const

Definition at line 3933 of file MachOObjectFile.cpp.

◆ address()

uint64_t MachOBindEntry::address ( ) const

◆ flags()

uint32_t MachOBindEntry::flags ( ) const

Definition at line 3935 of file MachOObjectFile.cpp.

◆ moveNext()

void MachOBindEntry::moveNext ( )

◆ operator==()

bool MachOBindEntry::operator== ( const MachOBindEntry Other) const

Definition at line 3957 of file MachOObjectFile.cpp.

References assert(), and llvm::ArrayRef< T >::data().

◆ ordinal()

int MachOBindEntry::ordinal ( ) const

Definition at line 3937 of file MachOObjectFile.cpp.

◆ sectionName()

StringRef MachOBindEntry::sectionName ( ) const

◆ segmentIndex()

int32_t MachOBindEntry::segmentIndex ( ) const

Definition at line 3915 of file MachOObjectFile.cpp.

◆ segmentName()

StringRef MachOBindEntry::segmentName ( ) const

◆ segmentOffset()

uint64_t MachOBindEntry::segmentOffset ( ) const

Definition at line 3917 of file MachOObjectFile.cpp.

References SegmentOffset().

◆ symbolName()

StringRef MachOBindEntry::symbolName ( ) const

◆ typeName()

StringRef MachOBindEntry::typeName ( ) const

Friends And Related Function Documentation

◆ MachOObjectFile

friend class MachOObjectFile
friend

Definition at line 238 of file MachO.h.


The documentation for this class was generated from the following files: