Home
last modified time | relevance | path

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

/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-ssa-sccvn.c168 static VEC (vn_ssa_aux_t, heap) *vn_ssa_aux_table; in VEC()
176 vn_ssa_aux_t res = VEC_index (vn_ssa_aux_t, vn_ssa_aux_table,
188 VEC_replace (vn_ssa_aux_t, vn_ssa_aux_table, in VN_INFO_SET()
202 if (SSA_NAME_VERSION (name) >= VEC_length (vn_ssa_aux_t, vn_ssa_aux_table)) in VN_INFO_GET()
203 VEC_safe_grow (vn_ssa_aux_t, heap, vn_ssa_aux_table, in VN_INFO_GET()
205 VEC_replace (vn_ssa_aux_t, vn_ssa_aux_table, in VN_INFO_GET()
3774 vn_ssa_aux_table = VEC_alloc (vn_ssa_aux_t, heap, num_ssa_names + 1); in init_scc_vn()
3777 VEC_safe_grow_cleared (vn_ssa_aux_t, heap, vn_ssa_aux_table, num_ssa_names + 1); in init_scc_vn()
3837 VEC_free (vn_ssa_aux_t, heap, vn_ssa_aux_table); in free_scc_vn()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-ssa-sccvn.c381 static vec<vn_ssa_aux_t> vn_ssa_aux_table; variable
389 if (SSA_NAME_VERSION (name) < vn_ssa_aux_table.length ()) in has_VN_INFO()
390 return vn_ssa_aux_table[SSA_NAME_VERSION (name)] != NULL; in has_VN_INFO()
399 vn_ssa_aux_t res = vn_ssa_aux_table[SSA_NAME_VERSION (name)]; in VN_INFO()
410 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = value; in VN_INFO_SET()
422 || vn_ssa_aux_table[SSA_NAME_VERSION (name)] == NULL); in VN_INFO_GET()
425 if (SSA_NAME_VERSION (name) >= vn_ssa_aux_table.length ()) in VN_INFO_GET()
427 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = newinfo; in VN_INFO_GET()
4585 vn_ssa_aux_table.create (num_ssa_names + 1); in init_scc_vn()
4588 vn_ssa_aux_table.safe_grow_cleared (num_ssa_names + 1); in init_scc_vn()
[all …]