crt_init.c 2.5 KB
Newer Older
1 2 3
/*
* File      : crt_init.c
* This file is part of Device File System in RT-Thread RTOS
B
Bernard.Xiong 已提交
4
* COPYRIGHT (C) 2008-2015, RT-Thread Development Team
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
*
*  This program is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License along
*  with this program; if not, write to the Free Software Foundation, Inc.,
*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Change Logs:
* Date           Author       Notes
* 2014-12-03     Bernard      Add copyright header.
* 2014-12-29     Bernard      Add cplusplus initialization for ARMCC.
24
* 2016-06-28     Bernard      Add _init/_fini routines for GCC.
25
* 2016-10-02     Bernard      Add WEAK for cplusplus_system_init routine.
26 27
*/

28 29
#include <rtthread.h>

30 31 32 33 34
#ifdef __CC_ARM
extern void $Super$$__cpp_initialize__aeabi_(void);
/* we need to change the cpp_initialize order */
void $Sub$$__cpp_initialize__aeabi_(void)
{
35
    /* empty */
36
}
37 38
#elif defined(__GNUC__) && !defined(__CS_SOURCERYGXX_MAJ__)
/* The _init()/_fini() routines has been defined in codesourcery g++ lite */
39 40 41 42
void _init()
{
}

43
void _fini()
44 45
{
}
W
weety 已提交
46 47 48

WEAK void *__dso_handle = 0;

49 50
#endif

51
WEAK
52 53 54
int cplusplus_system_init(void)
{
#if defined(__GNUC__) && !defined(__CC_ARM)
55 56 57 58
    typedef void (*pfunc) ();
    extern pfunc __ctors_start__[];
    extern pfunc __ctors_end__[];
    pfunc *p;
59

60 61
    for (p = __ctors_start__; p < __ctors_end__; p++)
        (*p)();
62

63
#elif defined(__CC_ARM)
64
    /* If there is no SHT$$INIT_ARRAY, calling
B
Bernard Xiong 已提交
65 66 67
     * $Super$$__cpp_initialize__aeabi_() will cause fault. At least until Keil5.12
     * the problem still exists. So we have to initialize the C++ runtime by ourself.
     */
68 69 70
    typedef void PROC();
    extern const unsigned long SHT$$INIT_ARRAY$$Base[];
    extern const unsigned long SHT$$INIT_ARRAY$$Limit[];
71

72 73 74 75 76 77 78 79
    const unsigned long *base = SHT$$INIT_ARRAY$$Base;
    const unsigned long *lim  = SHT$$INIT_ARRAY$$Limit;

    for (; base != lim; base++)
    {
        PROC *proc = (PROC*)((const char*)base + *base);
        (*proc)();
    }
80 81 82 83 84
#endif

    return 0;
}
INIT_COMPONENT_EXPORT(cplusplus_system_init);