public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* C++ Issue on GCC 3.0 branch
@ 2001-04-20  9:47 Jeffrey A Law
  0 siblings, 0 replies; 40+ messages in thread
From: Jeffrey A Law @ 2001-04-20  9:47 UTC (permalink / raw)
  To: gcc

A few of the remaining failures for PA32 using static libraries are
multiply defined symbols -- in each case one or more symbols defined by
the main program is a duplicate of a symbol in libstdc++.

For example, compiling g++.law/cvt2.C results in about a dozen duplicate
symbols (output has been massaged to be easier to read).

"std::istream::~istream()" in files cvt.o and libstdc++.a (misc-inst.o)

Similarly for the following symbols:

"std::basic_ios<char, std::char_traits<char> >::~basic_ios()"
"std::basic_ifstream<char, std::char_traits<char> >::~basic_ifstream()"
"std::basic_ios<char, std::char_traits<char> >::~basic_ios()"
"std::basic_ifstream<char, std::char_traits<char> >::basic_ifstream(char 
const*, std::_Ios_Openmode)"

[ ... ]

I'm not enough of a C++ guru to know where to start with this one, so any
help y'all could provide would be greatly appreciated.

jeff



^ permalink raw reply	[flat|nested] 40+ messages in thread
* Re: C++ Issue on GCC 3.0 branch
@ 2001-04-20 21:29 John David Anglin
  2001-04-20 21:31 ` David Edelsohn
  2001-04-21 10:11 ` Mark Mitchell
  0 siblings, 2 replies; 40+ messages in thread
From: John David Anglin @ 2001-04-20 21:29 UTC (permalink / raw)
  To: gcc, law

> A few of the remaining failures for PA32 using static libraries are
> multiply defined symbols -- in each case one or more symbols defined by
> the main program is a duplicate of a symbol in libstdc++.

The duplicate symbol problem also prevents building a shared libstdc++.,
particularly if you use a low optimization level for debugging.

I have been trying to track this for a couple of days.  The enclosed
patch may resolve the problem of duplicate symbols.  It appears to prevent
the symbols from being exported.  However, I have no idea whether it is
technically correct.  It is possible the problem should be fixed when
the original clone decl is created.

The functions are all constructors being instantiated from templates.
It is my assumption that these don't really need to be accessible from
other files and the duplication won't be a problem (ie., static data
should be in common).  On systems with weak support, they are weak
symbols.

The patch is not a complete solution.  There are still import assembler
statements being generated for these functions.  I have being trying to
figure out how DECL_EXTERNAL gets set but so far I can't find where it
is set.  I tried setting breaks on every place that cc1plus sets it
directly but this didn't work.  I am now running a test using `watch'
but this is incredibly slow.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

2001-04-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>

	* optimize.c (maybe_clone_body): Copy TREE_PUBLIC to clone.

--- optimize.c.orig	Wed Apr 11 15:05:20 2001
+++ optimize.c	Fri Apr 20 16:14:38 2001
@@ -1028,6 +1028,7 @@
       int parmno;
 
       /* Update CLONE's source position information to match FN's.  */
+      TREE_PUBLIC (clone) = TREE_PUBLIC (fn);
       DECL_SOURCE_FILE (clone) = DECL_SOURCE_FILE (fn);
       DECL_SOURCE_LINE (clone) = DECL_SOURCE_LINE (fn);
       DECL_INLINE (clone) = DECL_INLINE (fn);

^ permalink raw reply	[flat|nested] 40+ messages in thread
[parent not found: <20010421123809V.mitchell@codesourcery.com>]
[parent not found: <no.id>]
* Re: C++ Issue on GCC 3.0 branch
@ 2001-04-28 10:43 John David Anglin
  0 siblings, 0 replies; 40+ messages in thread
From: John David Anglin @ 2001-04-28 10:43 UTC (permalink / raw)
  To: mark, gcc

Forwarded message:
From dave Sat Apr 28 13:36:47 EDT 2001
Subject: Re: C++ Issue on GCC 3.0 branch
To: law@redhat.com
Date: Sat, 28 Apr 2001 13:36:47 -0400 (EDT)
From: "John David Anglin" <dave@hiauly1>
In-Reply-To: < 6087.988477036@slagheap.cygnus.com > from "law@redhat.com" at Apr 28, 2001 09:57:16 am
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Length: 3844      

>   In message < 200104272214.SAA06753@hiauly1.hia.nrc.ca >you write:
>   > I think we need to define builtin_setjmp_receiver to restore r19.  The
>   > default exception method I believe is exceptions via longjmp, so we need
>   > this.  However, I have no idea whether or not this will fix the problem
>   > with rethrow1.C.
> Yes, we probably need to restore %r19, but I'm 99.9 certain that's not the
> problem with the rethrow test since they fail with static libraries.
> 
> 
>   > I also noticed a while back that exception_receiver uses a stack offset
>   > of -32 to restore the pic offset table register.  This won't work on
>   > the 64-bit target.  I think we should restore from the
>   > PIC_OFFSET_TABLE_SAVE_RTX.  However, we need to wait for it to be
>   > initialized.

My test run with this revision is nearly complete.  The good news is
that the gcc results with and without "-fPIC" are now identical (39
FAILS under hppa1.1-hp-hpux10.20).

The bad news is that there have been a few g++ regressions (total of
19 FAILS in g++ testsuite with -fPIC).  I started looking at one of
them (cxa_vec.C) this morning.  I am afraid that there are still problems
with respect to r19.  In this particular case, I can see that the save
of r19 after various longjmp calls is being deleted in the jump pass.
The program has a segmentation call in the stub to call __start_cp_handler.
This is the calling code:

0x7ae94b20 <__cxa_vec_ctor+504>:        bl 0x7ae9489c <__sjthrow>,rp
0x7ae94b24 <__cxa_vec_ctor+508>:        stws r21,4(sr0,r20)
0x7ae94b28 <__cxa_vec_ctor+512>:        bl 0x7ae948d4 <__start_cp_handler>,rp
0x7ae94b2c <__cxa_vec_ctor+516>:        nop
0x7ae94b30 <__cxa_vec_ctor+520>:        ldw -f8(sr0,sp),r19

As you can see, r19 isn't being restored after the call to __sjthrow.
The program dies here:

(gdb) run
Program received signal SIGSEGV, Segmentation fault0x7ae948d8 in __start_cp_handler ()
    at ../../../../libstdc++-v3/libsupc++/vec.cc:130
(gdb) disass
0x7ae948d4 <__start_cp_handler>:        addil 9000,r19
0x7ae948d8 <__start_cp_handler+4>:      ldw -62c(sr0,r1),r21
(gdb) bt
#0  0x7ae948d8 in __start_cp_handler ()
    at ../../../../libstdc++-v3/libsupc++/vec.cc:130
#1  0x7ae94b30 in __cxa_vec_ctor (array_address=0x40004874, element_count=5,
    element_size=1, constructor=0x4000148a <DINFINITY+242>,
    destructor=0x40001482 <DINFINITY+234>)
    at ../../../../libstdc++-v3/libsupc++/vec.cc:149
nfo reg r1 r19
r1 4000a000
r19 40001000

Another slightly strange thing is that the longjmp calls are actual calls
to the library longjmp function.  On the otherhand, we are using the
builtin version for sjlj exceptions.  I wonder if it is a good idea to
be mixing the two.

I have looked at the placement of the pic offset table register save
in functions both with and without parameters.  This seems ok.  The above
problem seems to be a somewhat different problem although it still
involves the management of r19.  Should I install the current patch
or wait until there is a solution to the above issue?

2001-04-27  John David Anglin  <dave@hiauly1.hia.nrc.ca>

        * pa.c (hppa_init_pic_save): Update last_parm_insn after emitting
        pic save insn.

--- pa.c.orig	Tue Apr 17 14:36:50 2001
+++ pa.c	Fri Apr 27 14:11:02 2001
@@ -3359,7 +3359,8 @@
 
   /* Emit the insn at the beginning of the function after the prologue.  */
   push_topmost_sequence ();
-  emit_insn_after (insn, last_parm_insn ? last_parm_insn : get_insns ());
+  last_parm_insn =
+    emit_insn_after (insn, last_parm_insn ? last_parm_insn : get_insns ());
   pop_topmost_sequence ();
 }
 
It definitely is a major step forward even if it isn't the complete
solution.  

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)


-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

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

end of thread, other threads:[~2001-05-06  9:59 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-04-20  9:47 C++ Issue on GCC 3.0 branch Jeffrey A Law
2001-04-20 21:29 John David Anglin
2001-04-20 21:31 ` David Edelsohn
2001-04-21 10:11 ` Mark Mitchell
2001-04-22 14:54   ` John David Anglin
2001-04-22 16:22     ` Mark Mitchell
2001-04-22 17:18       ` John David Anglin
2001-04-23  8:03         ` law
2001-04-23  8:29           ` John David Anglin
2001-05-06  9:33             ` law
2001-05-06  9:59               ` John David Anglin
2001-04-23  7:59     ` law
2001-04-23  8:08       ` John David Anglin
2001-04-23  8:19         ` law
2001-04-23  8:45           ` John David Anglin
2001-04-23 10:39           ` John David Anglin
     [not found] <20010421123809V.mitchell@codesourcery.com>
2001-04-21 16:05 ` John David Anglin
     [not found] <no.id>
2001-04-21 19:33 ` John David Anglin
2001-04-23  2:18   ` Bernd Schmidt
2001-04-23  7:51     ` law
2001-04-23  7:55       ` Bernd Schmidt
2001-04-23  7:56       ` Bernd Schmidt
2001-04-23  8:14         ` law
2001-04-25 10:26   ` Mark Mitchell
2001-04-25 14:04     ` John David Anglin
2001-04-25 17:31       ` Mark Mitchell
2001-04-26  8:31         ` John David Anglin
2001-04-26 10:25           ` Mark Mitchell
2001-04-26 10:02         ` law
2001-04-23 15:21 ` John David Anglin
2001-04-24 19:21   ` law
2001-04-24 20:23     ` John David Anglin
2001-04-26 16:45       ` law
2001-04-26 17:02         ` Mark Mitchell
2001-04-26 17:29           ` law
2001-04-27 10:43         ` John David Anglin
2001-04-27 15:14         ` John David Anglin
2001-04-28  9:55           ` law
2001-04-30  8:59         ` John David Anglin
2001-04-28 10:43 John David Anglin

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