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 484 static ExecutionEngine *TheExecutionEngine;
515 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
577 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
578 if (!TheExecutionEngine) {
587 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 729 static ExecutionEngine *TheExecutionEngine;
760 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
822 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
823 if (!TheExecutionEngine) {
832 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 840 static ExecutionEngine *TheExecutionEngine;
871 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
940 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
941 if (!TheExecutionEngine) {
950 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 810 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
811 if (!TheExecutionEngine) {
820 TheFPM->add(new DataLayout(*TheExecutionEngine->getDataLayout()));
840 if (TheExecutionEngine)
841 delete TheExecutionEngine;
855 assert(TheExecutionEngine);
856 return TheExecutionEngine->getPointerToFunction(F);
860 return TheExecutionEngine->getPointerToNamedFunction(Name);
880 ExecutionEngine *TheExecutionEngine;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1003 static ExecutionEngine *TheExecutionEngine;
1034 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1104 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1105 if (!TheExecutionEngine) {
1114 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1028 static ExecutionEngine *TheExecutionEngine;
1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1010 static ExecutionEngine *TheExecutionEngine;
1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1123 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1124 if (!TheExecutionEngine) {
    [all...]

Completed in 4071 milliseconds