HomeSort by relevance Sort by last modified time
    Searched refs:CatchSwitchInst (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
WinEHPrepare.cpp 224 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(TI)) {
242 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FirstNonPHI)) {
266 if (auto *InnerCatchSwitch = dyn_cast<CatchSwitchInst>(UserI)) {
344 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FirstNonPHI)) {
376 if (auto *InnerCatchSwitch = dyn_cast<CatchSwitchInst>(UserI)) {
417 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(EHPad))
513 else if (const auto *CSI = dyn_cast<CatchSwitchInst>(FirstNonPHI))
550 const auto *CatchSwitch = cast<CatchSwitchInst>(Pad);
614 } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(U)) {
636 if (auto *CSI = dyn_cast<CatchSwitchInst>(UserUnwindPad)
    [all...]
WasmEHPrepare.cpp 349 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UnwindPad))
368 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UnwindPad))
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp 215 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(TI)) {
233 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FirstNonPHI)) {
257 if (auto *InnerCatchSwitch = dyn_cast<CatchSwitchInst>(UserI)) {
334 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FirstNonPHI)) {
366 if (auto *InnerCatchSwitch = dyn_cast<CatchSwitchInst>(UserI)) {
407 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(EHPad))
503 else if (const auto *CSI = dyn_cast<CatchSwitchInst>(FirstNonPHI))
540 const auto *CatchSwitch = cast<CatchSwitchInst>(Pad);
604 } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(U)) {
626 if (auto *CSI = dyn_cast<CatchSwitchInst>(UserUnwindPad)
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 186 return cast<CatchSwitchInst>(EHPad)->getParentPad();
205 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(CurrentPad)) {
225 if (!isa<CleanupPadInst>(Child) && !isa<CatchSwitchInst>(Child))
265 } else if (isa<CleanupPadInst>(U) || isa<CatchSwitchInst>(U)) {
396 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UselessPad)) {
399 if (isa<CatchSwitchInst>(U) || isa<CleanupPadInst>(U))
404 if (isa<CatchSwitchInst>(U) || isa<CleanupPadInst>(U))
623 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(I)) {
649 auto *NewCatchSwitch = CatchSwitchInst::Create(
    [all...]
Local.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
InlineFunction.cpp 225 return cast<CatchSwitchInst>(EHPad)->getParentPad();
244 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(CurrentPad)) {
264 if (!isa<CleanupPadInst>(Child) && !isa<CatchSwitchInst>(Child))
304 } else if (isa<CleanupPadInst>(U) || isa<CatchSwitchInst>(U)) {
489 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UselessPad)) {
500 if (isa<CatchSwitchInst>(U) || isa<CleanupPadInst>(U))
513 if (isa<CatchSwitchInst>(U) || isa<CleanupPadInst>(U))
703 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(I)) {
729 auto *NewCatchSwitch = CatchSwitchInst::Create(
    [all...]
Local.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 438 static Instruction *splitBeforeCatchSwitch(CatchSwitchInst *CatchSwitch) {
542 if (auto *CSI = dyn_cast<CatchSwitchInst>(DefBlock->getTerminator()))
606 else if (auto *CS = dyn_cast<CatchSwitchInst>(TI))
664 else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(PadInst))
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
InstVisitor.h 174 RetTy visitCatchSwitchInst(CatchSwitchInst &I) { DELEGATE(TerminatorInst);}
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Instructions.h     [all...]
InstVisitor.h 177 RetTy visitCatchSwitchInst(CatchSwitchInst &I) { DELEGATE(TerminatorInst);}
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Instructions.cpp 791 // CatchSwitchInst Implementation
794 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
806 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
817 CatchSwitchInst::CatchSwitchInst(const CatchSwitchInst &CSI)
    [all...]
Core.cpp     [all...]
Verifier.cpp 485 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
Instruction.cpp 543 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
Verifier.cpp 435 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
PtrState.cpp 271 if (isa<CatchSwitchInst>(InsertAfter))
ObjCARCContract.cpp 621 while (isa<CatchSwitchInst>(InsertBB->getFirstNonPHI())) {
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 547 if (isa<CatchSwitchInst>(BB->getTerminator()))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 52 class CatchSwitchInst;
    [all...]
FunctionLoweringInfo.cpp 243 if (isa<CatchSwitchInst>(PadInst)) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 265 if (isa<CatchSwitchInst>(I)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
SparsePropagation.cpp 529 CatchSwitchInst *CatchSwitch =

Completed in 592 milliseconds

1 2 3