Home
last modified time | relevance | path

Searched refs:ErrStream (Results 1 – 14 of 14) sorted by relevance

/src/contrib/atf/atf-c++/detail/
H A Dprocess.hpp111 template< class OutStream, class ErrStream > friend
112 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
113 template< class OutStream, class ErrStream > friend
115 const OutStream&, const ErrStream&, void (*)(void));
123 template< class OutStream, class ErrStream > friend
124 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
125 template< class OutStream, class ErrStream > friend
127 const OutStream&, const ErrStream&, void (*)(void));
135 template< class OutStream, class ErrStream > friend
136 child fork(void (*)(void*), const OutStream&, const ErrStream&, void*);
[all …]
/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dcoff_platform.cpp196 std::ostringstream ErrStream; in registerJITDylib() local
197 ErrStream << "Duplicate JITDylib registration for header " << Header in registerJITDylib()
199 return make_error<StringError>(ErrStream.str()); in registerJITDylib()
202 std::ostringstream ErrStream; in registerJITDylib() local
203 ErrStream << "Duplicate JITDylib registration for header " << Header in registerJITDylib()
205 return make_error<StringError>(ErrStream.str()); in registerJITDylib()
219 std::ostringstream ErrStream; in deregisterJITDylib() local
220 ErrStream << "Attempted to deregister unrecognized header " << Header; in deregisterJITDylib()
221 return make_error<StringError>(ErrStream.str()); in deregisterJITDylib()
333 std::ostringstream ErrStream; in dlopenFull() local
[all …]
H A Dmacho_platform.cpp503 std::ostringstream ErrStream; in registerJITDylib() local
504 ErrStream << "Duplicate JITDylib registration for header " << Header in registerJITDylib()
506 return make_error<StringError>(ErrStream.str()); in registerJITDylib()
509 std::ostringstream ErrStream; in registerJITDylib() local
510 ErrStream << "Duplicate JITDylib registration for header " << Header in registerJITDylib()
512 return make_error<StringError>(ErrStream.str()); in registerJITDylib()
526 std::ostringstream ErrStream; in deregisterJITDylib() local
527 ErrStream << "Attempted to deregister unrecognized header " << Header; in deregisterJITDylib()
528 return make_error<StringError>(ErrStream.str()); in deregisterJITDylib()
580 std::ostringstream ErrStream; in registerObjectSymbolTable() local
[all …]
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp384 raw_string_ostream ErrStream(ErrMsg); in makeTargetOutOfRangeError() local
386 ErrStream << "In graph " << G.getName() << ", section " << Sec.getName() in makeTargetOutOfRangeError()
389 ErrStream << "\"" << E.getTarget().getName() << "\""; in makeTargetOutOfRangeError()
391 ErrStream << E.getTarget().getBlock().getSection().getName() << " + " in makeTargetOutOfRangeError()
393 ErrStream << " at address " << formatv("{0:x}", E.getTarget().getAddress()) in makeTargetOutOfRangeError()
406 ErrStream << BestSymbolForBlock->getName() << ", "; in makeTargetOutOfRangeError()
408 ErrStream << "<anonymous block> @ "; in makeTargetOutOfRangeError()
410 ErrStream << formatv("{0:x}", B.getAddress()) << " + " in makeTargetOutOfRangeError()
H A DELFLinkGraphBuilder.h517 raw_string_ostream ErrStream(ErrMsg); in graphifySymbols()
518 ErrStream << "In " << G->getName() << ", symbol "; in graphifySymbols()
520 ErrStream << *Name; in graphifySymbols()
522 ErrStream << "<anon>"; in graphifySymbols()
523 ErrStream << " (" << (B->getAddress() + Offset) << " -- " in graphifySymbols()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DJITLoaderPerf.cpp302 raw_string_ostream ErrStream(ErrStr); in InitDebuggingDir() local
303 ErrStream << "could not create jit cache directory " << Path << ": " in InitDebuggingDir()
320 raw_string_ostream ErrStream(ErrStr); in InitDebuggingDir() local
321 ErrStream << "could not create unique jit cache directory " in InitDebuggingDir()
352 raw_string_ostream ErrStream(ErrStr); in registerJITLoaderPerfStartImpl() local
353 ErrStream << "could not open JIT dump file " << FilenameBuf.str() << ": " in registerJITLoaderPerfStartImpl()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCheckerImpl.h37 SubtargetFeatures TF, llvm::raw_ostream &ErrStream);
81 llvm::raw_ostream &ErrStream; variable
H A DRuntimeDyldCOFF.cpp71 raw_string_ostream ErrStream(ErrorStr); in loadObject() local
72 logAllUnhandledErrors(ObjSectionToIDOrErr.takeError(), ErrStream); in loadObject()
H A DRuntimeDyldChecker.cpp54 raw_ostream &ErrStream) in RuntimeDyldCheckerExprEval() argument
86 Checker.ErrStream << "Expression '" << Expr << "' is false: " in evaluate()
170 Checker.ErrStream << "Error evaluating expression '" << Expr in handleError()
826 StringRef CPU, SubtargetFeatures TF, raw_ostream &ErrStream) in RuntimeDyldCheckerImpl() argument
832 TF(std::move(TF)), ErrStream(ErrStream) {} in RuntimeDyldCheckerImpl()
838 RuntimeDyldCheckerExprEval P(*this, ErrStream); in check()
1039 StringRef CPU, SubtargetFeatures TF, raw_ostream &ErrStream) in RuntimeDyldChecker() argument
1044 std::move(TF), ErrStream)) {} in RuntimeDyldChecker()
H A DRuntimeDyldMachO.cpp376 raw_string_ostream ErrStream(ErrorStr); in loadObject() local
377 logAllUnhandledErrors(ObjSectionToIDOrErr.takeError(), ErrStream); in loadObject()
H A DRuntimeDyldELF.cpp253 raw_string_ostream ErrStream(ErrorStr); in loadObject() local
254 logAllUnhandledErrors(ObjSectionToIDOrErr.takeError(), ErrStream); in loadObject()
/src/contrib/llvm-project/llvm/lib/Support/
H A DError.cpp171 raw_string_ostream ErrStream(ErrMsg); in report_fatal_error() local
172 logAllUnhandledErrors(std::move(Err), ErrStream); in report_fatal_error()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h44 raw_string_ostream ErrStream(ErrMsg); in decodeAddend()
45 ErrStream << "Unsupported relocation type: " in decodeAddend()
56 raw_string_ostream ErrStream(ErrMsg); in decodeAddend()
57 ErrStream << "Invalid relocation size for relocation " in decodeAddend()
/src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h167 raw_ostream &ErrStream);