Home
last modified time | relevance | path

Searched refs:report_fatal_error (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/external/swiftshader/third_party/LLVM/lib/MC/
DMCPureStreamer.cpp55 report_fatal_error("unsupported directive in pure streamer"); in EmitSymbolAttribute()
58 report_fatal_error("unsupported directive in pure streamer"); in EmitAssemblerFlag()
62 report_fatal_error("unsupported directive in pure streamer"); in EmitTBSSSymbol()
65 report_fatal_error("unsupported directive in pure streamer"); in EmitSymbolDesc()
69 report_fatal_error("unsupported directive in pure streamer"); in EmitCommonSymbol()
72 report_fatal_error("unsupported directive in pure streamer"); in EmitThumbFunc()
75 report_fatal_error("unsupported directive in pure streamer"); in BeginCOFFSymbolDef()
78 report_fatal_error("unsupported directive in pure streamer"); in EmitCOFFSymbolStorageClass()
81 report_fatal_error("unsupported directive in pure streamer"); in EmitCOFFSymbolType()
84 report_fatal_error("unsupported directive in pure streamer"); in EndCOFFSymbolDef()
[all …]
DMCStreamer.cpp132 report_fatal_error("unsupported directive in streamer"); in EmitGPRel32Value()
167 report_fatal_error("No open frame"); in EnsureValidFrame()
277 report_fatal_error("Starting a frame before finishing the previous one!"); in EmitCFIStartProc()
420 report_fatal_error("No open Win64 EH frame function!"); in EnsureValidW64UnwindInfo()
426 report_fatal_error("Starting a function before ending the previous one!"); in EmitWin64EHStartProc()
438 report_fatal_error("Not all chained regions terminated!"); in EmitWin64EHEndProc()
458 report_fatal_error("End of a chained region outside a chained region!"); in EmitWin64EHEndChained()
469 report_fatal_error("Chained unwind areas can't have handlers!"); in EmitWin64EHHandler()
472 report_fatal_error("Don't know what kind of handler this is!"); in EmitWin64EHHandler()
483 report_fatal_error("Chained unwind areas can't have handlers!"); in EmitWin64EHHandlerData()
[all …]
/external/llvm/tools/llvm-c-test/
Decho.cpp160 report_fatal_error("Parameter count mismatch"); in clone_params()
186 report_fatal_error("SrcLast param does not match End"); in clone_params()
188 report_fatal_error("DstLast param does not match End"); in clone_params()
193 report_fatal_error("SrcNext was unexpectedly null"); in clone_params()
195 report_fatal_error("DstNext was unexpectedly null"); in clone_params()
199 report_fatal_error("SrcNext.Previous param is not Current"); in clone_params()
203 report_fatal_error("DstNext.Previous param is not Current"); in clone_params()
210 report_fatal_error("Parameter count does not match iteration"); in clone_params()
217 report_fatal_error("LLVMGetValueKind returned incorrect type"); in check_value_kind()
230 report_fatal_error("Expected a constant"); in clone_constant_impl()
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DErrorHandling.cpp52 void llvm::report_fatal_error(const char *Reason) { in report_fatal_error() function in llvm
53 report_fatal_error(Twine(Reason)); in report_fatal_error()
56 void llvm::report_fatal_error(const std::string &Reason) { in report_fatal_error() function in llvm
57 report_fatal_error(Twine(Reason)); in report_fatal_error()
60 void llvm::report_fatal_error(StringRef Reason) { in report_fatal_error() function in llvm
61 report_fatal_error(Twine(Reason)); in report_fatal_error()
64 void llvm::report_fatal_error(const Twine &Reason) { in report_fatal_error() function in llvm
/external/llvm/lib/IR/
DDataLayout.cpp201 report_fatal_error("Trailing separator in datalayout string"); in split()
203 report_fatal_error("Expected token before separator in datalayout string"); in split()
212 report_fatal_error("not a number, or does not fit in an unsigned int"); in getInt()
219 report_fatal_error("number of bits must be a byte width multiple"); in inBytes()
255 report_fatal_error("Invalid address space, must be a 24bit integer"); in parseSpecifier()
259 report_fatal_error( in parseSpecifier()
264 report_fatal_error("Invalid pointer size of 0 bytes"); in parseSpecifier()
268 report_fatal_error( in parseSpecifier()
273 report_fatal_error( in parseSpecifier()
282 report_fatal_error( in parseSpecifier()
[all …]
/external/llvm/lib/Target/Mips/
DMipsSubtarget.cpp88 report_fatal_error("Code generation for MIPS-I is not implemented", false); in MipsSubtarget()
90 report_fatal_error("Code generation for MIPS-V is not implemented", false); in MipsSubtarget()
98 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " in MipsSubtarget()
103 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); in MipsSubtarget()
106 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); in MipsSubtarget()
114 report_fatal_error(ISA + " is not compatible with the DSP ASE", false); in MipsSubtarget()
118 report_fatal_error("position-independent code requires '-mabicalls'"); in MipsSubtarget()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DErrorHandling.h76 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/lib/Support/
DErrorHandling.cpp62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
63 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
67 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
71 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
/external/llvm/lib/Support/
DErrorHandling.cpp62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
63 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
67 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
71 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
/external/llvm/include/llvm/Support/
DErrorHandling.h72 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-subzero/include/llvm/Support/
DErrorHandling.h72 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/MC/
DMCStreamer.cpp131 report_fatal_error("unsupported directive in streamer"); in EmitGPRel64Value()
135 report_fatal_error("unsupported directive in streamer"); in EmitGPRel32Value()
199 report_fatal_error("No open frame"); in EnsureValidDwarfFrame()
261 report_fatal_error("Starting a frame before finishing the previous one!"); in EmitCFIStartProc()
446 report_fatal_error(".seh_* directives are not supported on this target"); in EnsureValidWinFrameInfo()
448 report_fatal_error("No open Win64 EH frame function!"); in EnsureValidWinFrameInfo()
454 report_fatal_error(".seh_* directives are not supported on this target"); in EmitWinCFIStartProc()
456 report_fatal_error("Starting a function before ending the previous one!"); in EmitWinCFIStartProc()
469 report_fatal_error("Not all chained regions terminated!"); in EmitWinCFIEndProc()
491 report_fatal_error("End of a chained region outside a chained region!"); in EmitWinCFIEndChained()
[all …]
DMCELFStreamer.cpp56 report_fatal_error("Fragment can't be larger than a bundle size"); in mergeFragment()
62 report_fatal_error("Padding cannot exceed 255 bytes"); in mergeFragment()
140 report_fatal_error("Unterminated .bundle_lock when changing a section"); in ChangeSection()
324 report_fatal_error("Symbol: " + Symbol->getName() + in EmitCommonSymbol()
349 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in EmitValueImpl()
359 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in EmitValueToAlignment()
565 report_fatal_error(".bundle_align_mode cannot be changed once set"); in EmitBundleAlignMode()
574 report_fatal_error(".bundle_lock forbidden when bundling is disabled"); in EmitBundleLock()
594 report_fatal_error(".bundle_unlock forbidden when bundling is disabled"); in EmitBundleUnlock()
596 report_fatal_error(".bundle_unlock without matching lock"); in EmitBundleUnlock()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp127 report_fatal_error("Inline asm not supported by this streamer because" in EmitInlineAsm()
135 report_fatal_error("Error parsing inline asm\n"); in EmitInlineAsm()
236 report_fatal_error("Nested variants found in inline asm string: '" + in EmitInlineAsm()
271 report_fatal_error("Unterminated ${:foo} operand in inline asm" in EmitInlineAsm()
286 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitInlineAsm()
298 report_fatal_error("Bad ${:} expression in inline asm string: '" + in EmitInlineAsm()
306 report_fatal_error("Bad ${} expression in inline asm string: '" + in EmitInlineAsm()
312 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitInlineAsm()
400 report_fatal_error(Msg.str()); in PrintSpecial()
DOcamlGCPrinter.cpp118 report_fatal_error(" Too much descriptor for ocaml GC"); in finishAssembly()
129 report_fatal_error("Function '" + FI.getFunction().getName() + in finishAssembly()
143 report_fatal_error("Function '" + FI.getFunction().getName() + in finishAssembly()
156 report_fatal_error( in finishAssembly()
/external/swiftshader/third_party/LLVM/lib/Object/
DObject.cpp46 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message()); in LLVMMoveToNextSection()
52 report_fatal_error(ec.message()); in LLVMGetSectionName()
59 report_fatal_error(ec.message()); in LLVMGetSectionSize()
66 report_fatal_error(ec.message()); in LLVMGetSectionContents()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp138 report_fatal_error("Inline asm not supported by this streamer because" in EmitInlineAsm()
153 report_fatal_error("Error parsing inline asm\n"); in EmitInlineAsm()
202 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitMSInlineAsmStr()
207 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitMSInlineAsmStr()
296 report_fatal_error("Nested variants found in inline asm string: '" + in EmitGCCInlineAsmStr()
331 report_fatal_error("Unterminated ${:foo} operand in inline asm" in EmitGCCInlineAsmStr()
346 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitGCCInlineAsmStr()
358 report_fatal_error("Bad ${:} expression in inline asm string: '" + in EmitGCCInlineAsmStr()
366 report_fatal_error("Bad ${} expression in inline asm string: '" + in EmitGCCInlineAsmStr()
372 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitGCCInlineAsmStr()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp156 report_fatal_error("unsupported relocation of modified symbol"); in RecordX86_64Relocation()
161 report_fatal_error("unsupported pc-relative relocation of difference"); in RecordX86_64Relocation()
174 report_fatal_error("unsupported relocation with identical base"); in RecordX86_64Relocation()
252 report_fatal_error("unsupported relocation of variable '" + in RecordX86_64Relocation()
256 report_fatal_error("unsupported relocation of undefined symbol '" + in RecordX86_64Relocation()
274 report_fatal_error("unsupported symbol modifier in relocation"); in RecordX86_64Relocation()
300 report_fatal_error("unsupported symbol modifier in branch " in RecordX86_64Relocation()
316 report_fatal_error("TLVP symbol modifier should have been rip-rel"); in RecordX86_64Relocation()
318 report_fatal_error("unsupported symbol modifier in relocation"); in RecordX86_64Relocation()
355 report_fatal_error("symbol '" + A->getName() + in RecordScatteredRelocation()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceBrowserCompileServer.cpp50 llvm::report_fatal_error("Failed to get translator compile IRT interface"); in getIRTInterfaces()
105 llvm::report_fatal_error("Failed to read arguments from file '" + in getExternalArgs()
179 llvm::report_fatal_error("Invalid output FD"); in getOutputStream()
217 llvm::report_fatal_error("no target architecture match."); in getTargetArch()
330 llvm::report_fatal_error("no browser hookups"); in run()
334 llvm::report_fatal_error("no browser hookups"); in getErrorCode()
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp48 report_fatal_error("Relocation emission for MachO/PPC64 unimplemented."); in recordRelocation()
61 report_fatal_error("log2size(FixupKind): Unhandled fixup kind!"); in getFixupKindLog2Size()
95 report_fatal_error("Unimplemented fixup kind (relative)"); in getRelocType()
121 report_fatal_error("Unimplemented fixup kind (absolute)!"); in getRelocType()
210 report_fatal_error("symbol '" + A->getName() + in recordScatteredRelocation()
222 report_fatal_error("symbol '" + B->getSymbol().getName() + in recordScatteredRelocation()
339 report_fatal_error("FIXME: relocations to absolute targets " in RecordPPCRelocation()
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp137 report_fatal_error("Array element type can't be an Array or a Blob"); in skipRecord()
198 report_fatal_error("Abbreviation starts with an Array or a Blob"); in readRecord()
221 report_fatal_error("Array op not second to last"); in readRecord()
224 report_fatal_error( in readRecord()
230 report_fatal_error("Array element type can't be an Array or a Blob"); in readRecord()
308 report_fatal_error( in ReadAbbrevRecord()
317 report_fatal_error("Abbrev record with no operands"); in ReadAbbrevRecord()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp68 report_fatal_error("Target does not support MC emission!"); in MCJIT()
84 report_fatal_error(Dyld.getErrorString()); in MCJIT()
94 report_fatal_error("not yet implemented"); in getPointerToBasicBlock()
115 report_fatal_error("not yet implemented"); in recompileAndRelinkFunction()
119 report_fatal_error("not yet implemented"); in freeMachineCodeForFunction()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp186 report_fatal_error("Can't allocate enough memory: " + Err); in preallocateSlab()
196 report_fatal_error("Can't allocate enough memory. Tune --preallocate"); in allocateFromSlab()
230 report_fatal_error("MemoryManager allocation failed: " + Err); in allocateCodeSection()
250 report_fatal_error("MemoryManager allocation failed: " + Err); in allocateDataSection()
265 report_fatal_error("Dylib not found: '" + Dylib + "'."); in loadDylibs()
268 report_fatal_error("Error loading '" + Dylib + "': " + ErrMsg); in loadDylibs()
399 report_fatal_error("Pre-allocated bytes of memory must be a positive integer."); in doPreallocation()
502 report_fatal_error("Invalid section specification '" + Mapping + in applySpecificSectionMappings()
514 report_fatal_error(ErrorMsg); in applySpecificSectionMappings()
522 report_fatal_error("Invalid section address in mapping '" + Mapping + in applySpecificSectionMappings()
[all …]
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp358 report_fatal_error("Missing -thinlto-index for ThinLTO promotion stage"); in loadCombinedIndex()
372 report_fatal_error("Can't load module for file " + Filename); in loadModule()
378 report_fatal_error("Can't override the module id for multiple files"); in loadModule()
434 report_fatal_error( in thinLink()
462 report_fatal_error("Can't handle a single output filename and multiple " in distributedIndexes()
494 report_fatal_error("Can't handle a single output filename and multiple " in emitImports()
519 report_fatal_error("Can't handle a single output filename and multiple " in promote()
545 report_fatal_error("Can't handle a single output filename and multiple " in import()
572 report_fatal_error("Can't handle a single output filename and multiple " in internalize()
603 report_fatal_error("Can't handle a single output filename and multiple " in optimize()
[all …]
/external/llvm/lib/Object/
DObject.cpp110 report_fatal_error(Buf); in LLVMMoveToContainingSection()
140 report_fatal_error(ec.message()); in LLVMGetSectionName()
151 report_fatal_error(ec.message()); in LLVMGetSectionContents()
192 report_fatal_error(Buf); in LLVMGetSymbolName()
204 report_fatal_error(Buf); in LLVMGetSymbolAddress()

12345678910>>...14