This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix __cxa_exception ABI breakage in 4.4 (PR libstdc++/38732)


On Wed, Jan 07, 2009 at 06:53:58PM +0100, Paolo Carlini wrote:
> > Either we cast pointers to the end of all of these (the same) to
> > one of these structs, subtract one and then dereference fields in it,
> > or first add 1 to pointer to one of these structs (to get to the end)
> > and then cat/subtract.
> >   
> I see, if you could experiment a bit with that...

What I wrote is what we do.  So I don't know what should I experiment with.
I think we never access fields in __cxa_refcounted_exception,
__cxa_exception and _Unwind_Exception through 2 different pointers
in one function, but even if we would, this IMHO boils down to:

struct A { int i; struct B { short s; long l; } b; };

int foo (struct A *a, struct B *b)
{
  b->s = 3;
  a->b.s = 4;
  a->b.l = 7;
  b->l = 6;
  return b->s + a->b.l;
}
which is IMHO valid.

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]