This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Reference some unused variables in the testsuite


Another testing improvement for ARM RealView.  This compiler strips unused code even
at -O0 (somewhat similar to --gc-sections).  Specifically:

  * Unused local variables will be discarded, but the usage does not
  have to be terribly sophisticated (constvars.c).

  * The standard library does not always pull in malloc.  If you want
  to be able to call malloc from the debugger you need to make sure
  the program references malloc (break.c).

  * If you link two files together, but one is never the target of a
  relocation, then that file won't make it into the output (hang1.cc).

Tested on arm-none-eabi and x86_64-linux.  Checked in.

2009-11-12  Daniel Jacobowitz  <dan@codesourcery.com>

	gdb/testsuite/
	* gdb.base/break.c (need_malloc): New.
	* gdb.base/constvars.c (main): Reference crass and crisp.
	* gdb.base/gdb1821.c (main): Reference bar.
	* gdb.cp/gdb1355.cc (main): Reference s1.
	* gdb.cp/hang1.cc (dummy2, dummy3): Declare.
	(main): Call them.
	* gdb.cp/hang2.cc (dummy2): Define.
	* gdb.cp/hang3.cc (dummy3): Define.
	* gdb.cp/m-data.cc (main): Reference shadow.

---
 gdb/testsuite/gdb.base/break.c     |    7 +++++++
 gdb/testsuite/gdb.base/constvars.c |    4 ++++
 gdb/testsuite/gdb.base/gdb1821.c   |    2 +-
 gdb/testsuite/gdb.cp/gdb1355.cc    |    3 ++-
 gdb/testsuite/gdb.cp/hang1.cc      |    5 ++++-
 gdb/testsuite/gdb.cp/hang2.cc      |    5 +++++
 gdb/testsuite/gdb.cp/hang3.cc      |    5 +++++
 gdb/testsuite/gdb.cp/m-data.cc     |    2 +-
 8 files changed, 29 insertions(+), 4 deletions(-)

Index: gdb-mainline/gdb/testsuite/gdb.base/break.c
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.base/break.c	2009-01-03 00:43:31.000000000 -0800
+++ gdb-mainline/gdb/testsuite/gdb.base/break.c	2009-11-11 09:04:38.000000000 -0800
@@ -62,6 +62,13 @@ extern void marker3 ();
 extern void marker4 ();
 #endif
 
+/* We're used by a test that requires malloc, so make sure it is in
+   the executable.  */
+void *need_malloc ()
+{
+  return malloc (1);
+}
+
 /*
  *	This simple classical example of recursion is useful for
  *	testing stack backtraces and such.
Index: gdb-mainline/gdb/testsuite/gdb.base/constvars.c
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.base/constvars.c	2006-11-10 00:23:07.000000000 -0800
+++ gdb-mainline/gdb/testsuite/gdb.base/constvars.c	2009-11-11 09:04:38.000000000 -0800
@@ -172,6 +172,10 @@ main (void)
   struct crass { char * const ptr; } crass = { lamprey };
   struct crisp { char * const *ptr; } crisp = { &lamprey };
 
+  /* Reference the structs so that they are not discarded.  */
+  struct crass *creed = &crass;
+  struct crisp *crow = &crisp;
+
   /* misc. references */
   /*
   const char           & radiation = laconic;
Index: gdb-mainline/gdb/testsuite/gdb.base/gdb1821.c
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.base/gdb1821.c	2007-08-24 00:22:59.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.base/gdb1821.c	2009-11-11 09:04:38.000000000 -0800
@@ -20,4 +20,4 @@
 struct foo { double x__0, y__0, z__1; } bar;
 
 
-int main(void) { return 0; }
+int main(void) { return (int) bar.x__0; }
Index: gdb-mainline/gdb/testsuite/gdb.cp/gdb1355.cc
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.cp/gdb1355.cc	2003-09-17 17:04:39.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.cp/gdb1355.cc	2009-11-11 09:04:38.000000000 -0800
@@ -31,5 +31,6 @@ struct mystruct s1 =
 
 int main ()
 {
-  return 0;
+  /* Reference s1 so that it is included.  */
+  return s1.m_int - 117;
 }
Index: gdb-mainline/gdb/testsuite/gdb.cp/hang1.cc
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.cp/hang1.cc	2008-04-30 11:28:23.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.cp/hang1.cc	2009-11-11 09:04:38.000000000 -0800
@@ -1,3 +1,6 @@
 #include "hang.H"
 
-int main (int argc, char **argv) { return 0; }
+extern int dummy2 (void);
+extern int dummy3 (void);
+
+int main (int argc, char **argv) { return dummy2() + dummy3(); }
Index: gdb-mainline/gdb/testsuite/gdb.cp/hang2.cc
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.cp/hang2.cc	2008-04-30 11:28:23.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.cp/hang2.cc	2009-11-11 09:04:38.000000000 -0800
@@ -6,3 +6,8 @@ struct B
 };
 
 int var_in_b = 1729;
+
+int dummy2 (void)
+{
+  return var_in_b;
+}
Index: gdb-mainline/gdb/testsuite/gdb.cp/hang3.cc
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.cp/hang3.cc	2008-04-30 11:28:23.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.cp/hang3.cc	2009-11-11 09:04:38.000000000 -0800
@@ -2,3 +2,8 @@
 
 const struct B *const_B_ptr;
 int var_in_hang3 = 42;
+
+int dummy3 (void)
+{
+  return var_in_hang3;
+}
Index: gdb-mainline/gdb/testsuite/gdb.cp/m-data.cc
===================================================================
--- gdb-mainline.orig/gdb/testsuite/gdb.cp/m-data.cc	2003-08-22 20:55:59.000000000 -0700
+++ gdb-mainline/gdb/testsuite/gdb.cp/m-data.cc	2009-11-11 09:04:38.000000000 -0800
@@ -60,5 +60,5 @@ int main()
   C theC (1);				// breakpoint: first-constructs-done
   theC.marker ();
   
-  return 0;
+  return shadow;
 }

-- 
Daniel Jacobowitz
CodeSourcery


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]