Tagged Questions
Specman, also known as `e`, is a hardware verification language that is a bastard cross of System Verilog, VHDL, and Perl.
3
votes
1answer
328 views
Specman macro to do set subtraction with int_range_list objects
I work with a bunch of sets in order to generate constrained random traffic, but I want to be able to call a Specman macro that computes the complement of a set with syntax like:
COMPLEMENT begin
...
2
votes
3answers
487 views
specman: Assign multiple struct member in one expression
Hy,
I expanding an existing specman test where some code like this appears:
struct dataset {
!register : int (bits:16);
... other members
}
...
data : list of dataset;
foo : dataset;
gen foo;
...
2
votes
1answer
517 views
What's the difference between to_string() and as_a(string) in specman?
In Specman I can convert a variable to a string using either:
x.to_string();
or
x.as_a(string);
Is there any difference between the two? If not, why does Specman provide both?
2
votes
1answer
283 views
VIM syntax file for specman
Where can I find an updated syntax file for specman? There are a number of these on the web, but I want one with recommendations.
1
vote
1answer
14 views
specman Temporal checking
Going through the slides on temporal expressions, I came across this statement:
expect @buffer_full_e => eventually @int_e @clock_e else dut_error(
“After the buffer was filled,an interrupt ...
1
vote
1answer
23 views
Specman-e usage of try { };
I would like to know what the keyword try is used for in Specman and especially its usage in the code snippet given below:
try {
unpack(packing.low,lob,pkt);
} else{
message(LOW, ...
1
vote
1answer
30 views
Retrieving variable name in order to print them in specman
I wish to do the following in Specman:
my_task() is {
var my_var : int;
my_var = 5;
message(LOW,appendf("%s=[%d]",my_var.to_name(),my_var));
};
Currently, I'm in search of the internal ...
1
vote
3answers
51 views
How does one find non-conformance to a spec when both the RTL'ers and the verification engineers miss a particular spec feature?
I have some questions regarding IP verification.
Suppose if a particular design/functionality from an IP specification is missed both in the RTL and the verification plan (Coverage points), how ...
1
vote
1answer
62 views
Specman(e) Questions
I want to emit an event only at the first rising edge of clock.
for example
event clkr_e is rise ('pll_clk') @ sim;
clkr_e is emitted at every rising clock.
But I need to emit an event only at ...
1
vote
1answer
165 views
specman e lists constraints references
i am trying to do the following :
unit parent {
sons: list of sons is instance;
grands: list of grands is instance;
keep sons.size() == 4;
...
1
vote
1answer
99 views
In specman how to test for the existance of a variable or struct field?
Little in the specman manual would indicate that one can determine on the fly whether a specific variable has been created. (not asking about testing for array index or hash members, which can be done ...
1
vote
1answer
158 views
execute perl from specman
I need to call a Perl script from an E test that I wrote. I need to create an ini file-invoke C script that will create a config file which I need for the test I'm writing. I want the test to invoke ...
1
vote
1answer
56 views
output_from() function
i'm new to specman.
how do i use the output_from() function. and what does it do?
1
vote
1answer
131 views
In Specman, why is my macro label for the code body returning garbage?
Similar to this post
http://feedproxy.google.com/~r/cadence/community/blogs/fv/~3/IvdCIla8_Es/extending-multiple-when-subtypes-simultaneously.aspx
I want to make a macro that does loop unrolling to ...
1
vote
1answer
149 views
Specman: how to retrieve values of var which is stored in another var
I have stored var name in another var and I want to retrieve values from original var.
for ex:
var var_A: list of uint = {1,3,2};
var var_A_str:string = "var_A";
//Now i want to print var_A list ...
1
vote
1answer
56 views
How can I get the stack trace in Specman?
Is there any way to get the stack trace in Specman? I patched the functions that force signals to tell me when signals are forced. I want to be able to tell where the forcing originated.
1
vote
2answers
356 views
How can I wait for one event out of a list of events in specman?
I have a struct in specman:
struct foo_s {
event foo_ev;
// some code that will emit foo_ev sometimes
};
And a list:
var foo_l: list of foo_s; // later code will manage the list
And ...
1
vote
1answer
195 views
reduce list in Specman like in Python
Is there a reduce() list method in Specman that I can use for general reduction functions? I'm thinking of something like:
var x: list of bit = some_function_that_returns_list_of_bit;
var bitmap: ...
1
vote
1answer
130 views
using “apply()” with methods that return void in specman
Specman has the apply() method to perform the same action on all elements of a list:
var a: list of int;
a = somefunction.that.returns.list.of.int();
var b:= a.apply(it * 2);
Where apply() does the ...
1
vote
1answer
184 views
does specman have static variables?
I have the following code in specman that I inherited:
some_method() is {
var a: bool;
if (!a) {
a = some_other_method();
};
};
My understanding is that each time some_method() ...
1
vote
2answers
303 views
Returning an array in Specman
How do I return an array from a method call in Specman? E.g.
method a : list of uint is {
var data: list of uint;
.....
result = data;
};
extend sys {
var data_sys: list of uint;
run() ...
1
vote
2answers
384 views
how can I count the number of set bits in a uint in specman?
I want to count the number of set bits in a uint in Specman:
var x: uint;
gen x;
var x_set_bits: uint;
x_set_bits = ?;
What's the best way to do this?
1
vote
1answer
741 views
In Specman, how can I tell if a reference to a unit has the do-not-generate modifier in front of it?
In Specman, how can I tell if a reference to a unit has the do-not-generate modifier, '!', at the reference's definition?
e.g.
unit foo_u {
};
extend sys {
foo : foo_u is instance;
...
1
vote
1answer
145 views
can I set the constraints for a variable once and generate a few times in specman?
I have a variable that I want to generate a few times in the same function, each time with the same set of constraints. Can I set the constraints once and the just gen it many times? That is, ...
1
vote
2answers
120 views
How do I change the default *.elog log file name for an interpreted Specman session?
I want to be able to specify the file name stem for the log file in a Specman test. I need to hard-code the main *.elog filename so that I don't get variance between tests and confuse the ...
1
vote
2answers
630 views
How do I declare a list of fixed length in specman?
In E (specman) I want to declare variables that are lists, and I want to fix their lengths.
It's easy to do for a member of a struct:
thread[2] : list of thread_t;
while for a "regular" variable ...
0
votes
0answers
34 views
Is there a unit-testing framework for specman?
I know it probably sounds a bit recursive to have unit-testing framework for a language focused on testing. But, is there an existing unit-testing framework for specman/'e'? We've got complex enough ...
0
votes
1answer
110 views
specman e macros loop
i am trying to write a macro (not computed) that define instances with a loop , for example if it was a computed macro it would have been :
define <def_struct'statement> "def_struct ...
0
votes
1answer
61 views
How to use instances of a module with instances' index?
For example,
module MM;
MM mm[128]();
I want to get mm[i].signle1,i from 0 to 120.
but I cannot use "for", and I do not want to write 120 statments.
what can I do?
0
votes
1answer
49 views
How can I call a routine automatically when the run ends in specman?
Is there any way to specify that a function should be called when a test ends in Specman?
I'm looking for something similar to C's atexit().
0
votes
1answer
312 views
how can I create a reference to a variable in specman?
I have the following code in specman:
var x := some.very.long.path.to.a.variable.in.another.struct;
while (x == some_value) {
//do something that uses x;
//wait for something
//get a ...
0
votes
2answers
143 views
How can I join a list of strings in specman?
I have a list that I want to print:
foo: list of string;
I want to create a string bar that is the concatenation of the elements of foo. In Perl I would do:
$bar = join " ", @foo;
The only way ...
0
votes
1answer
249 views
splitting a string into a list in specman
Supposing I have a string:
str = “ab,cd,ef”
and I want to split it into a list
lst = [“ab”,”cd”,ef”]
How can I do it best, assuming that I don’t know ahead of time how many items are in the ...