Hi Nandeesha, This BSSXCD error is issued when a very large UVM hierarchy is printed using uvm_top.print_topology() . You will also see this message if you are trying to print an object using `uvm_info or uvm_report_info( ) and the size of the bit-stream exceeds the maximum permissible limit [268435455] As the error message states, the maximum permissible limit for the bit-stream size is 268435455. If the topology print crosses this limit, you can comment out the print_topology() call to avoid the error. If the error is due to printing a huge object, then consider reducing the number of elements being printed by using the UVM_NOPRINT automation flag to exclude a field for printing. The Verilog Stack Trace that is printed along with the error message will point you to the location of code which is causing the error. Please take a look at the following article on https://support.cadence.com where this is documented. Article (20479996) Title: How to prevent BSSXCD error when uvm_topology or uvm_info print exceeds the max permissible limit URL: https://support.cadence.com/apex/ArticleAttachmentPortal?id=a1O0V0000090tKfUAI Thanks.
↧