}
}
}
-
- // carry over typedefs from previous files, but allow them to be overridden
- // note that these type maps are currently never reclaimed
- if (user_type_stack.empty() || !user_type_stack.back()->empty())
- user_type_stack.push_back(new UserTypeMap());
}
struct VerilogFrontend : public Frontend {
// make package typedefs available to parser
add_package_types(pkg_user_types, design->verilog_packages);
+ UserTypeMap *global_types_map = new UserTypeMap();
+ for (auto def : design->verilog_globals) {
+ if (def->type == AST::AST_TYPEDEF) {
+ (*global_types_map)[def->str] = def;
+ }
+ }
+
+ log_assert(user_type_stack.empty());
+ // use previous global typedefs as bottom level of user type stack
+ user_type_stack.push_back(global_types_map);
+ // add a new empty type map to allow overriding existing global definitions
+ user_type_stack.push_back(new UserTypeMap());
+
frontend_verilog_yyset_lineno(1);
frontend_verilog_yyrestart(NULL);
frontend_verilog_yyparse();
if (!flag_nopp)
delete lexin;
+ // only the previous and new global type maps remain
+ log_assert(user_type_stack.size() == 2);
+ for (auto it : user_type_stack) {
+ // the global typedefs have to remain valid for future invocations, so just drop the map without deleting values
+ delete it;
+ }
+ user_type_stack.clear();
+
delete current_ast;
current_ast = NULL;