LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Typedefs | Functions
Object file reading and writing
Collaboration diagram for Object file reading and writing:

Typedefs

typedef struct
LLVMOpaqueObjectFile * 
LLVMObjectFileRef
 
typedef struct
LLVMOpaqueSectionIterator * 
LLVMSectionIteratorRef
 
typedef struct
LLVMOpaqueSymbolIterator * 
LLVMSymbolIteratorRef
 
typedef struct
LLVMOpaqueRelocationIterator * 
LLVMRelocationIteratorRef
 

Functions

LLVMObjectFileRef LLVMCreateObjectFile (LLVMMemoryBufferRef MemBuf)
 
void LLVMDisposeObjectFile (LLVMObjectFileRef ObjectFile)
 
LLVMSectionIteratorRef LLVMGetSections (LLVMObjectFileRef ObjectFile)
 
void LLVMDisposeSectionIterator (LLVMSectionIteratorRef SI)
 
LLVMBool LLVMIsSectionIteratorAtEnd (LLVMObjectFileRef ObjectFile, LLVMSectionIteratorRef SI)
 
void LLVMMoveToNextSection (LLVMSectionIteratorRef SI)
 
void LLVMMoveToContainingSection (LLVMSectionIteratorRef Sect, LLVMSymbolIteratorRef Sym)
 
LLVMSymbolIteratorRef LLVMGetSymbols (LLVMObjectFileRef ObjectFile)
 
void LLVMDisposeSymbolIterator (LLVMSymbolIteratorRef SI)
 
LLVMBool LLVMIsSymbolIteratorAtEnd (LLVMObjectFileRef ObjectFile, LLVMSymbolIteratorRef SI)
 
void LLVMMoveToNextSymbol (LLVMSymbolIteratorRef SI)
 
const char * LLVMGetSectionName (LLVMSectionIteratorRef SI)
 
uint64_t LLVMGetSectionSize (LLVMSectionIteratorRef SI)
 
const char * LLVMGetSectionContents (LLVMSectionIteratorRef SI)
 
uint64_t LLVMGetSectionAddress (LLVMSectionIteratorRef SI)
 
LLVMBool LLVMGetSectionContainsSymbol (LLVMSectionIteratorRef SI, LLVMSymbolIteratorRef Sym)
 
LLVMRelocationIteratorRef LLVMGetRelocations (LLVMSectionIteratorRef Section)
 
void LLVMDisposeRelocationIterator (LLVMRelocationIteratorRef RI)
 
LLVMBool LLVMIsRelocationIteratorAtEnd (LLVMSectionIteratorRef Section, LLVMRelocationIteratorRef RI)
 
void LLVMMoveToNextRelocation (LLVMRelocationIteratorRef RI)
 
const char * LLVMGetSymbolName (LLVMSymbolIteratorRef SI)
 
uint64_t LLVMGetSymbolAddress (LLVMSymbolIteratorRef SI)
 
uint64_t LLVMGetSymbolFileOffset (LLVMSymbolIteratorRef SI)
 
uint64_t LLVMGetSymbolSize (LLVMSymbolIteratorRef SI)
 
uint64_t LLVMGetRelocationAddress (LLVMRelocationIteratorRef RI)
 
uint64_t LLVMGetRelocationOffset (LLVMRelocationIteratorRef RI)
 
LLVMSymbolIteratorRef LLVMGetRelocationSymbol (LLVMRelocationIteratorRef RI)
 
uint64_t LLVMGetRelocationType (LLVMRelocationIteratorRef RI)
 
const char * LLVMGetRelocationTypeName (LLVMRelocationIteratorRef RI)
 
const char * LLVMGetRelocationValueString (LLVMRelocationIteratorRef RI)
 

Detailed Description

Typedef Documentation

typedef struct LLVMOpaqueObjectFile* LLVMObjectFileRef

Definition at line 37 of file Object.h.

typedef struct LLVMOpaqueRelocationIterator* LLVMRelocationIteratorRef

Definition at line 40 of file Object.h.

typedef struct LLVMOpaqueSectionIterator* LLVMSectionIteratorRef

Definition at line 38 of file Object.h.

typedef struct LLVMOpaqueSymbolIterator* LLVMSymbolIteratorRef

Definition at line 39 of file Object.h.

Function Documentation

LLVMObjectFileRef LLVMCreateObjectFile ( LLVMMemoryBufferRef  MemBuf)
void LLVMDisposeObjectFile ( LLVMObjectFileRef  ObjectFile)

Definition at line 65 of file Object.cpp.

References llvm::unwrap().

void LLVMDisposeRelocationIterator ( LLVMRelocationIteratorRef  RI)

Definition at line 160 of file Object.cpp.

References llvm::unwrap().

void LLVMDisposeSectionIterator ( LLVMSectionIteratorRef  SI)

Definition at line 75 of file Object.cpp.

References llvm::unwrap().

void LLVMDisposeSymbolIterator ( LLVMSymbolIteratorRef  SI)

Definition at line 102 of file Object.cpp.

References llvm::unwrap().

uint64_t LLVMGetRelocationAddress ( LLVMRelocationIteratorRef  RI)

Definition at line 207 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

uint64_t LLVMGetRelocationOffset ( LLVMRelocationIteratorRef  RI)

Definition at line 214 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

LLVMRelocationIteratorRef LLVMGetRelocations ( LLVMSectionIteratorRef  Section)

Definition at line 155 of file Object.cpp.

References llvm::unwrap(), and llvm::wrap().

LLVMSymbolIteratorRef LLVMGetRelocationSymbol ( LLVMRelocationIteratorRef  RI)

Definition at line 221 of file Object.cpp.

References llvm::unwrap(), and llvm::wrap().

uint64_t LLVMGetRelocationType ( LLVMRelocationIteratorRef  RI)
const char* LLVMGetRelocationTypeName ( LLVMRelocationIteratorRef  RI)
const char* LLVMGetRelocationValueString ( LLVMRelocationIteratorRef  RI)
uint64_t LLVMGetSectionAddress ( LLVMSectionIteratorRef  SI)

Definition at line 139 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

LLVMBool LLVMGetSectionContainsSymbol ( LLVMSectionIteratorRef  SI,
LLVMSymbolIteratorRef  Sym 
)

Definition at line 146 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

const char* LLVMGetSectionContents ( LLVMSectionIteratorRef  SI)

Definition at line 132 of file Object.cpp.

References llvm::StringRef::data(), llvm::report_fatal_error(), and llvm::unwrap().

const char* LLVMGetSectionName ( LLVMSectionIteratorRef  SI)
LLVMSectionIteratorRef LLVMGetSections ( LLVMObjectFileRef  ObjectFile)

Definition at line 70 of file Object.cpp.

References llvm::unwrap(), and llvm::wrap().

uint64_t LLVMGetSectionSize ( LLVMSectionIteratorRef  SI)

Definition at line 125 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

uint64_t LLVMGetSymbolAddress ( LLVMSymbolIteratorRef  SI)

Definition at line 185 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

uint64_t LLVMGetSymbolFileOffset ( LLVMSymbolIteratorRef  SI)

Definition at line 192 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

const char* LLVMGetSymbolName ( LLVMSymbolIteratorRef  SI)
LLVMSymbolIteratorRef LLVMGetSymbols ( LLVMObjectFileRef  ObjectFile)

Definition at line 97 of file Object.cpp.

References llvm::unwrap(), and llvm::wrap().

uint64_t LLVMGetSymbolSize ( LLVMSymbolIteratorRef  SI)

Definition at line 199 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

LLVMBool LLVMIsRelocationIteratorAtEnd ( LLVMSectionIteratorRef  Section,
LLVMRelocationIteratorRef  RI 
)

Definition at line 164 of file Object.cpp.

References llvm::unwrap().

LLVMBool LLVMIsSectionIteratorAtEnd ( LLVMObjectFileRef  ObjectFile,
LLVMSectionIteratorRef  SI 
)

Definition at line 79 of file Object.cpp.

References llvm::unwrap().

LLVMBool LLVMIsSymbolIteratorAtEnd ( LLVMObjectFileRef  ObjectFile,
LLVMSymbolIteratorRef  SI 
)

Definition at line 106 of file Object.cpp.

References llvm::unwrap().

void LLVMMoveToContainingSection ( LLVMSectionIteratorRef  Sect,
LLVMSymbolIteratorRef  Sym 
)

Definition at line 90 of file Object.cpp.

References llvm::report_fatal_error(), and llvm::unwrap().

void LLVMMoveToNextRelocation ( LLVMRelocationIteratorRef  RI)
void LLVMMoveToNextSection ( LLVMSectionIteratorRef  SI)
void LLVMMoveToNextSymbol ( LLVMSymbolIteratorRef  SI)