1
vote
1answer
14 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 ori …
1
vote
2answers
34 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 mana …
1
vote
1answer
61 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 bot …
0
votes
1answer
20 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().
1
vote
1answer
55 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 …
1
vote
1answer
56 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);
Wh …
0
votes
1answer
70 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 somet …
0
votes
2answers
44 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 " ", @ …
0
votes
1answer
66 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 i …
1
vote
1answer
41 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 eac …
1
vote
1answer
132 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: l …
2
votes
1answer
114 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
2answers
209 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
246 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 in …
0
votes
1answer
65 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 tim …
