Home | History | Annotate | Download | only in analyzer

Lines Matching defs:cst2

62 static int cmp_csts_and_types (const_tree cst1, const_tree cst2);
309 cmp_csts_same_type (const_tree cst1, const_tree cst2)
311 gcc_assert (TREE_TYPE (cst1) == TREE_TYPE (cst2));
312 gcc_assert (TREE_CODE (cst1) == TREE_CODE (cst2));
318 return tree_int_cst_compare (cst1, cst2);
321 TREE_STRING_POINTER (cst2));
325 TREE_REAL_CST_PTR (cst2),
329 TREE_REALPART (cst2)))
331 return cmp_csts_and_types (TREE_IMAGPART (cst1), TREE_IMAGPART (cst2));
335 - (int)VECTOR_CST_LOG2_NPATTERNS (cst2)))
339 - (int)VECTOR_CST_NELTS_PER_PATTERN (cst2)))
345 const_tree elt2 = VECTOR_CST_ENCODED_ELT (cst2, i);
357 cmp_csts_and_types (const_tree cst1, const_tree cst2)
360 int t2 = TYPE_UID (TREE_TYPE (cst2));
363 return cmp_csts_same_type (cst1, cst2);
396 const_tree cst2 = constant_sval2->get_constant ();
397 return cmp_csts_same_type (cst1, cst2);