os/kernelhwsrv/kernel/eka/include/win32atx.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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\win32atx.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __WIN32ATX_H__
sl@0
    24
#define __WIN32ATX_H__
sl@0
    25
sl@0
    26
#if defined(__VC32__)
sl@0
    27
sl@0
    28
#define	MAX_ATEXIT_HANDLERS	255
sl@0
    29
sl@0
    30
#ifdef __KERNEL_MODE__
sl@0
    31
#define PANIC()	Kern::Fault("ATEXIT", __LINE__)
sl@0
    32
#else
sl@0
    33
_LIT(KLitAtExitPanic,"ATEXIT");
sl@0
    34
#define PANIC()	User::Panic(KLitAtExitPanic, __LINE__)
sl@0
    35
#endif
sl@0
    36
sl@0
    37
extern "C" {
sl@0
    38
typedef void (__cdecl* TAtExit)(void);
sl@0
    39
static TUint sp=0;
sl@0
    40
static TAtExit handlers[MAX_ATEXIT_HANDLERS];
sl@0
    41
sl@0
    42
int atexit(TAtExit aFunc)
sl@0
    43
	{
sl@0
    44
	if (sp>=MAX_ATEXIT_HANDLERS)
sl@0
    45
		PANIC();
sl@0
    46
	handlers[sp++]=aFunc;
sl@0
    47
	return 0;
sl@0
    48
	}
sl@0
    49
sl@0
    50
void __call_atexit_handlers()
sl@0
    51
	{
sl@0
    52
	while(sp)
sl@0
    53
		(*handlers[--sp])();
sl@0
    54
	}
sl@0
    55
sl@0
    56
#pragma data_seg(".CRT$XPU")
sl@0
    57
TAtExit __xp_a[] = { __call_atexit_handlers };
sl@0
    58
sl@0
    59
}
sl@0
    60
sl@0
    61
#elif defined(__CW32__)
sl@0
    62
sl@0
    63
struct SDestructorEntry
sl@0
    64
	{
sl@0
    65
	SDestructorEntry* iNext;
sl@0
    66
	TAny* iDstrFn;
sl@0
    67
	TAny* iObj;
sl@0
    68
	};
sl@0
    69
sl@0
    70
SDestructorEntry* DEListHead;
sl@0
    71
sl@0
    72
extern "C" {
sl@0
    73
sl@0
    74
void* __register_global_object(void* obj, void* dfn, void* entry)
sl@0
    75
	{
sl@0
    76
	SDestructorEntry* e = (SDestructorEntry*)entry;
sl@0
    77
	e->iNext = DEListHead;
sl@0
    78
	e->iDstrFn = dfn;
sl@0
    79
	e->iObj = obj;
sl@0
    80
	DEListHead = e;
sl@0
    81
	return obj;
sl@0
    82
	}
sl@0
    83
sl@0
    84
__declspec(naked) void __destroy_global_chain(void)
sl@0
    85
	{
sl@0
    86
	_asm push ebp
sl@0
    87
	_asm mov ebp, esp
sl@0
    88
	_asm push ebx
sl@0
    89
	_asm lea ebx, DEListHead
sl@0
    90
	dgc1:
sl@0
    91
	_asm mov ebx, [ebx]
sl@0
    92
	_asm test ebx, ebx
sl@0
    93
	_asm jz dgc0
sl@0
    94
	_asm mov ecx, [ebx+8]
sl@0
    95
	_asm call dword ptr [ebx+4]
sl@0
    96
	_asm jmp dgc1
sl@0
    97
	dgc0:
sl@0
    98
	_asm lea ebx, DEListHead
sl@0
    99
	_asm mov [ebx], 0
sl@0
   100
	_asm pop ebx
sl@0
   101
	_asm mov esp, ebp
sl@0
   102
	_asm pop ebp
sl@0
   103
	_asm ret
sl@0
   104
	}
sl@0
   105
sl@0
   106
#pragma data_seg(".CRT$XPU")
sl@0
   107
void (*__xp_a[])(void) = { &__destroy_global_chain };
sl@0
   108
}
sl@0
   109
sl@0
   110
#elif defined(__GCC32__)
sl@0
   111
// todo: figure out what to do here
sl@0
   112
#else
sl@0
   113
#error Unknown X86 compiler
sl@0
   114
#endif
sl@0
   115
sl@0
   116
#endif