Searched refs:complex_lattice_values (Results 1 – 2 of 2) sorted by relevance
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree-complex.c | 55 static VEC(complex_lattice_t, heap) *complex_lattice_values; 146 return VEC_index (complex_lattice_t, complex_lattice_values, in find_lattice_value() 181 VEC_replace (complex_lattice_t, complex_lattice_values, in init_parameter_lattice_values() 315 old_l = VEC_index (complex_lattice_t, complex_lattice_values, ver); in complex_visit_stmt() 384 VEC_replace (complex_lattice_t, complex_lattice_values, ver, new_l); in complex_visit_stmt() 410 old_l = VEC_index (complex_lattice_t, complex_lattice_values, ver); in complex_visit_phi() 415 VEC_replace (complex_lattice_t, complex_lattice_values, ver, new_l); in complex_visit_phi() 1611 complex_lattice_values = VEC_alloc (complex_lattice_t, heap, num_ssa_names); in tree_lower_complex() 1613 complex_lattice_values, num_ssa_names); in tree_lower_complex() 1643 VEC_free (complex_lattice_t, heap, complex_lattice_values); in tree_lower_complex()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | tree-complex.c | 69 static vec<complex_lattice_t> complex_lattice_values; variable 165 return complex_lattice_values[SSA_NAME_VERSION (t)]; in find_lattice_value() 198 complex_lattice_values[SSA_NAME_VERSION (ssa_name)] = VARYING; in init_parameter_lattice_values() 331 old_l = complex_lattice_values[ver]; in visit_stmt() 400 complex_lattice_values[ver] = new_l; in visit_stmt() 426 old_l = complex_lattice_values[ver]; in visit_phi() 431 complex_lattice_values[ver] = new_l; in visit_phi() 1680 complex_lattice_values.create (num_ssa_names); in tree_lower_complex() 1681 complex_lattice_values.safe_grow_cleared (num_ssa_names); in tree_lower_complex() 1741 complex_lattice_values.release (); in tree_lower_complex()
|