Как мне заполнить динамический массив через uvm factory - PullRequest
1 голос
/ 14 мая 2019

Здравствуйте, допустим, у меня есть такой код, параметры NUM_MASTERS и NUM_SLAVES определены в объекте конфигурации:

class abc extends uvm_scoreboard;
configuration cfg;
wrapper_class master[]; //i am instantiating a dynamic array of class objects, one each for all masters and another for slaves 
wrapper_class slave[];
extern function new(string name = "abc", uvm_component parent = null);
extern function void build_phase(uvm_phase phase);
endclass


function abc::new(string name = "abc", uvm_component parent = null);
super.new(name, parent);
end
function void abc::build_phase(uvm_phase phase);
super.build_phase(phase);
uvm_config_db#(config_type)::get)this."*","configuration", cfg);
//this is where the error is happening
for(int i = 0; i < cfg.NUM_MASTERS : i++) 
  masters[i] = wrapper_class::type_id::create($sformatf("masters[%0d]",i),this);
for(int i = 0;i < cfg.NUM_SLAVES; i++) 
  slaves[i] =wrapper_class::type_id::create($sformatf("slaves[%0d]",i),this);
endfunction

Может кто-нибудь сказать мне, как заполнить эти динамические массивы?Я должен сделать это на этапе сборки, потому что только тогда я могу получить доступ к NUM_MASTERS и NUM_SLAVES из объекта cfg.любая помощь / совет очень ценится.Спасибо.

1 Ответ

1 голос
/ 14 мая 2019

Вам необходимо new динамические массивы, прежде чем обращаться к ним.

function void abc::build_phase(uvm_phase phase);
  super.build_phase(phase);
  uvm_config_db#(config_type)::get)this."*","configuration", cfg);
  masters = new[cfg.NUM_MASTERS];
  foreach( masters[i] ) 
    masters[i] = wrapper_class::type_id::create($sformatf("masters[%0d]",i),this);
  slaves = new[cfg.NUM_SLAVES];
  foreach( slaves[i] )
    slaves[i] =wrapper_class::type_id::create($sformatf("slaves[%0d]",i),this);
endfunction
...