Lines Matching refs:false_rtx

4212       rtx cond, true_rtx, false_rtx;
4214 cond = if_then_else_cond (x, &true_rtx, &false_rtx);
4219 && (COMPARISON_P (true_rtx) || COMPARISON_P (false_rtx))))
4229 here since true_rtx or false_rtx might share RTL with x as a
4232 false_rtx = subst (copy_rtx (false_rtx), pc_rtx, pc_rtx, 0, 0);
4234 /* If true_rtx and false_rtx are not general_operands, an if_then_else
4237 && general_operand (false_rtx, VOIDmode))
4246 if (true_rtx == const_true_rtx && false_rtx == const0_rtx)
4249 else if (true_rtx == const0_rtx && false_rtx == const_true_rtx
4260 && false_rtx == const0_rtx)
4266 else if (GET_CODE (false_rtx) == CONST_INT
4267 && INTVAL (false_rtx) == - STORE_FLAG_VALUE
4284 true_rtx, false_rtx);
4863 rtx false_rtx = XEXP (x, 2);
4872 if (comparison_p && true_rtx == const_true_rtx && false_rtx == const0_rtx)
4878 && true_rtx == const0_rtx && false_rtx == const_true_rtx
4902 temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4925 if (reg_mentioned_p (from, false_rtx))
4926 false_rtx = subst (known_cond (copy_rtx (false_rtx), false_code,
4930 SUBST (XEXP (x, 1), swapped ? false_rtx : true_rtx);
4931 SUBST (XEXP (x, 2), swapped ? true_rtx : false_rtx);
4934 false_rtx = XEXP (x, 2);
4948 && GET_CODE (false_rtx) != CONST_INT && false_rtx != pc_rtx)
4950 || (OBJECT_P (true_rtx) && !OBJECT_P (false_rtx))
4952 && !OBJECT_P (false_rtx))
4953 || reg_mentioned_p (true_rtx, false_rtx)
4954 || rtx_equal_p (false_rtx, XEXP (cond, 0))))
4958 SUBST (XEXP (x, 1), false_rtx);
4961 temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4971 if (rtx_equal_p (true_rtx, false_rtx) && ! side_effects_p (cond))
4977 && rtx_equal_p (XEXP (cond, 0), false_rtx)
4979 return false_rtx;
4983 && rtx_equal_p (XEXP (cond, 1), false_rtx))
4989 && GET_CODE (false_rtx) == NEG
4990 && rtx_equal_p (true_rtx, XEXP (false_rtx, 0))
5014 && rtx_equal_p (XEXP (cond, 1), false_rtx)
5020 return simplify_gen_binary (SMAX, mode, true_rtx, false_rtx);
5023 return simplify_gen_binary (SMIN, mode, true_rtx, false_rtx);
5026 return simplify_gen_binary (UMAX, mode, true_rtx, false_rtx);
5029 return simplify_gen_binary (UMIN, mode, true_rtx, false_rtx);
5047 rtx f = make_compound_operation (false_rtx, SET);
5164 && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
5176 && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
5492 rtx false_rtx = (GET_CODE (XEXP (src, 0)) == NE
5497 && rtx_equal_p (XEXP (true_rtx, 0), false_rtx))
5498 term1 = false_rtx, true_rtx = XEXP (true_rtx, 1), false_rtx = const0_rtx;
5500 && rtx_equal_p (XEXP (true_rtx, 1), false_rtx))
5501 term1 = false_rtx, true_rtx = XEXP (true_rtx, 0), false_rtx = const0_rtx;
5502 else if (GET_CODE (false_rtx) == IOR
5503 && rtx_equal_p (XEXP (false_rtx, 0), true_rtx))
5504 term1 = true_rtx, false_rtx = XEXP (false_rtx, 1), true_rtx = const0_rtx;
5505 else if (GET_CODE (false_rtx) == IOR
5506 && rtx_equal_p (XEXP (false_rtx, 1), true_rtx))
5507 term1 = true_rtx, false_rtx = XEXP (false_rtx, 0), true_rtx = const0_rtx;
5515 false_rtx);