Home
last modified time | relevance | path

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

12345678910>>...17

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp105 report_fatal_error("Code generation for MIPS-V is not implemented", false); in MipsSubtarget()
112 report_fatal_error("MSA requires a 64-bit FPU register file (FR=1 mode). " in MipsSubtarget()
117 report_fatal_error( in MipsSubtarget()
122 report_fatal_error("-mattr=+nooddspreg requires the O32 ABI.", false); in MipsSubtarget()
125 report_fatal_error("FPXX is not permitted for the N32/N64 ABI's.", false); in MipsSubtarget()
128 report_fatal_error("microMIPS64R6 is not supported", false); in MipsSubtarget()
131 report_fatal_error("microMIPS64 is not supported.", false); in MipsSubtarget()
135 report_fatal_error( in MipsSubtarget()
138 report_fatal_error( in MipsSubtarget()
142 report_fatal_error("IEEE 754-2008 abs.fmt is not supported for the given " in MipsSubtarget()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp116 report_fatal_error(Twine("Empty name in nvvm-reflect-add option '") + in populateReflectMap()
119 report_fatal_error(Twine("Missing value in nvvm-reflect-add option '") + in populateReflectMap()
123 report_fatal_error( in populateReflectMap()
150 report_fatal_error( in handleReflectFunction()
153 report_fatal_error("__nvvm_reflect requires exactly one argument"); in handleReflectFunction()
158 report_fatal_error("__nvvm_reflect argument must be a constant string"); in handleReflectFunction()
163 report_fatal_error("__nvvm_reflect argument must be a string constant"); in handleReflectFunction()
165 report_fatal_error( in handleReflectFunction()
170 report_fatal_error("__nvvm_reflect argument cannot be empty"); in handleReflectFunction()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp31 report_fatal_error("Unhandled storage-mapping class for .text csect"); in printSwitchToSection()
40 report_fatal_error("Unhandled storage-mapping class for .rodata csect."); in printSwitchToSection()
49 report_fatal_error( in printSwitchToSection()
59 report_fatal_error("Unhandled storage-mapping class for .tdata csect."); in printSwitchToSection()
78 report_fatal_error( in printSwitchToSection()
131 report_fatal_error("Printing for this SectionKind is unimplemented."); in printSwitchToSection()
H A DWasmObjectWriter.cpp434 report_fatal_error("section size does not fit in a uint32_t"); in endSection()
471 report_fatal_error("section already has a defining function: " + in executePostLayoutBinding()
547 report_fatal_error("relocations for function or section offsets are " in recordRelocation()
555 report_fatal_error("section doesn\'t have defining symbol"); in recordRelocation()
561 report_fatal_error("section symbol is required for relocation"); in recordRelocation()
578 report_fatal_error("missing indirect function table symbol"); in recordRelocation()
581 report_fatal_error("__indirect_function_table symbol has wrong type"); in recordRelocation()
592 report_fatal_error("relocations against un-named temporaries are not yet " in recordRelocation()
697 report_fatal_error("only data supported in data sections"); in addData()
701 report_fatal_error("only byte values supported for alignment"); in addData()
[all …]
H A DMCELFStreamer.cpp98 report_fatal_error("Unterminated .bundle_lock when changing a section"); in changeSection()
288 report_fatal_error(Twine("Symbol: ") + Symbol->getName() + in emitCommonSymbol()
319 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in emitValueImpl()
327 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in emitValueToAlignment()
371 report_fatal_error("Relocation for CG Profile could not be created: " + in finalizeCGProfileEntry()
400 report_fatal_error("A Bundle can only have one Subtarget."); in CheckBundleSubtargets()
476 report_fatal_error(".bundle_align_mode cannot be changed once set"); in emitBundleAlignMode()
483 report_fatal_error(".bundle_lock forbidden when bundling is disabled"); in emitBundleLock()
496 report_fatal_error(".bundle_unlock forbidden when bundling is disabled"); in emitBundleUnlock()
498 report_fatal_error(".bundle_unlock without matching lock"); in emitBundleUnlock()
[all …]
H A DMCXCOFFStreamer.cpp72 report_fatal_error("Not implemented yet."); in emitSymbolAttribute()
97 report_fatal_error("failed to get fixup kind for R_REF relocation"); in emitXCOFFRefDirective()
108 report_fatal_error("Only explicit .rename is supported for XCOFF."); in emitXCOFFRenameDirective()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp95 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
96 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
99 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
100 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
103 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() function in llvm
141 report_fatal_error(reason, /*GenCrashDiag=*/true); in reportFatalInternalError()
144 report_fatal_error(reason, /*GenCrashDiag=*/true); in reportFatalInternalError()
147 report_fatal_error(reason, /*GenCrashDiag=*/true); in reportFatalInternalError()
150 report_fatal_error(reason, /*GenCrashDiag=*/false); in reportFatalUsageError()
153 report_fatal_error(reason, /*GenCrashDiag=*/false); in reportFatalUsageError()
[all …]
H A DError.cpp123 report_fatal_error(Twine(EC.message())); in errorToErrorCode()
167 void report_fatal_error(Error Err, bool GenCrashDiag) { in report_fatal_error() function
174 report_fatal_error(Twine(ErrMsg), GenCrashDiag); in report_fatal_error()
178 report_fatal_error(std::move(Err), /*GenCrashDiag=*/true); in reportFatalInternalError()
181 report_fatal_error(std::move(Err), /*GenCrashDiag=*/false); in reportFatalUsageError()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveDIType.cpp61 report_fatal_error( in BPFPreserveDITypeImpl()
79 report_fatal_error("Incorrect flag for llvm.bpf.btf.type.id intrinsic"); in BPFPreserveDITypeImpl()
100 report_fatal_error( in BPFPreserveDITypeImpl()
103 report_fatal_error("Empty type name for BTF_TYPE_ID_REMOTE reloc"); in BPFPreserveDITypeImpl()
H A DBPFAbstractMemberAccess.cpp338 report_fatal_error("Missing metadata for llvm.preserve.array.access.index intrinsic"); in IsPreserveDIAccessIndexCall()
348 report_fatal_error("Missing metadata for llvm.preserve.union.access.index intrinsic"); in IsPreserveDIAccessIndexCall()
358 report_fatal_error("Missing metadata for llvm.preserve.struct.access.index intrinsic"); in IsPreserveDIAccessIndexCall()
371 report_fatal_error("Incorrect info_kind for llvm.bpf.preserve.field.info intrinsic"); in IsPreserveDIAccessIndexCall()
379 report_fatal_error("Missing metadata for llvm.preserve.type.info intrinsic"); in IsPreserveDIAccessIndexCall()
382 report_fatal_error("Incorrect flag for llvm.bpf.preserve.type.info intrinsic"); in IsPreserveDIAccessIndexCall()
395 report_fatal_error("Missing metadata for llvm.preserve.enum.value intrinsic"); in IsPreserveDIAccessIndexCall()
398 report_fatal_error("Incorrect flag for llvm.bpf.preserve.enum.value intrinsic"); in IsPreserveDIAccessIndexCall()
654 report_fatal_error("Unsupported field expression for llvm.bpf.preserve.field.info, " in GetStorageBitRange()
661 report_fatal_error("Unsupported field expression for llvm.bpf.preserve.field.info, " in GetStorageBitRange()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCXCOFFObjectWriter.cpp58 report_fatal_error("Unimplemented fixup kind."); in getRelocTypeAndSignSize()
63 report_fatal_error("Unsupported modifier for half16 fixup."); in getRelocTypeAndSignSize()
79 report_fatal_error("Invalid PC-relative relocation."); in getRelocTypeAndSignSize()
112 report_fatal_error("Unsupported modifier"); in getRelocTypeAndSignSize()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp114 report_fatal_error( "SPE is only supported for 32-bit targets.\n", false); in initSubtargetFeatures()
116 report_fatal_error( in initSubtargetFeatures()
130 report_fatal_error("The aix-small-local-[exec|dynamic]-tls attribute is " in initSubtargetFeatures()
140 report_fatal_error("The aix-small-local-[exec|dynamic]-tls attribute can " in initSubtargetFeatures()
147 report_fatal_error("The aix-shared-lib-tls-model-opt attribute " in initSubtargetFeatures()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp114 report_fatal_error("Inline asm not supported by this streamer because" in emitInlineAsm()
192 report_fatal_error("Nested variants found in inline asm string: '" + in EmitInlineAsmStr()
227 report_fatal_error("Unterminated ${:foo} operand in inline asm" in EmitInlineAsmStr()
242 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitInlineAsmStr()
247 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitInlineAsmStr()
258 report_fatal_error("Bad ${:} expression in inline asm string: '" + in EmitInlineAsmStr()
266 report_fatal_error("Bad ${} expression in inline asm string: '" + in EmitInlineAsmStr()
449 report_fatal_error(Twine(Msg.str())); in PrintSpecial()
H A DOcamlGCPrinter.cpp125 report_fatal_error(" Too much descriptor for ocaml GC"); in finishAssembly()
139 report_fatal_error("Function '" + FI->getFunction().getName() + in finishAssembly()
157 report_fatal_error("Function '" + FI->getFunction().getName() + in finishAssembly()
172 report_fatal_error( in finishAssembly()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchSubtarget.cpp52 report_fatal_error("Please use one feature of 32bit and 64bit."); in initializeSubtargetDependencies()
55 report_fatal_error("Feature 32bit should be used for loongarch32 target."); in initializeSubtargetDependencies()
58 report_fatal_error("Feature 64bit should be used for loongarch64 target."); in initializeSubtargetDependencies()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h63 [[noreturn]] LLVM_ABI void report_fatal_error(const char *reason,
65 [[noreturn]] LLVM_ABI void report_fatal_error(StringRef reason,
67 [[noreturn]] LLVM_ABI void report_fatal_error(const Twine &reason,
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp151 report_fatal_error( in basicCheckForEHAndSjLj()
155 report_fatal_error( in basicCheckForEHAndSjLj()
159 report_fatal_error( in basicCheckForEHAndSjLj()
172 report_fatal_error("-exception-model should be either 'none' or 'wasm'"); in basicCheckForEHAndSjLj()
174 report_fatal_error("-exception-model=wasm not allowed with " in basicCheckForEHAndSjLj()
177 report_fatal_error( in basicCheckForEHAndSjLj()
180 report_fatal_error( in basicCheckForEHAndSjLj()
184 report_fatal_error( in basicCheckForEHAndSjLj()
H A DWebAssemblyMCInstLower.cpp123 report_fatal_error("GOT symbol references do not support offsets"); in lowerSymbolOperand()
125 report_fatal_error("Function addresses with offsets not supported"); in lowerSymbolOperand()
127 report_fatal_error("Global indexes with offsets not supported"); in lowerSymbolOperand()
129 report_fatal_error("Tag indexes with offsets not supported"); in lowerSymbolOperand()
131 report_fatal_error("Table indexes with offsets not supported"); in lowerSymbolOperand()
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp378 report_fatal_error(Twine(Filename) + " does not contain an index"); in printIndexStats()
613 report_fatal_error("Missing -thinlto-index for ThinLTO promotion stage"); in loadCombinedIndex()
635 report_fatal_error("Can't load module, abort."); in loadModuleFromInput()
640 report_fatal_error("Can't override the module id for multiple files"); in loadModuleFromInput()
702 report_fatal_error( in thinLink()
718 report_fatal_error("ThinLink didn't create an index"); in thinLink()
731 report_fatal_error("Can't handle a single output filename and multiple " in distributedIndexes()
769 report_fatal_error("Can't handle a single output filename and multiple " in emitImports()
799 report_fatal_error("Can't handle a single output filename and multiple " in promote()
827 report_fatal_error("Can't handle a single output filename and multiple " in import()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp121 report_fatal_error(Dyld.getErrorString()); in addObjectFile()
167 report_fatal_error("Target does not support MC emission!"); in emitObject()
221 report_fatal_error(Twine(Buf)); in generateCodeForModule()
227 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule()
330 report_fatal_error(AddrOrErr.takeError()); in getSymbolAddress()
332 report_fatal_error(Sym.takeError()); in getSymbolAddress()
349 report_fatal_error(OptionalChildOrErr.takeError()); in findSymbol()
607 report_fatal_error("MCJIT::runFunction does not support full-featured " in runFunction()
620 report_fatal_error(std::move(Err)); in getPointerToNamedFunction()
629 report_fatal_error("Program used external function '"+Name+ in getPointerToNamedFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp231 report_fatal_error( in analyze()
248 report_fatal_error( in analyze()
272 report_fatal_error( in analyze()
380 report_fatal_error("coro.id must be paired with coro.suspend"); in init()
405 report_fatal_error("coro.id.retcon.* must be paired with " in init()
428 report_fatal_error("argument to coro.suspend.retcon does not " in init()
437 report_fatal_error("wrong number of arguments to coro.suspend.retcon"); in init()
456 report_fatal_error("wrong number of results from coro.suspend.retcon"); in init()
464 report_fatal_error("result from coro.suspend.retcon does not " in init()
560 report_fatal_error(Reason); in fail()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DGCStrategy.cpp44 report_fatal_error( in getGCStrategy()
48 report_fatal_error(Twine("unsupported GC: ") + Name); in getGCStrategy()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVModuleAnalysis.cpp268 report_fatal_error("All v-regs must have been mapped to global id's"); in instrToSignature()
384 report_fatal_error( in visitDecl()
687 report_fatal_error("Adding SPIR-V requirements this target can't satisfy."); in addRequirements()
698 report_fatal_error("Adding SPIR-V requirements that can't be satisfied."); in addRequirements()
709 report_fatal_error("Adding SPIR-V requirements that can't be satisfied."); in addRequirements()
768 report_fatal_error("Unable to meet SPIR-V requirements for this target."); in checkSatisfiable()
825 report_fatal_error("Unimplemented environment for SPIR-V generation."); in initAvailableCapabilities()
1001 report_fatal_error("Result type of an atomic float instruction must be a " in AddAtomicFloatRequirements()
1008 report_fatal_error(ATOM_FLT_REQ_EXT_MSG("_add"), false); in AddAtomicFloatRequirements()
1014 report_fatal_error(ATOM_FLT_REQ_EXT_MSG("16_add"), false); in AddAtomicFloatRequirements()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp99 report_fatal_error(Twine("Failed to open ") + SaveTempPath + in saveTempBitcode()
177 report_fatal_error("Broken module found, compilation aborted!"); in verifyLoadedModule()
201 report_fatal_error("Can't load module, abort."); in loadModuleFromInput()
227 report_fatal_error("importFunctions failed"); in crossImportIntoModule()
336 report_fatal_error("Failed to setup codegen"); in codegenModule()
418 report_fatal_error(llvm::formatv("ThinLTO: Can't write file {0}: {1}", in write()
546 report_fatal_error(Twine("ThinLTO cannot create input file: ") + in addModule()
556 report_fatal_error("ThinLTO modules with incompatible triples not " in addModule()
580 report_fatal_error(Twine("Can't load target for this Triple: ") + ErrMsg); in create()
837 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DObject.cpp227 report_fatal_error(Twine(OS.str())); in LLVMMoveToContainingSection()
257 report_fatal_error(NameOrErr.takeError()); in LLVMGetSectionName()
269 report_fatal_error(E.takeError()); in LLVMGetSectionContents()
308 report_fatal_error(Twine(OS.str())); in LLVMGetSymbolName()
319 report_fatal_error(Twine(OS.str())); in LLVMGetSymbolAddress()

12345678910>>...17