Home | History | Annotate | Download | only in iq2000

Lines Matching defs:cmp1

903    and CMP1.  P_INVERT is NULL or ptr if branch needs to reverse its test.
909 gen_int_relational (enum rtx_code test_code, rtx result, rtx cmp0, rtx cmp1,
919 int invert_const; /* != 0 if invert value if cmp1 is constant. */
920 int invert_reg; /* != 0 if invert value if cmp1 is register. */
955 mode = GET_MODE (cmp1);
964 if (GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) == 0)
980 if (GET_CODE (cmp1) == CONST_INT)
982 HOST_WIDE_INT value = INTVAL (cmp1);
986 cmp1 = force_reg (mode, cmp1);
990 invert = (GET_CODE (cmp1) == CONST_INT
1001 if (GET_CODE (cmp1) == CONST_INT)
1005 HOST_WIDE_INT new_const = INTVAL (cmp1) + p_info->const_add;
1007 /* If modification of cmp1 caused overflow,
1012 (unsigned HOST_WIDE_INT) INTVAL (cmp1)
1013 : new_const > INTVAL (cmp1))
1023 cmp1 = GEN_INT (new_const);
1030 cmp0 = cmp1;
1031 cmp1 = temp;
1034 if (test == ITEST_NE && GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) == 0)
1039 convert_move (reg, gen_rtx_fmt_ee (p_info->test_code, mode, cmp0, cmp1), 0);
1078 rtx cmp1 = operands[2];
1084 reg = gen_int_relational (test_code, NULL_RTX, cmp0, cmp1, &invert);
1089 cmp1 = const0_rtx;
1092 else if (GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) != 0)
1095 cmp1 = force_reg (mode, cmp1);
1111 cmp0, cmp1),