HomeSort by relevance Sort by last modified time
    Searched refs:ObjectFile (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/lldb/source/Plugins/SymbolVendor/ELF/
SymbolVendorELF.cpp 26 #include "lldb/Symbol/ObjectFile.h"
89 ObjectFile *obj_file = module_sp->GetObjectFile();
132 ObjectFileSP dsym_objfile_sp = ObjectFile::FindPlugin(module_sp, &dsym_fspec, 0, dsym_fspec.GetByteSize(), dsym_file_data_sp, dsym_file_data_offset);
138 dsym_objfile_sp->SetType (ObjectFile::eTypeDebugInfo);
  /external/llvm/lib/DebugInfo/
DWARFUnit.h 22 class ObjectFile;
51 std::unique_ptr<object::ObjectFile> DWOFile;
55 DWOHolder(object::ObjectFile *DWOFile);
  /external/llvm/lib/Object/
ELFObjectFile.cpp 20 ErrorOr<ObjectFile *>
21 ObjectFile::createELFObjectFile(std::unique_ptr<MemoryBuffer> &Obj) {
28 std::unique_ptr<ObjectFile> R;
Android.mk 16 ObjectFile.cpp \
  /external/llvm/include/llvm/ExecutionEngine/
ObjectImage.h 18 #include "llvm/Object/ObjectFile.h"
23 /// ObjectImage - A container class that represents an ObjectFile that has been
62 virtual object::ObjectFile* getObjectFile() const = 0;
  /external/lldb/include/lldb/Symbol/
DWARFCallFrameInfo.h 22 #include "lldb/Symbol/ObjectFile.h"
39 DWARFCallFrameInfo (ObjectFile& objfile,
128 ObjectFile& m_objfile;
ObjectFile.h 1 //===-- ObjectFile.h --------------------------------------------*- C++ -*-===//
26 /// @class ObjectFile ObjectFile.h "lldb/Symbol/ObjectFile.h"
42 /// The number of objects that an ObjectFile contains can be determined
43 /// using the ObjectFile::GetNumObjects() const
45 /// ObjectFile::SelectObjectAtIndex (uint32_t) to change the currently
47 /// ObjectFile::SelectObject(const char *) function.
53 class ObjectFile:
54 public std::enable_shared_from_this<ObjectFile>,
    [all...]
ObjectContainer.h 203 virtual ObjectFile *
  /external/llvm/tools/llvm-size/
llvm-size.cpp 18 #include "llvm/Object/ObjectFile.h"
277 static void PrintObjectSectionSizes(ObjectFile *Obj) {
408 /// @brief Checks to see if the @p o ObjectFile is a Mach-O file and if it is
413 static bool checkMachOAndArchFlags(ObjectFile *o, StringRef file) {
473 if (ObjectFile *o = dyn_cast<ObjectFile>(&*ChildOrErr.get())) {
503 ErrorOr<std::unique_ptr<ObjectFile>> UO = I->getAsObjectFile();
506 if (ObjectFile *o = dyn_cast<ObjectFile>(&*UO.get())) {
535 if (ObjectFile *o = dyn_cast<ObjectFile>(&*ChildOrErr.get()))
    [all...]
  /external/lldb/include/lldb/Core/
Section.h 21 #include "lldb/Symbol/ObjectFile.h"
114 ObjectFile *obj_file,
127 ObjectFile *obj_file,
273 ObjectFile *
278 const ObjectFile *
287 ObjectFile *m_obj_file; // The object file that data for this section should be read from
  /external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.h 18 #include "lldb/Symbol/ObjectFile.h"
28 /// ObjectFile protocol.
30 public lldb_private::ObjectFile
48 static lldb_private::ObjectFile *
56 static lldb_private::ObjectFile *
85 // ObjectFile Protocol.
132 virtual ObjectFile::Type
135 virtual ObjectFile::Strata
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.h 15 #include "lldb/Symbol/ObjectFile.h"
18 public lldb_private::ObjectFile
37 static ObjectFile *
45 static lldb_private::ObjectFile *
121 virtual ObjectFile::Type
124 virtual ObjectFile::Strata
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 26 #include "lldb/Symbol/ObjectFile.h"
92 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile();
93 if (core_objfile && core_objfile->GetType() == ObjectFile::eTypeCoreFile)
210 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile();
347 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile();
413 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile();
462 lldb_private::ObjectFile *
ThreadMachCore.cpp 19 #include "lldb/Symbol/ObjectFile.h"
105 ObjectFile *core_objfile = static_cast<ProcessMachCore *>(process_sp.get())->GetCoreObjectFile ();
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 27 #include "llvm/Object/ObjectFile.h"
198 static std::error_code createDumper(const ObjectFile *Obj, StreamWriter &Writer,
215 static void dumpObject(const ObjectFile *Obj) {
273 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&*ChildOrErr.get()))
299 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(Binary.get()))
  /external/lldb/source/Symbol/
Android.mk 29 ObjectFile.cpp \
  /external/llvm/bindings/python/llvm/tests/
test_object.py 2 from ..object import ObjectFile
10 return ObjectFile(filename=source)
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 103 bool isCompatibleFile(const object::ObjectFile *Obj) const override;
110 createObjectImageFromFile(std::unique_ptr<object::ObjectFile> InputObject);
  /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)
442 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
444 library.LLVMGetSections.argtypes = [ObjectFile]
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.cpp 46 ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx)
269 const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
343 ObjectFile *
347 ObjectFile *Res = nullptr;
353 ErrorOr<std::unique_ptr<ObjectFile>> ParsedObj =
361 Res = cast<ObjectFile>(Bin);
383 ObjectFile *Obj = getObjectFileFromBinary(Binaries.first, ArchName);
384 ObjectFile *DbgObj = getObjectFileFromBinary(Binaries.second, ArchName);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp 30 #include "lldb/Symbol/ObjectFile.h"
59 ObjectFile *oso_objfile = oso_module->GetObjectFile();
212 ObjectFile *oso_objfile = GetObjectFile ();
227 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile();
286 SymbolFileDWARFDebugMap::CreateInstance (ObjectFile* obj_file)
292 SymbolFileDWARFDebugMap::SymbolFileDWARFDebugMap (ObjectFile* ofile) :
338 case ObjectFile::eTypeInvalid:
339 case ObjectFile::eTypeCoreFile:
340 case ObjectFile::eTypeDebugInfo:
341 case ObjectFile::eTypeObjectFile
    [all...]
  /external/llvm/include/llvm/Object/
MachO.h 10 // This file declares the MachOObjectFile class, which implement the ObjectFile
21 #include "llvm/Object/ObjectFile.h"
31 const ObjectFile *OwningObject;
36 DiceRef(DataRefImpl DiceP, const ObjectFile *Owner);
48 const ObjectFile *getObjectFile() const;
52 class MachOObjectFile : public ObjectFile {
251 inline DiceRef::DiceRef(DataRefImpl DiceP, const ObjectFile *Owner)
269 // the OwningObject ObjectFile is a MachOObjectFile a static_cast<> is used for
300 inline const ObjectFile *DiceRef::getObjectFile() const {
  /external/llvm/test/Bindings/Ocaml/
target.ml 96 TargetMachine.emit_to_file m CodeGenFileType.ObjectFile filename machine;
98 TargetMachine.emit_to_file m CodeGenFileType.ObjectFile
104 let buf = TargetMachine.emit_to_memory_buffer m CodeGenFileType.ObjectFile
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 23 #include "lldb/Symbol/ObjectFile.h"
145 ObjectFile *object_file = exe_module->GetObjectFile();
148 if (object_file->GetStrata() != ObjectFile::eStrataKernel)
224 ObjectFile *exe_objfile = exe_module->GetObjectFile();
228 if (exe_objfile->GetType() != ObjectFile::eTypeExecutable || exe_objfile->GetStrata() != ObjectFile::eStrataKernel)
431 ObjectFile *exe_objfile = memory_module_sp->GetObjectFile();
435 if (exe_objfile->GetType() == ObjectFile::eTypeExecutable && exe_objfile->GetStrata() == ObjectFile::eStrataKernel)
556 if (module_sp->GetObjectFile()->GetType() == ObjectFile::eTypeExecutabl
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 43 #include "llvm/Object/ObjectFile.h"
160 static const Target *getTarget(const ObjectFile *Obj = nullptr) {
274 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
561 static void PrintRelocations(const ObjectFile *Obj) {
593 static void PrintSectionHeaders(const ObjectFile *Obj) {
622 static void PrintSectionContents(const ObjectFile *Obj) {
728 static void PrintSymbolTable(const ObjectFile *o) {
807 static void PrintUnwindInfo(const ObjectFile *o) {
820 static void printPrivateFileHeader(const ObjectFile *o) {
828 static void DumpObject(const ObjectFile *o)
    [all...]

Completed in 413 milliseconds

12 3 4 5 6