os/kernelhwsrv/kernel/eka/include/win32crt.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-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 "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
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
// e32\include\win32crt.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
*/
sl@0
    22
sl@0
    23
typedef void (__cdecl *_PVFV)(void);
sl@0
    24
typedef void* HANDLE;
sl@0
    25
sl@0
    26
sl@0
    27
//
sl@0
    28
// Static construction / destruction depends on compiler
sl@0
    29
//
sl@0
    30
sl@0
    31
// GCC creates two lists of functions to call, __CTOR_LIST__ and __DTOR_LIST__
sl@0
    32
#if defined(__GCC32__)
sl@0
    33
typedef void (*PFV)();
sl@0
    34
extern PFV __CTOR_LIST__[];
sl@0
    35
extern PFV __DTOR_LIST__[];
sl@0
    36
static inline void constructStatics() 
sl@0
    37
	{
sl@0
    38
	TUint _i=1;
sl@0
    39
	while (__CTOR_LIST__[_i])
sl@0
    40
		(*__CTOR_LIST__[_i++])();
sl@0
    41
	}
sl@0
    42
static inline void destroyStatics() 
sl@0
    43
	{
sl@0
    44
	TUint _i=1; 
sl@0
    45
	while (__DTOR_LIST__[_i])
sl@0
    46
		(*__DTOR_LIST__[_i++])();
sl@0
    47
	}
sl@0
    48
sl@0
    49
// VC puts constructor/destructor function pointers in specially-named sections
sl@0
    50
#else
sl@0
    51
#pragma data_seg(".CRT$XIA")
sl@0
    52
_PVFV __xi_a[] = { NULL };
sl@0
    53
#pragma data_seg(".CRT$XIZ")
sl@0
    54
_PVFV __xi_z[] = { NULL };
sl@0
    55
#pragma data_seg(".CRT$XCA")
sl@0
    56
_PVFV __xc_a[] = { NULL };
sl@0
    57
#pragma data_seg(".CRT$XCZ")
sl@0
    58
_PVFV __xc_z[] = { NULL };
sl@0
    59
#pragma data_seg(".CRT$XPA")
sl@0
    60
_PVFV __xp_a[] = { NULL };
sl@0
    61
#pragma data_seg(".CRT$XPZ")
sl@0
    62
_PVFV __xp_z[] = { NULL };
sl@0
    63
#pragma data_seg(".CRT$XTA")
sl@0
    64
_PVFV __xt_a[] = { NULL };
sl@0
    65
#pragma data_seg(".CRT$XTZ")
sl@0
    66
_PVFV __xt_z[] = { NULL };
sl@0
    67
#pragma data_seg()      /* reset */
sl@0
    68
LOCAL_C void invokeTable(_PVFV *aStart,_PVFV *aEnd)
sl@0
    69
	{
sl@0
    70
	while (aStart<aEnd)
sl@0
    71
		{
sl@0
    72
		if (*aStart!=NULL)
sl@0
    73
			(**aStart)();
sl@0
    74
		aStart++;
sl@0
    75
        }
sl@0
    76
	}
sl@0
    77
#define constructStatics() invokeTable(__xi_a,__xi_z), invokeTable(__xc_a,__xc_z)
sl@0
    78
#define destroyStatics() invokeTable(__xp_a,__xp_z), invokeTable(__xt_a,__xt_z)
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#if defined(__VC32__) && !defined(__SYMC__)
sl@0
    82
//
sl@0
    83
// Some symbols generated by the VC++ compiler for floating point stuff.
sl@0
    84
//
sl@0
    85
extern "C" {
sl@0
    86
#ifndef __EPOC32__
sl@0
    87
#pragma data_seg(".data2")
sl@0
    88
#pragma bss_seg(".data2")
sl@0
    89
GLDEF_D TInt _adj_fdivr_m64;
sl@0
    90
GLDEF_D TInt _adjust_fdiv;
sl@0
    91
GLDEF_D TInt _adj_fdiv_r;
sl@0
    92
GLDEF_D TInt _adj_fdiv_m64;
sl@0
    93
GLDEF_D TInt _adj_fdiv_m32i;
sl@0
    94
GLDEF_D TInt _adj_fdivr_m32i;
sl@0
    95
#ifndef __FLTUSED
sl@0
    96
#define __FLTUSED
sl@0
    97
extern "C" __declspec(selectany) int _fltused=0;
sl@0
    98
#endif //__FLTUSED
sl@0
    99
#pragma data_seg()
sl@0
   100
#pragma bss_seg()
sl@0
   101
#endif // !__EPOC32__
sl@0
   102
sl@0
   103
__int64 _ftol(void)
sl@0
   104
    {
sl@0
   105
    __int64 retval;
sl@0
   106
    short tmpcw;
sl@0
   107
    short oldcw;
sl@0
   108
sl@0
   109
    _asm fstcw   oldcw 
sl@0
   110
    _asm wait
sl@0
   111
sl@0
   112
    _asm mov     ax, oldcw
sl@0
   113
    _asm or      ah, 0x0c
sl@0
   114
    _asm mov     tmpcw, ax
sl@0
   115
sl@0
   116
    _asm fldcw   tmpcw 
sl@0
   117
    _asm fistp   retval 
sl@0
   118
    _asm fldcw   oldcw 
sl@0
   119
sl@0
   120
    return retval;
sl@0
   121
    }
sl@0
   122
sl@0
   123
__declspec(naked) __int64 _ftol2(void)
sl@0
   124
	{
sl@0
   125
	_asm call _ftol;
sl@0
   126
	_asm ret;
sl@0
   127
	}
sl@0
   128
sl@0
   129
__declspec(naked) __int64 _ftol2_sse(void)
sl@0
   130
	{
sl@0
   131
	_asm call _ftol;
sl@0
   132
	_asm ret;
sl@0
   133
	}
sl@0
   134
sl@0
   135
__declspec(naked) __int64 _ftol2_sse_excpt(void)
sl@0
   136
	{
sl@0
   137
	_asm call _ftol;
sl@0
   138
	_asm ret;
sl@0
   139
	}
sl@0
   140
sl@0
   141
__declspec(naked) __int64 _ftol2_pentium4(void)
sl@0
   142
	{
sl@0
   143
	_asm call _ftol;
sl@0
   144
	_asm ret;
sl@0
   145
	}
sl@0
   146
sl@0
   147
}
sl@0
   148
sl@0
   149
extern "C"
sl@0
   150
void abort()
sl@0
   151
	{
sl@0
   152
	abort();
sl@0
   153
	}
sl@0
   154
#endif
sl@0
   155
sl@0
   156
sl@0
   157
extern "C"
sl@0
   158
int __cdecl _purecall()
sl@0
   159
/*
sl@0
   160
// Gets called for any unreplaced pure virtual methods.
sl@0
   161
*/
sl@0
   162
	{
sl@0
   163
	return 0;
sl@0
   164
	}