mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-06 09:00:54 +00:00
verific: use MFCU for SV file list
This commit is contained in:
parent
b6c148f84a
commit
8d504ecb48
1 changed files with 1 additions and 10 deletions
|
|
@ -3747,12 +3747,10 @@ struct VerificPass : public Pass {
|
||||||
#ifdef VERIFIC_VHDL_SUPPORT
|
#ifdef VERIFIC_VHDL_SUPPORT
|
||||||
int i;
|
int i;
|
||||||
Array *file_names_sv = new Array(POINTER_HASH);
|
Array *file_names_sv = new Array(POINTER_HASH);
|
||||||
bool has_vhdl = false;
|
|
||||||
FOREACH_ARRAY_ITEM(file_names, i, filename) {
|
FOREACH_ARRAY_ITEM(file_names, i, filename) {
|
||||||
std::string filename_str = filename;
|
std::string filename_str = filename;
|
||||||
if ((filename_str.substr(filename_str.find_last_of(".") + 1) == "vhd") ||
|
if ((filename_str.substr(filename_str.find_last_of(".") + 1) == "vhd") ||
|
||||||
(filename_str.substr(filename_str.find_last_of(".") + 1) == "vhdl")) {
|
(filename_str.substr(filename_str.find_last_of(".") + 1) == "vhdl")) {
|
||||||
has_vhdl = true;
|
|
||||||
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_2019").c_str());
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_2019").c_str());
|
||||||
if (!vhdl_file::Analyze(filename, work.c_str(), vhdl_file::VHDL_2019)) {
|
if (!vhdl_file::Analyze(filename, work.c_str(), vhdl_file::VHDL_2019)) {
|
||||||
verific_error_msg.clear();
|
verific_error_msg.clear();
|
||||||
|
|
@ -3762,14 +3760,7 @@ struct VerificPass : public Pass {
|
||||||
file_names_sv->Insert(strdup(filename));
|
file_names_sv->Insert(strdup(filename));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (has_vhdl) {
|
if (!veri_file::AnalyzeMultipleFiles(file_names_sv, analysis_mode, work.c_str(), veri_file::MFCU)) {
|
||||||
FOREACH_ARRAY_ITEM(file_names_sv, i, filename) {
|
|
||||||
if (!veri_file::Analyze(filename, analysis_mode, work.c_str())) {
|
|
||||||
verific_error_msg.clear();
|
|
||||||
log_cmd_error("Reading Verilog/SystemVerilog sources failed.\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (!veri_file::AnalyzeMultipleFiles(file_names_sv, analysis_mode, work.c_str(), veri_file::MFCU)) {
|
|
||||||
verific_error_msg.clear();
|
verific_error_msg.clear();
|
||||||
log_cmd_error("Reading Verilog/SystemVerilog sources failed.\n");
|
log_cmd_error("Reading Verilog/SystemVerilog sources failed.\n");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue