/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 36 std::string *ErrStr) { in create() argument 39 if (ErrStr) in create() 40 *ErrStr = EC.message(); in create()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy.cpp | 696 std::string ErrStr; in notifyObjectCompiled() local 697 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary); in notifyObjectCompiled() 897 std::string ErrStr; in compileModule() local 899 .setErrorStr(&ErrStr) in compileModule() 903 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule() 1019 char ErrStr[256]; in Codegen() local 1020 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen() 1021 if (V == 0) return ErrorV(ErrStr); in Codegen()
|
D | toy-jit.cpp | 1162 std::string ErrStr; in main() local 1163 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main() 1165 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy.cpp | 808 std::string ErrStr; in compileModule() local 810 .setErrorStr(&ErrStr) in compileModule() 814 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule() 917 char ErrStr[256]; in Codegen() local 918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen() 919 if (V == 0) return ErrorV(ErrStr); in Codegen()
|
D | toy-jit.cpp | 1122 std::string ErrStr; in main() local 1123 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in main() 1125 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 778 std::string ErrStr; in getPointerToFunction() local 780 .setErrorStr(&ErrStr) in getPointerToFunction() 784 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in getPointerToFunction() 877 char ErrStr[256]; in Codegen() local 878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str()); in Codegen() 879 if (V == 0) return ErrorV(ErrStr); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 546 std::string ErrStr; in getPointerToFunction() local 549 .setErrorStr(&ErrStr) in getPointerToFunction() 554 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in getPointerToFunction()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 901 std::string ErrStr; in main() local 904 .setErrorStr(&ErrStr) in main() 908 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 715 std::string ErrStr; in notifyObjectCompiled() local 716 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary); in notifyObjectCompiled() 939 std::string ErrStr; in compileModule() local 941 .setErrorStr(&ErrStr) in compileModule() 945 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in compileModule()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 1022 std::string ErrStr; in main() local 1025 .setErrorStr(&ErrStr) in main() 1029 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 1196 std::string ErrStr; in main() local 1199 .setErrorStr(&ErrStr) in main() 1203 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 1447 std::string ErrStr; in main() local 1450 .setErrorStr(&ErrStr) in main() 1454 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); in main()
|