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

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) {
37 if (M->MaterializeAllPermanently(ErrStr))
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 576 std::string ErrStr;
577 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
579 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 695 std::string ErrStr;
696 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
896 std::string ErrStr;
898 .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/complete/
toy.cpp 719 std::string ErrStr;
720 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
809 std::string ErrStr;
810 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
812 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
1033 std::string ErrStr;
1035 .setErrorStr(&ErrStr)
1040 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 777 std::string ErrStr;
779 .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 807 std::string ErrStr;
809 .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/Chapter5/
toy.cpp 821 std::string ErrStr;
822 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
824 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 939 std::string ErrStr;
940 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
942 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 251 std::string ErrStr;
259 reportBad(CXLoadDiag_CannotLoad, ErrStr);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1103 std::string ErrStr;
1104 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1106 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 165 milliseconds