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