• Home
  • Raw
  • Download

Lines Matching refs:CmpInst

760     CmpInst::Predicate Cond =  in select()
761 static_cast<CmpInst::Predicate>(I.getOperand(1).getPredicate()); in select()
764 case CmpInst::ICMP_EQ: // LHS == RHS -> (LHS ^ RHS) < 1 in select()
768 case CmpInst::ICMP_NE: // LHS != RHS -> 0 < (LHS ^ RHS) in select()
772 case CmpInst::ICMP_UGT: // LHS > RHS -> RHS < LHS in select()
775 case CmpInst::ICMP_UGE: // LHS >= RHS -> !(LHS < RHS) in select()
779 case CmpInst::ICMP_ULT: // LHS < RHS -> LHS < RHS in select()
782 case CmpInst::ICMP_ULE: // LHS <= RHS -> !(RHS < LHS) in select()
786 case CmpInst::ICMP_SGT: // LHS > RHS -> RHS < LHS in select()
789 case CmpInst::ICMP_SGE: // LHS >= RHS -> !(LHS < RHS) in select()
793 case CmpInst::ICMP_SLT: // LHS < RHS -> LHS < RHS in select()
796 case CmpInst::ICMP_SLE: // LHS <= RHS -> !(RHS < LHS) in select()
824 switch (CmpInst::Predicate Cond = static_cast<CmpInst::Predicate>( in select()
826 case CmpInst::FCMP_UNO: // Unordered in select()
827 case CmpInst::FCMP_ORD: // Ordered (OR) in select()
829 isLogicallyNegated = Cond != CmpInst::FCMP_UNO; in select()
831 case CmpInst::FCMP_OEQ: // Equal in select()
832 case CmpInst::FCMP_UNE: // Not Equal (NEQ) in select()
834 isLogicallyNegated = Cond != CmpInst::FCMP_OEQ; in select()
836 case CmpInst::FCMP_UEQ: // Unordered or Equal in select()
837 case CmpInst::FCMP_ONE: // Ordered or Greater Than or Less Than (OGL) in select()
839 isLogicallyNegated = Cond != CmpInst::FCMP_UEQ; in select()
841 case CmpInst::FCMP_OLT: // Ordered or Less Than in select()
842 case CmpInst::FCMP_UGE: // Unordered or Greater Than or Equal (UGE) in select()
844 isLogicallyNegated = Cond != CmpInst::FCMP_OLT; in select()
846 case CmpInst::FCMP_ULT: // Unordered or Less Than in select()
847 case CmpInst::FCMP_OGE: // Ordered or Greater Than or Equal (OGE) in select()
849 isLogicallyNegated = Cond != CmpInst::FCMP_ULT; in select()
851 case CmpInst::FCMP_OLE: // Ordered or Less Than or Equal in select()
852 case CmpInst::FCMP_UGT: // Unordered or Greater Than (UGT) in select()
854 isLogicallyNegated = Cond != CmpInst::FCMP_OLE; in select()
856 case CmpInst::FCMP_ULE: // Unordered or Less Than or Equal in select()
857 case CmpInst::FCMP_OGT: // Ordered or Greater Than (OGT) in select()
859 isLogicallyNegated = Cond != CmpInst::FCMP_ULE; in select()