VirtualBox

Ignore:
Timestamp:
Oct 28, 2018 5:00:27 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126206
Message:

IPRT: Make Watcom C an alterntive for compiling the OS/2 kernel code (GA mainly), governed by VBOX_USE_WATCOM_FOR_OS2.

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  
    11; $Id$
    22;; @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.
    44;
    55
     
    2525;
    2626
    27 %include "bs3kit-template-header.mac"
     27%include "iprt/asmdefs.mac"
    2828
    29 BS3_EXTERN_CMN Bs3UInt64Div
     29
     30BEGINCODE
     31
     32extern __U8D
    3033
    3134
    3235;;
    33 ; 64-bit unsigned integer division.
     36; 64-bit signed integer division.
    3437;
    3538; @returns  EDX:EAX Quotient, ECX:EBX Remainder.
     
    3740; @param    ECX:EBX     Divisor
    3841;
    39 global $??U8D
    40 $??U8D:
     42global __I8D
     43__I8D:
    4144        ;
    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.
    4346        ;
     47        or      edx, edx
     48        js      .negative_dividend
    4449
    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
    4953
    50         ; Pointer to the return buffer.
    51         push    esp
    5254
    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
    5660
    57         ; The dividend.
    58         push    edx
    59         push    eax
     61        call    __U8D
    6062
    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
    7066        ret
    7167
     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  
    2929*   Header Files                                                                                                                 *
    3030*********************************************************************************************************************************/
    31 #include <bs3kit.h>
    3231#include <iprt/uint64.h>
    3332
    3433
    35 #undef Bs3UInt64Div
    36 BS3_CMN_DEF(void, Bs3UInt64Div,(RTUINT64U uDividend, RTUINT64U uDivisor, RTUINT64U BS3_FAR *paQuotientReminder))
     34DECLASM(void) RTWatcomUInt64Div(RTUINT64U uDividend, RTUINT64U uDivisor, RTUINT64U RT_FAR *paQuotientReminder)
    3735{
    3836    RTUInt64DivRem(&paQuotientReminder[0], &paQuotientReminder[1], &uDividend, &uDivisor);
  • trunk/src/VBox/Runtime/common/math/watcom/U8D-x86-32.asm

    r75123 r75129  
    2525;
    2626
    27 %include "bs3kit-template-header.mac"
     27%include "iprt/asmdefs.mac"
    2828
    29 BS3_EXTERN_CMN Bs3UInt64Div
     29
     30BEGINCODE
     31
     32extern NAME(RTWatcomUInt64Div)
    3033
    3134
     
    3740; @param    ECX:EBX     Divisor
    3841;
    39 global $??U8D
    40 $??U8D:
     42global __U8D
     43__U8D:
    4144        ;
    4245        ; Convert to a C __cdecl call - not doing this in assembly.
     
    5962        push    eax
    6063
    61         call    Bs3UInt64Div
     64        call    NAME(RTWatcomUInt64Div)
    6265
    6366        ; Load the result.
  • trunk/src/VBox/Runtime/common/math/watcom/U8LS-x86-32.asm

    r75123 r75129  
    2525;
    2626
    27 %include "bs3kit-template-header.mac"
     27%include "iprt/asmdefs.mac"
    2828
     29
     30BEGINCODE
    2931
    3032;;
     
    3537; @param    BL          Shift count (it's specified as ECX:EBX, but we only use BL).
    3638;
    37 global $??U8LS
    38 $??U8LS:
    39 global $??I8LS
    40 $??I8LS:
     39global __U8LS
     40__U8LS:
     41global __I8LS
     42__I8LS:
    4143        push    ecx                     ; We're allowed to trash ECX, but why bother.
    4244
  • trunk/src/VBox/Runtime/common/math/watcom/U8RS-x86-32.asm

    r75123 r75129  
    2525;
    2626
    27 %include "bs3kit-template-header.mac"
     27%include "iprt/asmdefs.mac"
     28
     29
     30BEGINCODE
    2831
    2932
     
    3538; @param    BL          Shift count (it's specified as ECX:EBX, but we only use BL).
    3639;
    37 global $??U8RS
    38 $??U8RS:
     40global __U8RS
     41__U8RS:
    3942        push    ecx                     ; We're allowed to trash ECX, but why bother.
    4043
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette