Return to previous page Advance to next page
Development System Reference Guide
Chapter 8: MAP - The Technology Mapper

Register Ordering

When you map a design containing registers, the MAP software can optimize the way the registers are grouped into CLBs (slices for Virtex or Spartan2 - there are two slices per CLB). This optimized mapping is called “register ordering.”

A CLB (Virtex or Spartan2 slice) has two flip-flops, so two register bits can be mapped into one CLB. For PAR (Place And Route) to place a register in the most effective way, you often want as many pairs of contiguous bits as possible to be mapped together into the same CLBs (for example, bit 0 and bit 1 together in one CLB, bit 2 and bit 3 in another).

MAP pairs register bits (performing “register ordering”) if it can recognize that a series of flip-flops comprise a register. When you create your design, you can name register bits in a way that ensures they are mapped using register ordering.

Note: MAP does not perform register ordering on any flip-flops which have BLKNM, LOC, or RLOC properties attached to them. The BLKNM, LOC, and RLOC properties define how blocks are to be mapped, and these properties override register ordering.

To be recognized as a candidate for register ordering, the flip-flops must have these characteristics.

If a series of flip-flops is recognized as a candidate for register ordering, they are paired in CLBs in sequential numerical order. For example, in the first set of names shown above, data1 and data2, are paired in one CLB, while data3 and data4 are paired in another.

In the example below, no register ordering is performed, since the root names for the signals are not identical.

data01
addr02
atod03
dtoa04

Note: In the OrCAD® schematic capture program, an underbar (_) and a sheet number are appended to each output signal name (for example, data01_1 or add15_12). In order to allow register ordering on designs developed using the OrCAD tools, MAP checks each signal name to see if it ends with an underbar followed by numeric characters.

When it finds a signal with this type of name, MAP ignores the underbar and the numeric characters when it considers the signal for register ordering. For example, if signals are named data00_1 and data01_2, MAP considers them as data00 and data01 for purposes of register ordering. These two signals are mapped to the same CLB.

Two extra notes:

When you run the MAP command the default setting performs register ordering. If you specify the -r option when you run the command, the software does not perform register ordering and maps the register bits as if they were unrelated.