I want to print a float value with printf
global main
extern printf
section .data
string: db `%f\n`, 0
section .bss
rs: resq 1
[...]
movq xmm0, [rs]
mov rdi, string
mov rax, 0
call printf
rs contains the floating value 1.6
(gdb) x/fg &rs
0x600ad8 <rs>: 1.6000000000000001
but the program prints
[username@localhost folder]$ ./programname
0.000000
who can I get the program to print 1.6? what am I doing wrong?
First: make sure you are using the right calling convention (stack, registers, left to right, right to left, etc.). If your program indeed prints a floating point number, although it is not the one you required, then at least the format string is being passed correctly (or you are having a lot of luck and
printf
found the address of the format string at the right place even if you didn't put its address there).Second: the number you are trying to print... is it a float or a double?
rs
is defined to hold a quadword value (64 bits), but floats are 32 bits. So, if the first point has been checked and it's ok, I suggest you to use"%lf"
as format, instead of"%f"
.BTW: why do you put
RAX = 0
? What does it mean regarding the call toprintf
?UPDATE: This may help you. A disassembly of a silly program (
f.c
):$ gcc -c -S f.c
$ less f.s