Searched refs:rtx_next (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgengtype.c363 static int rtx_next[NUM_RTX_CODE]; variable
365 /* Generate the contents of the rtx_next array. This really doesn't belong
376 rtx_next[i] = -1;
378 rtx_next[i] = 2;
380 rtx_next[i] = 1;
384 rtx_next[i] = k;
388 /* Write out the contents of the rtx_next array. */
396 oprintf (f, "const unsigned char rtx_next[NUM_RTX_CODE] = {\n");
398 if (rtx_next[i] == -1)
403 rtx_next[
[all...]
H A Drtl.h66 extern const unsigned char rtx_next[NUM_RTX_CODE];
215 #define RTX_NEXT(X) (rtx_next[GET_CODE (X)] == 0 ? NULL \
216 : *(rtx *)(((char *)X) + rtx_next[GET_CODE (X)]))
/openbsd-current/gnu/gcc/gcc/
H A Drtl.h109 extern const unsigned char rtx_next[NUM_RTX_CODE];
324 #define RTX_NEXT(X) (rtx_next[GET_CODE (X)] == 0 ? NULL \
325 : *(rtx *)(((char *)X) + rtx_next[GET_CODE (X)]))

Completed in 217 milliseconds