Home
last modified time | relevance | path

Searched refs:m_frame_rids (Results 1 – 2 of 2) sorted by relevance

/netbsd/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Dregion-model.cc2666 m_frame_rids (other.m_frame_rids.length ()) in stack_region()
2671 m_frame_rids.quick_push (*frame_rid); in stack_region()
2681 if (m_frame_rids.length () != other.m_frame_rids.length ()) in compare_fields()
2687 if (m_frame_rids[i] != other.m_frame_rids[i]) in compare_fields()
2733 m_frame_rids[i].validate (model); in validate()
2741 m_frame_rids.safe_push (frame_rid); in push_frame()
2749 if (m_frame_rids.length () > 0) in get_current_frame_id()
2750 return m_frame_rids[m_frame_rids.length () - 1]; in get_current_frame_id()
2774 gcc_assert (m_frame_rids.length () > 0); in pop_frame()
2811 m_frame_rids.pop (); in pop_frame()
[all …]
H A Dregion-model.h1478 unsigned get_num_frames () const { return m_frame_rids.length (); } in get_num_frames()
1479 region_id get_frame_rid (unsigned i) const { return m_frame_rids[i]; } in get_frame_rid()
1499 auto_vec<region_id> m_frame_rids; variable