Home | History | Annotate | Download | only in llvm-c

Lines Matching refs:ObjectFile

26 #include "llvm/Object/ObjectFile.h"
44 // ObjectFile creation
46 void LLVMDisposeObjectFile(LLVMObjectFileRef ObjectFile);
48 // ObjectFile Section iterators
49 LLVMSectionIteratorRef LLVMGetSections(LLVMObjectFileRef ObjectFile);
51 LLVMBool LLVMIsSectionIteratorAtEnd(LLVMObjectFileRef ObjectFile,
57 // ObjectFile Symbol iterators
58 LLVMSymbolIteratorRef LLVMGetSymbols(LLVMObjectFileRef ObjectFile);
60 LLVMBool LLVMIsSymbolIteratorAtEnd(LLVMObjectFileRef ObjectFile,
105 inline ObjectFile *unwrap(LLVMObjectFileRef OF) {
106 return reinterpret_cast<ObjectFile*>(OF);
109 inline LLVMObjectFileRef wrap(const ObjectFile *OF) {
110 return reinterpret_cast<LLVMObjectFileRef>(const_cast<ObjectFile*>(OF));