/external/swiftshader/third_party/LLVM/lib/Support/ |
ErrorHandling.cpp | 52 void llvm::report_fatal_error(const char *Reason) { function in class:llvm 53 report_fatal_error(Twine(Reason)); 56 void llvm::report_fatal_error(const std::string &Reason) { function in class:llvm 57 report_fatal_error(Twine(Reason)); 60 void llvm::report_fatal_error(StringRef Reason) { function in class:llvm 61 report_fatal_error(Twine(Reason)); 64 void llvm::report_fatal_error(const Twine &Reason) { function in class:llvm 70 // raw ostreams can call report_fatal_error.
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
MCPureStreamer.cpp | 55 report_fatal_error("unsupported directive in pure streamer"); 58 report_fatal_error("unsupported directive in pure streamer"); 62 report_fatal_error("unsupported directive in pure streamer"); 65 report_fatal_error("unsupported directive in pure streamer"); 69 report_fatal_error("unsupported directive in pure streamer"); 72 report_fatal_error("unsupported directive in pure streamer"); 75 report_fatal_error("unsupported directive in pure streamer"); 78 report_fatal_error("unsupported directive in pure streamer"); 81 report_fatal_error("unsupported directive in pure streamer"); 84 report_fatal_error("unsupported directive in pure streamer") [all...] |
MCStreamer.cpp | 132 report_fatal_error("unsupported directive in streamer"); 167 report_fatal_error("No open frame"); 277 report_fatal_error("Starting a frame before finishing the previous one!"); 420 report_fatal_error("No open Win64 EH frame function!"); 426 report_fatal_error("Starting a function before ending the previous one!"); 438 report_fatal_error("Not all chained regions terminated!"); 458 report_fatal_error("End of a chained region outside a chained region!"); 469 report_fatal_error("Chained unwind areas can't have handlers!"); 472 report_fatal_error("Don't know what kind of handler this is!"); 483 report_fatal_error("Chained unwind areas can't have handlers!") [all...] |
/external/llvm/tools/llvm-c-test/ |
echo.cpp | 160 report_fatal_error("Parameter count mismatch"); 186 report_fatal_error("SrcLast param does not match End"); 188 report_fatal_error("DstLast param does not match End"); 193 report_fatal_error("SrcNext was unexpectedly null"); 195 report_fatal_error("DstNext was unexpectedly null"); 199 report_fatal_error("SrcNext.Previous param is not Current"); 203 report_fatal_error("DstNext.Previous param is not Current"); 210 report_fatal_error("Parameter count does not match iteration"); 217 report_fatal_error("LLVMGetValueKind returned incorrect type"); 230 report_fatal_error("Expected a constant") [all...] |
/external/swiftshader/third_party/LLVM/lib/Object/ |
Object.cpp | 46 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message()); 52 report_fatal_error(ec.message()); 59 report_fatal_error(ec.message()); 66 report_fatal_error(ec.message());
|
/external/llvm/lib/Support/ |
ErrorHandling.cpp | 62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { function in class:llvm 63 report_fatal_error(Twine(Reason), GenCrashDiag); 66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { function in class:llvm 67 report_fatal_error(Twine(Reason), GenCrashDiag); 70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { function in class:llvm 71 report_fatal_error(Twine(Reason), GenCrashDiag); 74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { function in class:llvm 90 // raw ostreams can call report_fatal_error.
|
Error.cpp | 90 report_fatal_error(EC.message()); 103 void report_fatal_error(Error Err, bool GenCrashDiag) { function in namespace:llvm 104 assert(Err && "report_fatal_error called with success value"); 110 report_fatal_error(ErrMsg);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
ErrorHandling.cpp | 62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { function in class:llvm 63 report_fatal_error(Twine(Reason), GenCrashDiag); 66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { function in class:llvm 67 report_fatal_error(Twine(Reason), GenCrashDiag); 70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { function in class:llvm 71 report_fatal_error(Twine(Reason), GenCrashDiag); 74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { function in class:llvm 90 // raw ostreams can call report_fatal_error.
|
/external/llvm/lib/Target/Mips/ |
MipsSubtarget.cpp | 88 report_fatal_error("Code generation for MIPS-I is not implemented", false); 90 report_fatal_error("Code generation for MIPS-V is not implemented", false); 98 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " 103 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); 106 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); 114 report_fatal_error(ISA + " is not compatible with the DSP ASE", false); 118 report_fatal_error("position-independent code requires '-mabicalls'");
|
/external/llvm/lib/MC/ |
MCStreamer.cpp | 131 report_fatal_error("unsupported directive in streamer"); 135 report_fatal_error("unsupported directive in streamer"); 199 report_fatal_error("No open frame"); 261 report_fatal_error("Starting a frame before finishing the previous one!"); 446 report_fatal_error(".seh_* directives are not supported on this target"); 448 report_fatal_error("No open Win64 EH frame function!"); 454 report_fatal_error(".seh_* directives are not supported on this target"); 456 report_fatal_error("Starting a function before ending the previous one!"); 469 report_fatal_error("Not all chained regions terminated!"); 491 report_fatal_error("End of a chained region outside a chained region!") [all...] |
/external/llvm/lib/Object/ |
Object.cpp | 110 report_fatal_error(Buf); 140 report_fatal_error(ec.message()); 151 report_fatal_error(ec.message()); 192 report_fatal_error(Buf); 204 report_fatal_error(Buf);
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 104 /// error handler. In contrast to the generic 'report_fatal_error'
|
/external/llvm/lib/IR/ |
DataLayout.cpp | 201 report_fatal_error("Trailing separator in datalayout string"); 203 report_fatal_error("Expected token before separator in datalayout string"); 212 report_fatal_error("not a number, or does not fit in an unsigned int"); 219 report_fatal_error("number of bits must be a byte width multiple"); 255 report_fatal_error("Invalid address space, must be a 24bit integer"); 259 report_fatal_error( 264 report_fatal_error("Invalid pointer size of 0 bytes"); 268 report_fatal_error( 273 report_fatal_error( 282 report_fatal_error( [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceBrowserCompileServer.cpp | 50 llvm::report_fatal_error("Failed to get translator compile IRT interface"); 105 llvm::report_fatal_error("Failed to read arguments from file '" + 179 llvm::report_fatal_error("Invalid output FD"); 198 // previous stage, or also call report_fatal_error. 217 llvm::report_fatal_error("no target architecture match."); 275 // HadError means report_fatal_error is called. Make sure that the 330 llvm::report_fatal_error("no browser hookups"); 334 llvm::report_fatal_error("no browser hookups");
|
/external/llvm/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
ErrorHandling.h | 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason); 77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason); 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason); 79 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
OcamlGCPrinter.cpp | 118 report_fatal_error(" Too much descriptor for ocaml GC"); 129 report_fatal_error("Function '" + FI.getFunction().getName() + 143 report_fatal_error("Function '" + FI.getFunction().getName() + 156 report_fatal_error(
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
ErrorHandling.h | 72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
|