forked from github/verilator
Tests: use standard lower case for Perl vm_prefix
This commit is contained in:
parent
191c71edea
commit
a93b344096
@ -676,12 +676,12 @@ sub new {
|
||||
|
||||
$self->{vlt_all} = $self->{vlt} || $self->{vltmt}; # Any Verilator scenario
|
||||
|
||||
$self->{VM_PREFIX} ||= "V" . $self->{name};
|
||||
$self->{vm_prefix} ||= "V" . $self->{name};
|
||||
$self->{stats} ||= "$self->{obj_dir}/V" . $self->{name} . "__stats.txt";
|
||||
$self->{status_filename} ||= "$self->{obj_dir}/V" . $self->{name} . ".status";
|
||||
$self->{run_log_filename} ||= "$self->{obj_dir}/vlt_sim.log";
|
||||
$self->{coverage_filename} ||= "$self->{obj_dir}/coverage.dat";
|
||||
$self->{main_filename} ||= "$self->{obj_dir}/$self->{VM_PREFIX}__main.cpp";
|
||||
$self->{main_filename} ||= "$self->{obj_dir}/$self->{vm_prefix}__main.cpp";
|
||||
($self->{top_filename} ||= $self->{pl_filename}) =~ s/\.pl$//;
|
||||
($self->{golden_filename} ||= $self->{pl_filename}) =~ s/\.pl$/.out/;
|
||||
if (-e ($self->{top_filename} . ".vhd")) { # If VHDL file exists
|
||||
@ -693,7 +693,7 @@ sub new {
|
||||
if (!$self->{make_top_shell}) {
|
||||
$self->{top_shell_filename} = $self->{top_filename};
|
||||
} else {
|
||||
$self->{top_shell_filename} = "$self->{obj_dir}/$self->{VM_PREFIX}__top.v";
|
||||
$self->{top_shell_filename} = "$self->{obj_dir}/$self->{vm_prefix}__top.v";
|
||||
}
|
||||
$self->{pli_filename} ||= $self->{name} . ".cpp";
|
||||
|
||||
@ -926,7 +926,7 @@ sub compile_vlt_flags {
|
||||
$param{make_main} && $param{verilator_make_gmake};
|
||||
|
||||
my @cmdargs = (
|
||||
"--prefix " . $param{VM_PREFIX},
|
||||
"--prefix " . $param{vm_prefix},
|
||||
@verilator_flags,
|
||||
@{$param{verilator_flags2}},
|
||||
@{$param{verilator_flags3}},
|
||||
@ -983,7 +983,7 @@ sub compile {
|
||||
= $self->{top_shell_filename} = "";
|
||||
} else {
|
||||
$param{top_shell_filename}
|
||||
= $self->{top_shell_filename} = "$self->{obj_dir}/$self->{VM_PREFIX}__top." . $self->v_suffix;
|
||||
= $self->{top_shell_filename} = "$self->{obj_dir}/$self->{vm_prefix}__top." . $self->v_suffix;
|
||||
}
|
||||
|
||||
if ($param{atsim}) {
|
||||
@ -1174,13 +1174,13 @@ sub compile {
|
||||
"-C " . $self->{obj_dir},
|
||||
"-f " . $FindBin::RealBin . "/Makefile_obj",
|
||||
($self->{verbose} ? "" : "--no-print-directory"),
|
||||
"VM_PREFIX=$self->{VM_PREFIX}",
|
||||
"VM_PREFIX=$self->{vm_prefix}",
|
||||
"TEST_OBJ_DIR=$self->{obj_dir}",
|
||||
"CPPFLAGS_DRIVER=-D" . uc($self->{name}),
|
||||
($self->{verbose} ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1" : ""),
|
||||
($param{benchmark} ? "" : "OPT_FAST=-O0"),
|
||||
($param{benchmark} ? "" : "OPT_GLOBAL=-O0"),
|
||||
"$self->{VM_PREFIX}", # bypass default rule, as we don't need archive
|
||||
"$self->{vm_prefix}", # bypass default rule, as we don't need archive
|
||||
($param{make_flags} || ""),
|
||||
]);
|
||||
}
|
||||
@ -1327,7 +1327,7 @@ sub execute {
|
||||
elsif ($param{vlt_all}
|
||||
#&& (!$param{needs_v4} || -r "$ENV{VERILATOR_ROOT}/src/V3Gate.cpp")
|
||||
) {
|
||||
$param{executable} ||= "$self->{obj_dir}/$param{VM_PREFIX}";
|
||||
$param{executable} ||= "$self->{obj_dir}/$param{vm_prefix}";
|
||||
my $debugger = "";
|
||||
if ($opt_gdbsim) {
|
||||
$debugger = ($ENV{VERILATOR_GDB} || "gdb") . " ";
|
||||
@ -1549,10 +1549,10 @@ sub wno_unopthreads_for_few_cores {
|
||||
return "";
|
||||
}
|
||||
|
||||
sub VM_PREFIX {
|
||||
sub vm_prefix {
|
||||
my $self = (ref $_[0] ? shift : $Self);
|
||||
$self->{VM_PREFIX} = shift if defined $_[0];
|
||||
return $self->{VM_PREFIX};
|
||||
$self->{vm_prefix} = shift if defined $_[0];
|
||||
return $self->{vm_prefix};
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
@ -1760,8 +1760,8 @@ sub _make_main {
|
||||
print $fh "#include \"verilatedos.h\"\n";
|
||||
|
||||
print $fh "// Generated header\n";
|
||||
my $VM_PREFIX = $self->{VM_PREFIX};
|
||||
print $fh "#include \"$VM_PREFIX.h\"\n";
|
||||
my $vm_prefix = $self->{vm_prefix};
|
||||
print $fh "#include \"${vm_prefix}.h\"\n";
|
||||
|
||||
print $fh "// General headers\n";
|
||||
print $fh "#include \"verilated.h\"\n";
|
||||
@ -1772,7 +1772,7 @@ sub _make_main {
|
||||
print $fh "#include \"verilated_vcd_sc.h\"\n" if $self->{trace} && $self->{trace_format} eq 'vcd-sc';
|
||||
print $fh "#include \"verilated_save.h\"\n" if $self->{savable};
|
||||
|
||||
print $fh "std::unique_ptr<$VM_PREFIX> topp;\n";
|
||||
print $fh "std::unique_ptr<${vm_prefix}> topp;\n";
|
||||
|
||||
if ($self->{savable}) {
|
||||
$fh->print("\n");
|
||||
@ -1813,7 +1813,7 @@ sub _make_main {
|
||||
print $fh " srand48(5);\n"; # Ensure determinism
|
||||
print $fh " contextp->randReset(" . $self->{verilated_randReset} . ");\n"
|
||||
if defined $self->{verilated_randReset};
|
||||
print $fh " topp.reset(new $VM_PREFIX(\"top\"));\n";
|
||||
print $fh " topp.reset(new ${vm_prefix}(\"top\"));\n";
|
||||
print $fh " contextp->internalsDump()\n;" if $self->{verilated_debug};
|
||||
|
||||
my $set;
|
||||
|
@ -19,7 +19,7 @@ file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0);
|
||||
# Here we should see some dly vars since reorder is disabled.
|
||||
# (Whereas our twin test, t_alw_reorder, should see no dly vars
|
||||
# since it enables the reorder step.)
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root*.cpp");
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root*.cpp");
|
||||
file_grep_any(\@files, qr/dly__t__DOT__v1/i);
|
||||
file_grep_any(\@files, qr/dly__t__DOT__v2/i);
|
||||
|
||||
|
@ -19,8 +19,8 @@ file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0);
|
||||
# Equally important: twin test t_alw_noreorder should see dly vars,
|
||||
# is identical to this test except for disabling the reorder step.
|
||||
foreach my $file (
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")
|
||||
) {
|
||||
file_grep_not($file, qr/dly__t__DOT__v1/i);
|
||||
file_grep_not($file, qr/dly__t__DOT__v2/i);
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{vlt_all}) {
|
||||
my $has_xthis = 0;
|
||||
my $has_thisx = 0;
|
||||
my $has_xthisx = 0;
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root__DepSet_*__0.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root__DepSet_*__0.cpp")) {
|
||||
my $text = file_contents($file);
|
||||
$has_this = 1 if ($text =~ m/\bthis->clk\b/);
|
||||
$has_xthis = 1 if ($text =~ m/\bxthis\b/);
|
||||
|
@ -27,7 +27,7 @@ else {
|
||||
make_flags => "ccache-report"
|
||||
);
|
||||
|
||||
my $report = "$Self->{obj_dir}/$Self->{VM_PREFIX}__ccache_report.txt";
|
||||
my $report = "$Self->{obj_dir}/$Self->{vm_prefix}__ccache_report.txt";
|
||||
|
||||
# We do not actually want to make this test depend on whether the file was
|
||||
# cached or not, so trim the report to ignore actual caching behaviour
|
||||
@ -38,8 +38,8 @@ else {
|
||||
run(
|
||||
logfile => "$Self->{obj_dir}/rebuild.log",
|
||||
cmd => ["make", "-C", $Self->{obj_dir},
|
||||
"-f", "$Self->{VM_PREFIX}.mk",
|
||||
$Self->{VM_PREFIX}, "ccache-report"]
|
||||
"-f", "$Self->{vm_prefix}.mk",
|
||||
$Self->{vm_prefix}, "ccache-report"]
|
||||
);
|
||||
|
||||
files_identical($report, "t/$Self->{name}__ccache_report_rebuild.out");
|
||||
|
@ -16,7 +16,7 @@ lint(
|
||||
v_flags => ["--lint-only --dumpi-tree 9 --dumpi-V3EmitV 9 --debug-emitv"],
|
||||
);
|
||||
|
||||
files_identical(glob_one("$Self->{obj_dir}/$Self->{VM_PREFIX}_*_width.tree.v"), $Self->{golden_filename});
|
||||
files_identical(glob_one("$Self->{obj_dir}/$Self->{vm_prefix}_*_width.tree.v"), $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -19,7 +19,7 @@ execute(
|
||||
expect_filename => $Self->{golden_filename},
|
||||
);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}__stats.txt",
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}__stats.txt",
|
||||
qr/Node count, DISPLAY \s+ 44 \s+ 27 \s+ 27 \s+ 6/);
|
||||
|
||||
ok(1);
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
|
@ -19,7 +19,7 @@ mkdir $child_dir;
|
||||
# Compile the child
|
||||
{
|
||||
my @cmdargs = $Self->compile_vlt_cmd
|
||||
(VM_PREFIX => "$Self->{VM_PREFIX}_child",
|
||||
(vm_prefix => "$Self->{vm_prefix}_child",
|
||||
top_filename => "$Self->{name}_child.v",
|
||||
verilator_flags => ["-cc", "-Mdir", "${child_dir}", "--debug-check"],
|
||||
# Can't use multi threading (like hier blocks), but needs to be thread safe
|
||||
@ -34,7 +34,7 @@ mkdir $child_dir;
|
||||
$ENV{MAKE}, "-f" . getcwd() . "/Makefile_obj",
|
||||
"CPPFLAGS_DRIVER=-D" . uc($self->{name}),
|
||||
($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1" : ""),
|
||||
"VM_PREFIX=$self->{VM_PREFIX}_child",
|
||||
"VM_PREFIX=$self->{vm_prefix}_child",
|
||||
"V$self->{name}_child__ALL.a", # bypass default rule, make archive
|
||||
($param{make_flags}||""),
|
||||
]);
|
||||
|
@ -55,7 +55,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root.h", qr/struct \{/);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}___024root.h", qr/struct \{/);
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -19,7 +19,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")) {
|
||||
# Check that these simple expressions are not stored in temp variables
|
||||
file_grep_not($file, qr/__Vtrigcurr__expression_.* = vlSelf->clk;/);
|
||||
file_grep_not($file, qr/__Vtrigcurr__expression_.* = vlSelf->t__DOT__q.at\(0U\);/);
|
||||
|
@ -14,7 +14,7 @@ compile(
|
||||
v_flags2 => ['--build-dep-bin', 'path_to_exe'],
|
||||
);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}__ver.d", qr/path_to_exe/);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}__ver.d", qr/path_to_exe/);
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -18,7 +18,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root__DepSet*__Slow.cpp");
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root__DepSet*__Slow.cpp");
|
||||
file_grep_any(\@files, qr/Vdeeptemp/i);
|
||||
|
||||
ok(1);
|
||||
|
@ -30,9 +30,9 @@ while (1) {
|
||||
tee => $self->{verbose},
|
||||
cmd=>[$ENV{MAKE},
|
||||
"-C " . $Self->{obj_dir},
|
||||
"-f $Self->{VM_PREFIX}.mk",
|
||||
"-f $Self->{vm_prefix}.mk",
|
||||
"-j 4",
|
||||
"VM_PREFIX=$Self->{VM_PREFIX}",
|
||||
"VM_PREFIX=$Self->{vm_prefix}",
|
||||
"TEST_OBJ_DIR=$Self->{obj_dir}",
|
||||
"CPPFLAGS_DRIVER=-D".uc($Self->{name}),
|
||||
($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1" : ""),
|
||||
@ -47,7 +47,7 @@ while (1) {
|
||||
);
|
||||
|
||||
# Splitting should set VM_PARALLEL_BUILDS to 1 by default
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*1/);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*1/);
|
||||
check_splits();
|
||||
check_no_all_file();
|
||||
check_gcc_flags("$Self->{obj_dir}/vlt_gcc.log");
|
||||
@ -113,7 +113,7 @@ sub check_gcc_flags {
|
||||
while (defined(my $line = $fh->getline)) {
|
||||
chomp $line;
|
||||
print ":log: $line\n" if $Self->{verbose};
|
||||
if ($line =~ /$Self->{VM_PREFIX}\S*\.cpp/) {
|
||||
if ($line =~ /$Self->{vm_prefix}\S*\.cpp/) {
|
||||
my $filetype = ($line =~ /Slow|Syms/) ? "slow" : "fast";
|
||||
my $opt = ($line !~ /-O2/) ? "slow" : "fast";
|
||||
print "$filetype, $opt, $line\n" if $Self->{verbose};
|
||||
|
@ -32,9 +32,9 @@ while (1) {
|
||||
tee => $self->{verbose},
|
||||
cmd=>[$ENV{MAKE},
|
||||
"-C " . $Self->{obj_dir},
|
||||
"-f $Self->{VM_PREFIX}.mk",
|
||||
"-f $Self->{vm_prefix}.mk",
|
||||
"-j 4",
|
||||
"VM_PREFIX=$Self->{VM_PREFIX}",
|
||||
"VM_PREFIX=$Self->{vm_prefix}",
|
||||
"TEST_OBJ_DIR=$Self->{obj_dir}",
|
||||
"CPPFLAGS_DRIVER=-D".uc($Self->{name}),
|
||||
($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1" : ""),
|
||||
@ -48,7 +48,7 @@ while (1) {
|
||||
);
|
||||
|
||||
# Never spliting, so should set VM_PARALLEL_BUILDS to 0 by default
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*0/);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*0/);
|
||||
check_no_splits();
|
||||
check_all_file();
|
||||
check_gcc_flags("$Self->{obj_dir}/vlt_gcc.log");
|
||||
|
@ -35,11 +35,11 @@ compile(
|
||||
if ($^O eq "darwin") {
|
||||
run(cmd => ["cd $Self->{obj_dir}"
|
||||
. " && install_name_tool -add_rpath \@executable_path/."
|
||||
. " $Self->{VM_PREFIX}"],
|
||||
. " $Self->{vm_prefix}"],
|
||||
check_finished => 0);
|
||||
run(cmd => ["cd $Self->{obj_dir}"
|
||||
. " && install_name_tool -change t_flag_ldflags_so.so"
|
||||
. " \@rpath/t_flag_ldflags_so.so $Self->{VM_PREFIX}"],
|
||||
. " \@rpath/t_flag_ldflags_so.so $Self->{vm_prefix}"],
|
||||
check_finished => 0);
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root__Slow.cpp", qr/VL_RAND_RESET/);
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{vm_prefix}___024root__Slow.cpp", qr/VL_RAND_RESET/);
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -18,7 +18,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root__DepSet_*__Slow.cpp");
|
||||
my @files = glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root__DepSet_*__Slow.cpp");
|
||||
file_grep_any(\@files, qr/VL_RAND_RESET/);
|
||||
|
||||
ok(1);
|
||||
|
@ -20,14 +20,14 @@ execute(
|
||||
|
||||
# We expect all loops should be unrolled by verilator,
|
||||
# none of the loop variables should exist in the output:
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")) {
|
||||
file_grep_not($file, qr/index_/);
|
||||
}
|
||||
|
||||
# Further, we expect that all logic within the loop should
|
||||
# have been evaluated inside the compiler. So there should be
|
||||
# no references to 'sum' in the .cpp.
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")) {
|
||||
file_grep_not($file, qr/[^a-zA-Z]sum[^a-zA-Z]/);
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ if ($Self->{vlt_all}) {
|
||||
}
|
||||
|
||||
# Splitting should set VM_PARALLEL_BUILDS to 1 by default
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*1/);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}_classes.mk", qr/VM_PARALLEL_BUILDS\s*=\s*1/);
|
||||
|
||||
check_splits(2);
|
||||
|
||||
|
@ -17,7 +17,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root*.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root*.cpp")) {
|
||||
file_grep_not($file, qr/rstn_r/);
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root*.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root*.cpp")) {
|
||||
file_grep_not($file, qr/rstn_r/);
|
||||
}
|
||||
|
||||
|
@ -23,8 +23,8 @@ if ($Self->{vlt_all}) {
|
||||
|
||||
# Shouldn't have any references to the parameter array
|
||||
foreach my $file (
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")
|
||||
) {
|
||||
file_grep_not($file, qr/digits/i);
|
||||
}
|
||||
|
@ -25,8 +25,8 @@ if ($Self->{vlt_all}) {
|
||||
|
||||
# Shouldn't have any references to the parameter array
|
||||
foreach my $file (
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}*.cpp")
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.h"),
|
||||
glob_all("$Self->{obj_dir}/$Self->{vm_prefix}*.cpp")
|
||||
) {
|
||||
file_grep_not($file, qr/digits/i);
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ sub dotest {
|
||||
$gmon_path or error("Profiler did not create a gmon.out");
|
||||
(my $gmon_base = $gmon_path) =~ s!.*[/\\]!!;
|
||||
|
||||
run(cmd => ["cd $Self->{obj_dir} && gprof $Self->{VM_PREFIX} $gmon_base > gprof.out"],
|
||||
run(cmd => ["cd $Self->{obj_dir} && gprof $Self->{vm_prefix} $gmon_base > gprof.out"],
|
||||
check_finished => 0);
|
||||
|
||||
run(cmd => ["cd $Self->{obj_dir} && $ENV{VERILATOR_ROOT}/bin/verilator_profcfunc gprof.out > cfuncs.out"],
|
||||
|
@ -31,7 +31,7 @@ sub dotest {
|
||||
$gmon_path or error("Profiler did not create a gmon.out");
|
||||
(my $gmon_base = $gmon_path) =~ s!.*[/\\]!!;
|
||||
|
||||
run(cmd => ["cd $Self->{obj_dir} && gprof $Self->{VM_PREFIX} $gmon_base > gprof.out"],
|
||||
run(cmd => ["cd $Self->{obj_dir} && gprof $Self->{vm_prefix} $gmon_base > gprof.out"],
|
||||
check_finished => 0);
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ execute(
|
||||
|
||||
# 'to="PS"' indicates means we probably mis-protected something already protected
|
||||
# Use --debug-protect to assist debugging these
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{VM_PREFIX}__idmap.xml", qr/to="PS/);
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{vm_prefix}__idmap.xml", qr/to="PS/);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
# Check for secret in any outputs
|
||||
|
@ -22,7 +22,7 @@ execute(
|
||||
);
|
||||
|
||||
# Since using a named key, we can check for always identical map
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__idmap.xml", $Self->{golden_filename});
|
||||
files_identical("$Self->{obj_dir}/$Self->{vm_prefix}__idmap.xml", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -17,7 +17,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{VM_PREFIX}___024root__DepSet*__Slow.cpp")) {
|
||||
for my $file (glob_all("$Self->{obj_dir}/$Self->{vm_prefix}___024root__DepSet*__Slow.cpp")) {
|
||||
file_grep_not($file, qr/(<<|>>)/x);
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr!// Body!x);
|
||||
file_grep_not("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr!// Body!x);
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-trace'],
|
||||
);
|
||||
|
||||
|
@ -20,7 +20,7 @@ else {
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-sc -trace'],
|
||||
);
|
||||
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['--trace-fst --trace-threads 1 -DTEST_FST'],
|
||||
);
|
||||
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-trace'],
|
||||
);
|
||||
|
||||
|
@ -20,7 +20,7 @@ else {
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-sc -trace'],
|
||||
);
|
||||
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['--trace-fst --trace-threads 1'],
|
||||
);
|
||||
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-trace'],
|
||||
);
|
||||
|
||||
|
@ -20,7 +20,7 @@ else {
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['-sc -trace'],
|
||||
);
|
||||
|
||||
|
@ -17,7 +17,7 @@ compile(
|
||||
make_main => 0,
|
||||
verilator_make_gmake => 0,
|
||||
top_filename => 't_trace_two_b.v',
|
||||
VM_PREFIX => 'Vt_trace_two_b',
|
||||
vm_prefix => 'Vt_trace_two_b',
|
||||
verilator_flags2 => ['--trace-fst --trace-threads 1'],
|
||||
);
|
||||
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
{
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
{
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16_vlt;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1_vlt;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16_vlt;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_biguint<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_biguint<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_biguint<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_biguint<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_biguint<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_biguint<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_biguint<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_biguint<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
{
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,27 +18,27 @@ compile(
|
||||
);
|
||||
|
||||
{
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_uint<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_biguint<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_biguint<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<8>\s> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<16>\s> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<32>\s> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_uint<64>\s> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_biguint<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_biguint<128>\s> \s+ &i128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<513>\s> \s+ &i513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_uint<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_biguint<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_biguint<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<8>\s> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<16>\s> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<32>\s> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_uint<64>\s> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_biguint<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_biguint<128>\s> \s+ &o128;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<513>\s> \s+ &o513;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -18,23 +18,23 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint8_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint16_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<bool> \s+ &i1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint8_t> \s+ &i8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint16_t> \s+ &i16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint32_t> \s+ &i32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<uint64_t> \s+ &i64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<65>\s> \s+ &i65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<1>\s> \s+ &ibv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_in<sc_bv<16>\s> \s+ &ibv16;/x);
|
||||
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint8_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint16_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<bool> \s+ &o1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint8_t> \s+ &o8;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint16_t> \s+ &o16;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint32_t> \s+ &o32;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<uint64_t> \s+ &o64;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<65>\s> \s+ &o65;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<1>\s> \s+ &obv1;/x);
|
||||
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_out<sc_bv<16>\s> \s+ &obv16;/x);
|
||||
}
|
||||
|
||||
execute();
|
||||
|
@ -13,7 +13,7 @@ scenarios(simulator => 1);
|
||||
skip("Known compiler limitation")
|
||||
if $Self->cxx_version =~ /\(GCC\) 4.4/;
|
||||
|
||||
VM_PREFIX("Vt_vpi_get");
|
||||
vm_prefix("Vt_vpi_get");
|
||||
top_filename("t/t_vpi_get.v");
|
||||
pli_filename("t_vpi_get.cpp");
|
||||
|
||||
|
@ -13,7 +13,7 @@ scenarios(simulator => 1);
|
||||
skip("Known compiler limitation")
|
||||
if $Self->cxx_version =~ /\(GCC\) 4.4/;
|
||||
|
||||
VM_PREFIX("Vt_vpi_module");
|
||||
vm_prefix("Vt_vpi_module");
|
||||
top_filename("t/t_vpi_module.v");
|
||||
pli_filename("t_vpi_module.cpp");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user