blob: 412976fb41b17efc32b9943d60b9ec596e2390fa [file] [log] [blame]
Howard Hinnant5b791f62010-11-16 22:13:33 +00001// This file is dual licensed under the MIT and the University of Illinois Open
2// Source Licenses. See LICENSE.TXT for details.
Daniel Dunbarfd089992009-06-26 16:47:03 +00003
Daniel Dunbar7d504782009-10-27 17:49:50 +00004#include "../assembly.h"
5
Daniel Dunbarfd089992009-06-26 16:47:03 +00006// float __floatdixf(di_int a);
7
8#ifdef __i386__
9
10// This routine has some extra memory traffic, loading the 64-bit input via two
11// 32-bit loads, then immediately storing it back to the stack via a single 64-bit
12// store. This is to avoid a write-small, read-large stall.
13// However, if callers of this routine can be safely assumed to store the argument
14// via a 64-bt store, this is unnecessary memory traffic, and should be avoided.
15// It can be turned off by defining the TRUST_CALLERS_USE_64_BIT_STORES macro.
16
17.text
18.align 4
Daniel Dunbar9ff93712009-10-27 17:50:21 +000019DEFINE_COMPILERRT_FUNCTION(__floatdixf)
Daniel Dunbarfd089992009-06-26 16:47:03 +000020#ifndef TRUST_CALLERS_USE_64_BIT_STORES
21 movd 4(%esp), %xmm0
22 movd 8(%esp), %xmm1
23 punpckldq %xmm1, %xmm0
24 movq %xmm0, 4(%esp)
25#endif
26 fildll 4(%esp)
27 ret
28
Edward O'Callaghan8f40ca32009-11-04 23:52:51 +000029#endif // __i386__