os/kernelhwsrv/kernel/eka/compsupp/rvct2_1/dfprvct2_1.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
	// From %ARMLIB%\armlib\f_a_p.l
sl@0
    28
sl@0
    29
	DCB "EXPORT _dfix_r\n"
sl@0
    30
	DCB "EXPORT _dfixu_r\n"
sl@0
    31
	DCB "EXPORT _ffix_r\n"
sl@0
    32
	DCB "EXPORT _ffixu_r\n"
sl@0
    33
	DCB "EXPORT _ll_sfrom_d_r\n"
sl@0
    34
	DCB "EXPORT _ll_ufrom_d_r\n"
sl@0
    35
	DCB "EXPORT _ll_sfrom_f_r\n"
sl@0
    36
	DCB "EXPORT _ll_ufrom_f_r\n"
sl@0
    37
sl@0
    38
	DCB "EXPORT _dcmpge\n"
sl@0
    39
	DCB "EXPORT _fcmpge\n"
sl@0
    40
sl@0
    41
	DCB "EXPORT _dneq\n"		// dcmp.o
sl@0
    42
	DCB "EXPORT _fneq\n"	 	// fcmp.o
sl@0
    43
sl@0
    44
	DCB "EXPORT _drem\n"	 	// drem.o
sl@0
    45
	DCB "EXPORT _drnd\n"	 	// drnd.o
sl@0
    46
	DCB "EXPORT _frem\n"	 	// frem.o
sl@0
    47
	DCB "EXPORT _frnd\n"	 	// frnd.o
sl@0
    48
sl@0
    49
	DCB "EXPORT _dabs\n"		// basic.o 
sl@0
    50
	DCB "EXPORT _fabs\n"		// basic.o 
sl@0
    51
sl@0
    52
sl@0
    53
	DCB "EXPORT __dcmp4\n"		// dcmp.o
sl@0
    54
	DCB "EXPORT _dcmp4\n"		// dcmp.o
sl@0
    55
	DCB "EXPORT __fcmp4\n"		// fcmp4.o
sl@0
    56
	DCB "EXPORT _fcmp4\n"	 	// fcmp4.o
sl@0
    57
sl@0
    58
	DCB "EXPORT _drdiv\n"		// ddiv.o
sl@0
    59
	DCB "EXPORT _frdiv\n"	 	// fdiv.o
sl@0
    60
sl@0
    61
	DCB "EXPORT _dfltu\n"		// dflt.o
sl@0
    62
	DCB "EXPORT _dflt\n"		// dflt.o
sl@0
    63
	DCB "EXPORT _ffltu\n"	 	// fflt.o
sl@0
    64
	DCB "EXPORT _fflt\n"	 	// fflt.o
sl@0
    65
	
sl@0
    66
	DCB "EXPORT _dsqrt\n"	 	// dsqrt.o
sl@0
    67
	DCB "EXPORT _fsqrt\n"	 	// fsqrt.o
sl@0
    68
sl@0
    69
}