Home
last modified time | relevance | path

Searched refs:rid_code (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/spu/
H A Dspu-c.c66 enum rid rid_code = (enum rid)(ident->rid_code); in spu_macro_to_expand() local
73 rid_code = (enum rid)(ident->rid_code); in spu_macro_to_expand()
76 if (rid_code == RID_UNSIGNED || rid_code == RID_LONG in spu_macro_to_expand()
77 || rid_code == RID_SHORT || rid_code == RID_SIGNED in spu_macro_to_expand()
78 || rid_code == RID_INT || rid_code == RID_CHAR in spu_macro_to_expand()
79 || rid_code == RID_FLOAT || rid_code == RID_DOUBLE) in spu_macro_to_expand()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/s390/
H A Ds390-c.c188 enum rid rid_code; in s390_macro_to_expand() local
234 rid_code = (enum rid)(ident->rid_code); in s390_macro_to_expand()
254 rid_code = (enum rid)(ident->rid_code); in s390_macro_to_expand()
261 if (rid_code == RID_UNSIGNED || rid_code == RID_LONG in s390_macro_to_expand()
262 || rid_code == RID_SHORT || rid_code == RID_SIGNED in s390_macro_to_expand()
263 || rid_code == RID_INT || rid_code == RID_CHAR in s390_macro_to_expand()
264 || (rid_code == RID_FLOAT && TARGET_VXE) in s390_macro_to_expand()
265 || rid_code == RID_DOUBLE) in s390_macro_to_expand()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/
H A Ds390-c.cc188 enum rid rid_code; in s390_macro_to_expand() local
234 rid_code = (enum rid)(ident->rid_code); in s390_macro_to_expand()
254 rid_code = (enum rid)(ident->rid_code); in s390_macro_to_expand()
261 if (rid_code == RID_UNSIGNED || rid_code == RID_LONG in s390_macro_to_expand()
262 || rid_code == RID_SHORT || rid_code == RID_SIGNED in s390_macro_to_expand()
263 || rid_code == RID_INT || rid_code == RID_CHAR in s390_macro_to_expand()
264 || (rid_code == RID_FLOAT && TARGET_VXE) in s390_macro_to_expand()
265 || rid_code == RID_DOUBLE) in s390_macro_to_expand()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Drs6000-c.c224 enum rid rid_code = (enum rid)(ident->rid_code); in rs6000_macro_to_expand() local
254 rid_code = RID_MAX; in rs6000_macro_to_expand()
260 rid_code = RID_MAX; in rs6000_macro_to_expand()
263 rid_code = (enum rid)(ident->rid_code); in rs6000_macro_to_expand()
266 if (rid_code == RID_UNSIGNED || rid_code == RID_LONG in rs6000_macro_to_expand()
267 || rid_code == RID_SHORT || rid_code == RID_SIGNED in rs6000_macro_to_expand()
268 || rid_code == RID_INT || rid_code == RID_CHAR in rs6000_macro_to_expand()
269 || rid_code == RID_FLOAT in rs6000_macro_to_expand()
270 || (rid_code == RID_DOUBLE && TARGET_VSX) in rs6000_macro_to_expand()
271 || (rid_code == rid_int128 () && TARGET_VADDUQM)) in rs6000_macro_to_expand()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-c.cc224 enum rid rid_code = (enum rid)(ident->rid_code); in rs6000_macro_to_expand() local
254 rid_code = RID_MAX; in rs6000_macro_to_expand()
260 rid_code = RID_MAX; in rs6000_macro_to_expand()
263 rid_code = (enum rid)(ident->rid_code); in rs6000_macro_to_expand()
266 if (rid_code == RID_UNSIGNED || rid_code == RID_LONG in rs6000_macro_to_expand()
267 || rid_code == RID_SHORT || rid_code == RID_SIGNED in rs6000_macro_to_expand()
268 || rid_code == RID_INT || rid_code == RID_CHAR in rs6000_macro_to_expand()
269 || rid_code == RID_FLOAT in rs6000_macro_to_expand()
270 || (rid_code == RID_DOUBLE && TARGET_VSX) in rs6000_macro_to_expand()
271 || (rid_code == rid_int128 () && TARGET_VADDUQM)) in rs6000_macro_to_expand()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-common.h373 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
375 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-common.h390 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
392 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/
H A Dcpplib.h894 unsigned char rid_code; /* Rid code - for front ends. */ member
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/
H A Dcpplib.h957 unsigned int rid_code : 8; /* Rid code - for front ends. */ member
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-parser.c306 enum rid rid_code = C_RID_CODE (token->value); variable
308 if (rid_code == RID_CXX_COMPAT_WARN)
315 else if (rid_code >= RID_FIRST_ADDR_SPACE
316 && rid_code <= RID_LAST_ADDR_SPACE)
319 as = (addr_space_t) (rid_code - RID_FIRST_ADDR_SPACE);
322 token->keyword = rid_code;
325 else if (c_dialect_objc () && OBJC_IS_PQ_KEYWORD (rid_code))
334 token->keyword = rid_code;
338 && rid_code == RID_IN)
353 token->keyword = rid_code;
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-parser.cc315 enum rid rid_code = C_RID_CODE (token->value); in c_lex_one_token() local
317 if (rid_code == RID_CXX_COMPAT_WARN) in c_lex_one_token()
324 else if (rid_code >= RID_FIRST_ADDR_SPACE in c_lex_one_token()
325 && rid_code <= RID_LAST_ADDR_SPACE) in c_lex_one_token()
328 as = (addr_space_t) (rid_code - RID_FIRST_ADDR_SPACE); in c_lex_one_token()
331 token->keyword = rid_code; in c_lex_one_token()
334 else if (c_dialect_objc () && OBJC_IS_PQ_KEYWORD (rid_code)) in c_lex_one_token()
343 token->keyword = rid_code; in c_lex_one_token()
347 && rid_code == RID_IN) in c_lex_one_token()
362 token->keyword = rid_code; in c_lex_one_token()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A DChangeLog-20001288 * cp-tree.h (struct lang_identifier): Add rid_code entry.
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-20017616 * c-common.h (struct c_common_identifier): Remove rid_code field.
7617 (C_RID_CODE): Use ->node.rid_code instead of ->rid_code.
22404 Delete rid_code.
H A DChangeLog-20009486 * c-tree.h (struct lang_identifier): Add rid_code field.