HomeSort by relevance Sort by last modified time
    Searched refs:ErrorStr (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 57 if (ErrorStr)
58 *ErrorStr = "No available targets are compatible with this -march, "
74 if (ErrorStr)
75 *ErrorStr = Error;
ExecutionEngine.cpp 49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
477 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
517 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
527 if (ErrorStr)
528 *ErrorStr = "Cannot create an interpreter with a memory manager.";
545 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
550 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
563 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
    [all...]
  /external/llvm/include/llvm/IR/
LLVMContext.h 189 void emitError(unsigned LocCookie, const Twine &ErrorStr);
190 void emitError(const Instruction *I, const Twine &ErrorStr);
191 void emitError(const Twine &ErrorStr);
  /external/llvm/lib/IR/
LLVMContext.cpp 202 void LLVMContext::emitError(const Twine &ErrorStr) {
203 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
206 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
208 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
274 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
275 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /external/llvm/tools/llvm-as/
llvm-as.cpp 108 std::string ErrorStr;
109 raw_string_ostream OS(ErrorStr);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 139 std::string *ErrorStr,
145 std::string *ErrorStr,
151 std::string *ErrorStr);
516 std::string *ErrorStr;
563 ErrorStr = e;
  /external/clang/examples/clang-interpreter/
main.cpp 46 createExecutionEngine(std::unique_ptr<llvm::Module> M, std::string *ErrorStr) {
49 .setErrorStr(ErrorStr)
  /external/clang/lib/Serialization/
ModuleManager.cpp 64 std::string &ErrorStr) {
78 ErrorStr = "module file out of date";
83 ErrorStr = "module file not found";
136 ErrorStr = Buf.getError().message();
154 ErrorStr = ModuleEntry->Signature ? "signature mismatch"
ASTReader.cpp     [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 429 std::string ErrorStr;
430 if (!sys::Memory::setExecutable(FM, &ErrorStr))
431 return Error("unable to mark function executable: '" + ErrorStr + "'");
609 std::string ErrorStr;
611 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
613 return Error("Error accessing target '" + TripleName + "': " + ErrorStr);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 303 std::string ErrorStr;
307 ErrorStr = Msg.str();
489 StringRef getErrorString() { return ErrorStr; }
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 360 std::string ErrorStr;
367 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
369 return error(ErrorStr, Context);
  /external/clang/include/clang/Serialization/
ModuleManager.h 209 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
221 std::string &ErrorStr);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 123 std::string *ErrorStr = nullptr);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 307 std::string *ErrorStr,
MCJIT.cpp 47 std::string *ErrorStr,
  /external/pcre/dist/
pcregexp.pas 88 function ErrorStr : string; virtual;
679 function TpcRegExp.ErrorStr:string;
681 ErrorStr:=StrPas(ErrorMsg);
822 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"', nil,mfConfirmation+mfOkButton)
824 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"'+GetString(erRegExpCompPos),
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 584 std::string ErrorStr =
588 if (!ErrorStr.empty())
589 return Error(Loc, ErrorStr.c_str());
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 703 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 634 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) {
639 if (ErrorStr)
640 *ErrorStr = Buffer.getError().message();
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 574 std::string ErrorStr;
580 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
582 return error(ErrorStr, Context);
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 300 bool eatComma(StringRef ErrorStr);
    [all...]

Completed in 895 milliseconds