Lines Matching refs:predicate
3287 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, in CmpInst() argument
3296 setPredicate((Predicate)predicate); in CmpInst()
3302 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, in CmpInst() argument
3310 setPredicate((Predicate)predicate); in CmpInst()
3315 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, in Create() argument
3319 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate), in Create()
3322 return new ICmpInst(CmpInst::Predicate(predicate), in Create()
3327 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate), in Create()
3330 return new FCmpInst(CmpInst::Predicate(predicate), in Create()
3335 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, in Create() argument
3338 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), in Create()
3341 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate), in Create()
3539 bool CmpInst::isUnsigned(Predicate predicate) { in isUnsigned() argument
3540 switch (predicate) { in isUnsigned()
3547 bool CmpInst::isSigned(Predicate predicate) { in isSigned() argument
3548 switch (predicate) { in isSigned()
3555 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() argument
3556 switch (predicate) { in isOrdered()
3564 bool CmpInst::isUnordered(Predicate predicate) { in isUnordered() argument
3565 switch (predicate) { in isUnordered()
3573 bool CmpInst::isTrueWhenEqual(Predicate predicate) { in isTrueWhenEqual() argument
3574 switch(predicate) { in isTrueWhenEqual()
3581 bool CmpInst::isFalseWhenEqual(Predicate predicate) { in isFalseWhenEqual() argument
3582 switch(predicate) { in isFalseWhenEqual()