Home
last modified time | relevance | path

Searched refs:m_temp_obstack (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/rtl-ssa/
H A Dfunctions.cc41 obstack_specify_allocation (&m_temp_obstack, OBSTACK_CHUNK_SIZE, in function_info()
47 m_temp_obstack_start = XOBNEWVAR (&m_temp_obstack, char, 0); in function_info()
58 gcc_assert (XOBNEWVAR (&m_temp_obstack, char, 0) == m_temp_obstack_start); in ~function_info()
60 obstack_free (&m_temp_obstack, nullptr); in ~function_info()
236 auto *assumed_values = XOBNEWVEC (&m_temp_obstack, set_info *, in simplify_phis()
240 auto *phis = XOBNEWVEC (&m_temp_obstack, phi_info *, m_next_phi_uid); in simplify_phis()
H A Dfunctions.h117 obstack_watermark new_change_attempt () { return &m_temp_obstack; } in new_change_attempt()
188 obstack_watermark temp_watermark () { return &m_temp_obstack; } in temp_watermark()
314 obstack m_temp_obstack; variable
H A Dchanges.cc90 gcc_assert (obstack_object_size (&m_temp_obstack) == 0); in temp_access_array()
91 obstack_grow (&m_temp_obstack, accesses.begin (), accesses.size_bytes ()); in temp_access_array()
92 return { static_cast<access_info **> (obstack_finish (&m_temp_obstack)), in temp_access_array()
447 auto *unshared_uses_base = XOBNEWVEC (&m_temp_obstack, access_info *, in finalize_new_accesses()
H A Dblocks.cc696 phis.inputs = XOBNEWVEC (&m_temp_obstack, set_info *, num_inputs); in place_phis()
H A Dinternals.inl640 void *addr = obstack_alloc (&m_temp_obstack, sizeof (T));
H A Daccesses.cc1292 gcc_checking_assert (watermark == &m_temp_obstack); in insert_temp_clobber()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-202132451 m_temp_obstack rather than m_obstack to allocate the temporary use.