Searched refs:report_fatal_error (Results 1 - 25 of 307) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp24 report_fatal_error("Unhandled storage-mapping class for .text csect");
32 report_fatal_error("Unhandled storage-mapping class for .rodata csect.");
49 report_fatal_error(
68 report_fatal_error("Printing for this SectionKind is unimplemented.");
H A DMCELFStreamer.cpp60 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");
314 report_fatal_error("Symbol: " + Symbol->getName() +
344 report_fatal_error("Emitting values inside a locked bundle is forbidden");
354 report_fatal_error("Emitting values inside a locked bundle is forbidden");
509 report_fatal_error("A Bundle can only have one Subtarget.");
610 report_fatal_error(".bundle_align_mode cannot be changed once set");
619 report_fatal_error(".bundle_lock forbidden when bundling is disabled");
639 report_fatal_error("
[all...]
H A DMCRegisterInfo.cpp117 report_fatal_error("target does not implement codeview register mapping");
120 report_fatal_error("unknown codeview register " + (RegNum < getNumRegs()
H A DMCXCOFFStreamer.cpp41 report_fatal_error("Not implemented yet.");
61 report_fatal_error("Zero fill not implemented for XCOFF.");
H A DWasmObjectWriter.cpp393 report_fatal_error("section size does not fit in a uint32_t");
419 report_fatal_error("section already has a defining function: " +
479 report_fatal_error("relocations for function or section offsets are "
489 report_fatal_error("section symbol is required for relocation");
499 report_fatal_error("relocations against un-named temporaries are not yet "
594 report_fatal_error("only data supported in data sections");
598 report_fatal_error("only byte values supported for alignment");
628 report_fatal_error("symbol not found in type index space: " +
839 report_fatal_error(".size expression must be evaluatable");
1171 report_fatal_error("undefine
[all...]
H A DMCSymbol.cpp70 report_fatal_error("Symbol name with unsupported characters");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h71 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'
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DXCOFF.cpp32 report_fatal_error("Unhandled storage-mapping class.");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp97 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...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp202 report_fatal_error("Trailing separator in datalayout string");
204 report_fatal_error("Expected token before separator in datalayout string");
213 report_fatal_error("not a number, or does not fit in an unsigned int");
220 report_fatal_error("number of bits must be a byte width multiple");
227 report_fatal_error("Invalid address space, must be a 24-bit integer");
251 report_fatal_error("Address space 0 can never be non-integral");
276 report_fatal_error("Invalid address space, must be a 24bit integer");
280 report_fatal_error(
285 report_fatal_error("Invalid pointer size of 0 bytes");
289 report_fatal_error(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp82 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.
H A DError.cpp99 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);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp129 report_fatal_error(" Too much descriptor for ocaml GC");
145 report_fatal_error("Function '" + FI.getFunction().getName() +
161 report_fatal_error("Function '" + FI.getFunction().getName() +
176 report_fatal_error(
H A DAsmPrinterInlineAsm.cpp152 report_fatal_error("Inline asm not supported by this streamer because"
168 report_fatal_error("Error parsing inline asm\n");
224 report_fatal_error("Unterminated ${:foo} operand in inline asm"
239 report_fatal_error("Bad $ operand number in inline asm string: '" +
244 report_fatal_error("Invalid $ operand number in inline asm string: '" +
255 report_fatal_error("Bad ${:} expression in inline asm string: '" +
263 report_fatal_error("Bad ${} expression in inline asm string: '" +
354 report_fatal_error("Nested variants found in inline asm string: '" +
389 report_fatal_error("Unterminated ${:foo} operand in inline asm"
404 report_fatal_error("Ba
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DCaching.cpp67 report_fatal_error(Twine("Failed to open cache file ") + EntryPath +
95 report_fatal_error(Twine("Failed to open new cache file ") +
125 report_fatal_error(Twine("Failed to rename temporary file ") +
141 report_fatal_error("ThinLTO: Can't get a temporary file");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DLangStandards.cpp21 llvm::report_fatal_error("getLangStandardForKind() on unspecified kind");
H A DSanitizerSpecialCaseList.cpp36 llvm::report_fatal_error(Error);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DSource.cpp34 llvm::report_fatal_error("missing source expression");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFMIChecking.cpp169 report_fatal_error("line " + std::to_string(DL.getLine()) +
172 report_fatal_error("Invalid usage of the XADD return value", false);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DParallelCG.cpp33 report_fatal_error("Failed to setup codegen");
85 report_fatal_error("Failed to read bitcode");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreInstPrinter.cpp42 report_fatal_error("can't handle InlineJT");
47 report_fatal_error("can't handle InlineJT32");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DBlockExtractor.cpp111 report_fatal_error("BlockExtractor couldn't load the file.");
124 report_fatal_error("Invalid line format, expecting lines like: 'funcname bb1[;bb2..]'");
129 report_fatal_error("Missing bbs name");
182 report_fatal_error("Invalid function name specified in the input file");
188 report_fatal_error("Invalid block name specified in the input file");
200 report_fatal_error("Invalid basic block");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp47 report_fatal_error("Relocation emission for MachO/PPC64 unimplemented.");
60 report_fatal_error("log2size(FixupKind): Unhandled fixup kind!");
94 report_fatal_error("Unimplemented fixup kind (relative)");
120 report_fatal_error("Unimplemented fixup kind (absolute)!");
209 report_fatal_error("symbol '" + A->getName() +
221 report_fatal_error("symbol '" + SB->getName() +
338 report_fatal_error("FIXME: relocations to absolute targets "
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAddMissingPrototypes.cpp78 report_fatal_error(
84 report_fatal_error("Functions with 'no-prototype' attribute should "
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMWinCOFFObjectWriter.cpp59 report_fatal_error(Twine("unsupported relocation type: ") + Info.Name);

Completed in 312 milliseconds

1234567891011>>