Lines Matching refs:IndirectBrInst
2563 class IndirectBrInst : public TerminatorInst {
2570 IndirectBrInst(const IndirectBrInst &IBI);
2581 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
2587 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
2589 virtual IndirectBrInst *clone_impl() const;
2591 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2593 return new IndirectBrInst(Address, NumDests, InsertBefore);
2595 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2597 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
2599 ~IndirectBrInst();
2635 static inline bool classof(const IndirectBrInst *) { return true; }
2649 struct OperandTraits<IndirectBrInst> : public HungoffOperandTraits<1> {
2652 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(IndirectBrInst, Value)