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

  /external/llvm/tools/lto/
lto.cpp 17 #include "LTOModule.h"
38 return LTOModule::isBitcodeFile(path);
45 return LTOModule::isBitcodeFileForTarget(path, target_triplet_prefix);
51 return LTOModule::isBitcodeFile(mem, length);
60 return LTOModule::isBitcodeFileForTarget(mem, length, target_triplet_prefix);
66 return LTOModule::makeLTOModule(path, sLastErrorString);
72 return LTOModule::makeLTOModule(fd, path, size, sLastErrorString);
81 return LTOModule::makeLTOModule(fd, path, map_size, offset, sLastErrorString);
87 return LTOModule::makeLTOModule(mem, length, sLastErrorString);
LTOModule.h 1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===//
10 // This file declares the LTOModule class.
37 /// LTOModule - C++ class which implements the opaque lto_module_t type.
39 struct LTOModule {
63 LTOModule(llvm::Module *m, llvm::TargetMachine *t);
78 /// makeLTOModule - Create an LTOModule. N.B. These methods take ownership
80 static LTOModule *makeLTOModule(const char* path,
82 static LTOModule *makeLTOModule(int fd, const char *path,
84 static LTOModule *makeLTOModule(int fd, const char *path,
88 static LTOModule *makeLTOModule(const void *mem, size_t length
    [all...]
LTOModule.cpp 1 //===-- LTOModule.cpp - LLVM Link Time Optimizer --------------------------===//
15 #include "LTOModule.h"
144 LTOModule::LTOModule(llvm::Module *m, llvm::TargetMachine *t)
151 bool LTOModule::isBitcodeFile(const void *mem, size_t length) {
156 bool LTOModule::isBitcodeFile(const char *path) {
165 bool LTOModule::isBitcodeFileForTarget(const void *mem, size_t length,
173 bool LTOModule::isBitcodeFileForTarget(const char *path,
183 bool LTOModule::isTargetMatch(MemoryBuffer *buffer, const char *triplePrefix) {
189 /// makeLTOModule - Create an LTOModule. N.B. These methods take ownership o
    [all...]
LTOCodeGenerator.h 65 bool addModule(struct LTOModule*, std::string &errMsg);
LTOCodeGenerator.cpp 16 #include "LTOModule.h"
124 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
285 // construct LTOModule, hand over ownership of module and target
297 LTOModule::getTargetOptions(Options);
  /external/llvm/include/llvm-c/
lto.h 65 typedef struct LTOModule* lto_module_t;

Completed in 76 milliseconds