Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DLLVMContext.cpp158 void LLVMContext::emitError(const Twine &ErrorStr) { in emitError() argument
159 diagnose(DiagnosticInfoInlineAsm(ErrorStr)); in emitError()
162 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) { in emitError() argument
164 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr)); in emitError()
224 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) { in emitError() argument
225 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr)); in emitError()
/external/llvm/lib/ExecutionEngine/
DTargetSelect.cpp61 if (ErrorStr) in selectTarget()
62 *ErrorStr = "No available targets are compatible with this -march, " in selectTarget()
76 if (ErrorStr) in selectTarget()
77 *ErrorStr = Error; in selectTarget()
DExecutionEngine.cpp49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
454 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr), in EngineBuilder()
494 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr)) in create()
504 if (ErrorStr) in create()
505 *ErrorStr = "Cannot create an interpreter with a memory manager."; in create()
522 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), in create()
527 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr), in create()
540 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create()
[all …]
/external/llvm/include/llvm/IR/
DLLVMContext.h166 void emitError(unsigned LocCookie, const Twine &ErrorStr);
167 void emitError(const Instruction *I, const Twine &ErrorStr);
168 void emitError(const Twine &ErrorStr);
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h133 std::string *ErrorStr,
139 std::string *ErrorStr,
145 std::string *ErrorStr);
501 std::string *ErrorStr; variable
548 ErrorStr = e; in setErrorStr()
/external/llvm/tools/llvm-as/
Dllvm-as.cpp109 std::string ErrorStr; in main() local
110 raw_string_ostream OS(ErrorStr); in main()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp316 std::string ErrorStr; in executeInput() local
318 if (!sys::Memory::setExecutable(Data, &ErrorStr)) in executeInput()
319 return Error("unable to mark function executable: '" + ErrorStr + "'"); in executeInput()
487 std::string ErrorStr; in linkAndVerify() local
489 TargetRegistry::lookupTarget("", TheTriple, ErrorStr); in linkAndVerify()
492 << ErrorStr << "\n"; in linkAndVerify()
/external/clang/lib/Serialization/
DModuleManager.cpp63 std::string &ErrorStr) { in addModule() argument
77 ErrorStr = "module file out of date"; in addModule()
82 ErrorStr = "module file not found"; in addModule()
131 ErrorStr = Buf.getError().message(); in addModule()
150 ErrorStr = ModuleEntry->Signature ? "signature mismatch" in addModule()
DASTReader.cpp2195 std::string ErrorStr = "could not find file '"; in getInputFile() local
2196 ErrorStr += Filename; in getInputFile()
2197 ErrorStr += "' referenced by AST file"; in getInputFile()
2198 Error(ErrorStr.c_str()); in getInputFile()
3833 std::string ErrorStr; in ReadASTCore() local
3838 M, ErrorStr); in ReadASTCore()
3857 + ErrorStr; in ReadASTCore()
3871 + ErrorStr; in ReadASTCore()
/external/clang/examples/clang-interpreter/
Dmain.cpp46 createExecutionEngine(std::unique_ptr<llvm::Module> M, std::string *ErrorStr) { in createExecutionEngine() argument
49 .setErrorStr(ErrorStr) in createExecutionEngine()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h260 std::string ErrorStr; variable
264 ErrorStr = Msg.str(); in Error()
431 StringRef getErrorString() { return ErrorStr; } in getErrorString()
/external/pcre/dist/
Dpcregexp.pas88 function ErrorStr : string; virtual; in ErrorStr() function
679 function TpcRegExp.ErrorStr:string; in TpcRegExp.ErrorStr()
681 ErrorStr:=StrPas(ErrorMsg);
824 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"'+GetString(erRegExpCompPos),
/external/llvm/lib/MC/MCParser/
DDarwinAsmParser.cpp575 std::string ErrorStr = in parseDirectiveSection() local
579 if (!ErrorStr.empty()) in parseDirectiveSection()
580 return Error(Loc, ErrorStr.c_str()); in parseDirectiveSection()
/external/clang/include/clang/Serialization/
DModuleManager.h211 std::string &ErrorStr);
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h296 std::string *ErrorStr,
DMCJIT.cpp47 std::string *ErrorStr, in createJIT() argument
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h125 std::string *ErrorStr = nullptr);
/external/clang/include/clang/Frontend/
DASTUnit.h699 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp465 std::string ErrorStr; in init() local
471 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init()
473 return error(ErrorStr, Context); in init()
/external/clang/lib/Frontend/
DASTUnit.cpp632 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) { in getBufferForFile() argument
637 if (ErrorStr) in getBufferForFile()
638 *ErrorStr = Buffer.getError().message(); in getBufferForFile()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp254 bool eatComma(StringRef ErrorStr);
3728 bool MipsAsmParser::eatComma(StringRef ErrorStr) { in eatComma() argument
3733 return Error(Loc, ErrorStr); in eatComma()