Searched refs:m_constraints (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
H A D | constraint-manager.cc | 476 m_constraints (other.m_constraints.length ()) in constraint_manager() 483 FOR_EACH_VEC_ELT (other.m_constraints, i, c) in constraint_manager() 484 m_constraints.quick_push (*c); in constraint_manager() 493 gcc_assert (m_constraints.length () == 0); in operator =() 501 m_constraints.reserve (other.m_constraints.length ()); in operator =() 502 FOR_EACH_VEC_ELT (other.m_constraints, i, c) in operator =() 503 m_constraints.quick_push (*c); in operator =() 520 FOR_EACH_VEC_ELT (m_constraints, i, c) in hash() 532 if (m_constraints.length () != other.m_constraints.length ()) in operator ==() 544 FOR_EACH_VEC_ELT (m_constraints, i, c) in operator ==() [all …]
|
H A D | region-model.cc | 3467 m_constraints = new impl_constraint_manager (this); in region_model() 3489 m_constraints = other.m_constraints->clone (this); in region_model() 3496 delete m_constraints; in ~region_model() 3517 delete m_constraints; in operator =() 3530 m_constraints = other.m_constraints->clone (this); in operator =() 3553 if (*m_constraints != *other.m_constraints) in operator ==() 3588 result ^= m_constraints->hash (); in hash() 3622 m_constraints->print (pp); in print() 3722 FOR_EACH_VEC_ELT (m_constraints->m_equiv_classes, i, ec) in dump_to_pp() 3748 FOR_EACH_VEC_ELT (m_constraints->m_constraints, i, c) in dump_to_pp() [all …]
|
H A D | constraint-manager.h | 236 auto_vec<constraint> m_constraints; variable
|
H A D | region-model.h | 1846 return m_constraints; in get_constraints() 1933 constraint_manager *m_constraints; // TODO: embed, rather than dynalloc? variable
|
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
H A D | constraint-manager.cc | 1482 m_constraints (other.m_constraints.length ()), in constraint_manager() 1491 FOR_EACH_VEC_ELT (other.m_constraints, i, c) in constraint_manager() 1492 m_constraints.quick_push (*c); in constraint_manager() 1503 gcc_assert (m_constraints.length () == 0); in operator =() 1512 m_constraints.reserve (other.m_constraints.length ()); in operator =() 1513 FOR_EACH_VEC_ELT (other.m_constraints, i, c) in operator =() 1514 m_constraints.quick_push (*c); in operator =() 1533 FOR_EACH_VEC_ELT (m_constraints, i, c) in hash() 1547 if (m_constraints.length () != other.m_constraints.length ()) in operator ==() 1562 FOR_EACH_VEC_ELT (m_constraints, i, c) in operator ==() [all …]
|
H A D | region-model.cc | 255 m_constraints = new constraint_manager (mgr); in region_model() 262 m_constraints (new constraint_manager (*other.m_constraints)), in region_model() 272 delete m_constraints; in ~region_model() 285 delete m_constraints; in operator =() 286 m_constraints = new constraint_manager (*other.m_constraints); in operator =() 310 if (*m_constraints != *other.m_constraints) in operator ==() 330 result ^= m_constraints->hash (); in hash() 377 m_constraints->dump_to_pp (pp, multiline); in dump_to_pp() 434 m_constraints->canonicalize (); in canonicalize() 1657 m_constraints->purge_state_involving (sval); in purge_state_involving() [all …]
|
H A D | constraint-manager.h | 488 auto_vec<constraint> m_constraints;
|
H A D | region-model.h | 730 return m_constraints; in get_constraints() 866 constraint_manager *m_constraints; // TODO: embed, rather than dynalloc? variable
|