/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/ |
MCJIT.h | 58 virtual GenericValue runFunction(Function *F,
|
MCJIT.cpp | 122 GenericValue MCJIT::runFunction(Function *F,
|
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
MultiJITTest.cpp | 90 GenericValue gv1 = EE1->runFunction(FooF1, noargs); 91 GenericValue gv2 = EE2->runFunction(FooF2, noargs); 120 GenericValue gv1 = EE1->runFunction(FooF1, noargs); 121 GenericValue gv2 = EE2->runFunction(FooF2, noargs);
|
/external/llvm/examples/HowToUseJIT/ |
HowToUseJIT.cpp | 133 GenericValue gv = EE->runFunction(FooF, noargs);
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.cpp | 77 GenericValue Interpreter::runFunction(Function *F,
|
Interpreter.h | 127 GenericValue runFunction(Function *F,
|
/external/swiftshader/third_party/LLVM/examples/HowToUseJIT/ |
HowToUseJIT.cpp | 125 GenericValue gv = EE->runFunction(FooF, noargs);
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/ |
Interpreter.cpp | 75 Interpreter::runFunction(Function *F,
|
Interpreter.h | 115 virtual GenericValue runFunction(Function *F,
|
/external/llvm/examples/BrainF/ |
BrainFDriver.cpp | 162 GenericValue gv = ee->runFunction(brainf_func, args);
|
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 143 GenericValue GV = EE->runFunction(FibF, Args);
|
/external/llvm/lib/ExecutionEngine/Orc/ |
OrcMCJITReplacement.cpp | 27 OrcMCJITReplacement::runFunction(Function *F,
|
OrcMCJITReplacement.h | 233 GenericValue runFunction(Function *F,
|
/external/swiftshader/third_party/LLVM/examples/BrainF/ |
BrainFDriver.cpp | 147 GenericValue gv = ee->runFunction(brainf_func, args);
|
/external/swiftshader/third_party/LLVM/examples/Fibonacci/ |
fibonacci.cpp | 131 GenericValue GV = EE->runFunction(FibF, Args);
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
JIT.h | 115 /// runFunction - Start execution with the specified function and arguments. 117 virtual GenericValue runFunction(Function *F,
|
JIT.cpp | 387 GenericValue JIT::runFunction(Function *F, 546 GenericValue Result = runFunction(Stub, std::vector<GenericValue>());
|
/external/llvm/examples/ParallelJIT/ |
ParallelJIT.cpp | 253 GenericValue gv = p->EE->runFunction(p->F, Args);
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
MCJIT.h | 263 GenericValue runFunction(Function *F,
|
MCJIT.cpp | 493 GenericValue MCJIT::runFunction(Function *F, ArrayRef<GenericValue> ArgValues) {
|
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/ |
ParallelJIT.cpp | 232 GenericValue gv = p->EE->runFunction(p->F, Args);
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 197 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec);
|
/external/llvm/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 215 /// runFunction - Execute the specified function with the specified arguments, 217 virtual GenericValue runFunction(Function *F, 281 /// runFunctionAsMain - This is a helper function which wraps runFunction to
|
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 226 /// runFunction - Execute the specified function with the specified arguments, 228 virtual GenericValue runFunction(Function *F, 244 /// runFunctionAsMain - This is a helper function which wraps runFunction to
|
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 248 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec);
|