OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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,
88
static LTOModule *
makeLTOModule
(const void *mem, size_t length,
181
///
makeLTOModule
- Create an LTOModule (private version). N.B. This
183
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, map_size, offset, sLastErrorString);
87
return LTOModule::
makeLTOModule
(mem, length, sLastErrorString);
LTOModule.cpp
189
///
makeLTOModule
- Create an LTOModule. N.B. These methods take ownership of
191
LTOModule *LTOModule::
makeLTOModule
(const char *path, std::string &errMsg) {
197
return
makeLTOModule
(buffer.take(), errMsg);
200
LTOModule *LTOModule::
makeLTOModule
(int fd, const char *path,
202
return
makeLTOModule
(fd, path, size, 0, errMsg);
205
LTOModule *LTOModule::
makeLTOModule
(int fd, const char *path,
215
return
makeLTOModule
(buffer.take(), errMsg);
218
LTOModule *LTOModule::
makeLTOModule
(const void *mem, size_t length,
223
return
makeLTOModule
(buffer.take(), errMsg);
248
LTOModule *LTOModule::
makeLTOModule
(MemoryBuffer *buffer
[
all
...]
Completed in 40 milliseconds