public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/40598]  New: Some missed optimizations in array assignment
@ 2009-06-30  7:53 pault at gcc dot gnu dot org
  2009-06-30  9:40 ` [Bug fortran/40598] " rguenth at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: pault at gcc dot gnu dot org @ 2009-06-30  7:53 UTC (permalink / raw)
  To: gcc-bugs

The fix for PR40551 made me realise that there are some assignment
optimizations that are missed:

  integer :: array (3, 3), source (3, 3)
  array = 0
  array(:, 1) = 0             ! could use __builtin_memcpy
  array(1,:) = 0
  source = array              ! uses __builtin_memcpy
  source(:,1) = array (:,2)   ! could use __builtin_memcpy
  source(1,:) = array (2,:)
  source = reshape ([1,2,3,4,5,6,7,8,9],[3,3]) ! uses __builtin_memcpy
  array(:,1) = [1,2,3]        ! could use __builtin_memcpy
end


At present, there is only a test that the lhs array is full.  Any contiguous
reference could take these opportunities too.  Some work will be required with
the helper functions but this is not a big deal.

I'll take it on.

Paul


-- 
           Summary: Some missed optimizations in array assignment
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: pault at gcc dot gnu dot org
        ReportedBy: pault at gcc dot gnu dot org


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


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

end of thread, other threads:[~2010-05-08 20:58 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-30  7:53 [Bug fortran/40598] New: Some missed optimizations in array assignment pault at gcc dot gnu dot org
2009-06-30  9:40 ` [Bug fortran/40598] " rguenth at gcc dot gnu dot org
2009-06-30  9:47 ` burnus at gcc dot gnu dot org
2009-06-30  9:55 ` pault at gcc dot gnu dot org
2009-06-30 12:57 ` pault at gcc dot gnu dot org
2009-07-01  7:52 ` burnus at gcc dot gnu dot org
2009-07-01  8:23 ` pault at gcc dot gnu dot org
2009-07-01  9:43 ` rguenth at gcc dot gnu dot org
2009-07-01 10:51 ` pault at gcc dot gnu dot org
2009-07-01 11:02 ` pault at gcc dot gnu dot org
2010-05-07 21:02 ` dfranke at gcc dot gnu dot org
2010-05-08 12:57 ` pault at gcc dot gnu dot org
2010-05-08 20:58 ` dfranke 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).