HomeSort by: relevance | last modified time | path
    Searched refs:Unreachable (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libcody/
internal.hh 88 void Unreachable [[noreturn]] (Location loc = Location ()) noexcept;
91 #define Unreachable() Unreachable (Cody::Location (__FILE__, __LINE__))
127 inline void Unreachable () noexcept
fatal.cc 21 void (Unreachable) (Location loc) noexcept
23 (HCF) ("unreachable reached", loc);
  /src/external/gpl3/gcc.old/dist/libcody/
internal.hh 88 void Unreachable [[noreturn]] (Location loc = Location ()) noexcept;
91 #define Unreachable() Unreachable (Cody::Location (__FILE__, __LINE__))
127 inline void Unreachable () noexcept
fatal.cc 21 void (Unreachable) (Location loc) noexcept
23 (HCF) ("unreachable reached", loc);
  /src/external/apache2/llvm/dist/clang/lib/Format/
UnwrappedLineParser.h 178 // '#else' or merge conflict marker). If 'Unreachable' is true, assumes
181 void conditionalCompilationCondition(bool Unreachable);
182 void conditionalCompilationStart(bool Unreachable);
UnwrappedLineParser.cpp 766 void UnwrappedLineParser::conditionalCompilationCondition(bool Unreachable) {
771 if (Unreachable ||
778 void UnwrappedLineParser::conditionalCompilationStart(bool Unreachable) {
787 conditionalCompilationCondition(Unreachable || Skip);
820 bool Unreachable = false;
822 Unreachable = true;
824 Unreachable = true;
825 conditionalCompilationStart(Unreachable);
1613 // Unreachable for well-formed code (paired '{' and '}').
3238 conditionalCompilationStart(/*Unreachable=*/false)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 45 /// Replace contents of every block in \p BBs with single unreachable
429 /// If \p Unreachable is true, the newly created block will end with
437 bool Unreachable, MDNode *BranchWeights,
458 /// If \p Unreachable is true, the newly created block will end with
464 bool Unreachable,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 74 // value with. Note that since this block is unreachable, and all values
238 // edges first may lead to unreachable blocks, followed by inserting edges
288 // Add unreachable to now empty BB.
930 // OldBB is a loop entry or if SplitMakesNewLoopHeader. Unreachable blocks
1351 bool Unreachable, MDNode *BranchWeights,
1373 if (Unreachable)
1420 bool Unreachable,
1424 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable,
1430 bool Unreachable,
1434 return SplitBlockAndInsertIfThenImpl(Cond, SplitBefore, Unreachable,
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
CrashDebugger.cpp 389 /// unreachable blocks and constant fold terminators without deciding that
400 // Remove unreachable blocks
409 SmallVector<BasicBlock *, 16> Unreachable;
412 Unreachable.push_back(&BB);
417 for (auto *BB : Unreachable) {
423 for (auto *BB : Unreachable)
  /src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
scan-build 348 my $Regex = qr/(.*?)\ ->\ Total\ CFGBlocks:\ (\d+)\ \|\ Unreachable
361 Unreachable => $3,
529 $UnreachedBlocks += $Row->{Unreachable};
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 255 // an unreachable loop.
411 // JumpThreading must not processes blocks unreachable from entry. It's a
413 SmallPtrSet<BasicBlock *, 16> Unreachable;
419 Unreachable.insert(&BB);
429 if (Unreachable.count(&BB))
447 // When processBlock makes BB unreachable it doesn't bother to fix up
1726 SuccBB->removePredecessor(BB, true); // This is unreachable successor.
  /src/usr.bin/make/unit-tests/
cond-short.mk 125 # Unreachable nested conditions are skipped completely as well. These skipped
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp 897 INSTKEYWORD(unreachable, Unreachable);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 326 case Unreachable: return "unreachable";
Instructions.cpp 1215 : Instruction(Type::getVoidTy(Context), Instruction::Unreachable, nullptr,
1218 : Instruction(Type::getVoidTy(Context), Instruction::Unreachable, nullptr,
  /src/external/apache2/llvm/dist/clang/lib/Driver/
SanitizerArgs.cpp 58 SanitizerKind::Unreachable | SanitizerKind::Return;
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 187 | Unreachable
1111 | Instruction (Br | IndirectBr | Invoke | Resume | Ret | Switch | Unreachable)
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 1388 TII.get(WebAssembly::UNREACHABLE));
1420 case Instruction::Unreachable:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.h 841 case Instruction::Unreachable:
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 3132 else if (Kind == SanitizerKind::Return || Kind == SanitizerKind::Unreachable)
3469 if (SanOpts.has(SanitizerKind::Unreachable)) {
3472 SanitizerKind::Unreachable),
CGCall.cpp 3722 // This unreachable is a temporary marker which will be removed later.
4315 // This unreachable is a temporary marker which will be removed later.
5306 // unreachable code.
5311 // Strip away the noreturn attribute to better diagnose unreachable UB.
5312 if (SanOpts.has(SanitizerKind::Unreachable)) {
5338 // generally are not ready to handle emitting expressions at unreachable
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 1741 case Instruction::Unreachable:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringBase.cpp 1748 case Unreachable: return 0;
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 138 Unreachable Opcode = C.LLVMUnreachable
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 4686 return I->getOpcode() == Instruction::Unreachable;

Completed in 87 milliseconds

1 2