public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
@ 2006-05-11 21:23 jsm28 at gcc dot gnu dot org
2006-05-12 4:20 ` [Bug target/27565] " pinskia at gcc dot gnu dot org
` (8 more replies)
0 siblings, 9 replies; 10+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2006-05-11 21:23 UTC (permalink / raw)
To: gcc-bugs
Many GCC tests such as gcc.c-torture/compile/simd-3.c fail on
powerpc-none-eabispe with an ICE in assign_stack_temp_for_type. This happens
with trunk and 4.1 branch but not with 4.0 branch. Reduced testcase:
typedef double V __attribute__((vector_size (16)));
void f(void)
{
volatile V t = { 0.0, 0.0 };
}
t.c: In function 'f':
t.c:5: internal compiler error: in assign_stack_temp_for_type, at
function.c:716
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
--
Summary: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type
for vectors with SPE
Product: gcc
Version: 4.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: target
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: jsm28 at gcc dot gnu dot org
GCC target triplet: powerpc*-*-*spe
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
@ 2006-05-12 4:20 ` pinskia at gcc dot gnu dot org
2006-05-14 22:38 ` mmitchel at gcc dot gnu dot org
` (7 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-12 4:20 UTC (permalink / raw)
To: gcc-bugs
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |pinskia at gcc dot gnu dot
| |org
Target Milestone|--- |4.1.1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
2006-05-12 4:20 ` [Bug target/27565] " pinskia at gcc dot gnu dot org
@ 2006-05-14 22:38 ` mmitchel at gcc dot gnu dot org
2006-05-25 2:43 ` mmitchel at gcc dot gnu dot org
` (6 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-14 22:38 UTC (permalink / raw)
To: gcc-bugs
--
mmitchel at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P3 |P2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
2006-05-12 4:20 ` [Bug target/27565] " pinskia at gcc dot gnu dot org
2006-05-14 22:38 ` mmitchel at gcc dot gnu dot org
@ 2006-05-25 2:43 ` mmitchel at gcc dot gnu dot org
2006-06-30 6:05 ` pinskia at gcc dot gnu dot org
` (5 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25 2:43 UTC (permalink / raw)
To: gcc-bugs
------- Comment #1 from mmitchel at gcc dot gnu dot org 2006-05-25 02:34 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.
--
mmitchel at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.1.1 |4.1.2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (2 preceding siblings ...)
2006-05-25 2:43 ` mmitchel at gcc dot gnu dot org
@ 2006-06-30 6:05 ` pinskia at gcc dot gnu dot org
2006-07-08 4:52 ` [Bug target/27565] [4.1 " pinskia at gcc dot gnu dot org
` (4 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-06-30 6:05 UTC (permalink / raw)
To: gcc-bugs
------- Comment #2 from pinskia at gcc dot gnu dot org 2006-06-30 06:01 -------
I cannot reproduce the reduced test case on a compiler built with:
../configure --target=powerpc-unknown-linux-gnuspe --enable-e500_double
and then the reduced testcase compiled like:
./cc1 t.c -mfloat-gprs=single -O2
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (3 preceding siblings ...)
2006-06-30 6:05 ` pinskia at gcc dot gnu dot org
@ 2006-07-08 4:52 ` pinskia at gcc dot gnu dot org
2006-08-17 22:34 ` [Bug target/27565] [4.1/4.2 " jsm28 at gcc dot gnu dot org
` (3 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-08 4:52 UTC (permalink / raw)
To: gcc-bugs
------- Comment #3 from pinskia at gcc dot gnu dot org 2006-07-08 04:52 -------
This works for me on the mainline now, I just tried.
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[4.1/4.2 Regression] ICE in |[4.1 Regression] ICE in
|assign_stack_temp_for_type |assign_stack_temp_for_type
|for vectors with SPE |for vectors with SPE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (4 preceding siblings ...)
2006-07-08 4:52 ` [Bug target/27565] [4.1 " pinskia at gcc dot gnu dot org
@ 2006-08-17 22:34 ` jsm28 at gcc dot gnu dot org
2006-08-18 19:15 ` jsm28 at gcc dot gnu dot org
` (2 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2006-08-17 22:34 UTC (permalink / raw)
To: gcc-bugs
------- Comment #4 from jsm28 at gcc dot gnu dot org 2006-08-17 22:34 -------
The original simd-3.c still fails on mainline (my test compiler is configured
with --enable-e500_double but it still appears with -mfloat-gprs=single) though
the reduced test doesn't.
--
jsm28 at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[4.1 Regression] ICE in |[4.1/4.2 Regression] ICE in
|assign_stack_temp_for_type |assign_stack_temp_for_type
|for vectors with SPE |for vectors with SPE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (5 preceding siblings ...)
2006-08-17 22:34 ` [Bug target/27565] [4.1/4.2 " jsm28 at gcc dot gnu dot org
@ 2006-08-18 19:15 ` jsm28 at gcc dot gnu dot org
2006-08-18 19:16 ` jsm28 at gcc dot gnu dot org
2006-08-19 3:04 ` pinskia at gcc dot gnu dot org
8 siblings, 0 replies; 10+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2006-08-18 19:15 UTC (permalink / raw)
To: gcc-bugs
------- Comment #5 from jsm28 at gcc dot gnu dot org 2006-08-18 19:15 -------
Subject: Bug 27565
Author: jsm28
Date: Fri Aug 18 19:15:31 2006
New Revision: 116249
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116249
Log:
PR target/27565
* config/rs6000/rs6000.h (LOCAL_ALIGNMENT): For SPE, only adjust
alignment of SPE vector types.
Modified:
trunk/gcc/ChangeLog
trunk/gcc/config/rs6000/rs6000.h
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (6 preceding siblings ...)
2006-08-18 19:15 ` jsm28 at gcc dot gnu dot org
@ 2006-08-18 19:16 ` jsm28 at gcc dot gnu dot org
2006-08-19 3:04 ` pinskia at gcc dot gnu dot org
8 siblings, 0 replies; 10+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2006-08-18 19:16 UTC (permalink / raw)
To: gcc-bugs
------- Comment #6 from jsm28 at gcc dot gnu dot org 2006-08-18 19:16 -------
Subject: Bug 27565
Author: jsm28
Date: Fri Aug 18 19:16:19 2006
New Revision: 116250
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116250
Log:
PR target/27565
* config/rs6000/rs6000.h (LOCAL_ALIGNMENT): For SPE, only adjust
alignment of SPE vector types.
Modified:
branches/gcc-4_1-branch/gcc/ChangeLog
branches/gcc-4_1-branch/gcc/config/rs6000/rs6000.h
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Bug target/27565] [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
` (7 preceding siblings ...)
2006-08-18 19:16 ` jsm28 at gcc dot gnu dot org
@ 2006-08-19 3:04 ` pinskia at gcc dot gnu dot org
8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-08-19 3:04 UTC (permalink / raw)
To: gcc-bugs
------- Comment #7 from pinskia at gcc dot gnu dot org 2006-08-19 03:03 -------
Fixed.
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27565
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2006-08-19 3:04 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-11 21:23 [Bug target/27565] New: [4.1/4.2 Regression] ICE in assign_stack_temp_for_type for vectors with SPE jsm28 at gcc dot gnu dot org
2006-05-12 4:20 ` [Bug target/27565] " pinskia at gcc dot gnu dot org
2006-05-14 22:38 ` mmitchel at gcc dot gnu dot org
2006-05-25 2:43 ` mmitchel at gcc dot gnu dot org
2006-06-30 6:05 ` pinskia at gcc dot gnu dot org
2006-07-08 4:52 ` [Bug target/27565] [4.1 " pinskia at gcc dot gnu dot org
2006-08-17 22:34 ` [Bug target/27565] [4.1/4.2 " jsm28 at gcc dot gnu dot org
2006-08-18 19:15 ` jsm28 at gcc dot gnu dot org
2006-08-18 19:16 ` jsm28 at gcc dot gnu dot org
2006-08-19 3:04 ` pinskia at gcc dot gnu dot org
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).