I'm not aware of an existing MIPS architecture that supports referencing a register by the contents of a register, which would allow the type of thing you suggest, like:
move $t0, $zero
mover $t0, $s0 # $s0 = register($t0) = register(0)
addi $t0, 1
mover $t0, $s1 # $s1 = register($t0) = register(1)
addi $t0, 1
...
Although in any case it's not a good idea in my opinion, for a few reasons. Firstly, you're dealing with a very small number of registers anyway, so there is a small upper bound on the loop in any case, making the direct approach not much less flexible.
More importantly, a loop like that would be horribly inefficient. It would initialise, increment, perform a move and a branch check (at least) for every iteration. Even without taking branch stalls into account this is at least 3x slower than simply:
move $t0, $s0
move $t1, $s1
...
move $t8, $s8
ldm sp, {r0-r7}(load multiple) instruction. MIPS doesn't have this, so you'd have to unroll the loop and/or unroll the register initialization instructions. In any case, I know of no machine language that has a "select register by register" addressing mode; apart from self-modifying code (which would be trivial to do but due to the instruction cache trashing quite probably far worse in performance than simple unrolling; besides, not thread-safe) I see no way to do this. – FrankH. Feb 28 '11 at 13:13