get_parent 用于得到当前实例的parent,其函数原型为: externvirtualfunctionuvm_componentget_parent(); get_child函数,与get_parent不同的是,get_child需要一个string类型的参数name,表示此child实例在实例化时指定的名字。因为一个component只有一个parent,所以get_parent不需要指定参数;而可能有多个child,所以必须指定n...
4.还可以使用get_first_child 和 get_next_child 一次得到所有的child:(这两个返回的是string) name 是作为ref 类型传递的。 5.get_num_children:返回当前component 所拥有的child 数量: 6.还有has_child, do_flush 等函数。
代码语言:javascript 代码运行次数:0 运行 AI代码解释 extern virtualfunctionuvm_componentget_parent(); get_child函数,与get_parent不同的是,get_child需要一个string类型的参数name,表示此child实例在实例化时指定的名字。因为一个component只有一个parent,所以get_parent不需要指定参数;而可能有多个child,所以必须指...
get_parent函数,用于得到当前实例的parent:extern virtual function uvm_component get_parent (); 与get_parent相对的就是get_child函数:extern function uvm_component get_child (string name);需要一个string类型的参数name,表示此child实例在实例化时指定的名字 为了得到所有的child,可以使用get_children函数:extern...
get_child:需要一个string类型的参数name,表示次child实例在实例化时指定的名字。 get_children:得到一个component的所有函数。参数类型为ref uvm_component children[$]。 get_first_child:得到第一个孩子。 get_next_child:得到下一个孩子,配合get_first_child函数,用于对get_children得到的孩子队列遍历。
1.get_parent get_parent函数,用于得到当前实例的parent; 2.get_children 得到所有的child; 29.field automation `define uvm_field_int(ARG,FLAG) `define uvm_field_real(ARG,FLAG) `define uvm_field_enum(T,ARG,FLAG) `define uvm_field_object(ARG,FLAG) `define uvm_field_event(ARG,FLAG) `define ...
1.3.uvm_component的get_child函数 (1) 与get_parent不同,由于一个uvm_component可能有多个child,所以get_child函数需要有一个string类型的参数name,表示此child实例在实例化时指定的名字; 1.4.uvm_component的get_children函数 2.uvm_sequence_item相关函数 ...
get_child/get_next_child/get_first_child 这些方法用于遍历该component的子component(如果有的话)。 get_num_children 返回此component的子component的数量。 has_child 如果该component有一个给定名字的子组件,则返回1,否则返回0。 lookup 查找具有相对于该component的给定层次名称的component。 get_depth 从根级别上...
最开始traverse传入的是top,也就是最顶层uvm_root,处调用get_first_child获得uvm_test_top(在之前的run_test中已被创建),递归调用traverse函数,执行ph.execute(uvm_test_top, phase), 实际调用的是comp.build_phase, 也就是uvm_test_top的 builde_phase()。builde_phase会创建uvm_test_top的child env。执行...
m_add_child函数用于添加子组件,该函数在new函数中被调用。此外,uvm_component内还包含一些查询children的方法,以遍历环境树结构。创建环境组件时,一般通过create的工厂方法,最终调用uvm_component的new函数完成树结构的连接。每个组件在树结构中的hierarchy路径由get_full_name函数获取。类似地,uvm_reg也...