blob: 77300534e9fc8aef9497854ad597f621b9a22c3f [file] [log] [blame]
// checking for operator new (size_t, void*)
/***************************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*
* Copyright 1999-2007 Rogue Wave Software, Inc.
*
**************************************************************************/
#include "config.h"
#include <stddef.h>
#ifdef _RWSTD_NO_EXCEPTION_SPECIFICATION
# define throw()
#endif // _RWSTD_NO_EXCEPTION_SPECIFICATION
#ifndef _RWSTD_NO_HONOR_STD
# ifdef _RWSTD_NO_STD_TERMINATE
# include "terminate.h"
# endif // _RWSTD_NO_STD_TERMINATE
#endif // _RWSTD_NO_HONOR_STD
void* operator new (size_t, void*) throw ();
void* foo (size_t n, void *p) throw () { return ::operator new (n, p); }
void* (*operator_new)(size_t, void*);
struct S {
char c_;
char d_;
S (): c_ (0), d_ (0) { }
S (char c): c_ (c), d_ (0) { }
S (char c, char d): c_ (c), d_ (d) { }
};
int main (int argc, char *argv[])
{
(void)&argv;
int result = 0;
char buf [sizeof (S) + 32];
void *p0 = buf;
void *p1 = ::operator new (sizeof (S), p0);
if (p1 != p0)
result = result << 1 + 1;
if (argc > 1)
operator_new = &operator new;
else
operator_new = &foo;
p1 = operator_new (sizeof (S), p0);
if (p1 != p0)
result = (result << 1) + 1;
S *s = new (p0) S ();
if (p1 != p0)
result = (result << 1) + 1;
if (s->c_ != '\0' || s->d_ != '\0')
result = (result << 1) + 1;
s = new (p0) S ('x');
if (s->c_ != 'x' || s->d_ != '\0')
result = (result << 1) + 1;
s = new (p0) S ('y', 'z');
if (s->c_ != 'c' || s->d_ != 'z')
result = (result << 1) + 1;
// prevent compilers from optimizing the code above away
// without actually ever using the result (unless the
// test is invoked with command line arguments)
if (argc > 1)
return result;
return 0;
}