Searched refs:ErrorStr (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp54 if (ErrorStr)
55 *ErrorStr = "No available targets are compatible with this -march, "
71 if (ErrorStr)
72 *ErrorStr = Error;
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),
511 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
521 if (ErrorStr)
522 *ErrorStr = "Cannot create an interpreter with a memory manager.";
538 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
551 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
552 if (ErrorStr)
553 *ErrorStr
[all...]
/netbsd-current/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-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DLLVMContext.cpp189 void LLVMContext::emitError(const Twine &ErrorStr) { argument
190 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
193 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) { argument
195 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
251 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) { argument
252 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
/netbsd-current/sys/external/bsd/gnu-efi/dist/lib/
H A Dhw.c28 IN CHAR8 *ErrorStr EFI_UNUSED,
42 ErrorStr - ASCII string to display on error
60 DEBUG ((D_INIT, "Device Already Loaded for %a device\n", ErrorStr));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DModuleManager.cpp80 std::string &ErrorStr) {
84 ErrorStr =
110 std::string &ErrorStr) {
126 ErrorStr = "module file out of date";
131 ErrorStr = "module file not found";
160 if (checkSignature(ModuleEntry->Signature, ExpectedSignature, ErrorStr))
222 ErrorStr = Buf.getError().message();
235 ExpectedSignature, ErrorStr))
78 checkSignature(ASTFileSignature Signature, ASTFileSignature ExpectedSignature, std::string &ErrorStr) argument
103 addModule(StringRef FileName, ModuleKind Type, SourceLocation ImportLoc, ModuleFile *ImportedBy, unsigned Generation, off_t ExpectedSize, time_t ExpectedModTime, ASTFileSignature ExpectedSignature, ASTFileSignatureReader ReadSignature, ModuleFile *&Module, std::string &ErrorStr) argument
H A DASTReader.cpp2350 std::string ErrorStr = "could not find file '"; local
2351 ErrorStr += Filename;
2352 ErrorStr += "' referenced by AST file '";
2353 ErrorStr += F.FileName;
2354 ErrorStr += "'";
2355 Error(ErrorStr);
2400 std::string ErrorStr = "could not get buffer for file '";
2401 ErrorStr += File->getName();
2402 ErrorStr += "'";
2403 Error(ErrorStr);
4498 std::string ErrorStr; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-as/
H A Dllvm-as.cpp145 std::string ErrorStr; local
146 raw_string_ostream OS(ErrorStr);
/netbsd-current/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; member in class:llvm::EngineBuilder
585 ErrorStr = e;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp71 raw_string_ostream ErrStream(ErrorStr);
H A DRuntimeDyldImpl.h318 std::string ErrorStr; member in class:llvm::RuntimeDyldImpl
564 StringRef getErrorString() { return ErrorStr; }
H A DRuntimeDyldMachO.cpp376 raw_string_ostream ErrStream(ErrorStr);
H A DRuntimeDyld.cpp133 ErrorStr = toString(std::move(Err));
H A DRuntimeDyldELF.cpp253 raw_string_ostream ErrStream(ErrorStr);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DModuleManager.h243 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
255 std::string &ErrorStr);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h102 std::string *ErrorStr = nullptr);
/netbsd-current/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, argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp31 std::string ErrorStr; local
37 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
39 return error(ErrorStr, Context), false;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp737 std::string ErrorStr; local
739 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
741 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp1230 std::string ErrorStr; local
1231 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, ErrorStr);
1234 "': " + ErrorStr,
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DASTUnit.h652 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp736 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) { argument
741 if (ErrorStr)
742 *ErrorStr = Buffer.getError().message();
/netbsd-current/sys/external/bsd/gnu-efi/dist/inc/
H A Defilib.h1026 IN CHAR8 *ErrorStr,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp417 bool eatComma(StringRef ErrorStr);
7617 bool MipsAsmParser::eatComma(StringRef ErrorStr) { argument
7621 return Error(Loc, ErrorStr);

Completed in 493 milliseconds

12