If I understand it correctly, because ARM instructions are 32 bits long they can only hold so many bits of immediate value. What I'm trying to do is vmov.f32 s0, #0.0, and I get "immediate out of range" compiler error. Strange thing is that when I use an immediate value of, say #0.5 or #0.25 (all very neatly represented in binary), my code compiles. When I try to assign an immediate value of #0.1, I get the "garbage after following instruction" error, which makes sense if it's trying to represent those values with more bits that can fit into an ARM instruction. The #0.0 case is the only one where I get "immediate out of range", so I'm thinking it's got to be a bug if there's no other explanation.
Does anyone know how to assign an immediate value of #0.0 to a single word floating point register without having to convert it from somewhere else? If there's a good reason it shouldn't work in the first place, please let me know as well. I'm using GNU assembler with Android NDK build tool.
Update:
vmov.f32 d0, #0.0 does work. It keeps making less and less sense.
Update 2:
This doesn't work either: vmov.s32 s0, #0
vmov.f32 #0.0? – HostileFork Oct 11 '11 at 14:38Qd or Dd, which are Neon registers, whilesregisters are VFP. Perhaps you're experiencing an issue with undefined behavior? Also, note the [b] comments: "Any number that can be expressed as+/- n * 2^(-r), where n and r are integers, 16 <= n <= 31, 0 <= r <= 7". infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204h/… – HostileFork Oct 11 '11 at 17:07