11083 – [3.3 regression] ICE in commit_one_edge_insertion, at cfgrtl.c:1438 with -O2 -fnon-call-exceptions (original) (raw)
Bug 11083 - [3.3 regression] ICE in commit_one_edge_insertion, at cfgrtl.c:1438 with -O2 -fnon-call-exceptions
Summary: [3.3 regression] ICE in commit_one_edge_insertion, at cfgrtl.c:1438 with -O2 ...
| With -O2 -fnon-call-exceptions, the following code causes an ICE in g++ 3.3: #include class B { public: B (const std::vector &a); std::vector _a; }; B::B(const std::vector &a) { _a = a; } adding -fno-gcse causes the ICE to disappear. This code snippet works in gcc-3.2.3 gcc-3.0.4 and gcc-3.4 (cvs head) preprocessed source from gcc-3.3 will be attached to the PR -nick > /dept/rnd/vendor/gcc-3.3/bin/g++ -v -O2 -fnon-call-exceptions ~/gcse-non-call.C Reading specs from /dept/rnd/vendor/gcc-3.3/lib/gcc-lib/i686-pc-linux-gnu/3.3/specs Configured with: ../gcc-3.3/configure --prefix=/dept/rnd/vendor/gcc-3.3 --enable-threads --enable-languages=c,c++ Thread model: posix gcc version 3.3 /dept/rnd/vendor/gcc-3.3/lib/gcc-lib/i686-pc-linux-gnu/3.3/cc1plus -quiet -v -D__GNUC__=3 -D__GNUC_MINOR__=3 -D__GNUC_PATCHLEVEL__=0 -D_GNU_SOURCE /home/nick/gcse-non-call.C -D__GNUG__=3 -quiet -dumpbase gcse-non-call.C -auxbase gcse-non-call -O2 -version -fnon-call-exceptions -o /usr/tmp/ccaMSo6V.s GNU C++ version 3.3 (i686-pc-linux-gnu) compiled by GNU C version 2.96 20000731 (Red Hat Linux 7.1 2.96-98). GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 ignoring nonexistent directory "/dept/rnd/vendor/gcc-3.3/i686-pc-linux-gnu/include" #include "..." search starts here: #include <...> search starts here: /dept/rnd/vendor/gcc-3.3/include/c++/3.3 /dept/rnd/vendor/gcc-3.3/include/c++/3.3/i686-pc-linux-gnu /dept/rnd/vendor/gcc-3.3/include/c++/3.3/backward /usr/local/include /dept/rnd/vendor/gcc-3.3/include /dept/rnd/vendor/gcc-3.3/lib/gcc-lib/i686-pc-linux-gnu/3.3/include /usr/include End of search list. /dept/rnd/vendor/gcc-3.3/include/c++/3.3/bits/vector.tcc: In member function ` std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(const std::vector<_Tp, _Alloc>&) [with _Tp = int, _Alloc = std::allocator]': /home/nick/gcse-non-call.C:3: instantiated from here /dept/rnd/vendor/gcc-3.3/include/c++/3.3/bits/vector.tcc:152: internal compiler error: in commit_one_edge_insertion, at cfgrtl.c:1438 Comment 1 nick 2003-06-04 01:11:14 UTC Created attachment 4157 [details] preprocessed source which triggers the ice with gcc 3.3 (bzip2) run with: g++ -O2 -fnon-call-exceptions -c gcse-non-call.ii Comment 2 Wolfgang Bangerth 2003-06-04 02:32:28 UTC What a nasty bug -- only 11000 lines in the preprocessed sources and still so hard to track down... Here's a cut-down: ------------------------------------------- extern void *memmove (void *, const void *, unsigned int) throw (); struct S { int * q; S(int * i) : q(i) { } }; struct X { int *p; void foo(S first, S last) { try { memmove(0, 0, last.q - first.q); } catch(...) { throw; } } void bar (const X& x); }; void X::bar (const X& x) { const unsigned int xlen = S(x.p).q-S(x.p).q; if (xlen > 0) foo(S(x.p).q, S(x.p).q); } ------------------------------ g/x> /home/bangerth/bin/gcc-3.3-pre/bin/c++ -c y.cc -O2 -fnon-call-exceptions y.cc: In member function `void X::bar(const X&)': y.cc:23: internal compiler error: in commit_one_edge_insertion, at cfgrtl.c: 1438 Please submit a full bug report, with preprocessed source if appropriate. This works with 3.2.3 and mainline, but ICEs as above with 3.3. W. Comment 3 janis187 2003-06-23 23:02:16 UTC The regression in 11083 was introduced or exposed with this patch: 2002-06-13 Jeffrey Law <law@redhat.com> * gcse.c (delete_null_pointer_checks_1): Inform caller if any null pointer checks were eliminated. Update prototype. (delete_null_pointer_checks): Similarly. * rtl.h (delete_null_pointer_checks): Update prototype. * toplev.c (rest_of_compilation): Only run cleanup_cfg if delete_null_pointer_checks deletes one or more null pointer checks. Do not run cleanup_cfg before gcse, the CFG is accurate and optimized at that point. The regression hunt used the minimized test case from comment #2 on i686-pc-linux-gnu, compiled with -O2 -fnon-call-exceptions. Comment 4 Eric Botcazou 2003-07-08 12:03:38 UTC Not a specialist of the subject, but trying to fix anyway. | | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |