blob: f54116152500058334f5128921a3b8e718c9cdbc (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# valgrind(1) completion -*- shell-script -*-
_valgrind()
{
local cur prev words cword split
_init_completion -s || return
local i
# Note: intentionally using COMP_WORDS and COMP_CWORD instead of
# words and cword here due to splitting on = causing index differences
# (_command_offset assumes the former).
for ((i = 1; i <= COMP_CWORD; i++)); do
if [[ ${COMP_WORDS[i]} != @([-=])* && ${COMP_WORDS[i - 1]} != = ]]; then
_command_offset $i
return
fi
done
local word tool
for word in "${words[@]:1}"; do
if [[ $word == --tool=?* ]]; then
tool=$word
break
fi
done
case $prev in
-h | --help | --help-debug | --version)
return
;;
--tool)
# Tools seem to be named e.g. like memcheck-amd64-linux from which
# we want to grab memcheck.
COMPREPLY=($(compgen -W '$(
for f in /usr{,/local}/lib{,64,exec}{/*-linux-gnu,}/valgrind/*
do
[[ $f != *.so && -x $f && $f =~ ^.*/(.*)-[^-]+-[^-]+ ]] &&
printf "%s\n" "${BASH_REMATCH[1]}"
done)' -- "$cur"))
return
;;
--sim-hints)
COMPREPLY=($(compgen -W 'lax-ioctls enable-outer' -- "$cur"))
return
;;
--soname-synonyms)
COMPREPLY=($(compgen -W 'somalloc' -S = -- "$cur"))
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
;;
--kernel-variant)
COMPREPLY=($(compgen -W 'bproc' -- "$cur"))
return
;;
# callgrind:
--callgrind-out-file)
_filedir
return
;;
# exp-dhat:
--sort-by)
COMPREPLY=($(compgen -W 'max-bytes-live tot-bytes-allocd
max-blocks-live' -- "$cur"))
return
;;
# massif:
--time-unit)
COMPREPLY=($(compgen -W 'i ms B' -- "$cur"))
return
;;
# generic cases parsed from --help output
--+([-A-Za-z0-9_]))
local value=$($1 --help-debug ${tool-} 2>/dev/null |
command sed -ne "s|^[[:blank:]]*$prev=\([^[:blank:]]\{1,\}\).*|\1|p")
case $value in
\<file*\>)
_filedir
return
;;
\<command\>)
compopt -o filenames
COMPREPLY=($(compgen -c -- "$cur"))
return
;;
\<+([0-9])..+([0-9])\>)
COMPREPLY=($(compgen -W "{${value:1:${#value}-2}}" \
-- "$cur"))
return
;;
# "yes", "yes|no", etc (but not "string", "STR",
# "hint1,hint2,...")
yes | +([-a-z0-9])\|+([-a-z0-9\|]))
COMPREPLY=($(IFS='|' compgen -W '$value' -- "$cur"))
return
;;
esac
;;
esac
$split && return
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_help "$1" "--help ${tool-}")' \
-- "$cur"))
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
} &&
complete -F _valgrind valgrind
# ex: filetype=sh
|