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

1 2

  /external/llvm/include/llvm/IR/
LLVMContext.h 89 void emitError(unsigned LocCookie, const Twine &ErrorStr);
90 void emitError(const Instruction *I, const Twine &ErrorStr);
91 void emitError(const Twine &ErrorStr);
  /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 43 std::string *ErrorStr,
49 std::string *ErrorStr,
54 std::string *ErrorStr) = 0;
402 std::string *ErrorStr,
409 .setErrorStr(ErrorStr)
420 std::string *ErrorStr,
427 if (ErrorStr)
428 *ErrorStr = "JIT has not been linked in.";
436 EB.setErrorStr(ErrorStr);
445 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 72 std::string ErrorStr;
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
75 if (!ErrorStr.empty()) {
77 << OutputFilename << "': " << ErrorStr << '\n';
  /external/llvm/lib/IR/
LLVMContext.cpp 101 void LLVMContext::emitError(const Twine &ErrorStr) {
102 emitError(0U, ErrorStr);
105 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
112 return emitError(LocCookie, ErrorStr);
115 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
118 errs() << "error: " << ErrorStr << "\n";
123 SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 136 std::string *ErrorStr,
142 std::string *ErrorStr,
146 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
186 std::string *ErrorStr = 0,
198 std::string *ErrorStr = 0,
489 std::string *ErrorStr;
504 ErrorStr = NULL;
540 ErrorStr = e;
  /external/llvm/lib/Object/
MachOObject.cpp 96 std::string *ErrorStr) {
109 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
116 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
125 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
129 if (ErrorStr) *ErrorStr = "";
  /external/clang/lib/Basic/
FileManager.cpp 501 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr,
516 if (ErrorStr)
517 *ErrorStr = ec.message();
528 if (ec && ErrorStr)
529 *ErrorStr = ec.message();
536 if (ec && ErrorStr)
537 *ErrorStr = ec.message();
542 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
547 if (ec && ErrorStr)
548 *ErrorStr = ec.message()
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 92 std::string *ErrorStr,
MCJIT.cpp 40 std::string *ErrorStr,
  /external/clang/include/clang/Basic/
FileManager.h 238 std::string *ErrorStr = 0,
241 std::string *ErrorStr = 0);
  /external/clang/lib/Serialization/
ModuleManager.cpp 42 unsigned Generation, std::string &ErrorStr) {
46 ErrorStr = "file not found";
75 ErrorStr = ec.message();
77 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 180 std::string ErrorStr;
184 ErrorStr = Msg.str();
336 StringRef getErrorString() { return ErrorStr; }
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 220 std::string ErrorStr;
222 if (!sys::Memory::setExecutable(Data, &ErrorStr))
223 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 338 std::string ErrorStr;
341 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
344 << LinkBCFile << ErrorStr;
348 LinkModuleToUse = getLazyBitcodeModule(BCBuf, *VMContext, &ErrorStr);
351 << LinkBCFile << ErrorStr;
  /external/clang/include/clang/Serialization/
ModuleManager.h 160 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
168 std::string &ErrorStr);
  /external/llvm/include/llvm/Object/
MachOObject.h 89 /// \param ErrorStr [out] - If given, will be set to a user readable error
93 std::string *ErrorStr = 0);
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 104 const char *FlagStr, *ErrorStr;
119 checkError((Section.*Work[I].MemF)(B), Work[I].ErrorStr);
  /external/llvm/tools/macho-dump/
macho-dump.cpp 437 std::string ErrorStr;
444 MachOObject::LoadFromBuffer(InputBuffer.take(), &ErrorStr));
446 return Error("unable to load object: '" + ErrorStr + "'");
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 186 std::string *ErrorStr,
JIT.cpp 208 std::string *ErrorStr,
221 if (ErrorStr)
222 *ErrorStr = "target does not support JIT code generation";
JITMemoryManager.cpp 341 virtual bool CheckInvariants(std::string &ErrorStr);
707 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
708 raw_string_ostream Err(ErrorStr);
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 529 std::string ErrorStr =
533 if (!ErrorStr.empty())
534 return Error(Loc, ErrorStr.c_str());
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = 0);
  /external/clang/include/clang/Frontend/
ASTUnit.h 642 std::string *ErrorStr = 0);
    [all...]

Completed in 291 milliseconds

1 2