Searched refs:VALUE (Results 51 - 75 of 217) sorted by relevance

123456789

/openbsd-current/gnu/usr.bin/gcc/gcc/config/ip2k/
H A Dip2k.h928 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
929 ((C) == 'I' ? (VALUE) >= -255 && (VALUE) <= -1 : \
930 (C) == 'J' ? (VALUE) >= 0 && (VALUE) <= 7 : \
931 (C) == 'K' ? (VALUE) >= 0 && (VALUE) <= 127 : \
932 (C) == 'L' ? (VALUE) > 0 && (VALUE) < 128: \
933 (C) == 'M' ? (VALUE)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/vax/
H A Dvax.h83 each pair being { "NAME", VALUE }
84 where VALUE is the bits to set or minus the bits to clear.
85 An empty string NAME is used to identify the default VALUE. */
297 C is the letter, and VALUE is a constant value.
298 Return 1 if VALUE is in the range specified by C.
308 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
309 ( (C) == 'I' ? (VALUE) == 0 \
310 : (C) == 'J' ? 0 <= (VALUE) && (VALUE) < 64 \
311 : (C) == 'O' ? -63 <= (VALUE)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/m32r/
H A Dm32r.h226 each pair being { "NAME", VALUE }
227 where VALUE is the bits to set or minus the bits to clear.
228 An empty string NAME is used to identify the default VALUE. */
770 C is the letter, and VALUE is a constant value.
771 Return 1 if VALUE is in the range specified by C. */
783 #define IN_RANGE_P(VALUE, LOW, HIGH) \
784 (((unsigned HOST_WIDE_INT)((VALUE) - (LOW))) \
800 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
801 ((C) == 'I' ? INT8_P (VALUE) \
802 : (C) == 'J' ? INT16_P (VALUE) \
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/m68k/
H A Dm68k.h156 each pair being { "NAME", VALUE }
157 where VALUE is the bits to set or minus the bits to clear.
158 An empty string NAME is used to identify the default VALUE. */
767 C is the letter, and VALUE is a constant value.
768 Return 1 if VALUE is in the range specified by C.
780 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
781 ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 : \
782 (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <
[all...]
H A Dhp320.h267 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
268 fprintf (FILE, "\tlong L%d\n", VALUE)
270 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
271 fprintf (FILE, "\tshort L%d-L%d\n", VALUE, REL)
292 #define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE) \
294 REAL_VALUE_TO_TARGET_SINGLE (VALUE, l); \
298 #define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE) \
303 real_to_decimal (dstr, &(VALUE), sizeof (dstr), 9, 0); \
309 REAL_VALUE_TO_TARGET_SINGLE (VALUE, l); \
318 #define ASM_OUTPUT_DOUBLE_OPERAND(FILE,VALUE) \
[all...]
H A Dsgs.h176 #define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE) \
178 REAL_VALUE_TO_TARGET_SINGLE (VALUE, l); \
183 #define ASM_OUTPUT_DOUBLE_OPERAND(FILE,VALUE) \
185 REAL_VALUE_TO_TARGET_DOUBLE (VALUE, l); \
388 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
389 asm_fprintf (FILE, "%s%LL%d-%LL%d\n", integer_asm_op (2, TRUE), VALUE, REL)
/openbsd-current/gnu/llvm/llvm/lib/BinaryFormat/
H A DWasm.cpp31 #define WASM_RELOC(NAME, VALUE) \
32 case VALUE: \
/openbsd-current/gnu/llvm/clang/lib/Driver/
H A DDriverOptions.cpp23 #define PREFIX(NAME, VALUE) \
24 static constexpr llvm::StringLiteral NAME##_init[] = VALUE; \
/openbsd-current/gnu/gcc/gcc/config/arm/
H A Daof.h262 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \
266 fprintf ((STREAM), "\tb\t|L..%d|\n", (VALUE)); \
268 fprintf ((STREAM), "\tDCD\t|L..%d| - |L..%d|\n", (VALUE), (REL)); \
272 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
273 fprintf ((STREAM), "\tDCD\t|L..%d|\n", (VALUE))
/openbsd-current/gnu/gcc/gcc/config/m68k/
H A Dm68k.h367 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
368 ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 : \
369 (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF : \
370 (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 : \
371 (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : \
372 (C) == 'M' ? (VALUE) <
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/avr/
H A Davr.h801 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
802 ((C) == 'I' ? (VALUE) >= 0 && (VALUE) <= 63 : \
803 (C) == 'J' ? (VALUE) <= 0 && (VALUE) >= -63: \
804 (C) == 'K' ? (VALUE) == 2 : \
805 (C) == 'L' ? (VALUE) == 0 : \
806 (C) == 'M' ? (VALUE) >= 0 && (VALUE) <= 0xff : \
807 (C) == 'N' ? (VALUE)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Ddefaults.h27 #define GET_ENVIRONMENT(VALUE, NAME) do { (VALUE) = getenv (NAME); } while (0)
83 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
85 ASM_OUTPUT_INTERNAL_LABEL (FILE, "L", (VALUE)); \
169 #define ASM_OUTPUT_WEAK_ALIAS(STREAM, NAME, VALUE) \
173 if (VALUE) \
174 ASM_OUTPUT_DEF (STREAM, NAME, VALUE); \
H A Dscan-types.sh50 # VALUE is now the typedef'd definition of $TYPE.
51 eval "VALUE='`${SED} -e 's| *$||' -e '2,$d' <TMP`'"
52 # Unless VALUE contains a blank, look for a typedef for it
54 # Ensure $VALUE is double quoted to protect cases where it
57 if echo "$VALUE" | grep " " >/dev/null ; then true
60 ${SED} -n -e "s|.*typedef[ ][ ]*\(.*[^a-zA-Z0-9_]\)${VALUE}[ ]*;.*|\1|w TMP" <st-dummy.out>/dev/null
62 eval "VALUE='`${SED} -e '2,$d' -e 's|[ ]*$||' <TMP`'"
65 eval "$TYPE='$VALUE'"
/openbsd-current/gnu/gcc/gcc/config/score/
H A Dscore.h452 letter, and VALUE is a constant value. Return 1 if VALUE is
454 #define CONST_OK_FOR_LETTER_P(VALUE, C) score_const_ok_for_letter_p (VALUE, C)
457 Here VALUE is the CONST_DOUBLE rtx itself. */
459 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
460 ((C) == 'G' && (VALUE) == CONST0_RTX (GET_MODE (VALUE)))
467 #define EXTRA_CONSTRAINT(VALUE, C) score_extra_constraint (VALUE,
[all...]
/openbsd-current/gnu/gcc/gcc/config/arc/
H A Darc.h416 C is the letter, and VALUE is a constant value.
417 Return 1 if VALUE is in the range specified by C. */
429 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
430 ((C) == 'I' ? SMALL_INT (VALUE) \
431 : (C) == 'J' ? LARGE_INT (VALUE) \
436 Here VALUE is the CONST_DOUBLE rtx itself. */
440 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
441 ((C) == 'G' ? arc_double_limm_p (VALUE) \
448 VALUE corresponds to the operand type represented by the constraint letter
450 be 0 regardless of VALUE
[all...]
/openbsd-current/gnu/gcc/gcc/config/mmix/
H A Dmmix.h522 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
523 mmix_const_ok_for_letter_p (VALUE, C)
525 #define EXTRA_CONSTRAINT(VALUE, C) \
526 mmix_extra_constraint (VALUE, C, MMIX_REG_OK_STRICT)
529 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
530 mmix_const_double_ok_for_letter_p (VALUE, C)
848 #define ASM_OUTPUT_DEF(STREAM, NAME, VALUE) \
849 mmix_asm_output_def (STREAM, NAME, VALUE)
927 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \
928 mmix_asm_output_addr_diff_elt (STREAM, BODY, VALUE, RE
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/mips/
H A Delf64.h141 #define ASM_OUTPUT_WEAK_ALIAS(FILE,NAME,VALUE) \
148 if (VALUE) \
151 assemble_name (FILE, VALUE); \
/openbsd-current/gnu/usr.bin/gcc/gcc/config/d30v/
H A Dd30v.h244 #define IN_RANGE_P(VALUE, LOW, HIGH) \
245 (((unsigned)((VALUE) - (LOW))) <= ((unsigned)((HIGH) - (LOW))))
980 If C is one of those letters, the expression should check that VALUE, an
982 is not one of those letters, the value should be 0 regardless of VALUE. */
983 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
984 ((C) == 'I' ? IN_RANGE_P (VALUE, -32, 31) \
985 : (C) == 'J' ? IN_RANGE_P (VALUE, 0, 31) \
986 : (C) == 'K' ? IN_RANGE_P (exact_log2 (VALUE), 0, 31) \
987 : (C) == 'L' ? IN_RANGE_P (exact_log2 (~ (VALUE)), 0, 31) \
988 : (C) == 'M' ? ((VALUE)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/cris/
H A Dcris.h749 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
752 (C) == 'I' ? (VALUE) >= -32 && (VALUE) <= 31 : \
754 (C) == 'J' ? (VALUE) >= 0 && (VALUE) <= 63 : \
756 (C) == 'K' ? (VALUE) >= 0 && (VALUE) <= 31 : \
758 (C) == 'L' ? (VALUE) >= -32768 && (VALUE) <= 32767 : \
760 (C) == 'M' ? (VALUE)
[all...]
/openbsd-current/gnu/gcc/gcc/config/sh/
H A Dsh.h1342 C is the letter, and VALUE is a constant value.
1343 Return 1 if VALUE is in the range specified by C.
1355 #define CONST_OK_FOR_I06(VALUE) (((HOST_WIDE_INT)(VALUE)) >= -32 \
1356 && ((HOST_WIDE_INT)(VALUE)) <= 31)
1357 #define CONST_OK_FOR_I08(VALUE) (((HOST_WIDE_INT)(VALUE))>= -128 \
1358 && ((HOST_WIDE_INT)(VALUE)) <= 127)
1359 #define CONST_OK_FOR_I10(VALUE) (((HOST_WIDE_INT)(VALUE)) >
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/i960/
H A Di960.h231 each pair being { "NAME", VALUE }
232 where VALUE is the bits to set or minus the bits to clear.
233 An empty string NAME is used to identify the default VALUE. */
678 C is the letter, and VALUE is a constant value.
679 Return 1 if VALUE is in the range specified by C.
686 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
687 ((C) == 'I' ? (((unsigned) (VALUE)) <= 31) \
688 : (C) == 'J' ? ((VALUE) == 0) \
689 : (C) == 'K' ? ((VALUE) >= -31 && (VALUE) <
[all...]
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFDirectiveParser.cpp23 #define PREFIX(NAME, VALUE) \
24 static constexpr StringLiteral NAME##_init[] = VALUE; \
/openbsd-current/gnu/gcc/gcc/
H A Dscan-types.sh50 # VALUE is now the typedef'd definition of $TYPE.
51 eval "VALUE='`${SED} -e 's| *$||' -e '2,$d' <TMP`'"
52 # Unless VALUE contains a blank, look for a typedef for it
54 # Ensure $VALUE is double quoted to protect cases where it
57 if echo "$VALUE" | grep " " >/dev/null ; then true
60 ${SED} -n -e "s|.*typedef[ ][ ]*\(.*[^a-zA-Z0-9_]\)${VALUE}[ ]*;.*|\1|w TMP" <st-dummy.out>/dev/null
62 eval "VALUE='`${SED} -e '2,$d' -e 's|[ ]*$||' <TMP`'"
65 eval "$TYPE='$VALUE'"
/openbsd-current/gnu/usr.bin/gcc/gcc/config/pdp11/
H A Dpdp11.h50 each triplet being { "NAME", VALUE, DOC }
51 where VALUE is the bits to set or minus the bits to clear and DOC
53 An empty string NAME is used to identify the default VALUE. */
419 C is the letter, and VALUE is a constant value.
420 Return 1 if VALUE is in the range specified by C.
430 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
431 ((C) == 'I' ? ((VALUE) & 0xffff0000) == 0 \
432 : (C) == 'J' ? ((VALUE) & 0x0000ffff) == 0 \
433 : (C) == 'K' ? (((VALUE) & 0xffff0000) != 0 \
434 && ((VALUE)
[all...]
/openbsd-current/gnu/gcc/gcc/config/pa/
H A Dpa.h143 {"arch", "%{!march=*:-march=%(VALUE)}" }, \
144 {"schedule", "%{!mschedule=*:-mschedule=%(VALUE)}" }
487 C is the letter, and VALUE is a constant value.
488 Return 1 if VALUE is in the range specified by C.
501 #define CONST_OK_FOR_LETTER_P(VALUE, C) \
502 ((C) == 'I' ? VAL_11_BITS_P (VALUE) \
503 : (C) == 'J' ? VAL_14_BITS_P (VALUE) \
504 : (C) == 'K' ? zdepi_cint_p (VALUE) \
505 : (C) == 'L' ? VAL_5_BITS_P (VALUE) \
506 : (C) == 'M' ? (VALUE)
[all...]

Completed in 230 milliseconds

123456789