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

1 2

  /external/llvm/include/llvm/
LLVMContext.h 85 void emitError(unsigned LocCookie, const Twine &ErrorStr);
86 void emitError(const Instruction *I, const Twine &ErrorStr);
87 void emitError(const Twine &ErrorStr);
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 55 if (ErrorStr)
56 *ErrorStr = "No available targets are compatible with this -march, "
70 if (ErrorStr)
71 *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/VMCore/
LLVMContext.cpp 91 void LLVMContext::emitError(const Twine &ErrorStr) {
92 emitError(0U, ErrorStr);
95 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
102 return emitError(LocCookie, ErrorStr);
105 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
108 errs() << "error: " << ErrorStr << "\n";
113 SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 87 std::string *ErrorStr,
MCJIT.cpp 38 std::string *ErrorStr,
  /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,
482 std::string *ErrorStr;
497 ErrorStr = NULL;
533 ErrorStr = e;
  /external/llvm/lib/Object/
MachOObject.cpp 95 std::string *ErrorStr) {
108 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
115 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
124 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
128 if (ErrorStr) *ErrorStr = "";
  /external/clang/lib/Basic/
FileManager.cpp 495 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr,
510 if (ErrorStr)
511 *ErrorStr = ec.message();
522 if (ec && ErrorStr)
523 *ErrorStr = ec.message();
530 if (ec && ErrorStr)
531 *ErrorStr = ec.message();
536 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
541 if (ec && ErrorStr)
542 *ErrorStr = ec.message()
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 171 std::string ErrorStr;
175 ErrorStr = Msg.str();
299 StringRef getErrorString() { return ErrorStr; }
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 149 std::string ErrorStr;
151 if (!sys::Memory::setExecutable(Data, &ErrorStr))
152 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/clang/include/clang/Serialization/
ModuleManager.h 100 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
107 unsigned Generation, std::string &ErrorStr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 39 std::string &ErrorStr) {
42 ErrorStr = "file not found";
68 ErrorStr = ec.message();
70 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
  /external/clang/include/clang/Basic/
FileManager.h 227 std::string *ErrorStr = 0,
230 std::string *ErrorStr = 0);
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 336 std::string ErrorStr;
339 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
342 << LinkBCFile << ErrorStr;
346 LinkModuleToUse = getLazyBitcodeModule(BCBuf, *VMContext, &ErrorStr);
349 << LinkBCFile << 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/clang/lib/Frontend/
FrontendActions.cpp 277 std::string ErrorStr;
279 = FileMgr.getBufferForFile(UmbrellaHeader, &ErrorStr);
282 << UmbrellaHeader->getName() << ErrorStr;
  /external/llvm/tools/macho-dump/
macho-dump.cpp 409 std::string ErrorStr;
416 MachOObject::LoadFromBuffer(InputBuffer.take(), &ErrorStr));
418 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 337 virtual bool CheckInvariants(std::string &ErrorStr);
699 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
700 raw_string_ostream Err(ErrorStr);
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 450 std::string ErrorStr =
454 if (!ErrorStr.empty())
455 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 611 std::string *ErrorStr = 0);

Completed in 311 milliseconds

1 2