uvm_topdown_phase.svh

1、traverse

uvm_topdown_phase.svh

三个参数

uvm_topdown_phase.svh

case(state)

  • UVM_PHASE_STARTED:
    uvm_component,phase_started()是callback函数
  • UVM_PHASE_EXCUTING:
    标准用法中都可以直接进入分支
    line75用于判断是不是手动调用了build_phase,如果不是m_phasing_active就不等于0
    line76-77判断是不是需要执行新的phase,而不是build_phase
    ph的类型是uvm_topdown_phase.svh,执行execute的函数。
 virtual function void execute(uvm_component comp,
                                          uvm_phase phase);
    // reseed this process for random stability
    process proc = process::self();
    proc.srandom(uvm_create_random_seed(phase.get_type_name(), comp.get_full_name()));

    comp.m_current_phase = phase;
    exec_func(comp,phase);
  endfunction

uvm_topdown_phase.svh

问题:这里面的exec_func其实是调用的是build_phase的东西,为啥呢?
最开始传入的是top,所以是top->down的方式调用子component的build_phase。

  • UVM_PHASE_ENDED:
    uvm_component的phase_ended的回调函数

uvm_topdown_phase.svh

  • 遍历整个树,注意traverse的phase和state是同一个。

小结:
对于uvm_bottomup_phase.svh,就是将line93-96放在前面

上一篇:协方差 cov以及协方差矩阵基础知识


下一篇:uvm_common_phase.svh