This commit relocates the "C++ ABI library" components such as global constructor/destructor and initialiser handlers to a dedicated directory, `lib/cpp/abi`, in order to provide a clear separation between the C++ ABI/runtime library and the standard C++ library components. Note that the Zephyr C++ ABI library currently implements the GNU/GCC C++ ABI, which is the de-facto standard ABI used by many compilers including Clang -- it may be necessary to sub-divide the `lib/cpp/abi` into `lib/cpp/abi/gnu` and `lib/cpp/abi/someotherabi` in the future when adding the support for a C++ compiler that expects an ABI vastly different from the GNU C++ ABI. Signed-off-by: Stephanos Ioannidis <stephanos.ioannidis@nordicsemi.no>
43 lines
1 KiB
C
43 lines
1 KiB
C
/*
|
|
* Copyright (c) 2012-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file - Constructor module
|
|
* @brief
|
|
* The ctors section contains a list of function pointers that execute the
|
|
* C++ constructors of static global objects. These must be executed before
|
|
* the application's main() routine.
|
|
*
|
|
* NOTE: Not all compilers put those function pointers into the ctors section;
|
|
* some put them into the init_array section instead.
|
|
*/
|
|
|
|
/* What a constructor function pointer looks like */
|
|
|
|
typedef void (*CtorFuncPtr)(void);
|
|
|
|
/* Constructor function pointer list is generated by the linker script. */
|
|
|
|
extern CtorFuncPtr __ZEPHYR_CTOR_LIST__[];
|
|
extern CtorFuncPtr __ZEPHYR_CTOR_END__[];
|
|
|
|
/**
|
|
*
|
|
* @brief Invoke all C++ style global object constructors
|
|
*
|
|
* This routine is invoked by the kernel prior to the execution of the
|
|
* application's main().
|
|
*/
|
|
void __do_global_ctors_aux(void)
|
|
{
|
|
unsigned int nCtors;
|
|
|
|
nCtors = (unsigned long)__ZEPHYR_CTOR_LIST__[0];
|
|
|
|
while (nCtors >= 1U) {
|
|
__ZEPHYR_CTOR_LIST__[nCtors--]();
|
|
}
|
|
}
|