Update contrib.
1 // Copyright (c) 1998-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 "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\win32crt.h
23 typedef void (__cdecl *_PVFV)(void);
28 // Static construction / destruction depends on compiler
31 // GCC creates two lists of functions to call, __CTOR_LIST__ and __DTOR_LIST__
32 #if defined(__GCC32__)
33 typedef void (*PFV)();
34 extern PFV __CTOR_LIST__[];
35 extern PFV __DTOR_LIST__[];
36 static inline void constructStatics()
39 while (__CTOR_LIST__[_i])
40 (*__CTOR_LIST__[_i++])();
42 static inline void destroyStatics()
45 while (__DTOR_LIST__[_i])
46 (*__DTOR_LIST__[_i++])();
49 // VC puts constructor/destructor function pointers in specially-named sections
51 #pragma data_seg(".CRT$XIA")
52 _PVFV __xi_a[] = { NULL };
53 #pragma data_seg(".CRT$XIZ")
54 _PVFV __xi_z[] = { NULL };
55 #pragma data_seg(".CRT$XCA")
56 _PVFV __xc_a[] = { NULL };
57 #pragma data_seg(".CRT$XCZ")
58 _PVFV __xc_z[] = { NULL };
59 #pragma data_seg(".CRT$XPA")
60 _PVFV __xp_a[] = { NULL };
61 #pragma data_seg(".CRT$XPZ")
62 _PVFV __xp_z[] = { NULL };
63 #pragma data_seg(".CRT$XTA")
64 _PVFV __xt_a[] = { NULL };
65 #pragma data_seg(".CRT$XTZ")
66 _PVFV __xt_z[] = { NULL };
67 #pragma data_seg() /* reset */
68 LOCAL_C void invokeTable(_PVFV *aStart,_PVFV *aEnd)
77 #define constructStatics() invokeTable(__xi_a,__xi_z), invokeTable(__xc_a,__xc_z)
78 #define destroyStatics() invokeTable(__xp_a,__xp_z), invokeTable(__xt_a,__xt_z)
81 #if defined(__VC32__) && !defined(__SYMC__)
83 // Some symbols generated by the VC++ compiler for floating point stuff.
87 #pragma data_seg(".data2")
88 #pragma bss_seg(".data2")
89 GLDEF_D TInt _adj_fdivr_m64;
90 GLDEF_D TInt _adjust_fdiv;
91 GLDEF_D TInt _adj_fdiv_r;
92 GLDEF_D TInt _adj_fdiv_m64;
93 GLDEF_D TInt _adj_fdiv_m32i;
94 GLDEF_D TInt _adj_fdivr_m32i;
97 extern "C" __declspec(selectany) int _fltused=0;
101 #endif // !__EPOC32__
123 __declspec(naked) __int64 _ftol2(void)
129 __declspec(naked) __int64 _ftol2_sse(void)
135 __declspec(naked) __int64 _ftol2_sse_excpt(void)
141 __declspec(naked) __int64 _ftol2_pentium4(void)
158 int __cdecl _purecall()
160 // Gets called for any unreplaced pure virtual methods.