Say I need a signal to represent numbers from 0 to 5; obviously this needs 3 bits of std_logic to be represented (i.e if MAXVAL=5, then bitwidth= {wcalc "floor(logtwo($MAXVAL))+1"}).

I'm aware I could do:

SIGNAL myLogicVector : STD_LOGIC_VECTOR(2 downto 0) := 5; 

with which I'd explicitly specify an array of three std_logic 'bits', and set initial value; then I could use REPORT to print out the length (in this case, 3):

report("Bit width of myLogicVector is "& integer'image(myLogicVector'length));

So far, so good. But, let's say I use an integer (number) type instead:

SIGNAL myInteger : NATURAL range 0 to 5 := 5;

I'm guessing that here the 'compiler' ('synthesizer') would automatically infer that it needs 3 bits of storage length, as this integer is ranged with values between 0 and 5. If that is the case, my question is: is it possible to somehow print out this bit width/length/size in a REPORT?

The trick is, of course, that something like this:

report("Bit width of myInteger is "& integer'image(myInteger'length));

... will fail (say, with "HDLParsers:3389 - Prefix of attribute 'length must be an array object"), since as far as I gather, all these attributes like 'length and 'range are applicable only to arrays (Understanding VHDL Attributes), whereas an integer (natural) is not an array - it is a number :) (VHDL vector integer conversion question)

Again, I'm aware I could possibly utilize a log2 (Computing the width of an unsigned variable from maximum value?) - but what I'd like is just to see quickly (during synthesis) how many 'bits' the 'synthesizer' allocated for an eventual synthesized design, and thus approx how much would be used in terms of final FPGA resources (especially if I'd use 'generics' to somehow calculate a particular max value for an integer).

Well, thanks in advance for any responses, Cheers!

EDIT: a bit of context: I'm using ISE Webpack 9.2; I'm trying to use 'generic' variables/constants as parameters, and then use equations to calculate max values for counters. This calculation, I guess occurs at 'compile' time (which would be 'Synthesize' in ISE - not 'Implement Design'), and so it is here where I want the report messages to occur (and I in fact got them so, for std_logic_vector proper, in the synthesis log - however, the same report messages for me occur at start of behavioral simulation too, which is fine).

And the goal of these report messages is to make sure both that my equations are OK, and that the synthesizer will not try to infer a 32-bit counter - even if I want to count just from 0 to 5 :)

link|improve this question

Hi Sdaau. Just to clarify, do you want this information at compile time, or post synthesis? If post synthesis, which synthesis tool are you using? – George Mar 4 '11 at 15:59
Hi @George, thanks for your comment! I have added a bit of clarification to the OP; I guess what I want is messages at 'compile' time (except, the way I see it, for ISE at least: compile time = synthesis?!) – sdaau Mar 4 '11 at 16:23
No, you cannot assign value integer 5 to a vector. You can try to assign bit string literal "101". – Philippe Mar 4 '11 at 16:58
Hi @Phillipe, thanks for the comment! I guess one could always use a conversion like 'std_logic_vector(to_unsigned(5, x'length)' - but then, you need to specify the bit width by hand; I was otherwise looking for a way for the synthesizer to tell me automatically the needed bit width :) Cheers! – sdaau Mar 4 '11 at 17:43
feedback

2 Answers

up vote 0 down vote accepted

I'm guessing that here the 'compiler' ('synthesizer') would automatically infer that it needs 3 bits of storage length, as this integer is ranged with values between 0 and 5

I believe the synthesizer ignores the range. That is only a runtime check the simulator uses. My spec is not the latest (IEEE 1076-1993), but it states an INTEGER type in VHDL is required to be at least 32 bits so the synthesizer would always see at least a 32-bit vector before logic optimization. You can get the size of an integer using 'LOW or 'HIGH but the range probably won't affect that.

For Xilinx FPGAs, the XST synthesis report will tell which storage elements have unused bits, but not simple wires.

link|improve this answer
Hi @Adam12, thanks and +1 for your answer! Just a little clarification - does that mean that for an 'integer' type, it is in principle impossible to get the used bitwidth during the synthesis step, as it is specified to be 32 bit for 'integer' - and possible only after the (in lack of better term) implementation (i.e. after place & route steps?)? Thanks again for the answer - cheers! – sdaau Mar 4 '11 at 16:30
1  
Hi sdaau. You don't need to run PAR to get the register count. This is done with XST which is the very first step. Look in the .syn file. – Adam12 Mar 4 '11 at 16:42
Thanks for the tip, @Adam12! – sdaau Mar 4 '11 at 17:40
1  
This is not correct. The range constraint is part of the subtype indication. There is no reason why a synthesis tool would not take it into account upfront, before logic optimization. – Jan Decaluwe Mar 5 '11 at 11:35
INTEGER is nearly 32 bits, but not quite. The language spec calls for +/- (2^32)-1 to be supported, but not -2^32. – Martin Thompson Mar 7 '11 at 15:24
feedback

In principle, the representation of a VHDL integer is undefined.

In practice, you can normally assume that a synthesis tool will use a 2's complement representation, taking into account the range constraint. Therefore, the relation between the range constraint and the implemented bit width is straightforward, even though reporting the bit width from within VHDL is not.

link|improve this answer
Thanks for the clarification, @Jan Decaluwe - Cheers! – sdaau Mar 13 '11 at 20:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.