Home
last modified time | relevance | path

Searched refs:xplus1 (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/gcc/gcc/config/xtensa/
Dxtensa.h951 rtx xplus1 = XEXP (xinsn, 1); \
959 while (GET_CODE (xplus1) == SUBREG) \
960 xplus1 = SUBREG_REG (xplus1); \
961 code1 = GET_CODE (xplus1); \
967 xplus1 = XEXP (xinsn, 0); \
969 code1 = GET_CODE (xplus1); \
974 && xtensa_mem_offset (INTVAL (xplus1), (MODE))) \
/openbsd/src/gnu/gcc/gcc/config/iq2000/
Diq2000.h584 rtx xplus1 = XEXP (xinsn, 1); \
586 enum rtx_code code1 = GET_CODE (xplus1); \
591 xplus1 = XEXP (xinsn, 0); \
593 code1 = GET_CODE (xplus1); \
597 && code1 == CONST_INT && !SMALL_INT (xplus1)) \
603 GEN_INT (INTVAL (xplus1) & ~ 0x7fff)); \
609 X = plus_constant (ptr_reg, INTVAL (xplus1) & 0x7fff); \
Diq2000.c292 rtx xplus1 = XEXP (xinsn, 1); in iq2000_legitimate_address_p() local
300 while (GET_CODE (xplus1) == SUBREG) in iq2000_legitimate_address_p()
301 xplus1 = SUBREG_REG (xplus1); in iq2000_legitimate_address_p()
302 code1 = GET_CODE (xplus1); in iq2000_legitimate_address_p()
307 if (code1 == CONST_INT && SMALL_INT (xplus1) in iq2000_legitimate_address_p()
308 && SMALL_INT_UNSIGNED (xplus1) /* No negative offsets */) in iq2000_legitimate_address_p()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/xtensa/
Dxtensa.h1141 rtx xplus1 = XEXP (xinsn, 1); \
1149 while (GET_CODE (xplus1) == SUBREG) \
1150 xplus1 = SUBREG_REG (xplus1); \
1151 code1 = GET_CODE (xplus1); \
1157 xplus1 = XEXP (xinsn, 0); \
1159 code1 = GET_CODE (xplus1); \
1164 && xtensa_mem_offset (INTVAL (xplus1), (MODE))) \
/openbsd/src/gnu/usr.bin/gcc/gcc/config/mips/
Dmips.h3228 register rtx xplus1 = XEXP (xinsn, 1); \
3230 register enum rtx_code code1 = GET_CODE (xplus1); \
3235 xplus1 = XEXP (xinsn, 0); \
3237 code1 = GET_CODE (xplus1); \
3241 && code1 == CONST_INT && !SMALL_INT (xplus1)) \
3247 GEN_INT (INTVAL (xplus1) & ~ 0x7fff)); \
3253 X = plus_constant (ptr_reg, INTVAL (xplus1) & 0x7fff); \
Dmips.c1517 register rtx xplus1 = XEXP (xinsn, 1); local
1525 while (GET_CODE (xplus1) == SUBREG)
1526 xplus1 = SUBREG_REG (xplus1);
1527 code1 = GET_CODE (xplus1);
1534 if (code1 == CONST_INT && SMALL_INT (xplus1))
1541 && mips16_gp_offset_p (xplus1))
1566 && CONSTANT_ADDRESS_P (xplus1)
1570 || GET_CODE (XEXP (xplus1, 0)) != MINUS)
1577 && trunc_int_for_mode (INTVAL (xplus1),
1578 SImode) == INTVAL (xplus1)))
/openbsd/src/gnu/llvm/llvm/docs/TableGen/
DProgRef.rst1414 int xplus1 = !add(x, 1);
1434 int xplus1 = 6;
1439 int xplus1 = 6;
/openbsd/src/gnu/usr.bin/gcc/gcc/
DChangeLog.010271 xplus1 when xplus0 is not a register.