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

  /external/llvm/include/llvm/LTO/
LTOModule.h 1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===//
10 // This file declares the LTOModule class.
39 struct LTOModule {
62 LTOModule(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM);
63 LTOModule(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM,
67 ~LTOModule();
82 /// Create an LTOModule. N.B. These methods take ownership of the buffer. The
90 static LTOModule *createFromFile(const char *path, TargetOptions options,
92 static LTOModule *createFromOpenFile(int fd, const char *path, size_t size,
95 static LTOModule *createFromOpenFileSlice(int fd, const char *path
    [all...]
  /external/llvm/lib/LTO/
LTOModule.cpp 1 //===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
15 #include "llvm/LTO/LTOModule.h"
52 LTOModule::LTOModule(std::unique_ptr<object::IRObjectFile> Obj,
56 LTOModule::LTOModule(std::unique_ptr<object::IRObjectFile> Obj,
61 LTOModule::~LTOModule() {}
65 bool LTOModule::isBitcodeFile(const void *Mem, size_t Length) {
71 bool LTOModule::isBitcodeFile(const char *Path)
    [all...]

Completed in 104 milliseconds