-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrmc
executable file
·183 lines (162 loc) · 4.96 KB
/
rmc
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
#!/usr/bin/env perl
# Script to Run Mentor Graphics QuestaSim/ModelSim Commands(rmc - Run Mentor Command).
# Time-stamp: <2022-12-07 13:25:35>
use v5.12;
use File::Basename;
sub help {
my $script_name = basename($0);
say "Usage:";
say " $script_name [vlog] [vsim] [crpt] [chtml] [copen]";
say " [fname] [ucdb-fname]";
say " [-c|--coverage] [-o<fname>|-o=<fname>] [-h|--help]";
say "ARGS:";
say " <vlog>";
say " Run QuestaSim compilation.";
say " <vsim>";
say " Run QuestaSim simulation.";
say " <crpt>";
say " Show QuestaSim coverage database report.";
say " <chtml>";
say " Make QuestaSim coverage database html-report.";
say " <copen>";
say " Open QuestaSim coverage database.";
say " <fname>";
say " File to compilation.";
say " <ucdb-fname>";
say " Coverage database name (file: *.ucdb).";
say "OPTIONS:";
say " -c|--coverage";
say " Enable coverage";
say " (auto set for args: crpt, chtml, copen).";
say " -o<fname>|-o=<fname>";
say " Output coverage database (file: *.ucdb),";
say " for vsim only.";
exit;
}
{
do {help(); exit} if (@ARGV < 1 or @ARGV > 8);
my $src_fname = undef;
my $ucdb_fname = undef;
my $out_ucdb_fname = undef;
my $coverage = undef;
my $task = {
vlog => 0,
vsim => 0,
crpt => 0,
chtml => 0,
copen => 0,
};
while (@ARGV) {
$_ = shift;
if (/^([A-z0-9._\/-]+).s?v$/) {$src_fname = $_; next}
if (/^([A-z0-9._\/-]+).ucdb$/) {$ucdb_fname = $_; next}
if (/^vlog$/) {$task->{vlog} = 1; next}
if (/^vsim$/) {$task->{vsim} = 1; next}
if (/^crpt$/) {$task->{crpt} = 1; $coverage = 1; next}
if (/^chtml$/) {$task->{chtml} = 1; $coverage = 1; next}
if (/^copen$/) {$task->{copen} = 1; $coverage = 1; next}
if (/^-c|--coverage$/) {$coverage = 1; next}
if (/^-o[=]?([A-z0-9._\/-]+.ucdb)$/) {$out_ucdb_fname = $1; next}
if (/^(-h|--help)$/) {help(); exit}
do {say "ERROR! Unknown argument/option: $_"; help(); exit}
}
my $task_exist = 0;
foreach my $key (keys %{$task}) {
# print("$key => $task->{$key}\n");
if ($task->{$key}) {
$task_exist = 1;
last;
}
}
unless ($task_exist) {
print("ERROR! Undefined command!\n");
help();
exit;
}
if ($task->{vlog}) {
check_file($src_fname);
vlog($src_fname, $coverage);
}
if ($task->{vsim}) {
check_file($src_fname);
vsim($src_fname, $coverage, $out_ucdb_fname);
}
if ($task->{crpt}) {
$ucdb_fname = get_db_file() unless $ucdb_fname;
check_file($ucdb_fname);
cover_report($ucdb_fname);
}
if ($task->{chtml}) {
$ucdb_fname = get_db_file() unless $ucdb_fname;
check_file($ucdb_fname);
make_cover_html($ucdb_fname);
}
if ($task->{copen}) {
$ucdb_fname = get_db_file() unless $ucdb_fname;
check_file($ucdb_fname);
cover_open($ucdb_fname);
}
}
sub check_file {
my $fname = shift;
die "ERROR! Can't open file: $fname. $!\n" unless -e $fname;
}
sub get_db_file {
my $fname;
unless (-e $fname) {
my @files = glob("./*.ucdb");
if (@files == 0) {
die "Can't find coverage database (*.ucdb)!"
}
if (@files > 1) {
print("Error! Should have only one coverage database, or set path to it!\n");
die "Should set path to coverage database!"
}
$fname = $files[0];
}
return $fname;
}
sub run_cmd {
my $cmd = shift;
print("$cmd\n");
system($cmd);
}
sub vlog {
my ($fname, $coverage) = @_;
my $vlog_cover = "";
if ($coverage =~ 1) {
$vlog_cover=" +cover=f";
}
run_cmd("vlog -incr$vlog_cover -lint -sv +acc -timescale 1ns/1ps -quiet -mfcu $fname");
}
sub vsim {
my ($fname, $coverage, $db_fname) = @_;
my $vlog_cover = "";
my $cover_do_cmd = "";
(my $prj_name = $fname) =~ s/(\w+).sv/$1/;
if ($coverage =~ 1) {
$vlog_cover =" +cover=f";
# $vlog_cover="+cover=sbceftx";
$db_fname = "test.ucdb" unless $db_fname;
$cover_do_cmd = "coverage save $db_fname -onexit; ";
}
run_cmd("vsim${vlog_cover} -c $prj_name -do \"${cover_do_cmd}run -all; quit\"");
}
sub cover_open {
my ($db_name) = shift;
run_cmd("vsim -cvgperinstance -viewcov $db_name");
}
sub cover_report {
my ($db_name) = shift;
run_cmd("vcover report -details $db_name");
}
sub make_cover_html {
my ($db_name) = shift;
run_cmd("vcover report -details $db_name -html");
}
# 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: