blob: 152a93d69cc6374213f68ed75622ee75046b6e2e [file] [log] [blame]
Daniel Dunbarfd089992009-06-26 16:47:03 +00001// This file is distributed under the University of Illinois Open Source
2// License. See LICENSE.TXT for details.
3
Daniel Dunbar7d504782009-10-27 17:49:50 +00004#include "../assembly.h"
5
Daniel Dunbarfd089992009-06-26 16:47:03 +00006// float __floatdisf(di_int a);
7
8// This routine has some extra memory traffic, loading the 64-bit input via two
9// 32-bit loads, then immediately storing it back to the stack via a single 64-bit
10// store. This is to avoid a write-small, read-large stall.
11// However, if callers of this routine can be safely assumed to store the argument
12// via a 64-bt store, this is unnecessary memory traffic, and should be avoided.
13// It can be turned off by defining the TRUST_CALLERS_USE_64_BIT_STORES macro.
14
15#ifdef __i386__
16
17.text
18.align 4
19.globl ___floatdisf
20___floatdisf:
21#ifndef TRUST_CALLERS_USE_64_BIT_STORES
22 movd 4(%esp), %xmm0
23 movd 8(%esp), %xmm1
24 punpckldq %xmm1, %xmm0
25 movq %xmm0, 4(%esp)
26#endif
27 fildll 4(%esp)
28 fstps 4(%esp)
29 flds 4(%esp)
30 ret
31
32#endif // __i386__