Home
last modified time | relevance | path

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

/dragonfly/contrib/gcc-4.7/gcc/
H A Dipa-pure-const.c114 static VEC (funct_state, heap) *funct_state_vec;
201 free (funct_state_vec); in finish_state()
210 if (!funct_state_vec in has_function_state()
213 return VEC_index (funct_state, funct_state_vec, node->uid) != NULL; in has_function_state()
221 if (!funct_state_vec in get_function_state()
222 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid in get_function_state()
223 || !VEC_index (funct_state, funct_state_vec, node->uid)) in get_function_state()
226 return VEC_index (funct_state, funct_state_vec, node->uid); in get_function_state()
234 if (!funct_state_vec in set_function_state()
237 VEC_replace (funct_state, funct_state_vec, node->uid, s); in set_function_state()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dipa-pure-const.c126 static vec<funct_state> funct_state_vec; variable
294 if (!funct_state_vec.exists () in has_function_state()
297 return funct_state_vec[node->uid] != NULL; in has_function_state()
305 if (!funct_state_vec.exists () in get_function_state()
307 || !funct_state_vec[node->uid]) in get_function_state()
310 return funct_state_vec[node->uid]; in get_function_state()
318 if (!funct_state_vec.exists () in set_function_state()
324 if (funct_state_vec[node->uid] != NULL in set_function_state()
326 free (funct_state_vec[node->uid]); in set_function_state()
328 funct_state_vec[node->uid] = s; in set_function_state()
[all …]