URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [compat/] [struct-by-value-4_x.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
#include "compat-common.h" #define T(N, TYPE) \ struct S##TYPE##N { TYPE i[N]; }; \ \ struct S##TYPE##N g1s##TYPE##N, g2s##TYPE##N; \ struct S##TYPE##N g3s##TYPE##N, g4s##TYPE##N; \ struct S##TYPE##N g5s##TYPE##N, g6s##TYPE##N; \ struct S##TYPE##N g7s##TYPE##N, g8s##TYPE##N; \ struct S##TYPE##N g9s##TYPE##N, g10s##TYPE##N; \ struct S##TYPE##N g11s##TYPE##N, g12s##TYPE##N; \ struct S##TYPE##N g13s##TYPE##N, g14s##TYPE##N; \ struct S##TYPE##N g15s##TYPE##N, g16s##TYPE##N; \ \ extern void init##TYPE (TYPE *p, int i); \ extern void checkg##TYPE##N (void); \ extern void \ test##TYPE##N (struct S##TYPE##N s1, struct S##TYPE##N s2, \ struct S##TYPE##N s3, struct S##TYPE##N s4, \ struct S##TYPE##N s5, struct S##TYPE##N s6, \ struct S##TYPE##N s7, struct S##TYPE##N s8, \ struct S##TYPE##N s9, struct S##TYPE##N s10, \ struct S##TYPE##N s11, struct S##TYPE##N s12, \ struct S##TYPE##N s13, struct S##TYPE##N s14, \ struct S##TYPE##N s15, struct S##TYPE##N s16); \ extern void testva##TYPE##N (int n, ...); \ \ \ void \ init##TYPE##N (struct S##TYPE##N *p, int i) \ { \ int j; \ for (j = 0; j < N; j++) \ init##TYPE(&p->i[j], i+j); \ } \ \ void \ check##TYPE##N (struct S##TYPE##N *p, int i) \ { \ int j; \ for (j = 0; j < N; j++) \ check##TYPE(p->i[j], i+j); \ } \ \ void \ test2_##TYPE##N (struct S##TYPE##N s1, struct S##TYPE##N s2, \ struct S##TYPE##N s3, struct S##TYPE##N s4, \ struct S##TYPE##N s5, struct S##TYPE##N s6, \ struct S##TYPE##N s7, struct S##TYPE##N s8) \ { \ test##TYPE##N (s1, g2s##TYPE##N, s2, g4s##TYPE##N, \ s3, g6s##TYPE##N, s4, g8s##TYPE##N, \ s5, g10s##TYPE##N, s6, g12s##TYPE##N, \ s7, g14s##TYPE##N, s8, g16s##TYPE##N); \ } \ \ void \ testit##TYPE##N (void) \ { \ DEBUG_FPUTS (#TYPE "[" #N "]"); \ DEBUG_FPUTS (" init: "); \ init##TYPE##N ( &g1s##TYPE##N, 1*16); \ init##TYPE##N ( &g2s##TYPE##N, 2*16); \ init##TYPE##N ( &g3s##TYPE##N, 3*16); \ init##TYPE##N ( &g4s##TYPE##N, 4*16); \ init##TYPE##N ( &g5s##TYPE##N, 5*16); \ init##TYPE##N ( &g6s##TYPE##N, 6*16); \ init##TYPE##N ( &g7s##TYPE##N, 7*16); \ init##TYPE##N ( &g8s##TYPE##N, 8*16); \ init##TYPE##N ( &g9s##TYPE##N, 9*16); \ init##TYPE##N (&g10s##TYPE##N, 10*16); \ init##TYPE##N (&g11s##TYPE##N, 11*16); \ init##TYPE##N (&g12s##TYPE##N, 12*16); \ init##TYPE##N (&g13s##TYPE##N, 13*16); \ init##TYPE##N (&g14s##TYPE##N, 14*16); \ init##TYPE##N (&g15s##TYPE##N, 15*16); \ init##TYPE##N (&g16s##TYPE##N, 16*16); \ checkg##TYPE##N (); \ DEBUG_NL; \ DEBUG_FPUTS (#TYPE "[" #N "]"); \ DEBUG_FPUTS (" test: "); \ test##TYPE##N (g1s##TYPE##N, g2s##TYPE##N, \ g3s##TYPE##N, g4s##TYPE##N, \ g5s##TYPE##N, g6s##TYPE##N, \ g7s##TYPE##N, g8s##TYPE##N, \ g9s##TYPE##N, g10s##TYPE##N, \ g11s##TYPE##N, g12s##TYPE##N, \ g13s##TYPE##N, g14s##TYPE##N, \ g15s##TYPE##N, g16s##TYPE##N); \ DEBUG_NL; \ DEBUG_FPUTS (#TYPE "[" #N "]"); \ DEBUG_FPUTS (" testva:"); \ testva##TYPE##N (16, \ g1s##TYPE##N, g2s##TYPE##N, \ g3s##TYPE##N, g4s##TYPE##N, \ g5s##TYPE##N, g6s##TYPE##N, \ g7s##TYPE##N, g8s##TYPE##N, \ g9s##TYPE##N, g10s##TYPE##N, \ g11s##TYPE##N, g12s##TYPE##N, \ g13s##TYPE##N, g14s##TYPE##N, \ g15s##TYPE##N, g16s##TYPE##N); \ DEBUG_NL; \ DEBUG_FPUTS (#TYPE "[" #N "]"); \ DEBUG_FPUTS (" test2: "); \ test2_##TYPE##N (g1s##TYPE##N, g3s##TYPE##N, \ g5s##TYPE##N, g7s##TYPE##N, \ g9s##TYPE##N, g11s##TYPE##N, \ g13s##TYPE##N, g15s##TYPE##N); \ DEBUG_NL; \ } typedef struct { char c; } Sc; typedef struct { short s; } Ss; typedef struct { int i; } Si; typedef struct { short s; char c; } Ssc; typedef struct { int i; short s; } Sis; typedef struct { char c; short s; int i; } Scsi; typedef struct { char c; int i; short s; } Scis; void checkSc (Sc x, int i) { if (x.c != i/16) DEBUG_CHECK } void checkSs (Ss x, int i) { if (x.s != i) DEBUG_CHECK } void checkSi (Si x, int i) { if (x.i != i) DEBUG_CHECK } void checkSsc (Ssc x, int i) { if (x.s != i || x.c != (i/16)+1) DEBUG_CHECK } void checkSis (Sis x, int i) { if (x.i != i || x.s != i+1) DEBUG_CHECK } void checkScsi (Scsi x, int i) { if (x.c != i/16 || x.s != i+1 || x.i != i+2) DEBUG_CHECK } void checkScis (Scis x, int i) { if (x.c != i/16 || x.i != i+1 || x.s != i+2) DEBUG_CHECK } #ifndef SKIP_ZERO_ARRAY T(0, Sc) #endif T(1, Sc) T(2, Sc) T(3, Sc) T(4, Sc) T(5, Sc) T(6, Sc) T(7, Sc) T(8, Sc) T(9, Sc) T(10, Sc) T(11, Sc) T(12, Sc) T(13, Sc) T(14, Sc) T(15, Sc) #ifndef SKIP_ZERO_ARRAY T(0, Ss) #endif T(1, Ss) T(2, Ss) T(3, Ss) T(4, Ss) T(5, Ss) T(6, Ss) T(7, Ss) T(8, Ss) T(9, Ss) T(10, Ss) T(11, Ss) T(12, Ss) T(13, Ss) T(14, Ss) T(15, Ss) #ifndef SKIP_ZERO_ARRAY T(0, Si) #endif T(1, Si) T(2, Si) T(3, Si) T(4, Si) T(5, Si) T(6, Si) T(7, Si) T(8, Si) T(9, Si) T(10, Si) T(11, Si) T(12, Si) T(13, Si) T(14, Si) T(15, Si) #undef T void struct_by_value_4_x () { DEBUG_INIT #define T(N, TYPE) testit##TYPE##N (); #ifndef SKIP_ZERO_ARRAY T(0, Sc) #endif T(1, Sc) T(2, Sc) T(3, Sc) T(4, Sc) T(5, Sc) T(6, Sc) T(7, Sc) T(8, Sc) T(9, Sc) T(10, Sc) T(11, Sc) T(12, Sc) T(13, Sc) T(14, Sc) T(15, Sc) #ifndef SKIP_ZERO_ARRAY T(0, Ss) #endif T(1, Ss) T(2, Ss) T(3, Ss) T(4, Ss) T(5, Ss) T(6, Ss) T(7, Ss) T(8, Ss) T(9, Ss) T(10, Ss) T(11, Ss) T(12, Ss) T(13, Ss) T(14, Ss) T(15, Ss) #ifndef SKIP_ZERO_ARRAY T(0, Si) #endif T(1, Si) T(2, Si) T(3, Si) T(4, Si) T(5, Si) T(6, Si) T(7, Si) T(8, Si) T(9, Si) T(10, Si) T(11, Si) T(12, Si) T(13, Si) T(14, Si) T(15, Si) DEBUG_FINI if (fails != 0) abort (); #undef T }
Go to most recent revision | Compare with Previous | Blame | View Log