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 18 #include "LTOModule.h"
39 return LTOModule::isBitcodeFile(path);
46 return LTOModule::isBitcodeFileForTarget(path, target_triplet_prefix);
52 return LTOModule::isBitcodeFile(mem, length);
61 return LTOModule::isBitcodeFileForTarget(mem, length, target_triplet_prefix);
67 return LTOModule::makeLTOModule(path, sLastErrorString);
73 return LTOModule::makeLTOModule(fd, path, size, sLastErrorString);
82 return LTOModule::makeLTOModule(fd, path, file_size, map_size,
89 return LTOModule::makeLTOModule(mem, length, sLastErrorString);
LTOModule.h 1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===//
10 // This file declares the LTOModule class.
36 /// LTOModule - C++ class which implements the opaque lto_module_t type.
38 struct LTOModule {
62 LTOModule(llvm::Module *m, llvm::TargetMachine *t);
77 /// makeLTOModule - Create an LTOModule. N.B. These methods take ownership
79 static LTOModule *makeLTOModule(const char* path,
81 static LTOModule *makeLTOModule(int fd, const char *path,
83 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"
40 LTOModule::LTOModule(llvm::Module *m, llvm::TargetMachine *t)
47 bool LTOModule::isBitcodeFile(const void *mem, size_t length) {
52 bool LTOModule::isBitcodeFile(const char *path) {
58 bool LTOModule::isBitcodeFileForTarget(const void *mem, size_t length,
66 bool LTOModule::isBitcodeFileForTarget(const char *path,
76 bool LTOModule::isTargetMatch(MemoryBuffer *buffer, const char *triplePrefix) {
82 /// makeLTOModule - Create an LTOModule. N.B. These methods take ownership o
    [all...]
LTOCodeGenerator.h 42 bool addModule(struct LTOModule*, std::string &errMsg);
LTOCodeGenerator.cpp 16 #include "LTOModule.h"
83 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
237 // construct LTOModule, hand over ownership of module and target
  /external/llvm/include/llvm-c/
lto.h 65 typedef struct LTOModule* lto_module_t;

Completed in 1397 milliseconds