Home
last modified time | relevance | path

Searched refs:ErrorStr (Results 1 – 24 of 24) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp54 if (ErrorStr) in selectTarget()
55 *ErrorStr = "No available targets are compatible with this -march, " in selectTarget()
71 if (ErrorStr) in selectTarget()
72 *ErrorStr = Error; in selectTarget()
H A DExecutionEngine.cpp51 std::unique_ptr<Module> M, std::string *ErrorStr,
57 std::string *ErrorStr) =nullptr;
473 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr), in EngineBuilder()
511 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) in create()
521 if (ErrorStr) in create()
522 *ErrorStr = "Cannot create an interpreter with a memory manager."; in create()
551 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create()
552 if (ErrorStr) in create()
553 *ErrorStr = "Interpreter has not been linked in."; in create()
558 if (ErrorStr) in create()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp80 std::string &ErrorStr) { in checkSignature() argument
84 ErrorStr = in checkSignature()
110 std::string &ErrorStr) { in addModule() argument
126 ErrorStr = "module file out of date"; in addModule()
131 ErrorStr = "module file not found"; in addModule()
160 if (checkSignature(ModuleEntry->Signature, ExpectedSignature, ErrorStr)) in addModule()
222 ErrorStr = Buf.getError().message(); in addModule()
235 ExpectedSignature, ErrorStr)) in addModule()
H A DASTReader.cpp2353 ErrorStr += Filename; in getInputFile()
2355 ErrorStr += F.FileName; in getInputFile()
2356 ErrorStr += "'"; in getInputFile()
2357 Error(ErrorStr); in getInputFile()
2403 ErrorStr += File->getName(); in getInputFile()
2404 ErrorStr += "'"; in getInputFile()
2405 Error(ErrorStr); in getInputFile()
4514 std::string ErrorStr; in ReadASTCore() local
4519 M, ErrorStr); in ReadASTCore()
4541 << ErrorStr; in ReadASTCore()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContext.cpp189 void LLVMContext::emitError(const Twine &ErrorStr) { in emitError() argument
190 diagnose(DiagnosticInfoInlineAsm(ErrorStr)); in emitError()
193 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) { in emitError() argument
195 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr)); in emitError()
251 void LLVMContext::emitError(uint64_t LocCookie, const Twine &ErrorStr) { in emitError() argument
252 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr)); in emitError()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DLLVMContext.h293 void emitError(uint64_t LocCookie, const Twine &ErrorStr);
294 void emitError(const Instruction *I, const Twine &ErrorStr);
295 void emitError(const Twine &ErrorStr);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h140 std::unique_ptr<Module> M, std::string *ErrorStr,
146 std::string *ErrorStr);
539 std::string *ErrorStr; variable
585 ErrorStr = e; in setErrorStr()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp119 std::string ErrorStr; in main() local
130 TargetRegistry::lookupTarget("", *ErrOrTriple, ErrorStr); in main()
132 return error(ErrorStr, Context); in main()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-as/
H A Dllvm-as.cpp145 std::string ErrorStr; in main() local
146 raw_string_ostream OS(ErrorStr); in main()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp71 raw_string_ostream ErrStream(ErrorStr); in loadObject()
H A DRuntimeDyldImpl.h318 std::string ErrorStr; variable
564 StringRef getErrorString() { return ErrorStr; } in getErrorString()
H A DRuntimeDyldMachO.cpp376 raw_string_ostream ErrStream(ErrorStr); in loadObject()
H A DRuntimeDyld.cpp133 ErrorStr = toString(std::move(Err)); in resolveRelocations()
H A DRuntimeDyldELF.cpp253 raw_string_ostream ErrStream(ErrorStr); in loadObject()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h255 std::string &ErrorStr);
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp31 std::string ErrorStr; in init() local
37 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init()
39 return error(ErrorStr, Context), false; in init()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp738 std::string ErrorStr; in linkAndVerify() local
740 TargetRegistry::lookupTarget("", TheTriple, ErrorStr); in linkAndVerify()
742 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr); in linkAndVerify()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h102 std::string *ErrorStr = nullptr);
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h303 createJIT(std::unique_ptr<Module> M, std::string *ErrorStr,
H A DMCJIT.cpp44 MCJIT::createJIT(std::unique_ptr<Module> M, std::string *ErrorStr, in createJIT() argument
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h652 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp736 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) { in getBufferForFile() argument
741 if (ErrorStr) in getBufferForFile()
742 *ErrorStr = Buffer.getError().message(); in getBufferForFile()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp417 bool eatComma(StringRef ErrorStr);
7617 bool MipsAsmParser::eatComma(StringRef ErrorStr) { in eatComma() argument
7621 return Error(Loc, ErrorStr); in eatComma()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp9513 std::string ErrorStr; in getSymbolFunctionGlobalAddress() local
9514 raw_string_ostream ErrorFormatter(ErrorStr); in getSymbolFunctionGlobalAddress()
9520 report_fatal_error(ErrorStr); in getSymbolFunctionGlobalAddress()