在systemverilog中有一种方法可以对类型进行条件化吗?

时间:2016-11-08 20:44:14

标签: system-verilog parameterized-types

所以我在公共模块中使用参数化类型。

有没有办法说:  if(type == TYPE1)以一种方式分配struct  否则if(type == TYPE2)指定另一种方式

我在生成块中描绘了这个。

2 个答案:

答案 0 :(得分:2)

是的,您可以使用类型运算符执行generate-if / case,或者if / case例如:

real r;

if ( type(r) == type(real) ) ...

但不幸的是,无论条件如何,所有分支中的代码仍然必须成功编译。您将无法引用不存在的struct成员。

  typedef struct {int a;} s1_t;
  typedef struct {int a;int b;} s2_t;
  s1_t s;
 initial
      #1 // procedural-if
    if (type(s) == type(s1_t))
      $display("%m s.a = %0d",s.a);
    else if (type(s) == type(s2_t))
      $display("%m s.b ==%0d",s.b); // this will not compile 

答案 1 :(得分:1)

IEEE1800-2012§6.23中描述了type()运算符。来自LRM的示例用法:

bit[12:0] A_bus, B_bus;
parameter typebus_t = type(A_bus);
generate
  case(type(bus_t))
    type(bit[12:0]): addfixed_int #(bus_t) (A_bus,B_bus);
    type(real): add_float #(type(A_bus)) (A_bus,B_bus);
  endcase
endgenerate

IEEE1800-2012§20.6.1中还描述了$typename()$typename()返回该类型的字符串。来自LRM的示例用法:

// source code            // $typename would return
typedef bitnode;          // "bit"
node [2:0] X;             // "bit [2:0]"
int signedY;              // "int"
packageA;
enum{A,B,C=99} X;         // "enum{A=32'sd0,B=32'sd1,C=32'sd99}A::e$1"
typedef bit[9:1'b1] word; // "A::bit[9:1]" 
endpackage: A
importA::*;
moduletop;
typedef struct{node A,B;} AB_t;
AB_t AB[10];              // "struct{bit A;bit B;}top.AB_t$[0:9]"
...
endmodule