Author: ekohl Date: Tue Dec 2 14:45:09 2008 New Revision: 37813
URL: http://svn.reactos.org/svn/reactos?rev=37813&view=rev Log: Sync to wine-1.1.1 (Patch 7 of 10):
- Rob Shearman robertshearman@gmail.com Fri, 4 Jul 2008 widl: Rename find_type_helper, find_type and find_type2 to find_type, find_type_error and find_type_error2 respectively.
Modified: trunk/reactos/tools/widl/parser.tab.c trunk/reactos/tools/widl/parser.y
Modified: trunk/reactos/tools/widl/parser.tab.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/widl/parser.tab.c?rev... ============================================================================== --- trunk/reactos/tools/widl/parser.tab.c [iso-8859-1] (original) +++ trunk/reactos/tools/widl/parser.tab.c [iso-8859-1] Tue Dec 2 14:45:09 2008 @@ -501,7 +501,8 @@
static type_t *reg_type(type_t *type, const char *name, int t); static type_t *reg_typedefs(decl_spec_t *decl_spec, var_list_t *names, attr_list_t *attrs); -static type_t *find_type2(char *name, int t); +static type_t *find_type_or_error(const char *name, int t); +static type_t *find_type_or_error2(char *name, int t); static type_t *get_type(unsigned char type, char *name, int t); static type_t *get_typev(unsigned char type, var_t *name, int t); static int get_struct_type(var_list_t *fields); @@ -529,7 +530,6 @@ static attr_list_t *check_coclass_attrs(const char *name, attr_list_t *attrs); const char *get_attr_display_name(enum attr_type type); static void add_explicit_handle_if_necessary(func_t *func); -static type_t *find_type_helper(const char *name, int t); static void check_def(const type_t *t);
static statement_t *make_statement(enum statement_type type); @@ -3818,7 +3818,7 @@
case 253: #line 923 "parser.y" - { (yyval.type) = find_type2((yyvsp[0].str), 0); ;} + { (yyval.type) = find_type_or_error2((yyvsp[0].str), 0); ;} break;
case 254: @@ -3864,7 +3864,7 @@ case 258: #line 959 "parser.y" { (yyval.type) = (yyvsp[-7].ifinfo).interface; - (yyval.type)->ref = find_type2((yyvsp[-5].str), 0); + (yyval.type)->ref = find_type_or_error2((yyvsp[-5].str), 0); if (!(yyval.type)->ref) error_loc("base class '%s' not found in import\n", (yyvsp[-5].str)); (yyval.type)->funcs = (yyvsp[-2].func_list); compute_method_indexes((yyval.type)); @@ -4065,12 +4065,12 @@
case 295: #line 1072 "parser.y" - { (yyval.type) = duptype(find_type("void", 0), 1); ;} + { (yyval.type) = duptype(find_type_or_error("void", 0), 1); ;} break;
case 296: #line 1073 "parser.y" - { (yyval.type) = find_type((yyvsp[0].str), 0); ;} + { (yyval.type) = find_type_or_error((yyvsp[0].str), 0); ;} break;
case 297: @@ -4085,7 +4085,7 @@
case 299: #line 1076 "parser.y" - { (yyval.type) = find_type2((yyvsp[0].str), tsENUM); ;} + { (yyval.type) = find_type_or_error2((yyvsp[0].str), tsENUM); ;} break;
case 300: @@ -4105,7 +4105,7 @@
case 303: #line 1080 "parser.y" - { (yyval.type) = find_type2((yyvsp[0].str), tsUNION); ;} + { (yyval.type) = find_type_or_error2((yyvsp[0].str), tsUNION); ;} break;
case 304: @@ -4443,14 +4443,14 @@ static type_t *make_builtin(char *name) { /* NAME is strdup'd in the lexer */ - type_t *t = duptype(find_type(name, 0), 0); + type_t *t = duptype(find_type_or_error(name, 0), 0); t->name = name; return t; }
static type_t *make_int(int sign) { - type_t *t = duptype(find_type("int", 0), 1); + type_t *t = duptype(find_type_or_error("int", 0), 1);
t->sign = sign; if (sign < 0) @@ -5076,7 +5076,7 @@
static type_t *make_safearray(type_t *type) { - type_t *sa = duptype(find_type("SAFEARRAY", 0), 1); + type_t *sa = duptype(find_type_or_error("SAFEARRAY", 0), 1); sa->ref = type; return make_type(pointer_default, sa); } @@ -5210,7 +5210,7 @@ if (name->name) { type_t *cur;
- cur = find_type_helper(name->name, 0); + cur = find_type(name->name, 0); if (cur) error_loc("%s: redefinition error; original definition was at %s:%d\n", cur->name, cur->loc_info.input_name, @@ -5230,7 +5230,7 @@ return type; }
-static type_t *find_type_helper(const char *name, int t) +type_t *find_type(const char *name, int t) { struct rtype *cur = type_hash[hash_ident(name)]; while (cur && (cur->t != t || strcmp(cur->name, name))) @@ -5238,9 +5238,9 @@ return cur ? cur->type : NULL; }
-type_t *find_type(const char *name, int t) -{ - type_t *type = find_type_helper(name, t); +static type_t *find_type_or_error(const char *name, int t) +{ + type_t *type = find_type(name, t); if (!type) { error_loc("type '%s' not found\n", name); return NULL; @@ -5248,23 +5248,23 @@ return type; }
-static type_t *find_type2(char *name, int t) -{ - type_t *tp = find_type(name, t); +static type_t *find_type_or_error2(char *name, int t) +{ + type_t *tp = find_type_or_error(name, t); free(name); return tp; }
int is_type(const char *name) { - return find_type_helper(name, 0) != NULL; + return find_type(name, 0) != NULL; }
static type_t *get_type(unsigned char type, char *name, int t) { type_t *tp; if (name) { - tp = find_type_helper(name, t); + tp = find_type(name, t); if (tp) { free(name); return tp; @@ -6020,7 +6020,7 @@ * function */ var_t *idl_handle = make_var(xstrdup("IDL_handle")); idl_handle->attrs = append_attr(NULL, make_attr(ATTR_IN)); - idl_handle->type = find_type("handle_t", 0); + idl_handle->type = find_type_or_error("handle_t", 0); if (!func->def->type->fields_or_args) { func->def->type->fields_or_args = xmalloc( sizeof(*func->def->type->fields_or_args) ); @@ -6175,7 +6175,7 @@ LIST_FOR_EACH_ENTRY_SAFE( decl, next, decls, declarator_t, entry ) { var_t *var = decl->var; - type_t *type = find_type(var->name, 0); + type_t *type = find_type_or_error(var->name, 0); *type_list = xmalloc(sizeof(type_list_t)); (*type_list)->type = type; (*type_list)->next = NULL;
Modified: trunk/reactos/tools/widl/parser.y URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/widl/parser.y?rev=378... ============================================================================== --- trunk/reactos/tools/widl/parser.y [iso-8859-1] (original) +++ trunk/reactos/tools/widl/parser.y [iso-8859-1] Tue Dec 2 14:45:09 2008 @@ -128,7 +128,8 @@
static type_t *reg_type(type_t *type, const char *name, int t); static type_t *reg_typedefs(decl_spec_t *decl_spec, var_list_t *names, attr_list_t *attrs); -static type_t *find_type2(char *name, int t); +static type_t *find_type_or_error(const char *name, int t); +static type_t *find_type_or_error2(char *name, int t); static type_t *get_type(unsigned char type, char *name, int t); static type_t *get_typev(unsigned char type, var_t *name, int t); static int get_struct_type(var_list_t *fields); @@ -156,7 +157,6 @@ static attr_list_t *check_coclass_attrs(const char *name, attr_list_t *attrs); const char *get_attr_display_name(enum attr_type type); static void add_explicit_handle_if_necessary(func_t *func); -static type_t *find_type_helper(const char *name, int t); static void check_def(const type_t *t);
static statement_t *make_statement(enum statement_type type); @@ -920,7 +920,7 @@ ;
inherit: { $$ = NULL; } - | ':' aKNOWNTYPE { $$ = find_type2($2, 0); } + | ':' aKNOWNTYPE { $$ = find_type_or_error2($2, 0); } ;
interface: tINTERFACE aIDENTIFIER { $$ = get_type(RPC_FC_IP, $2, 0); $$->kind = TKIND_INTERFACE; } @@ -957,7 +957,7 @@ | interfacehdr ':' aIDENTIFIER '{' import int_statements '}' semicolon_opt { $$ = $1.interface; - $$->ref = find_type2($3, 0); + $$->ref = find_type_or_error2($3, 0); if (!$$->ref) error_loc("base class '%s' not found in import\n", $3); $$->funcs = $6; compute_method_indexes($$); @@ -1069,15 +1069,15 @@ } ;
-type: tVOID { $$ = duptype(find_type("void", 0), 1); } - | aKNOWNTYPE { $$ = find_type($1, 0); } +type: tVOID { $$ = duptype(find_type_or_error("void", 0), 1); } + | aKNOWNTYPE { $$ = find_type_or_error($1, 0); } | base_type { $$ = $1; } | enumdef { $$ = $1; } - | tENUM aIDENTIFIER { $$ = find_type2($2, tsENUM); } + | tENUM aIDENTIFIER { $$ = find_type_or_error2($2, tsENUM); } | structdef { $$ = $1; } | tSTRUCT aIDENTIFIER { $$ = get_type(RPC_FC_STRUCT, $2, tsSTRUCT); } | uniondef { $$ = $1; } - | tUNION aIDENTIFIER { $$ = find_type2($2, tsUNION); } + | tUNION aIDENTIFIER { $$ = find_type_or_error2($2, tsUNION); } | tSAFEARRAY '(' type ')' { $$ = make_safearray($3); } ;
@@ -1128,14 +1128,14 @@ static type_t *make_builtin(char *name) { /* NAME is strdup'd in the lexer */ - type_t *t = duptype(find_type(name, 0), 0); + type_t *t = duptype(find_type_or_error(name, 0), 0); t->name = name; return t; }
static type_t *make_int(int sign) { - type_t *t = duptype(find_type("int", 0), 1); + type_t *t = duptype(find_type_or_error("int", 0), 1);
t->sign = sign; if (sign < 0) @@ -1761,7 +1761,7 @@
static type_t *make_safearray(type_t *type) { - type_t *sa = duptype(find_type("SAFEARRAY", 0), 1); + type_t *sa = duptype(find_type_or_error("SAFEARRAY", 0), 1); sa->ref = type; return make_type(pointer_default, sa); } @@ -1895,7 +1895,7 @@ if (name->name) { type_t *cur;
- cur = find_type_helper(name->name, 0); + cur = find_type(name->name, 0); if (cur) error_loc("%s: redefinition error; original definition was at %s:%d\n", cur->name, cur->loc_info.input_name, @@ -1915,7 +1915,7 @@ return type; }
-static type_t *find_type_helper(const char *name, int t) +type_t *find_type(const char *name, int t) { struct rtype *cur = type_hash[hash_ident(name)]; while (cur && (cur->t != t || strcmp(cur->name, name))) @@ -1923,9 +1923,9 @@ return cur ? cur->type : NULL; }
-type_t *find_type(const char *name, int t) -{ - type_t *type = find_type_helper(name, t); +static type_t *find_type_or_error(const char *name, int t) +{ + type_t *type = find_type(name, t); if (!type) { error_loc("type '%s' not found\n", name); return NULL; @@ -1933,23 +1933,23 @@ return type; }
-static type_t *find_type2(char *name, int t) -{ - type_t *tp = find_type(name, t); +static type_t *find_type_or_error2(char *name, int t) +{ + type_t *tp = find_type_or_error(name, t); free(name); return tp; }
int is_type(const char *name) { - return find_type_helper(name, 0) != NULL; + return find_type(name, 0) != NULL; }
static type_t *get_type(unsigned char type, char *name, int t) { type_t *tp; if (name) { - tp = find_type_helper(name, t); + tp = find_type(name, t); if (tp) { free(name); return tp; @@ -2705,7 +2705,7 @@ * function */ var_t *idl_handle = make_var(xstrdup("IDL_handle")); idl_handle->attrs = append_attr(NULL, make_attr(ATTR_IN)); - idl_handle->type = find_type("handle_t", 0); + idl_handle->type = find_type_or_error("handle_t", 0); if (!func->def->type->fields_or_args) { func->def->type->fields_or_args = xmalloc( sizeof(*func->def->type->fields_or_args) ); @@ -2860,7 +2860,7 @@ LIST_FOR_EACH_ENTRY_SAFE( decl, next, decls, declarator_t, entry ) { var_t *var = decl->var; - type_t *type = find_type(var->name, 0); + type_t *type = find_type_or_error(var->name, 0); *type_list = xmalloc(sizeof(type_list_t)); (*type_list)->type = type; (*type_list)->next = NULL;