Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "ARM EABI LICENCE.txt"
5 // which accompanies this distribution, and is available
6 // in kernel/eka/compsupp.
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file is part of usrt.lib (but not ksrt.lib).
21 typedef void (DTOR)(void *);
30 #define MAX_DTOR_RECORDS 256
31 dtd dtor_rec[MAX_DTOR_RECORDS];
33 typedef dtd** dso_handle;
34 dtd * __dso_handle = &dtor_rec[MAX_DTOR_RECORDS];
37 // This is called by compiler generated code to record needed destructions of
38 // dynamically initialized (ctor) top level (BSS) data.
39 // I guess this is more efficient for the compiler than __cxa_atexit, since
40 // it takes the object that needs dtoring as its first arg, which means its in
41 // the right register when the ctor returns.
42 void __aeabi_atexit(void *aObject, void (*aDtor)(void *), dso_handle aHandle)
44 dtd * drec = *aHandle;
47 if (drec < &dtor_rec[0])
48 return; // Need to decide what to do here
56 int __cxa_atexit( void (*aDtor)(void *), void *aObject, dso_handle aHandle )
58 __aeabi_atexit(aObject, aDtor, aHandle);
60 // This is what the C++ GABI spec says to do!!
61 if (*aHandle < &dtor_rec[0])
67 void __cxa_finalize(dso_handle d)
70 dtd * lim = &dtor_rec[MAX_DTOR_RECORDS];
74 drec->dtor(drec->obj);
81 void run_static_dtors()
83 __cxa_finalize(&__dso_handle);