public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH, ARM] fix PR pch/45979 regression on ARM
@ 2011-05-01 21:22 Michael Hope
  2011-05-03 12:52 ` Richard Earnshaw
  2011-05-05 13:57 ` Ramana Radhakrishnan
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Hope @ 2011-05-01 21:22 UTC (permalink / raw)
  To: gcc-patches; +Cc: patches

Linux 2.6.35 and later on ARM randomise the address space, breaking
precompiled header support in GCC.  The fix is to use the support in
GCC for mmap()ing into a fixed, likely to be free address.  The ARM
memory map is modeled on the i386 so I used the same definition.

Tested on trunk with a Ubuntu 2.6.35 kernel.  Bootstraps OK and clears
all of the PCH testsuite failures.  Note that this change is
equivalent to Mikael Pettersson's patch at:
 http://gcc.gnu.org/ml/gcc-patches/2010-10/msg02252.html

OK for trunk?

-- Michael

gcc/

2011-05-02  Michael Hope  <michael.hope@linaro.org>

	PR pch/45979
	* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for
	__ARM_EABI__ hosts.

diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c
index 47ce3ea..8b41685 100644
--- a/gcc/config/host-linux.c
+++ b/gcc/config/host-linux.c
@@ -84,6 +84,8 @@
 # define TRY_EMPTY_VM_SPACE	0x60000000
 #elif defined(__mc68000__)
 # define TRY_EMPTY_VM_SPACE	0x40000000
+#elif defined(__ARM_EABI__)
+# define TRY_EMPTY_VM_SPACE	0x60000000
 #else
 # define TRY_EMPTY_VM_SPACE	0
 #endif

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH, ARM] fix PR pch/45979 regression on ARM
  2011-05-01 21:22 [PATCH, ARM] fix PR pch/45979 regression on ARM Michael Hope
@ 2011-05-03 12:52 ` Richard Earnshaw
  2011-05-05 13:57 ` Ramana Radhakrishnan
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Earnshaw @ 2011-05-03 12:52 UTC (permalink / raw)
  To: Michael Hope; +Cc: gcc-patches, patches


On Mon, 2011-05-02 at 09:21 +1200, Michael Hope wrote:
> Linux 2.6.35 and later on ARM randomise the address space, breaking
> precompiled header support in GCC.  The fix is to use the support in
> GCC for mmap()ing into a fixed, likely to be free address.  The ARM
> memory map is modeled on the i386 so I used the same definition.
> 
> Tested on trunk with a Ubuntu 2.6.35 kernel.  Bootstraps OK and clears
> all of the PCH testsuite failures.  Note that this change is
> equivalent to Mikael Pettersson's patch at:
>  http://gcc.gnu.org/ml/gcc-patches/2010-10/msg02252.html
> 
> OK for trunk?
> 

OK.

R.

> -- Michael
> 
> gcc/
> 
> 2011-05-02  Michael Hope  <michael.hope@linaro.org>
> 
> 	PR pch/45979
> 	* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for
> 	__ARM_EABI__ hosts.
> 
> diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c
> index 47ce3ea..8b41685 100644
> --- a/gcc/config/host-linux.c
> +++ b/gcc/config/host-linux.c
> @@ -84,6 +84,8 @@
>  # define TRY_EMPTY_VM_SPACE	0x60000000
>  #elif defined(__mc68000__)
>  # define TRY_EMPTY_VM_SPACE	0x40000000
> +#elif defined(__ARM_EABI__)
> +# define TRY_EMPTY_VM_SPACE	0x60000000
>  #else
>  # define TRY_EMPTY_VM_SPACE	0
>  #endif



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH, ARM] fix PR pch/45979 regression on ARM
  2011-05-01 21:22 [PATCH, ARM] fix PR pch/45979 regression on ARM Michael Hope
  2011-05-03 12:52 ` Richard Earnshaw
@ 2011-05-05 13:57 ` Ramana Radhakrishnan
  1 sibling, 0 replies; 3+ messages in thread
From: Ramana Radhakrishnan @ 2011-05-05 13:57 UTC (permalink / raw)
  To: Michael Hope; +Cc: gcc-patches, patches

>
> OK for trunk?

I have now committed this to trunk for you and will backport this to
release branches at some point in the next few days.

cheers
Ramana


>
> -- Michael
>
> gcc/
>
> 2011-05-02  Michael Hope  <michael.hope@linaro.org>
>
>        PR pch/45979
>        * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for
>        __ARM_EABI__ hosts.
>
> diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c
> index 47ce3ea..8b41685 100644
> --- a/gcc/config/host-linux.c
> +++ b/gcc/config/host-linux.c
> @@ -84,6 +84,8 @@
>  # define TRY_EMPTY_VM_SPACE    0x60000000
>  #elif defined(__mc68000__)
>  # define TRY_EMPTY_VM_SPACE    0x40000000
> +#elif defined(__ARM_EABI__)
> +# define TRY_EMPTY_VM_SPACE    0x60000000
>  #else
>  # define TRY_EMPTY_VM_SPACE    0
>  #endif
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-05 13:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-01 21:22 [PATCH, ARM] fix PR pch/45979 regression on ARM Michael Hope
2011-05-03 12:52 ` Richard Earnshaw
2011-05-05 13:57 ` Ramana Radhakrishnan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).