Searched defs:LTOModule (Results 1 - 4 of 4) sorted by relevance
/external/llvm/lib/LTO/ |
H A D | LTOModule.cpp | 1 //===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===// 15 #include "llvm/LTO/legacy/LTOModule.h" 52 LTOModule::LTOModule(std::unique_ptr<object::IRObjectFile> Obj, function in class:LTOModule 56 LTOModule::~LTOModule() {} 60 bool LTOModule::isBitcodeFile(const void *Mem, size_t Length) { 66 bool LTOModule::isBitcodeFile(const char *Path) { 77 bool LTOModule::isThinLTO() { 89 bool LTOModule [all...] |
/external/swiftshader/third_party/LLVM/tools/lto/ |
H A D | LTOModule.h | 1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===// 10 // This file declares the LTOModule class. 41 struct LTOModule { struct 52 static LTOModule* makeLTOModule(const char* path, 54 static LTOModule* makeLTOModule(int fd, const char *path, 57 static LTOModule* makeLTOModule(int fd, const char *path, 62 static LTOModule* makeLTOModule(const void* mem, size_t length, 77 LTOModule(llvm::Module* m, llvm::TargetMachine* t); 103 static LTOModule* makeLTOModule(llvm::MemoryBuffer* buffer,
|
H A D | LTOModule.cpp | 1 //===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===// 15 #include "LTOModule.h" 49 bool LTOModule::isBitcodeFile(const void *mem, size_t length) { 54 bool LTOModule::isBitcodeFile(const char *path) { 58 bool LTOModule::isBitcodeFileForTarget(const void *mem, size_t length, 67 bool LTOModule::isBitcodeFileForTarget(const char *path, 76 bool LTOModule::isTargetMatch(MemoryBuffer *buffer, const char *triplePrefix) { 84 LTOModule::LTOModule(Module *m, TargetMachine *t) function in class:LTOModule 89 LTOModule *LTOModul [all...] |
/external/llvm/include/llvm/LTO/legacy/ |
H A D | LTOModule.h | 1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===// 10 // This file declares the LTOModule class. 37 struct LTOModule { struct in namespace:llvm 59 LTOModule(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM); 62 ~LTOModule(); 85 /// Create an LTOModule. N.B. These methods take ownership of the buffer. The 93 static ErrorOr<std::unique_ptr<LTOModule>> 96 static ErrorOr<std::unique_ptr<LTOModule>> 99 static ErrorOr<std::unique_ptr<LTOModule>> 103 static ErrorOr<std::unique_ptr<LTOModule>> [all...] |
Completed in 149 milliseconds