Home
last modified time | relevance | path

Searched refs:Unreachable (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DFunctionPropertiesAnalysis.cpp385 SetVector<const BasicBlock *> Unreachable; in finish() local
397 Unreachable.insert(Succ); in finish()
418 const auto AlreadyExcludedMark = Unreachable.size(); in finish()
419 for (size_t I = 0; I < Unreachable.size(); ++I) { in finish()
420 const auto *U = Unreachable[I]; in finish()
425 Unreachable.insert(Succ); in finish()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.h37 bool Unreachable = false; variable
69 Unreachable = false; in Clear()
H A DWebAssemblyAsmTypeCheck.cpp78 if (Unreachable) in typeError()
244 Unreachable = true; in endOfFunction()
353 Unreachable = false; in typeCheck()
400 Unreachable = true; in typeCheck()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.h244 void conditionalCompilationCondition(bool Unreachable);
245 void conditionalCompilationStart(bool Unreachable);
H A DUnwrappedLineParser.cpp1040 void UnwrappedLineParser::conditionalCompilationCondition(bool Unreachable) { in conditionalCompilationCondition() argument
1045 if (Unreachable || in conditionalCompilationCondition()
1053 void UnwrappedLineParser::conditionalCompilationStart(bool Unreachable) { in conditionalCompilationStart() argument
1060 PPChainBranchIndex.push(Unreachable ? -1 : 0); in conditionalCompilationStart()
1062 conditionalCompilationCondition(Unreachable || Skip); in conditionalCompilationStart()
1094 bool Unreachable = false; in parsePPIf() local
1096 Unreachable = true; in parsePPIf()
1098 Unreachable = true; in parsePPIf()
1099 conditionalCompilationStart(Unreachable); in parsePPIf()
1129 conditionalCompilationStart(/*Unreachable in parsePPElse()
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h411 /// If \p Unreachable is true, the newly created block will end with
417 bool Unreachable,
424 bool Unreachable,
430 Unreachable, BranchWeights, DTU, LI,
437 bool Unreachable,
444 bool Unreachable,
450 Unreachable, BranchWeights, DTU, LI,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizers.def110 SANITIZER("unreachable", Unreachable)
149 SignedIntegerOverflow | Unreachable | VLABound | Function |
H A DDiagnosticGroups.td930 // Unreachable code warning groups.
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DCrashDebugger.cpp424 SmallVector<BasicBlock *, 16> Unreachable; in simpleSimplifyCfg() local
427 Unreachable.push_back(&BB); in simpleSimplifyCfg()
432 for (auto *BB : Unreachable) { in simpleSimplifyCfg()
438 for (auto *BB : Unreachable) in simpleSimplifyCfg()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1610 bool Unreachable, in SplitBlockAndInsertIfThen() argument
1616 /* UnreachableThen */ Unreachable, in SplitBlockAndInsertIfThen()
1623 bool Unreachable, in SplitBlockAndInsertIfElse() argument
1630 /* UnreachableElse */ Unreachable, BranchWeights, DTU, LI); in SplitBlockAndInsertIfElse()
1674 auto handleBlock = [&](BasicBlock **PBB, bool Unreachable, BasicBlock *&BB, in SplitBlockAndInsertIfThenElse()
1684 if (Unreachable) in SplitBlockAndInsertIfThenElse()
H A DSimplifyCFG.cpp7744 BasicBlock *Unreachable = BasicBlock::Create( in removeUndefIntroducingPredecessor() local
7746 Builder.SetInsertPoint(Unreachable); in removeUndefIntroducingPredecessor()
7752 Case.setSuccessor(Unreachable); in removeUndefIntroducingPredecessor()
7756 SI->setDefaultDest(Unreachable); in removeUndefIntroducingPredecessor()
7761 { { DominatorTree::Insert, Predecessor, Unreachable }, in removeUndefIntroducingPredecessor()
7842 case Instruction::Unreachable: in simplifyOnce()
/freebsd/contrib/atf/atf-sh/
H A Dlibatf-sh.subr275 _atf_error 128 "Unreachable"
320 _atf_error 128 "Unreachable"
712 _atf_error 128 "Unreachable"
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.def133 HANDLE_TERM_INST ( 7, Unreachable , UnreachableInst)
/freebsd/share/examples/ipfilter/
H A Dexamples.txt314 (Destination Unreachable) or, if they're sending a TCP packet, a TCP RST
344 to end elegantly. To do this, the requested ICMP Unreachable code is placed
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp314 SmallPtrSet<BasicBlock *, 16> Unreachable; in runImpl() local
320 Unreachable.insert(&BB); in runImpl()
330 if (Unreachable.count(&BB)) in runImpl()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp891 INSTKEYWORD(unreachable, Unreachable); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp709 case Unreachable: return "unreachable"; in getOpcodeName()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp1430 case Instruction::Unreachable: in fastSelectInstruction()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DSanitizerArgs.cpp64 SanitizerKind::Unreachable | SanitizerKind::Return;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1767 case Unreachable: return 0; in InstructionOpcodeToISD()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3455 else if (Kind == SanitizerKind::Return || Kind == SanitizerKind::Unreachable) in getRecoverableKind()
3819 if (SanOpts.has(SanitizerKind::Unreachable)) { in EmitUnreachable()
3822 SanitizerKind::Unreachable), in EmitUnreachable()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1866 case Instruction::Unreachable: in selectOperator()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc347 llvm_unreachable("Unreachable!");
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1376 case Instruction::Unreachable: in hasResult()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp2393 case Instruction::Unreachable: in writeInstruction()

12