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

1 2

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 61 if (ErrorStr)
62 *ErrorStr = "No available targets are compatible with this -march, "
76 if (ErrorStr)
77 *ErrorStr = Error;
ExecutionEngine.cpp 52 std::string *ErrorStr,
58 std::string *ErrorStr,
63 std::string *ErrorStr) =nullptr;
411 std::string *ErrorStr,
419 .setErrorStr(ErrorStr)
430 std::string *ErrorStr,
437 if (ErrorStr)
438 *ErrorStr = "JIT has not been linked in.";
446 EB.setErrorStr(ErrorStr);
455 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return nullptr
    [all...]
  /external/llvm/include/llvm/IR/
LLVMContext.h 156 void emitError(unsigned LocCookie, const Twine &ErrorStr);
157 void emitError(const Instruction *I, const Twine &ErrorStr);
158 void emitError(const Twine &ErrorStr);
  /external/llvm/lib/IR/
LLVMContext.cpp 129 void LLVMContext::emitError(const Twine &ErrorStr) {
130 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
133 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
135 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
188 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
189 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /external/clang/lib/Basic/
FileManager.cpp 383 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr,
399 if (ErrorStr)
400 *ErrorStr = ec.message();
413 if (ec && ErrorStr)
414 *ErrorStr = ec.message();
422 if (ec && ErrorStr)
423 *ErrorStr = ec.message();
428 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
433 if (ec && ErrorStr)
434 *ErrorStr = ec.message()
    [all...]
SourceManager.cpp 97 std::string ErrorStr;
100 &ErrorStr,
123 ContentsEntry->getName(), ErrorStr);
126 << ContentsEntry->getName() << ErrorStr;
    [all...]
  /external/llvm/tools/llvm-as/
llvm-as.cpp 104 std::string ErrorStr;
105 raw_string_ostream OS(ErrorStr);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 146 std::string *ErrorStr,
152 std::string *ErrorStr,
156 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
187 std::string *ErrorStr = nullptr,
199 std::string *ErrorStr = nullptr,
574 std::string *ErrorStr;
634 ErrorStr = e;
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 270 std::string ErrorStr;
272 if (!sys::Memory::setExecutable(Data, &ErrorStr))
273 return Error("unable to mark function executable: '" + ErrorStr + "'");
313 std::string ErrorStr;
315 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
318 << ErrorStr << "\n";
  /external/clang/include/clang/Basic/
FileManager.h 244 std::string *ErrorStr = nullptr,
248 std::string *ErrorStr = nullptr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 60 std::string &ErrorStr) {
67 ErrorStr = "module file out of date";
72 ErrorStr = "module file not found";
113 ErrorStr = ec.message();
121 New->Buffer.reset(FileMgr.getBufferForFile(New->File, &ErrorStr,
GlobalModuleIndex.cpp 498 std::string ErrorStr;
499 Buffer.reset(FileMgr.getBufferForFile(File, &ErrorStr, /*isVolatile=*/true));
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 239 std::string ErrorStr;
243 ErrorStr = Msg.str();
396 StringRef getErrorString() { return ErrorStr; }
  /external/clang/include/clang/Serialization/
ModuleManager.h 184 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
194 std::string &ErrorStr);
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 186 std::string *ErrorStr,
JIT.cpp 75 std::string *ErrorStr,
88 if (ErrorStr)
89 *ErrorStr = "target does not support JIT code generation";
JITMemoryManager.cpp 344 bool CheckInvariants(std::string &ErrorStr) override;
684 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
685 raw_string_ostream Err(ErrorStr);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 606 std::string ErrorStr;
609 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
612 << LinkBCFile << ErrorStr;
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 575 std::string ErrorStr =
579 if (!ErrorStr.empty())
580 return Error(Loc, ErrorStr.c_str());
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = nullptr);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 329 std::string *ErrorStr,
MCJIT.cpp 46 std::string *ErrorStr,
  /external/clang/include/clang/Frontend/
ASTUnit.h 688 std::string *ErrorStr = nullptr);
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 730 std::string ErrorStr;
732 FileMgr.getBufferForFile(File, &ErrorStr, /*isVolatile=*/true)) {
737 Diags.Report(diag::err_cannot_open_file) << InputFile << ErrorStr;
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 173 bool eatComma(StringRef ErrorStr);
    [all...]

Completed in 791 milliseconds

1 2