1 | ; $Id: remainderl.asm 96218 2022-08-15 12:33:57Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT remainderl - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 |
|
---|
28 | %define RT_ASM_WITH_SEH64
|
---|
29 | %include "iprt/asmdefs.mac"
|
---|
30 | %include "iprt/x86.mac"
|
---|
31 |
|
---|
32 |
|
---|
33 | BEGINCODE
|
---|
34 |
|
---|
35 | ;;
|
---|
36 | ; See SUS.
|
---|
37 | ; @returns st(0)
|
---|
38 | ; @param lrd1 [rbp + 10h]
|
---|
39 | ; @param lrd2 [rbp + 20h]
|
---|
40 | RT_NOCRT_BEGINPROC remainderl
|
---|
41 | push xBP
|
---|
42 | SEH64_PUSH_xBP
|
---|
43 | mov xBP, xSP
|
---|
44 | SEH64_SET_FRAME_xBP 0
|
---|
45 | SEH64_END_PROLOGUE
|
---|
46 |
|
---|
47 | ;
|
---|
48 | ; Load the dividend into st0 and divisor into st1.
|
---|
49 | ;
|
---|
50 | fld tword [xBP + 2*xCB + RTLRD_CB]
|
---|
51 | fld tword [xBP + 2*xCB]
|
---|
52 |
|
---|
53 | ;
|
---|
54 | ; The fprem1 only does between 32 and 64 rounds, so we have to loop
|
---|
55 | ; here till we've got a final result. We count down in ECX to
|
---|
56 | ; avoid getting stuck here...
|
---|
57 | ;
|
---|
58 | mov ecx, 16384 / 32 + 4
|
---|
59 | .again:
|
---|
60 | fprem1
|
---|
61 | fstsw ax
|
---|
62 | test ah, (X86_FSW_C2 >> 8)
|
---|
63 | jz .done
|
---|
64 | dec cx
|
---|
65 | jnz .again
|
---|
66 | %ifdef RT_STRICT
|
---|
67 | int3
|
---|
68 | %endif
|
---|
69 |
|
---|
70 | ;
|
---|
71 | ; Return the result.
|
---|
72 | ;
|
---|
73 | .done:
|
---|
74 | fstp st1
|
---|
75 | leave
|
---|
76 | ret
|
---|
77 | ENDPROC RT_NOCRT(remainderl)
|
---|
78 |
|
---|