sl@0
|
1 |
// Copyright (c) 2008-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 file is part of drtaeabi.dll.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32cmn.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
// Call our implementations of memcpy/move/set/clr rather than the ARM supplied
|
sl@0
|
22 |
// ones.
|
sl@0
|
23 |
//
|
sl@0
|
24 |
// Note that the AEABI switched the order of arg2 and arg3 to save an instruction
|
sl@0
|
25 |
// when calling 'memset' from 'memclr'.
|
sl@0
|
26 |
//
|
sl@0
|
27 |
// Prototypes are:
|
sl@0
|
28 |
// void __aeabi_memset8(TAny* aTrg, unsigned int aLength, TInt aValue);
|
sl@0
|
29 |
// void __aeabi_memset4(TAny* aTrg, unsigned int aLength, TInt aValue);
|
sl@0
|
30 |
// void __aeabi_memset(TAny* aTrg, unsigned int aLength, TInt aValue);
|
sl@0
|
31 |
|
sl@0
|
32 |
extern "C" __asm void make_mem_functions_call_euser_versions()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
CODE32
|
sl@0
|
35 |
|
sl@0
|
36 |
IMPORT memset [DYNAMIC]
|
sl@0
|
37 |
IMPORT memclr [DYNAMIC]
|
sl@0
|
38 |
IMPORT memcpy [DYNAMIC]
|
sl@0
|
39 |
IMPORT memmove [DYNAMIC]
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT __aeabi_memset [DYNAMIC]
|
sl@0
|
42 |
EXPORT __aeabi_memset4 [DYNAMIC]
|
sl@0
|
43 |
EXPORT __aeabi_memset8 [DYNAMIC]
|
sl@0
|
44 |
EXPORT __aeabi_memclr [DYNAMIC]
|
sl@0
|
45 |
EXPORT __aeabi_memclr4 [DYNAMIC]
|
sl@0
|
46 |
EXPORT __aeabi_memclr8 [DYNAMIC]
|
sl@0
|
47 |
EXPORT __aeabi_memcpy [DYNAMIC]
|
sl@0
|
48 |
EXPORT __aeabi_memcpy4 [DYNAMIC]
|
sl@0
|
49 |
EXPORT __aeabi_memcpy8 [DYNAMIC]
|
sl@0
|
50 |
EXPORT __aeabi_memmove [DYNAMIC]
|
sl@0
|
51 |
EXPORT __aeabi_memmove4 [DYNAMIC]
|
sl@0
|
52 |
EXPORT __aeabi_memmove8 [DYNAMIC]
|
sl@0
|
53 |
|
sl@0
|
54 |
__aeabi_memset
|
sl@0
|
55 |
__aeabi_memset4
|
sl@0
|
56 |
__aeabi_memset8
|
sl@0
|
57 |
mov r3, r1
|
sl@0
|
58 |
mov r1, r2
|
sl@0
|
59 |
mov r2, r3
|
sl@0
|
60 |
b memset
|
sl@0
|
61 |
|
sl@0
|
62 |
__aeabi_memclr8
|
sl@0
|
63 |
__aeabi_memclr4
|
sl@0
|
64 |
__aeabi_memclr
|
sl@0
|
65 |
b memclr
|
sl@0
|
66 |
|
sl@0
|
67 |
__aeabi_memcpy8
|
sl@0
|
68 |
__aeabi_memcpy4
|
sl@0
|
69 |
__aeabi_memcpy
|
sl@0
|
70 |
b memcpy
|
sl@0
|
71 |
|
sl@0
|
72 |
__aeabi_memmove8
|
sl@0
|
73 |
__aeabi_memmove4
|
sl@0
|
74 |
__aeabi_memmove
|
sl@0
|
75 |
b memmove
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|