-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqp_report
executable file
·385 lines (339 loc) · 9.3 KB
/
qp_report
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#!/usr/bin/env bash
# Show Quartus Prime compilation report
# Time-stamp: <2022-07-07 09:19:44>
if [ "$1" = '-h' ] || [ "$1" = '--help' ] || [ "$1" = '-help' ]; then
echo "Usage:"
echo " ${BASH_SOURCE##*/} [revision-file-number]"
echo " [-w|--warnings] [-c|--critical] [-e|--errors]"
echo " [-s|--map|--syn] [-s|--sta] [-f|--fit]"
echo " [-n|--name]"
echo " [-ws|sw|wf|fw|wt|tw|cs|sc|cf|fc|ct|tc|es|se|ef|fe|et|te]"
echo
echo "ARGS:"
echo " <revision-file-number>"
echo " Quartus revision number."
echo
echo "OPTIONS:"
echo " -w, --warnings"
echo " Show warnings."
echo " -c, --critical"
echo " Show critical warnings."
echo " -e, --errors"
echo " Show errors."
echo " -s, --map, --syn"
echo " Analysis & Synthesis report."
echo " -t, --sta"
echo " Timequest Timing Analyzer report."
echo " -f, --fit"
echo " Fitting compilation report."
echo " -n, --name"
echo " Show report-file name."
exit 0
fi
REVISION=
WARNINGS=0
CRITICALS=0
ERRORS=0
SYN=0
STA=0
FIT=0
SHOW_FNAME=0
for i in "$@"
do
case $i in
[1-9])
REVISION="$i";;
-w|--warnings)
WARNINGS=1;;
-c|--critical)
CRITICALS=1;;
-e|--errors)
ERRORS=1;;
-s|--map|--syn)
SYN=1;;
-t|--sta)
STA=1;;
-f|--fit)
FIT=1;;
-n|--name)
SHOW_FNAME=1
;;
-ws|-sw)
WARNINGS=1
SYN=1;;
-wf|-fw)
WARNINGS=1
FIT=1;;
-wt|-tw)
WARNINGS=1
STA=1;;
-cs|-sc)
CRITICALS=1
SYN=1;;
-cf|-fc)
CRITICALS=1
FIT=1;;
-ct|-tc)
CRITICALS=1
STA=1;;
-es|-se)
ERRORS=1
SYN=1;;
-ef|-fe)
ERRORS=1
FIT=1;;
-et|-te)
ERRORS=1
STA=1;;
*)
echo "ERROR! Unknown options!"
exit 1;;
esac
done
RPT_FILE_NAME=""
REVISION_NAME="*"
# argument(s): $1 - report file number
select_file ()
{
cnt=1
for p in `ls "$OUTDIR"*.map.rpt "$OUTDIR"*.syn.rpt 2>/dev/null`; do
rpt_file[$cnt]=$p
cnt=`expr $cnt + 1`
done
num_rpt_file=0
if [ -z "$1" ]; then
# if directory do not have report file then the first element of the
# 'rpt_file' array is '*.map.rpt'; so should check that it is file
if [ -s "${rpt_file[1]}" ]; then
if [ ${#rpt_file[@]} -gt 1 ]; then
echo " report-files:"
for (( i=1; i<${#rpt_file[@]}+1; i++ )); do
echo "$i : ${rpt_file[${i}]}"
done
echo "Select revision:"
read -r num_rpt_file
fi
else
echo "ERROR! There must be at least one report-file!"
exit 2
fi
else
num_rpt_file="$1"
fi
if [ -s "${rpt_file[$num_rpt_file]}" ]; then
RPT_FILE_NAME=${rpt_file[$num_rpt_file]}
else
RPT_FILE_NAME=${rpt_file[1]}
if [ ${#rpt_file[@]} -gt 1 ]; then
echo "WARNING: will be open default revision(can't find selected file)"
fi
fi
# Get revision name:
# cut path from file name
RPT_FILE_NAME=${RPT_FILE_NAME##*/}
# cut suffix from file name
REVISION_NAME=${RPT_FILE_NAME%.*.*}
}
if [ "$(ls -A output_files 2>/dev/null)" ]; then
OUTDIR="./output_files/"
else
OUTDIR=""
fi
select_file "$REVISION"
FMASK="$OUTDIR$REVISION_NAME"
CMD_FLAGS=""
CMD=grep
if hash rg 2>/dev/null; then
CMD=rg
if [ "$SHOW_FNAME" -eq 1 ]; then
CMD_FLAGS="-Hn"
else
CMD_FLAGS="-IN"
fi
else # grep
if [ "$SHOW_FNAME" -eq 1 ]; then
CMD_FLAGS="-Hn"
else
CMD_FLAGS="-h"
fi
fi
# Typical Design Flow
# QPP/QPS:
# Analysis & Synthesis: quartus_map/quartus_syn
# Fitter: quartus_fit
# Timing Analyzer: quartus_sta
map_warnings() {
"$CMD" "$CMD_FLAGS" -e "^Warning" "$FMASK"*.map.rpt 2>/dev/null
}
map_critical() {
"$CMD" "$CMD_FLAGS" -e "^Critical Warning" "$FMASK"*.map.rpt 2>/dev/null
}
map_errors() {
"$CMD" "$CMD_FLAGS" -e "^Error" "$FMASK"*.map.rpt 2>/dev/null
}
syn_warnings() {
"$CMD" "$CMD_FLAGS" -e "^Warning" "$FMASK"*.syn.rpt 2>/dev/null
}
syn_critical() {
"$CMD" "$CMD_FLAGS" -e "^Critical Warning" "$FMASK"*.syn.rpt 2>/dev/null
}
syn_errors() {
"$CMD" "$CMD_FLAGS" -e "^Error" "$FMASK"*.syn.rpt 2>/dev/null
}
sta_warnings() {
"$CMD" "$CMD_FLAGS" -e "^Warning" "$FMASK"*.sta.rpt 2>/dev/null
}
sta_critical() {
"$CMD" "$CMD_FLAGS" -e "^Critical Warning" "$FMASK"*.sta.rpt 2>/dev/null
}
fit_warnings() {
"$CMD" "$CMD_FLAGS" -e "^Warning" "$FMASK"*.fit.rpt 2>/dev/null
}
fit_critical() {
"$CMD" "$CMD_FLAGS" -e "^Critical Warning" "$FMASK"*.fit.rpt 2>/dev/null
}
fit_errors() {
"$CMD" "$CMD_FLAGS" -e "^Error" "$FMASK"*.fit.rpt 2>/dev/null
}
# argument(s): $1 - message
warninig_msg() {
printf "%b%s%b\n" "\e[33m\e[1m" "$1" "\e[0m"
}
# argument(s): $1 - message
error_msg() {
printf "%b%s%b\n" "\e[31m\e[1m" "$1" "\e[0m"
}
# argument(s): $1 - message, $2 - enable
show_warning_msg() {
if [ "$2" -eq 0 ]; then
warninig_msg "$1"
fi
}
# argument(s): $1 - message, $2 - enable
show_error_msg() {
if [ "$2" -eq 0 ]; then
error_msg "$1"
fi
}
# for all reports(map/syn, sta, fit) should show only one additional message from this script
FLOW_RPT=0
if [ "$SYN" -eq 0 ] && [ "$STA" -eq 0 ] && [ "$FIT" -eq 0 ]; then
FLOW_RPT=1
ERR_MSG_EN=0
if [ "$WARNINGS" -eq 1 ] && [ "$CRITICALS" -eq 1 ] && [ "$ERRORS" -eq 1 ]; then
msg="Quartus report:"
else
if [ "$WARNINGS" -eq 1 ]; then
msg="Quartus report(warnings):"
if [ "$CRITICALS" -eq 1 ]; then
msg="Quartus report(warnings, critical):"
elif [ "$ERRORS" -eq 1 ]; then
msg="Quartus report(warnings, errors):"
ERR_MSG_EN=1
fi
elif [ "$CRITICALS" -eq 1 ]; then
msg="Quartus report(critical):"
if [ "$ERRORS" -eq 1 ]; then
msg="Quartus report(critical, errors):"
ERR_MSG_EN=1
fi
elif [ "$ERRORS" -eq 1 ]; then
msg="Quartus report(errors):"
ERR_MSG_EN=1
fi
fi
if [ "$ERR_MSG_EN" -eq 1 ]; then
error_msg "$msg"
else
warninig_msg "$msg"
fi
fi
if [ "$SYN" -eq 1 ] || [ "$FLOW_RPT" -eq 1 ]; then
if [ "$WARNINGS" -eq 1 ]; then
show_warning_msg "Quartus Analysis and Syntheses Warning report:" "$FLOW_RPT"
map_warnings
syn_warnings
fi
if [ "$CRITICALS" -eq 1 ]; then
show_warning_msg "Quartus Analysis and Syntheses Critical Warning report:" "$FLOW_RPT"
map_critical
syn_critical
fi
if [ "$ERRORS" -eq 1 ]; then
show_error_msg "Quartus Analysis and Syntheses Error report:" "$FLOW_RPT"
map_errors
syn_errors
fi
if [ "$WARNINGS" -eq 0 ] && [ "$CRITICALS" -eq 0 ] && [ "$ERRORS" -eq 0 ]; then
show_warning_msg "Quartus Analysis and Syntheses report:" "$FLOW_RPT"
map_warnings
map_critical
map_errors
syn_warnings
syn_critical
syn_errors
fi
fi
if [ "$STA" -eq 1 ] || [ "$FLOW_RPT" -eq 1 ]; then
if [ "$WARNINGS" -eq 1 ]; then
show_warning_msg "TimeQuest Timing Analyzer warning report:" "$FLOW_RPT"
sta_warnings
fi
if [ "$CRITICALS" -eq 1 ]; then
show_warning_msg "TimeQuest Timing Analyzer critical warning report:" "$FLOW_RPT"
sta_critical
fi
if [ "$WARNINGS" -eq 0 ] && [ "$CRITICALS" -eq 0 ] && [ "$ERRORS" -eq 0 ]; then
show_warning_msg "TimeQuest Timing Analyzer report:" "$FLOW_RPT"
sta_warnings
sta_critical
fi
fi
if [ "$FIT" -eq 1 ] || [ "$FLOW_RPT" -eq 1 ]; then
if [ "$WARNINGS" -eq 1 ]; then
show_warning_msg "Quartus Fitter Warning report:" "$FLOW_RPT"
fit_warnings
fi
if [ "$CRITICALS" -eq 1 ]; then
show_warning_msg "Quartus Fitter Critical Warning report:" "$FLOW_RPT"
fit_critical
fi
if [ "$ERRORS" -eq 1 ]; then
show_error_msg "Quartus Fitter Error report:" "$FLOW_RPT"
fit_errors
fi
if [ "$WARNINGS" -eq 0 ] && [ "$CRITICALS" -eq 0 ] && [ "$ERRORS" -eq 0 ]; then
show_warning_msg "Quartus Fitter report:" "$FLOW_RPT"
map_warnings
map_critical
map_errors
fi
fi
# if [ "$SYN" -eq 1 ]; then
# echo "SYN"
# fi
# if [ "$STA" -eq 1 ]; then
# echo "STA"
# fi
# if [ "$FIT" -eq 1 ]; then
# echo "FIT"
# fi
# if [ "$WARNINGS" -eq 1 ]; then
# echo "WARNINGS"
# fi
# if [ "$CRITICALS" -eq 1 ]; then
# echo "CRITICALS"
# fi
# if [ "$ERRORS" -eq 1 ]; then
# echo "ERRORS"
# fi
# if [ "$FLOW_RPT" -eq 1 ]; then
# echo "FLOW_RPT"
# fi
# echo "CMD_FLAGS: $CMD_FLAGS"
# This is for the sake of Emacs.
# Local Variables:
# time-stamp-end: "$"
# time-stamp-format: "<%:y-%02m-%02d %02H:%02M:%02S>"
# time-stamp-start: "Time-stamp: "
# End: