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

  /external/llvm/tools/lto/
LTOModule.h 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,
89 static LTOModule *makeLTOModule(const void *mem, size_t length,
182 /// makeLTOModule - Create an LTOModule (private version). N.B. This
184 static LTOModule *makeLTOModule(llvm::MemoryBuffer *buffer,
lto.cpp 66 return LTOModule::makeLTOModule(path, sLastErrorString);
72 return LTOModule::makeLTOModule(fd, path, size, sLastErrorString);
81 return LTOModule::makeLTOModule(fd, path, file_size, map_size,
88 return LTOModule::makeLTOModule(mem, length, sLastErrorString);
LTOModule.cpp 200 /// makeLTOModule - Create an LTOModule. N.B. These methods take ownership of
202 LTOModule *LTOModule::makeLTOModule(const char *path, std::string &errMsg) {
208 return makeLTOModule(buffer.take(), errMsg);
211 LTOModule *LTOModule::makeLTOModule(int fd, const char *path,
213 return makeLTOModule(fd, path, size, size, 0, errMsg);
216 LTOModule *LTOModule::makeLTOModule(int fd, const char *path,
227 return makeLTOModule(buffer.take(), errMsg);
230 LTOModule *LTOModule::makeLTOModule(const void *mem, size_t length,
235 return makeLTOModule(buffer.take(), errMsg);
263 LTOModule *LTOModule::makeLTOModule(MemoryBuffer *buffer
    [all...]

Completed in 20 milliseconds