summaryrefslogtreecommitdiff
path: root/ale_linters/verilog/yosys.vim
blob: 2965775595880cbee1065d70eba25fff67530040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
" Author: Nathan Sharp <nwsharp+eda@live.com>
" Description: Yosys for Verilog files

call ale#Set('verilog_yosys_executable', 'yosys')
call ale#Set('verilog_yosys_options', '-Q -T -p ''read_verilog %s''')

function! ale_linters#verilog#yosys#GetCommand(buffer) abort
    return '%e ' . ale#Var(a:buffer, 'verilog_yosys_options') . ' 2>&1'
endfunction

function! ale_linters#verilog#yosys#Handle(buffer, lines) abort
    let l:output = []
    let l:path = fnamemodify(bufname(a:buffer), ':p')

    for l:match in ale#util#GetMatches(a:lines, '^\([^:]\+\):\(\d\+\): \(WARNING\|ERROR\): \(.\+\)$')
        call add(l:output, {
        \   'lnum': str2nr(l:match[2]),
        \   'text': l:match[4],
        \   'type': l:match[3][0],
        \   'filename': l:match[1],
        \})
    endfor

    for l:match in ale#util#GetMatches(a:lines, '^\(Warning\|ERROR\): \(.\+\)$')
        call add(l:output, {
        \   'lnum': 1,
        \   'text': l:match[2],
        \   'type': l:match[1][0],
        \})
    endfor

    return l:output
endfunction

call ale#linter#Define('verilog', {
\   'name': 'yosys',
\   'output_stream': 'stdout',
\   'executable': {b -> ale#Var(b, 'verilog_yosys_executable')},
\   'command': function('ale_linters#verilog#yosys#GetCommand'),
\   'callback': 'ale_linters#verilog#yosys#Handle',
\   'lint_file': 1,
\})