Searched defs:ExprSymbol (Results 1 - 9 of 9) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp596 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
597 assert(ExprSymbol && "Function not found");
601 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp1134 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1135 assert(ExprSymbol && "Function not found");
1139 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp1134 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1135 assert(ExprSymbol && "Function not found");
1139 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp1134 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1135 assert(ExprSymbol && "Function not found");
1139 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp1141 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1142 assert(ExprSymbol && "Function not found");
1146 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp1163 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1164 assert(ExprSymbol && "Function not found");
1168 ExitOnErr(TheJIT->executeRemoteExpr(ExprSymbol.getAddress()));
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp868 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
869 assert(ExprSymbol && "Function not found");
873 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp986 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
987 assert(ExprSymbol && "Function not found");
991 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp1152 auto ExprSymbol = TheJIT->findSymbol("__anon_expr"); local
1153 assert(ExprSymbol && "Function not found");
1157 double (*FP)() = (double (*)())(intptr_t)ExprSymbol.getAddress();

Completed in 227 milliseconds