I have a mips-like processor that I'm playing with that I've implemented a couple of 64-bit instructions in.
When I use the special instruction, I load or store two 32-bit registers from or to adjacent dwords in memory. The catch is this: the register named in the instruction must be even (i.e. r0, r2, r4 etc) and the second register that gets "clobbered" is related to the first by a fixed increment of one.
My question is this:
Is it possible to write this instruction in inline assembler ? I can't seem to find a constraint that works. Currently I'm using r2 and r3, declaring them as clobbered and doing a copy to the registers that C supplied. This is nearly as inefficient as doing the two dword loads.
If not, how much effort is required to support it in another way like porting the C compiler directly ?
Many thanks to anyone who can help, Derek Roberts