• 正文
    • 一、安裝verible
    • 二、配置emacs verilog-mode的compile工具選項(xiàng)
    • 三、emacs里進(jìn)行l(wèi)int檢查
    • 四、verible的lint規(guī)則
    • 五、配置其它lint
  • 相關(guān)推薦
申請入駐 產(chǎn)業(yè)圖譜

emacs中調(diào)用verible lint來檢查verilog語法

03/17 09:35
413
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點(diǎn)資訊討論

介紹emacs中調(diào)用verible lint來檢查verilog語法方法。

一、安裝verible

從?https://github.com/chipsalliance/verible/releases?下載提前編譯好的verible二進(jìn)制文件,解壓即可使用。

二進(jìn)制包包含以下這個(gè)小工具,加進(jìn)PATH環(huán)境變量里。這次我們主要關(guān)注verible-verilog-lint這個(gè)工具。

二、配置emacs verilog-mode的compile工具選項(xiàng)

~/.emacs里增加verilog-tool和verilog-linter的設(shè)置。

(custom-set-variables?'(verilog-tool 'verilog-linter)?'(verilog-linter "verible-verilog-lint --rules -no-tabs,-no-trailing-spaces,-explicit-parameter-storage-type"))

如果項(xiàng)目里有makefile或者M(jìn)akefile,則verilog-mode會(huì)優(yōu)先使用make。這時(shí)要么我們把lint script寫到makefile里,要么手改一下verilog-mode的代碼,如下把第4、5行,注釋起來,換成第6行,跳過makefile的檢測。

(defun verilog-set-compile-command () ?? (interactive) ?? (cond ??? ;;((or?(file-exists-p?"makefile");If there is a makefile,?use?it ??? ;; ? ? (file-exists-p?"Makefile")) ??? ? (nil ? ?? ? ? (set (make-local-variable?'compile-command) "make ")) ??? ? (t ? ?? ? ? (set (make-local-variable 'compile-command)?? ? ? ? (if?verilog-tool ? ? ? ? ? ??? ? ? ? ? (let ((cmd (symbol-value verilog-tool))) ? ? ? ? ? ? ??? ? ? ? ? ? (if?(string-match?"%s"?cmd) ? ? ? ? ? ? ? ? ?? ? ? ? ? ? ? (format?cmd (or?buffer-file-name?"")) ? ? ? ? ? ? ? ?? ? ? ? ? ? ? (concat cmd?" "?(or?buffer-file-name?""))))?"")))) ?? (verilog-modify-compile-command))

三、emacs里進(jìn)行l(wèi)int檢查

在emacs菜單->Verilog->Compile,或者M-x compile,emacs會(huì)自動(dòng)調(diào)出設(shè)置的lint工具和參數(shù),按<enter>即可對當(dāng)前verilog進(jìn)行Verilog檢查。如果有報(bào)錯(cuò),鼠標(biāo)點(diǎn)擊報(bào)錯(cuò),可以自動(dòng)跳轉(zhuǎn)到代碼對應(yīng)的地方。

四、verible的lint規(guī)則

我們可以在terminal里,用命令verible-verilog-lint --help_rules all查看一共有哪些rule。如果需要enable或disable rule可以在lint選項(xiàng)里設(shè)置,rule前面帶+表示enable,帶-表示disable。解釋一下上面設(shè)置的lint參數(shù),表示disable no-tabs、no-trailing-spaces、explicit-parameter-storage-type三條rule。

verible-verilog-lint?--rules?-no-tabs,-no-trailing-spaces,-explicit-parameter-storage-type

五、配置其它lint

理論上可以支持任何verilog編譯工具,如vcs、xrun等。有興趣的朋友可以嘗試一下。

相關(guān)推薦

登錄即可解鎖
  • 海量技術(shù)文章
  • 設(shè)計(jì)資源下載
  • 產(chǎn)業(yè)鏈客戶資源
  • 寫文章/發(fā)需求
立即登錄

公眾號ExASIC號主,從事數(shù)字IC設(shè)計(jì)10余年,主要分享日常工作中的經(jīng)驗(yàn)和技巧,分享讓工作更輕松。