os/kernelhwsrv/kernel/eka/compsupp/rvct/ucppinit.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 usrt.lib and ksrt.lib.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
extern "C" __asm void __cpp_initialize__aeabi_()
sl@0
    20
    {
sl@0
    21
    CODE32
sl@0
    22
sl@0
    23
    IMPORT |SHT$$INIT_ARRAY$$Base|  [WEAK]
sl@0
    24
    IMPORT |SHT$$INIT_ARRAY$$Limit| [WEAK]
sl@0
    25
sl@0
    26
    // Export std::nothrow from here.
sl@0
    27
    EXPORT    _ZSt7nothrow
sl@0
    28
    
sl@0
    29
sl@0
    30
    STMFD    r13!,{r3-r5,r14}
sl@0
    31
sl@0
    32
sl@0
    33
    LDR      r4,base
sl@0
    34
    LDR      r5,limit
sl@0
    35
    CMP      r4,r5
sl@0
    36
    
sl@0
    37
    // Exit if the array is empty.
sl@0
    38
    LDMEQFD  r13!,{r3-r5,pc}
sl@0
    39
sl@0
    40
loop
sl@0
    41
    LDR      r0,[r4,#0]
sl@0
    42
    #if __ARMCC_VERSION > 300000
sl@0
    43
    ADD      r0,r0,r4
sl@0
    44
    #endif
sl@0
    45
sl@0
    46
#ifdef __MARM_ARMV4__
sl@0
    47
    ADR      r14,ret
sl@0
    48
    MOV      pc,r0
sl@0
    49
#else
sl@0
    50
    BLX      r0
sl@0
    51
#endif
sl@0
    52
sl@0
    53
ret
sl@0
    54
    ADD      r4,r4,#4
sl@0
    55
    CMP      r4,r5
sl@0
    56
    BNE      loop
sl@0
    57
    LDMFD    r13!,{r3-r5,pc}
sl@0
    58
sl@0
    59
base
sl@0
    60
    DCD    |SHT$$INIT_ARRAY$$Base|
sl@0
    61
limit
sl@0
    62
    DCD    |SHT$$INIT_ARRAY$$Limit|
sl@0
    63
sl@0
    64
_ZSt7nothrow
sl@0
    65
    }
sl@0
    66