Home | History | Annotate | Download | only in IR

Lines Matching defs:SelectInst

1946 //                               SelectInst Class
1951 class SelectInst : public Instruction {
1952 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1960 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1979 SelectInst *cloneImpl() const;
1982 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1986 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1992 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1995 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
2030 struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
2033 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)