HomeSort by: relevance | last modified time | path
    Searched defs:ParentPad (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
EHPersonalities.cpp 128 Value *ParentPad = CatchRet->getCatchSwitchParentPad();
129 if (isa<ConstantTokenNone>(ParentPad))
132 SuccColor = cast<Instruction>(ParentPad)->getParent();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCleanup.cpp 1013 llvm::Value *ParentPad = CurrentFuncletPad;
1014 if (!ParentPad)
1015 ParentPad = llvm::ConstantTokenNone::get(CGM.getLLVMContext());
1016 CurrentFuncletPad = CPI = Builder.CreateCleanupPad(ParentPad);
CGException.cpp 949 llvm::Value *ParentPad = CGF.CurrentFuncletPad;
950 if (!ParentPad)
951 ParentPad = llvm::ConstantTokenNone::get(CGF.getLLVMContext());
957 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
993 llvm::Value *ParentPad = CGF.CurrentFuncletPad;
994 if (!ParentPad)
995 ParentPad = llvm::ConstantTokenNone::get(CGF.getLLVMContext());
1001 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
1581 llvm::Value *ParentPad = CurrentFuncletPad;
1582 if (!ParentPad)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
WinEHPrepare.cpp 222 Value *ParentPad) {
227 if (CatchSwitch->getParentPad() != ParentPad)
233 if (CleanupPad->getParentPad() != ParentPad)
510 // per the ParentPad linkage on EH pads, but skipping over catchswitches).
533 const Value *ParentPad;
535 ParentPad = CPI->getParentPad();
537 ParentPad = CSI->getParentPad();
540 if (isa<ConstantTokenNone>(ParentPad))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 625 Value *ParentPad = nullptr;
627 ParentPad = FuncletPad->getParentPad();
629 ParentPad = CatchSwitch->getParentPad();
631 ParentPad = CleanupPad->getParentPad();
633 ParentPad = LandingPad->getParent();
637 auto *NewCleanupPad = CleanupPadInst::Create(ParentPad, {}, BBName, NewBB);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 744 LLVMValueRef ParentPad = CloneValue(LLVMGetParentCatchSwitch(Src));
749 Dst = LLVMBuildCatchPad(Builder, ParentPad,
754 LLVMValueRef ParentPad = CloneValue(LLVMGetOperand(Src, 0));
759 Dst = LLVMBuildCleanupPad(Builder, ParentPad,
764 LLVMValueRef ParentPad = CloneValue(LLVMGetOperand(Src, 0));
770 Dst = LLVMBuildCatchSwitch(Builder, ParentPad, UnwindBB, NumHandlers, Name);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4494 Value *ParentPad =
4518 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers);
4533 Value *ParentPad =
4550 I = CleanupPadInst::Create(ParentPad, Args);
4552 I = CatchPadInst::Create(ParentPad, Args);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 4069 auto *ParentPad = CPI.getParentPad();
4070 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad),
4250 auto *ParentPad = CatchSwitch.getParentPad();
4251 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad),
4252 "CatchSwitchInst has an invalid parent.", ParentPad);
4262 if (getParentPad(I) == ParentPad)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 1702 Value *ParentPad = I.getCatchSwitchParentPad();
1704 if (isa<ConstantTokenNone>(ParentPad))
1707 SuccessorColor = cast<Instruction>(ParentPad)->getParent();

Completed in 47 milliseconds