problem with synthesizing for loop

Joined
Mar 5, 2009
Messages
1
Reaction score
0
this is my first post in this forum :)
i'm doing my graduation project
simulation and implementaion for LTE physical layer

but i faced many problems with synthesizing for loops :(

i was to write a code for a block called interleaver used in a turbo coder

the function of the inteleaver is to read a certain data vector (124 bits) and fill a matrix (47*4) ROW by ROW
then read them column by column

i filled the matrix without problems
but when i tried to read the matrix column by column and store them in a 124 output data vector i made a nested loop of 2 for loops with bounds
i checked the syntax every thing is ok but when synthesizing it (RTL schematic) i got error synthesizing :(

now if this loop is not synthesizable i will have to write expression for each element (188 :( )



and when is the foor loop synthesizble and when not


thanks in advance
 
Joined
Jan 29, 2009
Messages
152
Reaction score
0
A loop is synthesizable only if it's range won't change during run time;

This should be synthesizable:

Code:
constant N : integer := 1; -- any value

v := (v'range => '0');
for i in 0 to N loop
  for j in i to min(i + 5,x'high - 1) loop
    -- loop body depending on i or j
  end loop;
end loop;
This may mean a lot of logic is generated, depending on the loop body - To synthesise, the loop/loops will probably be unrolled completely.
 
Joined
Jan 29, 2009
Messages
152
Reaction score
0
Just wanted to add, if the number is not static but there is a sane upper-bound, you might do such for loop with upper-bound and run time checking (that'll be functionally equivalent to doing all that manually anyway)

A loop with run-time bounds could also be described by using a state-machine construct but it'll take more clocks (but it can be useful to avoid too much logic being generated) - it is a bit more work but not that hard probably.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top