Home
last modified time | relevance | path

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

1234

/external/llvm/lib/Object/
DObject.cpp48 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message()); in LLVMMoveToNextSection()
54 report_fatal_error(ec.message()); in LLVMMoveToContainingSection()
75 if (ec) report_fatal_error("LLVMMoveToNextSymbol failed: " + ec.message()); in LLVMMoveToNextSymbol()
82 report_fatal_error(ec.message()); in LLVMGetSectionName()
89 report_fatal_error(ec.message()); in LLVMGetSectionSize()
96 report_fatal_error(ec.message()); in LLVMGetSectionContents()
103 report_fatal_error(ec.message()); in LLVMGetSectionAddress()
111 report_fatal_error(ec.message()); in LLVMGetSectionContainsSymbol()
133 if (ec) report_fatal_error("LLVMMoveToNextRelocation failed: " + in LLVMMoveToNextRelocation()
142 report_fatal_error(ec.message()); in LLVMGetSymbolName()
[all …]
DMachOObjectFile.cpp375 report_fatal_error("getSymbolValue unimplemented in MachOObjectFile"); in getSymbolValue()
393 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile"); in begin_dynamic_symbols()
398 report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile"); in end_dynamic_symbols()
403 report_fatal_error("Needed libraries unimplemented in MachOObjectFile"); in begin_libraries_needed()
408 report_fatal_error("Needed libraries unimplemented in MachOObjectFile"); in end_libraries_needed()
413 report_fatal_error("get_load_name() unimplemented in MachOObjectFile"); in getLoadName()
948 report_fatal_error(ec.message()); in advanceTo()
968 if (ec) report_fatal_error(ec.message()); in printRelocationTargetName()
974 report_fatal_error(ec.message()); in printRelocationTargetName()
977 report_fatal_error(ec.message()); in printRelocationTargetName()
[all …]
DCOFFObjectFile.cpp66 report_fatal_error("Symbol was outside of symbol table."); in toSymb()
82 report_fatal_error("Section was outside of section table."); in toSec()
295 report_fatal_error("getSymbolValue unimplemented in COFFObjectFile"); in getSymbolValue()
518 report_fatal_error("Dynamic symbols unimplemented in COFFObjectFile"); in begin_dynamic_symbols()
523 report_fatal_error("Dynamic symbols unimplemented in COFFObjectFile"); in end_dynamic_symbols()
528 report_fatal_error("Libraries needed unimplemented in COFFObjectFile"); in begin_libraries_needed()
533 report_fatal_error("Libraries needed unimplemented in COFFObjectFile"); in end_libraries_needed()
652 report_fatal_error("Aux Symbol data was outside of symbol table."); in getSymbolAuxData()
824 report_fatal_error("getLibraryNext not implemented in COFFObjectFile"); in getLibraryNext()
829 report_fatal_error("getLibraryPath not implemented in COFFObjectFile"); in getLibraryPath()
/external/llvm/lib/MC/
DMCPureStreamer.cpp56 report_fatal_error("unsupported directive in pure streamer"); in EmitSymbolAttribute()
59 report_fatal_error("unsupported directive in pure streamer"); in EmitAssemblerFlag()
63 report_fatal_error("unsupported directive in pure streamer"); in EmitTBSSSymbol()
66 report_fatal_error("unsupported directive in pure streamer"); in EmitSymbolDesc()
70 report_fatal_error("unsupported directive in pure streamer"); in EmitCommonSymbol()
73 report_fatal_error("unsupported directive in pure streamer"); in EmitThumbFunc()
76 report_fatal_error("unsupported directive in pure streamer"); in BeginCOFFSymbolDef()
79 report_fatal_error("unsupported directive in pure streamer"); in EmitCOFFSymbolStorageClass()
82 report_fatal_error("unsupported directive in pure streamer"); in EmitCOFFSymbolType()
85 report_fatal_error("unsupported directive in pure streamer"); in EndCOFFSymbolDef()
[all …]
DMCStreamer.cpp142 report_fatal_error("unsupported directive in streamer"); in EmitGPRel64Value()
146 report_fatal_error("unsupported directive in streamer"); in EmitGPRel32Value()
182 report_fatal_error("No open frame"); in EnsureValidFrame()
218 report_fatal_error("Starting a frame before finishing the previous one!"); in EmitCFIStartProc()
394 report_fatal_error("No open Win64 EH frame function!"); in EnsureValidW64UnwindInfo()
400 report_fatal_error("Starting a function before ending the previous one!"); in EmitWin64EHStartProc()
412 report_fatal_error("Not all chained regions terminated!"); in EmitWin64EHEndProc()
432 report_fatal_error("End of a chained region outside a chained region!"); in EmitWin64EHEndChained()
443 report_fatal_error("Chained unwind areas can't have handlers!"); in EmitWin64EHHandler()
446 report_fatal_error("Don't know what kind of handler this is!"); in EmitWin64EHHandler()
[all …]
DMCELFStreamer.cpp114 report_fatal_error("Unterminated .bundle_lock when changing a section"); in ChangeSection()
273 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in EmitValueImpl()
283 report_fatal_error("Emitting values inside a locked bundle is forbidden"); in EmitValueToAlignment()
443 report_fatal_error(".bundle_align_mode should be only set once per file"); in EmitBundleAlignMode()
452 report_fatal_error(".bundle_lock forbidden when bundling is disabled"); in EmitBundleLock()
454 report_fatal_error("Nesting of .bundle_lock is forbidden"); in EmitBundleLock()
466 report_fatal_error(".bundle_unlock forbidden when bundling is disabled"); in EmitBundleUnlock()
468 report_fatal_error(".bundle_unlock without matching lock"); in EmitBundleUnlock()
470 report_fatal_error("Empty bundle-locked group is forbidden"); in EmitBundleUnlock()
DMCAssembler.cpp126 report_fatal_error("unable to evaluate offset for variable '" + in getSymbolOffset()
131 report_fatal_error("unable to evaluate offset to undefined symbol '" + in getSymbolOffset()
134 report_fatal_error("unable to evaluate offset to undefined symbol '" + in getSymbolOffset()
433 report_fatal_error("expected assembly-time absolute expression"); in computeFragmentSize()
439 report_fatal_error("invalid .org offset '" + Twine(TargetLocation) + in computeFragmentSize()
494 report_fatal_error("Fragment can't be larger than a bundle size"); in layoutFragment()
498 report_fatal_error("Padding cannot exceed 255 bytes"); in layoutFragment()
539 report_fatal_error("unable to write NOP sequence of " + in writeFragment()
544 report_fatal_error("unable to write NOP sequence of " + in writeFragment()
567 report_fatal_error("undefined .align directive, value size '" + in writeFragment()
[all …]
/external/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/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/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp128 report_fatal_error("Inline asm not supported by this streamer because" in EmitInlineAsm()
137 report_fatal_error("Error parsing inline asm\n"); in EmitInlineAsm()
186 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitMSInlineAsmStr()
191 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitMSInlineAsmStr()
280 report_fatal_error("Nested variants found in inline asm string: '" + in EmitGCCInlineAsmStr()
315 report_fatal_error("Unterminated ${:foo} operand in inline asm" in EmitGCCInlineAsmStr()
330 report_fatal_error("Bad $ operand number in inline asm string: '" + in EmitGCCInlineAsmStr()
342 report_fatal_error("Bad ${:} expression in inline asm string: '" + in EmitGCCInlineAsmStr()
350 report_fatal_error("Bad ${} expression in inline asm string: '" + in EmitGCCInlineAsmStr()
356 report_fatal_error("Invalid $ operand number in inline asm string: '" + in EmitGCCInlineAsmStr()
[all …]
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/llvm/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp158 report_fatal_error("unsupported relocation of modified symbol"); in RecordX86_64Relocation()
163 report_fatal_error("unsupported pc-relative relocation of difference"); in RecordX86_64Relocation()
176 report_fatal_error("unsupported relocation with identical base"); in RecordX86_64Relocation()
254 report_fatal_error("unsupported relocation of variable '" + in RecordX86_64Relocation()
258 report_fatal_error("unsupported relocation of undefined symbol '" + in RecordX86_64Relocation()
276 report_fatal_error("unsupported symbol modifier in relocation"); in RecordX86_64Relocation()
302 report_fatal_error("unsupported symbol modifier in branch " in RecordX86_64Relocation()
318 report_fatal_error("TLVP symbol modifier should have been rip-rel"); in RecordX86_64Relocation()
320 report_fatal_error("unsupported symbol modifier in relocation"); in RecordX86_64Relocation()
357 report_fatal_error("symbol '" + A->getName() + in RecordScatteredRelocation()
[all …]
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp93 report_fatal_error("Target does not support MC emission!"); in emitObject()
105 report_fatal_error(Dyld.getErrorString()); in emitObject()
144 report_fatal_error("not yet implemented"); in getPointerToBasicBlock()
177 report_fatal_error("not yet implemented"); in recompileAndRelinkFunction()
181 report_fatal_error("not yet implemented"); in freeMachineCodeForFunction()
302 report_fatal_error("Program used external function '"+Name+ in getPointerToNamedFunction()
/external/llvm/lib/Analysis/
DProfileDataLoader.cpp63 report_fatal_error(Twine(ToolName) + ": Profiling data truncated"); in ReadProfilingData()
125 report_fatal_error(Twine(ToolName) + ": Error opening '" + in ProfileDataLoader()
148 report_fatal_error(std::string(ToolName) in ProfileDataLoader()
/external/llvm/lib/Transforms/Instrumentation/
DBlackList.cpp38 report_fatal_error("Can't open blacklist file: " + Path + ": " + in BlackList()
57 report_fatal_error("malformed blacklist line: " + SplitLine.first); in BlackList()
70 report_fatal_error("malformed blacklist regex: " + SplitLine.second + in BlackList()
/external/llvm/include/llvm/Object/
DELF.h820 report_fatal_error("Section ended unexpectedly while scanning "
824 report_fatal_error("Unexpected verdef version");
845 report_fatal_error("Section ended unexpectedly while scanning "
849 report_fatal_error("Unexpected verneed version");
854 report_fatal_error("Section ended unexpected while scanning auxiliary "
905 report_fatal_error("Symb must point to a valid symbol!");
1450 report_fatal_error("Invalid section type in Rel!");
1463 report_fatal_error("Relocation symbol table not found!");
1477 report_fatal_error("Invalid section type in Rel!");
1499 report_fatal_error("Invalid section type in Rel!");
[all …]
/external/llvm/lib/Target/XCore/InstPrinter/
DXCoreInstPrinter.cpp39 report_fatal_error("can't handle InlineJT"); in printInlineJT()
44 report_fatal_error("can't handle InlineJT32"); in printInlineJT32()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp68 report_fatal_error("Unable to create object image from memory buffer!"); in loadObject()
184 report_fatal_error("Unable to allocate memory for common symbols!"); in emitCommonSymbols()
260 report_fatal_error("Unable to allocate section memory!"); in emitSection()
450 report_fatal_error("Expected external symbol"); in resolveExternalSymbols()
501 report_fatal_error("Incompatible object format!"); in loadObject()
505 report_fatal_error("Incompatible object format!"); in loadObject()
/external/llvm/lib/ExecutionEngine/JIT/
DJIT.cpp293 report_fatal_error("Target does not support machine code emission!"); in JIT()
347 report_fatal_error("Target does not support machine code emission!"); in addModule()
378 report_fatal_error("Target does not support machine code emission!"); in removeModule()
667 report_fatal_error("Error reading function '" + F->getName()+ in getPointerToFunction()
737 report_fatal_error("Program used external function '"+Name+ in getPointerToNamedFunction()
761 report_fatal_error("Could not resolve external global address: " in getOrEmitGlobalVariable()
811 report_fatal_error("Compilation of non-internal GlobalValue is disabled!"); in getMemoryForGV()
/external/llvm/lib/Target/XCore/
DXCoreRegisterInfo.cpp164 report_fatal_error("eliminateFrameIndex Frame size too big: " + in eliminateFrameIndex()
214 report_fatal_error("eliminateFrameIndex Frame size too big: " + in eliminateFrameIndex()
249 report_fatal_error("loadConstant value too big " + Twine(Value)); in loadConstant()
DXCoreFrameLowering.cpp53 report_fatal_error("loadFromStack offset too big " + Twine(Offset)); in loadFromStack()
68 report_fatal_error("storeToStack offset too big " + Twine(Offset)); in storeToStack()
115 report_fatal_error("emitPrologue Frame size too big: " + Twine(FrameSize)); in emitPrologue()
237 report_fatal_error("emitEpilogue Frame size too big: " + Twine(FrameSize)); in emitEpilogue()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp129 report_fatal_error("Type could not be mapped for use with libffi."); in ffiTypeFor()
177 report_fatal_error("Type value could not be mapped for use with libffi."); in ffiValueFor()
191 report_fatal_error("Calling external var arg function '" + F->getName() in ffiInvoke()
287 report_fatal_error("Tried to execute an unknown external function: " + in callExternalFunction()
/external/clang/lib/Frontend/
DLangStandards.cpp23 llvm::report_fatal_error("getLangStandardForKind() on unspecified kind"); in getLangStandardForKind()
/external/clang/lib/Tooling/
DCommonOptionsParser.cpp77 llvm::report_fatal_error(ErrorMessage); in CommonOptionsParser()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp367 report_fatal_error("Invalid number of arguments of main() supplied"); in runFunctionAsMain()
369 report_fatal_error("Invalid type for third argument of main() supplied"); in runFunctionAsMain()
371 report_fatal_error("Invalid type for second argument of main() supplied"); in runFunctionAsMain()
373 report_fatal_error("Invalid type for first argument of main() supplied"); in runFunctionAsMain()
376 report_fatal_error("Invalid return type of main() supplied"); in runFunctionAsMain()
795 report_fatal_error(OS.str()); in getConstantValue()
832 report_fatal_error(OS.str()); in getConstantValue()
958 report_fatal_error(OS.str()); in LoadValueFromMemory()
1085 report_fatal_error("Could not resolve external global address: " in emitGlobals()

1234