Lines Matching refs:predicate
3609 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, in CmpInst() argument
3618 setPredicate((Predicate)predicate); in CmpInst()
3624 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, in CmpInst() argument
3632 setPredicate((Predicate)predicate); in CmpInst()
3637 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, in Create() argument
3641 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate), in Create()
3644 return new ICmpInst(CmpInst::Predicate(predicate), in Create()
3649 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate), in Create()
3652 return new FCmpInst(CmpInst::Predicate(predicate), in Create()
3657 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, in Create() argument
3660 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), in Create()
3663 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), in Create()
3932 bool CmpInst::isUnsigned(Predicate predicate) { in isUnsigned() argument
3933 switch (predicate) { in isUnsigned()
3940 bool CmpInst::isSigned(Predicate predicate) { in isSigned() argument
3941 switch (predicate) { in isSigned()
3960 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() argument
3961 switch (predicate) { in isOrdered()
3969 bool CmpInst::isUnordered(Predicate predicate) { in isUnordered() argument
3970 switch (predicate) { in isUnordered()
3978 bool CmpInst::isTrueWhenEqual(Predicate predicate) { in isTrueWhenEqual() argument
3979 switch(predicate) { in isTrueWhenEqual()
3986 bool CmpInst::isFalseWhenEqual(Predicate predicate) { in isFalseWhenEqual() argument
3987 switch(predicate) { in isFalseWhenEqual()