Changeset 75129 in vbox for trunk/src/VBox/Runtime/common/math
- Timestamp:
- Oct 28, 2018 5:00:27 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126206
- Location:
- trunk/src/VBox/Runtime/common/math/watcom
- Files:
-
- 2 added
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/watcom/I8D-x86-32.asm
r75123 r75129 1 1 ; $Id$ 2 2 ;; @file 3 ; BS3Kit - 32-bit Watcom C/C++, 64-bit unsigned integer division.3 ; BS3Kit - 32-bit Watcom C/C++, 64-bit signed integer division. 4 4 ; 5 5 … … 25 25 ; 26 26 27 %include " bs3kit-template-header.mac"27 %include "iprt/asmdefs.mac" 28 28 29 BS3_EXTERN_CMN Bs3UInt64Div 29 30 BEGINCODE 31 32 extern __U8D 30 33 31 34 32 35 ;; 33 ; 64-bit unsigned integer division.36 ; 64-bit signed integer division. 34 37 ; 35 38 ; @returns EDX:EAX Quotient, ECX:EBX Remainder. … … 37 40 ; @param ECX:EBX Divisor 38 41 ; 39 global $??U8D40 $??U8D:42 global __I8D 43 __I8D: 41 44 ; 42 ; Convert to a C __cdecl call - not doing this in assembly.45 ; We use __U8D to do the work, we take care of the signedness. 43 46 ; 47 or edx, edx 48 js .negative_dividend 44 49 45 ; Set up a frame, allocating 16 bytes for the result buffer. 46 push ebp 47 mov ebp, esp 48 sub esp, 10h 50 or ecx, ecx 51 js .negative_divisor_positive_dividend 52 jmp __U8D 49 53 50 ; Pointer to the return buffer.51 push esp52 54 53 ; The divisor. 54 push ecx 55 push ebx 55 .negative_divisor_positive_dividend: 56 ; negate the divisor, do unsigned division, and negate the quotient. 57 neg ecx 58 neg ebx 59 sbb ecx, 0 56 60 57 ; The dividend. 58 push edx 59 push eax 61 call __U8D 60 62 61 call Bs3UInt64Div 62 63 ; Load the result. 64 mov ecx, [ebp - 10h + 12] 65 mov ebx, [ebp - 10h + 8] 66 mov edx, [ebp - 10h + 4] 67 mov eax, [ebp - 10h] 68 69 leave 63 neg edx 64 neg eax 65 sbb edx, 0 70 66 ret 71 67 68 .negative_dividend: 69 neg edx 70 neg eax 71 sbb edx, 0 72 73 or ecx, ecx 74 js .negative_dividend_negative_divisor 75 76 .negative_dividend_positive_divisor: 77 ; negate the dividend (above), do unsigned division, and negate both quotient and remainder 78 call __U8D 79 80 neg edx 81 neg eax 82 sbb edx, 0 83 84 .return_negated_remainder: 85 neg ecx 86 neg ebx 87 sbb ecx, 0 88 ret 89 90 .negative_dividend_negative_divisor: 91 ; negate both dividend (above) and divisor, do unsigned division, and negate the remainder. 92 neg ecx 93 neg ebx 94 sbb ecx, 0 95 96 call __U8D 97 jmp .return_negated_remainder 98 -
trunk/src/VBox/Runtime/common/math/watcom/RTWatcomUInt64Div.c
r75123 r75129 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include <bs3kit.h>32 31 #include <iprt/uint64.h> 33 32 34 33 35 #undef Bs3UInt64Div 36 BS3_CMN_DEF(void, Bs3UInt64Div,(RTUINT64U uDividend, RTUINT64U uDivisor, RTUINT64U BS3_FAR *paQuotientReminder)) 34 DECLASM(void) RTWatcomUInt64Div(RTUINT64U uDividend, RTUINT64U uDivisor, RTUINT64U RT_FAR *paQuotientReminder) 37 35 { 38 36 RTUInt64DivRem(&paQuotientReminder[0], &paQuotientReminder[1], &uDividend, &uDivisor); -
trunk/src/VBox/Runtime/common/math/watcom/U8D-x86-32.asm
r75123 r75129 25 25 ; 26 26 27 %include " bs3kit-template-header.mac"27 %include "iprt/asmdefs.mac" 28 28 29 BS3_EXTERN_CMN Bs3UInt64Div 29 30 BEGINCODE 31 32 extern NAME(RTWatcomUInt64Div) 30 33 31 34 … … 37 40 ; @param ECX:EBX Divisor 38 41 ; 39 global $??U8D40 $??U8D:42 global __U8D 43 __U8D: 41 44 ; 42 45 ; Convert to a C __cdecl call - not doing this in assembly. … … 59 62 push eax 60 63 61 call Bs3UInt64Div64 call NAME(RTWatcomUInt64Div) 62 65 63 66 ; Load the result. -
trunk/src/VBox/Runtime/common/math/watcom/U8LS-x86-32.asm
r75123 r75129 25 25 ; 26 26 27 %include " bs3kit-template-header.mac"27 %include "iprt/asmdefs.mac" 28 28 29 30 BEGINCODE 29 31 30 32 ;; … … 35 37 ; @param BL Shift count (it's specified as ECX:EBX, but we only use BL). 36 38 ; 37 global $??U8LS38 $??U8LS:39 global $??I8LS40 $??I8LS:39 global __U8LS 40 __U8LS: 41 global __I8LS 42 __I8LS: 41 43 push ecx ; We're allowed to trash ECX, but why bother. 42 44 -
trunk/src/VBox/Runtime/common/math/watcom/U8RS-x86-32.asm
r75123 r75129 25 25 ; 26 26 27 %include "bs3kit-template-header.mac" 27 %include "iprt/asmdefs.mac" 28 29 30 BEGINCODE 28 31 29 32 … … 35 38 ; @param BL Shift count (it's specified as ECX:EBX, but we only use BL). 36 39 ; 37 global $??U8RS38 $??U8RS:40 global __U8RS 41 __U8RS: 39 42 push ecx ; We're allowed to trash ECX, but why bother. 40 43
Note:
See TracChangeset
for help on using the changeset viewer.