public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
@ 2010-09-24 14:57 ` jakub at gcc dot gnu.org
  2010-09-24 15:08 ` jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-09-24 14:57 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #24 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-09-24 14:37:06 UTC ---
Author: jakub
Date: Fri Sep 24 14:37:02 2010
New Revision: 164593

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=164593
Log:
    PR middle-end/45234
    * rtl.h (enum global_rtl_index): Add
    GR_VIRTUAL_PREFERRED_STACK_BOUNDARY.
    (LAST_VIRTUAL_POINTER_REGISTER): Define.
    (virtual_preferred_stack_boundary_rtx,
    VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM): Define.
    (LAST_VIRTUAL_REGISTER): Increase by one.
    (REGNO_PTR_FRAME_P): Use LAST_VIRTUAL_POINTER_REGISTER
    instead of LAST_VIRTUAL_REGISTER.
    * function.c (instantiate_new_reg): Handle
    virtual_preferred_stack_boundary_rtx.
    * emit-rtl.c (init_virtual_regs): Handle
    VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM.
    (init_emit_regs): Initialize virtual_preferred_stack_boundary_rtx.
    * explow.c (round_push): If crtl->preferred_stack_boundary
    is smaller than MAX_SUPPORTED_STACK_ALIGNMENT, use
    virtual_preferred_stack_boundary_rtx alignment instead of
    crtl->preferred_stack_boundary alignment.
    (allocate_dynamic_stack_space): Use CONST_INT_P and REG_P
    macros.  Never decrease crtl->preferred_stack_boundary,
    use crtl->preferred_stack_boundary or MAX_SUPPORTED_STACK_ALIGNMENT
    instead of PREFERRED_STACK_BOUNDARY.  Don't modify
    stack_pointer_delta in dynamic allocation, even when size
    is constant.
    (probe_stack_range, anti_adjust_stack_and_probe): Use CONST_INT_P
    macro.
    * print-rtl.c (print_rtx): Handle
    VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM.
    * config/alpha/alpha.h (NONSTRICT_REG_OK_FP_BASE_P): Use
    LAST_VIRTUAL_POINTER_REGISTER instead of LAST_VIRTUAL_REGISTER.
    * config/frv/frv.c (frv_emit_movsi): Likewise.
    * config/arm/arm.c (thumb1_legitimate_address_p): Likewise.
    * config/rs6000/rs6000.c (virtual_stack_registers_memory_p):
    Likewise.

    * gcc.dg/torture/stackalign/alloca-6.c: New test.
    * gcc.target/i386/pr45234.c: New test.

    Revert:
    2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>

    PR middle-end/45234
    * calls.c (expand_call): Make sure that all variable sized
    adjustments are multiple of preferred stack boundary after
    stack alignment.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/stackalign/alloca-6.c
    trunk/gcc/testsuite/gcc.target/i386/pr45234.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/calls.c
    trunk/gcc/config/alpha/alpha.h
    trunk/gcc/config/arm/arm.c
    trunk/gcc/config/frv/frv.c
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/emit-rtl.c
    trunk/gcc/explow.c
    trunk/gcc/function.c
    trunk/gcc/print-rtl.c
    trunk/gcc/rtl.h
    trunk/gcc/testsuite/ChangeLog

-- 
Configure bugmail: http://gcc.gnu.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
  2010-09-24 14:57 ` [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca jakub at gcc dot gnu.org
@ 2010-09-24 15:08 ` jakub at gcc dot gnu.org
  2010-09-24 15:11 ` jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-09-24 15:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #25 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-09-24 15:02:06 UTC ---
Author: jakub
Date: Fri Sep 24 15:01:53 2010
New Revision: 164595

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=164595
Log:
    Revert:
    2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>

    PR middle-end/45234
    * calls.c (expand_call): Make sure that all variable sized
    adjustments are multiple of preferred stack boundary after
    stack alignment.

    * gcc.dg/torture/stackalign/alloca-5.c: Remove.

Removed:
    branches/gcc-4_5-branch/gcc/testsuite/gcc.dg/torture/stackalign/alloca-5.c
Modified:
    branches/gcc-4_5-branch/gcc/ChangeLog
    branches/gcc-4_5-branch/gcc/calls.c
    branches/gcc-4_5-branch/gcc/testsuite/ChangeLog

-- 
Configure bugmail: http://gcc.gnu.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
  2010-09-24 14:57 ` [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca jakub at gcc dot gnu.org
  2010-09-24 15:08 ` jakub at gcc dot gnu.org
@ 2010-09-24 15:11 ` jakub at gcc dot gnu.org
  2010-09-24 15:33 ` [Bug middle-end/45234] [4.4/4.5 " jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-09-24 15:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #26 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-09-24 15:07:40 UTC ---
Author: jakub
Date: Fri Sep 24 15:07:36 2010
New Revision: 164596

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=164596
Log:
    Revert:
    2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>

    PR middle-end/45234
    * calls.c (expand_call): Make sure that all variable sized
    adjustments are multiple of preferred stack boundary after
    stack alignment.

    * gcc.dg/torture/stackalign/alloca-5.c: Remove.

Removed:
    branches/gcc-4_4-branch/gcc/testsuite/gcc.dg/torture/stackalign/alloca-5.c
Modified:
    branches/gcc-4_4-branch/gcc/ChangeLog
    branches/gcc-4_4-branch/gcc/calls.c
    branches/gcc-4_4-branch/gcc/testsuite/ChangeLog

-- 
Configure bugmail: http://gcc.gnu.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug middle-end/45234] [4.4/4.5 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2010-09-24 15:11 ` jakub at gcc dot gnu.org
@ 2010-09-24 15:33 ` jakub at gcc dot gnu.org
  2010-10-01 11:50 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-09-24 15:33 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P2
                 CC|                            |jakub at gcc dot gnu.org
      Known to work|                            |4.6.0
            Summary|[4.4/4.5/4.6 Regression]    |[4.4/4.5 Regression] ICE in
                   |ICE in expand_call, at      |expand_call, at
                   |calls.c:2845 when passing   |calls.c:2845 when passing
                   |aligned function argument   |aligned function argument
                   |from unaligned stack after  |from unaligned stack after
                   |alloca                      |alloca
      Known to fail|4.6.0                       |

--- Comment #27 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-09-24 15:11:33 UTC ---
Should be fixed now on the trunk, on 4.4 and 4.5 I've so far reverted the old
patch, will wait some time before backporting the new patch.

-- 
Configure bugmail: http://gcc.gnu.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

* [Bug middle-end/45234] [4.4/4.5 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2010-09-24 15:33 ` [Bug middle-end/45234] [4.4/4.5 " jakub at gcc dot gnu.org
@ 2010-10-01 11:50 ` jakub at gcc dot gnu.org
  2011-04-16 10:10 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-10-01 11:50 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.5                       |4.4.6


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

* [Bug middle-end/45234] [4.4/4.5 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2010-10-01 11:50 ` jakub at gcc dot gnu.org
@ 2011-04-16 10:10 ` jakub at gcc dot gnu.org
  2012-03-13 14:24 ` [Bug middle-end/45234] [4.5 " jakub at gcc dot gnu.org
  2012-07-02 10:42 ` rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-04-16 10:10 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.6                       |4.4.7


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

* [Bug middle-end/45234] [4.5 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2011-04-16 10:10 ` jakub at gcc dot gnu.org
@ 2012-03-13 14:24 ` jakub at gcc dot gnu.org
  2012-07-02 10:42 ` rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-13 14:24 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.7                       |4.5.4

--- Comment #28 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-03-13 12:47:00 UTC ---
4.4 branch is being closed, moving to 4.5.4 target.


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

* [Bug middle-end/45234] [4.5 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca
       [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2012-03-13 14:24 ` [Bug middle-end/45234] [4.5 " jakub at gcc dot gnu.org
@ 2012-07-02 10:42 ` rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-07-02 10:42 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.5.4                       |4.6.0

--- Comment #29 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-07-02 10:41:54 UTC ---
Fixed in 4.6.0, the 4.5 branch is being closed.


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

end of thread, other threads:[~2012-07-02 10:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-45234-4@http.gcc.gnu.org/bugzilla/>
2010-09-24 14:57 ` [Bug middle-end/45234] [4.4/4.5/4.6 Regression] ICE in expand_call, at calls.c:2845 when passing aligned function argument from unaligned stack after alloca jakub at gcc dot gnu.org
2010-09-24 15:08 ` jakub at gcc dot gnu.org
2010-09-24 15:11 ` jakub at gcc dot gnu.org
2010-09-24 15:33 ` [Bug middle-end/45234] [4.4/4.5 " jakub at gcc dot gnu.org
2010-10-01 11:50 ` jakub at gcc dot gnu.org
2011-04-16 10:10 ` jakub at gcc dot gnu.org
2012-03-13 14:24 ` [Bug middle-end/45234] [4.5 " jakub at gcc dot gnu.org
2012-07-02 10:42 ` rguenth at gcc dot gnu.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).