Home
last modified time | relevance | path

Searched refs:ErrorMsg (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp104 : Value(0), ErrorMsg(std::move(ErrorMsg)) {} in EvalResult()
111 std::string ErrorMsg; member in llvm::RuntimeDyldCheckerExprEval::EvalResult
138 ErrorMsg += SubExpr; in unexpectedToken()
140 ErrorMsg += "'"; in unexpectedToken()
142 ErrorMsg += " "; in unexpectedToken()
143 ErrorMsg += ErrText; in unexpectedToken()
368 if (ErrorMsg != "") in evalStubAddr()
405 if (ErrorMsg != "") in evalSectionAddr()
814 ErrorMsg += "\n"; in findSectionAddrInfo()
835 if (ErrorMsg != "") in getSectionAddr()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DFileUtilities.cpp87 std::string *ErrorMsg) { in CompareNumbers() argument
132 if (ErrorMsg) { in CompareNumbers()
133 *ErrorMsg = "FP Comparison failed, not a numeric difference between '"; in CompareNumbers()
134 *ErrorMsg += F1P[0]; in CompareNumbers()
135 *ErrorMsg += "' and '"; in CompareNumbers()
136 *ErrorMsg += F2P[0]; in CompareNumbers()
137 *ErrorMsg += "'"; in CompareNumbers()
153 if (ErrorMsg) { in CompareNumbers()
154 raw_string_ostream(*ErrorMsg) in CompareNumbers()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DCompilationDatabase.cpp263 std::string &ErrorMsg) { in stripPositionalArgs() argument
265 llvm::raw_string_ostream Output(ErrorMsg); in stripPositionalArgs()
322 ErrorMsg = "warning: no compile jobs found\n"; in stripPositionalArgs()
346 std::string &ErrorMsg, in loadFromCommandLine() argument
348 ErrorMsg.clear(); in loadFromCommandLine()
358 if (!stripPositionalArgs(CommandLine, StrippedArgs, ErrorMsg)) in loadFromCommandLine()
364 FixedCompilationDatabase::loadFromFile(StringRef Path, std::string &ErrorMsg) { in loadFromFile() argument
365 ErrorMsg.clear(); in loadFromFile()
369 ErrorMsg = "Error while opening fixed database: " + Result.message(); in loadFromFile()
H A DAllTUsExecution.cpp87 std::string ErrorMsg; in execute() local
91 ErrorMsg += Err.str(); in execute()
152 if (!ErrorMsg.empty()) in execute()
153 return make_string_error(ErrorMsg); in execute()
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctionsDlsym.cpp29 const char *ErrorMsg = dlerror(); in GetFnPtr() local
31 if (ErrorMsg) in GetFnPtr()
32 Printf(" Reason %s.", ErrorMsg); in GetFnPtr()
H A DFuzzerUtilFuchsia.cpp435 char ErrorMsg[FDIO_SPAWN_ERR_MSG_MAX_LENGTH]; in ExecuteCommand() local
439 Argv[0], Argv.get(), nullptr, 3, SpawnAction, &ProcessHandle, ErrorMsg); in ExecuteCommand()
441 Printf("libFuzzer: failed to launch '%s': %s, %s\n", Argv[0], ErrorMsg, in ExecuteCommand()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DLockFileManager.h91 void setError(const std::error_code &EC, StringRef ErrorMsg = "") {
93 ErrorDiagMsg = ErrorMsg.str();
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/
H A DCompilationDatabase.h178 int &Argc, const char *const *Argv, std::string &ErrorMsg,
184 loadFromFile(StringRef Path, std::string &ErrorMsg);
/freebsd-12.1/contrib/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp519 std::string ErrorMsg; in applySpecificSectionMappings() local
520 std::tie(OldAddrInt, ErrorMsg) = in applySpecificSectionMappings()
523 if (ErrorMsg != "") in applySpecificSectionMappings()
524 report_fatal_error(ErrorMsg); in applySpecificSectionMappings()
/freebsd-12.1/contrib/llvm/tools/lli/
H A Dlli.cpp410 std::string ErrorMsg; in main() local
419 builder.setErrorStr(&ErrorMsg); in main()
457 if (!ErrorMsg.empty()) in main()
459 << "error creating EE: " << ErrorMsg << "\n"; in main()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp349 const char *ErrorMsg) { in ReportError() argument
352 OS << format(ErrorMsg, StartOffset); in ReportError()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h223 createOrcMCJITReplacement(std::string *ErrorMsg, in createOrcMCJITReplacement() argument
/freebsd-12.1/contrib/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp313 bool reportParseError(Twine ErrorMsg);
314 bool reportParseError(SMLoc Loc, Twine ErrorMsg);
6382 bool MipsAsmParser::reportParseError(Twine ErrorMsg) { in reportParseError() argument
6384 return Error(Loc, ErrorMsg); in reportParseError()
6387 bool MipsAsmParser::reportParseError(SMLoc Loc, Twine ErrorMsg) { in reportParseError() argument
6388 return Error(Loc, ErrorMsg); in reportParseError()