For Fermi (and probably earlier architectures), for an an array to be stored in the register file, the following conditions must be met:
- The array is only indexed with constants
- There are registers available
- Hopefully, the compiler also does some analysis to determine impact on overall performance
The reason for (1) is that register indexes are encoded directly within the SASS instructions. There is no way to address registers indirectly.
The main factors that limits the number of registers for (2) are:
- The SASS instructions contain only 6 bits for register indexing, which limits the number of registers that can be used in a kernel to 64. The actual number is 63 so one is reserved for something.
- An SM has a block of registers that are shared by all threads that are concurrently in flight.
- Registers are also needed for holding variables, so the compiler must balance register usage for best overall performance.
A potential workaround for (1) is loop unrolling. If a loop uses a loop counter as an index into an array, unrolling the loop (with #pragma unroll or manually) causes the array indexes to become constants as there is now a separate SASS instruction for each array access.
Based in part on this NVIDIA presentation: Local Memory and Register Spilling. The document also goes into detail about how the locations of variables and arrays affect performance.