diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-27 01:17:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-27 01:17:20 +0000 |
commit | 63119a6ff98a6f284477e2ba68483bcdd743f94a (patch) | |
tree | e7a9198ecbe02e0d25f52c9f17e771b17bcd5760 /lib/Target/X86/README-X86-64.txt | |
parent | 1160779f02d5369e4d9012ee1078798e866c6772 (diff) | |
download | external_llvm-63119a6ff98a6f284477e2ba68483bcdd743f94a.zip external_llvm-63119a6ff98a6f284477e2ba68483bcdd743f94a.tar.gz external_llvm-63119a6ff98a6f284477e2ba68483bcdd743f94a.tar.bz2 |
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/README-X86-64.txt')
-rw-r--r-- | lib/Target/X86/README-X86-64.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Target/X86/README-X86-64.txt b/lib/Target/X86/README-X86-64.txt index bc19986..bdff56d 100644 --- a/lib/Target/X86/README-X86-64.txt +++ b/lib/Target/X86/README-X86-64.txt @@ -234,3 +234,30 @@ down by 8 and truncate it. It's not pretty but it works. We need some register allocation magic to make the hack go away (e.g. putting additional constraints on the result of the movb). +//===---------------------------------------------------------------------===// + +This function: +double a(double b) {return (unsigned)b;} +compiles to this code: + +_a: + subq $8, %rsp + cvttsd2siq %xmm0, %rax + movl $4294967295, %ecx + andq %rcx, %rax + cvtsi2sdq %rax, %xmm0 + addq $8, %rsp + ret + +note the dead rsp adjustments. Also, there is surely a better/shorter way +to clear the top 32-bits of a 64-bit register than movl+andq. Testcase here: + +unsigned long long c(unsigned long long a) {return a&4294967295; } + +_c: + movl $4294967295, %ecx + movq %rdi, %rax + andq %rcx, %rax + ret + +//===---------------------------------------------------------------------===// |