Searched refs:ParentPad (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Analysis/
H A DEHPersonalities.cpp95 Value *ParentPad = CatchRet->getParentPad(); local
96 if (isa<ConstantTokenNone>(ParentPad))
99 SuccColor = cast<Instruction>(ParentPad)->getParent();
/external/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp206 Value *ParentPad) {
211 if (CatchSwitch->getParentPad() != ParentPad)
217 if (CleanupPad->getParentPad() != ParentPad)
467 Value *ParentPad; local
482 ParentPad = Cleanup->getParentPad();
510 ParentPad = CatchSwitch->getParentPad();
517 if ((Pred = getEHPadFromPredecessor(Pred, ParentPad)))
543 Value *ParentPad = CatchRet->getParentPad(); local
545 if (isa<ConstantTokenNone>(ParentPad))
548 Color = cast<Instruction>(ParentPad)
205 getEHPadFromPredecessor(const BasicBlock *BB, Value *ParentPad) argument
[all...]
/external/llvm/include/llvm/IR/
H A DInstrTypes.h1119 void init(Value *ParentPad, ArrayRef<Value *> Args, const Twine &NameStr);
1123 explicit FuncletPadInst(Instruction::FuncletPadOps Op, Value *ParentPad,
1126 explicit FuncletPadInst(Instruction::FuncletPadOps Op, Value *ParentPad,
1152 void setParentPad(Value *ParentPad) { argument
1153 assert(ParentPad);
1154 Op<-1>() = ParentPad;
H A DInstructions.h3840 void init(Value *ParentPad, BasicBlock *UnwindDest, unsigned NumReserved);
3848 CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
3856 CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
3866 static CatchSwitchInst *Create(Value *ParentPad, BasicBlock *UnwindDest, argument
3870 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
3873 static CatchSwitchInst *Create(Value *ParentPad, BasicBlock *UnwindDest, argument
3876 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
3885 void setParentPad(Value *ParentPad) { setOperand(0, ParentPad); } argument
4005 explicit CleanupPadInst(Value *ParentPad, ArrayRe
[all...]
H A DIRBuilder.h711 CatchSwitchInst *CreateCatchSwitch(Value *ParentPad, BasicBlock *UnwindBB, argument
714 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers),
718 CatchPadInst *CreateCatchPad(Value *ParentPad, ArrayRef<Value *> Args, argument
720 return Insert(CatchPadInst::Create(ParentPad, Args), Name);
723 CleanupPadInst *CreateCleanupPad(Value *ParentPad, argument
726 return Insert(CleanupPadInst::Create(ParentPad, Args), Name);
/external/clang/lib/CodeGen/
H A DCGException.cpp881 llvm::Value *ParentPad = CGF.CurrentFuncletPad; local
882 if (!ParentPad)
883 ParentPad = llvm::ConstantTokenNone::get(CGF.getLLVMContext());
889 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
1330 llvm::Value *ParentPad = CurrentFuncletPad; local
1331 if (!ParentPad)
1332 ParentPad = llvm::ConstantTokenNone::get(CGM.getLLVMContext());
1333 Builder.CreateCleanupPad(ParentPad);
H A DCGCleanup.cpp912 llvm::Value *ParentPad = CurrentFuncletPad; local
913 if (!ParentPad)
914 ParentPad = llvm::ConstantTokenNone::get(CGM.getLLVMContext());
915 CurrentFuncletPad = CPI = Builder.CreateCleanupPad(ParentPad);
/external/llvm/lib/IR/
H A DInstructions.cpp869 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
873 : TerminatorInst(ParentPad->getType(), Instruction::CatchSwitch, nullptr, 0,
877 init(ParentPad, UnwindDest, NumReservedValues + 1);
881 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
884 : TerminatorInst(ParentPad->getType(), Instruction::CatchSwitch, nullptr, 0,
888 init(ParentPad, UnwindDest, NumReservedValues + 1);
903 void CatchSwitchInst::init(Value *ParentPad, BasicBlock *UnwindDest,
905 assert(ParentPad && NumReservedValues);
911 Op<0>() = ParentPad;
950 void FuncletPadInst::init(Value *ParentPad, ArrayRe
[all...]
H A DVerifier.cpp3021 auto *ParentPad = CPI.getParentPad(); local
3022 Assert(isa<CatchSwitchInst>(ParentPad) || isa<ConstantTokenNone>(ParentPad) ||
3023 isa<CleanupPadInst>(ParentPad) || isa<CatchPadInst>(ParentPad),
3079 auto *ParentPad = CatchSwitch.getParentPad(); local
3080 Assert(isa<CatchSwitchInst>(ParentPad) || isa<ConstantTokenNone>(ParentPad) ||
3081 isa<CleanupPadInst>(ParentPad) || isa<CatchPadInst>(ParentPad),
3082 "CatchSwitchInst has an invalid parent.", ParentPad); local
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.cpp5223 Value *ParentPad;
5233 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5264 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5296 Value *ParentPad = nullptr;
5305 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5312 Inst = CleanupPadInst::Create(ParentPad, Args);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4475 Value *ParentPad = local
4499 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers);
4514 Value *ParentPad = local
4531 I = CleanupPadInst::Create(ParentPad, Args);
4533 I = CatchPadInst::Create(ParentPad, Args);

Completed in 1518 milliseconds