Home | History | Annotate | Download | only in IR

Lines Matching defs:SelectInst

1947 //                               SelectInst Class
1952 class SelectInst : public Instruction {
1953 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1961 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1980 SelectInst *cloneImpl() const;
1983 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1987 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1993 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1996 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
2031 struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
2034 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)