Home | History | Annotate | Download | only in IR

Lines Matching defs:SelectInst

1926 //                               SelectInst Class
1931 class SelectInst : public Instruction {
1932 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1940 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1959 SelectInst *cloneImpl() const;
1962 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1966 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1972 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1975 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
2010 struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
2013 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)