Is it legal to do ldr r0,[r0] in ARM assembly?
|
|
When in doubt, always refer to the ARM Architecture Reference Manual, which can be found on arm.com. It says:
It does not say that the destination register cannot be the same as the base register. I.e., the answer is YES, they can be the same. |
|||
|
|
|
Yes, and it will fetch the value where r0 points to, and load the register r0 with it. When in doubt, you can use an emulator to test it out. I use the VBA GBA emulator which, albeit GBA-specific, is a good ARM emulator.To learn the basics on GBA programming so that you can do that kind of testing, visit this tutorial. |
|||||||||||||
|
|
The encoding is valid both for arm and thumb instruction sets from ARMv4 on certainly. Look at the ARM ARM (ARM Architectural Reference Manual) (http://infocenter.arm.com) for the family you are interested in. In this case ARM7 is ARMv4 which is lumped in with the ARMv5 ARM (used to be the original and only ARM ARM, they were split into separate ARM ARM's). You are looking for things like this:
for mul or this
or this
For LDR instruction in the ARMv4/5 manual: Operand restrictions If specifies base register write-back, and the same register is specified for and , the results are UNPREDICTABLE. I think what that means is this instruction
Is unpredictable as you are telling the instruction to save the load value and the calculated address to r0, only one can win, and sounds like it is a toss up. Without the ! at the end the only thing written to r0 is the value loaded. And there are no comments on restrictions (in rev I of the original ARM ARM, going back to say rev B and C of the ARM ARM and E which were printed editions, all varied between each other in this respect, which is why I think arm uses the term "relevant"). For the mul I cut and pasted above. The thumb instructions make no comment on restrictions or unpredictable behavior. Now if you meant ARMv7 when you tagged this with ARM7 look at one of the ARMv7 manuals for ARMv7 from the ARMv7-AR manual same issue:
Other than that and the use of r15 there are no restrictions on using the instruction in that manner. |
|||
|