Lines Matching refs:hashcode

4220       hashval_t hashcode = 0;  in build_type_attribute_qual_variant()  local
4246 hashcode = iterative_hash_object (code, hashcode); in build_type_attribute_qual_variant()
4248 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)), in build_type_attribute_qual_variant()
4249 hashcode); in build_type_attribute_qual_variant()
4250 hashcode = attribute_hash_list (attribute, hashcode); in build_type_attribute_qual_variant()
4255 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode); in build_type_attribute_qual_variant()
4259 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)), in build_type_attribute_qual_variant()
4260 hashcode); in build_type_attribute_qual_variant()
4263 hashcode = iterative_hash_object in build_type_attribute_qual_variant()
4264 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode); in build_type_attribute_qual_variant()
4265 hashcode = iterative_hash_object in build_type_attribute_qual_variant()
4266 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode); in build_type_attribute_qual_variant()
4272 hashcode = iterative_hash_object (precision, hashcode); in build_type_attribute_qual_variant()
4279 ntype = type_hash_canon (hashcode, ntype); in build_type_attribute_qual_variant()
6091 type_hash_list (const_tree list, hashval_t hashcode) in type_hash_list() argument
6097 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)), in type_hash_list()
6098 hashcode); in type_hash_list()
6100 return hashcode; in type_hash_list()
6229 type_hash_lookup (hashval_t hashcode, tree type) in type_hash_lookup() argument
6237 in.hash = hashcode; in type_hash_lookup()
6241 hashcode); in type_hash_lookup()
6251 type_hash_add (hashval_t hashcode, tree type) in type_hash_add() argument
6257 h->hash = hashcode; in type_hash_add()
6259 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT); in type_hash_add()
6273 type_hash_canon (unsigned int hashcode, tree type) in type_hash_canon() argument
6283 t1 = type_hash_lookup (hashcode, type); in type_hash_canon()
6295 type_hash_add (hashcode, type); in type_hash_canon()
6326 attribute_hash_list (const_tree list, hashval_t hashcode) in attribute_hash_list() argument
6332 hashcode = iterative_hash_object in attribute_hash_list()
6333 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode); in attribute_hash_list()
6334 return hashcode; in attribute_hash_list()
7265 hashval_t hashcode = 0; in build_range_type_1() local
7293 hashcode = iterative_hash_expr (TYPE_MIN_VALUE (itype), hashcode); in build_range_type_1()
7294 hashcode = iterative_hash_expr (TYPE_MAX_VALUE (itype), hashcode); in build_range_type_1()
7295 hashcode = iterative_hash_hashval_t (TYPE_HASH (type), hashcode); in build_range_type_1()
7296 itype = type_hash_canon (hashcode, itype); in build_range_type_1()
7412 hashval_t hashcode = iterative_hash_object (TYPE_HASH (elt_type), 0); in build_array_type_1() local
7414 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode); in build_array_type_1()
7415 t = type_hash_canon (hashcode, t); in build_array_type_1()
7555 hashval_t hashcode = 0; in build_function_type() local
7571 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode); in build_function_type()
7572 hashcode = type_hash_list (arg_types, hashcode); in build_function_type()
7573 t = type_hash_canon (hashcode, t); in build_function_type()
7815 int hashcode = 0; in build_method_type_directly() local
7832 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode); in build_method_type_directly()
7833 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode); in build_method_type_directly()
7834 hashcode = type_hash_list (argtypes, hashcode); in build_method_type_directly()
7835 t = type_hash_canon (hashcode, t); in build_method_type_directly()
7883 hashval_t hashcode = 0; in build_offset_type() local
7892 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode); in build_offset_type()
7893 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode); in build_offset_type()
7894 t = type_hash_canon (hashcode, t); in build_offset_type()
7920 hashval_t hashcode; in build_complex_type() local
7932 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0); in build_complex_type()
7933 t = type_hash_canon (hashcode, t); in build_complex_type()
9092 hashval_t hashcode = 0; in make_vector_type() local
9108 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode); in make_vector_type()
9109 hashcode = iterative_hash_host_wide_int (nunits, hashcode); in make_vector_type()
9110 hashcode = iterative_hash_host_wide_int (mode, hashcode); in make_vector_type()
9111 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode); in make_vector_type()
9112 t = type_hash_canon (hashcode, t); in make_vector_type()