Home
last modified time | relevance | path

Searched refs:cst_expr (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dregion-model-manager.cc217 region_model_manager::get_or_create_constant_svalue (tree cst_expr) in get_or_create_constant_svalue() argument
219 gcc_assert (cst_expr); in get_or_create_constant_svalue()
220 gcc_assert (CONSTANT_CLASS_P (cst_expr)); in get_or_create_constant_svalue()
222 constant_svalue **slot = m_constants_map.get (cst_expr); in get_or_create_constant_svalue()
225 constant_svalue *cst_sval = new constant_svalue (cst_expr); in get_or_create_constant_svalue()
227 m_constants_map.put (cst_expr, cst_sval); in get_or_create_constant_svalue()
H A Dsvalue.h274 constant_svalue (tree cst_expr)
275 : svalue (complexity (1, 1), TREE_TYPE (cst_expr)), m_cst_expr (cst_expr)
277 gcc_assert (cst_expr);
278 gcc_assert (CONSTANT_CLASS_P (cst_expr));
H A Dregion-model.h248 const svalue *get_or_create_constant_svalue (tree cst_expr);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Dregion-model.h598 constant_svalue (tree cst_expr) in constant_svalue() argument
599 : svalue (TREE_TYPE (cst_expr)), m_cst_expr (cst_expr) in constant_svalue()
601 gcc_assert (cst_expr); in constant_svalue()
602 gcc_assert (CONSTANT_CLASS_P (cst_expr)); in constant_svalue()
1782 svalue_id get_or_create_constant_svalue (tree cst_expr);
H A Dregion-model.cc4417 if (tree cst_expr = maybe_get_constant (buf_sid)) in on_call_pre() local
4419 if (TREE_CODE (cst_expr) == STRING_CST in on_call_pre()
4423 int sizeof_cst = TREE_STRING_LENGTH (cst_expr); in on_call_pre()
5153 region_model::get_or_create_constant_svalue (tree cst_expr) in get_or_create_constant_svalue() argument
5155 gcc_assert (cst_expr); in get_or_create_constant_svalue()
5162 if (svalue->maybe_get_constant () == cst_expr) in get_or_create_constant_svalue()
5165 svalue_id cst_sid = add_svalue (new constant_svalue (cst_expr)); in get_or_create_constant_svalue()