Home
last modified time | relevance | path

Searched refs:makeLTOModule (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/lto/
DLTOModule.h52 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,
103 static LTOModule* makeLTOModule(llvm::MemoryBuffer* buffer,
Dlto.cpp91 return LTOModule::makeLTOModule(path, sLastErrorString); in lto_module_create()
100 return LTOModule::makeLTOModule(fd, path, size, sLastErrorString); in lto_module_create_from_fd()
112 return LTOModule::makeLTOModule(fd, path, file_size, map_size, in lto_module_create_from_fd_at_offset()
122 return LTOModule::makeLTOModule(mem, length, sLastErrorString); in lto_module_create_from_memory()
DLTOModule.cpp89 LTOModule *LTOModule::makeLTOModule(const char *path, in makeLTOModule() function in LTOModule
96 return makeLTOModule(buffer.take(), errMsg); in makeLTOModule()
99 LTOModule *LTOModule::makeLTOModule(int fd, const char *path, in makeLTOModule() function in LTOModule
102 return makeLTOModule(fd, path, size, size, 0, errMsg); in makeLTOModule()
105 LTOModule *LTOModule::makeLTOModule(int fd, const char *path, in makeLTOModule() function in LTOModule
116 return makeLTOModule(buffer.take(), errMsg); in makeLTOModule()
126 LTOModule *LTOModule::makeLTOModule(const void *mem, size_t length, in makeLTOModule() function in LTOModule
131 return makeLTOModule(buffer.take(), errMsg); in makeLTOModule()
134 LTOModule *LTOModule::makeLTOModule(MemoryBuffer *buffer, in makeLTOModule() function in LTOModule
/external/llvm/lib/LTO/
DLTOModule.cpp119 return makeLTOModule(Buffer->getMemBufferRef(), options, Context, in createFromFile()
140 return makeLTOModule(Buffer->getMemBufferRef(), options, Context, in createFromOpenFileSlice()
150 return makeLTOModule(Buffer, options, Context, /* ShouldBeLazy */ false); in createFromBuffer()
162 makeLTOModule(Buffer, options, *Context, /* ShouldBeLazy */ true); in createInLocalContext()
199 LTOModule::makeLTOModule(MemoryBufferRef Buffer, const TargetOptions &options, in makeLTOModule() function in LTOModule
/external/llvm/include/llvm/LTO/legacy/
DLTOModule.h208 makeLTOModule(MemoryBufferRef Buffer, const TargetOptions &options,