Searched refs:ErrStr (Results 1 - 12 of 12) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp36 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 Dtoy.cpp696 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 Dtoy-jit.cpp1162 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 Dtoy.cpp778 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 Dtoy.cpp808 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 Dtoy-jit.cpp1122 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 Dtoy.cpp546 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 Dtoy.cpp901 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 Dtoy.cpp1022 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 Dtoy.cpp715 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 Dtoy.cpp1196 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 Dtoy.cpp1447 std::string ErrStr; local
1450 .setErrorStr(&ErrStr)
1454 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());

Completed in 142 milliseconds