os/kernelhwsrv/kernel/eka/compsupp/gcce/gcce.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kernel/eka/compsupp/gcce/gcce.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,175 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of the License "ARM EABI LICENCE.txt"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// in kernel/eka/compsupp.
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// e32\compsupp\gcce\gcce.h
    1.18 +// This is the preinclude file for the GCC-E compiler
    1.19 +// It contains all the compiler specific definitions required by the SOS source
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +/**
    1.24 + @file
    1.25 + @publishedAll
    1.26 + @released
    1.27 +*/
    1.28 +
    1.29 +#if defined(__PRODUCT_INCLUDE__)
    1.30 +#include __PRODUCT_INCLUDE__
    1.31 +#endif
    1.32 +
    1.33 +// stuff from e32def.h
    1.34 +
    1.35 +#define __NO_CLASS_CONSTS__
    1.36 +#define __NORETURN__ __declspec(noreturn)
    1.37 +#define __NORETURN_TERMINATOR()
    1.38 +
    1.39 +#define IMPORT_C __declspec(dllimport) 
    1.40 +#define EXPORT_C __declspec(dllexport)
    1.41 +
    1.42 +#define IMPORT_D __declspec(dllimport) 
    1.43 +#define EXPORT_D __declspec(dllexport)
    1.44 +
    1.45 +
    1.46 +
    1.47 +
    1.48 +/**
    1.49 +Declares a class as being non-sharable.
    1.50 +
    1.51 +If a class is non-sharable, then a class implemented in another DLL cannot
    1.52 +derive (inherit) from that class.
    1.53 +
    1.54 +Declaring a class as non-sharable prevents the compiler from exporting compiler
    1.55 +implementation-specific symbols, i.e. run-time type-information and virtual
    1.56 +tables. This prevents classes in other DLLs from being able to derive from it.
    1.57 +
    1.58 +Note :
    1.59 +- if a class is marked as non-sharable, then Symbian OS requires all
    1.60 +classes that are derived from that class, and which are also implemented in the same DLL, 
    1.61 +to be declared as non-sharable.
    1.62 +- by default, a class is sharable.
    1.63 +
    1.64 +The following code fragment shows how a non-sharable class is declared.
    1.65 +@code
    1.66 +NONSHARABLE_CLASS(CMyClass) : public CBase
    1.67 +	{
    1.68 +	public :
    1.69 +	...
    1.70 +	private :
    1.71 +	...
    1.72 +	}
    1.73 +@endcode
    1.74 +
    1.75 +@param x  The name of the class to be declared as non-sharable.
    1.76 +*/
    1.77 +#define NONSHARABLE_CLASS(x) class __declspec(notshared) x
    1.78 +
    1.79 +#define NONSHARABLE_STRUCT(x) struct __declspec(notshared) x
    1.80 +#define __NO_THROW throw ()
    1.81 +#define __THROW(t) throw (t)
    1.82 +#define TEMPLATE_SPECIALIZATION template<>
    1.83 +#ifndef __int64
    1.84 +#define __int64  long long
    1.85 +#endif
    1.86 +#define __VALUE_IN_REGS__
    1.87 +#define	I64LIT(x)	x##LL
    1.88 +#define	UI64LIT(x)	x##ULL
    1.89 +#define __SOFTFP
    1.90 +
    1.91 +// __TText from e32cmn.h also e32des16.h
    1.92 +#ifdef __cplusplus
    1.93 +typedef wchar_t __TText;	// Only ISO C++ has wchar_t as a primitive type
    1.94 +#define __wchar_t_defined
    1.95 +#else
    1.96 +typedef unsigned short __TText;	
    1.97 +#endif
    1.98 +#define __TText_defined
    1.99 +
   1.100 +// __NAKED__ from cpudefs.h
   1.101 +#define __NAKED__ __declspec(naked)
   1.102 +#define ____ONLY_USE_NAKED_IN_CIA____ __declspec(naked)
   1.103 +
   1.104 +// Int64 and Uint64 from nkern\nklib.h
   1.105 +typedef long long Int64;
   1.106 +typedef unsigned long long Uint64;
   1.107 +
   1.108 +// Here are GCC-E's definitions for stdarg.h
   1.109 +// These should be used by e.g. stdlib
   1.110 +
   1.111 +#ifdef __cplusplus
   1.112 +    namespace std { extern "C" {
   1.113 +#endif
   1.114 +
   1.115 +    #if __GNUC__ < 4
   1.116 +    typedef struct __va_list { void *__ap; } va_list;
   1.117 +    #else
   1.118 +    typedef __builtin_va_list va_list;
   1.119 +    #endif
   1.120 +
   1.121 +#ifdef __cplusplus
   1.122 +	} }
   1.123 +    using ::std::va_list;
   1.124 +#endif
   1.125 +
   1.126 +#if __GNUC__ < 4
   1.127 +#define va_start(ap, parmN) __builtin_va_start(ap.__ap, parmN)
   1.128 +#define va_arg(ap, type)    __builtin_va_arg(ap.__ap, type)
   1.129 +#define va_end(ap)          __builtin_va_end(ap.__ap)
   1.130 +#else
   1.131 +#define va_start(ap, parmN) __builtin_va_start(ap, parmN)
   1.132 +#define va_arg(ap, type)    __builtin_va_arg(ap, type)
   1.133 +#define va_end(ap)          __builtin_va_end(ap)
   1.134 +#endif
   1.135 +
   1.136 +#define VA_LIST va_list
   1.137 +#define _VA_LIST_DEFINED //To deal with stdarg.h
   1.138 +#define __VA_LIST_defined //To deal with e32def.h
   1.139 +
   1.140 +// These are for Symbian OS C++ code
   1.141 +#define VA_START(ap,pn) va_start(ap, pn)
   1.142 +#define VA_ARG(ap,type) va_arg(ap,type)
   1.143 +#define VA_END(ap)      va_end(ap)
   1.144 +// This should prevent /stdlib/linc/stdarg.h from doing damage.
   1.145 +#define _STDARG_H
   1.146 +
   1.147 +// now deal with stdarg_e.h
   1.148 +typedef va_list __e32_va_list;
   1.149 +#define _STDARG_E_H
   1.150 +
   1.151 +// This is an EABI compliant compiler
   1.152 +#ifndef __EABI__
   1.153 +#define __EABI__
   1.154 +#endif
   1.155 +
   1.156 +// these are hopefully temporary
   1.157 +
   1.158 +// defining this means we don't get __NAKED__ ctors
   1.159 +#ifndef __EABI_CTORS__
   1.160 +#define __EABI_CTORS__
   1.161 +#endif
   1.162 +
   1.163 +//#define __EARLY_DEBUG__
   1.164 +
   1.165 +#ifndef __SYMBIAN_STDCPP_SUPPORT__
   1.166 +	#include <symcpp.h>
   1.167 +#endif
   1.168 +
   1.169 +#ifdef __cplusplus
   1.170 +// Support for throwing exceptions through embedded assembler
   1.171 +// Should only be needed user side
   1.172 +
   1.173 +#define	__EH_FRAME_ADDRESS(reg,offset)	FRAME ADDRESS reg, offset
   1.174 +#define __EH_FRAME_PUSH2(reg1,reg2) FRAME PUSH {reg1, reg2}
   1.175 +#define __EH_FRAME_SAVE1(reg,offset) FRAME SAVE {reg}, offset
   1.176 +
   1.177 +#endif
   1.178 +