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

  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 486 static ExecutionEngine *TheExecutionEngine;
517 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
579 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
580 if (!TheExecutionEngine) {
589 TheModule->setDataLayout(TheExecutionEngine->getDataLayout());
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 731 static ExecutionEngine *TheExecutionEngine;
762 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
824 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
825 if (!TheExecutionEngine) {
834 TheModule->setDataLayout(TheExecutionEngine->getDataLayout());
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 842 static ExecutionEngine *TheExecutionEngine;
873 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
942 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
943 if (!TheExecutionEngine) {
952 TheModule->setDataLayout(TheExecutionEngine->getDataLayout());
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 811 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
812 if (!TheExecutionEngine) {
821 TheFPM->add(new DataLayout(*TheExecutionEngine->getDataLayout()));
841 if (TheExecutionEngine)
842 delete TheExecutionEngine;
856 assert(TheExecutionEngine);
857 return TheExecutionEngine->getPointerToFunction(F);
861 return TheExecutionEngine->getPointerToNamedFunction(Name);
881 ExecutionEngine *TheExecutionEngine;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1005 static ExecutionEngine *TheExecutionEngine;
1036 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1106 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1107 if (!TheExecutionEngine) {
1116 TheModule->setDataLayout(TheExecutionEngine->getDataLayout());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1029 static ExecutionEngine *TheExecutionEngine;
1064 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1011 static ExecutionEngine *TheExecutionEngine;
1046 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1124 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1125 if (!TheExecutionEngine) {
    [all...]

Completed in 62 milliseconds