Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > VHDL > if-then vs. if-generate

Reply
Thread Tools

if-then vs. if-generate

 
 
valentin tihomirov
Guest
Posts: n/a
 
      02-21-2004
Why lables are mandatory for generate statemente? Why *else* cannot be used
with *generate*? For example, it should be quite typical situation, you have
two different implementations of the same block depending on a generic.

B1: if Param1 generate
...
end generate;

B2: if not Param1 generate
...
end generate;



Wouldn't it be more neat to allow the following implementation of generate
block:

B1: if Param1 generate
...
else
...
end generate;

???? Thanks.


 
Reply With Quote
 
 
 
 
Allan Herriman
Guest
Posts: n/a
 
      02-21-2004
On Sat, 21 Feb 2004 14:11:46 +0200, "valentin tihomirov"
<> wrote:

> Why *else* cannot be used
>with *generate*?


This is a mistake in the language, and will be fixed in VHDL 200x.
You will also be able to use 'case-generate'.

Expect tool support sometime this decade.

Regards,
Allan.
 
Reply With Quote
 
 
 
 
Edwin Naroska
Guest
Posts: n/a
 
      02-23-2004
Hi,

valentin tihomirov wrote:
> Why lables are mandatory for generate statemente?


I am not sure about the motivation for this restriction
but I think the reason might be as follows:

Any components instantiated in the design must get a unique
instance name. E.g., the VHDL code

B1: if Param1 generate
mycomp: entity test port map (....);
end generate;

mycomp: entity test port map (....);

will generate two components named ":B1:mycomp" and ":mycomp".
If you were allowed to omit "B1" then both components would
receive the same instance name.

Of course, one might argue that the LRM could forbid creating
the same instance name for both components. However, note that
the generate statement creates a new declarative region.
E.g., one can write


architecture test of test is
constant myconst : integer := 11;
begin

B1: if Param1 generate
-- declares a new constant myconst that
-- is only visible within the "generate"
-- region (and overloads the previously
-- declared constant "myconst").
-- This is legal in VHDL.
constant myconst : bit := '1';
begin
mycomp: entity test port map (....);
end generate;

mycomp: entity test port map (....);

end test;

I.e., within the generate statement, new objects/types/... may
be created that "overload" other declarations with the same
name. So, defining "mycomp" to be illegal while declaration of
"myconst" is ok would create some kind of inconsistency.
Perhaps, this is the reason to make a label mandatory for the
generate statement.

Please note that I wasn't involved in the definition of
the VHDL LRM. So, I'm just guessing...

--
Edwin


>
> B1: if Param1 generate
> ...
> end generate;
>
> B2: if not Param1 generate
> ...
> end generate;
>
>
>
> Wouldn't it be more neat to allow the following implementation of generate
> block:
>
> B1: if Param1 generate
> ...
> else
> ...
> end generate;
>
> ???? Thanks.
>
>


 
Reply With Quote
 
electronics gyan` electronics gyan` is offline
Junior Member
Join Date: Feb 2013
Posts: 1
 
      02-18-2013
if else statement :-

Syntax:
if then
statements
...
[
elsif then
statements
...
else
statements
...
]
endif;

from :-
electronicsgyan.com
 

Last edited by electronics gyan`; 02-18-2013 at 07:54 AM.. Reason: some one is missing
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57