HomeSort by: relevance | last modified time | path
    Searched refs:report_fatal_error (Results 1 - 25 of 362) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSectionXCOFF.cpp 30 report_fatal_error("Unhandled storage-mapping class for .text csect");
38 report_fatal_error("Unhandled storage-mapping class for .rodata csect.");
47 report_fatal_error("Unhandled storage-mapping class for .tdata csect.");
66 report_fatal_error(
115 report_fatal_error("Printing for this SectionKind is unimplemented.");
MCELFStreamer.cpp 60 report_fatal_error("Fragment can't be larger than a bundle size");
66 report_fatal_error("Padding cannot exceed 255 bytes");
150 report_fatal_error("Unterminated .bundle_lock when changing a section");
327 report_fatal_error("Symbol: " + Symbol->getName() +
358 report_fatal_error("Emitting values inside a locked bundle is forbidden");
368 report_fatal_error("Emitting values inside a locked bundle is forbidden");
524 report_fatal_error("A Bundle can only have one Subtarget.");
626 report_fatal_error(".bundle_align_mode cannot be changed once set");
635 report_fatal_error(".bundle_lock forbidden when bundling is disabled");
655 report_fatal_error(".bundle_unlock forbidden when bundling is disabled")
    [all...]
MCRegisterInfo.cpp 117 report_fatal_error("target does not implement codeview register mapping");
120 report_fatal_error("unknown codeview register " + (RegNum < getNumRegs()
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ErrorHandling.h 71 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
73 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
75 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
105 /// error handler. In contrast to the generic 'report_fatal_error'
  /src/external/apache2/llvm/dist/llvm/lib/Support/
TypeSize.cpp 30 report_fatal_error("Invalid size request on a scalable vector.");
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 99 report_fatal_error(EC.message());
140 void report_fatal_error(Error Err, bool GenCrashDiag) { function in namespace:llvm
141 assert(Err && "report_fatal_error called with success value");
147 report_fatal_error(ErrMsg);
SmallVector.cpp 49 /// std::length_error or calls report_fatal_error.
60 report_fatal_error(Reason);
65 /// std::length_error or calls report_fatal_error.
74 report_fatal_error(Reason);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSubtarget.cpp 97 report_fatal_error("Code generation for MIPS-I is not implemented", false);
99 report_fatal_error("Code generation for MIPS-V is not implemented", false);
107 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). "
112 report_fatal_error(
117 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false);
120 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false);
123 report_fatal_error("microMIPS64R6 is not supported", false);
126 report_fatal_error("microMIPS64 is not supported.", false);
130 report_fatal_error(
133 report_fatal_error(
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCXCOFFObjectWriter.cpp 60 report_fatal_error("Unimplemented fixup kind.");
65 report_fatal_error("Unsupported modifier for half16 fixup.");
83 report_fatal_error("Unsupported modifier");
PPCMCAsmInfo.cpp 61 report_fatal_error("XCOFF is not supported for little-endian targets");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 168 report_fatal_error("Parameter count mismatch");
195 report_fatal_error("SrcLast param does not match End");
197 report_fatal_error("DstLast param does not match End");
202 report_fatal_error("SrcNext was unexpectedly null");
204 report_fatal_error("DstNext was unexpectedly null");
208 report_fatal_error("SrcNext.Previous param is not Current");
212 report_fatal_error("DstNext.Previous param is not Current");
219 report_fatal_error("Parameter count does not match iteration");
226 report_fatal_error("LLVMGetValueKind returned incorrect type");
239 report_fatal_error("Expected a constant")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFPreserveDIType.cpp 60 report_fatal_error(
78 report_fatal_error("Incorrect flag for llvm.bpf.btf.type.id intrinsic");
97 report_fatal_error("Empty type name for BTF_TYPE_ID_REMOTE reloc");
BPFAbstractMemberAccess.cpp 284 report_fatal_error("Missing metadata for llvm.preserve.array.access.index intrinsic");
295 report_fatal_error("Missing metadata for llvm.preserve.union.access.index intrinsic");
306 report_fatal_error("Missing metadata for llvm.preserve.struct.access.index intrinsic");
319 report_fatal_error("Incorrect info_kind for llvm.bpf.preserve.field.info intrinsic");
327 report_fatal_error("Missing metadata for llvm.preserve.type.info intrinsic");
330 report_fatal_error("Incorrect flag for llvm.bpf.preserve.type.info intrinsic");
341 report_fatal_error("Missing metadata for llvm.preserve.enum.value intrinsic");
344 report_fatal_error("Incorrect flag for llvm.bpf.preserve.enum.value intrinsic");
594 report_fatal_error("Unsupported field expression for llvm.bpf.preserve.field.info, "
599 report_fatal_error("Unsupported field expression for llvm.bpf.preserve.field.info,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVBaseInfo.cpp 92 report_fatal_error("RV64 target requires an RV64 CPU");
94 report_fatal_error("RV32 target requires an RV32 CPU");
96 report_fatal_error("RV32E can't be enabled for an RV64 target");
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Source.cpp 34 llvm::report_fatal_error("missing source expression");
  /src/external/apache2/llvm/dist/clang/lib/Basic/
LangStandards.cpp 21 llvm::report_fatal_error("getLangStandardForKind() on unspecified kind");
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCXCOFFStreamer.h 37 report_fatal_error("emitXCOFFRenameDirective is not implemented yet on "
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 129 report_fatal_error(" Too much descriptor for ocaml GC");
145 report_fatal_error("Function '" + FI.getFunction().getName() +
162 report_fatal_error("Function '" + FI.getFunction().getName() +
177 report_fatal_error(
AsmPrinterInlineAsm.cpp 114 report_fatal_error("Inline asm not supported by this streamer because"
183 report_fatal_error("Unterminated ${:foo} operand in inline asm"
199 report_fatal_error("Bad $ operand number in inline asm string: '" +
204 report_fatal_error("Invalid $ operand number in inline asm string: '" +
215 report_fatal_error("Bad ${:} expression in inline asm string: '" +
223 report_fatal_error("Bad ${} expression in inline asm string: '" +
316 report_fatal_error("Nested variants found in inline asm string: '" +
351 report_fatal_error("Unterminated ${:foo} operand in inline asm"
367 report_fatal_error("Bad $ operand number in inline asm string: '" +
379 report_fatal_error("Bad ${:} expression in inline asm string: '"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
Caching.cpp 68 report_fatal_error(Twine("Failed to open cache file ") + EntryPath +
96 report_fatal_error(Twine("Failed to open new cache file ") +
126 report_fatal_error(Twine("Failed to rename temporary file ") +
142 report_fatal_error("ThinLTO: Can't get a temporary file");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-as-fuzzer/
llvm-as-fuzzer.cpp 74 report_fatal_error("Broken module");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ParallelCG.cpp 35 report_fatal_error("Failed to setup codegen");
87 report_fatal_error("Failed to read bitcode");
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/MCTargetDesc/
XCoreInstPrinter.cpp 42 report_fatal_error("can't handle InlineJT");
47 report_fatal_error("can't handle InlineJT32");
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
BlockExtractor.cpp 125 report_fatal_error("BlockExtractor couldn't load the file.");
138 report_fatal_error("Invalid line format, expecting lines like: 'funcname bb1[;bb2..]'");
143 report_fatal_error("Missing bbs name");
197 report_fatal_error("Invalid function name specified in the input file");
203 report_fatal_error("Invalid block name specified in the input file");
215 report_fatal_error("Invalid basic block");

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 91011>>