public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build
       [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
@ 2014-02-19  9:09 ` rguenth at gcc dot gnu.org
  2014-02-19 14:08 ` trippels at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-02-19  9:09 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.9.0

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Similar to recently fixed maybe this is either the call fn or the static chain?


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

* [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build
       [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
  2014-02-19  9:09 ` [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build rguenth at gcc dot gnu.org
@ 2014-02-19 14:08 ` trippels at gcc dot gnu.org
  2014-02-21 14:55 ` jamborm at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-02-19 14:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
It's caused by mixing -O0 and -O2 with LTO:

markus@x4 ~S % cat TableCopyHelper.ii
namespace com {
namespace sun {
namespace star {}
}
}
namespace css = com::sun::star;
namespace com {
namespace sun {
namespace star {
class A {};
template <class interface_type> class C : A {
public:
  interface_type *operator->();
};
}
}
typedef struct {
} uno_Any;
namespace sun {
namespace star {
class D : uno_Any {};
class B {
  virtual css::D m_fn1();
  virtual void m_fn2();
  virtual void m_fn3();
};
class F : css::B {
  virtual int m_fn4();
};
namespace sdb {
namespace application {
class XCopyTableWizard : css::F {
public:
  virtual void m_fn5();
  virtual void m_fn6();
};
}
}
}
}
using namespace com::sun::star;
using namespace com::sun::star::sdb::application;
void fn1(C<int> &&) try {
  C<XCopyTableWizard> a;
  a->m_fn6();
}
catch (int &) {
}
}


markus@x4 ~S % cat copytablewizard.ii
namespace com {
namespace sun {
namespace star {
class A {};
namespace sdb {
namespace application {
class XCopyTableWizard {
  virtual int m_fn1();
};
}
}
}
}
}
class OPropertyArrayUsageHelper {
public:
  virtual ~OPropertyArrayUsageHelper();
};
using com::sun::star::A;
using com::sun::star::sdb::application::XCopyTableWizard;
class CopyTableWizard : XCopyTableWizard, OPropertyArrayUsageHelper {
  ~CopyTableWizard();
};
CopyTableWizard::~CopyTableWizard() try {}

catch (A &) {
}


markus@x4 ~S % g++ -flto -fPIC -O0 -c copytablewizard.ii
markus@x4 ~S % g++ -flto -fPIC -std=gnu++11 -O2 -c TableCopyHelper.ii
markus@x4 ~S % g++ -w -r -nostdlib -O2 TableCopyHelper.o copytablewizard.o
lto1: internal compiler error: in ipa_get_parm_lattices, at ipa-cp.c:261
0x50c7ac ipa_get_parm_lattices
        ../../gcc/gcc/ipa-cp.c:261
0xc41824 ipa_get_parm_lattices
        ../../gcc/gcc/ipa-cp.c:261
0xc41824 propagate_constants_accross_call
        ../../gcc/gcc/ipa-cp.c:1443
0xc44308 propagate_constants_topo
        ../../gcc/gcc/ipa-cp.c:2231
0xc44308 ipcp_propagate_stage
        ../../gcc/gcc/ipa-cp.c:2327
0xc44308 ipcp_driver
        ../../gcc/gcc/ipa-cp.c:3705
0xc44308 execute
        ../../gcc/gcc/ipa-cp.c:3804
Please submit a full bug report,
with preprocessed source if appropriate.

(I think the ODR violation got introduced during reduction.)


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

* [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build
       [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
  2014-02-19  9:09 ` [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build rguenth at gcc dot gnu.org
  2014-02-19 14:08 ` trippels at gcc dot gnu.org
@ 2014-02-21 14:55 ` jamborm at gcc dot gnu.org
  2014-02-24 12:40 ` jamborm at gcc dot gnu.org
  2014-02-24 12:46 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-02-21 14:55 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Martin Jambor <jamborm at gcc dot gnu.org> ---
(In reply to Markus Trippelsdorf from comment #2)
> It's caused by mixing -O0 and -O2 with LTO:
> 

Indeed.  Patch fixing this ICE is pending approval at:

http://gcc.gnu.org/ml/gcc-patches/2014-02/msg01325.html


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

* [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build
       [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2014-02-21 14:55 ` jamborm at gcc dot gnu.org
@ 2014-02-24 12:40 ` jamborm at gcc dot gnu.org
  2014-02-24 12:46 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-02-24 12:40 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Author: jamborm
Date: Mon Feb 24 12:39:52 2014
New Revision: 208067

URL: http://gcc.gnu.org/viewcvs?rev=208067&root=gcc&view=rev
Log:
2014-02-24  Martin Jambor  <mjambor@suse.cz>

    PR ipa/60266
    * ipa-cp.c (propagate_constants_accross_call): Bail out early if
    there are no parameter descriptors.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-cp.c


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

* [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build
       [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2014-02-24 12:40 ` jamborm at gcc dot gnu.org
@ 2014-02-24 12:46 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-02-24 12:46 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Jambor <jamborm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Fixed.


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

end of thread, other threads:[~2014-02-24 12:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-60266-4@http.gcc.gnu.org/bugzilla/>
2014-02-19  9:09 ` [Bug ipa/60266] [4.9 Regression] ICE: in ipa_get_parm_lattices, at ipa-cp.c:261 during LibreOffice LTO build rguenth at gcc dot gnu.org
2014-02-19 14:08 ` trippels at gcc dot gnu.org
2014-02-21 14:55 ` jamborm at gcc dot gnu.org
2014-02-24 12:40 ` jamborm at gcc dot gnu.org
2014-02-24 12:46 ` jamborm at gcc dot gnu.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).