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

  /external/llvm/include/llvm/Object/
IRObjectFile.h 1 //===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===//
10 // This file declares the IRObjectFile template class.
27 class IRObjectFile : public SymbolicFile {
33 IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> M);
34 ~IRObjectFile() override;
41 return const_cast<IRObjectFile *>(this)->getSymbolGV(Symb);
47 return const_cast<IRObjectFile*>(this)->getModule();
68 static ErrorOr<std::unique_ptr<IRObjectFile>> create(MemoryBufferRef Object,
  /external/llvm/lib/Object/
IRObjectFile.cpp 1 //===- 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)
114 IRObjectFile::~IRObjectFile() {
152 void IRObjectFile::moveSymbolNext(DataRefImpl &Symb) const {
189 std::error_code IRObjectFile::printSymbolName(raw_ostream &OS,
210 uint32_t IRObjectFile::getSymbolFlags(DataRefImpl Symb) const
    [all...]

Completed in 904 milliseconds