Lines Matching refs:subrange_die

13006   dw_die_ref subrange_die;  in subrange_type_die()  local
13012 subrange_die = new_die (DW_TAG_subrange_type, context_die, type); in subrange_type_die()
13018 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes); in subrange_type_die()
13021 add_alignment_attribute (subrange_die, type); in subrange_type_die()
13024 add_bound_info (subrange_die, DW_AT_lower_bound, low, NULL); in subrange_type_die()
13026 add_bound_info (subrange_die, DW_AT_upper_bound, high, NULL); in subrange_type_die()
13028 add_scalar_info (subrange_die, DW_AT_GNU_bias, bias, in subrange_type_die()
13034 return subrange_die; in subrange_type_die()
20893 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, in add_bound_info() argument
20930 add_scalar_info (subrange_die, bound_attr, bound, in add_bound_info()
20978 dw_die_ref subrange_die = NULL; in add_subscript_info() local
20984 subrange_die = child; in add_subscript_info()
20994 if (!subrange_die) in add_subscript_info()
20995 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL); in add_subscript_info()
21005 && !get_AT (subrange_die, DW_AT_type)) in add_subscript_info()
21016 add_type_attribute (subrange_die, TREE_TYPE (domain), in add_subscript_info()
21027 if (!get_AT (subrange_die, DW_AT_lower_bound)) in add_subscript_info()
21028 add_bound_info (subrange_die, DW_AT_lower_bound, lower, NULL); in add_subscript_info()
21029 if (upper && !get_AT (subrange_die, DW_AT_upper_bound)) in add_subscript_info()
21030 add_bound_info (subrange_die, DW_AT_upper_bound, upper, NULL); in add_subscript_info()
21874 dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL); in gen_array_type_die() local
21875 add_bound_info (subrange_die, DW_AT_lower_bound, size_zero_node, NULL); in gen_array_type_die()
21876 add_bound_info (subrange_die, DW_AT_upper_bound, in gen_array_type_die()
21983 dw_die_ref subrange_die = new_die (subrange_tag, array_die, NULL); in gen_descr_array_type_die() local
21986 add_type_attribute (subrange_die, in gen_descr_array_type_die()
21990 add_bound_info (subrange_die, DW_AT_lower_bound, in gen_descr_array_type_die()
21993 add_bound_info (subrange_die, DW_AT_upper_bound, in gen_descr_array_type_die()
21996 add_scalar_info (subrange_die, DW_AT_byte_stride, in gen_descr_array_type_die()