HomeSort by relevance Sort by last modified time
    Searched defs:ObjectFile (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Object/
ObjectFile.cpp 1 //===- ObjectFile.cpp - File format independent object file -----*- C++ -*-===//
10 // This file defines a file format independent ObjectFile class.
14 #include "llvm/Object/ObjectFile.h"
24 void ObjectFile::anchor() { }
26 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source)
30 error_code ObjectFile::getSymbolAlignment(DataRefImpl DRI,
36 section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
40 ObjectFile *ObjectFile::createObjectFile(MemoryBuffer *Object)
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_object.py 2 from ..object import ObjectFile
10 return ObjectFile(filename=source)
  /external/llvm/tools/bugpoint/
ToolRunner.h 48 enum FileType { AsmFile, ObjectFile, CFile };
  /external/llvm/bindings/python/llvm/
object.py 18 symbols, and relocations. These are represented by the classes ObjectFile,
24 The only way to use this module is to start by creating an ObjectFile. You can
25 create an ObjectFile by loading a file (specified by its path) or by creating a
51 obj = ObjectFile(filename='/bin/ls')
91 "ObjectFile",
97 class ObjectFile(LLVMObject):
182 Section instances can currently only be created from an ObjectFile
286 assert isinstance(object_file, ObjectFile)
443 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
445 library.LLVMGetSections.argtypes = [ObjectFile]
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 1 //===- ObjectFile.h - File format independent object file -------*- C++ -*-===//
10 // This file declares a file format independent ObjectFile class.
28 class ObjectFile;
94 const ObjectFile *OwningObject;
99 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
127 const ObjectFile *getObjectFile() const;
138 const ObjectFile *OwningObject;
143 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
181 const ObjectFile *OwningObject;
207 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
    [all...]

Completed in 1407 milliseconds