patches/gcc/4.3.1/230-pr34571.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu May 19 23:06:16 2011 +0200 (2011-05-19)
changeset 2461 ec30b191f0e3
parent 746 b150d6f590fc
permissions -rw-r--r--
complibs/ppl: build only C and C++ interfaces for PPL

By default, PPL wants to build interfaces for any of a variety of
langauges it finds on the local host (python, java, possibly perl, also
more esoteric languages such as ocaml and prolog).

These extra interfaces can double the compile time for the library. For
single-process builds, I found a savings of more than 40%:

default / j1: 716s total, 143.2s avg, 0.52s stdev
just_c / j1: 406s total, 81.2s avg, 0.33s stdev
just_c_cpp / j1: 413s total, 82.6s avg, 0.22s stdev

And for multi-process builds, it approached 50%:

default / j4: 625s total, 125.0s avg, 0.57s stdev
just_c / j4: 338s total, 67.6s avg, 1.25s stdev
just_c_cpp / j4: 327s total, 65.4s avg, 0.36s stdev

Since the PPL we build within ct-ng is only used by GCC, we only need to
build the C and C++ interfaces.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
yann@552
     1
Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.1/gentoo/64_all_gcc43-pr34571.patch
yann@552
     2
http://gcc.gnu.org/PR34571
yann@552
     3
yann@552
     4
2007-12-26  Rask Ingemann Lambertsen  <rask@sygehus.dk>
yann@552
     5
yann@552
     6
	PR target/34571
yann@552
     7
	* config/alpha/alpha.c (alpha_cannot_force_const_mem): Use
yann@552
     8
	symbolic_operand.
yann@552
     9
	* varasm.c (output_constant_pool_1): Fix typo.
yann@552
    10
yann@552
    11
diff -durN gcc-4.3.1.orig/gcc/config/alpha/alpha.c gcc-4.3.1/gcc/config/alpha/alpha.c
yann@552
    12
--- gcc-4.3.1.orig/gcc/config/alpha/alpha.c	2008-02-07 18:45:24.000000000 +0100
yann@552
    13
+++ gcc-4.3.1/gcc/config/alpha/alpha.c	2008-06-10 14:58:24.000000000 +0200
yann@552
    14
@@ -1113,8 +1113,7 @@
yann@552
    15
 static bool
yann@552
    16
 alpha_cannot_force_const_mem (rtx x)
yann@552
    17
 {
yann@552
    18
-  enum rtx_code code = GET_CODE (x);
yann@552
    19
-  return code == SYMBOL_REF || code == LABEL_REF || code == CONST;
yann@552
    20
+  return symbolic_operand (x, GET_MODE (x));
yann@552
    21
 }
yann@552
    22
 
yann@552
    23
 /* We do not allow indirect calls to be optimized into sibling calls, nor
yann@552
    24
diff -durN gcc-4.3.1.orig/gcc/varasm.c gcc-4.3.1/gcc/varasm.c
yann@552
    25
--- gcc-4.3.1.orig/gcc/varasm.c	2007-12-05 22:55:10.000000000 +0100
yann@552
    26
+++ gcc-4.3.1/gcc/varasm.c	2008-06-10 14:58:24.000000000 +0200
yann@552
    27
@@ -3710,7 +3710,7 @@
yann@552
    28
       /* FALLTHRU  */
yann@552
    29
 
yann@552
    30
     case LABEL_REF:
yann@552
    31
-      tmp = XEXP (x, 0);
yann@552
    32
+      tmp = XEXP (tmp, 0);
yann@552
    33
       gcc_assert (!INSN_DELETED_P (tmp));
yann@552
    34
       gcc_assert (!NOTE_P (tmp)
yann@552
    35
 		  || NOTE_KIND (tmp) != NOTE_INSN_DELETED);