Searched refs:new_scope (Results 1 – 3 of 3) sorted by relevance
761 scope_t *new_scope; in scope_alloc() local763 new_scope = (scope_t *)malloc(sizeof(scope_t)); in scope_alloc()764 if (new_scope == NULL) in scope_alloc()766 memset(new_scope, 0, sizeof(*new_scope)); in scope_alloc()767 TAILQ_INIT(&new_scope->inner_scope); in scope_alloc()771 new_scope, scope_links); in scope_alloc()774 SLIST_INSERT_HEAD(&scope_stack, new_scope, scope_stack_links); in scope_alloc()775 return new_scope; in scope_alloc()
1060 scope_t *new_scope; variable1063 new_scope = scope_alloc();1064 new_scope->type = SCOPE_IF;1065 new_scope->begin_addr = instruction_ptr;1066 new_scope->func_num = $2->info.condinfo->func_num;1070 scope_t *new_scope; variable1088 new_scope = scope_alloc();1089 new_scope->type = SCOPE_ELSE_IF;1090 new_scope->begin_addr = instruction_ptr;1091 new_scope->func_num = $3->info.condinfo->func_num;[all …]
3726 tree new_scope; in cp_parser_nested_name_specifier_opt() local3747 new_scope = resolve_typename_type (parser->scope, in cp_parser_nested_name_specifier_opt()3749 if (new_scope != error_mark_node) in cp_parser_nested_name_specifier_opt()3750 parser->scope = new_scope; in cp_parser_nested_name_specifier_opt()3806 new_scope in cp_parser_nested_name_specifier_opt()3885 if (TREE_CODE (new_scope) == TYPE_DECL) in cp_parser_nested_name_specifier_opt()3886 new_scope = TREE_TYPE (new_scope); in cp_parser_nested_name_specifier_opt()3889 && !(CLASS_TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt()3890 && ((CLASSTYPE_USE_TEMPLATE (new_scope) in cp_parser_nested_name_specifier_opt()3891 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (new_scope))) in cp_parser_nested_name_specifier_opt()[all …]