Lines Matching refs:predicate

3453 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS,
3462 setPredicate((Predicate)predicate);
3468 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS,
3476 setPredicate((Predicate)predicate);
3481 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2,
3485 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3488 return new ICmpInst(CmpInst::Predicate(predicate),
3493 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3496 return new FCmpInst(CmpInst::Predicate(predicate),
3501 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2,
3504 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3507 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3532 default: llvm_unreachable("Unknown cmp predicate!");
3597 default: llvm_unreachable("Unknown icmp predicate!");
3610 default: llvm_unreachable("Unknown icmp predicate!");
3623 default: llvm_unreachable("Unknown or unsupported cmp predicate!");
3646 default: llvm_unreachable("Unknown cmp predicate!");
3693 llvm_unreachable("Unknown predicate!");
3705 bool CmpInst::isUnsigned(Predicate predicate) {
3706 switch (predicate) {
3713 bool CmpInst::isSigned(Predicate predicate) {
3714 switch (predicate) {
3721 bool CmpInst::isOrdered(Predicate predicate) {
3722 switch (predicate) {
3730 bool CmpInst::isUnordered(Predicate predicate) {
3731 switch (predicate) {
3739 bool CmpInst::isTrueWhenEqual(Predicate predicate) {
3740 switch(predicate) {
3747 bool CmpInst::isFalseWhenEqual(Predicate predicate) {
3748 switch(predicate) {