kernel/eka/compsupp/rvct2_1/dfpaeabi.cpp
changeset 9 96e5fb8b040d
child 10 36bfc973b146
equal deleted inserted replaced
-1:000000000000 9:96e5fb8b040d
       
     1 /*
       
     2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 * This function is simple a way to get these EXPORT statements into
       
    16 * the .in file. These symbols will therefore be referenced from
       
    17 * the export table and so **forced** into the DLL
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 __asm void __rt_exporter_dummy(void)
       
    23 {
       
    24 	AREA |.directive|, READONLY, NOALLOC
       
    25 
       
    26 	PRESERVE8
       
    27 
       
    28 	DCB "#<SYMEDIT>#\n"
       
    29 
       
    30 // Standard double precision floating-point arithmetic helper functions
       
    31 
       
    32 	DCB "EXPORT __aeabi_dadd\n"
       
    33 	DCB "EXPORT __aeabi_ddiv\n"
       
    34 	DCB "EXPORT __aeabi_dmul\n"
       
    35 	DCB "EXPORT __aeabi_dneg\n"
       
    36 	DCB "EXPORT __aeabi_drsub\n"
       
    37 	DCB "EXPORT __aeabi_dsub\n"
       
    38 
       
    39 // Standard double precision floating-point comparison helper functions
       
    40 
       
    41 	DCB "EXPORT __aeabi_cdcmpeq\n"
       
    42 	DCB "EXPORT __aeabi_cdcmple\n"
       
    43 	DCB "EXPORT __aeabi_cdrcmple\n"
       
    44 	DCB "EXPORT __aeabi_dcmpeq\n"
       
    45 	DCB "EXPORT __aeabi_dcmplt\n"
       
    46 	DCB "EXPORT __aeabi_dcmple\n"
       
    47 	DCB "EXPORT __aeabi_dcmpge\n"
       
    48 	DCB "EXPORT __aeabi_dcmpgt\n"
       
    49 	DCB "EXPORT __aeabi_dcmpun\n"
       
    50 
       
    51 // Standard single precision floating-point arithmetic helper functions
       
    52 
       
    53 	DCB "EXPORT __aeabi_fadd\n"
       
    54 	DCB "EXPORT __aeabi_fdiv\n"
       
    55 	DCB "EXPORT __aeabi_fmul\n"
       
    56 	DCB "EXPORT __aeabi_fneg\n"
       
    57 	DCB "EXPORT __aeabi_frsub\n"
       
    58 	DCB "EXPORT __aeabi_fsub\n"
       
    59 
       
    60 // Standard single precision floating-point comparison helper functions
       
    61 
       
    62 	DCB "EXPORT __aeabi_cfcmpeq\n"
       
    63 	DCB "EXPORT __aeabi_cfcmple\n"
       
    64 	DCB "EXPORT __aeabi_cfrcmple\n"
       
    65 	DCB "EXPORT __aeabi_fcmpeq\n"
       
    66 	DCB "EXPORT __aeabi_fcmplt\n"
       
    67 	DCB "EXPORT __aeabi_fcmple\n"
       
    68 	DCB "EXPORT __aeabi_fcmpge\n"
       
    69 	DCB "EXPORT __aeabi_fcmpgt\n"
       
    70 	DCB "EXPORT __aeabi_fcmpun\n"
       
    71 
       
    72 // Standard floating-point to integer conversions
       
    73 
       
    74 	DCB "EXPORT __aeabi_d2iz\n"
       
    75 	DCB "EXPORT __aeabi_d2uiz\n"
       
    76 	DCB "EXPORT __aeabi_d2lz\n"
       
    77 	DCB "EXPORT __aeabi_d2ulz\n"
       
    78 	DCB "EXPORT __aeabi_f2iz\n"
       
    79 	DCB "EXPORT __aeabi_f2uiz\n"
       
    80 	DCB "EXPORT __aeabi_f2lz\n"
       
    81 	DCB "EXPORT __aeabi_f2ulz\n"
       
    82 
       
    83 // Standard conversions between floating types
       
    84 
       
    85 	DCB "EXPORT __aeabi_d2f\n"
       
    86 	DCB "EXPORT __aeabi_f2d\n"
       
    87 
       
    88 // Standard integer to floating-point conversions
       
    89 
       
    90 	DCB "EXPORT __aeabi_i2d\n"
       
    91 	DCB "EXPORT __aeabi_ui2d\n"
       
    92 	DCB "EXPORT __aeabi_l2d\n"
       
    93 	DCB "EXPORT __aeabi_ul2d\n"
       
    94 	DCB "EXPORT __aeabi_i2f\n"
       
    95 	DCB "EXPORT __aeabi_ui2f\n"
       
    96 	DCB "EXPORT __aeabi_l2f\n"
       
    97 	DCB "EXPORT __aeabi_ul2f\n"
       
    98 }