binutils-gdb/gdb/testsuite/gdb.base/vla-datatypes.c

114 lines
3.0 KiB
C
Raw Normal View History

/* This testcase is part of GDB, the GNU debugger.
Copyright 2014-2017 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 3 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, see <http://www.gnu.org/licenses/>. */
#include <stddef.h>
#define SIZE 5
struct foo
{
int a;
};
typedef struct bar
{
int x;
struct foo y;
} BAR;
void
vla_factory (int n)
{
int int_vla[n];
unsigned int unsigned_int_vla[n];
double double_vla[n];
float float_vla[n];
long long_vla[n];
unsigned long unsigned_long_vla[n];
char char_vla[n];
short short_vla[n];
unsigned short unsigned_short_vla[n];
unsigned char unsigned_char_vla[n];
struct foo foo_vla[n];
BAR bar_vla[n];
int i;
struct vla_struct
{
int something;
int vla_field[n];
} vla_struct_object;
struct inner_vla_struct
{
int something;
int vla_field[n];
int after;
} inner_vla_struct_object;
union vla_union
{
int vla_field[n];
} vla_union_object;
vla_struct_object.something = n;
inner_vla_struct_object.something = n;
inner_vla_struct_object.after = n;
for (i = 0; i < n; i++)
{
int_vla[i] = i*2;
unsigned_int_vla[i] = i*2;
double_vla[i] = i/2.0;
float_vla[i] = i/2.0f;
long_vla[i] = i*2;
unsigned_long_vla[i] = i*2;
char_vla[i] = 'A';
short_vla[i] = i*2;
unsigned_short_vla[i] = i*2;
unsigned_char_vla[i] = 'A';
foo_vla[i].a = i*2;
bar_vla[i].x = i*2;
bar_vla[i].y.a = i*2;
vla_struct_object.vla_field[i] = i*2;
vla_union_object.vla_field[i] = i*2;
inner_vla_struct_object.vla_field[i] = i*2;
}
size_t int_size = sizeof(int_vla); /* vlas_filled */
size_t uint_size = sizeof(unsigned_int_vla);
size_t double_size = sizeof(double_vla);
size_t float_size = sizeof(float_vla);
size_t long_size = sizeof(long_vla);
size_t char_size = sizeof(char_vla);
size_t short_size = sizeof(short_vla);
size_t ushort_size = sizeof(unsigned_short_vla);
size_t uchar_size = sizeof(unsigned_char_vla);
size_t foo_size = sizeof(foo_vla);
size_t bar_size = sizeof(bar_vla);
size_t vla_struct_object_size = sizeof(vla_struct_object);
size_t vla_union_object_size = sizeof(vla_union_object);
Handle variable-sized fields in the interior of structure type In Ada, variable-sized field can be located at any position of a structure. Consider for instance the following declarations: Dyn_Size : Integer := 1; type Table is array (Positive range <>) of Integer; type Inner is record T1 : Table (1 .. Dyn_Size) := (others => 1); T2 : Table (1 .. Dyn_Size) := (others => 2); end record; type Inner_Array is array (1 .. 2) of Inner; type Outer is record I0 : Integer := 0; A1 : Inner_Array; Marker : Integer := 16#01020304#; end record; Rt : Outer; What this does is declare a variable "Rt" of type Outer, which contains 3 fields where the second (A1) is of type Inner_Array. type Inner_Array is an array with 2 elements of type Inner. Because type Inner contains two arrays whose upper bound depend on a variable, the size of the array, and therefore the size of type Inner is dynamic, thus making field A1 a dynamically-size field. When trying to print the value of Rt, we hit the following limitation: (gdb) print rt Attempt to resolve a variably-sized type which appears in the interior of a structure type The limitation was somewhat making sense in C, but needs to be lifted for Ada. This patch mostly lifts that limitation. As a result of this patch, the type length computation had to be reworked a little bit. gdb/ChangeLog: * gdbtypes.c (resolve_dynamic_struct): Do not generate an error if detecting a variable-sized field that is not the last field. Fix struct type length computation. gdb/testsuite/ChangeLog: * gdb.base/vla-datatypes.c (vla_factory): Add new variable inner_vla_struct_object_size. * gdb.base/vla-datatypes.exp: Adjust last test, and mark it as xfail.
2014-07-08 17:15:35 +02:00
size_t inner_vla_struct_object_size = sizeof(inner_vla_struct_object);
return; /* break_end_of_vla_factory */
}
int
main (void)
{
vla_factory(SIZE);
return 0;
}