Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I try to compile this code:

#include <stdio.h>

main(int argc, char *argv[]) {
   double y = 0;

   __asm__ ("fldl $150;"
            "fsqrt;"
            "fstl %0;" : : "g" (y) );

   printf("%f\n", y);


   return 0;
}

I get this error:

sqrt.c: Assembler messages:
sqrt.c:6: Error: suffix or operands invalid for `fld'

Why doesn't this work? Why can't I push the number "150" onto the stack for floating point operations?

share|improve this question

3 Answers

up vote 5 down vote accepted

I do not know of an assembly language which supports literal floating point constants for immediate use. The usual means is to declare initialized storage containing the floating point constant and referencing it:

const1:     dq  1.2345
...
     fldl    const1

For the example you give, it is possible to do this more directly:

printf ("%f\n", sqrt (150));

Otherwise, this must be an artificially complicated project, perhaps homework.

share|improve this answer
2  
I think the x87 supports loading 1 and 0, if you count those as immediates ;) – tc. Jun 29 '11 at 0:39
well. who knew! thanks! – poundifdef Jun 29 '11 at 0:53
@tc. There are dedicated instructions to load 1 and 0 on x87; I wouldn't call them immediates, exactly. @wallyk: ARM actually does have floating-point immediates in the VFP ISA (not all floating-point values are representable, however, since the immediate field is only 8 bits wide). – Stephen Canon Jun 29 '11 at 0:58
I would avoid this method because it's not position-independent. Instead, see my answer. – R.. Jun 29 '11 at 1:19
Hahaha, by "artificially complicated" I think you mean "learning and curiosity" on my own part! is that okay? :P (also, interestingly, the gcc -S output when I use math.h's sqrt() function both invokes sqrt() and calls the sqrt instruction, surrounded by some conditionals and jmps. But that is a separate question. – poundifdef Jun 29 '11 at 1:50

Try something like this

push $0x????????
push $0x????????
fldl (%esp)
addl $8,%esp

Where the ????????'s are replaced by the IEEE representation of the double constant. This method has the advantage that it works equally well in normal and position-independent (PIC, i.e. shared library) code.

share|improve this answer

The only valid operands for the fld instruction are memory or a floating-point stack register.

(Also, you have specified y as an input operand for the asm block, whereas it should be an output. Probably safer to constrain that to being memory ("m", rather than "g") as well.)

If you really want to do this with inline assembly:

#include <stdio.h>

int main(void)
{
   double y;
   const double k = 150.0;

   __asm__ ("fldl %1;"
            "fsqrt;"
            "fstl %0;" : "=m" (y) : "m" (k) );

   printf("%f\n", y);

   return 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.