Friday, November 21, 2008     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: SV transaction sequence dependency constraint?
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
davyzhu
Posts: 90
Online: User is Offline
1/15/2007 12:08 AM  
Hi all, Is there any good methods to write SystemVerilog transaction sequence dependency constraint? For example, in below SV code, I want to always generate IDLE transaction after WRITE (i.e. WRITE after WRITE or READ after WRITE is illegal). //--- SV code start--- //define transactions typedef enum { WRITE=1,READ=2,IDLE=4} cmd_t; class Packet; ... rand cmd_t cmd; ... endclass Packet p; initial repert(20) begin p = new(); p.randomize(); end //--- SV code end--- Best regards, Davy
zeevk
Posts: 9
Online: User is Offline
1/15/2007 1:26 AM  
Posted By davyzhu on 1/15/2007 12:08 AM
Hi all, Is there any good methods to write SystemVerilog transaction sequence dependency constraint? For example, in below SV code, I want to always generate IDLE transaction after WRITE (i.e. WRITE after WRITE or READ after WRITE is illegal). //--- SV code start--- //define transactions typedef enum { WRITE=1,READ=2,IDLE=4} cmd_t; class Packet; ... rand cmd_t cmd; ... endclass Packet p; initial repert(20) begin p = new(); p.randomize(); end //--- SV code end--- Best regards, Davy

Hi Davy,

Since you're looking just one step into the past, you could simply maintain a variable with the previous transaction type, use it in a constraint, and update its value after generating each new transaction. For example:

   cmd_t prev_cmd = WRITE;
   Packet p = new;
   initial
      repeat (20) begin
          // apply constraint
          assert( p.randomize()  with {if (prev_cmd ==WRITE)  cmd==IDLE } ) else $fatal;
          // do something with p here
          ...
          // update prev value for the next iteration
          prev_cmd = p.cmd;
      end

Now, if you want to generate more interesting sequences of transactions with a certain structure to them, you should create a new class - a sequence, which generates a stream of transactions based on some "control knobs" you set in the class instance. You can then have multiple (inherited) subtypes of that sequence class, each generating a different kind of sequence, with different knobs.

Regards,

   Zeev.

dbwalker0min
Posts: 0
Online: User is Offline
1/15/2007 8:42 AM  
Davy,

In cases like this, I've been using the "pre_randomize" function as follows...

//--- SV code start---

//define transactions
typedef enum { WRITE=1,READ=2,IDLE=4} cmd_t;
class Packet;
...
rand cmd_t cmd;
cmt_t last_cmd = IDLE;
...

constraint c1 {last_cmd == WRITE -> cmd == IDLE;}

function void pre_randomize();
last_cmd = cmd;
endfunction

endclass

Packet p;

initial
repeat(20) begin
p = new();
p.randomize();
end //--- SV code end

If someone knows a better way to do this, I'd like to hear about it.

David Walker
davyzhu
Posts: 90
Online: User is Offline
1/16/2007 5:15 AM  
Hi Zeev and David,

Thanks a lot for the good ideas! I have tried David's program and all OK.

And there is an small errata for above program.
1. Assume only one instance of the class at one time
change "cmt_t last_cmd = IDLE;" to "static cmt_t last_cmd = IDLE;"
2. Change "function void pre_randomize(); " to "function void
post_randomize(); "

Best regards,
Davy
nitin_sharma
Posts: 12
Online: User is Offline
1/16/2007 5:38 AM  
Hi Davy,

One of the most powerful aspects of system verilog generation is the randsequence construct. It is a very powerful feature and is very useful in generation of sequences. It is also very scalable. I will post an example later today on how to use it.

Nitin
zeevk
Posts: 9
Online: User is Offline
1/16/2007 5:51 AM  
Posted By davyzhu on 1/16/2007 5:15 AM
Hi Zeev and David,

Thanks a lot for the good ideas! I have tried David's program and all OK.

And there is an small errata for above program.
1. Assume only one instance of the class at one time
change "cmt_t last_cmd = IDLE;" to "static cmt_t last_cmd = IDLE;"
2. Change "function void pre_randomize(); " to "function void
post_randomize(); "

Best regards,
Davy
Hi Davy,

Making the last_cmd field statis is dangerous - it will not work if you have several such generator threads running simultaneously, as all the packet class instances share the static last_cmd value.
Thanks,

    Zeev.



Posting to forums is available to community members only.
Login or Register

Forums > Functional Verification > SystemVerilog > SV transaction sequence dependency constraint?


ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.