我第一次尝试进行功能覆盖,因此我创建了一个mem_cov.sv文件,在其中创建了一个覆盖类,将其从uvm_subscriber类扩展出来,并实现了write函数以对覆盖进行采样。我正在尝试在report_phase中打印它,但没有打印出来,我不确定是否丢失了要打印的东西。
This is the link of the code
https://www.edaplayground.com/x/3R8m
从代码中提供示例,这是我从uvm_subscriber类扩展的覆盖类
class mem_cov extends uvm_subscriber#(mem_seq_item);
`uvm_component_utils(mem_cov)
real cov;
mem_seq_item tx;
covergroup cg;
READ_EN:coverpoint tx.rd_en {bins bin_0_1[] ={0,1};}
endgroup
extern function new(string name="mem_cov",uvm_component parent);
extern function void write( mem_seq_item t);
extern function void extract_phase(uvm_phase phase);
extern function void report_phase(uvm_phase phase);
endclass
function mem_cov::new(string name,uvm_component parent);
super.new(name,parent);
cg=new();
endfunction
function void mem_cov::write(mem_seq_item t);
tx=t;
cg.sample();
endfunction
function void mem_cov::extract_phase(uvm_phase phase);
cov=cg.get_coverage();
endfunction
function void mem_cov::report_phase(uvm_phase phase);
`uvm_info(get_full_name(),$sformatf("Coverage is
%d",cov),UVM_HIGH);
endfunction
在我的env类中,我已将监视器分析端口连接到订户的分析导出端口,这是env类的片段:
function void build_phase(uvm_phase phase);
super.build_phase(phase);
mem_cv= mem_cov::type_id::create("mem_cv",this);
endfunction : build_phase
function void connect_phase(uvm_phase phase);
mem_agnt.monitor.item_collected_port.connect(mem_cv.analysis_export);
endfunction : connect_phase
答案 0 :(得分:1)
您的问题与覆盖率无关。这与冗长有关。您正在用冗长UVM_HIGH
打印承保范围。模拟的详细程度设置为UVM_MEDIUM
(我认为这是默认设置)。因此,您的消息将不会被打印。如果将详细程度降低到UVM_MEDIUM
,它将被打印:
function void mem_cov::report_phase(uvm_phase phase);
`uvm_info(get_full_name(),$sformatf("Coverage is %d",cov),UVM_MEDIUM)
endfunction
消息的详细级别是必须设置详细级别才能打印消息的级别。因此,只有详细程度为UVM_HIGH
或更高时,才会打印级别为UVM_HIGH
的消息。换句话说,如果您希望打印一条消息,请将详细程度设置为较低级别。
顺便说一句:宏后不需要分号。