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

  /external/llvm/bindings/python/llvm/tests/
test_object.py 2 from ..object import ObjectFile
10 return ObjectFile(filename=source)
  /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.
16 #include "llvm/Object/ObjectFile.h"
26 void ObjectFile::anchor() { }
28 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source)
38 uint64_t ObjectFile::getSymbolValue(DataRefImpl Ref) const {
47 std::error_code ObjectFile::printSymbolName(raw_ostream &OS,
56 uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; }
58 section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const
    [all...]
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 45 | ObjectFile
  /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')
94 "ObjectFile",
100 class ObjectFile(LLVMObject):
185 Section instances can currently only be created from an ObjectFile
294 assert isinstance(object_file, ObjectFile)
434 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
436 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.
29 class ObjectFile;
42 const ObjectFile *OwningObject;
47 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
63 const ObjectFile *getObject() const;
72 const ObjectFile *OwningObject;
77 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
108 const ObjectFile *getObject() const;
128 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
    [all...]

Completed in 178 milliseconds