patches/gcc/4.3.1/160-flatten-switch-stmt-00.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Aug 07 14:05:47 2008 +0000 (2008-08-07)
changeset 766 717efd8b78b4
parent 746 b150d6f590fc
permissions -rw-r--r--
Update all samples to the latest set of options.
Update some samples to use newer features.
Add patches for the uClibc-20080801 snapshot to be able to build with gcc-4.3.
Add a patch against glibc-2.7 to allow building PPC with latest kernel headers.
Add a patch to gcc to use an alternate unwinding when built against uClibc (after a private explanation/request by Daniel Egger <daniel@eggers-club.de>)

/trunk/patches/glibc/2.7/230-powerpc-private_futex.patch | 15 15 0 0 +
/trunk/patches/uClibc/20080801/300-fix-asm.patch | 175 175 0 0 +++++++++
/trunk/patches/uClibc/20080801/100-ifaddrs.patch | 190 190 0 0 +++++++++
/trunk/patches/uClibc/20080801/200-mips-typeof.patch | 112 112 0 0 ++++++
/trunk/patches/gcc/4.3.1/330-unwind-for-uClibc.patch | 25 25 0 0 +
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 17 10 7 0 +
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 7 5 2 0 +
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 7 5 2 0 +
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 14 11 3 0 +
/trunk/samples/x86_64-unknown-linux-uclibc/uClibc-20080801.config | 232 232 0 0 ++++++++++++
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 34 21 13 0 +-
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 10 7 3 0 +
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 12 9 3 0 +
/trunk/samples/mips-unknown-linux-uclibc/uClibc-20080801.config | 249 249 0 0 ++++++++++++
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 38 23 15 0 +-
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 14 10 4 0 +
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 7 5 2 0 +
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 12 9 3 0 +
/trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 7 5 2 0 +
/trunk/samples/i586-geode-linux-uclibc/uClibc-20080801.config | 261 261 0 0 +++++++++++++
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 32 20 12 0 ++
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 12 9 3 0 +
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 7 5 2 0 +
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 7 5 2 0 +
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 16 10 6 0 +
25 files changed, 1428 insertions(+), 84 deletions(-)
yann@552
     1
Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.1/gentoo/18_all_904-flatten-switch-stmt-00.patch
yann@552
     2
http://gcc.gnu.org/ml/gcc-patches/2007-04/msg00927.html
yann@552
     3
yann@552
     4
Hi,
yann@552
     5
yann@552
     6
The attached patch makes sure that we create smaller object code for
yann@552
     7
simple switch statements. We just make sure to flatten the switch
yann@552
     8
statement into an if-else chain, basically.
yann@552
     9
yann@552
    10
This fixes a size-regression as compared to gcc-3.4, as can be seen
yann@552
    11
below.
yann@552
    12
yann@552
    13
2007-04-15  Bernhard Fischer  <..>
yann@552
    14
yann@552
    15
	* stmt.c (expand_case): Do not create a complex binary tree when
yann@552
    16
	optimizing for size but rather use the simple ordered list.
yann@552
    17
	(emit_case_nodes): do not emit jumps to the default_label when
yann@552
    18
	optimizing for size.
yann@552
    19
yann@552
    20
Not regtested so far.
yann@552
    21
Comments?
yann@552
    22
yann@552
    23
Attached is the test switch.c mentioned below.
yann@552
    24
yann@552
    25
$ for i in 2.95 3.3 3.4 4.0 4.1 4.2.orig-HEAD 4.3.orig-HEAD 4.3-HEAD;do
yann@552
    26
gcc-$i  -DCHAIN -Os -o switch-CHAIN-$i.o -c switch.c ;done
yann@552
    27
$ for i in 2.95 3.3 3.4 4.0 4.1 4.2.orig-HEAD 4.3.orig-HEAD 4.3-HEAD;do
yann@552
    28
gcc-$i  -UCHAIN -Os -o switch-$i.o -c switch.c ;done
yann@552
    29
yann@552
    30
$ size switch-*.o
yann@552
    31
   text	   data	    bss	    dec	    hex	filename
yann@552
    32
    169	      0	      0	    169	     a9	switch-2.95.o
yann@552
    33
    115	      0	      0	    115	     73	switch-3.3.o
yann@552
    34
    103	      0	      0	    103	     67	switch-3.4.o
yann@552
    35
    124	      0	      0	    124	     7c	switch-4.0.o
yann@552
    36
    124	      0	      0	    124	     7c	switch-4.1.o
yann@552
    37
    124	      0	      0	    124	     7c	switch-4.2.orig-HEAD.o
yann@552
    38
     95	      0	      0	     95	     5f	switch-4.3-HEAD.o
yann@552
    39
    124	      0	      0	    124	     7c	switch-4.3.orig-HEAD.o
yann@552
    40
    166	      0	      0	    166	     a6	switch-CHAIN-2.95.o
yann@552
    41
    111	      0	      0	    111	     6f	switch-CHAIN-3.3.o
yann@552
    42
     95	      0	      0	     95	     5f	switch-CHAIN-3.4.o
yann@552
    43
     95	      0	      0	     95	     5f	switch-CHAIN-4.0.o
yann@552
    44
     95	      0	      0	     95	     5f	switch-CHAIN-4.1.o
yann@552
    45
     95	      0	      0	     95	     5f	switch-CHAIN-4.2.orig-HEAD.o
yann@552
    46
     95	      0	      0	     95	     5f	switch-CHAIN-4.3-HEAD.o
yann@552
    47
     95	      0	      0	     95	     5f	switch-CHAIN-4.3.orig-HEAD.o
yann@552
    48
yann@552
    49
yann@552
    50
Content-Type: text/x-diff; charset=us-ascii
yann@552
    51
Content-Disposition: attachment; filename="gcc-4.3.gcc-flatten-switch-stmt.00.diff"
yann@552
    52
yann@552
    53
diff -durN gcc-4.3.1.orig/gcc/stmt.c gcc-4.3.1/gcc/stmt.c
yann@552
    54
--- gcc-4.3.1.orig/gcc/stmt.c	2008-05-09 20:12:13.000000000 +0200
yann@552
    55
+++ gcc-4.3.1/gcc/stmt.c	2008-06-10 14:57:58.000000000 +0200
yann@552
    56
@@ -2509,7 +2509,11 @@
yann@552
    57
 	  use_cost_table
yann@552
    58
 	    = (TREE_CODE (orig_type) != ENUMERAL_TYPE
yann@552
    59
 	       && estimate_case_costs (case_list));
yann@552
    60
-	  balance_case_nodes (&case_list, NULL);
yann@552
    61
+	  /* When optimizing for size, we want a straight list to avoid
yann@552
    62
+	     jumps as much as possible. This basically creates an if-else
yann@552
    63
+	     chain.  */
yann@552
    64
+	  if (!optimize_size)
yann@552
    65
+	    balance_case_nodes (&case_list, NULL);
yann@552
    66
 	  emit_case_nodes (index, case_list, default_label, index_type);
yann@552
    67
 	  emit_jump (default_label);
yann@552
    68
 	}
yann@552
    69
@@ -3067,6 +3071,7 @@
yann@552
    70
 	    {
yann@552
    71
 	      if (!node_has_low_bound (node, index_type))
yann@552
    72
 		{
yann@552
    73
+		  if (!optimize_size) /* don't jl to the .default_label. */
yann@552
    74
 		  emit_cmp_and_jump_insns (index,
yann@552
    75
 					   convert_modes
yann@552
    76
 					   (mode, imode,