Searched refs:ctxp (Results 1 – 12 of 12) sorted by relevance
| /openbsd/src/gnu/usr.bin/gcc/gcc/java/ |
| D | lex.c | 104 TREE_CHAIN (node) = ctxp->import_demand_list; 105 ctxp->import_demand_list = node; 110 wfl_operator = build_expr_wfl (NULL_TREE, ctxp->filename, 0, 0); 124 CPC_INITIALIZER_LIST (ctxp) = CPC_STATIC_INITIALIZER_LIST (ctxp) = 125 CPC_INSTANCE_INITIALIZER_LIST (ctxp) = NULL_TREE; 127 memset (ctxp->modifier_ctx, 0, sizeof (ctxp->modifier_ctx)); 129 ctxp->current_parsed_class = NULL; 130 ctxp->package = NULL_TREE; 133 ctxp->filename = input_filename; 134 ctxp->lineno = lineno = 0; [all …]
|
| D | lex.h | 90 (ctxp->c_line->unicode_escape_p [ctxp->c_line->current+(p)] ? 6 : \ 91 (ctxp->c_line->line [ctxp->c_line->current+(p)] == '\t' ? 8 : 1)) 165 #define BUILD_LOCATION() ((ctxp->elc.line << 12) | (ctxp->elc.col & 0xfff)) 200 ctxp->modifier_ctx [(TOKEN)-PUBLIC_TK] = build_wfl_node (NULL_TREE); \ 233 int i = ctxp->c_line->current; \ 234 ctxp->c_line->current = number_beginning; \ 237 ctxp->c_line->current = i; \ 241 int i = ctxp->c_line->current; \ 242 ctxp->c_line->current = number_beginning; \ 244 ctxp->c_line->current = i; \
|
| D | parse.h | 71 #define YYERROR_NOW ctxp->java_error_flag = 1 72 #define YYNOT_TWICE if (ctxp->prevent_ese != lineno) 88 #define MODIFIER_WFL(M) (ctxp->modifier_ctx [(M) - PUBLIC_TK]) 385 TREE_CHAIN (B) = ctxp->current_labeled_block; \ 386 ctxp->current_labeled_block = (B); \ 389 ctxp->current_labeled_block = TREE_CHAIN (ctxp->current_labeled_block) 393 TREE_CHAIN (L) = ctxp->current_loop; \ 394 ctxp->current_loop = (L); \ 396 #define POP_LOOP() ctxp->current_loop = TREE_CHAIN (ctxp->current_loop) 709 if (ctxp->deprecated) \ [all …]
|
| D | parse.y | 350 struct parser_ctxt *ctxp; variable 435 for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++) \ 437 parse_error_context (ctxp->modifier_ctx [i], (__message), \ 609 ggc_add_root (&ctxp, 1, 662 int osb = pop_current_osb (ctxp); 670 int osb = pop_current_osb (ctxp); 728 ctxp->package = EXPR_WFL_NODE ($2); 729 register_package (ctxp->package); 781 for (it = ctxp->import_demand_list; it; it = TREE_CHAIN (it)) 789 ctxp->import_demand_list = [all …]
|
| D | parse.c | 590 struct parser_ctxt *ctxp; variable 675 for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++) \ 677 parse_error_context (ctxp->modifier_ctx [i], (__message), \ 3433 ggc_add_root (&ctxp, 1, in yyparse() 3450 int osb = pop_current_osb (ctxp); in yyparse() 3461 int osb = pop_current_osb (ctxp); in yyparse() 3496 ctxp->package = EXPR_WFL_NODE (yyvsp[-1].node); in yyparse() 3497 register_package (ctxp->package); in yyparse() 3556 for (it = ctxp->import_demand_list; it; it = TREE_CHAIN (it)) in yyparse() 3564 ctxp->import_demand_list = in yyparse() [all …]
|
| D | jcf-parse.c | 1117 for (ctxp = ctxp_for_generation; ctxp; ctxp = ctxp->next) 1119 input_filename = ctxp->filename; 1123 for (ctxp = ctxp_for_generation; ctxp; ctxp = ctxp->next) 1125 input_filename = ctxp->filename;
|
| D | parse-scan.y | 56 static struct parser_ctxt *ctxp; variable 1183 new->next = ctxp; 1184 ctxp = new;
|
| D | parse-scan.c | 298 static struct parser_ctxt *ctxp; variable 3164 new->next = ctxp; in java_push_parser_context() 3165 ctxp = new; in java_push_parser_context()
|
| D | ChangeLog | 2379 TYPE_IMPORT_DEMAND_LIST with ctxp counterparts. 3609 * lex.c (java_init_lex): Don't clear ctxp->incomplete_class. 5028 `lexer' field in ctxp. 8937 * parse.y (struct parser_ctxt *ctxp): Now global. 10160 chain it on ctxp->static_initialized, and handle later. 10463 (java_parser_context_restore_global): Pop extra pushed ctxp only 10865 (java_push_parser_context): Remember ctxp->gclass_list across 10870 (parse_error_context): Don't setup ctxp->elc here. Call 10874 setup. Link new class/interface to ctxp->gclass_list. 10878 ctxp->current_parsed_class_un. Check class deprecation. [all …]
|
| /openbsd/src/sbin/restore/ |
| D | dirs.c | 683 allocinotab(FILE *mf, struct context *ctxp, long seekpt) in allocinotab() argument 691 itp->t_next = inotab[INOHASH(ctxp->ino)]; in allocinotab() 692 inotab[INOHASH(ctxp->ino)] = itp; in allocinotab() 693 itp->t_ino = ctxp->ino; in allocinotab() 697 node.ino = ctxp->ino; in allocinotab() 698 node.mtimep[0].tv_sec = ctxp->atime_sec; in allocinotab() 699 node.mtimep[0].tv_nsec = ctxp->atime_nsec; in allocinotab() 700 node.mtimep[1].tv_sec = ctxp->mtime_sec; in allocinotab() 701 node.mtimep[1].tv_nsec = ctxp->mtime_nsec; in allocinotab() 702 node.ctimep[0].tv_sec = ctxp->atime_sec; in allocinotab() [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | gimplify.c | 1453 struct gimplify_ctx *ctxp; in gimplify_case_label_expr() local 1458 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context) in gimplify_case_label_expr() 1459 if (ctxp->case_labels) in gimplify_case_label_expr() 1462 VEC_safe_push (tree, heap, ctxp->case_labels, expr); in gimplify_case_label_expr()
|
| /openbsd/src/gnu/gcc/gcc/cp/ |
| D | ChangeLog | 6000 (struct cp_gimplify_ctx, ctxp): Define.
|