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