Home
last modified time | relevance | path

Searched refs:getPointerToFunction (Results 1 – 17 of 17) sorted by relevance

/external/llvm/unittests/ExecutionEngine/JIT/
DJITTest.cpp254 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F1)); in TEST()
269 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F2)); in TEST()
314 (intptr_t)TheJIT->getPointerToFunction(TestFunction)); in TEST_F()
369 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1)); in TEST_F()
399 (void)TheJIT->getPointerToFunction(Func1); in TEST_F()
426 TheJIT->getPointerToFunction(func); in TEST_F()
490 uintptr_t tmp = (uintptr_t)(TheJIT->getPointerToFunction(foo)); in TEST_F()
499 TheJIT->getPointerToFunction(func); in TEST_F()
502 TheJIT->getPointerToFunction(bar); in TEST_F()
521 (intptr_t)TheJIT->getPointerToFunction(F_get_foo_addr)); in TEST_F()
[all …]
DJITEventListenerTest.cpp95 void *F1_addr = EE->getPointerToFunction(F1); in TEST_F()
96 void *F2_addr = EE->getPointerToFunction(F2); in TEST_F()
97 EE->getPointerToFunction(F1); // Should do nothing. in TEST_F()
138 void *F1_addr = EE->getPointerToFunction(F1); in TEST_F()
141 void *F2_addr = EE->getPointerToFunction(F2); in TEST_F()
213 void *F_addr = EE->getPointerToFunction(F); in TEST_F()
DMultiJITTest.cpp148 void *foo1 = EE1->getPointerToFunction(F1); in TEST()
151 void *foo2 = EE2->getPointerToFunction(F2); in TEST()
/external/llvm/lib/ExecutionEngine/JIT/
DJIT.cpp250 return (*Jit)->getPointerToFunction(F); in getPointerToNamedFunction()
391 void *FPtr = getPointerToFunction(F); in runFunction()
649 void *JIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in JIT
701 (void)getPointerToFunction(BB->getParent()); in getPointerToBasicBlock()
758 if (OldAddr == 0) { return getPointerToFunction(F); } in recompileAndRelinkFunction()
DJIT.h139 void *getPointerToFunction(Function *F);
DJITEmitter.cpp540 Actual = TheJIT->getPointerToFunction(F); in getLazyFunctionStub()
672 Result = JR->TheJIT->getPointerToFunction(F); in JITCompilerFn()
730 return TheJIT->getPointerToFunction(F); in getPointerToGlobal()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp97 void *MCJIT::getPointerToFunction(Function *F) { in getPointerToFunction() function in MCJIT
125 void *FPtr = getPointerToFunction(F); in runFunction()
DMCJIT.h52 virtual void *getPointerToFunction(Function *F);
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h122 return getPointerToFunction(F); in recompileAndRelinkFunction()
203 void *getPointerToFunction(Function *F) { return (void*)F; } in getPointerToFunction() function
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h290 virtual void *getPointerToFunction(Function *F) = 0;
303 return getPointerToFunction(F); in getPointerToFunctionOrStub()
/external/llvm/tools/lli/
Dlli.cpp263 EE->getPointerToFunction(Fn); in main()
/external/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp515 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp760 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp871 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp1034 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1592 reinterpret_cast<intptr_t>(engine->getPointerToFunction(function))); in runExceptionThrow()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp507 return getPointerToFunction(F); in getPointerToGlobal()