public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/31469]  New: move_by_pieces in expr.c function bug
@ 2007-04-04 15:13 omer dot medan at gmail dot com
  2007-04-04 15:51 ` [Bug middle-end/31469] " pinskia at gcc dot gnu dot org
  0 siblings, 1 reply; 2+ messages in thread
From: omer dot medan at gmail dot com @ 2007-04-04 15:13 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1266 bytes --]

The function move_by_pieces in expr.c enters to endless loop when the backend
defines the sizes of all data types to be the same size (aka CHAR_TYPE_SIZE    
  = SHORT_TYPE_SIZE       = INT_TYPE_SIZE = anyvalue …).

The loop itself occurs in this code section - 
while (max_size > 1)
    {

      for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
           tmode != VOIDmode; tmode = GET_MODE_WIDER_MODE (tmode))
        if (GET_MODE_SIZE (tmode) < max_size)
          mode = tmode;

      if (mode == VOIDmode)
        break;

      icode = mov_optab->handlers[(int) mode].insn_code;
      if (icode != CODE_FOR_nothing && align >= GET_MODE_ALIGNMENT (mode))
        move_by_pieces_1 (GEN_FCN (icode), mode, &data);

      max_size = GET_MODE_SIZE (mode);
    }

The idea here is to decrease the sizes of copying insn, or something like that, 
But what if it isn’t decreasing?

Thanks.


-- 
           Summary: move_by_pieces in expr.c function bug
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: omer dot medan at gmail dot com


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


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

* [Bug middle-end/31469] move_by_pieces in expr.c function bug
  2007-04-04 15:13 [Bug c/31469] New: move_by_pieces in expr.c function bug omer dot medan at gmail dot com
@ 2007-04-04 15:51 ` pinskia at gcc dot gnu dot org
  0 siblings, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-04-04 15:51 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|major                       |normal
          Component|c                           |middle-end


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


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

end of thread, other threads:[~2007-04-04 15:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-04 15:13 [Bug c/31469] New: move_by_pieces in expr.c function bug omer dot medan at gmail dot com
2007-04-04 15:51 ` [Bug middle-end/31469] " 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).