Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 1 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 2 | // Source Licenses. See LICENSE.TXT for details. |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 3 | |
Daniel Dunbar | 7d50478 | 2009-10-27 17:49:50 +0000 | [diff] [blame] | 4 | #include "../assembly.h" |
| 5 | |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 6 | // 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 |
Saleem Abdulrasool | 310874a | 2014-05-12 15:23:37 +0000 | [diff] [blame] | 18 | .balign 4 |
Daniel Dunbar | 9ff9371 | 2009-10-27 17:50:21 +0000 | [diff] [blame] | 19 | DEFINE_COMPILERRT_FUNCTION(__floatdisf) |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 20 | #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 | fstps 4(%esp) |
| 28 | flds 4(%esp) |
| 29 | ret |
Joerg Sonnenberger | 2a10033 | 2014-01-24 14:40:53 +0000 | [diff] [blame] | 30 | END_COMPILERRT_FUNCTION(__floatdisf) |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 31 | |
| 32 | #endif // __i386__ |
Saleem Abdulrasool | 590e85b | 2016-06-22 22:09:42 +0000 | [diff] [blame] | 33 | |
| 34 | NO_EXEC_STACK_DIRECTIVE |
| 35 | |