| /freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | TargetSelect.cpp | 54 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 D | ExecutionEngine.cpp | 51 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() 538 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create() 551 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create() 552 if (ErrorStr) in create() 553 *ErrorStr in create() [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ModuleManager.cpp | 76 std::string &ErrorStr) { in checkSignature() argument 80 ErrorStr = in checkSignature() 106 std::string &ErrorStr) { in addModule() argument 122 ErrorStr = "module file out of date"; in addModule() 127 ErrorStr = "module file not found"; in addModule() 156 if (checkSignature(ModuleEntry->Signature, ExpectedSignature, ErrorStr)) in addModule() 211 ErrorStr = Buf.getError().message(); in addModule() 224 ExpectedSignature, ErrorStr)) in addModule()
|
| H A D | ASTReader.cpp | 2584 std::string ErrorStr = "could not find file '"; in getInputFile() 2585 ErrorStr += Filename; in getInputFile() 2586 ErrorStr += "' referenced by AST file '"; in getInputFile() 2587 ErrorStr += F.FileName; in getInputFile() 2588 ErrorStr += "'"; in getInputFile() 2589 Error(ErrorStr); in getInputFile() 2638 std::string ErrorStr = "could not get buffer for file '"; in getInputFile() 2639 ErrorStr += File->getName(); in getInputFile() 2640 ErrorStr += "'"; in getInputFile() 2641 Error(ErrorStr); in getInputFile() 2543 std::string ErrorStr = "could not find file '"; getInputFile() local 2597 std::string ErrorStr = "could not get buffer for file '"; getInputFile() local 4711 std::string ErrorStr; ReadASTCore() local [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContext.cpp | 221 void LLVMContext::emitError(const Twine &ErrorStr) { in emitError() 222 diagnose(DiagnosticInfoInlineAsm(ErrorStr)); 225 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) { in isDiagnosticEnabled() 227 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr)); in isDiagnosticEnabled() 286 void LLVMContext::emitError(uint64_t LocCookie, const Twine &ErrorStr) { 287 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr)); 214 emitError(const Twine & ErrorStr) emitError() argument 218 emitError(const Instruction * I,const Twine & ErrorStr) emitError() argument 279 emitError(uint64_t LocCookie,const Twine & ErrorStr) emitError() argument
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | LLVMContext.h | 304 void emitError(uint64_t LocCookie, const Twine &ErrorStr); 305 void emitError(const Instruction *I, const Twine &ErrorStr); 306 void emitError(const Twine &ErrorStr);
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | ExecutionEngine.h | 139 std::unique_ptr<Module> M, std::string *ErrorStr, 145 std::string *ErrorStr); 538 std::string *ErrorStr; variable 584 ErrorStr = e; in setErrorStr()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFEmitterImpl.cpp | 26 std::string ErrorStr; in init() local 31 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init() 33 return createStringError(std::errc::invalid_argument, ErrorStr.c_str()); in init()
|
| H A D | DebugLineSectionEmitter.h | 65 std::string ErrorStr; in init() local 70 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init() 72 return createStringError(std::errc::invalid_argument, ErrorStr.c_str()); in init()
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-as/ |
| H A D | llvm-as.cpp | 154 std::string ErrorStr; in main() 155 raw_string_ostream OS(ErrorStr); in main() 145 std::string ErrorStr; main() local
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-dwp/ |
| H A D | llvm-dwp.cpp | 197 std::string ErrorStr; in llvm_dwp_main() 214 TargetRegistry::lookupTarget("", *ErrOrTriple, ErrorStr); in llvm_dwp_main() 216 return error(ErrorStr, Context); in llvm_dwp_main() 194 std::string ErrorStr; llvm_dwp_main() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldCOFF.cpp | 71 raw_string_ostream ErrStream(ErrorStr); in loadObject()
|
| H A D | RuntimeDyldImpl.h | 318 std::string ErrorStr; variable 574 StringRef getErrorString() { return ErrorStr; } in getErrorString()
|
| H A D | RuntimeDyldChecker.cpp | 762 std::string ErrorStr; in getTargetInfo() 764 TargetRegistry::lookupTarget(TripleName, ErrorStr); in getTargetInfo() 767 "': " + ErrorStr, in getTargetInfo() 756 std::string ErrorStr; getTargetInfo() local
|
| H A D | RuntimeDyldMachO.cpp | 376 raw_string_ostream ErrStream(ErrorStr); in loadObject()
|
| H A D | RuntimeDyld.cpp | 133 ErrorStr = toString(std::move(Err)); in resolveRelocations()
|
| H A D | RuntimeDyldELF.cpp | 253 raw_string_ostream ErrStream(ErrorStr); in loadObject()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ModuleManager.h | 236 /// \param ErrorStr Will be set to a non-empty string if any errors occurred 248 std::string &ErrorStr);
|
| /freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.h | 102 std::string *ErrorStr = nullptr);
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 787 std::string ErrorStr; in linkAndVerify() local 789 TargetRegistry::lookupTarget("", TheTriple, ErrorStr); in linkAndVerify() 791 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr); in linkAndVerify()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
| H A D | MCJIT.h | 296 createJIT(std::unique_ptr<Module> M, std::string *ErrorStr,
|
| H A D | MCJIT.cpp | 45 MCJIT::createJIT(std::unique_ptr<Module> M, std::string *ErrorStr, in createJIT() argument
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 46 std::string ErrorStr; in init() 51 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init() 53 return createStringError(std::errc::invalid_argument, ErrorStr.c_str()); in init() 47 std::string ErrorStr; init() local
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 655 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
|
| /freebsd-src/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 779 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) { in ConfigureDiags() 784 if (ErrorStr) in ConfigureDiags() 785 *ErrorStr = Buffer.getError().message(); in ConfigureDiags() 768 getBufferForFile(StringRef Filename,std::string * ErrorStr) getBufferForFile() argument
|