Searched defs:IRObjectFile (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Object/
H A DIRObjectFile.h1 //===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===//
10 // This file declares the IRObjectFile template class.
28 class IRObjectFile : public SymbolicFile { class in namespace:llvm::object
34 IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> M);
35 ~IRObjectFile() override;
42 return const_cast<IRObjectFile *>(this)->getSymbolGV(Symb);
48 return const_cast<IRObjectFile*>(this)->getModule();
78 static ErrorOr<std::unique_ptr<IRObjectFile>> create(MemoryBufferRef Object,
/external/llvm/lib/Object/
H A DIRObjectFile.cpp1 //===- IRObjectFile.cpp - IR object file implementation ---------*- C++ -*-===//
10 // Part of the IRObjectFile class implementation.
14 #include "llvm/Object/IRObjectFile.h"
38 IRObjectFile::IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> Mod) function in class:IRObjectFile
48 // the current module. This is inspired from IRObjectFile.
49 void IRObjectFile::CollectAsmUndefinedRefs(
125 IRObjectFile::~IRObjectFile() {
163 void IRObjectFile
[all...]

Completed in 131 milliseconds