l1361494的个人空间 https://blog.eetop.cn/1119711 [收藏] [复制] [分享] [RSS]

空间首页 动态 记录 日志 相册 主题 分享 留言板 个人资料

日志

为何DC综合后网表文件包含assign语句,如何去除assign语句

热度 1已有 7122 次阅读| 2016-6-1 13:05

Question:问题:
I have a feedthrough in my circuit, and the netlist is showing an assign statement for this feedthrough.
我的电路设计中有端口直接连接,综合后网表中使用assign语句用于此连接。How can I remove the assign statement from the netlist?;我如何去除网表中的assign语句?Answer:回答:The two most common reasons for assign statements to appear in a gate-level netlist are两个最可能的原因会造成在门级网表中出现assign语句:(1) there are feedthroughs that connect multiple ports on a single net or一条网络上连接多个端口,或者(2) the netlist contains three-state elements网表中包括三态元素。Feedthrough Nets直接连接网络HDL Compiler creates assign statements in the design when two ports are connected without logic between them. If a feedthrough has an output port connected to an input port without any logic in between, it causes Design Compiler to add the assign statement in the netlist. Design Compiler is unable to represent such connections without using nonstructural artifacts such as the assign statement.当设计中两个端口之间没有逻辑直接相连时,HDL编译器会用assign语句。如果从输入端口到输出端口的连接中间没有逻辑,DC编译器会在网表中加入assign语句。不用assign语句,DC将不会表达这种连接。To fix this problem, you need to add logic to the design to correctly represent the otherwise unrepresentable connections. To fix the feedthrough in the design, use this command before compile:要修复此问题,你需要增加逻辑正确表达这种连接。要修复设计中端口直接连接,在编译前使用如下命令:set_fix_multiple_port_nets -all -buffer_constantsDesign Compiler will then insert logic into the design to prevent ports from being connected to the same net.DC编译器会插入逻辑以避免设计中多个端口连接到同一个网络。If the net has a dont_touch attribute on it, Design Compiler is not allowed to insert logic between the input and output port connections, and the assign statement will remain in your netlist.如果此网络具有dont_touch属性,DC编译器将不被允许在输入输出端口连接中间插入逻辑,assign语句还会存在于网表中。You can correct this situation in the following ways:你可以使用下面方法修复:1. Remove the dont_touch attribute.  去除dont_touch属性2. Manually insert a buffer on the net between the input and output ports to prevent the assign statement.  在输入端口和输出端口间手动插入一个buffer来避免assign语句。Three-State Elements三态元素To avoid getting assign statements with three-state elements, set the verilogout_no_tri variable to true before writing out the netlist. Also, check that verilogout_equation is set to false.要避免有三态元素引起的assign语句,在写出网表文件之前,设定verilogout_no_tri变量为true,且检查变量verilogout_equation设定为false。verilogout_no_tri = trueverilogout_equation = falseYou can read in your compiled .db file, set the verilogout variables, and then write out the netlist. (The verilogout_equation and verilogout_no_tri variables determine the Verilog output with the write -f verilog -hier -o command.) The verilogout_equation and verilogout_no_tri variables do notaffect the compile process.你可以读入你的编译后的.db文件,设定verilogout变量,然后写出网表文件。(变量verilogout_no_tri和verilogout_equation与命令write -f verilog -hier -o一起决定了verilog的输出。)变量verilogout_no_tri和verilogout_equation不影响编译过程。To see whether the settings help eliminate the assign statements, set the variables and then write the netlist. Here is a small example of the steps required to do this in dcsh mode:要看这些设定是否帮助消除了assign语句,可以设定这些变量然后写出网表。这里提供一个dcsh格式的例子。verilogout_equation = falseverilogout_no_tri = trueread -f db your_compiled_file.dblist verilogout_equationlist verilogout_no_triwrite -f verilog -hierarchy -o netlist.vwrite -f db -hierarchy -o netlist.db2010年12月6日补充:当使用上述方法去除assign后,写出的网表文件中还是包含assign语句。使用report_comile_options命令来报告每一个design的编译选项,发现只有top的具有fix_multiple_port_nets选项。而我编译时没有使用ungroup_all选项,分析应该是编译时只是对顶层design去除了assign语句,而其它层次的design中依然保留有assign语句。解决办法:编译时使用-ungroup_all选项compile -ungroup_all2010年12月17日补充:12月6日的补充有问题。用report_compile_options命令只会显示top设计有没有fix_multiple_port_nets选项。如果有此选项,表示其整个设计的hierarchy都会在编译时fix_multiple_port_nets。所以,assign出现的原因并不是有些sub-level design没有fix_multiple_port_nets属性造成的。我也查找排除了dont_touch属性而导致编译器不能去除assign语句。发现使用change_names -hier -rules verilog可以去除assign语句。分析应该是verilog命名规则中两个选项起的作用:equal_ports_nets: trueinout_ports_equal_nets: true

点赞

发表评论 评论 (1 个评论)

回复 qingtingsanmo 2021-4-25 15:03
最后分析是verilog命名规则的两项起到作用,是把这两项删掉就解决了吗?

facelist

您需要登录后才可以评论 登录 | 注册

  • 关注TA
  • 加好友
  • 联系TA
  • 0

    周排名
  • 0

    月排名
  • 0

    总排名
  • 0

    关注
  • 15

    粉丝
  • 0

    好友
  • 54

    获赞
  • 13

    评论
  • 1847

    访问数
关闭

站长推荐 上一条 /2 下一条

小黑屋| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-4-25 06:36 , Processed in 0.017214 second(s), 7 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
返回顶部