emacs verilog-mode方式实现verilog实例化集成

2024-06-16 08:48

本文主要是介绍emacs verilog-mode方式实现verilog实例化集成,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 背景介绍
  • AUTOINST和AUTOWIRE的应用
  • 推荐使用方法
  • auto_template命令总结
    • [],中括号,里面没内容。表示auto_inst时,会显示[3:0]类似内容
    • @,常用于相同module,多次实例化情况。我不常用。这里仅是提一下有这种功能。下面第一段,表示auto_template有一个可选变量,支持正则表达式;如果没有正则表达,@符号就会默认匹配实例化名称里的 **数字字符串** 【可以理解为是第一个 **[0-9]+** 正则表达式字符串】。另外,下面instname表示的是module名称,而非实例化名称,应该是原文手误。
    • Regexp Templates。auto_template里的正则表达式,可以定制化例化的连接信号名称。
    • Lisp Templates。因为是emacs,脚本叫Lisp语言。其实就是有一套成熟脚本,方便实现auto_template里的常见功能。
    • Ignoring Hookup。即忽略自动化连线名称。不想使用autowire或者auto_template等自动连线方式。
  • 教程里的简单操作,也贴一下

背景介绍

emacs默认自带verilog-mode插件,不仅仅支持语法高亮、代码段自动补全等功能,核心应用还有/*AUTOXXX*/
IC顶层集成,最常见的工作就是实例化和端口线网的连接。可以利用/*AUTOINST*//*AUTOWIRE*/节省很多工作量,减少出错可能性。

AUTOINST和AUTOWIRE的应用

下面是示例。用到的技巧包括:

  1. ctrl+c ctrl+a是把/*AUTOINST*/等关键词展开;得到实例化等代码段。连续操作,可以更新。
  2. ctrl+c ctrl+k是把/*AUTOINST*/等关键词收起;
  3. AUTOWIRE,是把output变量进行wire类型声明。理论上verilog,只需要对output设置wire类型定义即可,输入必然来自某一个输出信号。
  4. AUTOINST,默认的线网连接名称与端口名称相同;如对此有要求,可以利用AUTO_TEMPLATE。
  5. 实例化代码和设计代码可以不放在一个文件里,利用verilog-library-files变量设置。
  6. 另外就是tab缩进和指定列,输出autoinst内容。后面有图形,利用几个变量设置。
  7. 下图有几个emac --batch命令,是为了不打开emac编辑器,脚本操作autoinst等命令的。

推荐使用方法

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

auto_template命令总结

参考官网:https://www.veripool.org/verilog-mode/help/#verilog-auto-inst

[],中括号,里面没内容。表示auto_inst时,会显示[3:0]类似内容

For example:/* InstModule AUTO_TEMPLATE (.ptl_bus        (ptl_busnew[]),);*/InstModule ms2m (/*AUTOINST*/);Typing M-x verilog-auto will make this into:InstModule ms2m (/*AUTOINST*/// Outputs.NotInTemplate      (NotInTemplate),.ptl_bus            (ptl_busnew[3:0]),....

@,常用于相同module,多次实例化情况。我不常用。这里仅是提一下有这种功能。下面第一段,表示auto_template有一个可选变量,支持正则表达式;如果没有正则表达,@符号就会默认匹配实例化名称里的 数字字符串 【可以理解为是第一个 [0-9]+ 正则表达式字符串】。另外,下面instname表示的是module名称,而非实例化名称,应该是原文手误。

  • 下面这段sig2里。注释:第1个@"xxx"表示把xxx当做lisp脚本命令执行,第2个@表示实例化名字里匹配到的第一组数字字符串。
/* InstName AUTO_TEMPLATE <optional "REGEXP"> (.sig1   (sigx[@]),.sig2   (sigy[@"(% (+ 1 @) 4)"]),);*/
For example:/* InstModule AUTO_TEMPLATE (.ptl_mapvalidx          (ptl_mapvalid[@]),.ptl_mapvalidp1x        (ptl_mapvalid[@"(% (+ 1 @) 4)"]), );*/InstModule ms2m (/*AUTOINST*/);Typing M-x verilog-auto will make this into:InstModule ms2m (/*AUTOINST*/// Outputs.ptl_mapvalidx              (ptl_mapvalid[2]),.ptl_mapvalidp1x            (ptl_mapvalid[3]));
Note the @ character was replaced with the 2 from "ms2m".Alternatively, using a regular expression for @:/* InstModule AUTO_TEMPLATE "_\([a-z]+\)" (.ptl_mapvalidx          (@_ptl_mapvalid),.ptl_mapvalidp1x        (ptl_mapvalid_@),);*/InstModule ms2_FOO (/*AUTOINST*/);InstModule ms2_BAR (/*AUTOINST*/);Typing M-x verilog-auto will make this into:InstModule ms2_FOO (/*AUTOINST*/// Outputs.ptl_mapvalidx              (FOO_ptl_mapvalid),.ptl_mapvalidp1x            (ptl_mapvalid_FOO));InstModule ms2_BAR (/*AUTOINST*/// Outputs.ptl_mapvalidx              (BAR_ptl_mapvalid),.ptl_mapvalidp1x            (ptl_mapvalid_BAR));

Regexp Templates。auto_template里的正则表达式,可以定制化例化的连接信号名称。

  • 下面一段举例不太好看,pci_reqxx_l,注意后缀是下划线L,不是下划线数字1
  • \1,和\\(xxxxx\\),配合在一起,表示匹配一个正则表达式组1。方便把匹配到的内容,复制到例化信号线名称定义里。
Regexp Templates:A template entry of the form.pci_req\([0-9]+\)_l      (pci_req_jtag_[\1]),
will apply an Emacs style regular expression search for any port beginning in pci_req followed by numbers and ending in _l and connecting that to the pci_req_jtag_[] net, with the bus subscript coming from what matches inside the first set of \( \). Thus pci_req2_l becomes pci_req_jtag_[2].
Since \([0-9]+\) is so common and ugly to read, a @ in the port name does the same thing. (Note a @ in the connection/replacement text is completely different -- still use \1 there!) Thus this is the same as the above template:.pci_req@_l         (pci_req_jtag_[\1]),
Here's another example to remove the _l, useful when naming conventions specify _ alone to mean active low. Note the use of [] to keep the bus subscript:.\(.*\)_l         (\1_[]),

Lisp Templates。因为是emacs,脚本叫Lisp语言。其实就是有一套成熟脚本,方便实现auto_template里的常见功能。

  • 如果在连接线中找到语法 @“(…)”,则引号中的表达式将被计算为Lisp表达式,其中@将被实例化编号替换 。上面的MAPVALIDP1X示例将@+1模4放入括号中。用前导反斜杠(\“…\”)引用表达式中的所有双引号;或者,如果Lisp模板也是regexp模板,则反斜杠引号(\\“…\\”)
        vl-name        Name portion of the input/output port.端口名称vl-bits        Bus bits portion of the input/output port (`[2:0]').一位数组vl-mbits       Multidimensional array bits for port (`[2:0][3:0]').二维数组vl-width       Width of the input/output port (`3' for [2:0]).端口信号的位宽May be a (...) expression if bits isn't a constant.vl-dir         Direction of the pin input/output/inout/interface.端口的方向vl-memory      The unpacked array part of the I/O port (`[5:0]').vl-modport     The modport, if an interface with a modport.vl-cell-type   Module name/type of the cell (`InstModule').module模块名称vl-cell-name   Instance name of the cell (`instName').inst实例化名称

Ignoring Hookup。即忽略自动化连线名称。不想使用autowire或者auto_template等自动连线方式。

  • 没实践过。感觉还是把不期望自动化的连线信号,写在/*autoinst*/之前,更简单直观,而且容易debug。
.pci_req_l  (pci_req_not_to_wire),  //AUTONOHOOKUP

教程里的简单操作,也贴一下

下面有两段代码,第一段代码,按键ctrl+c ctrl+a之后,会自动生成第二段代码。
==================================
module noc(output        z1,output        z2,output [31:0] z3,input         a1,input         a2,input [31:0]  a3);
endmodule
module noc1(output        z1,output        z2,output [31:0] z3,output        a1,output        a2,output [31:0] a3);
endmodule
module a;/*AUTOWIRE*/noc u_noc(/*AUTOINST*/);
endmodule
module a;/*AUTOWIRE*/noc1 u_noc1(/*AUTOINST*/);
endmodule
module a;/*AUTOWIRE*//* noc AUTO_TEMPLATE(.z1 (output1),.z2 (output2),.z3 (output3),.a3 (input3),);*/noc u_noc(/*AUTOINST*/);
endmodule===========================================================
module noc(output        z1,output        z2,output [31:0] z3,input         a1,input         a2,input [31:0]  a3);
endmodule
module noc1(output        z1,output        z2,output [31:0] z3,output        a1,output        a2,output [31:0] a3);
endmodule
module a;/*AUTOWIRE*/// Beginning of automatic wires (for undeclared instantiated-module outputs)wire                 output1;                // From u_noc of noc.vwire                 output2;                // From u_noc of noc.vwire                 output3;                // From u_noc of noc.v// End of automaticsnoc u_noc(/*AUTOINST*/// Outputs.z1                        (output1),               // Templated.z2                        (output2),               // Templated.z3                        (output3),               // Templated// Inputs.a1                        (a1),.a2                        (a2),.a3                        (input3));                // Templated
endmodule
module a;/*AUTOWIRE*/// Beginning of automatic wires (for undeclared instantiated-module outputs)wire                 a1;                     // From u_noc1 of noc1.vwire                 a2;                     // From u_noc1 of noc1.vwire [31:0]          a3;                     // From u_noc1 of noc1.vwire                 z1;                     // From u_noc1 of noc1.vwire                 z2;                     // From u_noc1 of noc1.vwire [31:0]          z3;                     // From u_noc1 of noc1.v// End of automaticsnoc1 u_noc1(/*AUTOINST*/// Outputs.z1                      (z1),.z2                      (z2),.z3                      (z3[31:0]),.a1                      (a1),.a2                      (a2),.a3                      (a3[31:0]));
endmodule
module a;/*AUTOWIRE*/// Beginning of automatic wires (for undeclared instantiated-module outputs)wire                 output1;                // From u_noc of noc.vwire                 output2;                // From u_noc of noc.vwire                 output3;                // From u_noc of noc.v// End of automatics/* noc AUTO_TEMPLATE(.z1 (output1),.z2 (output2),.z3 (output3),.a3 (input3),);*/noc u_noc(/*AUTOINST*/// Outputs.z1                        (output1),               // Templated.z2                        (output2),               // Templated.z3                        (output3),               // Templated// Inputs.a1                        (a1),.a2                        (a2),.a3                        (input3));                // Templated
endmodule

这篇关于emacs verilog-mode方式实现verilog实例化集成的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1065994

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M