public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/25949]  New: Unbounded I/O buffer memory usage for formatted IO
@ 2006-01-24 21:16 jb at gcc dot gnu dot org
  2006-01-24 21:23 ` [Bug libfortran/25949] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: jb at gcc dot gnu dot org @ 2006-01-24 21:16 UTC (permalink / raw)
  To: gcc-bugs

In some places the IO library simply assumes that the IO request is 'small
enough', and happily allocates a buffer big enough for the request to be
handled in one go. Unformatted IO already uses sread()/swrite() which bypasses
buffering if the request is bigger than the buffer size. However, this has not
been done for formatted IO. In some cases this results in excessive memory
usage. A rather extreme (and admittedly contrived) example is

program bigformdir
  integer :: i = 10**9
  open (10, file="foo", form="formatted", access="direct", recl=i)
  write (10, '(i3)', rec=1) 1
  close (10)
end program bigformdir

The above program will cause libgfortran to allocate 1 GB, fill it with ' ',
and then write it. Clearly the allocation is not necessary.


-- 
           Summary: Unbounded I/O buffer memory usage for formatted IO
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: libfortran
        AssignedTo: jb at gcc dot gnu dot org
        ReportedBy: jb at gcc dot gnu dot org


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


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

end of thread, other threads:[~2006-05-19 16:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-24 21:16 [Bug libfortran/25949] New: Unbounded I/O buffer memory usage for formatted IO jb at gcc dot gnu dot org
2006-01-24 21:23 ` [Bug libfortran/25949] " pinskia at gcc dot gnu dot org
2006-01-25 21:35 ` jb at gcc dot gnu dot org
2006-02-12 19:59 ` jb at gcc dot gnu dot org
2006-02-14 20:21 ` jb at gcc dot gnu dot org
2006-05-19 16:45 ` fxcoudert 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).