HomeSort by relevance Sort by last modified time
    Searched refs:getPointerToFunction (Results 1 - 25 of 25) sorted by null

  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 248 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F1));
263 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F2));
308 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
363 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
393 (void)TheJIT->getPointerToFunction(Func1);
420 TheJIT->getPointerToFunction(func);
464 uintptr_t tmp = (uintptr_t)(TheJIT->getPointerToFunction(foo));
473 TheJIT->getPointerToFunction(func);
476 TheJIT->getPointerToFunction(bar);
495 (intptr_t)TheJIT->getPointerToFunction(F_get_foo_addr))
    [all...]
JITEventListenerTest.cpp 93 void *F1_addr = EE->getPointerToFunction(F1);
94 void *F2_addr = EE->getPointerToFunction(F2);
95 EE->getPointerToFunction(F1); // Should do nothing.
136 void *F1_addr = EE->getPointerToFunction(F1);
139 void *F2_addr = EE->getPointerToFunction(F2);
211 void *F_addr = EE->getPointerToFunction(F);
JITEventListenerTestCommon.h 126 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
140 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
162 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
191 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
MultiJITTest.cpp 152 void *foo1 = EE1->getPointerToFunction(F1);
155 void *foo2 = EE2->getPointerToFunction(F2);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 128 return getPointerToFunction(F);
215 void *getPointerToFunction(Function *F) override { return (void*)F; }
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 117 return (*Jit)->getPointerToFunction(F);
241 void *FPtr = getPointerToFunction(F);
242 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
500 /// getPointerToFunction - This method is used to get the address of the
503 void *JIT::getPointerToFunction(Function *F) {
555 (void)getPointerToFunction(BB->getParent());
626 /// just like JIT::getPointerToFunction().
632 if (!OldAddr) return getPointerToFunction(F);
JIT.h 136 /// getPointerToFunction - This returns the address of the specified function,
139 void *getPointerToFunction(Function *F) override;
166 /// just like JIT::getPointerToFunction().
JITEmitter.cpp 520 Actual = TheJIT->getPointerToFunction(F);
622 // Only lock for getting the Function. The call getPointerToFunction made
653 Result = JR->TheJIT->getPointerToFunction(F);
721 return TheJIT->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 788 virtual void *getPointerToFunction(Function* F) = 0;
855 virtual void *getPointerToFunction(Function* F) {
857 return TheExecutionEngine->getPointerToFunction(F);
904 void *getPointerToFunction(Function* F);
1094 void *MCJITHelper::getPointerToFunction(Function* F) {
1105 void *P = eeIt->second->getPointerToFunction(F);
1110 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 659 void *getPointerToFunction(Function* F);
775 void *MCJITHelper::getPointerToFunction(Function* F) {
786 void *P = eeIt->second->getPointerToFunction(F);
791 void *P = EE->getPointerToFunction(F);
868 void *P = eeIt->second->getPointerToFunction(F);
873 void *P = EE->getPointerToFunction(F);
    [all...]
toy-jit.cpp 1046 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp 108 void *vPtr = TheJIT->getPointerToFunction(Main);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 366 /// getPointerToFunction - The different EE's represent function bodies in
374 virtual void *getPointerToFunction(Function *F) = 0;
386 /// getPointerToFunction for the requirements on destroying F.
392 return getPointerToFunction(F);
409 // JIT and interpreter clients should use getPointerToFunction instead.
434 /// VM::getPointerToFunction().
485 /// getPointerToFunction. If lazy compilation is turned on, the JIT will only
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 657 void *getPointerToFunction(Function* F);
765 void *MCJITHelper::getPointerToFunction(Function* F) {
771 void *P = (*it)->getPointerToFunction(F);
823 return NewEngine->getPointerToFunction(F);
836 return (*it)->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 746 void *getPointerToFunction(Function* F);
864 void *MCJITHelper::getPointerToFunction(Function* F) {
875 void *P = eeIt->second->getPointerToFunction(F);
880 void *P = EE->getPointerToFunction(F);
966 void *P = eeIt->second->getPointerToFunction(F);
971 void *P = EE->getPointerToFunction(F);
    [all...]
toy-jit.cpp 1064 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 281 void *getPointerToFunction(Function *F) override;
MCJIT.cpp 355 void *MCJIT::getPointerToFunction(Function *F) {
436 void *FPtr = getPointerToFunction(F);
437 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 517 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 341 void *fun_ptr = m_execution_engine_ap->getPointerToFunction(function);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 762 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 873 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1036 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 557 return getPointerToFunction(F);
    [all...]

Completed in 519 milliseconds