I've been wondering how much optimization the average tool performs, and
how much I should manually try to optimize. For example, if I have two
signals with the same assignment:
1 | sig1 <= (someSig & "000") + someOtherSig;
|
2 | sig2 <= (someSig & "000") + someOtherSig;
|
are the tools smart enough to know it's the same assignment and merge
them? Or should I create a variable and use that?
A second example, would the below create the same logic, or is one
preferable to the other? If so why?
1 | if sig1 = '0' then
|
2 | sig2 <= "0000";
|
3 | else
|
4 | sig2 <= "1111";
|
5 | end if;
|
6 |
|
7 | sig2 <= sig1 & sig1 & sig1 & sig1;
|