sl@0: /* sl@0: * Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * e32\include\e32def.h sl@0: * NOTE: THIS FILE SHOULD BE ACCEPTABLE TO A C COMPILER sl@0: * sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef __E32DEF_H__ sl@0: #define __E32DEF_H__ sl@0: sl@0: /* sl@0: * __LEAVE_EQUALS_THROW__ requires the compiler to support C++ exceptions sl@0: */ sl@0: #ifndef __SUPPORT_CPP_EXCEPTIONS__ sl@0: #undef __LEAVE_EQUALS_THROW__ sl@0: #endif sl@0: sl@0: sl@0: #if defined(__VC32__) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __NO_CLASS_CONSTS__ sl@0: #if (_MSC_VER >= 1200) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __NORETURN__ __declspec(noreturn) sl@0: #else sl@0: #define __NORETURN__ sl@0: #endif sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __NORETURN_TERMINATOR() sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define IMPORT_C __declspec(dllexport) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define EXPORT_C __declspec(dllexport) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define IMPORT_D __declspec(dllexport) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define EXPORT_D __declspec(dllexport) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define NONSHARABLE_CLASS(x) class x sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define NONSHARABLE_STRUCT(x) struct x sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __NO_THROW throw() sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __THROW(t) throw(t) sl@0: #pragma warning( disable : 4355 ) /* 'this' used in base member initializer list */ sl@0: #pragma warning( disable : 4511 ) /* copy constructor could not be generated */ sl@0: #pragma warning( disable : 4512 ) /* assignment operator could not be generated */ sl@0: #pragma warning( disable : 4514 ) /* unreferenced inline function has been removed */ sl@0: #pragma warning( disable : 4699 ) /* Note: Using precompiled header %s */ sl@0: #pragma warning( disable : 4710 ) /* function not inlined */ sl@0: #pragma warning( disable : 4121 ) /* alignment sensitive to packing */ sl@0: #pragma warning( disable : 4273 ) sl@0: #pragma warning( disable : 4097 ) /* typedef-name 'identifier1' used as synonym for class-name 'identifier2' */ sl@0: #pragma warning( disable : 4291 ) /* 'TAny *CBase::operator new(TUint,TLeave)' : no matching operator delete found; memory will not be freed if initialization throws an exception */ sl@0: sl@0: #if _MSC_VER >= 1100 sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define TEMPLATE_SPECIALIZATION template<> sl@0: #else sl@0: #define TEMPLATE_SPECIALIZATION sl@0: #endif sl@0: #endif sl@0: sl@0: sl@0: sl@0: #if defined(__CW32__) sl@0: #undef __embedded_cplusplus sl@0: /** @internalTechnology */ sl@0: #define __embedded_cplusplus 1 sl@0: #define __NO_CLASS_CONSTS__ sl@0: #define __NORETURN__ sl@0: #define __NORETURN_TERMINATOR() sl@0: #define IMPORT_C __declspec(dllexport) sl@0: #define EXPORT_C __declspec(dllexport) sl@0: #define IMPORT_D __declspec(dllexport) sl@0: #define EXPORT_D __declspec(dllexport) sl@0: #define NONSHARABLE_CLASS(x) class x sl@0: #define NONSHARABLE_STRUCT(x) struct x sl@0: #define __NO_THROW throw() sl@0: #define __THROW(t) throw(t) sl@0: sl@0: #define TEMPLATE_SPECIALIZATION template<> sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define _asm asm sl@0: #ifndef __int64 sl@0: #pragma longlong on sl@0: /** @internalTechnology */ sl@0: #define __int64 long long sl@0: #endif sl@0: #ifndef __SUPPORT_CPP_EXCEPTIONS__ sl@0: #pragma exceptions off /* no support for C++ exception handling */ sl@0: #pragma RTTI off /* no support for C++ runtime type information */ sl@0: #endif sl@0: #if __MWERKS__ >= 0x3200 sl@0: #pragma warning off (10480) /* deleteing void pointer is undefined */ sl@0: #pragma warning off (10350) /* N pad byte(s) inserted after data member */ sl@0: #endif sl@0: #endif sl@0: sl@0: sl@0: // sl@0: // GCC (ARM) compiler sl@0: // sl@0: #if defined(__GCC32__) && defined(__MARM__) sl@0: #ifndef __GNUC__ /* GCC98r2 doesn't define this for some reason */ sl@0: #define __GNUC__ 2 sl@0: #endif sl@0: #define __NO_CLASS_CONSTS__ sl@0: #define __NORETURN__ __attribute__ ((noreturn)) sl@0: #ifdef __GCCV3__ sl@0: #define __NORETURN_TERMINATOR() sl@0: #else sl@0: #define __NORETURN_TERMINATOR() abort() sl@0: #endif sl@0: #define IMPORT_C sl@0: #define IMPORT_D sl@0: #if !defined __WINS__ && defined _WIN32 /* VC++ Browser Hack */ sl@0: #define EXPORT_C sl@0: #define EXPORT_D sl@0: /** @internalTechnology */ sl@0: #define asm(x) sl@0: #else sl@0: #define EXPORT_C __declspec(dllexport) sl@0: #define EXPORT_D __declspec(dllexport) sl@0: #endif sl@0: #define NONSHARABLE_CLASS(x) class x sl@0: #define NONSHARABLE_STRUCT(x) struct x sl@0: #define __NO_THROW sl@0: #define __THROW(t) sl@0: #ifdef __EABI__ sl@0: #define TEMPLATE_SPECIALIZATION template<> sl@0: #else sl@0: #define TEMPLATE_SPECIALIZATION sl@0: #endif sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __DOUBLE_WORDS_SWAPPED__ sl@0: #endif sl@0: sl@0: sl@0: /** @internalTechnology */ sl@0: #define __NO_MUTABLE_KEYWORD sl@0: #if defined(__NO_MUTABLE_KEYWORD) sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define __MUTABLE sl@0: #else sl@0: #define __MUTABLE mutable sl@0: #endif sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define CONST_CAST(type,exp) (const_cast(exp)) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define STATIC_CAST(type,exp) (static_cast(exp)) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define REINTERPRET_CAST(type,exp) (reinterpret_cast(exp)) sl@0: sl@0: #if defined(__NO_MUTABLE_KEYWORD) sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define MUTABLE_CAST(type,exp) (const_cast(exp)) sl@0: #else sl@0: #define MUTABLE_CAST(type,exp) (exp) sl@0: #endif sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define GLREF_D extern sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define GLDEF_D sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define LOCAL_D static sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define GLREF_C extern sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define GLDEF_C sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define LOCAL_C static sl@0: /** sl@0: @internalAll sl@0: @prototype sl@0: */ sl@0: #ifndef IMPORT_D sl@0: #define IMPORT_D IMPORT_C sl@0: #endif sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define FOREVER for(;;) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Symbolic definition for a true value. sl@0: */ sl@0: #define TRUE 1 sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Symbolic definition for a false value. sl@0: */ sl@0: #define FALSE 0 sl@0: #ifndef NULL sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Symbolic definition for a NULL value. sl@0: */ sl@0: #define NULL 0 sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef VA_START sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: A macro used by Symbian OS code for handling a variable argument list sl@0: in a function call. sl@0: sl@0: Sets a pointer to point to the first of the variable arguments. sl@0: sl@0: Typical usage: sl@0: sl@0: @code sl@0: Foo(CAbcdef aAbcdef,...) sl@0: { sl@0: VA_LIST list; sl@0: VA_START(list, aAbcdef); sl@0: // other code sl@0: } sl@0: @endcode sl@0: sl@0: @param ap A pointer used to hold the address of an argument in sl@0: the variable argument list. After execution of the code generated sl@0: by this macro, the pointer points to the first argument in sl@0: the variable argument list. sl@0: This symbol is usually declared as a VA_LIST type. sl@0: sl@0: @param pn The argument that immediately precedes the variable argument list. sl@0: sl@0: @see VA_LIST sl@0: @see VA_ARG sl@0: */ sl@0: #define VA_START(ap,pn) ((ap)[0]=(TInt8 *)&pn+((sizeof(pn)+sizeof(TInt)-1)&~(sizeof(TInt)-1)),(void)0) sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef VA_ARG sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: A macro used by Symbian OS code for handling a variable argument list sl@0: in a function call. sl@0: sl@0: Increments a pointer to a variable argument list to point to the next argument sl@0: in the list. The current argument is assumed to be of a type defined by sl@0: the second parameter to this macro. sl@0: sl@0: Typical usage: sl@0: sl@0: @code sl@0: Foo(CAbcdef aAbcdef,...) sl@0: { sl@0: VA_LIST list; sl@0: VA_START(list, aAbcdef); sl@0: ... sl@0: TInt x = VA_ARG(list,TInt); sl@0: ... sl@0: const TDesC *pS=VA_ARG(aList,const TDesC*); sl@0: ... sl@0: etc sl@0: } sl@0: @endcode sl@0: sl@0: @param ap A pointer used to hold the address of an argument in sl@0: the variable argument list. It is assumed to point to the current sl@0: argument in the variable argument list. After execution of the code sl@0: generated by this macro, the pointer points to the next argument in sl@0: the list. This symbol is usually declared as a VA_LIST type. sl@0: sl@0: @param type The type of the current argument. sl@0: This can be any valid type, for example, TInt, const TDesC*, etc. sl@0: sl@0: @see VA_LIST sl@0: @see VA_START sl@0: */ sl@0: #define VA_ARG(ap,type) ((ap)[0]+=((sizeof(type)+sizeof(TInt)-1)&~(sizeof(TInt)-1)),(*(type *)((ap)[0]-((sizeof(type)+sizeof(TInt)-1)&~(sizeof(TInt)-1))))) sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef VA_END sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: A macro used by Symbian OS code for handling a variable argument list sl@0: in a function call. sl@0: sl@0: Sets a pointer to zero. sl@0: sl@0: @param ap A pointer used to hold the address of an argument in sl@0: the variable argument list. After execution of the code generated sl@0: by this macro, the pointer is reset to 0. sl@0: This symbol is usually declared as a VA_LIST type. sl@0: sl@0: @see VA_LIST sl@0: @see VA_START sl@0: @see VA_ARG sl@0: */ sl@0: #define VA_END(ap) ((ap)[0]=0,(void)0) sl@0: #endif sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Calculates the offset of member f within class c. sl@0: sl@0: This is used in the TSglQue and TDblQue constructors to set the offset of sl@0: the link object from the start of a list element. sl@0: sl@0: @param c The name of the class. sl@0: @param f The name of the member within the specified class. sl@0: sl@0: @see TSglQue sl@0: @see TDblQue sl@0: */ sl@0: #ifndef _FOFF sl@0: #if __GNUC__ < 4 sl@0: #define _FOFF(c,f) (((TInt)&(((c *)0x1000)->f))-0x1000) sl@0: #else sl@0: #define _FOFF(c,f) __builtin_offsetof(c,f) sl@0: #endif sl@0: #endif sl@0: sl@0: sl@0: sl@0: /** sl@0: @internalTechnology sl@0: @released sl@0: */ sl@0: #define _ALIGN_DOWN(x,a) ((x)&~((a)-1)) sl@0: /** sl@0: @internalTechnology sl@0: @released sl@0: */ sl@0: #define _ALIGN_UP(x,a) _ALIGN_DOWN((x)+(a)-1, a) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Pointer to any type. sl@0: sl@0: TAny* is equivalent to void* in standard C or C++. TAny* is used in preference sl@0: to void* because it is more suggestive of the actual meaning, sl@0: e.g. TAny* foo();. sl@0: sl@0: TAny is not used where it really means "nothing", as in the declaration of sl@0: functions which do not return a value; void is used instead, e.g. void Foo();. sl@0: */ sl@0: typedef void TAny; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 8-bit signed integer type, used in Symbian OS to mean an 8-bit sl@0: signed integer, independent of the implementation. sl@0: */ sl@0: typedef signed char TInt8; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 8-bit unsigned integer type; used in Symbian OS to mean an 8-bit sl@0: unsigned integer, independent of the implementation. sl@0: */ sl@0: typedef unsigned char TUint8; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 16-bit signed integer type, used in Symbian OS to mean a 16-bit sl@0: signed integer, independent of the implementation. sl@0: */ sl@0: typedef short int TInt16; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 16-bit unsigned integer type. used in Symbian OS to mean a 16-bit sl@0: unsigned integer, independent of the implementation. sl@0: */ sl@0: typedef unsigned short int TUint16; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 32-bit signed integer type, used in Symbian OS to mean a 32-bit sl@0: signed integer, independent of the implementation. sl@0: */ sl@0: typedef long int TInt32; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: A signed integer type of the same size as a pointer. sl@0: */ sl@0: typedef TInt32 T_IntPtr; sl@0: typedef TInt32 TIntPtr; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 32-bit unsigned integer type; used in Symbian OS to mean a 32-bit sl@0: unsigned integer, independent of the implementation. sl@0: */ sl@0: typedef unsigned long int TUint32; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: An unsigned integer type of the same size as a pointer. sl@0: */ sl@0: typedef TUint32 T_UintPtr; sl@0: typedef TUint32 TUintPtr; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Signed integer type of the natural machine word length. sl@0: sl@0: This is as defined by the C++ implementation's int type. In all sl@0: implementations, this is guaranteed to be at least 32 bits. sl@0: sl@0: A TInt should be used in preference to a sized integer (TInt32, TInt16) for sl@0: all general use. Sized integers should only be used when packing is essential. sl@0: C++'s type conversion rules imply that all sized integers smaller than the sl@0: natural machine word are in any case broadened to the natural machine word sl@0: size when passed as function parameters. sl@0: sl@0: A TInt should be used in preference to an unsigned integer (TUint) for all sl@0: general use. Unsigned integers should only be used for flags (which use Boolean sl@0: operations but not arithmetic) and, in very rare cases, for numbers whose sl@0: range exceeds that available from signed integers. Although it is natural sl@0: to attempt to use unsigned integers for quantities which cannot by nature sl@0: be negative, the C++ language does not provide the support necessary to enforce sl@0: the "expected" behaviour in these circumstances, and experience has shown sl@0: that it is better to use signed integers unless there is good reason not to. sl@0: sl@0: @see TUint sl@0: @see TInt32 sl@0: @see TInt16 sl@0: */ sl@0: typedef signed int TInt; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Unsigned integer type of the natural machine word length. sl@0: sl@0: This is guaranteed to be at least 32 bits in all implementations. sl@0: sl@0: In almost all circumstances, a TInt should be used in preference to a TUint. sl@0: The main exception is in flags bytes. sl@0: sl@0: @see TInt sl@0: */ sl@0: typedef unsigned int TUint; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 32-bit floating point number, providing IEEE754 single precision on all Symbian sl@0: OS implementations. sl@0: sl@0: TReal should normally be used in preference to TReal32. sl@0: sl@0: Use of floating-point numbers should generally be avoided unless a natural sl@0: part of the problem specification. Most Symbian OS implementations do not sl@0: have a hardware floating point unit: as a result, their floating-point performance sl@0: is hundreds of times slower than integer performance. sl@0: */ sl@0: typedef float TReal32; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 64-bit floating point number, providing IEEE754 double precision on all Symbian sl@0: OS implementations. sl@0: sl@0: Use of floating-point numbers should generally be avoided unless a natural sl@0: part of the problem specification. Most Symbian OS implementations do not sl@0: have a hardware floating point unit: as a result, their floating-point performance sl@0: is hundreds of times slower than integer performance. sl@0: sl@0: This type is identical to TReal. sl@0: sl@0: @see TReal sl@0: */ sl@0: typedef double TReal64; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 64-bit floating point number; identical to TReal64. sl@0: sl@0: Use of floating-point numbers should generally be avoided unless a natural sl@0: part of the problem specification. Most Symbian OS implementations do not sl@0: have a hardware floating point unit: as a result, their floating-point performance sl@0: is hundreds of times slower than integer performance. sl@0: sl@0: Most serious floating-point calculations require double-precision. All standard sl@0: math functions (see Math class) take double-precision arguments. Single-precision sl@0: should only be used where space and performance are at a premium, and when sl@0: their limited precision is acceptable. sl@0: sl@0: @see TReal64 sl@0: @see Math sl@0: */ sl@0: typedef double TReal; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 8-bit unsigned character. sl@0: sl@0: Use instead of C++ built-in char type because it is guaranteed to be unsigned. sl@0: Use instead of TInt8 where the application is really for text rather than sl@0: 8-bit arithmetic or binary quantities. sl@0: sl@0: For most purposes, you should use TText rather than TText8. TText is mapped sl@0: onto either TText8 or TText16 depending on whether a non-Unicode or Unicode sl@0: variant is being built. Use TText8 only when you are dealing explicitly with sl@0: 8-bit text, regardless of build. sl@0: sl@0: @see TText */ sl@0: typedef unsigned char TText8; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: 16-bit unsigned character. sl@0: sl@0: Use instead of C++ wchar_t type because it is guaranteed to be unsigned. Use sl@0: instead of TInt16 where the application is really for text rather than 8-bit sl@0: arithmetic or binary quantities. sl@0: sl@0: For most purposes, you should use TText rather than TText16. TText is mapped sl@0: onto either TText8 or TText16 depending on whether a non-Unicode or Unicode sl@0: variant is being built. Use TText16 only when you are dealing explicitly with sl@0: 16-bit text, regardless of build. sl@0: sl@0: @see TText sl@0: */ sl@0: typedef unsigned short int TText16; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Boolean type which takes the value either ETrue or EFalse. sl@0: sl@0: Although only a single bit would theoretically be necessary to represent a sl@0: Boolean, a machine word is used instead, so that these quantities can be easily sl@0: passed. Also, TBool must map onto int because of C++'s interpretation of sl@0: operands in conditional expressions. sl@0: */ sl@0: typedef int TBool; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: Defines a linear (virtual) address type. sl@0: */ sl@0: typedef T_UintPtr TLinAddr; sl@0: sl@0: sl@0: sl@0: #if defined(__GCC32__) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines a 64-bit signed integer type. sl@0: */ sl@0: typedef long long Int64; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines a 64-bit unsigned integer type. sl@0: */ sl@0: typedef unsigned long long Uint64; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define I64LIT(x) x##LL sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define UI64LIT(x) x##ULL sl@0: sl@0: #elif defined(__VC32__) sl@0: typedef __int64 Int64; sl@0: typedef unsigned __int64 Uint64; sl@0: #define I64LIT(x) (__int64)##x sl@0: #define UI64LIT(x) (unsigned __int64)##x sl@0: sl@0: #elif defined(__CW32__) sl@0: #pragma longlong on sl@0: typedef long long Int64; sl@0: typedef unsigned long long Uint64; sl@0: #define I64LIT(x) x##LL sl@0: #define UI64LIT(x) x##ULL sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines a 64-bit signed integer type. sl@0: sl@0: NOTE: For those migrating from versions of Symbian OS before 8.1b (i.e. 8.1a, 7.0s etc) sl@0: TInt64 is now defined as a built-in type instead of as a class type. This means sl@0: that the member functions of the old TInt64 class are no longer exported sl@0: from EUSER.LIB, and represents a compatibility break. sl@0: sl@0: To ease migration of source code, a number of macros are provided. Similar sl@0: macros have also been defined in Symbian OS versions 7.0s and 8.1a, but sl@0: implemented in terms of the old TInt64 class. This is important for code that sl@0: is common to : one or both of these Symbian OS versions, and to 8.1b and sl@0: subsequent versions. sl@0: sl@0: The following list shows the new macros and the functions that they replace. sl@0: It also shows some alternative techniques. sl@0: In this list: x, v and r are declared as TInt64, c is declared as TInt, High sl@0: and Low are declared as TUint. sl@0: sl@0: @code sl@0: OLD USAGE REPLACEMENT sl@0: sl@0: TInt64(High,Low); MAKE_TINT64(High,Low); sl@0: x.Set(High,Low); MAKE_TINT64(High,Low); sl@0: x.Low(); I64LOW(x); sl@0: x.High(); I64HIGH(x); sl@0: x.GetTInt(); I64INT(x); sl@0: x.GetTReal(); I64REAL(x); sl@0: x.Lsr(c); I64LSR(x,c); sl@0: x.Mul10(); x*=10; sl@0: x.MulTop(a); I64MULTOP(x,a); sl@0: x.DivMod(v,r); r=x%v; x/=v; sl@0: @endcode sl@0: */ sl@0: typedef Int64 TInt64; sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines a 64-bit unsigned integer type. sl@0: */ sl@0: typedef Uint64 TUint64; sl@0: sl@0: sl@0: sl@0: sl@0: /** @internalComponent */ sl@0: #define _MAKE_TINT64_ZX(x) ((TInt64)((TUint32)(x))) sl@0: sl@0: /** @internalComponent */ sl@0: #define _MAKE_TUINT64_ZX(x) ((TUint64)((TUint32)(x))) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define MAKE_TINT64(h,l) ( (_MAKE_TINT64_ZX(h)<<32) | _MAKE_TINT64_ZX(l) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define MAKE_TUINT64(h,l) ( (_MAKE_TUINT64_ZX(h)<<32) | _MAKE_TUINT64_ZX(l) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to access the high order 32 bits of a 64 bit number. sl@0: */ sl@0: #define I64HIGH(x) ( (TUint32)((x)>>32) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to access the low order 32 bits of a 64 bit number. sl@0: */ sl@0: #define I64LOW(x) ( (TUint32)(x) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to cast a 64 bit value as an signed integer. sl@0: */ sl@0: #define I64INT(x) ( (TInt)(x) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to cast a 64 bit value as a TReal type. sl@0: */ sl@0: #define I64REAL(x) ( (TReal)(x) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to logically shift a 64 bit integer right. sl@0: */ sl@0: #define I64LSR(x, shift) ( *reinterpret_cast(&(x)) >>= (shift) ) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to multiply a 64 bit integer by 10. sl@0: */ sl@0: #define I64MUL10(x) ( (x) *= 10 ) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to divide a 64 bit integer by another and find the remainder. sl@0: */ sl@0: #define I64DIVMOD(x, divisor, remainder) ( ((remainder) = (x) % (divisor), (x) /= (divisor)) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates code to cast a double to a 64 bit integer. sl@0: */ sl@0: #define I64DOUBLECAST(x) ( static_cast(x) ) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated Use _LIT8 instead. sl@0: sl@0: 8-bit literal. sl@0: sl@0: The macro defines an explicit 8-bit constant literal which is suitable sl@0: for non-Unicode literal text, regardless of the build. sl@0: sl@0: @see _L sl@0: @see _LIT8 sl@0: @see _LIT sl@0: */ sl@0: #define _L8(a) (TPtrC8((const TText8 *)(a))) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines an explicit 8-bit string which is suitable when non-Unicode text sl@0: is required, regardless of the build. sl@0: sl@0: This is used by the deprecated literal descriptor _L8. sl@0: */ sl@0: #define _S8(a) ((const TText8 *)a) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Constructs a constant literal descriptor of type TLitC8 with sl@0: the specified name and text. sl@0: sl@0: The 8-bit build variant is generated for both non-Unicode and Unicode builds. sl@0: sl@0: @param name The name of the C++ variable to be generated. sl@0: @param s The literal text enclosed within a pair of double quotes. sl@0: sl@0: @see _LIT sl@0: */ sl@0: #define _LIT8(name,s) const static TLitC8 name={sizeof(s)-1,s} sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated Use _LIT16 instead. sl@0: sl@0: 16-bit literal. sl@0: sl@0: The macro defines an explicit 16-bit constant literal which is suitable sl@0: for Unicode literal text, regardless of the build. sl@0: sl@0: @see _L sl@0: @see _LIT16 sl@0: @see _LIT sl@0: */ sl@0: #define _L16(a) (TPtrC16((const TText16 *)L ## a)) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines an explicit 16-bit string which is suitable when Unicode text sl@0: is required, regardless of the build. sl@0: sl@0: This is used by the deprecated literal descriptor _L16. sl@0: */ sl@0: #define _S16(a) ((const TText16 *)L ## a) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Constructs a constant literal descriptor of type TLitC16 with sl@0: the specified name and text. sl@0: sl@0: The 16-bit build variant is generated for both non-Unicode and Unicode builds. sl@0: sl@0: @param name The name of the C++ variable to be generated. sl@0: @param s The literal text enclosed within a pair of double quotes. sl@0: sl@0: @see _LIT sl@0: */ sl@0: #define _LIT16(name,s) const static TLitC16 name={sizeof(L##s)/2-1,L##s} sl@0: sl@0: sl@0: sl@0: sl@0: #if defined(_UNICODE) && !defined(__KERNEL_MODE__) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Build independent general text character. sl@0: sl@0: In non-Unicode builds, this is mapped to TText8. In Unicode builds, this is sl@0: mapped to TText16. Use the classes with explicit width only when you wish sl@0: the width to be independent of the build variant. sl@0: sl@0: Use this class rather than TChar for general use. sl@0: */ sl@0: typedef TText16 TText; sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated Use _LIT instead. sl@0: sl@0: Build independent literal. sl@0: sl@0: The macro defines either an 8-bit constant literal (for non-Unicode text), sl@0: or a 16-bit constant literal (for Unicode text) depending on the build. sl@0: sl@0: @see _LIT sl@0: @see _L16 sl@0: @see _L8 sl@0: */ sl@0: #define _L(a) (TPtrC((const TText *)L ## a)) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines either an 8-bit string (for non-Unicode text), sl@0: or a 16-bit string (for Unicode text) depending on the build. sl@0: sl@0: This is used by the deprecated build independent literal _L. sl@0: */ sl@0: #define _S(a) ((const TText *)L ## a) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Constructs a build independent constant literal descriptor of type TLitC sl@0: with the specified name and text. sl@0: sl@0: An 8-bit build variant is generated for a non-Unicode build; sl@0: A 16-bit build variant is generated for a Unicode build. sl@0: sl@0: @param name The name of the C++ variable to be generated. sl@0: @param s The literal text enclosed within a pair of double quotes. sl@0: sl@0: @see _LIT16 sl@0: @see _LIT8 sl@0: */ sl@0: #define _LIT(name,s) const static TLitC name={sizeof(L##s)/2-1,L##s} sl@0: sl@0: sl@0: sl@0: sl@0: #else sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Build independent general text character. sl@0: sl@0: In non-Unicode builds, this is mapped to TText8. In Unicode builds, this is sl@0: mapped to TText16. Use the classes with explicit width only when you wish sl@0: the width to be independent of the build variant. sl@0: sl@0: Use this class rather than TChar for general use. sl@0: */ sl@0: typedef TText8 TText; sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: @deprecated Use _LIT instead. sl@0: sl@0: Build independent literal. sl@0: sl@0: The macro defines either an 8-bit constant literal (for non-Unicode text), sl@0: or a 16-bit constant literal (for Unicode text) depending on the build. sl@0: sl@0: @see _LIT sl@0: @see _L16 sl@0: @see _L8 sl@0: */ sl@0: #define _L(a) (TPtrC((const TText *)(a))) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines either an 8-bit string (for non-Unicode text), sl@0: or a 16-bit string (for Unicode text) depending on the build. sl@0: sl@0: This is used by the deprecated build independent literal _L. sl@0: */ sl@0: #define _S(a) ((const TText *)a) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Constructs a build independent constant literal descriptor of type TLitC sl@0: with the specified name and text. sl@0: sl@0: An 8-bit build variant is generated for a non-Unicode build; sl@0: A 16-bit build variant is generated for a Unicode build. sl@0: sl@0: @param name The name of the C++ variable to be generated. sl@0: @param s The literal text enclosed within a pair of double quotes. sl@0: sl@0: @see _LIT16 sl@0: @see _LIT8 sl@0: */ sl@0: #define _LIT(name,s) const static TLitC name={sizeof(s)-1,s} sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef __VA_LIST_defined sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Defines a 'C' style array of pointers to TInt8 types. sl@0: sl@0: The type is most commonly used by code that needs to deal with a variable sl@0: number of arguments passed to a function. sl@0: sl@0: @see TInt8 sl@0: */ sl@0: typedef TInt8 *VA_LIST[1]; sl@0: #endif sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Asserts that a condition is true. sl@0: sl@0: Code is generated for all builds. sl@0: sl@0: This macro is used as a C++ statement to assert the truth of some condition, sl@0: and to take appropriate action if the condition is false. Unlike __ASSERT_DEBUG sl@0: it is defined in both release and debug builds. sl@0: sl@0: The most common use for this macro is to check that the external environment of sl@0: a function or class is behaving as expected; for example, that parameters sl@0: passed to a function are credible, or that called functions are behaving as sl@0: expected; the macro is commonly placed at the beginning of a function. sl@0: sl@0: The effect of the macro is to generate code which tests sl@0: the conditional expression c; if the expression is false, then sl@0: function p is called. In the majority of cases, the function p is one that sl@0: raises a panic. sl@0: sl@0: Note that the macro definition is, in effect, equivalent to: sl@0: sl@0: @code sl@0: if !(c)p; sl@0: @endcode sl@0: sl@0: @param c a conditional expression which results in true or false. sl@0: @param p a function which is called if the conditional expression c is false. sl@0: sl@0: @see __ASSERT_DEBUG sl@0: */ sl@0: #define __ASSERT_ALWAYS(c,p) (void)((c)||(p,0)) sl@0: sl@0: sl@0: sl@0: #ifdef __WINS__ sl@0: #ifdef __CW32__ sl@0: /** sl@0: @internalAll sl@0: @released sl@0: */ sl@0: #define __BREAKPOINT() \ sl@0: { \ sl@0: __asm { byte 0xcc }; \ sl@0: } sl@0: #else // !__CW32__ sl@0: /** sl@0: @internalAll sl@0: @released sl@0: */ sl@0: #define __BREAKPOINT() \ sl@0: { \ sl@0: __asm { int 3 }; \ sl@0: } sl@0: #endif //__CW32__ sl@0: #else sl@0: /** sl@0: @internalAll sl@0: @released sl@0: */ sl@0: #define __BREAKPOINT() sl@0: #endif sl@0: sl@0: #if defined(_DEBUG) sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Asserts that a condition is true. sl@0: sl@0: Code is generated for debug builds only. sl@0: sl@0: This macro is used as a C++ statement to assert the truth of some condition, sl@0: and to take appropriate action if the condition is false. It is used in sl@0: the same way as __ASSERT_ALWAYS, except that it is only defined for debug builds. sl@0: sl@0: The macro may be used to insert extra checks at various points in source code sl@0: as desired; the code will only be generated in debug builds and not in release sl@0: builds. sl@0: sl@0: @param c A conditional expression which results in true or false. sl@0: @param p A function which is called if the conditional expression c is false. sl@0: sl@0: @see __ASSERT_ALWAYS sl@0: */ sl@0: #define __ASSERT_DEBUG(c,p) (void)((c)||(p,0)) sl@0: sl@0: sl@0: sl@0: /** sl@0: @internalAll sl@0: @removed sl@0: */ sl@0: #define __DECLARE_NAME(t) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Calls the function for testing object invariance. sl@0: sl@0: Classes can define a standard member function __DbgTestInvariant(), sl@0: which checks that the object is in a valid state, and panics if it is not. sl@0: In debug builds, this macro simply expands to call that function. For details on how sl@0: to define __DbgTestInvariant(), and an example of its use, see __DECLARE_TEST. sl@0: sl@0: The macro is typically invoked at the beginning of all the member functions of sl@0: the class. For non-const functions (those which can change the object’s state), sl@0: you can ensure that the object has been left in a stable state by invoking sl@0: the macro at the end of the function. sl@0: sl@0: In release builds, no code is generated for the macro. sl@0: */ sl@0: #define __TEST_INVARIANT __DbgTestInvariant() sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the start of checking the current thread's heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: This macro must be matched by a corresponding call to __UHEAP_MARKEND or __UHEAP_MARKENDC. sl@0: sl@0: Calls to this macro can be nested but each call must be matched by corresponding sl@0: call to __UHEAP_MARKEND or __UHEAP_MARKENDC. sl@0: sl@0: @see User::__DbgMarkStart() sl@0: @see __UHEAP_MARKEND sl@0: @see __UHEAP_MARKENDC sl@0: */ sl@0: #define __UHEAP_MARK User::__DbgMarkStart(FALSE) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the number of allocated cells at the current nested level on the sl@0: current thread's heap is the same as the specified value. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: The macro assumes that: sl@0: sl@0: 1. the heap being checked is a user heap sl@0: sl@0: 2. checking is being done for the number of allocated cells at the current nested sl@0: level; i.e. that aCountAll is set to false sl@0: sl@0: 3. the line number is the line number of this source code statement. sl@0: sl@0: 4. the file name is the full path name of the file containing this source statement sl@0: sl@0: @param aCount The number of heap cells expected to be allocated at sl@0: the current nest level. sl@0: sl@0: @see User::__DbgMarkCheck() sl@0: @see __KHEAP_CHECK sl@0: */ sl@0: #define __UHEAP_CHECK(aCount) User::__DbgMarkCheck(FALSE,FALSE,aCount,(TText8*)__FILE__,__LINE__) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the total number of allocated cells on the current thread's heap sl@0: is the same as the specified value. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: @param aCount The total number of heap cells expected to be allocated. sl@0: sl@0: @see User::__DbgMarkCheck() sl@0: @see __KHEAP_CHECKALL sl@0: */ sl@0: #define __UHEAP_CHECKALL(aCount) User::__DbgMarkCheck(FALSE,TRUE,aCount,(TText8*)__FILE__,__LINE__) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of checking the current thread's heap. sl@0: sl@0: The macro expects zero heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __UHEAP_MARK. sl@0: sl@0: @see User::__DbgMarkEnd() sl@0: @see __UHEAP_MARK sl@0: */ sl@0: #define __UHEAP_MARKEND User::__DbgMarkEnd(FALSE,0) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of checking the current thread's heap. sl@0: sl@0: The macro expects aCount heap cells to remain allocated at the current nest sl@0: level. sl@0: sl@0: This macro must match an earlier call to __UHEAP_MARK. sl@0: sl@0: @param aCount The number of heap cells expected to remain allocated at sl@0: the current nest level. sl@0: sl@0: @see User::__DbgMarkEnd() sl@0: @see __UHEAP_MARK sl@0: */ sl@0: #define __UHEAP_MARKENDC(aCount) User::__DbgMarkEnd(FALSE,aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aCount Determines when the allocation will fail. sl@0: Heap allocation fails on attempt number aCount - later sl@0: allocations will succeed. sl@0: For example, if aCount is 3, then heap allocation fails sl@0: on the 3rd attempt, but all subsequent allocations succeed. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: */ sl@0: #define __UHEAP_FAILNEXT(aCount) User::__DbgSetAllocFail(FALSE,RAllocator::EFailNext,aCount) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failures will occur for aBurst times from the next call to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aCount Determines when the allocation will fail. sl@0: Heap allocation fails on attempt number aCount - later sl@0: allocations will succeed. sl@0: For example, if aCount is 3, then heap allocation fails sl@0: on the 3rd attempt, but all subsequent allocations succeed. sl@0: Note when used with RHeap the maximum value aCount can be set sl@0: to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set to sl@0: is KMaxTUint16. sl@0: sl@0: @see User::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __UHEAP_BURSTFAILNEXT(aCount,aBurst) User::__DbgSetBurstAllocFail(FALSE,RAllocator::EBurstFailNext,aCount,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __UHEAP_SETFAIL(aType,aRate) User::__DbgSetAllocFail(FALSE, aType, aRate) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. Note when used with RHeap the maximum value sl@0: aRate can be set to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see User::__DbgSetBurstAllocFail() sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __UHEAP_SETBURSTFAIL(aType,aRate,aBurst) User::__DbgSetBurstAllocFail(FALSE, aType, aRate, aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated heap allocation failure for the current thread's heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: */ sl@0: #define __UHEAP_RESET User::__DbgSetAllocFail(FALSE,RAllocator::ENone,1) sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated heap allocation failure for the current thread's heap. sl@0: It walks the the heap and sets the nesting level for all allocated sl@0: cells to zero. sl@0: sl@0: This macro is defined only for debug builds. sl@0: */ sl@0: #define __UHEAP_TOTAL_RESET User::__DbgSetAllocFail(FALSE,RAllocator::EReset,1) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of heap allocation failures the current debug allocator fail sl@0: function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __UHEAP_CHECKFAILURE User::__DbgCheckFailure(FALSE) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of kernel heap allocation failures the current debug sl@0: allocator fail function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __KHEAP_CHECKFAILURE User::__DbgCheckFailure(TRUE) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the start of heap checking for the specific heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: This macro must be matched by a corresponding call to __RHEAP_MARKEND or __RHEAP_MARKENDC. sl@0: sl@0: Calls to this macro can be nested but each call must be matched by corresponding sl@0: call to __RHEAP_MARKEND or __RHEAP_MARKENDC. sl@0: sl@0: @param aHeap A pointer to the specific RHeap sl@0: sl@0: @see RHeap sl@0: @see RAllocator::__DbgMarkStart() sl@0: @see __RHEAP_MARKEND sl@0: @see __RHEAP_MARKENDC sl@0: */ sl@0: #define __RHEAP_MARK(aHeap) (aHeap)->__DbgMarkStart() sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the number of allocated cells at the current nested level on the sl@0: specified heap is the same as the specified value. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The number of heap cells expected to be allocated at sl@0: the current nest level. sl@0: sl@0: @see RAllocator::__DbgMarkCheck() sl@0: */ sl@0: #define __RHEAP_CHECK(aHeap,aCount) (aHeap)->__DbgMarkCheck(FALSE,aCount,(TText8*)__FILE__,__LINE__) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the total number of allocated cells on the specified heap is the sl@0: same as the specified value. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The total number of heap cells expected to be allocated. sl@0: sl@0: @see RAllocator::__DbgMarkCheck() sl@0: */ sl@0: #define __RHEAP_CHECKALL(aHeap,aCount) (aHeap)->__DbgMarkCheck(TRUE,aCount,(TText8*)__FILE__,__LINE__) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of heap checking for the specific heap. sl@0: sl@0: The macro expects zero heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __RHEAP_MARK. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgMarkEnd() sl@0: @see __RHEAP_MARK sl@0: */ sl@0: #define __RHEAP_MARKEND(aHeap) (aHeap)->__DbgMarkEnd(0) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of heap checking for the specific heap. sl@0: sl@0: The macro expects aCount heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __RHEAP_MARK. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The number of heap cells expected to remain allocated at sl@0: the current nest level sl@0: sl@0: @see RAllocator::__DbgMarkEnd() sl@0: @see __RHEAP_MARK sl@0: */ sl@0: #define __RHEAP_MARKENDC(aHeap,aCount) (aHeap)->__DbgMarkEnd(aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which allocate sl@0: memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The rate of failure - heap allocation fails every aCount attempt. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_FAILNEXT(aHeap,aCount) (aHeap)->__DbgSetAllocFail(RAllocator::EFailNext,aCount) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates aBurst allocation failures for the specific heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which allocate sl@0: memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The heap allocation will fail after aCount-1 allocation attempts. sl@0: Note when used with RHeap the maximum value aCount can be set sl@0: to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see RAllocator::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __RHEAP_BURSTFAILNEXT(aHeap,aCount,aBurst) (aHeap)->__DbgSetBurstAllocFail(RAllocator::EBurstFailNext,aCount, aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_SETFAIL(aHeap,aType,aRate) (aHeap)->__DbgSetAllocFail(aType,aRate) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. Note when used with RHeap the maximum value sl@0: aRate can be set to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see RAllocator::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __RHEAP_SETBURSTFAIL(aHeap,aType,aRate,aBurst) (aHeap)->__DbgSetBurstAllocFail(aType,aRate,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated allocation failure for the specific heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_RESET(aHeap) (aHeap)->__DbgSetAllocFail(RAllocator::ENone,1) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated allocation failure for the specific heap. sl@0: It walks the the heap and sets the nesting level for all allocated sl@0: cells to zero. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_TOTAL_RESET(aHeap) (aHeap)->__DbgSetAllocFail(RAllocator::EReset,1) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of heap allocation failures the current debug allocator fail sl@0: function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __RHEAP_CHECKFAILURE(aHeap) (aHeap)->__DbgCheckFailure() sl@0: sl@0: sl@0: #if defined (__WINS__) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __DEBUGGER() {if (User::JustInTime()) __BREAKPOINT()} sl@0: sl@0: #else sl@0: #define __DEBUGGER() sl@0: #endif sl@0: sl@0: sl@0: #if defined(__DLL__) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Declares a function for testing object invariance. sl@0: sl@0: For complex classes, it is often useful to provide a function that can sl@0: be called to check that the object is in a valid state. sl@0: The __DECLARE_TEST macro supplies a standard prototype for such a function sl@0: named __DbgTestInvariant(). A companion macro __TEST_INVARIANT is provided sl@0: to call the function. sl@0: sl@0: For DLLs, as opposed to EXEs, __DbgTestInvariant() is exported, sl@0: i.e. the macro expands to: sl@0: sl@0: @code sl@0: public: IMPORT_C void __DbgTestInvariant() const; void __DbgTest(TAny *aPtr) const sl@0: @endcode sl@0: sl@0: This macro should placed as the last item in a class declaration (as it sl@0: switches back to public access). Note that a terminating semi-colon must be used. sl@0: sl@0: You should define the __DbgTestInvariant() function to check that the object sl@0: is in a healthy state. If it finds an error, it should call User::Invariant(), sl@0: which will cause a panic. sl@0: sl@0: If a class is derived from a base class, then the base class __DbgTestInvariant() sl@0: should be called first, and then any further checking done. sl@0: sl@0: The second function declared, __DbgTest(), is intended to allow test code a way sl@0: of directly accessing non-public members of a class. The function is sl@0: implemented by any test code that requires it, rather than in the class’s own sl@0: source code. The function is therefore not exported. sl@0: sl@0: __DECLARE_TEST is defined for both debug and release builds. This point is sl@0: particularly important for DLLs, as otherwise the exported interfaces would sl@0: differ between the build versions, giving potential binary compatibility sl@0: problems. To avoid using memory unnecessarily in release builds, you can, sl@0: however, use preprocessor directives to define the code within sl@0: __DbgTestInvariant() only for debug builds. __DbgTestInvariant() is never sl@0: called in release builds. sl@0: sl@0: @see __TEST_INVARIANT sl@0: */ sl@0: #define __DECLARE_TEST public: IMPORT_C void __DbgTestInvariant() const; void __DbgTest(TAny *aPtr) const sl@0: #else sl@0: #define __DECLARE_TEST public: void __DbgTestInvariant() const; void __DbgTest(TAny *aPtr) const sl@0: #endif sl@0: sl@0: #else sl@0: #define __ASSERT_DEBUG(c,p) sl@0: #define __DECLARE_NAME(t) sl@0: #define __TEST_INVARIANT sl@0: #if defined(__DLL__) sl@0: #define __DECLARE_TEST public: IMPORT_C void __DbgTestInvariant() const; void __DbgTest(TAny *aPtr) const sl@0: #else sl@0: #define __DECLARE_TEST public: void __DbgTestInvariant() const; void __DbgTest(TAny *aPtr) const sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the start of checking the current thread's heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: This macro must be matched by a corresponding call to __UHEAP_MARKEND or __UHEAP_MARKENDC. sl@0: sl@0: Calls to this macro can be nested but each call must be matched by corresponding sl@0: call to __UHEAP_MARKEND or __UHEAP_MARKENDC. sl@0: sl@0: @see User::__DbgMarkStart() sl@0: @see __UHEAP_MARKEND sl@0: @see __UHEAP_MARKENDC sl@0: */ sl@0: #define __UHEAP_MARK sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the number of allocated cells at the current nested level on the sl@0: current thread's heap is the same as the specified value. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: The macro assumes that: sl@0: sl@0: 1. the heap being checked is a user heap sl@0: sl@0: 2. checking is being done for the number of allocated cells at the current nested sl@0: level; i.e. that aCountAll is set to false sl@0: sl@0: 3. the line number is the line number of this source code statement. sl@0: sl@0: 4. the file name is the full path name of the file containing this source statement sl@0: sl@0: @param aCount The number of heap cells expected to be allocated at sl@0: the current nest level. sl@0: sl@0: @see User::__DbgMarkCheck() sl@0: @see __KHEAP_CHECK sl@0: */ sl@0: #define __UHEAP_CHECK(aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the total number of allocated cells on the current thread's heap sl@0: is the same as the specified value. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: @param aCount The total number of heap cells expected to be allocated. sl@0: sl@0: @see User::__DbgMarkCheck() sl@0: @see __KHEAP_CHECKALL sl@0: */ sl@0: #define __UHEAP_CHECKALL(aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of checking the current thread's heap. sl@0: sl@0: The macro expects zero heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __UHEAP_MARK. sl@0: sl@0: @see User::__DbgMarkEnd() sl@0: @see __UHEAP_MARK sl@0: */ sl@0: #define __UHEAP_MARKEND sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of checking the current thread's heap. sl@0: sl@0: The macro expects aCount heap cells to remain allocated at the current nest sl@0: level. sl@0: sl@0: This macro must match an earlier call to __UHEAP_MARK. sl@0: sl@0: @param aCount The number of heap cells expected to remain allocated at sl@0: the current nest level. sl@0: sl@0: @see User::__DbgMarkEnd() sl@0: @see __UHEAP_MARK sl@0: */ sl@0: #define __UHEAP_MARKENDC(aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aCount Determines when the allocation will fail. sl@0: Heap allocation fails on attempt number aCount - later sl@0: allocations will succeed. sl@0: For example, if aCount is 3, then heap allocation fails sl@0: on the 3rd attempt, but all subsequent allocations succeed. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: */ sl@0: #define __UHEAP_FAILNEXT(aCount) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failures will occur for aBurst times from the next call to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aCount Determines when the allocation will fail. sl@0: Heap allocation fails on attempt number aCount - later sl@0: allocations will succeed. sl@0: For example, if aCount is 3, then heap allocation fails sl@0: on the 3rd attempt, but all subsequent allocations succeed. sl@0: Note when used with RHeap the maximum value aBurst can be sl@0: set to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see User::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __UHEAP_BURSTFAILNEXT(aCount,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: */ sl@0: #define __UHEAP_SETFAIL(aType,aRate) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates heap allocation failure for the current thread's heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. Note when used with RHeap the maximum value sl@0: aRate can be set to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see User::__DbgSetBurstAllocFail() sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __UHEAP_SETBURSTFAIL(aType,aRate,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated heap allocation failure for the current thread's heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @see User::__DbgSetAllocFail() sl@0: */ sl@0: #define __UHEAP_RESET sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated heap allocation failure for the current thread's heap. sl@0: It walks the the heap and sets the nesting level for all allocated sl@0: cells to zero. sl@0: sl@0: This macro is defined only for debug builds. sl@0: */ sl@0: #define __UHEAP_TOTAL_RESET sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of heap allocation failures the current debug allocator fail sl@0: function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __UHEAP_CHECKFAILURE ((TUint)0) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of kernel heap allocation failures the current debug sl@0: allocator fail function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __KHEAP_CHECKFAILURE ((TUint)0) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the start of heap checking for the specific heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: This macro must be matched by a corresponding call to __RHEAP_MARKEND or __RHEAP_MARKENDC. sl@0: sl@0: Calls to this macro can be nested but each call must be matched by corresponding sl@0: call to __RHEAP_MARKEND or __RHEAP_MARKENDC. sl@0: sl@0: @param aHeap A pointer to the specific RHeap sl@0: sl@0: @see RHeap sl@0: @see RAllocator::__DbgMarkStart() sl@0: @see __RHEAP_MARKEND sl@0: @see __RHEAP_MARKENDC sl@0: */ sl@0: #define __RHEAP_MARK(aHeap) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the number of allocated cells at the current nested level on the sl@0: specified heap is the same as the specified value. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The number of heap cells expected to be allocated at sl@0: the current nest level. sl@0: sl@0: @see RAllocator::__DbgMarkCheck() sl@0: */ sl@0: #define __RHEAP_CHECK(aHeap,aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Checks that the total number of allocated cells on the specified heap is the sl@0: same as the specified value. sl@0: sl@0: The macro also takes the name of the file containing this source code statement sl@0: and the line number of this source code statement; they are displayed as part sl@0: of the panic category, if the checks fail. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The total number of heap cells expected to be allocated. sl@0: sl@0: @see RAllocator::__DbgMarkCheck() sl@0: */ sl@0: #define __RHEAP_CHECKALL(aHeap,aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of heap checking for the specific heap. sl@0: sl@0: The macro expects zero heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __RHEAP_MARK. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgMarkEnd() sl@0: @see __RHEAP_MARK sl@0: */ sl@0: #define __RHEAP_MARKEND(aHeap) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Marks the end of heap checking for the specific heap. sl@0: sl@0: The macro expects aCount heap cells to remain allocated at the current nest sl@0: level. This macro is defined only for debug builds. sl@0: sl@0: This macro must match an earlier call to __RHEAP_MARK. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The number of heap cells expected to remain allocated at sl@0: the current nest level sl@0: sl@0: @see RAllocator::__DbgMarkEnd() sl@0: @see __RHEAP_MARK sl@0: */ sl@0: #define __RHEAP_MARKENDC(aHeap,aCount) sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which allocate sl@0: memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The rate of failure - heap allocation fails every aCount attempt. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_FAILNEXT(aHeap,aCount) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates aBurst allocation failures for the specific heap. sl@0: sl@0: The failure occurs on the next call to new or any of the functions which allocate sl@0: memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aCount The heap allocation will fail after aCount-1 allocation attempts. sl@0: Note when used with RHeap the maximum value aCount can be set sl@0: to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see RAllocator::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __RHEAP_BURSTFAILNEXT(aHeap,aCount,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_SETFAIL(aHeap,aType,aRate) sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Simulates an allocation failure for the specific heap. sl@0: sl@0: The failure occurs on subsequent calls to new or any of the functions which sl@0: allocate memory from the heap. This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: @param aType The type of failure to be simulated. sl@0: @param aRate The failure rate. Note when used with RHeap the maximum value sl@0: aRate can be set to is KMaxTUint16. sl@0: @param aBurst The number of consecutive allocations that will fail. Note sl@0: when used with RHeap the maximum value aBurst can be set sl@0: to is KMaxTUint16. sl@0: sl@0: @see RAllocator::__DbgSetBurstAllocFail() sl@0: */ sl@0: #define __RHEAP_SETBURSTFAIL(aHeap,aType,aRate,aBurst) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated allocation failure for the specific heap. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_RESET(aHeap) sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Cancels simulated allocation failure for the specific heap. sl@0: It walks the the heap and sets the nesting level for all allocated sl@0: cells to zero. sl@0: sl@0: This macro is defined only for debug builds. sl@0: sl@0: @param aHeap A pointer to the specific RHeap. sl@0: sl@0: @see RAllocator::__DbgSetAllocFail() sl@0: */ sl@0: #define __RHEAP_TOTAL_RESET(aHeap) sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Returns the number of heap allocation failures the current debug allocator fail sl@0: function has caused so far. sl@0: sl@0: This is intended to only be used with fail types RAllocator::EFailNext, sl@0: RAllocator::EBurstFailNext, RAllocator::EDeterministic and sl@0: RAllocator::EBurstDeterministic. The return value is unreliable for sl@0: all other fail types. sl@0: sl@0: @return The number of heap allocation failures the current debug fail sl@0: function has caused. sl@0: sl@0: @see RAllocator::TAllocFail sl@0: */ sl@0: #define __RHEAP_CHECKFAILURE(aHeap) ((TUint)0) sl@0: sl@0: #define __DEBUGGER() sl@0: #endif sl@0: sl@0: #if defined (__WINS__) sl@0: /** @internalTechnology */ sl@0: #define __EMULATOR_IMAGE_HEADER2(aUid0,aUid1,aUid2,aPriority,aCap0,aCap1,aSid,aVid,aVer,aFlags) TEmulatorImageHeader uid={{aUid0,aUid1,aUid2},aPriority,{aSid,aVid,{aCap0,aCap1}},0,0,aVer,aFlags}; sl@0: /** @internalTechnology */ sl@0: #define __EMULATOR_IMAGE_HEADER(aUid0,aUid1,aUid2,aPriority,aCap,aFlags) TEmulatorImageHeader uid={{aUid0,aUid1,aUid2},aPriority,{aUid2,0,{aCap,0}},0,0,0x00010000u,aFlags}; sl@0: #else sl@0: #define __EMULATOR_IMAGE_HEADER2(aUid0,aUid1,aUid2,aPriority,aCap0,aCap1,aSid,aVer,aFlags) sl@0: #define __EMULATOR_IMAGE_HEADER(aUid0,aUid1,aUid2,aPriority,aCap,aFlags) sl@0: #endif sl@0: sl@0: #if defined(_UNICODE) sl@0: #if !defined(UNICODE) sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: #define UNICODE sl@0: #endif sl@0: #endif sl@0: sl@0: #if !defined(ASSERT) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Generates _ASSERT_DEBUG code that calls User::Invariant() if the specified sl@0: condition is not true. sl@0: sl@0: @param x A conditional expression which results in true or false. sl@0: */ sl@0: #define ASSERT(x) __ASSERT_DEBUG(x,User::Invariant()) sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #if defined(_DEBUG) sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #define __DEBUG_ONLY(x) x sl@0: #else sl@0: #define __DEBUG_ONLY(x) sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: #ifdef __KERNEL_MODE__ sl@0: sl@0: /** @internalComponent */ sl@0: #define KIMPORT_C IMPORT_C sl@0: sl@0: /** @internalComponent */ sl@0: #define KEXPORT_C EXPORT_C sl@0: sl@0: /** @internalComponent */ sl@0: #define UIMPORT_C sl@0: sl@0: /** @internalComponent */ sl@0: #define UEXPORT_C sl@0: #else sl@0: #define KIMPORT_C sl@0: #define KEXPORT_C sl@0: #define UIMPORT_C IMPORT_C sl@0: #define UEXPORT_C EXPORT_C sl@0: #endif sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: sl@0: Asserts that a condition is true at compilation time. sl@0: sl@0: @param x Condition to assert sl@0: */ sl@0: #define __ASSERT_COMPILE(x) void __compile_time_assert(int __check[(x)?1:-1]) sl@0: sl@0: #ifdef __REMOVE_PLATSEC_DIAGNOSTICS__ sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__ sl@0: #define __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__ sl@0: #endif /*__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__*/ sl@0: #endif /*__REMOVE_PLATSEC_DIAGNOSTICS__*/ sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: static const char* const KSuppressPlatSecDiagnosticMagicValue = (const char*)1; sl@0: sl@0: #ifndef __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__ sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: #define __PLATSEC_DIAGNOSTIC_FILE_AND_LINE_HELPER(l) #l sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: #define __PLATSEC_DIAGNOSTIC_FILE_AND_LINE_HELPER2(f,l) f "(" __PLATSEC_DIAGNOSTIC_FILE_AND_LINE_HELPER(l) ")" sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #define __PLATSEC_DIAGNOSTIC_FILE_AND_LINE __PLATSEC_DIAGNOSTIC_FILE_AND_LINE_HELPER2(__FILE__,__LINE__) sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: A macro that should be used to enclose a platform security diagnostic sl@0: 'C' style string that can be passed to a capability checking function such sl@0: as RThread::HasCapability() and Kern::CurrentThreadHasCapability(). sl@0: sl@0: The content of the string is emitted if the capability test finds that sl@0: the capability is not present. sl@0: sl@0: The macro provides a convenient mechanism that allows the strings to sl@0: be removed from future versions of Symbian OS. sl@0: sl@0: For example: sl@0: sl@0: @code sl@0: if(!Kern::CurrentThreadHasCapability(ECapabilityPowerMgmt,__PLATSEC_DIAGNOSTIC_STRING("Checked by Hal function EDisplayHalSetState"))) sl@0: { sl@0: return KErrPermissionDenied; sl@0: } sl@0: @endcode sl@0: sl@0: In this example, the string: sl@0: sl@0: @code sl@0: Checked by Hal function EDisplayHalSetState sl@0: @endcode sl@0: sl@0: is emitted if the calling process does not have the ECapabilityPowerMgmt capability. sl@0: sl@0: @param s A C-style string. sl@0: sl@0: @see RProcess::HasCapability() sl@0: @see RThread::HasCapability() sl@0: @see RMessagePtr2::HasCapability() sl@0: @see User::CreatorHasCapability() sl@0: */ sl@0: #define __PLATSEC_DIAGNOSTIC_STRING(s) s sl@0: sl@0: /** sl@0: When this value is used in Platform Security APIs as the value for the aDiagnosticText sl@0: argument, these APIs will not emit any form of diagnostic message. sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: // Note this value is the same as KSuppressPlatSecDiagnosticMagicValue sl@0: // and used to be a set by it but that caused an error with GCCE compiler sl@0: static const char* const KSuppressPlatSecDiagnostic = (const char*)1; sl@0: sl@0: #else /* __REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__ */ sl@0: sl@0: #define __PLATSEC_DIAGNOSTIC_STRING(s) NULL sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: #ifndef __REMOVE_PLATSEC_DIAGNOSTICS__ sl@0: /** sl@0: When this value is used in Platform Security APIs as the value for the aDiagnostic sl@0: argument, these APIs will not emit any form of diagnostic message. sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #define KSuppressPlatSecDiagnostic NULL, NULL sl@0: sl@0: #else /* __REMOVE_PLATSEC_DIAGNOSTICS__ */ sl@0: sl@0: /** sl@0: When this value is used in Platform Security APIs as the value for the aDiagnostic sl@0: argument, these APIs will not emit any form of diagnostic message. sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #define KSuppressPlatSecDiagnostic NULL sl@0: sl@0: #endif /* !__REMOVE_PLATSEC_DIAGNOSTICS__ */ sl@0: #endif /* !__KERNEL_MODE__ */ sl@0: #endif /* !__REMOVE_PLATSEC_DIAGNOSTIC_STRINGS__ */ sl@0: sl@0: /* sl@0: * MSVC operator new and operator new[] header guards sl@0: */ sl@0: #ifdef __PLACEMENT_NEW sl@0: #define __PLACEMENT_NEW_INLINE sl@0: #endif /* __PLACEMENT_NEW */ sl@0: sl@0: #if defined(__VC32__) && (_MSC_VER < 1300) sl@0: #define __PLACEMENT_VEC_NEW_INLINE sl@0: #define __OMIT_VEC_OPERATOR_NEW_DECL__ sl@0: #endif /* version of MSVC that doesn't support overloaded operator new[] */ sl@0: sl@0: /** sl@0: Calling convention qualifier for functions involving floating point sl@0: variables passed or returned by value. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: #ifndef __SOFTFP sl@0: #define __SOFTFP sl@0: #endif /* __SOFTFP */ sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: #endif /* __E32DEF_H__ */