Home
last modified time | relevance | path

Searched refs:MAX_SAVED_CONST_INT (Results 1 – 6 of 6) sorted by relevance

/openbsd/gnu/usr.bin/gcc/gcc/
H A Drtl.h1705 #define MAX_SAVED_CONST_INT 64 macro
1706 extern GTY(()) rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
1708 #define const0_rtx (const_int_rtx[MAX_SAVED_CONST_INT])
1709 #define const1_rtx (const_int_rtx[MAX_SAVED_CONST_INT+1])
1710 #define const2_rtx (const_int_rtx[MAX_SAVED_CONST_INT+2])
1711 #define constm1_rtx (const_int_rtx[MAX_SAVED_CONST_INT-1])
H A Demit-rtl.c146 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
351 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT)
352 return const_int_rtx[arg + MAX_SAVED_CONST_INT];
5439 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
5440 const_int_rtx[i + MAX_SAVED_CONST_INT] =
5443 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
5444 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
5445 const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT];
/openbsd/gnu/gcc/gcc/
H A Drtl.h1784 #define MAX_SAVED_CONST_INT 64 macro
1785 extern GTY(()) rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
1787 #define const0_rtx (const_int_rtx[MAX_SAVED_CONST_INT])
1788 #define const1_rtx (const_int_rtx[MAX_SAVED_CONST_INT+1])
1789 #define const2_rtx (const_int_rtx[MAX_SAVED_CONST_INT+2])
1790 #define constm1_rtx (const_int_rtx[MAX_SAVED_CONST_INT-1])
H A Demit-rtl.c142 rtx const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
384 if (arg >= - MAX_SAVED_CONST_INT && arg <= MAX_SAVED_CONST_INT) in gen_rtx_CONST_INT()
385 return const_int_rtx[arg + MAX_SAVED_CONST_INT]; in gen_rtx_CONST_INT()
5183 for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++) in init_emit_once()
5184 const_int_rtx[i + MAX_SAVED_CONST_INT] = in init_emit_once()
5187 if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT in init_emit_once()
5188 && STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT) in init_emit_once()
5189 const_true_rtx = const_int_rtx[STORE_FLAG_VALUE + MAX_SAVED_CONST_INT]; in init_emit_once()
H A Dgenemit.c246 else if (-MAX_SAVED_CONST_INT <= INTVAL (x) in gen_exp()
247 && INTVAL (x) <= MAX_SAVED_CONST_INT) in gen_exp()
H A Dgenrecog.c2279 && -MAX_SAVED_CONST_INT <= test->next->u.intval in write_node()
2280 && test->next->u.intval <= MAX_SAVED_CONST_INT) in write_node()