re PR libobjc/25354 (There should be an automated testsuite for objc_sizeof_type and objc_alignof_type)
2005-12-12 Andrew Pinski <pinskia@physics.uc.edu> PR libobjc/25354 * objc.dg/gnu-encoding: New directory. * objc.dg/gnu-encoding/compat-common.h: New file. * objc.dg/gnu-encoding/struct-layout-1.h: New file. * objc.dg/gnu-encoding/struct-layout-1_test.h: New file. * objc.dg/gnu-encoding/vector-defs.h: New file. * objc.dg/gnu-encoding/gnu-encoding.exp: New file. * objc.dg/gnu-encoding/generate-random.c: New file. * objc.dg/gnu-encoding/generate-random_r.c: New file. * objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c: New file. * objc.dg/gnu-encoding/generate-random.h: New file. 2005-12-12 Andrew Pinski <pinskia@physics.uc.edu> * encoding.c (TYPE_FIELDS): Fix to skip over just _C_STRUCT_B and the name. (get_inner_array_type): Fix to skip over _C_ARY_B and size. (rs6000_special_round_type_align): Update for the ABI fix. (objc_layout_finish_structure): Correct the encoding which is passed to ROUND_TYPE_ALIGN. From-SVN: r108398
This commit is contained in:
parent
3897c0aae8
commit
761c0d29cb
@ -1,3 +1,17 @@
|
||||
2005-12-12 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR libobjc/25354
|
||||
* objc.dg/gnu-encoding: New directory.
|
||||
* objc.dg/gnu-encoding/compat-common.h: New file.
|
||||
* objc.dg/gnu-encoding/struct-layout-1.h: New file.
|
||||
* objc.dg/gnu-encoding/struct-layout-1_test.h: New file.
|
||||
* objc.dg/gnu-encoding/vector-defs.h: New file.
|
||||
* objc.dg/gnu-encoding/gnu-encoding.exp: New file.
|
||||
* objc.dg/gnu-encoding/generate-random.c: New file.
|
||||
* objc.dg/gnu-encoding/generate-random_r.c: New file.
|
||||
* objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c: New file.
|
||||
* objc.dg/gnu-encoding/generate-random.h: New file.
|
||||
|
||||
2005-12-11 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/25337
|
||||
|
43
gcc/testsuite/objc.dg/gnu-encoding/compat-common.h
Normal file
43
gcc/testsuite/objc.dg/gnu-encoding/compat-common.h
Normal file
@ -0,0 +1,43 @@
|
||||
/* Several of the binary compatibility tests use these macros to
|
||||
allow debugging the test or tracking down a failure by getting an
|
||||
indication of whether each individual check passed or failed.
|
||||
When DBG is defined, each check is shown by a dot (pass) or 'F'
|
||||
(fail) rather than aborting as soon as a failure is detected. */
|
||||
|
||||
#ifdef DBG
|
||||
#include <stdio.h>
|
||||
#define DEBUG_INIT setbuf (stdout, NULL);
|
||||
#define DEBUG_FPUTS(x) fputs (x, stdout)
|
||||
#define DEBUG_DOT putc ('.', stdout)
|
||||
#define DEBUG_NL putc ('\n', stdout)
|
||||
#define DEBUG_FAIL putc ('F', stdout); fails++
|
||||
#define DEBUG_CHECK { DEBUG_FAIL; } else { DEBUG_DOT; }
|
||||
#define DEBUG_FINI if (fails) DEBUG_FPUTS ("failed\n"); \
|
||||
else DEBUG_FPUTS ("passed\n");
|
||||
#else
|
||||
#define DEBUG_INIT
|
||||
#define DEBUG_FPUTS(x)
|
||||
#define DEBUG_DOT
|
||||
#define DEBUG_NL
|
||||
#define DEBUG_FAIL abort ()
|
||||
#define DEBUG_CHECK abort ();
|
||||
#define DEBUG_FINI
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define CINT(x, y) (x + y * __extension__ 1i)
|
||||
#define CDBL(x, y) (x + y * __extension__ 1i)
|
||||
#else
|
||||
#ifdef __SUNPRO_C
|
||||
/* ??? Complex support without <complex.h>. */
|
||||
#else
|
||||
#include <complex.h>
|
||||
#endif
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
#define CINT(x, y) ((_Complex int) (x + y * _Complex_I))
|
||||
#endif
|
||||
#define CDBL(x, y) (x + y * _Complex_I)
|
||||
#endif
|
||||
|
||||
extern void abort (void);
|
||||
extern int fails;
|
265
gcc/testsuite/objc.dg/gnu-encoding/generate-random.c
Normal file
265
gcc/testsuite/objc.dg/gnu-encoding/generate-random.c
Normal file
@ -0,0 +1,265 @@
|
||||
/* Copyright (C) 1995, 2004 Free Software Foundation
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
02110-1301 USA. */
|
||||
|
||||
/*
|
||||
* This is derived from the Berkeley source:
|
||||
* @(#)random.c 5.5 (Berkeley) 7/6/88
|
||||
* It was reworked for the GNU C Library by Roland McGrath.
|
||||
* Rewritten to use reentrant functions by Ulrich Drepper, 1995.
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright (C) 1983 Regents of the University of California.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
4. Neither the name of the University nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.*/
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include "generate-random.h"
|
||||
|
||||
|
||||
/* An improved random number generation package. In addition to the standard
|
||||
rand()/srand() like interface, this package also has a special state info
|
||||
interface. The initstate() routine is called with a seed, an array of
|
||||
bytes, and a count of how many bytes are being passed in; this array is
|
||||
then initialized to contain information for random number generation with
|
||||
that much state information. Good sizes for the amount of state
|
||||
information are 32, 64, 128, and 256 bytes. The state can be switched by
|
||||
calling the setstate() function with the same array as was initialized
|
||||
with initstate(). By default, the package runs with 128 bytes of state
|
||||
information and generates far better random numbers than a linear
|
||||
congruential generator. If the amount of state information is less than
|
||||
32 bytes, a simple linear congruential R.N.G. is used. Internally, the
|
||||
state information is treated as an array of longs; the zeroth element of
|
||||
the array is the type of R.N.G. being used (small integer); the remainder
|
||||
of the array is the state information for the R.N.G. Thus, 32 bytes of
|
||||
state information will give 7 longs worth of state information, which will
|
||||
allow a degree seven polynomial. (Note: The zeroth word of state
|
||||
information also has some other information stored in it; see setstate
|
||||
for details). The random number generation technique is a linear feedback
|
||||
shift register approach, employing trinomials (since there are fewer terms
|
||||
to sum up that way). In this approach, the least significant bit of all
|
||||
the numbers in the state table will act as a linear feedback shift register,
|
||||
and will have period 2^deg - 1 (where deg is the degree of the polynomial
|
||||
being used, assuming that the polynomial is irreducible and primitive).
|
||||
The higher order bits will have longer periods, since their values are
|
||||
also influenced by pseudo-random carries out of the lower bits. The
|
||||
total period of the generator is approximately deg*(2**deg - 1); thus
|
||||
doubling the amount of state information has a vast influence on the
|
||||
period of the generator. Note: The deg*(2**deg - 1) is an approximation
|
||||
only good for large deg, when the period of the shift register is the
|
||||
dominant factor. With deg equal to seven, the period is actually much
|
||||
longer than the 7*(2**7 - 1) predicted by this formula. */
|
||||
|
||||
|
||||
|
||||
/* For each of the currently supported random number generators, we have a
|
||||
break value on the amount of state information (you need at least this many
|
||||
bytes of state info to support this random number generator), a degree for
|
||||
the polynomial (actually a trinomial) that the R.N.G. is based on, and
|
||||
separation between the two lower order coefficients of the trinomial. */
|
||||
|
||||
/* Linear congruential. */
|
||||
#define TYPE_0 0
|
||||
#define BREAK_0 8
|
||||
#define DEG_0 0
|
||||
#define SEP_0 0
|
||||
|
||||
/* x**7 + x**3 + 1. */
|
||||
#define TYPE_1 1
|
||||
#define BREAK_1 32
|
||||
#define DEG_1 7
|
||||
#define SEP_1 3
|
||||
|
||||
/* x**15 + x + 1. */
|
||||
#define TYPE_2 2
|
||||
#define BREAK_2 64
|
||||
#define DEG_2 15
|
||||
#define SEP_2 1
|
||||
|
||||
/* x**31 + x**3 + 1. */
|
||||
#define TYPE_3 3
|
||||
#define BREAK_3 128
|
||||
#define DEG_3 31
|
||||
#define SEP_3 3
|
||||
|
||||
/* x**63 + x + 1. */
|
||||
#define TYPE_4 4
|
||||
#define BREAK_4 256
|
||||
#define DEG_4 63
|
||||
#define SEP_4 1
|
||||
|
||||
|
||||
/* Array versions of the above information to make code run faster.
|
||||
Relies on fact that TYPE_i == i. */
|
||||
|
||||
#define MAX_TYPES 5 /* Max number of types above. */
|
||||
|
||||
|
||||
/* Initially, everything is set up as if from:
|
||||
initstate(1, randtbl, 128);
|
||||
Note that this initialization takes advantage of the fact that srandom
|
||||
advances the front and rear pointers 10*rand_deg times, and hence the
|
||||
rear pointer which starts at 0 will also end up at zero; thus the zeroth
|
||||
element of the state information, which contains info about the current
|
||||
position of the rear pointer is just
|
||||
(MAX_TYPES * (rptr - state)) + TYPE_3 == TYPE_3. */
|
||||
|
||||
static int randtbl[DEG_3 + 1] =
|
||||
{
|
||||
TYPE_3,
|
||||
|
||||
-1726662223, 379960547, 1735697613, 1040273694, 1313901226,
|
||||
1627687941, -179304937, -2073333483, 1780058412, -1989503057,
|
||||
-615974602, 344556628, 939512070, -1249116260, 1507946756,
|
||||
-812545463, 154635395, 1388815473, -1926676823, 525320961,
|
||||
-1009028674, 968117788, -123449607, 1284210865, 435012392,
|
||||
-2017506339, -911064859, -370259173, 1132637927, 1398500161,
|
||||
-205601318,
|
||||
};
|
||||
|
||||
|
||||
static struct generate_random_data unsafe_state =
|
||||
{
|
||||
/* FPTR and RPTR are two pointers into the state info, a front and a rear
|
||||
pointer. These two pointers are always rand_sep places aparts, as they
|
||||
cycle through the state information. (Yes, this does mean we could get
|
||||
away with just one pointer, but the code for random is more efficient
|
||||
this way). The pointers are left positioned as they would be from the call:
|
||||
initstate(1, randtbl, 128);
|
||||
(The position of the rear pointer, rptr, is really 0 (as explained above
|
||||
in the initialization of randtbl) because the state table pointer is set
|
||||
to point to randtbl[1] (as explained below).) */
|
||||
|
||||
&randtbl[SEP_3 + 1], /* fptr */
|
||||
&randtbl[1], /* rptr */
|
||||
|
||||
/* The following things are the pointer to the state information table,
|
||||
the type of the current generator, the degree of the current polynomial
|
||||
being used, and the separation between the two pointers.
|
||||
Note that for efficiency of random, we remember the first location of
|
||||
the state information, not the zeroth. Hence it is valid to access
|
||||
state[-1], which is used to store the type of the R.N.G.
|
||||
Also, we remember the last location, since this is more efficient than
|
||||
indexing every time to find the address of the last element to see if
|
||||
the front and rear pointers have wrapped. */
|
||||
|
||||
&randtbl[1], /* state */
|
||||
|
||||
TYPE_3, /* rand_type */
|
||||
DEG_3, /* rand_deg */
|
||||
SEP_3, /* rand_sep */
|
||||
|
||||
&randtbl[sizeof (randtbl) / sizeof (randtbl[0])] /* end_ptr */
|
||||
};
|
||||
|
||||
/* Initialize the random number generator based on the given seed. If the
|
||||
type is the trivial no-state-information type, just remember the seed.
|
||||
Otherwise, initializes state[] based on the given "seed" via a linear
|
||||
congruential generator. Then, the pointers are set to known locations
|
||||
that are exactly rand_sep places apart. Lastly, it cycles the state
|
||||
information a given number of times to get rid of any initial dependencies
|
||||
introduced by the L.C.R.N.G. Note that the initialization of randtbl[]
|
||||
for default usage relies on values produced by this routine. */
|
||||
void
|
||||
generate_srandom (unsigned int x)
|
||||
{
|
||||
(void) generate_srandom_r (x, &unsafe_state);
|
||||
}
|
||||
|
||||
/* Initialize the state information in the given array of N bytes for
|
||||
future random number generation. Based on the number of bytes we
|
||||
are given, and the break values for the different R.N.G.'s, we choose
|
||||
the best (largest) one we can and set things up for it. srandom is
|
||||
then called to initialize the state information. Note that on return
|
||||
from srandom, we set state[-1] to be the type multiplexed with the current
|
||||
value of the rear pointer; this is so successive calls to initstate won't
|
||||
lose this information and will be able to restart with setstate.
|
||||
Note: The first thing we do is save the current state, if any, just like
|
||||
setstate so that it doesn't matter when initstate is called.
|
||||
Returns a pointer to the old state. */
|
||||
char *
|
||||
generate_initstate (unsigned int seed, char *arg_state, size_t n)
|
||||
{
|
||||
int *ostate;
|
||||
|
||||
ostate = &unsafe_state.state[-1];
|
||||
generate_initstate_r (seed, arg_state, n, &unsafe_state);
|
||||
return (char *) ostate;
|
||||
}
|
||||
|
||||
/* Restore the state from the given state array.
|
||||
Note: It is important that we also remember the locations of the pointers
|
||||
in the current state information, and restore the locations of the pointers
|
||||
from the old state information. This is done by multiplexing the pointer
|
||||
location into the zeroth word of the state information. Note that due
|
||||
to the order in which things are done, it is OK to call setstate with the
|
||||
same state as the current state
|
||||
Returns a pointer to the old state information. */
|
||||
char *
|
||||
generate_setstate (char *arg_state)
|
||||
{
|
||||
int *ostate;
|
||||
|
||||
ostate = &unsafe_state.state[-1];
|
||||
if (generate_setstate_r (arg_state, &unsafe_state) < 0)
|
||||
ostate = NULL;
|
||||
return (char *) ostate;
|
||||
}
|
||||
|
||||
/* If we are using the trivial TYPE_0 R.N.G., just do the old linear
|
||||
congruential bit. Otherwise, we do our fancy trinomial stuff, which is the
|
||||
same in all the other cases due to all the global variables that have been
|
||||
set up. The basic operation is to add the number at the rear pointer into
|
||||
the one at the front pointer. Then both pointers are advanced to the next
|
||||
location cyclically in the table. The value returned is the sum generated,
|
||||
reduced to 31 bits by throwing away the "least random" low bit.
|
||||
Note: The code takes advantage of the fact that both the front and
|
||||
rear pointers can't wrap on the same call by not testing the rear
|
||||
pointer if the front one has wrapped. Returns a 31-bit random number. */
|
||||
|
||||
long int
|
||||
generate_random (void)
|
||||
{
|
||||
int retval;
|
||||
(void) generate_random_r (&unsafe_state, &retval);
|
||||
return retval;
|
||||
}
|
33
gcc/testsuite/objc.dg/gnu-encoding/generate-random.h
Normal file
33
gcc/testsuite/objc.dg/gnu-encoding/generate-random.h
Normal file
@ -0,0 +1,33 @@
|
||||
/* Copyright (C) 2004 Free Software Foundation
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
02110-1301 USA. */
|
||||
|
||||
struct generate_random_data
|
||||
{
|
||||
int *fptr, *rptr, *state;
|
||||
int rand_type, rand_deg, rand_sep;
|
||||
int *end_ptr;
|
||||
};
|
||||
|
||||
extern void generate_srandom (unsigned int);
|
||||
extern char *generate_initstate (unsigned int, char *, size_t);
|
||||
extern char *generate_setstate (char *);
|
||||
extern long int generate_random (void);
|
||||
extern int generate_random_r (struct generate_random_data *, int *);
|
||||
extern int generate_srandom_r (unsigned int, struct generate_random_data *);
|
||||
extern int generate_initstate_r (unsigned int, char *, size_t,
|
||||
struct generate_random_data *);
|
||||
extern int generate_setstate_r (char *, struct generate_random_data *);
|
385
gcc/testsuite/objc.dg/gnu-encoding/generate-random_r.c
Normal file
385
gcc/testsuite/objc.dg/gnu-encoding/generate-random_r.c
Normal file
@ -0,0 +1,385 @@
|
||||
/*
|
||||
Copyright (C) 1995, 2004 Free Software Foundation
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
02110-1301 USA. */
|
||||
|
||||
/*
|
||||
Copyright (C) 1983 Regents of the University of California.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
4. Neither the name of the University nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.*/
|
||||
|
||||
/*
|
||||
* This is derived from the Berkeley source:
|
||||
* @(#)random.c 5.5 (Berkeley) 7/6/88
|
||||
* It was reworked for the GNU C Library by Roland McGrath.
|
||||
* Rewritten to be reentrant by Ulrich Drepper, 1995
|
||||
*/
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include "generate-random.h"
|
||||
|
||||
|
||||
/* An improved random number generation package. In addition to the standard
|
||||
rand()/srand() like interface, this package also has a special state info
|
||||
interface. The initstate() routine is called with a seed, an array of
|
||||
bytes, and a count of how many bytes are being passed in; this array is
|
||||
then initialized to contain information for random number generation with
|
||||
that much state information. Good sizes for the amount of state
|
||||
information are 32, 64, 128, and 256 bytes. The state can be switched by
|
||||
calling the setstate() function with the same array as was initialized
|
||||
with initstate(). By default, the package runs with 128 bytes of state
|
||||
information and generates far better random numbers than a linear
|
||||
congruential generator. If the amount of state information is less than
|
||||
32 bytes, a simple linear congruential R.N.G. is used. Internally, the
|
||||
state information is treated as an array of longs; the zeroth element of
|
||||
the array is the type of R.N.G. being used (small integer); the remainder
|
||||
of the array is the state information for the R.N.G. Thus, 32 bytes of
|
||||
state information will give 7 longs worth of state information, which will
|
||||
allow a degree seven polynomial. (Note: The zeroth word of state
|
||||
information also has some other information stored in it; see setstate
|
||||
for details). The random number generation technique is a linear feedback
|
||||
shift register approach, employing trinomials (since there are fewer terms
|
||||
to sum up that way). In this approach, the least significant bit of all
|
||||
the numbers in the state table will act as a linear feedback shift register,
|
||||
and will have period 2^deg - 1 (where deg is the degree of the polynomial
|
||||
being used, assuming that the polynomial is irreducible and primitive).
|
||||
The higher order bits will have longer periods, since their values are
|
||||
also influenced by pseudo-random carries out of the lower bits. The
|
||||
total period of the generator is approximately deg*(2**deg - 1); thus
|
||||
doubling the amount of state information has a vast influence on the
|
||||
period of the generator. Note: The deg*(2**deg - 1) is an approximation
|
||||
only good for large deg, when the period of the shift register is the
|
||||
dominant factor. With deg equal to seven, the period is actually much
|
||||
longer than the 7*(2**7 - 1) predicted by this formula. */
|
||||
|
||||
|
||||
|
||||
/* For each of the currently supported random number generators, we have a
|
||||
break value on the amount of state information (you need at least this many
|
||||
bytes of state info to support this random number generator), a degree for
|
||||
the polynomial (actually a trinomial) that the R.N.G. is based on, and
|
||||
separation between the two lower order coefficients of the trinomial. */
|
||||
|
||||
/* Linear congruential. */
|
||||
#define TYPE_0 0
|
||||
#define BREAK_0 8
|
||||
#define DEG_0 0
|
||||
#define SEP_0 0
|
||||
|
||||
/* x**7 + x**3 + 1. */
|
||||
#define TYPE_1 1
|
||||
#define BREAK_1 32
|
||||
#define DEG_1 7
|
||||
#define SEP_1 3
|
||||
|
||||
/* x**15 + x + 1. */
|
||||
#define TYPE_2 2
|
||||
#define BREAK_2 64
|
||||
#define DEG_2 15
|
||||
#define SEP_2 1
|
||||
|
||||
/* x**31 + x**3 + 1. */
|
||||
#define TYPE_3 3
|
||||
#define BREAK_3 128
|
||||
#define DEG_3 31
|
||||
#define SEP_3 3
|
||||
|
||||
/* x**63 + x + 1. */
|
||||
#define TYPE_4 4
|
||||
#define BREAK_4 256
|
||||
#define DEG_4 63
|
||||
#define SEP_4 1
|
||||
|
||||
|
||||
/* Array versions of the above information to make code run faster.
|
||||
Relies on fact that TYPE_i == i. */
|
||||
|
||||
#define MAX_TYPES 5 /* Max number of types above. */
|
||||
|
||||
struct random_poly_info
|
||||
{
|
||||
int seps[MAX_TYPES];
|
||||
int degrees[MAX_TYPES];
|
||||
};
|
||||
|
||||
static const struct random_poly_info random_poly_info =
|
||||
{
|
||||
{ SEP_0, SEP_1, SEP_2, SEP_3, SEP_4 },
|
||||
{ DEG_0, DEG_1, DEG_2, DEG_3, DEG_4 }
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
/* Initialize the random number generator based on the given seed. If the
|
||||
type is the trivial no-state-information type, just remember the seed.
|
||||
Otherwise, initializes state[] based on the given "seed" via a linear
|
||||
congruential generator. Then, the pointers are set to known locations
|
||||
that are exactly rand_sep places apart. Lastly, it cycles the state
|
||||
information a given number of times to get rid of any initial dependencies
|
||||
introduced by the L.C.R.N.G. Note that the initialization of randtbl[]
|
||||
for default usage relies on values produced by this routine. */
|
||||
int
|
||||
generate_srandom_r (unsigned int seed, struct generate_random_data *buf)
|
||||
{
|
||||
int type;
|
||||
int *state;
|
||||
long int i;
|
||||
long int word;
|
||||
int *dst;
|
||||
int kc;
|
||||
|
||||
if (buf == NULL)
|
||||
goto fail;
|
||||
type = buf->rand_type;
|
||||
if ((unsigned int) type >= MAX_TYPES)
|
||||
goto fail;
|
||||
|
||||
state = buf->state;
|
||||
/* We must make sure the seed is not 0. Take arbitrarily 1 in this case. */
|
||||
if (seed == 0)
|
||||
seed = 1;
|
||||
state[0] = seed;
|
||||
if (type == TYPE_0)
|
||||
goto done;
|
||||
|
||||
dst = state;
|
||||
word = seed;
|
||||
kc = buf->rand_deg;
|
||||
for (i = 1; i < kc; ++i)
|
||||
{
|
||||
/* This does:
|
||||
state[i] = (16807 * state[i - 1]) % 2147483647;
|
||||
but avoids overflowing 31 bits. */
|
||||
long int hi = word / 127773;
|
||||
long int lo = word % 127773;
|
||||
word = 16807 * lo - 2836 * hi;
|
||||
if (word < 0)
|
||||
word += 2147483647;
|
||||
*++dst = word;
|
||||
}
|
||||
|
||||
buf->fptr = &state[buf->rand_sep];
|
||||
buf->rptr = &state[0];
|
||||
kc *= 10;
|
||||
while (--kc >= 0)
|
||||
{
|
||||
int discard;
|
||||
(void) generate_random_r (buf, &discard);
|
||||
}
|
||||
|
||||
done:
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Initialize the state information in the given array of N bytes for
|
||||
future random number generation. Based on the number of bytes we
|
||||
are given, and the break values for the different R.N.G.'s, we choose
|
||||
the best (largest) one we can and set things up for it. srandom is
|
||||
then called to initialize the state information. Note that on return
|
||||
from srandom, we set state[-1] to be the type multiplexed with the current
|
||||
value of the rear pointer; this is so successive calls to initstate won't
|
||||
lose this information and will be able to restart with setstate.
|
||||
Note: The first thing we do is save the current state, if any, just like
|
||||
setstate so that it doesn't matter when initstate is called.
|
||||
Returns a pointer to the old state. */
|
||||
int
|
||||
generate_initstate_r (unsigned int seed, char *arg_state, size_t n,
|
||||
struct generate_random_data *buf)
|
||||
{
|
||||
int type;
|
||||
int degree;
|
||||
int separation;
|
||||
int *state;
|
||||
|
||||
if (buf == NULL)
|
||||
goto fail;
|
||||
|
||||
if (n >= BREAK_3)
|
||||
type = n < BREAK_4 ? TYPE_3 : TYPE_4;
|
||||
else if (n < BREAK_1)
|
||||
{
|
||||
if (n < BREAK_0)
|
||||
{
|
||||
goto fail;
|
||||
}
|
||||
type = TYPE_0;
|
||||
}
|
||||
else
|
||||
type = n < BREAK_2 ? TYPE_1 : TYPE_2;
|
||||
|
||||
degree = random_poly_info.degrees[type];
|
||||
separation = random_poly_info.seps[type];
|
||||
|
||||
buf->rand_type = type;
|
||||
buf->rand_sep = separation;
|
||||
buf->rand_deg = degree;
|
||||
state = &((int *) arg_state)[1]; /* First location. */
|
||||
/* Must set END_PTR before srandom. */
|
||||
buf->end_ptr = &state[degree];
|
||||
|
||||
buf->state = state;
|
||||
|
||||
generate_srandom_r (seed, buf);
|
||||
|
||||
state[-1] = TYPE_0;
|
||||
if (type != TYPE_0)
|
||||
state[-1] = (buf->rptr - state) * MAX_TYPES + type;
|
||||
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Restore the state from the given state array.
|
||||
Note: It is important that we also remember the locations of the pointers
|
||||
in the current state information, and restore the locations of the pointers
|
||||
from the old state information. This is done by multiplexing the pointer
|
||||
location into the zeroth word of the state information. Note that due
|
||||
to the order in which things are done, it is OK to call setstate with the
|
||||
same state as the current state
|
||||
Returns a pointer to the old state information. */
|
||||
int
|
||||
generate_setstate_r (char *arg_state, struct generate_random_data *buf)
|
||||
{
|
||||
int *new_state = 1 + (int *) arg_state;
|
||||
int type;
|
||||
int old_type;
|
||||
int *old_state;
|
||||
int degree;
|
||||
int separation;
|
||||
|
||||
if (arg_state == NULL || buf == NULL)
|
||||
goto fail;
|
||||
|
||||
old_type = buf->rand_type;
|
||||
old_state = buf->state;
|
||||
if (old_type == TYPE_0)
|
||||
old_state[-1] = TYPE_0;
|
||||
else
|
||||
old_state[-1] = (MAX_TYPES * (buf->rptr - old_state)) + old_type;
|
||||
|
||||
type = new_state[-1] % MAX_TYPES;
|
||||
if (type < TYPE_0 || type > TYPE_4)
|
||||
goto fail;
|
||||
|
||||
buf->rand_deg = degree = random_poly_info.degrees[type];
|
||||
buf->rand_sep = separation = random_poly_info.seps[type];
|
||||
buf->rand_type = type;
|
||||
|
||||
if (type != TYPE_0)
|
||||
{
|
||||
int rear = new_state[-1] / MAX_TYPES;
|
||||
buf->rptr = &new_state[rear];
|
||||
buf->fptr = &new_state[(rear + separation) % degree];
|
||||
}
|
||||
buf->state = new_state;
|
||||
/* Set end_ptr too. */
|
||||
buf->end_ptr = &new_state[degree];
|
||||
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* If we are using the trivial TYPE_0 R.N.G., just do the old linear
|
||||
congruential bit. Otherwise, we do our fancy trinomial stuff, which is the
|
||||
same in all the other cases due to all the global variables that have been
|
||||
set up. The basic operation is to add the number at the rear pointer into
|
||||
the one at the front pointer. Then both pointers are advanced to the next
|
||||
location cyclically in the table. The value returned is the sum generated,
|
||||
reduced to 31 bits by throwing away the "least random" low bit.
|
||||
Note: The code takes advantage of the fact that both the front and
|
||||
rear pointers can't wrap on the same call by not testing the rear
|
||||
pointer if the front one has wrapped. Returns a 31-bit random number. */
|
||||
|
||||
int
|
||||
generate_random_r (struct generate_random_data *buf, int *result)
|
||||
{
|
||||
int *state;
|
||||
|
||||
if (buf == NULL || result == NULL)
|
||||
goto fail;
|
||||
|
||||
state = buf->state;
|
||||
|
||||
if (buf->rand_type == TYPE_0)
|
||||
{
|
||||
int val = state[0];
|
||||
val = ((state[0] * 1103515245) + 12345) & 0x7fffffff;
|
||||
state[0] = val;
|
||||
*result = val;
|
||||
}
|
||||
else
|
||||
{
|
||||
int *fptr = buf->fptr;
|
||||
int *rptr = buf->rptr;
|
||||
int *end_ptr = buf->end_ptr;
|
||||
int val;
|
||||
|
||||
val = *fptr += *rptr;
|
||||
/* Chucking least random bit. */
|
||||
*result = (val >> 1) & 0x7fffffff;
|
||||
++fptr;
|
||||
if (fptr >= end_ptr)
|
||||
{
|
||||
fptr = state;
|
||||
++rptr;
|
||||
}
|
||||
else
|
||||
{
|
||||
++rptr;
|
||||
if (rptr >= end_ptr)
|
||||
rptr = state;
|
||||
}
|
||||
buf->fptr = fptr;
|
||||
buf->rptr = rptr;
|
||||
}
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
return -1;
|
||||
}
|
73
gcc/testsuite/objc.dg/gnu-encoding/gnu-encoding.exp
Normal file
73
gcc/testsuite/objc.dg/gnu-encoding/gnu-encoding.exp
Normal file
@ -0,0 +1,73 @@
|
||||
# GCC Objective-C testsuite that uses the `dg.exp' driver.
|
||||
# Copyright (C) 1997, 2001 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# Load support procs.
|
||||
load_lib objc-dg.exp
|
||||
|
||||
# If a testcase doesn't have special options, use these.
|
||||
global DEFAULT_CFLAGS
|
||||
if ![info exists DEFAULT_CFLAGS] then {
|
||||
set DEFAULT_CFLAGS "-fgnu-runtime"
|
||||
}
|
||||
|
||||
# Initialize `dg'.
|
||||
dg-init
|
||||
|
||||
#
|
||||
# gnu-encoding tests
|
||||
#
|
||||
set tstobjdir "$tmpdir/objc.dg-struct-layout-encoding-1"
|
||||
set generator "$tmpdir/objc.dg-struct-layout-encoding-1_generate"
|
||||
|
||||
set generator_src "$srcdir/$subdir/struct-layout-encoding-1_generate.c"
|
||||
set generator_src "$generator_src $srcdir/$subdir/generate-random.c"
|
||||
set generator_src "$generator_src $srcdir/$subdir/generate-random_r.c"
|
||||
set generator_cmd "-o $generator $generator_src"
|
||||
set status [remote_exec host "$HOSTCC $HOSTCFLAGS $generator_cmd"]
|
||||
set status [lindex $status 0]
|
||||
if { $status == 0 } then {
|
||||
file delete -force $tstobjdir
|
||||
file mkdir $tstobjdir
|
||||
set generator_args "-s $srcdir/$subdir -d $tstobjdir"
|
||||
# set generator_args "$generator_args -n 15000"
|
||||
set status [remote_exec host "$generator $generator_args"]
|
||||
set status [lindex $status 0]
|
||||
if { $status == 0 } then {
|
||||
foreach src [lsort [find $tstobjdir *_main.m]] {
|
||||
# If we're only testing specific files and this isn't one
|
||||
# of them, skip it.
|
||||
if ![runtest_file_p $runtests $src] then {
|
||||
continue
|
||||
}
|
||||
|
||||
dg-runtest $src "" $DEFAULT_CFLAGS
|
||||
}
|
||||
} else {
|
||||
warning "Could not execute objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
|
||||
}
|
||||
} else {
|
||||
warning "Could not compile objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# All done.
|
||||
dg-finish
|
||||
|
704
gcc/testsuite/objc.dg/gnu-encoding/struct-layout-1.h
Normal file
704
gcc/testsuite/objc.dg/gnu-encoding/struct-layout-1.h
Normal file
@ -0,0 +1,704 @@
|
||||
#include <limits.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "compat-common.h"
|
||||
|
||||
#ifndef SKIP_ATTRIBUTE
|
||||
# include "vector-defs.h"
|
||||
#else
|
||||
typedef int qi;
|
||||
typedef int hi;
|
||||
typedef int si;
|
||||
typedef int di;
|
||||
typedef float sf;
|
||||
typedef float df;
|
||||
typedef int v8qi;
|
||||
typedef int v16qi;
|
||||
typedef int v2hi;
|
||||
typedef int v4hi;
|
||||
typedef int v8hi;
|
||||
typedef int v2si;
|
||||
typedef int v4si;
|
||||
typedef int v1di;
|
||||
typedef int v2di;
|
||||
typedef int v2sf;
|
||||
typedef int v4sf;
|
||||
typedef int v16sf;
|
||||
typedef int v2df;
|
||||
typedef int u8qi;
|
||||
typedef int u16qi;
|
||||
typedef int u2hi;
|
||||
typedef int u4hi;
|
||||
typedef int u8hi;
|
||||
typedef int u2si;
|
||||
typedef int u4si;
|
||||
typedef int u1di;
|
||||
typedef int u2di;
|
||||
typedef int u2sf;
|
||||
typedef int u4sf;
|
||||
typedef int u16sf;
|
||||
typedef int u2df;
|
||||
#endif
|
||||
#if (defined __i386__ || defined __x86_64__) && !defined SKIP_ATTRIBUTE
|
||||
# ifdef __MMX__
|
||||
# include <mmintrin.h>
|
||||
# else
|
||||
typedef int __m64;
|
||||
# endif
|
||||
# ifdef __SSE__
|
||||
# include <xmmintrin.h>
|
||||
# else
|
||||
typedef int __m128;
|
||||
# endif
|
||||
#else
|
||||
typedef int __m64;
|
||||
typedef int __m128;
|
||||
#endif
|
||||
|
||||
#define FLDS_MAX 32
|
||||
extern struct Info
|
||||
{
|
||||
int nfields, nbitfields;
|
||||
void *sp, *a0p, *a3p;
|
||||
void *flds[FLDS_MAX];
|
||||
size_t sz, sizes[FLDS_MAX];
|
||||
size_t als, ala0, ala3, aligns[FLDS_MAX];
|
||||
} info;
|
||||
|
||||
extern int intarray[256];
|
||||
extern int fn0 (void), fn1 (void), fn2 (void), fn3 (void), fn4 (void);
|
||||
extern int fn5 (void), fn6 (void), fn7 (void), fn8 (void), fn9 (void);
|
||||
|
||||
#ifdef DBG
|
||||
#define FAIL(n, m) printf ("fail %d.%d\n", n, m), ++fails
|
||||
#else
|
||||
#define FAIL(n, m) ++fails
|
||||
#endif
|
||||
|
||||
#ifdef SKIP_ATTRIBUTE
|
||||
# define __attribute__(x)
|
||||
#endif
|
||||
#define atal __attribute__((aligned))
|
||||
#define atpa __attribute__((packed))
|
||||
#define atalpa __attribute__((aligned, packed))
|
||||
#define atpaal __attribute__((packed, aligned))
|
||||
#define atal1 __attribute__((aligned (1)))
|
||||
#define atal2 __attribute__((aligned (2)))
|
||||
#define atal4 __attribute__((aligned (4)))
|
||||
#define atal8 __attribute__((aligned (8)))
|
||||
#define atal16 __attribute__((aligned (16)))
|
||||
#define atal1pa __attribute__((aligned (1), packed))
|
||||
#define atal2pa __attribute__((aligned (2), packed))
|
||||
#define atal4pa __attribute__((aligned (4), packed))
|
||||
#define atal8pa __attribute__((aligned (8), packed))
|
||||
#define atal16pa __attribute__((aligned (16), packed))
|
||||
#define atpaal1 __attribute__((packed, aligned (1)))
|
||||
#define atpaal2 __attribute__((packed, aligned (2)))
|
||||
#define atpaal4 __attribute__((packed, aligned (4)))
|
||||
#define atpaal8 __attribute__((packed, aligned (8)))
|
||||
#define atpaal16 __attribute__((packed, aligned (16)))
|
||||
|
||||
#if UCHAR_MAX == 255 && USHORT_MAX == 65535 && UINT_MAX == 4294967295U \
|
||||
&& ULLONG_MAX == 18446744073709551615ULL
|
||||
/* For ILP32 and LP64 targets, assume float is at least 32-bit
|
||||
and double plus long double at least 64-bit. */
|
||||
# define atalx1 atal1
|
||||
# define atalx2 atal2
|
||||
# define atalx4 atal4
|
||||
# define atalx8 atal8
|
||||
# define atalx16 atal16
|
||||
# define atalx1pa atal1pa
|
||||
# define atalx2pa atal2pa
|
||||
# define atalx4pa atal4pa
|
||||
# define atalx8pa atal8pa
|
||||
# define atalx16pa atal16pa
|
||||
# define atpaalx1 atpaal1
|
||||
# define atpaalx2 atpaal2
|
||||
# define atpaalx4 atpaal4
|
||||
# define atpaalx8 atpaal8
|
||||
# define atpaalx16 atpaal16
|
||||
# if ULONG_MAX > 4294967295UL
|
||||
# define ataly8 atal8
|
||||
# define ataly8pa atal8pa
|
||||
# define atpaaly8 atpaal8
|
||||
# define ataly16 atal16
|
||||
# define ataly16pa atal16pa
|
||||
# define atpaaly16 atpaal16
|
||||
# else
|
||||
# define ataly8
|
||||
# define ataly8pa
|
||||
# define atpaaly8
|
||||
# define ataly16
|
||||
# define ataly16pa
|
||||
# define atpaaly16
|
||||
# endif
|
||||
#else
|
||||
# define atalx1
|
||||
# define atalx2
|
||||
# define atalx4
|
||||
# define atalx8
|
||||
# define atalx16
|
||||
# define atalx1pa
|
||||
# define atalx2pa
|
||||
# define atalx4pa
|
||||
# define atalx8pa
|
||||
# define atalx16pa
|
||||
# define atpaalx1
|
||||
# define atpaalx2
|
||||
# define atpaalx4
|
||||
# define atpaalx8
|
||||
# define atpaalx16
|
||||
# define ataly8
|
||||
# define ataly8pa
|
||||
# define atpaaly8
|
||||
# define ataly16
|
||||
# define ataly16pa
|
||||
# define atpaaly16
|
||||
#endif
|
||||
|
||||
#define atQI __attribute__((mode (QI)))
|
||||
#define atHI __attribute__((mode (HI)))
|
||||
#define atSI __attribute__((mode (SI)))
|
||||
#define atDI __attribute__((mode (DI)))
|
||||
|
||||
enum E0 { e0_0 };
|
||||
enum E1 { e1_0, e1_1 };
|
||||
enum E2 { e2_m3 = -3, e2_m2, e2_m1, e2_0, e2_1, e2_2, e2_3 };
|
||||
enum E3 { e3_m127 = -127, e3_m126, e3_m125, e3_0 = 0, e3_125 = 125, e3_126, e3_127 };
|
||||
enum E4 { e4_0, e4_1, e4_2, e4_3, e4_253 = 253, e4_254, e4_255 };
|
||||
enum E5 { e5_m32767 = -32767, e5_m32766, e5_m32765, e5_0 = 0, e5_32765 = 32765, e5_32766, e5_32767 };
|
||||
enum E6 { e6_0, e6_1, e6_2, e6_3, e6_65533 = 65533, e6_65534, e6_65535 };
|
||||
enum E7 { e7_m2147483647 = -2147483647, e7_m2147483646, e7_m2147483645,
|
||||
e7_0, e7_2147483645 = 2147483645, e7_2147483646, e7_2147483647 };
|
||||
enum E8 { e8_0, e8_1, e8_2, e8_3, e8_4294967293 = 4294967293U, e8_4294967294, e8_4294967295 };
|
||||
enum E9 { e9_m1099511627775 = -1099511627775LL, e9_m1099511627774, e9_m1099511627773,
|
||||
e9_0, e9_1099511627773 = 1099511627773LL, e9_1099511627774, e9_1099511627775 };
|
||||
|
||||
typedef char Tchar;
|
||||
typedef signed char Tschar;
|
||||
typedef unsigned char Tuchar;
|
||||
typedef short int Tshort;
|
||||
typedef unsigned short int Tushort;
|
||||
typedef int Tint;
|
||||
typedef unsigned int Tuint;
|
||||
typedef long int Tlong;
|
||||
typedef unsigned long int Tulong;
|
||||
typedef long long int Tllong;
|
||||
typedef unsigned long long int Tullong;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tcchar;
|
||||
typedef _Complex signed char Tcschar;
|
||||
typedef _Complex unsigned char Tcuchar;
|
||||
typedef _Complex short int Tcshort;
|
||||
typedef _Complex unsigned short int Tcushort;
|
||||
typedef _Complex int Tcint;
|
||||
typedef _Complex unsigned int Tcuint;
|
||||
typedef _Complex long int Tclong;
|
||||
typedef _Complex unsigned long int Tculong;
|
||||
typedef _Complex long long int Tcllong;
|
||||
typedef _Complex unsigned long long int Tcullong;
|
||||
#endif
|
||||
typedef float Tfloat;
|
||||
typedef double Tdouble;
|
||||
typedef long double Tldouble;
|
||||
typedef _Complex float Tcfloat;
|
||||
typedef _Complex double Tcdouble;
|
||||
typedef _Complex long double Tcldouble;
|
||||
typedef bool Tbool;
|
||||
typedef enum E0 TE0;
|
||||
typedef enum E1 TE1;
|
||||
typedef enum E2 TE2;
|
||||
typedef enum E3 TE3;
|
||||
typedef enum E4 TE4;
|
||||
typedef enum E5 TE5;
|
||||
typedef enum E6 TE6;
|
||||
typedef enum E7 TE7;
|
||||
typedef enum E8 TE8;
|
||||
typedef enum E9 TE9;
|
||||
typedef void *Tptr;
|
||||
typedef char *Tcptr;
|
||||
typedef int *Tiptr;
|
||||
typedef char Talchar atal;
|
||||
typedef signed char Talschar atal;
|
||||
typedef unsigned char Taluchar atal;
|
||||
typedef short int Talshort atal;
|
||||
typedef unsigned short int Talushort atal;
|
||||
typedef int Talint atal;
|
||||
typedef unsigned int Taluint atal;
|
||||
typedef long int Tallong atal;
|
||||
typedef unsigned long int Talulong atal;
|
||||
typedef long long int Talllong atal;
|
||||
typedef unsigned long long int Talullong atal;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Talcchar atal;
|
||||
typedef _Complex signed char Talcschar atal;
|
||||
typedef _Complex unsigned char Talcuchar atal;
|
||||
typedef _Complex short int Talcshort atal;
|
||||
typedef _Complex unsigned short int Talcushort atal;
|
||||
typedef _Complex int Talcint atal;
|
||||
typedef _Complex unsigned int Talcuint atal;
|
||||
typedef _Complex long int Talclong atal;
|
||||
typedef _Complex unsigned long int Talculong atal;
|
||||
typedef _Complex long long int Talcllong atal;
|
||||
typedef _Complex unsigned long long int Talcullong atal;
|
||||
#endif
|
||||
typedef float Talfloat atal;
|
||||
typedef double Taldouble atal;
|
||||
typedef long double Talldouble atal;
|
||||
typedef _Complex float Talcfloat atal;
|
||||
typedef _Complex double Talcdouble atal;
|
||||
typedef _Complex long double Talcldouble atal;
|
||||
typedef bool Talbool atal;
|
||||
typedef enum E0 TalE0 atal;
|
||||
typedef enum E1 TalE1 atal;
|
||||
typedef enum E2 TalE2 atal;
|
||||
typedef enum E3 TalE3 atal;
|
||||
typedef enum E4 TalE4 atal;
|
||||
typedef enum E5 TalE5 atal;
|
||||
typedef enum E6 TalE6 atal;
|
||||
typedef enum E7 TalE7 atal;
|
||||
typedef enum E8 TalE8 atal;
|
||||
typedef enum E9 TalE9 atal;
|
||||
typedef void *Talptr atal;
|
||||
typedef char *Talcptr atal;
|
||||
typedef int *Taliptr atal;
|
||||
typedef char Tal1char atal1;
|
||||
typedef signed char Tal1schar atal1;
|
||||
typedef unsigned char Tal1uchar atal1;
|
||||
typedef short int Tal1short atal1;
|
||||
typedef unsigned short int Tal1ushort atal1;
|
||||
typedef int Tal1int atal1;
|
||||
typedef unsigned int Tal1uint atal1;
|
||||
typedef long int Tal1long atal1;
|
||||
typedef unsigned long int Tal1ulong atal1;
|
||||
typedef long long int Tal1llong atal1;
|
||||
typedef unsigned long long int Tal1ullong atal1;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tal1cchar atal1;
|
||||
typedef _Complex signed char Tal1cschar atal1;
|
||||
typedef _Complex unsigned char Tal1cuchar atal1;
|
||||
typedef _Complex short int Tal1cshort atal1;
|
||||
typedef _Complex unsigned short int Tal1cushort atal1;
|
||||
typedef _Complex int Tal1cint atal1;
|
||||
typedef _Complex unsigned int Tal1cuint atal1;
|
||||
typedef _Complex long int Tal1clong atal1;
|
||||
typedef _Complex unsigned long int Tal1culong atal1;
|
||||
typedef _Complex long long int Tal1cllong atal1;
|
||||
typedef _Complex unsigned long long int Tal1cullong atal1;
|
||||
#endif
|
||||
typedef float Tal1float atal1;
|
||||
typedef double Tal1double atal1;
|
||||
typedef long double Tal1ldouble atal1;
|
||||
typedef _Complex float Tal1cfloat atal1;
|
||||
typedef _Complex double Tal1cdouble atal1;
|
||||
typedef _Complex long double Tal1cldouble atal1;
|
||||
typedef bool Tal1bool atal1;
|
||||
typedef enum E0 Tal1E0 atal1;
|
||||
typedef enum E1 Tal1E1 atal1;
|
||||
typedef enum E2 Tal1E2 atal1;
|
||||
typedef enum E3 Tal1E3 atal1;
|
||||
typedef enum E4 Tal1E4 atal1;
|
||||
typedef enum E5 Tal1E5 atal1;
|
||||
typedef enum E6 Tal1E6 atal1;
|
||||
typedef enum E7 Tal1E7 atal1;
|
||||
typedef enum E8 Tal1E8 atal1;
|
||||
typedef enum E9 Tal1E9 atal1;
|
||||
typedef void *Tal1ptr atal1;
|
||||
typedef char *Tal1cptr atal1;
|
||||
typedef int *Tal1iptr atal1;
|
||||
typedef char Tal2char atal2;
|
||||
typedef signed char Tal2schar atal2;
|
||||
typedef unsigned char Tal2uchar atal2;
|
||||
typedef short int Tal2short atal2;
|
||||
typedef unsigned short int Tal2ushort atal2;
|
||||
typedef int Tal2int atal2;
|
||||
typedef unsigned int Tal2uint atal2;
|
||||
typedef long int Tal2long atal2;
|
||||
typedef unsigned long int Tal2ulong atal2;
|
||||
typedef long long int Tal2llong atal2;
|
||||
typedef unsigned long long int Tal2ullong atal2;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tal2cchar atal2;
|
||||
typedef _Complex signed char Tal2cschar atal2;
|
||||
typedef _Complex unsigned char Tal2cuchar atal2;
|
||||
typedef _Complex short int Tal2cshort atal2;
|
||||
typedef _Complex unsigned short int Tal2cushort atal2;
|
||||
typedef _Complex int Tal2cint atal2;
|
||||
typedef _Complex unsigned int Tal2cuint atal2;
|
||||
typedef _Complex long int Tal2clong atal2;
|
||||
typedef _Complex unsigned long int Tal2culong atal2;
|
||||
typedef _Complex long long int Tal2cllong atal2;
|
||||
typedef _Complex unsigned long long int Tal2cullong atal2;
|
||||
#endif
|
||||
typedef float Tal2float atal2;
|
||||
typedef double Tal2double atal2;
|
||||
typedef long double Tal2ldouble atal2;
|
||||
typedef _Complex float Tal2cfloat atal2;
|
||||
typedef _Complex double Tal2cdouble atal2;
|
||||
typedef _Complex long double Tal2cldouble atal2;
|
||||
typedef bool Tal2bool atal2;
|
||||
typedef enum E0 Tal2E0 atal2;
|
||||
typedef enum E1 Tal2E1 atal2;
|
||||
typedef enum E2 Tal2E2 atal2;
|
||||
typedef enum E3 Tal2E3 atal2;
|
||||
typedef enum E4 Tal2E4 atal2;
|
||||
typedef enum E5 Tal2E5 atal2;
|
||||
typedef enum E6 Tal2E6 atal2;
|
||||
typedef enum E7 Tal2E7 atal2;
|
||||
typedef enum E8 Tal2E8 atal2;
|
||||
typedef enum E9 Tal2E9 atal2;
|
||||
typedef void *Tal2ptr atal2;
|
||||
typedef char *Tal2cptr atal2;
|
||||
typedef int *Tal2iptr atal2;
|
||||
typedef char Tal4char atal4;
|
||||
typedef signed char Tal4schar atal4;
|
||||
typedef unsigned char Tal4uchar atal4;
|
||||
typedef short int Tal4short atal4;
|
||||
typedef unsigned short int Tal4ushort atal4;
|
||||
typedef int Tal4int atal4;
|
||||
typedef unsigned int Tal4uint atal4;
|
||||
typedef long int Tal4long atal4;
|
||||
typedef unsigned long int Tal4ulong atal4;
|
||||
typedef long long int Tal4llong atal4;
|
||||
typedef unsigned long long int Tal4ullong atal4;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tal4cchar atal4;
|
||||
typedef _Complex signed char Tal4cschar atal4;
|
||||
typedef _Complex unsigned char Tal4cuchar atal4;
|
||||
typedef _Complex short int Tal4cshort atal4;
|
||||
typedef _Complex unsigned short int Tal4cushort atal4;
|
||||
typedef _Complex int Tal4cint atal4;
|
||||
typedef _Complex unsigned int Tal4cuint atal4;
|
||||
typedef _Complex long int Tal4clong atal4;
|
||||
typedef _Complex unsigned long int Tal4culong atal4;
|
||||
typedef _Complex long long int Tal4cllong atal4;
|
||||
typedef _Complex unsigned long long int Tal4cullong atal4;
|
||||
#endif
|
||||
typedef float Tal4float atal4;
|
||||
typedef double Tal4double atal4;
|
||||
typedef long double Tal4ldouble atal4;
|
||||
typedef _Complex float Tal4cfloat atal4;
|
||||
typedef _Complex double Tal4cdouble atal4;
|
||||
typedef _Complex long double Tal4cldouble atal4;
|
||||
typedef bool Tal4bool atal4;
|
||||
typedef enum E0 Tal4E0 atal4;
|
||||
typedef enum E1 Tal4E1 atal4;
|
||||
typedef enum E2 Tal4E2 atal4;
|
||||
typedef enum E3 Tal4E3 atal4;
|
||||
typedef enum E4 Tal4E4 atal4;
|
||||
typedef enum E5 Tal4E5 atal4;
|
||||
typedef enum E6 Tal4E6 atal4;
|
||||
typedef enum E7 Tal4E7 atal4;
|
||||
typedef enum E8 Tal4E8 atal4;
|
||||
typedef enum E9 Tal4E9 atal4;
|
||||
typedef void *Tal4ptr atal4;
|
||||
typedef char *Tal4cptr atal4;
|
||||
typedef int *Tal4iptr atal4;
|
||||
typedef char Tal8char atal8;
|
||||
typedef signed char Tal8schar atal8;
|
||||
typedef unsigned char Tal8uchar atal8;
|
||||
typedef short int Tal8short atal8;
|
||||
typedef unsigned short int Tal8ushort atal8;
|
||||
typedef int Tal8int atal8;
|
||||
typedef unsigned int Tal8uint atal8;
|
||||
typedef long int Tal8long atal8;
|
||||
typedef unsigned long int Tal8ulong atal8;
|
||||
typedef long long int Tal8llong atal8;
|
||||
typedef unsigned long long int Tal8ullong atal8;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tal8cchar atal8;
|
||||
typedef _Complex signed char Tal8cschar atal8;
|
||||
typedef _Complex unsigned char Tal8cuchar atal8;
|
||||
typedef _Complex short int Tal8cshort atal8;
|
||||
typedef _Complex unsigned short int Tal8cushort atal8;
|
||||
typedef _Complex int Tal8cint atal8;
|
||||
typedef _Complex unsigned int Tal8cuint atal8;
|
||||
typedef _Complex long int Tal8clong atal8;
|
||||
typedef _Complex unsigned long int Tal8culong atal8;
|
||||
typedef _Complex long long int Tal8cllong atal8;
|
||||
typedef _Complex unsigned long long int Tal8cullong atal8;
|
||||
#endif
|
||||
typedef float Tal8float atal8;
|
||||
typedef double Tal8double atal8;
|
||||
typedef long double Tal8ldouble atal8;
|
||||
typedef _Complex float Tal8cfloat atal8;
|
||||
typedef _Complex double Tal8cdouble atal8;
|
||||
typedef _Complex long double Tal8cldouble atal8;
|
||||
typedef bool Tal8bool atal8;
|
||||
typedef enum E0 Tal8E0 atal8;
|
||||
typedef enum E1 Tal8E1 atal8;
|
||||
typedef enum E2 Tal8E2 atal8;
|
||||
typedef enum E3 Tal8E3 atal8;
|
||||
typedef enum E4 Tal8E4 atal8;
|
||||
typedef enum E5 Tal8E5 atal8;
|
||||
typedef enum E6 Tal8E6 atal8;
|
||||
typedef enum E7 Tal8E7 atal8;
|
||||
typedef enum E8 Tal8E8 atal8;
|
||||
typedef enum E9 Tal8E9 atal8;
|
||||
typedef void *Tal8ptr atal8;
|
||||
typedef char *Tal8cptr atal8;
|
||||
typedef int *Tal8iptr atal8;
|
||||
typedef char Tal16char atal16;
|
||||
typedef signed char Tal16schar atal16;
|
||||
typedef unsigned char Tal16uchar atal16;
|
||||
typedef short int Tal16short atal16;
|
||||
typedef unsigned short int Tal16ushort atal16;
|
||||
typedef int Tal16int atal16;
|
||||
typedef unsigned int Tal16uint atal16;
|
||||
typedef long int Tal16long atal16;
|
||||
typedef unsigned long int Tal16ulong atal16;
|
||||
typedef long long int Tal16llong atal16;
|
||||
typedef unsigned long long int Tal16ullong atal16;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Tal16cchar atal16;
|
||||
typedef _Complex signed char Tal16cschar atal16;
|
||||
typedef _Complex unsigned char Tal16cuchar atal16;
|
||||
typedef _Complex short int Tal16cshort atal16;
|
||||
typedef _Complex unsigned short int Tal16cushort atal16;
|
||||
typedef _Complex int Tal16cint atal16;
|
||||
typedef _Complex unsigned int Tal16cuint atal16;
|
||||
typedef _Complex long int Tal16clong atal16;
|
||||
typedef _Complex unsigned long int Tal16culong atal16;
|
||||
typedef _Complex long long int Tal16cllong atal16;
|
||||
typedef _Complex unsigned long long int Tal16cullong atal16;
|
||||
#endif
|
||||
typedef float Tal16float atal16;
|
||||
typedef double Tal16double atal16;
|
||||
typedef long double Tal16ldouble atal16;
|
||||
typedef _Complex float Tal16cfloat atal16;
|
||||
typedef _Complex double Tal16cdouble atal16;
|
||||
typedef _Complex long double Tal16cldouble atal16;
|
||||
typedef bool Tal16bool atal16;
|
||||
typedef enum E0 Tal16E0 atal16;
|
||||
typedef enum E1 Tal16E1 atal16;
|
||||
typedef enum E2 Tal16E2 atal16;
|
||||
typedef enum E3 Tal16E3 atal16;
|
||||
typedef enum E4 Tal16E4 atal16;
|
||||
typedef enum E5 Tal16E5 atal16;
|
||||
typedef enum E6 Tal16E6 atal16;
|
||||
typedef enum E7 Tal16E7 atal16;
|
||||
typedef enum E8 Tal16E8 atal16;
|
||||
typedef enum E9 Tal16E9 atal16;
|
||||
typedef void *Tal16ptr atal16;
|
||||
typedef char *Tal16cptr atal16;
|
||||
typedef int *Tal16iptr atal16;
|
||||
typedef char Talx1char atalx1;
|
||||
typedef signed char Talx1schar atalx1;
|
||||
typedef unsigned char Talx1uchar atalx1;
|
||||
typedef short int Talx1short atalx1;
|
||||
typedef unsigned short int Talx1ushort atalx1;
|
||||
typedef int Talx1int atalx1;
|
||||
typedef unsigned int Talx1uint atalx1;
|
||||
typedef long int Talx1long atalx1;
|
||||
typedef unsigned long int Talx1ulong atalx1;
|
||||
typedef long long int Talx1llong atalx1;
|
||||
typedef unsigned long long int Talx1ullong atalx1;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Talx1cchar atalx1;
|
||||
typedef _Complex signed char Talx1cschar atalx1;
|
||||
typedef _Complex unsigned char Talx1cuchar atalx1;
|
||||
typedef _Complex short int Talx1cshort atalx1;
|
||||
typedef _Complex unsigned short int Talx1cushort atalx1;
|
||||
typedef _Complex int Talx1cint atalx1;
|
||||
typedef _Complex unsigned int Talx1cuint atalx1;
|
||||
typedef _Complex long int Talx1clong atalx1;
|
||||
typedef _Complex unsigned long int Talx1culong atalx1;
|
||||
typedef _Complex long long int Talx1cllong atalx1;
|
||||
typedef _Complex unsigned long long int Talx1cullong atalx1;
|
||||
#endif
|
||||
typedef float Talx1float atalx1;
|
||||
typedef double Talx1double atalx1;
|
||||
typedef long double Talx1ldouble atalx1;
|
||||
typedef _Complex float Talx1cfloat atalx1;
|
||||
typedef _Complex double Talx1cdouble atalx1;
|
||||
typedef _Complex long double Talx1cldouble atalx1;
|
||||
typedef bool Talx1bool atalx1;
|
||||
typedef enum E0 Talx1E0 atalx1;
|
||||
typedef enum E1 Talx1E1 atalx1;
|
||||
typedef enum E2 Talx1E2 atalx1;
|
||||
typedef enum E3 Talx1E3 atalx1;
|
||||
typedef enum E4 Talx1E4 atalx1;
|
||||
typedef enum E5 Talx1E5 atalx1;
|
||||
typedef enum E6 Talx1E6 atalx1;
|
||||
typedef enum E7 Talx1E7 atalx1;
|
||||
typedef enum E8 Talx1E8 atalx1;
|
||||
typedef enum E9 Talx1E9 atalx1;
|
||||
typedef void *Talx1ptr atalx1;
|
||||
typedef char *Talx1cptr atalx1;
|
||||
typedef int *Talx1iptr atalx1;
|
||||
typedef short int Talx2short atalx2;
|
||||
typedef unsigned short int Talx2ushort atalx2;
|
||||
typedef int Talx2int atalx2;
|
||||
typedef unsigned int Talx2uint atalx2;
|
||||
typedef long int Talx2long atalx2;
|
||||
typedef unsigned long int Talx2ulong atalx2;
|
||||
typedef long long int Talx2llong atalx2;
|
||||
typedef unsigned long long int Talx2ullong atalx2;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex char Talx2cchar atalx2;
|
||||
typedef _Complex signed char Talx2cschar atalx2;
|
||||
typedef _Complex unsigned char Talx2cuchar atalx2;
|
||||
typedef _Complex short int Talx2cshort atalx2;
|
||||
typedef _Complex unsigned short int Talx2cushort atalx2;
|
||||
typedef _Complex int Talx2cint atalx2;
|
||||
typedef _Complex unsigned int Talx2cuint atalx2;
|
||||
typedef _Complex long int Talx2clong atalx2;
|
||||
typedef _Complex unsigned long int Talx2culong atalx2;
|
||||
typedef _Complex long long int Talx2cllong atalx2;
|
||||
typedef _Complex unsigned long long int Talx2cullong atalx2;
|
||||
#endif
|
||||
typedef float Talx2float atalx2;
|
||||
typedef double Talx2double atalx2;
|
||||
typedef long double Talx2ldouble atalx2;
|
||||
typedef _Complex float Talx2cfloat atalx2;
|
||||
typedef _Complex double Talx2cdouble atalx2;
|
||||
typedef _Complex long double Talx2cldouble atalx2;
|
||||
typedef enum E0 Talx2E0 atalx2;
|
||||
typedef enum E1 Talx2E1 atalx2;
|
||||
typedef enum E2 Talx2E2 atalx2;
|
||||
typedef enum E3 Talx2E3 atalx2;
|
||||
typedef enum E4 Talx2E4 atalx2;
|
||||
typedef enum E5 Talx2E5 atalx2;
|
||||
typedef enum E6 Talx2E6 atalx2;
|
||||
typedef enum E7 Talx2E7 atalx2;
|
||||
typedef enum E8 Talx2E8 atalx2;
|
||||
typedef enum E9 Talx2E9 atalx2;
|
||||
typedef void *Talx2ptr atalx2;
|
||||
typedef char *Talx2cptr atalx2;
|
||||
typedef int *Talx2iptr atalx2;
|
||||
typedef int Talx4int atalx4;
|
||||
typedef unsigned int Talx4uint atalx4;
|
||||
typedef long int Talx4long atalx4;
|
||||
typedef unsigned long int Talx4ulong atalx4;
|
||||
typedef long long int Talx4llong atalx4;
|
||||
typedef unsigned long long int Talx4ullong atalx4;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex short int Talx4cshort atalx4;
|
||||
typedef _Complex unsigned short int Talx4cushort atalx4;
|
||||
typedef _Complex int Talx4cint atalx4;
|
||||
typedef _Complex unsigned int Talx4cuint atalx4;
|
||||
typedef _Complex long int Talx4clong atalx4;
|
||||
typedef _Complex unsigned long int Talx4culong atalx4;
|
||||
typedef _Complex long long int Talx4cllong atalx4;
|
||||
typedef _Complex unsigned long long int Talx4cullong atalx4;
|
||||
#endif
|
||||
typedef float Talx4float atalx4;
|
||||
typedef double Talx4double atalx4;
|
||||
typedef long double Talx4ldouble atalx4;
|
||||
typedef _Complex float Talx4cfloat atalx4;
|
||||
typedef _Complex double Talx4cdouble atalx4;
|
||||
typedef _Complex long double Talx4cldouble atalx4;
|
||||
typedef enum E0 Talx4E0 atalx4;
|
||||
typedef enum E1 Talx4E1 atalx4;
|
||||
typedef enum E2 Talx4E2 atalx4;
|
||||
typedef enum E3 Talx4E3 atalx4;
|
||||
typedef enum E4 Talx4E4 atalx4;
|
||||
typedef enum E5 Talx4E5 atalx4;
|
||||
typedef enum E6 Talx4E6 atalx4;
|
||||
typedef enum E7 Talx4E7 atalx4;
|
||||
typedef enum E8 Talx4E8 atalx4;
|
||||
typedef enum E9 Talx4E9 atalx4;
|
||||
typedef void *Talx4ptr atalx4;
|
||||
typedef char *Talx4cptr atalx4;
|
||||
typedef int *Talx4iptr atalx4;
|
||||
typedef long int Taly8long ataly8;
|
||||
typedef unsigned long int Taly8ulong ataly8;
|
||||
typedef long long int Talx8llong atalx8;
|
||||
typedef unsigned long long int Talx8ullong atalx8;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex int Talx8cint atalx8;
|
||||
typedef _Complex unsigned int Talx8cuint atalx8;
|
||||
typedef _Complex long int Talx8clong atalx8;
|
||||
typedef _Complex unsigned long int Talx8culong atalx8;
|
||||
typedef _Complex long long int Talx8cllong atalx8;
|
||||
typedef _Complex unsigned long long int Talx8cullong atalx8;
|
||||
#endif
|
||||
typedef double Talx8double atalx8;
|
||||
typedef long double Talx8ldouble atalx8;
|
||||
typedef _Complex float Talx8cfloat atalx8;
|
||||
typedef _Complex double Talx8cdouble atalx8;
|
||||
typedef _Complex long double Talx8cldouble atalx8;
|
||||
typedef void *Taly8ptr ataly8;
|
||||
typedef char *Taly8cptr ataly8;
|
||||
typedef int *Taly8iptr ataly8;
|
||||
#ifndef SKIP_COMPLEX_INT
|
||||
typedef _Complex long int Taly16clong ataly16;
|
||||
typedef _Complex unsigned long int Taly16culong ataly16;
|
||||
typedef _Complex long long int Talx16cllong atalx16;
|
||||
typedef _Complex unsigned long long int Talx16cullong atalx16;
|
||||
#endif
|
||||
typedef _Complex double Talx16cdouble atalx16;
|
||||
typedef _Complex long double Talx16cldouble atalx16;
|
||||
typedef int (*Tfnptr) (void);
|
||||
|
||||
/* Bitfield macros. In C, it is invalid to use numbers larger
|
||||
than type's bitsize, but we don't know the size when generating
|
||||
the testcases. */
|
||||
#define BN8(n) ((((n) - 1) & 7) + 1)
|
||||
#define BN16(n) ((((n) - 1) & 15) + 1)
|
||||
#define BN32(n) ((((n) - 1) & 31) + 1)
|
||||
#define BN64(n) ((((n) - 1) & 63) + 1)
|
||||
#define BCN(n) BN8 (n)
|
||||
#if USHRT_MAX == 255
|
||||
# define BSN(n) BN8 (n)
|
||||
#elif USHRT_MAX == 65535
|
||||
# define BSN(n) BN16 (n)
|
||||
#elif USHRT_MAX == 4294967295U
|
||||
# define BSN(n) BN32 (n)
|
||||
#elif USHRT_MAX == 18446744073709551615ULL
|
||||
# define BSN(n) BN64 (n)
|
||||
#endif
|
||||
#if UINT_MAX == 255
|
||||
# define BIN(n) BN8 (n)
|
||||
#elif UINT_MAX == 65535
|
||||
# define BIN(n) BN16 (n)
|
||||
#elif UINT_MAX == 4294967295U
|
||||
# define BIN(n) BN32 (n)
|
||||
#elif UINT_MAX == 18446744073709551615ULL
|
||||
# define BIN(n) BN64 (n)
|
||||
#endif
|
||||
#if ULONG_MAX == 255
|
||||
# define BLN(n) BN8 (n)
|
||||
#elif ULONG_MAX == 65535
|
||||
# define BLN(n) BN16 (n)
|
||||
#elif ULONG_MAX == 4294967295U
|
||||
# define BLN(n) BN32 (n)
|
||||
#elif ULONG_MAX == 18446744073709551615ULL
|
||||
# define BLN(n) BN64 (n)
|
||||
#endif
|
||||
#if ULONG_MAX == 255
|
||||
# define BLN(n) BN8 (n)
|
||||
#elif ULONG_MAX == 65535
|
||||
# define BLN(n) BN16 (n)
|
||||
#elif ULONG_MAX == 4294967295U
|
||||
# define BLN(n) BN32 (n)
|
||||
#elif ULONG_MAX == 18446744073709551615ULL
|
||||
# define BLN(n) BN64 (n)
|
||||
#endif
|
||||
#if !defined ULLONG_MAX && defined __LONG_LONG_MAX__
|
||||
# define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1ULL)
|
||||
#endif
|
||||
#if ULLONG_MAX == 255
|
||||
# define BQN(n) BN8 (n)
|
||||
#elif ULLONG_MAX == 65535
|
||||
# define BQN(n) BN16 (n)
|
||||
#elif ULLONG_MAX == 4294967295U
|
||||
# define BQN(n) BN32 (n)
|
||||
#elif ULLONG_MAX == 18446744073709551615ULL
|
||||
# define BQN(n) BN64 (n)
|
||||
#endif
|
||||
|
||||
#define T(n, fields, ops) TX(n, struct, , fields, ({ ops });)
|
||||
#define U(n, fields, ops) TX(n, union, , fields, ({ ops });)
|
||||
#ifdef SKIP_COMPLEX_INT
|
||||
#define TXCI(n, type, attrs, fields, ops)
|
||||
#define TCI(n, fields, ops)
|
||||
#define UCI(n, fields, ops)
|
||||
#else
|
||||
#define TXCI(n, type, attrs, fields, ops) TX(n, type, attrs, fields, ({ ops });)
|
||||
#define TCI(n, fields, ops) TX(n, struct, , fields, ({ ops });)
|
||||
#define UCI(n, fields, ops) TX(n, union, , fields, ({ ops });)
|
||||
#endif
|
@ -0,0 +1,9 @@
|
||||
#include "struct-layout-1.h"
|
||||
|
||||
#define TX(n, type, attrs, fields, ops) \
|
||||
type S##n { fields } attrs; \
|
||||
void test##n (void) \
|
||||
{ \
|
||||
if (objc_sizeof_type (@encoding (type S##n)) != sizeof(type S##n)) \
|
||||
fails ++; \
|
||||
}
|
File diff suppressed because it is too large
Load Diff
72
gcc/testsuite/objc.dg/gnu-encoding/vector-defs.h
Normal file
72
gcc/testsuite/objc.dg/gnu-encoding/vector-defs.h
Normal file
@ -0,0 +1,72 @@
|
||||
/* This includes all of the vector modes that are recognized by
|
||||
c_common_type_for_mode. */
|
||||
|
||||
typedef int __attribute__((mode(QI))) qi;
|
||||
typedef int __attribute__((mode(HI))) hi;
|
||||
typedef int __attribute__((mode(SI))) si;
|
||||
typedef int __attribute__((mode(DI))) di;
|
||||
typedef float __attribute__((mode(SF))) sf;
|
||||
typedef float __attribute__((mode(DF))) df;
|
||||
|
||||
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 5)
|
||||
|
||||
typedef qi __attribute__((vector_size (8))) v8qi;
|
||||
typedef qi __attribute__((vector_size (16))) v16qi;
|
||||
|
||||
typedef hi __attribute__((vector_size (4))) v2hi;
|
||||
typedef hi __attribute__((vector_size (8))) v4hi;
|
||||
typedef hi __attribute__((vector_size (16))) v8hi;
|
||||
|
||||
typedef si __attribute__((vector_size (8))) v2si;
|
||||
typedef si __attribute__((vector_size (16))) v4si;
|
||||
|
||||
typedef di __attribute__((vector_size (8))) v1di;
|
||||
typedef di __attribute__((vector_size (16))) v2di;
|
||||
|
||||
typedef sf __attribute__((vector_size (8))) v2sf;
|
||||
typedef sf __attribute__((vector_size (16))) v4sf;
|
||||
typedef sf __attribute__((vector_size (64))) v16sf;
|
||||
|
||||
typedef df __attribute__((vector_size (16))) v2df;
|
||||
|
||||
#else
|
||||
|
||||
typedef int __attribute__((mode(V8QI))) v8qi;
|
||||
typedef int __attribute__((mode(V16QI))) v16qi;
|
||||
|
||||
typedef int __attribute__((mode(V2HI))) v2hi;
|
||||
typedef int __attribute__((mode(V4HI))) v4hi;
|
||||
typedef int __attribute__((mode(V8HI))) v8hi;
|
||||
|
||||
typedef int __attribute__((mode(V2SI))) v2si;
|
||||
typedef int __attribute__((mode(V4SI))) v4si;
|
||||
|
||||
typedef int __attribute__((mode(V1DI))) v1di;
|
||||
typedef int __attribute__((mode(V2DI))) v2di;
|
||||
|
||||
typedef float __attribute__((mode(V2SF))) v2sf;
|
||||
typedef float __attribute__((mode(V4SF))) v4sf;
|
||||
typedef float __attribute__((mode(V16SF))) v16sf;
|
||||
|
||||
typedef float __attribute__((mode(V2DF))) v2df;
|
||||
|
||||
#endif
|
||||
|
||||
typedef union U8QI { v8qi v; qi a[8]; } u8qi;
|
||||
typedef union U16QI { v16qi v; qi a[16]; } u16qi;
|
||||
|
||||
typedef union U2HI { v2hi v; hi a[2]; } u2hi;
|
||||
typedef union U4HI { v4hi v; hi a[4]; } u4hi;
|
||||
typedef union U8HI { v8hi v; hi a[8]; } u8hi;
|
||||
|
||||
typedef union U2SI { v2si v; si a[2]; } u2si;
|
||||
typedef union U4SI { v4si v; si a[4]; } u4si;
|
||||
|
||||
typedef union U1DI { v1di v; di a[1]; } u1di;
|
||||
typedef union U2DI { v2di v; di a[2]; } u2di;
|
||||
|
||||
typedef union U2SF { v2sf v; sf a[2]; } u2sf;
|
||||
typedef union U4SF { v4sf v; sf a[4]; } u4sf;
|
||||
typedef union U16SF { v16sf v; sf a[16]; } u16sf;
|
||||
|
||||
typedef union U2DF { v2df v; df a[2]; } u2df;
|
@ -1,3 +1,12 @@
|
||||
2005-12-12 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
* encoding.c (TYPE_FIELDS): Fix to skip over just _C_STRUCT_B and
|
||||
the name.
|
||||
(get_inner_array_type): Fix to skip over _C_ARY_B and size.
|
||||
(rs6000_special_round_type_align): Update for the ABI fix.
|
||||
(objc_layout_finish_structure): Correct the encoding which is passed to
|
||||
ROUND_TYPE_ALIGN.
|
||||
|
||||
2005-12-11 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR libobjc/25347
|
||||
|
@ -67,14 +67,24 @@ Boston, MA 02110-1301, USA. */
|
||||
|
||||
#define VECTOR_TYPE _C_VECTOR
|
||||
|
||||
#define TYPE_FIELDS(TYPE) objc_skip_typespec (TYPE)
|
||||
#define TYPE_FIELDS(TYPE) ({const char *_field = (TYPE)+1; \
|
||||
while (*_field != _C_STRUCT_E && *_field != _C_STRUCT_B \
|
||||
&& *_field != _C_UNION_B && *_field++ != '=') \
|
||||
/* do nothing */; \
|
||||
_field;})
|
||||
|
||||
#define DECL_MODE(TYPE) *(TYPE)
|
||||
#define TYPE_MODE(TYPE) *(TYPE)
|
||||
|
||||
#define DFmode _C_DBL
|
||||
|
||||
#define get_inner_array_type(TYPE) ((TYPE) + 1)
|
||||
#define get_inner_array_type(TYPE) ({const char *_field = (TYPE); \
|
||||
while (*_field == _C_ARY_B)\
|
||||
{\
|
||||
while (isdigit ((unsigned char)*++_field))\
|
||||
;\
|
||||
}\
|
||||
_field;})
|
||||
|
||||
/* Some ports (eg ARM) allow the structure size boundary to be
|
||||
selected at compile-time. We override the normal definition with
|
||||
@ -103,10 +113,13 @@ static int __attribute__ ((__unused__)) not_target_flags = 0;
|
||||
is only way around without really rewritting this file,
|
||||
should look after the branch of 3.4 to fix this. */
|
||||
#define rs6000_special_round_type_align(STRUCT, COMPUTED, SPECIFIED) \
|
||||
((TYPE_FIELDS (STRUCT) != 0 \
|
||||
&& DECL_MODE (TYPE_FIELDS (STRUCT)) == DFmode) \
|
||||
({ const char *_fields = TYPE_FIELDS (STRUCT); \
|
||||
((_fields != 0 \
|
||||
&& TYPE_MODE (TREE_CODE (TREE_TYPE (_fields)) == ARRAY_TYPE \
|
||||
? get_inner_array_type (_fields) \
|
||||
: TREE_TYPE (_fields)) == DFmode) \
|
||||
? MAX (MAX (COMPUTED, SPECIFIED), 64) \
|
||||
: MAX (COMPUTED, SPECIFIED))
|
||||
: MAX (COMPUTED, SPECIFIED));})
|
||||
|
||||
/*
|
||||
return the size of an object specified by type
|
||||
@ -901,9 +914,8 @@ void objc_layout_finish_structure (struct objc_struct_layout *layout,
|
||||
/* Work out the alignment of the record as one expression and store
|
||||
in the record type. Round it up to a multiple of the record's
|
||||
alignment. */
|
||||
|
||||
#if defined (ROUND_TYPE_ALIGN) && ! defined (__sparc__)
|
||||
layout->record_align = ROUND_TYPE_ALIGN (layout->original_type,
|
||||
layout->record_align = ROUND_TYPE_ALIGN (layout->original_type-1,
|
||||
1,
|
||||
layout->record_align);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user