Home
last modified time | relevance | path

Searched refs:TheExecutionEngine (Results 1 – 9 of 9) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp797 static ExecutionEngine *TheExecutionEngine; variable
827 TheExecutionEngine->finalizeObject(); in HandleTopLevelExpression()
829 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
902 TheExecutionEngine = in main()
907 if (!TheExecutionEngine) { in main()
916 TheModule->setDataLayout(*TheExecutionEngine->getDataLayout()); in main()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp912 static ExecutionEngine *TheExecutionEngine; variable
942 TheExecutionEngine->finalizeObject(); in HandleTopLevelExpression()
944 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
1023 TheExecutionEngine = in main()
1028 if (!TheExecutionEngine) { in main()
1037 TheModule->setDataLayout(*TheExecutionEngine->getDataLayout()); in main()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp1085 static ExecutionEngine *TheExecutionEngine; variable
1115 TheExecutionEngine->finalizeObject(); in HandleTopLevelExpression()
1117 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
1197 TheExecutionEngine = in main()
1202 if (!TheExecutionEngine) { in main()
1211 TheModule->setDataLayout(*TheExecutionEngine->getDataLayout()); in main()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp1028 static ExecutionEngine *TheExecutionEngine; variable
1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
1163 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main()
1164 if (!TheExecutionEngine) { in main()
1173 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout())); in main()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp1010 static ExecutionEngine *TheExecutionEngine; variable
1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); in HandleTopLevelExpression()
1123 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main()
1124 if (!TheExecutionEngine) { in main()
1133 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout())); in main()
/external/llvm/docs/tutorial/
DLangImpl4.rst134 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
159 "``TheExecutionEngine``" variable is related to the JIT, which we will
238 static ExecutionEngine *TheExecutionEngine;
243 TheExecutionEngine = EngineBuilder(TheModule).create();
268 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
DLangImpl8.rst114 - TheExecutionEngine->finalizeObject();
116 - void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
130 TheModule->setDataLayout(TheExecutionEngine->getDataLayout());
DLangImpl7.rst436 OurFPM.add(new DataLayout(*TheExecutionEngine->getDataLayout()));
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp1330 static ExecutionEngine *TheExecutionEngine; variable
1448 TheExecutionEngine = in main()
1453 if (!TheExecutionEngine) { in main()
1462 TheModule->setDataLayout(*TheExecutionEngine->getDataLayout()); in main()