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

1 2 3 4 5 6 7 8

  /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/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...]
  /frameworks/compile/mclinker/lib/Target/
ELFAttributeValue.cpp 29 llvm::report_fatal_error("Unknown type of attribtue value!");
  /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/llvm/lib/Support/
ErrorHandling.cpp 61 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { function in class:llvm
62 report_fatal_error(Twine(Reason), GenCrashDiag);
65 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { function in class:llvm
66 report_fatal_error(Twine(Reason), GenCrashDiag);
69 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { function in class:llvm
70 report_fatal_error(Twine(Reason), GenCrashDiag);
73 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { function in class:llvm
89 // raw ostreams can call report_fatal_error.
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFObjectWriter.cpp 124 report_fatal_error("invalid fixup for add (uimm12) instruction");
138 report_fatal_error("invalid fixup for 8-bit load/store instruction");
152 report_fatal_error("invalid fixup for 16-bit load/store instruction");
166 report_fatal_error("invalid fixup for 32-bit load/store instruction");
186 report_fatal_error("invalid fixup for 64-bit load/store instruction");
192 report_fatal_error("invalid fixup for 128-bit load/store instruction");
239 report_fatal_error("invalid fixup for movz/movk instruction");
AArch64AsmBackend.cpp 139 report_fatal_error("fixup value out of range");
147 report_fatal_error("fixup value out of range");
154 report_fatal_error("invalid imm12 fixup value");
159 report_fatal_error("invalid imm12 fixup value");
164 report_fatal_error("invalid imm12 fixup value");
169 report_fatal_error("invalid imm12 fixup value");
174 report_fatal_error("invalid imm12 fixup value");
177 report_fatal_error("no resolvable MOVZ/MOVK fixups supported yet");
182 report_fatal_error("fixup value out of range");
185 report_fatal_error("fixup not sufficiently aligned")
    [all...]
  /external/llvm/lib/CodeGen/
ParallelCG.cpp 38 report_fatal_error("Failed to setup codegen");
52 report_fatal_error(Twine("Target not found: ") + ErrMsg);
81 report_fatal_error("Failed to read bitcode");
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp 35 report_fatal_error(EC.message());
87 report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
96 report_fatal_error(EC.message());
X86ELFRelocationInfo.cpp 34 report_fatal_error(EC.message());
39 report_fatal_error(EC.message());
  /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");
CFGTest.cpp 42 report_fatal_error(os.str().c_str());
46 report_fatal_error("Test must have a function named @test");
58 report_fatal_error("@test must have an instruction %A");
60 report_fatal_error("@test must have an instruction %B");
  /external/clang/lib/Frontend/
LangStandards.cpp 23 llvm::report_fatal_error("getLangStandardForKind() on unspecified kind");
  /external/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 125 report_fatal_error(" Too much descriptor for ocaml GC");
141 report_fatal_error("Function '" + FI.getFunction().getName() +
157 report_fatal_error("Function '" + FI.getFunction().getName() +
172 report_fatal_error(
AsmPrinterInlineAsm.cpp 138 report_fatal_error("Inline asm not supported by this streamer because"
153 report_fatal_error("Error parsing inline asm\n");
202 report_fatal_error("Bad $ operand number in inline asm string: '" +
207 report_fatal_error("Invalid $ operand number in inline asm string: '" +
296 report_fatal_error("Nested variants found in inline asm string: '" +
331 report_fatal_error("Unterminated ${:foo} operand in inline asm"
346 report_fatal_error("Bad $ operand number in inline asm string: '" +
358 report_fatal_error("Bad ${:} expression in inline asm string: '" +
366 report_fatal_error("Bad ${} expression in inline asm string: '" +
372 report_fatal_error("Invalid $ operand number in inline asm string: '"
    [all...]
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 106 llvm::report_fatal_error(
115 llvm::report_fatal_error(llvm::Twine("In diagnostic: ") +
128 llvm::report_fatal_error(
139 llvm::report_fatal_error(
  /external/llvm/lib/MC/
MCStreamer.cpp 126 report_fatal_error("unsupported directive in streamer");
130 report_fatal_error("unsupported directive in streamer");
180 report_fatal_error("No open frame");
218 report_fatal_error("Starting a frame before finishing the previous one!");
403 report_fatal_error(".seh_* directives are not supported on this target");
405 report_fatal_error("No open Win64 EH frame function!");
411 report_fatal_error(".seh_* directives are not supported on this target");
413 report_fatal_error("Starting a function before ending the previous one!");
425 report_fatal_error("Not all chained regions terminated!");
446 report_fatal_error("End of a chained region outside a chained region!")
    [all...]
MCELFStreamer.cpp 55 report_fatal_error("Fragment can't be larger than a bundle size");
61 report_fatal_error("Padding cannot exceed 255 bytes");
139 report_fatal_error("Unterminated .bundle_lock when changing a section");
320 report_fatal_error("Symbol: " + Symbol->getName() +
345 report_fatal_error("Emitting values inside a locked bundle is forbidden");
355 report_fatal_error("Emitting values inside a locked bundle is forbidden");
565 report_fatal_error(".bundle_align_mode cannot be changed once set");
574 report_fatal_error(".bundle_lock forbidden when bundling is disabled");
594 report_fatal_error(".bundle_unlock forbidden when bundling is disabled");
596 report_fatal_error(".bundle_unlock without matching lock")
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMachObjectWriter.cpp 48 report_fatal_error("Relocation emission for MachO/PPC64 unimplemented.");
61 report_fatal_error("log2size(FixupKind): Unhandled fixup kind!");
95 report_fatal_error("Unimplemented fixup kind (relative)");
121 report_fatal_error("Unimplemented fixup kind (absolute)!");
210 report_fatal_error("symbol '" + A->getName() +
222 report_fatal_error("symbol '" + B->getSymbol().getName() +
339 report_fatal_error("FIXME: relocations to absolute targets "
  /external/llvm/lib/Object/
Object.cpp 103 report_fatal_error(ec.message());
132 report_fatal_error(ec.message());
143 report_fatal_error(ec.message());
180 report_fatal_error(EC.message());
187 report_fatal_error(EC.message());
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 186 report_fatal_error("Can't allocate enough memory: " + Err);
196 report_fatal_error("Can't allocate enough memory. Tune --preallocate");
230 report_fatal_error("MemoryManager allocation failed: " + Err);
250 report_fatal_error("MemoryManager allocation failed: " + Err);
265 report_fatal_error("Dylib not found: '" + Dylib + "'.");
268 report_fatal_error("Error loading '" + Dylib + "': " + ErrMsg);
375 report_fatal_error("Pre-allocated bytes of memory must be a positive integer.");
473 report_fatal_error("Invalid section specification '" + Mapping +
485 report_fatal_error(ErrorMsg);
493 report_fatal_error("Invalid section address in mapping '" + Mapping
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 181 report_fatal_error("Abbreviation starts with an Array or a Blob");
204 report_fatal_error("Array op not second to last");
207 report_fatal_error(
211 report_fatal_error("Array element type can't be an Array or a Blob");
281 report_fatal_error(
290 report_fatal_error("Abbrev record with no operands");
  /external/llvm/lib/Analysis/
Analysis.cpp 97 report_fatal_error("Broken module found, compilation aborted!");
111 report_fatal_error("Broken function found, compilation aborted!");
  /external/llvm/include/llvm/MC/
MCSymbolMachO.h 108 report_fatal_error("invalid 'common' alignment '" +

Completed in 570 milliseconds

1 2 3 4 5 6 7 8