public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105
@ 2022-12-07  3:20 asolokha at gmx dot com
  2022-12-07  7:11 ` [Bug analyzer/108003] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: asolokha at gmx dot com @ 2022-12-07  3:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108003

            Bug ID: 108003
           Summary: [13 Regression] ICE in bitmap_check_index, at
                    sbitmap.h:105
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: analyzer
          Assignee: dmalcolm at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---

gcc 13.0.0 20221204 snapshot (g:24b9337d1f1b5197b6498dceb9074319be003449) ICEs
when compiling the following testcase, reduced from
libstdc++-v3/testsuite/27_io/basic_filebuf/seekoff/wchar_t/9875_seekoff.cc, w/
-O1 -fanalyzer --param analyzer-max-svalue-depth=5:

struct locale {
  class _Impl;
  _Impl *_M_impl;

  template <typename _Facet>
  locale (const locale &, _Facet *);

  static locale
  classic ();
};

struct locale::_Impl {
  _Impl (_Impl, int);
};

template <typename _Facet>
locale::locale (const locale &, _Facet *)
{
  new _Impl (*_M_impl, 1);
}

struct codecvt {
  virtual void do_max_lengththrow ();
};

void
test01 ()
{
  locale (locale::classic (), new codecvt);
}

% g++-13 -O1 -fanalyzer --param analyzer-max-svalue-depth=5 -c nsbergsz.cc
during IPA pass: analyzer
nsbergsz.cc: In constructor 'locale::locale(const locale&, _Facet*) [with
_Facet = codecvt]':
nsbergsz.cc:19:3: internal compiler error: in bitmap_check_index, at
sbitmap.h:105
   19 |   new _Impl (*_M_impl, 1);
      |   ^~~~~~~~~~~~~~~~~~~~~~~
0x8a6707 bitmap_check_index
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/sbitmap.h:105
0x8a6707 bitmap_set_bit
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/sbitmap.h:133
0x8a6707 ana::region_model::get_referenced_base_regions(auto_sbitmap&) const
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/region-model.cc:4908
0x15b0692 ana::region_model::get_or_create_region_for_heap_alloc(ana::svalue
const*, ana::region_model_context*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/region-model.cc:4879
0x15c1a49 ana::kf_operator_new::impl_call_pre(ana::call_details const&) const
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/region-model-impl-calls.cc:996
0x15ac579 ana::region_model::on_call_pre(gcall const*,
ana::region_model_context*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/region-model.cc:1477
0x157b634 ana::feasibility_state::maybe_update_for_edge(ana::logger*,
ana::exploded_edge const*, ana::rejected_constraint**)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/engine.cc:4832
0x21e7ef1 ana::epath_finder::process_worklist_item(ana::feasible_worklist*,
ana::trimmed_graph const&, ana::feasible_graph*, ana::exploded_node const*,
unsigned int, std::unique_ptr<ana::exploded_path,
std::default_delete<ana::exploded_path> >*) const
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:498
0x21e8848 ana::epath_finder::explore_feasible_paths(ana::exploded_node const*,
char const*, unsigned int)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:418
0x21e8f31 ana::epath_finder::get_best_epath(ana::exploded_node const*, char
const*, unsigned int, std::unique_ptr<ana::feasibility_problem,
std::default_delete<ana::feasibility_problem> >*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:164
0x21e905c ana::saved_diagnostic::calc_best_epath(ana::epath_finder*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:811
0x21ed7cf ana::dedupe_winners::add(ana::logger*, ana::epath_finder*,
ana::saved_diagnostic*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:1178
0x21ea5a3 ana::diagnostic_manager::emit_saved_diagnostics(ana::exploded_graph
const&)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/diagnostic-manager.cc:1328
0x15878ec ana::impl_run_checkers(ana::logger*)
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/engine.cc:6112
0x15888c6 ana::run_checkers()
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/engine.cc:6186
0x15771e8 execute
       
/var/tmp/portage/sys-devel/gcc-13.0.0_p20221204/work/gcc-13-20221204/gcc/analyzer/analyzer-pass.cc:87

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

* [Bug analyzer/108003] [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105
  2022-12-07  3:20 [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105 asolokha at gmx dot com
@ 2022-12-07  7:11 ` rguenth at gcc dot gnu.org
  2022-12-08 19:50 ` dmalcolm at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-12-07  7:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108003

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |13.0

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

* [Bug analyzer/108003] [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105
  2022-12-07  3:20 [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105 asolokha at gmx dot com
  2022-12-07  7:11 ` [Bug analyzer/108003] " rguenth at gcc dot gnu.org
@ 2022-12-08 19:50 ` dmalcolm at gcc dot gnu.org
  2022-12-09  2:20 ` cvs-commit at gcc dot gnu.org
  2022-12-09  2:32 ` dmalcolm at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2022-12-08 19:50 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108003

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2022-12-08
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1

--- Comment #1 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Thanks for filing this.  Confirmed; am testing a fix.

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

* [Bug analyzer/108003] [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105
  2022-12-07  3:20 [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105 asolokha at gmx dot com
  2022-12-07  7:11 ` [Bug analyzer/108003] " rguenth at gcc dot gnu.org
  2022-12-08 19:50 ` dmalcolm at gcc dot gnu.org
@ 2022-12-09  2:20 ` cvs-commit at gcc dot gnu.org
  2022-12-09  2:32 ` dmalcolm at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-12-09  2:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108003

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by David Malcolm <dmalcolm@gcc.gnu.org>:

https://gcc.gnu.org/g:7dc0ecafe60b224b3343667f55eaaa501f390925

commit r13-4578-g7dc0ecafe60b224b3343667f55eaaa501f390925
Author: David Malcolm <dmalcolm@redhat.com>
Date:   Thu Dec 8 21:19:23 2022 -0500

    analyzer: fix ICE on region creation during get_referenced_base_regions
[PR108003]

    gcc/analyzer/ChangeLog:
            PR analyzer/108003
            * call-summary.cc
            (call_summary_replay::convert_region_from_summary_1): Convert
            heap_regs_in_use from auto_sbitmap to auto_bitmap.
            * region-model-manager.cc
            (region_model_manager::get_or_create_region_for_heap_alloc):
            Convert from sbitmap to bitmap.
            * region-model-manager.h: Likewise.
            * region-model.cc
            (region_model::get_or_create_region_for_heap_alloc): Convert from
            auto_sbitmap to auto_bitmap.
            (region_model::get_referenced_base_regions): Likewise.
            * region-model.h: Include "bitmap.h" rather than "sbitmap.h".
            (region_model::get_referenced_base_regions): Convert from
            auto_sbitmap to auto_bitmap.

    gcc/testsuite/ChangeLog:
            PR analyzer/108003
            * g++.dg/analyzer/pr108003.C: New test.

    Signed-off-by: David Malcolm <dmalcolm@redhat.com>

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

* [Bug analyzer/108003] [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105
  2022-12-07  3:20 [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105 asolokha at gmx dot com
                   ` (2 preceding siblings ...)
  2022-12-09  2:20 ` cvs-commit at gcc dot gnu.org
@ 2022-12-09  2:32 ` dmalcolm at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dmalcolm at gcc dot gnu.org @ 2022-12-09  2:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108003

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

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

--- Comment #3 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Should be fixed by the above patch.

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

end of thread, other threads:[~2022-12-09  2:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-07  3:20 [Bug analyzer/108003] New: [13 Regression] ICE in bitmap_check_index, at sbitmap.h:105 asolokha at gmx dot com
2022-12-07  7:11 ` [Bug analyzer/108003] " rguenth at gcc dot gnu.org
2022-12-08 19:50 ` dmalcolm at gcc dot gnu.org
2022-12-09  2:20 ` cvs-commit at gcc dot gnu.org
2022-12-09  2:32 ` dmalcolm 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).