public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code
@ 2004-05-26 14:07 hjl at lucon dot org
  2004-05-26 14:15 ` [Bug target/15653] " hjl at lucon dot org
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-05-26 14:07 UTC (permalink / raw)
  To: gcc-bugs

[hjl@gnu-4 itanium]$ cat lock.c
extern void __free_pages_bulk (unsigned long);
 
int
free_pages_bulk(int count, unsigned int order)
{
  unsigned long mask, flags;
  int ret = 0;
 
  mask = (~0UL) << order;
  asm volatile ("mov %0=psr" : "=r"(flags));
  while (count--) {
    __free_pages_bulk(mask);
  }
  return ret;
}
[hjl@gnu-4 itanium]$ /usr/gcc-3.4/bin/gcc -S -O2 -mtune=itanium -S lock.c
lock.c: In function `free_pages_bulk':
lock.c:15: internal compiler error: in bundling, at config/ia64/ia64.c:7358
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

-- 
           Summary: [3.4 Regression]: Gcc 3.4 ICE on valid code
           Product: gcc
           Version: 3.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: ia64-unknown-linux-gnu
  GCC host triplet: ia64-unknown-linux-gnu
GCC target triplet: ia64-unknown-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
@ 2004-05-26 14:15 ` hjl at lucon dot org
  2004-06-01  6:00 ` wilson at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-05-26 14:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-05-25 22:28 -------
Created an attachment (id=6383)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=6383&action=view)
A different testcase


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
  2004-05-26 14:15 ` [Bug target/15653] " hjl at lucon dot org
@ 2004-06-01  6:00 ` wilson at gcc dot gnu dot org
  2004-06-10 21:06 ` cvs-commit at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: wilson at gcc dot gnu dot org @ 2004-06-01  6:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at gcc dot gnu dot org  2004-06-01 06:00 -------
Looks like same bug as 15598.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
  2004-05-26 14:15 ` [Bug target/15653] " hjl at lucon dot org
  2004-06-01  6:00 ` wilson at gcc dot gnu dot org
@ 2004-06-10 21:06 ` cvs-commit at gcc dot gnu dot org
  2004-06-10 21:10 ` cvs-commit at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-10 21:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-10 21:06 -------
Subject: Bug 15653

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	vmakarov@gcc.gnu.org	2004-06-10 21:06:08

Modified files:
	gcc            : ChangeLog haifa-sched.c 

Log message:
	2004-06-10  Vladimir Makarov  <vmakarov@redhat.com>
	
	PR target/15653
	* haifa-sched.c (schedule_block): Finish cycle after issuing asm
	insn.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.3915&r2=2.3916
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/haifa-sched.c.diff?cvsroot=gcc&r1=1.243&r2=1.244



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2004-06-10 21:06 ` cvs-commit at gcc dot gnu dot org
@ 2004-06-10 21:10 ` cvs-commit at gcc dot gnu dot org
  2004-06-10 22:21 ` pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-10 21:10 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-10 21:10 -------
Subject: Bug 15653

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	vmakarov@gcc.gnu.org	2004-06-10 21:10:09

Modified files:
	gcc            : ChangeLog haifa-sched.c 

Log message:
	2004-06-10  Vladimir Makarov  <vmakarov@redhat.com>
	
	PR target/15653
	* haifa-sched.c (schedule_block): Finish cycle after issuing asm
	insn.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=2.2326.2.492&r2=2.2326.2.493
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/haifa-sched.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.236.2.1&r2=1.236.2.2



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (3 preceding siblings ...)
  2004-06-10 21:10 ` cvs-commit at gcc dot gnu dot org
@ 2004-06-10 22:21 ` pinskia at gcc dot gnu dot org
  2004-06-11 23:06 ` hjl at lucon dot org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-10 22:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-10 22:20 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |3.4.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (4 preceding siblings ...)
  2004-06-10 22:21 ` pinskia at gcc dot gnu dot org
@ 2004-06-11 23:06 ` hjl at lucon dot org
  2004-06-11 23:07 ` hjl at lucon dot org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-06-11 23:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-06-11 23:05 -------
The bug is not fixed. Please check all testcases in the bug report. The one
failed is lock.c. I am enclosing here again:

[hjl@gnu-4 itanium]$ cat lock.c
extern void __free_pages_bulk (unsigned long);

int
free_pages_bulk(int count, unsigned int order)
{
  unsigned long mask, flags;
  int ret = 0;

  mask = (~0UL) << order;
  asm volatile ("mov %0=psr" : "=r"(flags));
  while (count--) {
    __free_pages_bulk(mask);
  }
  return ret;
}
[hjl@gnu-4 itanium]$ make lock.o
/export/build/gnu/gcc-3.4/build-ia64-linux/gcc/xgcc -B/export/build/gnu/gcc-
3.4/build-ia64-linux/gcc/ -O2 -mtune=itanium   -c -o lock.o lock.c
lock.c: In function `free_pages_bulk':
lock.c:15: internal compiler error: in bundling, at config/ia64/ia64.c:7359
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
make: *** [lock.o] Error 1


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|FIXED                       |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (5 preceding siblings ...)
  2004-06-11 23:06 ` hjl at lucon dot org
@ 2004-06-11 23:07 ` hjl at lucon dot org
  2004-06-12 22:11 ` mmitchel at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-06-11 23:07 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |vmakarov at redhat dot com
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (6 preceding siblings ...)
  2004-06-11 23:07 ` hjl at lucon dot org
@ 2004-06-12 22:11 ` mmitchel at gcc dot gnu dot org
  2004-06-15 16:11 ` vmakarov at redhat dot com
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-06-12 22:11 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-06-12 22:11 -------
Jim, as IA64 maintainer would you please take a look at this?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wilson at specifixinc dot
                   |                            |com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (7 preceding siblings ...)
  2004-06-12 22:11 ` mmitchel at gcc dot gnu dot org
@ 2004-06-15 16:11 ` vmakarov at redhat dot com
  2004-06-16  1:13 ` wilson at specifixinc dot com
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: vmakarov at redhat dot com @ 2004-06-15 16:11 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From vmakarov at redhat dot com  2004-06-15 16:11 -------
When I wrote the patch I worked on kernel_time.c.  And the pacth solves the
problem with the test.

The test lock.c has another reason for the crash.  It is in code putting additional
nops between shift insn and a dependent insn.  This code is specific for
itanium1 only.  As I see it does not work when the next insn is an asm insn.

I'll send a patch for solving this problem too.  I don't think we should pay
attention to legacy hardware like itanium1.  Could somebody tell me how many
itanium1 machines are used now? And who are using them?  I think we should
remove code supporting Itanium1.

Vlad

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (8 preceding siblings ...)
  2004-06-15 16:11 ` vmakarov at redhat dot com
@ 2004-06-16  1:13 ` wilson at specifixinc dot com
  2004-06-16 15:47 ` cvs-commit at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: wilson at specifixinc dot com @ 2004-06-16  1:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at specifixinc dot com  2004-06-16 01:13 -------
Subject: Re:  [3.4 Regression]: Gcc 3.4 ICE on valid code

On Tue, 2004-06-15 at 09:11, vmakarov at redhat dot com wrote:
> I'll send a patch for solving this problem too.  I don't think we should pay
> attention to legacy hardware like itanium1.  Could somebody tell me how many
> itanium1 machines are used now? And who are using them?  I think we should
> remove code supporting Itanium1.

We can't just drop Itanium1 support.  I tried reducing Itanium1 support
from binutils.  Specifically, I modified binutils to emit the brl
(branch long) instruction by default instead of a longer non-brl
sequence.  This instruction is implemented in hardware in Itanium2, and
emulated in software on Itanium1.  The ABI requires that brl be
emulated, so the only effect on Itanium1 was that some large programs
would run a little slower.  A few months later, HJ submitted a binutils
patch that added an option to emit the non-brl sequence for Itanium1
targets.  Obviously, someone still cares about Itanium1 performance,
though it is likely a very small number of people.  Maybe someone has a
large installation of Itanium1 machines that they can't afford to just
throw away?

For FSF GCC release purposes, I think we can consider Itanium1 specific 
optimization bugs as less important than general Itanium bugs.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (9 preceding siblings ...)
  2004-06-16  1:13 ` wilson at specifixinc dot com
@ 2004-06-16 15:47 ` cvs-commit at gcc dot gnu dot org
  2004-06-16 15:51 ` cvs-commit at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-16 15:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-16 15:47 -------
Subject: Bug 15653

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	vmakarov@gcc.gnu.org	2004-06-16 15:47:30

Modified files:
	gcc            : ChangeLog 
	gcc/config/ia64: ia64.c 

Log message:
	2004-06-16  Vladimir Makarov  <vmakarov@redhat.com>
	
	PR target/15653
	* config/ia64/ia64.c (ia64_dfa_new_cycle): Do not insert nops
	after shifts before asm.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.3993&r2=2.3994
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.c.diff?cvsroot=gcc&r1=1.291&r2=1.292



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (10 preceding siblings ...)
  2004-06-16 15:47 ` cvs-commit at gcc dot gnu dot org
@ 2004-06-16 15:51 ` cvs-commit at gcc dot gnu dot org
  2004-06-16 19:06 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-16 15:51 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-16 15:51 -------
Subject: Bug 15653

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	vmakarov@gcc.gnu.org	2004-06-16 15:51:34

Modified files:
	gcc            : ChangeLog 
	gcc/config/ia64: ia64.c 

Log message:
	2004-06-16  Vladimir Makarov  <vmakarov@redhat.com>
	
	PR target/15653
	* config/ia64/ia64.c (ia64_dfa_new_cycle): Do not insert nops
	after shifts before asm.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=2.2326.2.508&r2=2.2326.2.509
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/ia64/ia64.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.265.2.8&r2=1.265.2.9



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (11 preceding siblings ...)
  2004-06-16 15:51 ` cvs-commit at gcc dot gnu dot org
@ 2004-06-16 19:06 ` pinskia at gcc dot gnu dot org
  2004-06-17  7:15 ` wilson at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-16 19:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-16 19:06 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (12 preceding siblings ...)
  2004-06-16 19:06 ` pinskia at gcc dot gnu dot org
@ 2004-06-17  7:15 ` wilson at gcc dot gnu dot org
  2004-06-21 23:08 ` hjl at lucon dot org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: wilson at gcc dot gnu dot org @ 2004-06-17  7:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at gcc dot gnu dot org  2004-06-17 07:15 -------
*** Bug 15655 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (13 preceding siblings ...)
  2004-06-17  7:15 ` wilson at gcc dot gnu dot org
@ 2004-06-21 23:08 ` hjl at lucon dot org
  2004-06-21 23:33 ` hjl at lucon dot org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-06-21 23:08 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-06-21 23:08 -------
I found another Itanium 1 bug. This time, -mtune=merced and -frename-registers
are involved. As I understand, -frename-registers may be buggy (see bug 15569).
Should -frename-registers be disabled for Itanium 1 as a workaround?

Gcc 3.4 has many Itanium 1 regressions. I think we should either remove Itanium
1 support or fix all regressions.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|FIXED                       |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (14 preceding siblings ...)
  2004-06-21 23:08 ` hjl at lucon dot org
@ 2004-06-21 23:33 ` hjl at lucon dot org
  2004-06-21 23:40 ` hjl at lucon dot org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-06-21 23:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-06-21 23:33 -------
Created an attachment (id=6598)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=6598&action=view)
Another testcase

[hjl@gnu-4 linux-2.6.7]$ /usr/gcc-3.4/bin/gcc -O2 -mtune=merced foo.c -S 
-frename-registers
foo.c: In function `ia64_mmu_init':
foo.c:55: internal compiler error: in bundling, at config/ia64/ia64.c:7112
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (15 preceding siblings ...)
  2004-06-21 23:33 ` hjl at lucon dot org
@ 2004-06-21 23:40 ` hjl at lucon dot org
  2004-06-22  8:14 ` mmitchel at gcc dot gnu dot org
  2004-06-23 22:23 ` wilson at specifixinc dot com
  18 siblings, 0 replies; 20+ messages in thread
From: hjl at lucon dot org @ 2004-06-21 23:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-06-21 23:40 -------
The bug has nothing to do with -frename-registers:

[hjl@gnu-4 linux-2.6.7]$ /usr/gcc-3.4/bin/gcc -O2 -mtune=merced foo.c -S
foo.c: In function `ia64_mmu_init':
foo.c:55: internal compiler error: in bundling, at config/ia64/ia64.c:7112
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (16 preceding siblings ...)
  2004-06-21 23:40 ` hjl at lucon dot org
@ 2004-06-22  8:14 ` mmitchel at gcc dot gnu dot org
  2004-06-23 22:23 ` wilson at specifixinc dot com
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-06-22  8:14 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-06-22 08:14 -------
HJ, please do not add new test cases for new bugs to an existing PR.

There's no evidence that they are the same bug.  As such, I've closed this PR;
you can open a new PR with the new bug.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

* [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code
  2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
                   ` (17 preceding siblings ...)
  2004-06-22  8:14 ` mmitchel at gcc dot gnu dot org
@ 2004-06-23 22:23 ` wilson at specifixinc dot com
  18 siblings, 0 replies; 20+ messages in thread
From: wilson at specifixinc dot com @ 2004-06-23 22:23 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at specifixinc dot com  2004-06-23 22:11 -------
Subject: Re:  [3.4 Regression]: Gcc 3.4 ICE on valid code

On Mon, 2004-06-21 at 16:08, hjl at lucon dot org wrote:
> Gcc 3.4 has many Itanium 1 regressions. I think we should either remove Itanium
> 1 support or fix all regressions.

I find this very confusing.

I assumed that we can not remove Itanium1 support because
a) You re-added binutils support after I removed it.
b) You are reporting gcc bugs for it.

If we really can remove it, then why are you reporting all of these
bugs?  At the very least, you should mark them as minor problems so I
know that they aren't important.

The Itanium port has far more problems than there are people to fix
them.  Every time you report a bug you don't care about, you make this
worse.  People aren't going to volunteer to fix Itanium bugs just
because you report them.  All that happens is that you increase my work
load.  I've been spending time looking at these Itanium1 bug reports
because they seemed important to you.  Meanwhile, other important bugs
are going unfixed.  You are only hurting your own cause by diverting my
attention from more important problems if you really don't care about
the Itanium1 support.

Keep in mind that just because it is broken doesn't mean we have to
remove it.  Removing it is a big hammer.  There are easier solutions,
such as ignoring the problem for now, or disabling it, or adding an
error() call to document that it is broken.  If we just leave it alone,
maybe someone will volunteer to fix the problems 6 months from now. 
This won't happen if we just remove it.

If we do remove the support, then what exactly are we removing?  What
about the kernel support?  What about the binutils support?  Are there
other things affected, like glibc?  Are we removing all Itanium1
support?  Or are we just removing the DFA scheduler for Itanium1?  What
about people that still have Itanium1 machines?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653


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

end of thread, other threads:[~2004-06-23 22:11 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-26 14:07 [Bug target/15653] New: [3.4 Regression]: Gcc 3.4 ICE on valid code hjl at lucon dot org
2004-05-26 14:15 ` [Bug target/15653] " hjl at lucon dot org
2004-06-01  6:00 ` wilson at gcc dot gnu dot org
2004-06-10 21:06 ` cvs-commit at gcc dot gnu dot org
2004-06-10 21:10 ` cvs-commit at gcc dot gnu dot org
2004-06-10 22:21 ` pinskia at gcc dot gnu dot org
2004-06-11 23:06 ` hjl at lucon dot org
2004-06-11 23:07 ` hjl at lucon dot org
2004-06-12 22:11 ` mmitchel at gcc dot gnu dot org
2004-06-15 16:11 ` vmakarov at redhat dot com
2004-06-16  1:13 ` wilson at specifixinc dot com
2004-06-16 15:47 ` cvs-commit at gcc dot gnu dot org
2004-06-16 15:51 ` cvs-commit at gcc dot gnu dot org
2004-06-16 19:06 ` pinskia at gcc dot gnu dot org
2004-06-17  7:15 ` wilson at gcc dot gnu dot org
2004-06-21 23:08 ` hjl at lucon dot org
2004-06-21 23:33 ` hjl at lucon dot org
2004-06-21 23:40 ` hjl at lucon dot org
2004-06-22  8:14 ` mmitchel at gcc dot gnu dot org
2004-06-23 22:23 ` wilson at specifixinc dot com

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).