Movatterモバイル変換


[0]ホーム

URL:


GCC Bugzilla – Bug 21716[3.4/4.0/4.1 Regression] ICE in reg-stack.c's swap_rtx_conditionLast modified: 2005-07-11 16:05:05 UTC
Bug 21716 -[3.4/4.0/4.1 Regression] ICE in reg-stack.c's swap_rtx_condition
Summary:[3.4/4.0/4.1 Regression] ICE in reg-stack.c's swap_rtx_condition
Status:RESOLVED FIXED
Alias: None
Product:gcc
Classification:Unclassified
Component:target (show other bugs)
Version:3.4.4
:P2 normal
Target Milestone:3.4.5
Assignee:Not yet assigned to anyone
URL:http://gcc.gnu.org/ml/gcc-patches/200...
Keywords:ice-on-valid-code, patch
Depends on:
Blocks:
 
Reported:2005-05-23 08:58 UTC byJakub Jelinek
Modified:2005-07-11 16:05 UTC (History)
2 users (show)

See Also:
Host:
Target:i386-linux
Build:
Known to work:
Known to fail:
Last reconfirmed:2005-05-23 13:52:52


Attachments
pr21716.c (9.24 KB, text/plain)
2005-05-23 09:02 UTC,Jakub Jelinek
Details
View AllAdd an attachment (proposed patch, testcase, etc.)

Note You need tolog in before you can comment on or make changes to this bug.
DescriptionJakub Jelinek 2005-05-23 08:58:44 UTC
Attached testcase ICEs at -m32 -march=i386 -O2 -ffast-math in swap_rtx_condition.Cross jumping there merges testqi_ext_0/jcc_1 from 2 different BB's, but keepsthe %ax setters (cmpfp_2_df_1) in the original blocks.(insn:HI 2037 4155 2038 55 (set (reg:HI 0 ax [783])        (unspec:HI [                (compare:CCFP (reg/v:DF 10 st(2) [orig:354 cf0d2 ] [354])                    (reg:DF 12 st(4)))            ] 24)) 22 {*cmpfp_2_df_1} (insn_list 4399 (insn_list 4400 (nil)))    (expr_list:REG_DEAD (reg:DF 12 st(4))        (nil)))(note:HI 2038 2037 4525 55 NOTE_INSN_DELETED);; End of basic block 55, registers live: 0 [ax] 3 [bx] 4 [si] 5 [di] 6 [bp] 7 [sp] 10 [st(2)] 11 [st(3)] 13 [st(5)] 14[st(6)] 15 [st(7)] 16 [argp] 20 [frame];; Start of basic block 56, registers live: 0 [ax] 3 [bx] 4 [si] 5 [di] 6 [bp] 7[sp] 10 [st(2)] 11 [st(3)] 13 [st(5)] 14 [st(6)] 15 [st(7)] 16 [argp] 20 [frame](code_label 4525 2038 4523 56 173 "" [1 uses])(note 4523 4525 2448 56 [bb 56] NOTE_INSN_BASIC_BLOCK)(note:HI 2448 4523 2449 56 NOTE_INSN_DELETED)(note:HI 2449 2448 2450 56 NOTE_INSN_DELETED)(note:HI 2450 2449 4359 56 NOTE_INSN_DELETED)(insn 4359 2450 2453 56 (set (reg:CCZ 17 flags)        (compare:CCZ (and:SI (zero_extract:SI (reg:SI 0 ax [834])                    (const_int 8 [0x8])                    (const_int 8 [0x8]))                (const_int 1 [0x1]))            (const_int 0 [0x0]))) 278 {*testqi_ext_0} (nil)    (expr_list:REG_DEAD (reg:SI 0 ax [834])        (nil)))(jump_insn:HI 2453 4359 4454 56 (set (pc)        (if_then_else (eq (reg:CCZ 17 flags)                (const_int 0 [0x0]))            (label_ref 1835)            (pc))) 494 {*jcc_1} (insn_list 4359 (nil))    (expr_list:REG_DEAD (reg:CCZ 17 flags)        (expr_list:REG_BR_PROB (const_int 8448 [0x2100])            (nil))))When swap_rtx_condition is called on insn 2037, it doesn't find the %ax userin the same BB, but as the last instruction in the BB is not INSN_P(), it crasheswhen trying to dereference it's PATTERN.
Comment 1Jakub Jelinek 2005-05-23 09:02:21 UTC
Createdattachment 8950[details]pr21716.cTestcase (too large though).
Comment 2Andrew Pinski 2005-05-23 13:52:52 UTC
Confirmed.
Comment 3Volker Reichelt 2005-05-23 16:39:07 UTC
Here's a reduced testcase that might be appropriate for the testsuite:======================================================================/*PR target/21716 *//* { dg-do compile } *//* { dg-options "-march=i386 -m32 -O2 -ffast-math" { i?86-*-* } } */double atan (double);void foo(){   double x, y;   do     {       goto L2;     L1:       if (x) goto L1;     L2:       x += atan (y);       goto L1;     }   while (1);}======================================================================For me the original testcase and the reduced one only crash with the3.4 branch on a native i686-pc-linux-gnu box.
Comment 4GCC Commits 2005-05-26 08:07:52 UTC
Subject:Bug 21716CVSROOT:/cvs/gccModule name:gccChanges by:jakub@gcc.gnu.org2005-05-26 08:07:36Modified files:gcc            : ChangeLog reg-stack.c Log message:PR target/21716* reg-stack.c (swap_rtx_condition): Don't crash if %ax user was notfound in the basic block and last insn in the basic block is notINSN_P.  Remove explicit unspec numbers that are no longer validfrom comments.Patches:http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.8907&r2=2.8908http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/reg-stack.c.diff?cvsroot=gcc&r1=1.177&r2=1.178
Comment 5GCC Commits 2005-05-26 08:55:24 UTC
Subject:Bug 21716CVSROOT:/cvs/gccModule name:gccBranch: gcc-4_0-branchChanges by:jakub@gcc.gnu.org2005-05-26 08:55:07Modified files:gcc            : ChangeLog reg-stack.c Log message:PR target/21716* reg-stack.c (swap_rtx_condition): Don't crash if %ax user was notfound in the basic block and last insn in the basic block is notINSN_P.  Remove explicit unspec numbers that are no longer validfrom comments.Patches:http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=2.7592.2.263&r2=2.7592.2.264http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/reg-stack.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.171&r2=1.171.10.1
Comment 6GCC Commits 2005-05-26 09:05:13 UTC
Subject:Bug 21716CVSROOT:/cvs/gccModule name:gccBranch: gcc-3_4-branchChanges by:jakub@gcc.gnu.org2005-05-26 09:05:05Modified files:gcc            : ChangeLog reg-stack.c Log message:PR target/21716* reg-stack.c (swap_rtx_condition): Don't crash if %ax user was notfound in the basic block and last insn in the basic block is notINSN_P.  Remove explicit unspec numbers that are no longer validfrom comments.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.871&r2=2.2326.2.872http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/reg-stack.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.140.4.2&r2=1.140.4.3
Comment 7Andrew Pinski 2005-05-26 12:05:55 UTC
Fixed.
Comment 8Volker Reichelt 2005-06-02 16:05:51 UTC
The testcase fromcomment #3 still crashes on the 3.4 branch:ePR21716.c: In function `foo':ePR21716.c:21: internal compiler error: in subst_stack_regs_pat, at reg-stack.c:1445Please submit a full bug report, [etc.]
Comment 9Jakub Jelinek 2005-06-02 16:07:48 UTC
Yeah, it is a different bug, one that does not exhibit on the original testcase.Therefore IMHO a separate PR is needed...
Comment 10Andrew Pinski 2005-06-02 19:00:24 UTC
(In reply tocomment #8)> The testcase fromcomment #3 still crashes on the 3.4 branch:Please open a new bug.
Comment 11Volker Reichelt 2005-07-11 16:05:05 UTC
The new PR for the problem incomment #3 isPR 22409.



[8]ページ先頭

©2009-2025 Movatter.jp