Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/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()
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 = "Interpreter has not been linked in."; in create()
[all …]
/netbsd-src/external/apache2/llvm/dist/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.cpp2350 std::string ErrorStr = "could not find file '"; in getInputFile() local
2351 ErrorStr += Filename; in getInputFile()
2352 ErrorStr += "' referenced by AST file '"; in getInputFile()
2353 ErrorStr += F.FileName; in getInputFile()
2354 ErrorStr += "'"; in getInputFile()
2355 Error(ErrorStr); in getInputFile()
2400 std::string ErrorStr = "could not get buffer for file '"; in getInputFile() local
2401 ErrorStr += File->getName(); in getInputFile()
2402 ErrorStr += "'"; in getInputFile()
2403 Error(ErrorStr); in getInputFile()
[all …]
/netbsd-src/external/apache2/llvm/dist/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(unsigned LocCookie, const Twine &ErrorStr) { in emitError() argument
252 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr)); in emitError()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DLLVMContext.h293 void emitError(unsigned LocCookie, const Twine &ErrorStr);
294 void emitError(const Instruction *I, const Twine &ErrorStr);
295 void emitError(const Twine &ErrorStr);
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Dhw.c28 IN CHAR8 *ErrorStr EFI_UNUSED, in InitializeGlobalIoDevice()
60 DEBUG ((D_INIT, "Device Already Loaded for %a device\n", ErrorStr)); in InitializeGlobalIoDevice()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-as/
H A Dllvm-as.cpp145 std::string ErrorStr; in main() local
146 raw_string_ostream OS(ErrorStr); in main()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DModuleManager.h255 std::string &ErrorStr);
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp737 std::string ErrorStr; in linkAndVerify() local
739 TargetRegistry::lookupTarget("", TheTriple, ErrorStr); in linkAndVerify()
741 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr); in linkAndVerify()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h102 std::string *ErrorStr = nullptr);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp851 std::string ErrorStr; in main() local
862 TargetRegistry::lookupTarget("", *ErrOrTriple, ErrorStr); in main()
864 return error(ErrorStr, Context); in main()
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp1230 std::string ErrorStr; in runChecks() local
1231 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, ErrorStr); in runChecks()
1234 "': " + ErrorStr, in runChecks()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DASTUnit.h652 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defilib.h1026 IN CHAR8 *ErrorStr,

12