+2020-03-04 David Malcolm <dmalcolm@redhat.com>
+
+ * region-model.cc (region::validate): Convert model param from ptr
+ to reference. Update comment to reflect that it's now a vfunc.
+ (map_region::validate): New vfunc implementation.
+ (array_region::validate): New vfunc implementation.
+ (stack_region::validate): New vfunc implementation.
+ (root_region::validate): New vfunc implementation.
+ (region_model::validate): Pass a reference rather than a pointer
+ to the region::validate vfunc.
+ * region-model.h (region::validate): Make virtual. Convert model
+ param from ptr to reference.
+ (map_region::validate): New vfunc decl.
+ (array_region::validate): New vfunc decl.
+ (stack_region::validate): New vfunc decl.
+ (root_region::validate): New vfunc decl.
+
2020-03-04 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93993
}
}
-/* Assert that this object is valid. */
+/* Base implementation of region::validate vfunc.
+ Assert that the fields of "region" are valid; subclasses should
+ chain up their implementation to this one. */
void
-region::validate (const region_model *model) const
+region::validate (const region_model &model) const
{
- m_parent_rid.validate (*model);
- m_sval_id.validate (*model);
+ m_parent_rid.validate (model);
+ m_sval_id.validate (model);
unsigned i;
region_id *view_rid;
FOR_EACH_VEC_ELT (m_view_rids, i, view_rid)
{
gcc_assert (!view_rid->null_p ());
- view_rid->validate (*model);
+ view_rid->validate (model);
}
- m_active_view_rid.validate (*model);
+ m_active_view_rid.validate (model);
}
/* Apply MAP to svalue_ids to this region. This updates the value
pp_string (pp, "}");
}
+/* Implementation of region::validate vfunc for map_region. */
+
+void
+map_region::validate (const region_model &model) const
+{
+ region::validate (model);
+ for (map_t::iterator iter = m_map.begin ();
+ iter != m_map.end ();
+ ++iter)
+ {
+ region_id child_rid = (*iter).second;
+ child_rid.validate (model);
+ }
+}
+
/* Implementation of region::dump_dot_to_pp vfunc for map_region. */
void
pp_string (pp, "}");
}
+/* Implementation of region::validate vfunc for array_region. */
+
+void
+array_region::validate (const region_model &model) const
+{
+ region::validate (model);
+ for (map_t::iterator iter = m_map.begin ();
+ iter != m_map.end ();
+ ++iter)
+ {
+ region_id child_rid = (*iter).second;
+ child_rid.validate (model);
+ }
+}
+
/* Implementation of region::dump_dot_to_pp vfunc for array_region. */
void
pp_printf (pp, "frame for %qs: ", function_name (fun));
}
+/* Implementation of region::validate vfunc for stack_region. */
+
+void
+stack_region::validate (const region_model &model) const
+{
+ region::validate (model);
+ int i;
+ region_id *frame_rid;
+ FOR_EACH_VEC_ELT (m_frame_rids, i, frame_rid)
+ m_frame_rids[i].validate (model);
+}
+
/* Push FRAME_RID (for a frame_region) onto this stack. */
void
// TODO
}
+/* Implementation of region::validate vfunc for root_region. */
+
+void
+root_region::validate (const region_model &model) const
+{
+ region::validate (model);
+ m_stack_rid.validate (model);
+ m_globals_rid.validate (model);
+ m_code_rid.validate (model);
+ m_heap_rid.validate (model);
+}
+
/* Implementation of region::dump_child_label vfunc for root_region. */
void
unsigned i;
region *r;
FOR_EACH_VEC_ELT (m_regions, i, r)
- r->validate (this);
+ r->validate (*this);
// TODO: anything else?
region_id get_view (tree type, region_model *model) const;
bool is_view_p () const { return m_is_view; }
- void validate (const region_model *model) const;
+ virtual void validate (const region_model &model) const;
bool non_null_p (const region_model &model) const;
region_id this_rid,
pretty_printer *pp) const
OVERRIDE;
+ void validate (const region_model &model) const FINAL OVERRIDE;
private:
/* Mapping from tree to child region. */
region_id this_rid,
pretty_printer *pp) const
OVERRIDE;
+ void validate (const region_model &model) const FINAL OVERRIDE;
static key_t key_from_constant (tree cst);
svalue_id get_value_by_name (tree identifier,
const region_model &model) const;
+ void validate (const region_model &model) const FINAL OVERRIDE;
+
private:
void add_to_hash (inchash::hash &hstate) const FINAL OVERRIDE;
void print_fields (const region_model &model,
svalue_id get_value_by_name (tree identifier,
const region_model &model) const;
+ void validate (const region_model &model) const FINAL OVERRIDE;
+
private:
void add_to_hash (inchash::hash &hstate) const FINAL OVERRIDE;
void print_fields (const region_model &model,