Files
libreoffice/cppu/source/uno/data.cxx

595 lines
16 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-06-13 14:17:57 +01:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2000-09-18 14:29:57 +00:00
#include <cstddef>
#include <stdio.h>
#include "cppu/macros.hxx"
#include "osl/mutex.hxx"
#include "uno/data.h"
2000-09-18 14:29:57 +00:00
#include "constr.hxx"
#include "destr.hxx"
#include "copy.hxx"
#include "assign.hxx"
#include "eq.hxx"
using namespace ::cppu;
using namespace ::osl;
2000-09-18 14:29:57 +00:00
namespace cppu
{
// Sequence<>() (default ctor) relies on this being static:
uno_Sequence g_emptySeq = { 1, 0, { 0 } };
2001-08-22 10:03:23 +00:00
typelib_TypeDescriptionReference * g_pVoidType = 0;
void * binuno_queryInterface( void * pUnoI, typelib_TypeDescriptionReference * pDestType )
{
// init queryInterface() td
static typelib_TypeDescription * g_pQITD = 0;
if (0 == g_pQITD)
{
MutexGuard aGuard( Mutex::getGlobalMutex() );
if (0 == g_pQITD)
{
typelib_TypeDescriptionReference * type_XInterface =
* typelib_static_type_getByTypeClass( typelib_TypeClass_INTERFACE );
typelib_InterfaceTypeDescription * pTXInterfaceDescr = 0;
TYPELIB_DANGER_GET( reinterpret_cast<typelib_TypeDescription **>(&pTXInterfaceDescr), type_XInterface );
assert(pTXInterfaceDescr->ppAllMembers);
typelib_typedescriptionreference_getDescription(
&g_pQITD, pTXInterfaceDescr->ppAllMembers[ 0 ] );
TYPELIB_DANGER_RELEASE( &pTXInterfaceDescr->aBase );
}
}
uno_Any aRet, aExc;
uno_Any * pExc = &aExc;
void * aArgs[ 1 ];
aArgs[ 0 ] = &pDestType;
(*((uno_Interface *) pUnoI)->pDispatcher)(
(uno_Interface *) pUnoI, g_pQITD, &aRet, aArgs, &pExc );
uno_Interface * ret = 0;
if (0 == pExc)
{
typelib_TypeDescriptionReference * ret_type = aRet.pType;
switch (ret_type->eTypeClass)
{
case typelib_TypeClass_VOID: // common case
typelib_typedescriptionreference_release( ret_type );
break;
case typelib_TypeClass_INTERFACE:
// tweaky... avoiding acquire/ release pair
typelib_typedescriptionreference_release( ret_type );
ret = (uno_Interface *) aRet.pReserved; // serving acquired interface
break;
default:
_destructAny( &aRet, 0 );
break;
}
}
else
{
SAL_WARN(
"cppu",
"exception occurred querying for interface "
<< OUString(pDestType->pTypeName) << ": ["
<< OUString(pExc->pType->pTypeName) << "] "
<< *reinterpret_cast<OUString const *>(pExc->pData));
// Message is very first member
uno_any_destruct( pExc, 0 );
}
return ret;
}
2000-09-18 14:29:57 +00:00
void defaultConstructStruct(
void * pMem,
typelib_CompoundTypeDescription * pCompType )
{
2002-08-21 08:19:40 +00:00
_defaultConstructStruct( pMem, pCompType );
2000-09-18 14:29:57 +00:00
}
2000-09-18 14:29:57 +00:00
void copyConstructStruct(
void * pDest, void * pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_AcquireFunc acquire, uno_Mapping * mapping )
{
2002-08-21 08:19:40 +00:00
_copyConstructStruct( pDest, pSource, pTypeDescr, acquire, mapping );
2000-09-18 14:29:57 +00:00
}
2000-09-18 14:29:57 +00:00
void destructStruct(
void * pValue,
typelib_CompoundTypeDescription * pTypeDescr,
uno_ReleaseFunc release )
{
2002-08-21 08:19:40 +00:00
_destructStruct( pValue, pTypeDescr, release );
2000-09-18 14:29:57 +00:00
}
bool equalStruct(
2000-09-18 14:29:57 +00:00
void * pDest, void *pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
{
2002-08-21 08:19:40 +00:00
return _equalStruct( pDest, pSource, pTypeDescr, queryInterface, release );
2000-09-18 14:29:57 +00:00
}
bool assignStruct(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
{
2002-08-21 08:19:40 +00:00
return _assignStruct( pDest, pSource, pTypeDescr, queryInterface, acquire, release );
2000-09-18 14:29:57 +00:00
}
uno_Sequence * copyConstructSequence(
uno_Sequence * pSource,
2000-09-18 14:29:57 +00:00
typelib_TypeDescriptionReference * pElementType,
uno_AcquireFunc acquire, uno_Mapping * mapping )
{
return icopyConstructSequence( pSource, pElementType, acquire, mapping );
2000-09-18 14:29:57 +00:00
}
2000-09-18 14:29:57 +00:00
void destructSequence(
uno_Sequence * pSequence,
typelib_TypeDescriptionReference * pType,
typelib_TypeDescription * pTypeDescr,
2000-09-18 14:29:57 +00:00
uno_ReleaseFunc release )
{
idestructSequence( pSequence, pType, pTypeDescr, release );
2000-09-18 14:29:57 +00:00
}
bool equalSequence(
2000-09-18 14:29:57 +00:00
uno_Sequence * pDest, uno_Sequence * pSource,
typelib_TypeDescriptionReference * pElementType,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
{
2002-08-21 08:19:40 +00:00
return _equalSequence( pDest, pSource, pElementType, queryInterface, release );
2000-09-18 14:29:57 +00:00
}
}
2000-09-18 14:29:57 +00:00
extern "C"
{
void SAL_CALL uno_type_constructData(
2000-09-18 14:29:57 +00:00
void * pMem, typelib_TypeDescriptionReference * pType )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_defaultConstructData( pMem, pType, 0 );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_constructData(
2000-09-18 14:29:57 +00:00
void * pMem, typelib_TypeDescription * pTypeDescr )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_defaultConstructData( pMem, pTypeDescr->pWeakRef, pTypeDescr );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_type_destructData(
2000-09-18 14:29:57 +00:00
void * pValue, typelib_TypeDescriptionReference * pType,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_destructData( pValue, pType, 0, release );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_destructData(
2000-09-18 14:29:57 +00:00
void * pValue,
typelib_TypeDescription * pTypeDescr,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_destructData( pValue, pTypeDescr->pWeakRef, pTypeDescr, release );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_type_copyData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_copyConstructData( pDest, pSource, pType, 0, acquire, 0 );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_copyData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_copyConstructData( pDest, pSource, pTypeDescr->pWeakRef, pTypeDescr, acquire, 0 );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_type_copyAndConvertData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_copyConstructData( pDest, pSource, pType, 0, 0, mapping );
2000-09-18 14:29:57 +00:00
}
void SAL_CALL uno_copyAndConvertData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
_copyConstructData( pDest, pSource, pTypeDescr->pWeakRef, pTypeDescr, 0, mapping );
2000-09-18 14:29:57 +00:00
}
sal_Bool SAL_CALL uno_type_equalData(
2000-09-18 14:29:57 +00:00
void * pVal1, typelib_TypeDescriptionReference * pVal1Type,
void * pVal2, typelib_TypeDescriptionReference * pVal2Type,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
return _equalData(
pVal1, pVal1Type, 0,
2011-01-24 10:55:39 +00:00
pVal2, pVal2Type,
queryInterface, release );
2000-09-18 14:29:57 +00:00
}
sal_Bool SAL_CALL uno_equalData(
2000-09-18 14:29:57 +00:00
void * pVal1, typelib_TypeDescription * pVal1TD,
void * pVal2, typelib_TypeDescription * pVal2TD,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
return _equalData(
pVal1, pVal1TD->pWeakRef, pVal1TD,
2011-01-24 10:55:39 +00:00
pVal2, pVal2TD->pWeakRef,
queryInterface, release );
2000-09-18 14:29:57 +00:00
}
sal_Bool SAL_CALL uno_type_assignData(
2000-09-18 14:29:57 +00:00
void * pDest, typelib_TypeDescriptionReference * pDestType,
void * pSource, typelib_TypeDescriptionReference * pSourceType,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
return _assignData(
pDest, pDestType, 0,
pSource, pSourceType, 0,
queryInterface, acquire, release );
2000-09-18 14:29:57 +00:00
}
sal_Bool SAL_CALL uno_assignData(
2000-09-18 14:29:57 +00:00
void * pDest, typelib_TypeDescription * pDestTD,
void * pSource, typelib_TypeDescription * pSourceTD,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
2002-08-21 08:19:40 +00:00
return _assignData(
pDest, pDestTD->pWeakRef, pDestTD,
pSource, pSourceTD->pWeakRef, pSourceTD,
queryInterface, acquire, release );
2000-09-18 14:29:57 +00:00
}
sal_Bool SAL_CALL uno_type_isAssignableFromData(
typelib_TypeDescriptionReference * pAssignable,
void * pFrom, typelib_TypeDescriptionReference * pFromType,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
SAL_THROW_EXTERN_C()
{
if (::typelib_typedescriptionreference_isAssignableFrom( pAssignable, pFromType ))
return sal_True;
if (typelib_TypeClass_INTERFACE != pFromType->eTypeClass ||
typelib_TypeClass_INTERFACE != pAssignable->eTypeClass)
{
return sal_False;
}
// query
if (0 == pFrom)
return sal_False;
void * pInterface = *(void **)pFrom;
if (0 == pInterface)
return sal_False;
if (0 == queryInterface)
queryInterface = binuno_queryInterface;
void * p = (*queryInterface)( pInterface, pAssignable );
_release( p, release );
return (0 != p);
}
2000-09-18 14:29:57 +00:00
}
2000-09-18 14:29:57 +00:00
#if OSL_DEBUG_LEVEL > 1
2001-03-09 11:10:57 +00:00
namespace cppu {
#if defined( SAL_W32)
#pragma pack(push, 8)
2000-09-18 14:29:57 +00:00
#endif
2012-03-13 22:48:47 +02:00
// Why hardcode like this instead of using the (generated)
// <sal/typesizes.h> ?
#if (defined(INTEL) \
&& (defined(__GNUC__) && (defined(LINUX) || defined(FREEBSD) || defined(NETBSD) || defined(OPENBSD)) \
|| defined(MACOSX) || defined(DRAGONFLY))) \
2012-03-13 22:48:47 +02:00
|| defined(IOS)
2001-10-16 10:11:46 +00:00
#define MAX_ALIGNMENT_4
#endif
#define OFFSET_OF( s, m ) reinterpret_cast< size_t >((char *)&((s *)16)->m -16)
2001-10-16 10:11:46 +00:00
2001-10-12 14:43:49 +00:00
#define BINTEST_VERIFY( c ) \
if (! (c)) \
{ \
fprintf( stderr, "### binary compatibility test failed: %s [line %d]!!!\n", #c, __LINE__ ); \
abort(); \
}
2001-10-16 10:11:46 +00:00
#define BINTEST_VERIFYOFFSET( s, m, n ) \
if (OFFSET_OF(s, m) != static_cast<size_t>(n)) \
{ \
fprintf(stderr, "### OFFSET_OF(" #s ", " #m ") = %" SAL_PRI_SIZET "u instead of expected %" SAL_PRI_SIZET "u!!!\n", \
OFFSET_OF(s, m), static_cast<size_t>(n)); \
abort(); \
}
2001-10-16 10:11:46 +00:00
2001-10-12 14:43:49 +00:00
#define BINTEST_VERIFYSIZE( s, n ) \
if (sizeof(s) != static_cast<size_t>(n)) \
{ \
fprintf(stderr, "### sizeof(" #s ") = %" SAL_PRI_SIZET "u instead of expected %" SAL_PRI_SIZET "u!!!\n", \
sizeof(s), static_cast<size_t>(n)); \
abort(); \
}
2001-10-12 14:43:49 +00:00
2001-10-16 10:11:46 +00:00
struct C1
2001-10-12 10:05:23 +00:00
{
2001-10-16 10:11:46 +00:00
sal_Int16 n1;
2001-10-12 10:05:23 +00:00
};
2001-10-16 10:11:46 +00:00
struct C2 : public C1
2001-10-12 10:05:23 +00:00
{
2001-10-19 12:04:06 +00:00
sal_Int32 n2 CPPU_GCC3_ALIGN( C1 );
2001-10-12 14:43:49 +00:00
};
struct C3 : public C2
{
2001-10-16 10:11:46 +00:00
double d3;
sal_Int32 n3;
2001-10-12 14:43:49 +00:00
};
struct C4 : public C3
{
2001-10-19 12:04:06 +00:00
sal_Int32 n4 CPPU_GCC3_ALIGN( C3 );
2001-10-16 10:11:46 +00:00
double d4;
2001-10-12 14:43:49 +00:00
};
2001-10-16 10:11:46 +00:00
struct C5 : public C4
2001-10-12 14:43:49 +00:00
{
2001-10-16 10:11:46 +00:00
sal_Int64 n5;
sal_Bool b5;
};
2001-10-17 12:24:04 +00:00
struct C6 : public C1
2001-10-16 10:11:46 +00:00
{
2001-10-19 12:04:06 +00:00
C5 c6 CPPU_GCC3_ALIGN( C1 );
2001-10-16 10:11:46 +00:00
sal_Bool b6;
2001-10-12 10:05:23 +00:00
};
2001-10-12 09:55:46 +00:00
struct D
{
sal_Int16 d;
sal_Int32 e;
};
struct E
{
sal_Bool a;
sal_Bool b;
sal_Bool c;
sal_Int16 d;
sal_Int32 e;
};
2000-09-18 14:29:57 +00:00
struct M
{
sal_Int32 n;
sal_Int16 o;
};
struct N : public M
{
2001-10-19 12:04:06 +00:00
sal_Int16 p CPPU_GCC3_ALIGN( M );
2001-10-12 14:43:49 +00:00
};
struct N2
{
M m;
2000-09-18 14:29:57 +00:00
sal_Int16 p;
};
struct O : public M
{
2001-10-16 10:11:46 +00:00
double p;
sal_Int16 q;
2001-10-12 15:21:02 +00:00
};
struct O2 : public O
{
sal_Int16 p2 CPPU_GCC3_ALIGN( O );
2000-09-18 14:29:57 +00:00
};
2001-03-09 11:10:57 +00:00
struct P : public N
{
2001-10-19 12:25:15 +00:00
double p2;
2001-03-09 11:10:57 +00:00
};
2000-09-18 14:29:57 +00:00
struct empty
{
};
struct second : public empty
{
int a;
};
2001-10-12 15:21:02 +00:00
struct AlignSize_Impl
{
sal_Int16 nInt16;
double dDouble;
};
2001-10-16 10:11:46 +00:00
struct Char1
{
char c1;
};
struct Char2 : public Char1
{
2001-10-19 12:04:06 +00:00
char c2 CPPU_GCC3_ALIGN( Char1 );
2001-10-16 10:11:46 +00:00
};
struct Char3 : public Char2
{
2001-10-19 12:04:06 +00:00
char c3 CPPU_GCC3_ALIGN( Char2 );
2001-10-16 10:11:46 +00:00
};
struct Char4
{
Char3 chars;
char c;
};
class Ref
{
void * p;
};
enum Enum
{
v = SAL_MAX_ENUM
};
2001-10-16 10:11:46 +00:00
2000-09-18 14:29:57 +00:00
class BinaryCompatible_Impl
{
public:
BinaryCompatible_Impl();
};
BinaryCompatible_Impl::BinaryCompatible_Impl()
{
static_assert( ((sal_Bool) true) == sal_True &&
(1 != 0) == sal_True, "must be binary compatible" );
static_assert( ((sal_Bool) false) == sal_False &&
(1 == 0) == sal_False, "must be binary compatible" );
2001-10-16 10:11:46 +00:00
#ifdef MAX_ALIGNMENT_4
// max alignment is 4
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYOFFSET( AlignSize_Impl, dDouble, 4 );
BINTEST_VERIFYSIZE( AlignSize_Impl, 12 );
2001-10-16 10:11:46 +00:00
#else
// max alignment is 8
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYOFFSET( AlignSize_Impl, dDouble, 8 );
BINTEST_VERIFYSIZE( AlignSize_Impl, 16 );
2001-10-12 15:21:02 +00:00
#endif
// sequence
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( (SAL_SEQUENCE_HEADER_SIZE % 8) == 0 );
// enum
BINTEST_VERIFY( sizeof( Enum ) == sizeof( sal_Int32 ) );
// any
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof(void *) >= sizeof(sal_Int32) );
BINTEST_VERIFY( sizeof( uno_Any ) == sizeof( void * ) * 3 );
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYOFFSET( uno_Any, pType, 0 );
BINTEST_VERIFYOFFSET( uno_Any, pData, 1 * sizeof (void *) );
BINTEST_VERIFYOFFSET( uno_Any, pReserved, 2 * sizeof (void *) );
// interface
BINTEST_VERIFY( sizeof( Ref ) == sizeof( void * ) );
// string
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof( OUString ) == sizeof( rtl_uString * ) );
// struct
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( M, 8 );
BINTEST_VERIFYOFFSET( M, o, 4 );
BINTEST_VERIFYSIZE( N, 12 );
BINTEST_VERIFYOFFSET( N, p, 8 );
BINTEST_VERIFYSIZE( N2, 12 );
BINTEST_VERIFYOFFSET( N2, p, 8 );
#ifdef MAX_ALIGNMENT_4
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( O, 20 );
#else
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( O, 24 );
#endif
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( D, 8 );
BINTEST_VERIFYOFFSET( D, e, 4 );
BINTEST_VERIFYOFFSET( E, d, 4 );
BINTEST_VERIFYOFFSET( E, e, 8 );
2001-10-12 14:43:49 +00:00
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( C1, 2 );
BINTEST_VERIFYSIZE( C2, 8 );
BINTEST_VERIFYOFFSET( C2, n2, 4 );
2001-10-16 10:11:46 +00:00
#ifdef MAX_ALIGNMENT_4
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( C3, 20 );
BINTEST_VERIFYOFFSET( C3, d3, 8 );
BINTEST_VERIFYOFFSET( C3, n3, 16 );
BINTEST_VERIFYSIZE( C4, 32 );
BINTEST_VERIFYOFFSET( C4, n4, 20 );
BINTEST_VERIFYOFFSET( C4, d4, 24 );
BINTEST_VERIFYSIZE( C5, 44 );
BINTEST_VERIFYOFFSET( C5, n5, 32 );
BINTEST_VERIFYOFFSET( C5, b5, 40 );
BINTEST_VERIFYSIZE( C6, 52 );
BINTEST_VERIFYOFFSET( C6, c6, 4 );
BINTEST_VERIFYOFFSET( C6, b6, 48 );
BINTEST_VERIFYSIZE( O2, 24 );
BINTEST_VERIFYOFFSET( O2, p2, 20 );
2001-10-16 10:11:46 +00:00
#else
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( C3, 24 );
BINTEST_VERIFYOFFSET( C3, d3, 8 );
BINTEST_VERIFYOFFSET( C3, n3, 16 );
BINTEST_VERIFYSIZE( C4, 40 );
BINTEST_VERIFYOFFSET( C4, n4, 24 );
BINTEST_VERIFYOFFSET( C4, d4, 32 );
BINTEST_VERIFYSIZE( C5, 56 );
BINTEST_VERIFYOFFSET( C5, n5, 40 );
BINTEST_VERIFYOFFSET( C5, b5, 48 );
BINTEST_VERIFYSIZE( C6, 72 );
BINTEST_VERIFYOFFSET( C6, c6, 8 );
BINTEST_VERIFYOFFSET( C6, b6, 64 );
BINTEST_VERIFYSIZE( O2, 32 );
BINTEST_VERIFYOFFSET( O2, p2, 24 );
#endif
2001-10-12 15:21:02 +00:00
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( Char3, 3 );
BINTEST_VERIFYOFFSET( Char4, c, 3 );
2001-10-16 10:11:46 +00:00
#ifdef MAX_ALIGNMENT_4
// max alignment is 4
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( P, 20 );
2001-10-16 10:11:46 +00:00
#else
// alignment of P is 8, because of P[] ...
2012-06-13 14:06:08 +01:00
BINTEST_VERIFYSIZE( P, 24 );
2001-10-12 14:43:49 +00:00
BINTEST_VERIFYSIZE( second, sizeof( int ) );
#endif
}
2000-09-18 14:29:57 +00:00
#ifdef SAL_W32
# pragma pack(pop)
#endif
static BinaryCompatible_Impl aTest;
2001-03-09 11:10:57 +00:00
2000-09-18 14:29:57 +00:00
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */