IMPORTANT NOTICE: Please be advised that the Verification Academy Forums will be offline for scheduled maintenance on Sunday, April 6th at 2:00 US/Pacific.
I am developing a test bench which contains 2 BFMs (apart from driver) instantiated in env class. It takes transactions from driver class modify them before driving it to DUT(Though not a standard mechanism, it’s required for my use case)
I have extended the BFM class from uvm_component.
Now I observe the reporting mechanism like this.
Why would you expect uvm_test_top class messages to print first? When you have multiple messages at any given time, the order of display is non-deterministic.
What issue is there with the messages being in this order?
You have race conditions in your environment. That’s the issue. There is no guarantee that messages generated at time 0 will be displayed in a known order.
In general, you should reduce the amount of testbench messaging to the bare minimum. This will likely improve your testbench performance as messaging is often the highest consumer of time in a UVM environment. Why are you printing out messages for each component/driver? I recommend that you only enable those messages with UVM_HIGH verbosity.
The messaging from component is to improve the debug capability during reset(in this particular case).
I understand the scenario you explained. That clarify my doubts.