OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:addmodule
(Results
1 - 25
of
73
) sorted by null
1
2
3
/external/llvm/test/LTO/X86/
diagnostic-handler-noexit.ll
2
; This test verifies that after
addModule
() encounters an error, the diagnostic
3
; handler does not call exit(1) and instead returns to the caller of
addModule
.
/external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMultipleModuleTest.cpp
35
TheJIT->
addModule
(createEmptyModule("<other module>"));
36
TheJIT->
addModule
(createEmptyModule("<other other module>"));
78
TheJIT->
addModule
(createEmptyModule("<other module>"));
79
TheJIT->
addModule
(createEmptyModule("<other other module>"));
98
TheJIT->
addModule
(std::move(B));
118
TheJIT->
addModule
(std::move(B));
139
TheJIT->
addModule
(std::move(B));
160
TheJIT->
addModule
(std::move(B));
181
TheJIT->
addModule
(std::move(B));
221
TheJIT->
addModule
(std::move(B))
[
all
...]
/prebuilts/gdb/darwin-x86/lib/python2.7/config/
config.c.in
25
/* --
ADDMODULE
MARKER 1 -- */
35
/* --
ADDMODULE
MARKER 2 -- */
config.c
36
/* --
ADDMODULE
MARKER 1 -- */
56
/* --
ADDMODULE
MARKER 2 -- */
/prebuilts/gdb/linux-x86/lib/python2.7/config/
config.c.in
25
/* --
ADDMODULE
MARKER 1 -- */
35
/* --
ADDMODULE
MARKER 2 -- */
config.c
37
/* --
ADDMODULE
MARKER 1 -- */
58
/* --
ADDMODULE
MARKER 2 -- */
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
config.c.in
25
/* --
ADDMODULE
MARKER 1 -- */
35
/* --
ADDMODULE
MARKER 2 -- */
config.c
36
/* --
ADDMODULE
MARKER 1 -- */
56
/* --
ADDMODULE
MARKER 2 -- */
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
config.c.in
25
/* --
ADDMODULE
MARKER 1 -- */
35
/* --
ADDMODULE
MARKER 2 -- */
config.c
37
/* --
ADDMODULE
MARKER 1 -- */
58
/* --
ADDMODULE
MARKER 2 -- */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
makeconfig.py
9
m1 = re.compile('--
ADDMODULE
MARKER 1 --')
10
m2 = re.compile('--
ADDMODULE
MARKER 2 --')
/external/swiftshader/third_party/LLVM/include/llvm/
LLVMContext.h
91
///
addModule
- Register a module as being instantiated in this context. If
93
void
addModule
(Module*);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
KaleidoscopeJIT.h
57
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
/external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.h
37
bool
addModule
(struct LTOModule*, std::string& errMsg);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
KaleidoscopeJIT.h
100
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
172
addModule
(std::move(M));
/external/llvm/docs/tutorial/
BuildingAJIT1.rst
63
1. Handle
addModule
(Module &M) -- Make the given IR module available for
77
Handle H = J.
addModule
(*M);
156
addModule
method, and can be passed to the removeModule method to remove a
185
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
214
Now we come to the first of our JIT API methods:
addModule
. This method is
274
directly from our
addModule
method.
BuildingAJIT2.rst
122
OptimizeLayer in our key methods:
addModule
, findSymbol, and removeModule. In
123
addModule
we need to be careful to replace both references: the findSymbol call
156
addModule
the OptimizeLayer will call our optimizeModule function before passing
158
called optimizeModule directly in our
addModule
function and not gone to the
/external/llvm/tools/llvm-lto/
llvm-lto.cpp
445
ThinGenerator.
addModule
(Filename, InputBuffers.back()->getBuffer());
553
ThinGenerator.
addModule
(MemBuffer->getBufferIdentifier(),
584
ThinGenerator.
addModule
(MemBuffer->getBufferIdentifier(),
672
ThinGenerator.
addModule
(Filename, InputBuffers.back()->getBuffer());
794
} else if (!CodeGen.
addModule
(Module.get())) {
795
// Print a message here so that we know
addModule
() did not abort.
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
KaleidoscopeJIT.h
116
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
200
addModule
(std::move(M));
/external/llvm/include/llvm/IR/
LLVMContext.h
243
///
addModule
- Register a module as being instantiated in this context. If
245
void
addModule
(Module*);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
KaleidoscopeJIT.h
67
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
KaleidoscopeJIT.h
77
ModuleHandle
addModule
(std::unique_ptr<Module> M) {
/external/llvm/examples/Kaleidoscope/include/
KaleidoscopeJIT.h
56
ModuleHandleT
addModule
(std::unique_ptr<Module> M) {
/external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp
82
// If so, additional functions:
addModule
, removeModule, FindFunctionNamed,
91
OwnedModules.
addModule
(std::move(First));
107
void MCJIT::
addModule
(std::unique_ptr<Module> M) {
113
OwnedModules.
addModule
(std::move(M));
/external/llvm/tools/lli/
OrcLazyJIT.cpp
146
auto MainHandle = J.
addModule
(std::move(M));
Completed in 803 milliseconds
1
2
3