HomeSort by relevance Sort by last modified time
    Searched refs:ErrStr (Results 1 - 12 of 12) sorted by null

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

Completed in 100 milliseconds