run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / misc.cc
CommitLineData
28301461
MC
1/* This testcase is part of GDB, the GNU debugger.
2
0fb0cc75 3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2007, 2008,
7b6bb8da 4 2009, 2010, 2011 Free Software Foundation, Inc.
28301461
MC
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
28301461
MC
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
a9762ec7 15
28301461 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>.
28301461
MC
18 */
19
c906108c
SS
20// Test various -*- C++ -*- things.
21
a0b3c4fd
JM
22// ====================== basic C++ types =======================
23bool v_bool;
24bool v_bool_array[2];
25
c906108c
SS
26typedef struct fleep fleep;
27struct fleep { int a; } s;
28
29// ====================== simple class structures =======================
30
31struct default_public_struct {
32 // defaults to public:
33 int a;
34 int b;
35};
36
37struct explicit_public_struct {
38 public:
39 int a;
40 int b;
41};
42
43struct protected_struct {
44 protected:
45 int a;
46 int b;
47};
48
49struct private_struct {
50 private:
51 int a;
52 int b;
53};
54
55struct mixed_protection_struct {
56 public:
57 int a;
58 int b;
59 private:
60 int c;
61 int d;
62 protected:
63 int e;
64 int f;
65 public:
66 int g;
67 private:
68 int h;
69 protected:
70 int i;
71};
72
73class public_class {
74 public:
75 int a;
76 int b;
77};
78
79class protected_class {
80 protected:
81 int a;
82 int b;
83};
84
85class default_private_class {
86 // defaults to private:
87 int a;
88 int b;
89};
90
91class explicit_private_class {
92 private:
93 int a;
94 int b;
95};
96
97class mixed_protection_class {
98 public:
99 int a;
100 int b;
101 private:
102 int c;
103 int d;
104 protected:
105 int e;
106 int f;
107 public:
108 int g;
109 private:
110 int h;
111 protected:
112 int i;
113};
114
115class const_vol_method_class {
116public:
117 int a;
118 int b;
119 int foo (int &) const;
120 int bar (int &) volatile;
121 int baz (int &) const volatile;
122};
123
124int const_vol_method_class::foo (int & ir) const
125{
126 return ir + 3;
127}
128int const_vol_method_class::bar (int & ir) volatile
129{
130 return ir + 4;
131}
132int const_vol_method_class::baz (int & ir) const volatile
133{
134 return ir + 5;
135}
136
137// ========================= simple inheritance ==========================
138
139class A {
140 public:
141 int a;
142 int x;
143};
144
145A g_A;
146
147class B : public A {
148 public:
149 int b;
150 int x;
151};
152
153B g_B;
154
155class C : public A {
156 public:
157 int c;
158 int x;
159};
160
161C g_C;
162
163class D : public B, public C {
164 public:
165 int d;
166 int x;
167};
168
169D g_D;
170
171class E : public D {
172 public:
173 int e;
174 int x;
175};
176
177E g_E;
178
179class class_with_anon_union
180{
181 public:
182 int one;
183 union
184 {
185 int a;
186 long b;
187 };
188};
189
190class_with_anon_union g_anon_union;
191
192void inheritance2 (void)
193{
194}
195
196void inheritance1 (void)
197{
198 int ival;
199 int *intp;
200
201 // {A::a, A::x}
202
203 g_A.A::a = 1;
204 g_A.A::x = 2;
205
206 // {{A::a,A::x},B::b,B::x}
207
208 g_B.A::a = 3;
209 g_B.A::x = 4;
210 g_B.B::b = 5;
211 g_B.B::x = 6;
212
213 // {{A::a,A::x},C::c,C::x}
214
215 g_C.A::a = 7;
216 g_C.A::x = 8;
217 g_C.C::c = 9;
218 g_C.C::x = 10;
219
220 // {{{A::a,A::x},B::b,B::x},{{A::a,A::x},C::c,C::x},D::d,D::x}
221
222 // The following initialization code is non-portable, but allows us
223 // to initialize all members of g_D until we can fill in the missing
224 // initialization code with legal C++ code.
225
226 for (intp = (int *) &g_D, ival = 11;
227 intp < ((int *) &g_D + sizeof (g_D) / sizeof (int));
228 intp++, ival++)
229 {
230 *intp = ival;
231 }
232
233 // Overlay the nonportable initialization with legal initialization.
234
235 // ????? = 11; (g_D.A::a = 11; is ambiguous)
236 // ????? = 12; (g_D.A::x = 12; is ambiguous)
e6d71bf3
DB
237/* djb 6-3-2000
238
239 This should take care of it. Rather than try to initialize using an ambiguous
240 construct, use 2 unambiguous ones for each. Since the ambiguous a/x member is
241 coming from C, and B, initialize D's C::a, and B::a, and D's C::x and B::x.
242 */
243 g_D.C::a = 15;
244 g_D.C::x = 12;
245 g_D.B::a = 11;
246 g_D.B::x = 12;
c906108c
SS
247 g_D.B::b = 13;
248 g_D.B::x = 14;
249 // ????? = 15;
250 // ????? = 16;
251 g_D.C::c = 17;
252 g_D.C::x = 18;
253 g_D.D::d = 19;
254 g_D.D::x = 20;
255
256
257 // {{{{A::a,A::x},B::b,B::x},{{A::a,A::x},C::c,C::x},D::d,D::x}},E::e,E::x}
258
259 // The following initialization code is non-portable, but allows us
260 // to initialize all members of g_D until we can fill in the missing
261 // initialization code with legal C++ code.
262
263 for (intp = (int *) &g_E, ival = 21;
264 intp < ((int *) &g_E + sizeof (g_E) / sizeof (int));
265 intp++, ival++)
266 {
267 *intp = ival;
268 }
269
270 // Overlay the nonportable initialization with legal initialization.
271
272 // ????? = 21; (g_E.A::a = 21; is ambiguous)
273 // ????? = 22; (g_E.A::x = 22; is ambiguous)
274 g_E.B::b = 23;
275 g_E.B::x = 24;
276 // ????? = 25;
277 // ????? = 26;
278 g_E.C::c = 27;
279 g_E.C::x = 28;
280 g_E.D::d = 29;
281 g_E.D::x = 30;
282 g_E.E::e = 31;
283 g_E.E::x = 32;
284
285 g_anon_union.one = 1;
286 g_anon_union.a = 2;
287
288 inheritance2 ();
289}
290
af890c52
DJ
291// ======================== static member functions =====================
292
293class Static {
294public:
295 static void ii(int, int);
296};
297void Static::ii (int, int) { }
298
c906108c
SS
299// ======================== virtual base classes=========================
300
301class vA {
302 public:
303 int va;
304 int vx;
305};
306
307vA g_vA;
308
309class vB : public virtual vA {
310 public:
311 int vb;
312 int vx;
313};
314
315vB g_vB;
316
317class vC : public virtual vA {
318 public:
319 int vc;
320 int vx;
321};
322
323vC g_vC;
324
325class vD : public virtual vB, public virtual vC {
326 public:
327 int vd;
328 int vx;
329};
330
331vD g_vD;
332
333class vE : public virtual vD {
334 public:
335 int ve;
336 int vx;
337};
338
339vE g_vE;
340
341void inheritance4 (void)
342{
343}
344
345void inheritance3 (void)
346{
347 int ival;
348 int *intp;
349
350 // {vA::va, vA::vx}
351
352 g_vA.vA::va = 1;
353 g_vA.vA::vx = 2;
354
355 // {{vA::va, vA::vx}, vB::vb, vB::vx}
356
357 g_vB.vA::va = 3;
358 g_vB.vA::vx = 4;
359 g_vB.vB::vb = 5;
360 g_vB.vB::vx = 6;
361
362 // {{vA::va, vA::vx}, vC::vc, vC::vx}
363
364 g_vC.vA::va = 7;
365 g_vC.vA::vx = 8;
366 g_vC.vC::vc = 9;
367 g_vC.vC::vx = 10;
368
369 // {{{{vA::va, vA::vx}, vB::vb, vB::vx}, vC::vc, vC::vx}, vD::vd,vD::vx}
370
371 g_vD.vA::va = 11;
372 g_vD.vA::vx = 12;
373 g_vD.vB::vb = 13;
374 g_vD.vB::vx = 14;
375 g_vD.vC::vc = 15;
376 g_vD.vC::vx = 16;
377 g_vD.vD::vd = 17;
378 g_vD.vD::vx = 18;
379
380
381 // {{{{{vA::va,vA::vx},vB::vb,vB::vx},vC::vc,vC::vx},vD::vd,vD::vx},vE::ve,vE::vx}
382
383 g_vD.vA::va = 19;
384 g_vD.vA::vx = 20;
385 g_vD.vB::vb = 21;
386 g_vD.vB::vx = 22;
387 g_vD.vC::vc = 23;
388 g_vD.vC::vx = 24;
389 g_vD.vD::vd = 25;
390 g_vD.vD::vx = 26;
391 g_vE.vE::ve = 27;
392 g_vE.vE::vx = 28;
393
394 inheritance4 ();
395}
396
397// ======================================================================
398
399class Base1 {
400 public:
401 int x;
402 Base1(int i) { x = i; }
403};
404
405class Foo
406{
407 public:
408 int x;
409 int y;
410 static int st;
411 Foo (int i, int j) { x = i; y = j; }
412 int operator! ();
413 operator int ();
414 int times (int y);
415};
416
417class Bar : public Base1, public Foo {
418 public:
419 int z;
420 Bar (int i, int j, int k) : Base1 (10*k), Foo (i, j) { z = k; }
421};
422
c906108c
SS
423int Foo::operator! () { return !x; }
424
425int Foo::times (int y) { return x * y; }
426
427int Foo::st = 100;
428
429Foo::operator int() { return x; }
430
431Foo foo(10, 11);
432Bar bar(20, 21, 22);
433
2bec0572
ND
434class ClassWithEnum {
435public:
436 enum PrivEnum { red, green, blue, yellow = 42 };
437 PrivEnum priv_enum;
438 int x;
439};
440
441void enums2 (void)
442{
443}
444
445/* classes.exp relies on statement order in this function for testing
446 enumeration fields. */
447
448void enums1 ()
449{
450 ClassWithEnum obj_with_enum;
451 obj_with_enum.priv_enum = ClassWithEnum::red;
452 obj_with_enum.x = 0;
453 enums2 ();
454 obj_with_enum.priv_enum = ClassWithEnum::green;
455}
456
54602222
ND
457class ClassParam {
458public:
459 int Aptr_a (A *a) { return a->a; }
460 int Aptr_x (A *a) { return a->x; }
461 int Aref_a (A &a) { return a.a; }
462 int Aref_x (A &a) { return a.x; }
463 int Aval_a (A a) { return a.a; }
464 int Aval_x (A a) { return a.x; }
465};
466
467ClassParam class_param;
468
c906108c
SS
469class Contains_static_instance
470{
471 public:
472 int x;
473 int y;
474 Contains_static_instance (int i, int j) { x = i; y = j; }
475 static Contains_static_instance null;
476};
477
478Contains_static_instance Contains_static_instance::null(0,0);
479Contains_static_instance csi(10,20);
480
481class Contains_nested_static_instance
482{
483 public:
484 class Nested
485 {
486 public:
487 Nested(int i) : z(i) {}
488 int z;
489 static Contains_nested_static_instance xx;
490 };
491
492 Contains_nested_static_instance(int i, int j) : x(i), y(j) {}
493
494 int x;
495 int y;
496
497 static Contains_nested_static_instance null;
498 static Nested yy;
499};
500
501Contains_nested_static_instance Contains_nested_static_instance::null(0, 0);
502Contains_nested_static_instance::Nested Contains_nested_static_instance::yy(5);
503Contains_nested_static_instance
504 Contains_nested_static_instance::Nested::xx(1,2);
505Contains_nested_static_instance cnsi(30,40);
506
507typedef struct {
508 int one;
509 int two;
510} tagless_struct;
511tagless_struct v_tagless;
512
513/* Try to get the compiler to allocate a class in a register. */
514class small {
515 public:
516 int x;
517 int method ();
518};
519
520int
521small::method ()
522{
523 return x + 5;
524}
525
526void marker_reg1 () {}
527
528int
529register_class ()
530{
531 /* We don't call any methods for v, so gcc version cygnus-2.3.3-930220
532 might put this variable in a register. This is a lose, though, because
533 it means that GDB can't call any methods for that variable. */
534 register small v;
535
536 int i;
537
538 /* Perform a computation sufficiently complicated that optimizing compilers
539 won't optimized out the variable. If some compiler constant-folds this
540 whole loop, maybe using a parameter to this function here would help. */
541 v.x = 0;
542 for (i = 0; i < 13; ++i)
543 v.x += i;
544 --v.x; /* v.x is now 77 */
545 marker_reg1 ();
546 return v.x + 5;
547}
548
a0b3c4fd
JM
549void dummy()
550{
551 v_bool = true;
552 v_bool_array[0] = false;
553 v_bool_array[1] = v_bool;
554}
555
54602222
ND
556void use_methods ()
557{
558 /* Refer to methods so that they don't get optimized away. */
559 int i;
560 i = class_param.Aptr_a (&g_A);
561 i = class_param.Aptr_x (&g_A);
562 i = class_param.Aref_a (g_A);
563 i = class_param.Aref_x (g_A);
564 i = class_param.Aval_a (g_A);
565 i = class_param.Aval_x (g_A);
566}
567
a0b3c4fd 568
c906108c
SS
569int
570main()
571{
572#ifdef usestubs
573 set_debug_traps();
574 breakpoint();
575#endif
a0b3c4fd 576 dummy();
c906108c
SS
577 inheritance1 ();
578 inheritance3 ();
2bec0572 579 enums1 ();
c906108c
SS
580 register_class ();
581
582 /* FIXME: pmi gets optimized out. Need to do some more computation with
583 it or something. (No one notices, because the test is xfail'd anyway,
584 but that probably won't always be true...). */
585 int Foo::* pmi = &Foo::y;
586
587 /* Make sure the AIX linker doesn't remove the variable. */
588 v_tagless.one = 5;
589
54602222
ND
590 use_methods ();
591
c906108c
SS
592 return foo.*pmi;
593}
594
595/* Create an instance for some classes, otherwise they get optimized away. */
596
597default_public_struct default_public_s;
598explicit_public_struct explicit_public_s;
599protected_struct protected_s;
600private_struct private_s;
601mixed_protection_struct mixed_protection_s;
602public_class public_c;
603protected_class protected_c;
604default_private_class default_private_c;
605explicit_private_class explicit_private_c;
606mixed_protection_class mixed_protection_c;
This page took 1.09165 seconds and 4 git commands to generate.