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

1 2 3 4 5 6 7 8 91011>>

  /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/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-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,
  /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/swiftshader/third_party/llvm-7.0/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,
106 /// error handler. In contrast to the generic '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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DataLayout.cpp 206 report_fatal_error("Trailing separator in datalayout string");
208 report_fatal_error("Expected token before separator in datalayout string");
217 report_fatal_error("not a number, or does not fit in an unsigned int");
224 report_fatal_error("number of bits must be a byte width multiple");
231 report_fatal_error("Invalid address space, must be a 24-bit integer");
255 report_fatal_error("Address space 0 can never be non-integral");
280 report_fatal_error("Invalid address space, must be a 24bit integer");
284 report_fatal_error(
289 report_fatal_error("Invalid pointer size of 0 bytes");
293 report_fatal_error(
    [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-7.0/llvm/lib/Target/Mips/
MipsSubtarget.cpp 98 report_fatal_error("Code generation for MIPS-I is not implemented", false);
100 report_fatal_error("Code generation for MIPS-V is not implemented", false);
108 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). "
113 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false);
116 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false);
119 report_fatal_error("microMIPS64R6 is not supported", false);
122 report_fatal_error("microMIPS64 is not supported.", false);
126 report_fatal_error(
129 report_fatal_error(
138 report_fatal_error(ISA + " is not compatible with the DSP ASE", false)
    [all...]
  /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/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/llvm-7.0/llvm/tools/llvm-c-test/
echo.cpp 161 report_fatal_error("Parameter count mismatch");
188 report_fatal_error("SrcLast param does not match End");
190 report_fatal_error("DstLast param does not match End");
195 report_fatal_error("SrcNext was unexpectedly null");
197 report_fatal_error("DstNext was unexpectedly null");
201 report_fatal_error("SrcNext.Previous param is not Current");
205 report_fatal_error("DstNext.Previous param is not Current");
212 report_fatal_error("Parameter count does not match iteration");
219 report_fatal_error("LLVMGetValueKind returned incorrect type");
232 report_fatal_error("Expected a constant")
    [all...]
  /external/llvm/lib/Support/
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);
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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyAddMissingPrototypes.cpp 78 report_fatal_error(
82 report_fatal_error(
118 report_fatal_error(
129 report_fatal_error(
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 40 report_fatal_error("can't handle InlineJT");
45 report_fatal_error("can't handle InlineJT32");
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/
llvm-exegesis.cpp 96 llvm::report_fatal_error(
104 llvm::report_fatal_error(llvm::Twine("unknown opcode ").concat(OpcodeName));
124 llvm::report_fatal_error("cannot initialize libpfm");
146 llvm::report_fatal_error("cannot create benchmark runner");
150 llvm::report_fatal_error("--num-repetitions must be greater than zero");
181 llvm::report_fatal_error("cannot open out file: " + OutputFilename);
183 llvm::report_fatal_error(std::move(Err));
188 llvm::report_fatal_error("--benchmarks-file must be set.");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
ErrorHandling.cpp 82 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { function in class:llvm
83 report_fatal_error(Twine(Reason), GenCrashDiag);
86 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { function in class:llvm
87 report_fatal_error(Twine(Reason), GenCrashDiag);
90 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { function in class:llvm
91 report_fatal_error(Twine(Reason), GenCrashDiag);
94 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { function in class:llvm
112 // raw ostreams can call report_fatal_error.
Error.cpp 90 report_fatal_error(EC.message());
119 void report_fatal_error(Error Err, bool GenCrashDiag) { function in namespace:llvm
120 assert(Err && "report_fatal_error called with success value");
126 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/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 127 report_fatal_error("Inline asm not supported by this streamer because"
135 report_fatal_error("Error parsing inline asm\n");
236 report_fatal_error("Nested variants found in inline asm string: '" +
271 report_fatal_error("Unterminated ${:foo} operand in inline asm"
286 report_fatal_error("Bad $ operand number in inline asm string: '" +
298 report_fatal_error("Bad ${:} expression in inline asm string: '" +
306 report_fatal_error("Bad ${} expression in inline asm string: '" +
312 report_fatal_error("Invalid $ operand number in inline asm string: '" +
400 report_fatal_error(Msg.str());
  /external/llvm/unittests/Analysis/
ValueTrackingTest.cpp 36 report_fatal_error(os.str());
40 report_fatal_error("Test must have a function named @test");
50 report_fatal_error("@test must have an instruction %A");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 146 report_fatal_error("Inline asm not supported by this streamer because"
166 report_fatal_error("Error parsing inline asm\n");
217 report_fatal_error("Unterminated ${:foo} operand in inline asm"
232 report_fatal_error("Bad $ operand number in inline asm string: '" +
237 report_fatal_error("Invalid $ operand number in inline asm string: '" +
326 report_fatal_error("Nested variants found in inline asm string: '" +
361 report_fatal_error("Unterminated ${:foo} operand in inline asm"
376 report_fatal_error("Bad $ operand number in inline asm string: '" +
388 report_fatal_error("Bad ${:} expression in inline asm string: '" +
396 report_fatal_error("Bad ${} expression in inline asm string: '"
    [all...]
  /external/clang/lib/Frontend/
LangStandards.cpp 23 llvm::report_fatal_error("getLangStandardForKind() on unspecified kind");

Completed in 949 milliseconds

1 2 3 4 5 6 7 8 91011>>