public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c/2397: big char array causes segfault
@ 2001-06-07 14:07 pme
  0 siblings, 0 replies; 4+ messages in thread
From: pme @ 2001-06-07 14:07 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, nobody, vkire

Synopsis: big char array causes segfault

State-Changed-From-To: open->closed
State-Changed-By: pme
State-Changed-When: Thu Jun  7 14:07:49 2001
State-Changed-Why:
    Submitter reports fixed:
    http://gcc.gnu.org/ml/gcc/2001-06/msg00254.html

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2397&database=gcc


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

* Re: c/2397: big char array causes segfault
@ 2001-03-28 13:16 Kiril Vidimce
  0 siblings, 0 replies; 4+ messages in thread
From: Kiril Vidimce @ 2001-03-28 13:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c/2397; it has been noted by GNATS.

From: Kiril Vidimce <vkire@pixar.com>
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org
Cc:  
Subject: Re: c/2397: big char array causes segfault
Date: Wed, 28 Mar 2001 13:08:42 -0800 (PST)

 On 27 Mar 2001 gcc-gnats@gcc.gnu.org wrote:
 > Thank you very much for your problem report.
 > It has the internal identification `c/2397'.
 > The individual assigned to look at your
 > report is: unassigned. 
 
 I increased the stack limit size with limits and the problem went away.
 I am surprised this is a problem though since my stack size limit
 was set to 64 MB. Why wasn't this enough?
 
 KV
 --
   ___________________________________________________________________
   Studio Tools                                        vkire@pixar.com
   Pixar Animation Studios                        http://www.pixar.com/
 


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

* Re: c/2397: big char array causes segfault
@ 2001-03-26 20:16 Kiril Vidimce
  0 siblings, 0 replies; 4+ messages in thread
From: Kiril Vidimce @ 2001-03-26 20:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c/2397; it 
>From snyder@fnal.gov Mon Mar 26 21:46:00 2001
From: snyder@fnal.gov
To: gcc-gnats@gcc.gnu.org
Subject: c++/2398: external name gets put in wrong namespace
Date: Mon, 26 Mar 2001 21:46:00 -0000
Message-id: <200103270538.f2R5ctu30354@karma.fnal.gov>
X-SW-Source: 2001-03/msg00287.html
Content-length: 2519

>Number:         2398
>Category:       c++
>Synopsis:       external name gets put in wrong namespace
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Mon Mar 26 21:46:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     scott snyder
>Release:        3.0 20010326 (prerelease)
>Organization:
>Environment:
System: Linux karma 2.2.16-22 #1 Tue Aug 22 16:49:06 EDT 2000 i686 unknown
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../egcs/configure --prefix=/usr/local/egcs --enable-threads=posix --enable-long-long
>Description:

If i compile the source below and look at the generated code, i see
that the reference to the rcp::EntryRCPID constructor is said to be
in the global namespace, _not_ the rcp namespace.

If the typedef is removed, then the external reference moves back
to the rcp namespace.  Oddly, if the EntryRCPID class is made non-virtual
by removing the destructor declaration, and if i turn on debugging,
then the external name also moves back to the rcp namespace.

>How-To-Repeat:

---------------------------------------------------------------------
namespace rcp {

struct EntryRCPID
{
  EntryRCPID();
  virtual ~EntryRCPID();
};

typedef EntryRCPID                  EntryRCPID;

}

void xyzzy()
{
  rcp::EntryRCPID x;
}

---------------------------------------------------------------------


$ ./cc1plus -quiet x.cc
$ c++filt < x.s | grep EntryRCPID
        call    EntryRCPID::EntryRCPID()
        call    EntryRCPID::~EntryRCPID()

If i comment out the destructor declaration in the above and add -g
to the compilation, i get instead the following results:

$ ./cc1plus -g -quiet x.cc
$ c++filt  < x.s | grep EntryRCPID
        .stabs  "EntryRCPID:T(0,25)=s1operator=::(0,26)=#(0,25),(0,27)=&(0,25),(0,28)=*(0,25),(0,29)=&(0,25),(0,21);:rcp::EntryRCPID::operator=(rcp::EntryRCPID const&);2A.;__base_ctor::(0,30)=#(0,25),(0,21),(0,28),(0,29),(0,21);:rcp::EntryRCPID::EntryRCPID(rcp::EntryRCPID const&);2A.;__comp_ctor::(0,30):rcp::EntryRCPID::EntryRCPID(rcp::EntryRCPID const&);2A.;__base_ctor::(0,31)=#(0,25),(0,21),(0,28),(0,21);:rcp::EntryRCPID::EntryRCPID();2A.;__comp_ctor::(0,31):rcp::EntryRCPID::EntryRCPID();2A.;;",128,0,0,0
        .stabs  "EntryRCPID:Tt(0,25)",128,0,4,0
        call    rcp::EntryRCPID::EntryRCPID()


>Fix:
	
>Release-Note:
>Audit-Trail:
>Unformatted:


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

* c/2397: big char array causes segfault
@ 2001-03-26 19:56 vkire
  0 siblings, 0 replies; 4+ messages in thread
From: vkire @ 2001-03-26 19:56 UTC (permalink / raw)
  To: gcc-gnats

>Number:         2397
>Category:       c
>Synopsis:       big char array causes segfault
>Confidential:   no
>Severity:       critical
>Priority:       high
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Mon Mar 26 19:56:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     vkire@pixar.com
>Release:        gcc version 2.95.2 19991024 (release)
>Organization:
>Environment:
Red Hat Linux 6.2 under IA32
>Description:
When allocating a big static aray of chars,
a subsequent call to malloc crashes my program.
I am including a simple 4-line test case that
reproduces the problem. No special parameters
are needed to reproduce the problem. The
attached archive includes a README file with
the output of gcc -v -save-temps all-your-options source-file
and the generated .i file.
>How-To-Repeat:
% gcc -Wall -o alloc alloc.c
% ./alloc
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: application/octet-stream; name="alloc.tgz"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="alloc.tgz"

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
KIdyKIdyKIdyKLz8PyTzHBMAoAAA


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

end of thread, other threads:[~2001-06-07 14:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-06-07 14:07 c/2397: big char array causes segfault pme
  -- strict thread matches above, loose matches on Subject: below --
2001-03-28 13:16 Kiril Vidimce
2001-03-26 20:16 Kiril Vidimce
2001-03-26 19:56 vkire

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).