hdl_generate_separator
时间: 2023-07-14 19:56:51 浏览: 123
在Synopsys的综合工具Genus中,`hdl_generate_separator`命令用于设置生成门级网表时的名称分隔符。名称分隔符是指在门级网表中用于分隔层次结构的不同层级之间的符号或字符。在不同的设计中,使用的名称分隔符可能不同。例如,常见的名称分隔符包括“/”、“.”、“_”等。
`hdl_generate_separator`命令可以设置以下参数:
- `slash`:使用“/”作为名称分隔符;
- `dot`:使用“.”作为名称分隔符;
- `underscore`:使用“_”作为名称分隔符;
- `custom`:使用自定义的符号作为名称分隔符。
在设置了名称分隔符后,Genus在生成门级网表时会自动使用该符号来分隔不同层级的模块名称和信号名称,从而在门级网表中建立正确的层次结构关系。这样可以更好地管理和调试门级网表,提高综合效率和优化布局。
相关问题
请说明如下数字设计综合工具的执行脚本里每个命令的作用:“source -verbose "../const/design_info.tcl" set_attribute information_level 9 set_attribute hdl_track_filename_row_col true set_attribute hdl_generate_index_style %s_%d set_attribute hdl_generate_separator _ set_attribute hdl_search_path $SEARCH_PATH set_attribute library $LIB_LIST_MAX read_hdl -sv $RTL_LIST -define LEAF_BHV set_attr blackbox true [find / -hdl_arch clock_tree_model*] elaborate $DESIGN_TOP # Verilog Style set_attribute write_vlog_bit_blast_constants true set_attribute write_vlog_unconnected_port_style none ;#(none/partial/full) set_attribute hdl_undriven_output_port_value none set_attribute hdl_unconnected_input_port_value x set_attribute hdl_allow_inout_const_port_connect false syn_gen -effort high change_names -regexp -allowed "a-zA-Z0-9_" -subdesign -max_length 20 change_names -regexp -allowed "a-zA-Z0-9_" -instance change_names -regexp -allowed "a-z0-9_" -net write_hdl -equation > $GNR_NETLIST”
这段数字设计综合工具的执行脚本包含了多个命令,每个命令的作用如下:
1. `source -verbose "../const/design_info.tcl"`:引入常量文件 `design_info.tcl`。
2. `set_attribute information_level 9`:设置综合信息输出级别为 9。
3. `set_attribute hdl_track_filename_row_col true`:在门级网表中添加源代码文件名、行号和列号等信息。
4. `set_attribute hdl_generate_index_style %s_%d`:设置门级网表的索引样式为 `%s_%d`,其中 `%s` 表示模块或信号的名称,`%d` 表示该模块或信号在其父模块中的序号。
5. `set_attribute hdl_generate_separator _`:设置门级网表中模块和信号之间的分隔符为下划线。
6. `set_attribute hdl_search_path $SEARCH_PATH`:设置综合工具的搜索路径为 `$SEARCH_PATH`,其中 `$SEARCH_PATH` 是常量文件中定义的路径。
7. `set_attribute library $LIB_LIST_MAX`:将当前设计的综合库设置为工程中定义的最大库列表。
8. `read_hdl -sv $RTL_LIST -define LEAF_BHV`:读取 Verilog/SystemVerilog 文件,其中 `$RTL_LIST` 是常量文件中定义的文件列表,`-define LEAF_BHV` 表示定义了宏 `LEAF_BHV`。
9. `set_attr blackbox true [find / -hdl_arch clock_tree_model*]`:将时钟树模型标记为黑盒。
10. `elaborate $DESIGN_TOP`:对顶层模块进行综合。
11. `set_attribute write_vlog_bit_blast_constants true`:在 Verilog 输出文件中写入常量的位表示。
12. `set_attribute write_vlog_unconnected_port_style none ;#(none/partial/full)`:在 Verilog 输出文件中处理未连接的端口,`none` 表示不处理。
13. `set_attribute hdl_undriven_output_port_value none`:定义未驱动输出端口的默认值为 `none`。
14. `set_attribute hdl_unconnected_input_port_value x`:定义未连接输入端口的默认值为 `x`。
15. `set_attribute hdl_allow_inout_const_port_connect false`:禁止连接 inout 类型端口和常量端口。
16. `syn_gen -effort high`:进行综合,`-effort high` 表示使用高效的综合策略。
17. `change_names -regexp -allowed "a-zA-Z0-9_" -subdesign -max_length 20`:对子模块的名称进行修改,将不符合规范的字符替换为下划线,最大长度为 20 个字符。
18. `change_names -regexp -allowed "a-zA-Z0-9_" -instance`:对实例的名称进行修改,将不符合规范的字符替换为下划线。
19. `change_names -regexp -allowed "a-z0-9_" -net`:对信号的名称进行修改,将不符合规范的字符替换为下划线。
20. `write_hdl -equation > $GNR_NETLIST`:将门级网表输出到 `$GNR_NETLIST` 文件中。
hdl_generate_index_style %s_%d
`hdl_generate_index_style %s_%d` 并不是一个完整的命令,它缺少了前面的命令名称。但是从命令的格式来看,它是用于设置门级网表的索引样式的命令之一,其中 `%s` 表示字符串占位符,`%d` 表示整数占位符。
具体来说,`%s_%d` 表示使用字符串和整数的组合作为门级网表中模块和信号的名称,其中 `%s` 表示模块或信号的名称,`%d` 表示该模块或信号在其父模块中的序号。例如,如果存在一个名为 `module_top` 的模块,其中包含两个子模块 `module_1` 和 `module_2`,则可以使用 `hdl_generate_index_style %s_%d` 命令设置模块和信号的名称为 `module_top_module_1`、`module_top_module_2` 等。
通过设置不同的索引样式,可以优化门级网表的性能和面积。例如,使用 `%s_%d` 格式的名称可以在门级网表中建立正确的层次结构关系,从而提高综合效率和优化布局。同时,该格式还可以避免名称冲突,使设计更加清晰和易于管理。
阅读全文