os/kernelhwsrv/kernel/eka/include/u32exec.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1995-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // e32\include\u32exec.h
    15 // 
    16 // WARNING: This file contains some APIs which are internal and are subject
    17 //          to change without notice. Such APIs should therefore not be used
    18 //          outside the Kernel and Hardware Services package.
    19 //
    20 
    21 /**
    22  @file
    23  @internalComponent
    24 */
    25 
    26 #ifndef __U32EXEC_H__
    27 #define __U32EXEC_H__
    28 #include <u32std.h>
    29 #include <cpudefs.h>
    30 
    31 #ifdef __KERNEL_MODE__
    32 #define	EXEC_INT64		Int64
    33 #define	EXEC_TIME		TTimeK
    34 #else
    35 #define	EXEC_INT64		TInt64
    36 #define	EXEC_TIME		TInt64
    37 #endif
    38 
    39 //#ifdef __SYMC__
    40 //#define __EXECDECL__
    41 //#else
    42 #define __EXECDECL__	__NAKED__
    43 //#endif
    44 
    45 #if defined(__WINS__)
    46 
    47 // Executive call macros for WINS
    48 
    49 #define EXECUTIVE_FAST	0x00800000
    50 #define EXECUTIVE_SLOW	0x00000000
    51 
    52 #define __DISPATCH(func)			\
    53 	__asm lea	edx, [esp + 0x4]	\
    54 	__asm mov	ecx, (func)			\
    55 	__asm jmp  [TheDispatcher]
    56 
    57 
    58 #define	FAST_EXEC0(n)	__DISPATCH((n)|EXECUTIVE_FAST)
    59 #define	FAST_EXEC1(n)	__DISPATCH((n)|EXECUTIVE_FAST)
    60 #define	SLOW_EXEC0(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    61 #define	SLOW_EXEC1(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    62 #define	SLOW_EXEC2(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    63 #define SLOW_EXEC3(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    64 #define SLOW_EXEC4(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    65 
    66 #define	KFAST_EXEC0(n)	__DISPATCH((n)|EXECUTIVE_FAST)
    67 #define	KFAST_EXEC1(n)	__DISPATCH((n)|EXECUTIVE_FAST)
    68 #define	KSLOW_EXEC0(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    69 #define	KSLOW_EXEC1(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    70 #define	KSLOW_EXEC2(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    71 #define KSLOW_EXEC3(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    72 #define KSLOW_EXEC4(n)	__DISPATCH((n)|EXECUTIVE_SLOW)
    73 
    74 #elif defined(__CPU_X86)
    75 
    76 // Executive call macros for X86
    77 #ifdef __GCC32__
    78 #define	FAST_EXEC0(n)	asm("mov eax, %0": :"i"(n)); \
    79 						asm("int 0x20 \n ret")
    80 #define	FAST_EXEC1(n)	asm("mov eax, %0": :"i"(n)); \
    81 						asm("mov ecx, [esp+4] \n int 0x20 \n ret")
    82 #define	SLOW_EXEC0(n)	asm("mov eax, %0": :"i"(n)); \
    83 						asm("int 0x21 \n ret")
    84 #define	SLOW_EXEC1(n)	asm("mov eax, %0": :"i"(n)); \
    85 						asm("mov ecx, [esp+4] \n int 0x21 \n ret")
    86 #define	SLOW_EXEC2(n)	asm("mov eax, %0": :"i"(n)); \
    87 						asm("mov ecx, [esp+4] \n mov edx, [esp+8] \n int 0x21 \n ret")
    88 #define SLOW_EXEC3(n)	asm("mov eax, %0": :"i"(n)); \
    89 						asm("push ebx         \n" \
    90 							"mov ecx, [esp+8] \n" \
    91 							"mov edx, [esp+12]\n" \
    92 							"mov ebx, [esp+16]\n" \
    93 							"int 0x21         \n" \
    94 							"pop ebx          \n" \
    95 						    "ret")
    96 
    97 #define SLOW_EXEC4(n)	asm("mov eax, %0": :"i"(n)); \
    98 						asm("push ebx         \n" \
    99 							"push esi         \n" \
   100 							"mov ecx, [esp+12]\n" \
   101 							"mov edx, [esp+16]\n" \
   102 							"mov ebx, [esp+20]\n" \
   103 							"mov esi, [esp+24]\n" \
   104 							"int 0x21         \n" \
   105 							"pop esi          \n" \
   106 							"pop ebx          \n" \
   107 							"ret")
   108 #else
   109 #define	FAST_EXEC0(n)	_asm mov eax, n _asm int 20h _asm ret
   110 #define	FAST_EXEC1(n)	_asm mov eax, n _asm mov ecx, [esp+4] _asm int 20h _asm ret
   111 
   112 #define	SLOW_EXEC0(n)	_asm mov eax, n _asm int 21h _asm ret
   113 #define	SLOW_EXEC1(n)	_asm mov eax, n _asm mov ecx, [esp+4] _asm int 21h _asm ret
   114 #define	SLOW_EXEC2(n)	_asm mov eax, n _asm mov ecx, [esp+4] _asm mov edx, [esp+8] _asm int 21h _asm ret
   115 
   116 #define SLOW_EXEC3(n)	_asm mov eax, n			\
   117 						_asm push ebx			\
   118 						_asm mov ecx, [esp+8]	\
   119 						_asm mov edx, [esp+12]	\
   120 						_asm mov ebx, [esp+16]	\
   121 						_asm int 21h			\
   122 						_asm pop ebx			\
   123 						_asm ret
   124 
   125 #define SLOW_EXEC4(n)	_asm mov eax, n			\
   126 						_asm push ebx			\
   127 						_asm push esi			\
   128 						_asm mov ecx, [esp+12]	\
   129 						_asm mov edx, [esp+16]	\
   130 						_asm mov ebx, [esp+20]	\
   131 						_asm mov esi, [esp+24]	\
   132 						_asm int 21h			\
   133 						_asm pop esi			\
   134 						_asm pop ebx			\
   135 						_asm ret
   136 #endif
   137 
   138 #define	KFAST_EXEC0(n)	FAST_EXEC0(n)
   139 #define	KFAST_EXEC1(n)	FAST_EXEC1(n)
   140 #define	KSLOW_EXEC0(n)	SLOW_EXEC0(n)
   141 #define	KSLOW_EXEC1(n)	SLOW_EXEC1(n)
   142 #define	KSLOW_EXEC2(n)	SLOW_EXEC2(n)
   143 #define KSLOW_EXEC3(n)	SLOW_EXEC3(n)
   144 #define KSLOW_EXEC4(n)	SLOW_EXEC4(n)
   145 
   146 #elif defined(__CPU_ARM)
   147 
   148 // Executive call macros for ARM
   149 
   150 #define EXECUTIVE_FAST	0x00800000
   151 #define EXECUTIVE_SLOW	0x00000000
   152 
   153 #define __DISPATCH(n)				\
   154 	asm("swi %a0" : : "i" (n));     \
   155 	__JUMP(,lr);
   156 
   157 #define	FAST_EXEC0(n)		__DISPATCH((n)|EXECUTIVE_FAST)
   158 #define	FAST_EXEC1(n)		__DISPATCH((n)|EXECUTIVE_FAST)
   159 #define	SLOW_EXEC0(n)		__DISPATCH((n)|EXECUTIVE_SLOW)
   160 #define	SLOW_EXEC1(n)		__DISPATCH((n)|EXECUTIVE_SLOW)
   161 #define	SLOW_EXEC2(n)		__DISPATCH((n)|EXECUTIVE_SLOW)
   162 #define SLOW_EXEC3(n)		__DISPATCH((n)|EXECUTIVE_SLOW)
   163 #define SLOW_EXEC4(n)		__DISPATCH((n)|EXECUTIVE_SLOW)
   164 
   165 #define __KDISPATCH(n)				\
   166 	asm("stmfd sp!, {ip,lr} ");		\
   167 	asm("swi %a0" : : "i" (n));     \
   168 	__POPRET("ip,");
   169 
   170 #define	KFAST_EXEC0(n)		__KDISPATCH((n)|EXECUTIVE_FAST)
   171 #define	KFAST_EXEC1(n)		__KDISPATCH((n)|EXECUTIVE_FAST)
   172 #define	KSLOW_EXEC0(n)		__KDISPATCH((n)|EXECUTIVE_SLOW)
   173 #define	KSLOW_EXEC1(n)		__KDISPATCH((n)|EXECUTIVE_SLOW)
   174 #define	KSLOW_EXEC2(n)		__KDISPATCH((n)|EXECUTIVE_SLOW)
   175 #define KSLOW_EXEC3(n)		__KDISPATCH((n)|EXECUTIVE_SLOW)
   176 #define KSLOW_EXEC4(n)		__KDISPATCH((n)|EXECUTIVE_SLOW)
   177 
   178 #define __DISPATCH_NR(n)			\
   179 	asm("swi %a0" : : "i" (n));
   180 
   181 #define	FAST_EXEC0_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_FAST)
   182 #define	FAST_EXEC1_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_FAST)
   183 #define	SLOW_EXEC0_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_SLOW)
   184 #define	SLOW_EXEC1_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_SLOW)
   185 #define	SLOW_EXEC2_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_SLOW)
   186 #define SLOW_EXEC3_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_SLOW)
   187 #define SLOW_EXEC4_NR(n)	__DISPATCH_NR((n)|EXECUTIVE_SLOW)
   188 
   189 #define __KDISPATCH_NR(n)			\
   190 	asm("swi %a0" : : "i" (n));
   191 
   192 #define	KFAST_EXEC0_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_FAST)
   193 #define	KFAST_EXEC1_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_FAST)
   194 #define	KSLOW_EXEC0_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_SLOW)
   195 #define	KSLOW_EXEC1_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_SLOW)
   196 #define	KSLOW_EXEC2_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_SLOW)
   197 #define KSLOW_EXEC3_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_SLOW)
   198 #define KSLOW_EXEC4_NR(n)	__KDISPATCH_NR((n)|EXECUTIVE_SLOW)
   199 
   200 #else
   201 #error Unknown CPU
   202 #endif
   203 
   204 #ifdef __LEAVE_EQUALS_THROW__
   205 // Hide TTrap to catch unwary uses of the old cleanup
   206 // mechanism at compile time
   207 class TTrap;
   208 #endif //__LEAVE_EQUALS_THROW__
   209 
   210 #include <exec_enum.h>
   211 #include <e32btrace.h>
   212 #include <exec_user.h>
   213 
   214 #endif