]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/bundle/ale/ale_linters/verilog/iverilog.vim

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / ale_linters / verilog / iverilog.vim
diff --git a/.vim/bundle/ale/ale_linters/verilog/iverilog.vim b/.vim/bundle/ale/ale_linters/verilog/iverilog.vim
new file mode 100644 (file)
index 0000000..54d55d7
--- /dev/null
@@ -0,0 +1,44 @@
+" Author: Masahiro H https://github.com/mshr-h
+" Description: iverilog for verilog files
+
+call ale#Set('verilog_iverilog_options', '')
+
+function! ale_linters#verilog#iverilog#GetCommand(buffer) abort
+    return 'iverilog -t null -Wall '
+    \   . '-y%s:h '
+    \   . ale#Var(a:buffer, 'verilog_iverilog_options')
+    \   . ' %t'
+endfunction
+
+function! ale_linters#verilog#iverilog#Handle(buffer, lines) abort
+    " Look for lines like the following.
+    "
+    " tb_me_top.v:37: warning: Instantiating module me_top with dangling input port 1 (rst_n) floating.
+    " tb_me_top.v:17: syntax error
+    " memory_single_port.v:2: syntax error
+    " tb_me_top.v:17: error: Invalid module instantiation
+    let l:pattern = '^[^:]\+:\(\d\+\): \(warning\|error\|syntax error\)\(: \(.\+\)\)\?'
+    let l:output = []
+
+    for l:match in ale#util#GetMatches(a:lines, l:pattern)
+        let l:line = l:match[1] + 0
+        let l:type = l:match[2] =~# 'error' ? 'E' : 'W'
+        let l:text = l:match[2] is# 'syntax error' ? 'syntax error' : l:match[4]
+
+        call add(l:output, {
+        \   'lnum': l:line,
+        \   'text': l:text,
+        \   'type': l:type,
+        \})
+    endfor
+
+    return l:output
+endfunction
+
+call ale#linter#Define('verilog', {
+\   'name': 'iverilog',
+\   'output_stream': 'stderr',
+\   'executable': 'iverilog',
+\   'command': function('ale_linters#verilog#iverilog#GetCommand'),
+\   'callback': 'ale_linters#verilog#iverilog#Handle',
+\})