Lines Matching refs:XEXP

119       if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
120 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
124 plus_constant (get_pool_constant (XEXP (x, 0)),
126 if (memory_address_p (GET_MODE (tem), XEXP (tem, 0)))
134 x = XEXP (x, 0);
156 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
158 c += INTVAL (XEXP (x, 1));
163 x = XEXP (x, 0);
166 else if (CONSTANT_P (XEXP (x, 1)))
168 x = gen_rtx_PLUS (mode, XEXP (x, 0), plus_constant (XEXP (x, 1), c));
215 if (GET_CODE (XEXP (x, 1)) == CONST_INT
217 XEXP (x, 1)))
221 return eliminate_constant_term (XEXP (x, 0), constptr);
225 x0 = eliminate_constant_term (XEXP (x, 0), &tem);
226 x1 = eliminate_constant_term (XEXP (x, 1), &tem);
227 if ((x1 != XEXP (x, 1) || x0 != XEXP (x, 0))
300 rtx op0 = break_out_memory_refs (XEXP (x, 0));
301 rtx op1 = break_out_memory_refs (XEXP (x, 1));
303 if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
360 temp = gen_rtx_LABEL_REF (to_mode, XEXP (x, 0));
373 convert_memory_address (to_mode, XEXP (x, 0)));
384 && GET_CODE (XEXP (x, 1)) == CONST_INT
385 && XEXP (x, 1) == convert_memory_address (to_mode, XEXP (x, 1))))
387 convert_memory_address (to_mode, XEXP (x, 0)),
388 XEXP (x, 1));
501 && REG_P (XEXP (x, 0))
502 && GET_CODE (XEXP (x, 1)) == CONST_INT)
503 mark_reg_pointer (XEXP (x, 0), BITS_PER_UNIT);
535 if (! (flag_force_addr && CONSTANT_ADDRESS_P (XEXP (ref, 0)))
536 && memory_address_p (GET_MODE (ref), XEXP (ref, 0)))
540 return replace_equiv_address (ref, XEXP (ref, 0));
560 base = XEXP (x, 0);
563 && GET_CODE (XEXP (base, 0)) == PLUS
564 && GET_CODE (XEXP (XEXP (base, 0), 1)) == CONST_INT)
566 offset += INTVAL (XEXP (XEXP (base, 0), 1));
567 base = XEXP (XEXP (base, 0), 0);
701 && GET_CODE (XEXP (x, 0)) == PLUS
702 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
703 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
705 rtx s = XEXP (XEXP (x, 0), 0);
706 rtx c = XEXP (XEXP (x, 0), 1);