Lines Matching refs:VALUE

557   {"arch", "%{!march=*:%{mips16:-march=%(VALUE)}%{!mips*:-march=%(VALUE)}}" }, \
558 {"tune", "%{!mtune=*:-mtune=%(VALUE)}" }, \
559 {"abi", "%{!mabi=*:-mabi=%(VALUE)}" }, \
560 {"float", "%{!msoft-float:%{!mhard-float:-m%(VALUE)-float}}" }, \
561 {"divide", "%{!mdivide-traps:%{!mdivide-breaks:-mdivide-%(VALUE)}}" }
1199 #define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \
1200 ((VALUE) = GET_MODE_BITSIZE (MODE), true)
1697 /* True if VALUE is an unsigned 6-bit number. */
1699 #define UIMM6_OPERAND(VALUE) \
1700 (((VALUE) & ~(unsigned HOST_WIDE_INT) 0x3f) == 0)
1702 /* True if VALUE is a signed 10-bit number. */
1704 #define IMM10_OPERAND(VALUE) \
1705 ((unsigned HOST_WIDE_INT) (VALUE) + 0x200 < 0x400)
1707 /* True if VALUE is a signed 16-bit number. */
1709 #define SMALL_OPERAND(VALUE) \
1710 ((unsigned HOST_WIDE_INT) (VALUE) + 0x8000 < 0x10000)
1712 /* True if VALUE is an unsigned 16-bit number. */
1714 #define SMALL_OPERAND_UNSIGNED(VALUE) \
1715 (((VALUE) & ~(unsigned HOST_WIDE_INT) 0xffff) == 0)
1717 /* True if VALUE can be loaded into a register using LUI. */
1719 #define LUI_OPERAND(VALUE) \
1720 (((VALUE) | 0x7fff0000) == 0x7fff0000 \
1721 || ((VALUE) | 0x7fff0000) + 0x10000 == 0)
1724 VALUE - X is a signed 16-bit value. */
1726 #define CONST_HIGH_PART(VALUE) \
1727 (((VALUE) + 0x8000) & ~(unsigned HOST_WIDE_INT) 0xffff)
1729 #define CONST_LOW_PART(VALUE) \
1730 ((VALUE) - CONST_HIGH_PART (VALUE))
2610 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
2614 VALUE)
2620 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \
2624 LOCAL_LABEL_PREFIX, VALUE, LOCAL_LABEL_PREFIX, REL); \
2628 LOCAL_LABEL_PREFIX, VALUE); \
2632 LOCAL_LABEL_PREFIX, VALUE); \