Home
last modified time | relevance | path

Searched refs:type_stack (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/gnu/usr.bin/binutils/binutils/
Dwrstabs.c150 struct stab_type_stack *type_stack; member
413 s->next = info->type_stack; in stab_push_string()
414 info->type_stack = s; in stab_push_string()
440 s = info->type_stack; in stab_pop_type()
443 info->type_stack = s->next; in stab_pop_type()
491 info.type_stack = NULL; in write_stabs_in_sections_debugging_info()
852 assert (info->type_stack != NULL); in stab_modify_type()
853 targindex = info->type_stack->index; in stab_modify_type()
863 definition = info->type_stack->definition; in stab_modify_type()
890 if (index != 0 && ! info->type_stack->definition) in stab_modify_type()
[all …]
Dieee.c3839 struct ieee_type_stack *type_stack; member
4253 ts->next = info->type_stack; in ieee_push_type()
4254 info->type_stack = ts; in ieee_push_type()
4283 ts = info->type_stack; in ieee_pop_type_used()
4326 info->type_stack = ts->next; in ieee_pop_type_used()
5282 info->complex_float_index = info->type_stack->type.indx; in ieee_complex_type()
5284 info->complex_double_index = info->type_stack->type.indx; in ieee_complex_type()
5412 e->indx = info->type_stack->type.indx; in ieee_enum_type()
5437 localp = info->type_stack->type.localp; in ieee_pointer_type()
5462 m->pointer = info->type_stack->type.indx; in ieee_pointer_type()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dparse.c75 union type_stack_elt *type_stack; variable
1146 type_stack = (union type_stack_elt *) in check_type_stack_depth()
1147 xrealloc ((char *) type_stack, type_stack_size * sizeof (*type_stack)); in check_type_stack_depth()
1155 type_stack[type_stack_depth++].piece = tp; in push_type()
1162 type_stack[type_stack_depth++].int_val = n; in push_type_int()
1175 return type_stack[--type_stack_depth].piece; in pop_type()
1183 return type_stack[--type_stack_depth].int_val; in pop_type_int()
1324 type_stack = (union type_stack_elt *) in _initialize_parse()
1325 xmalloc (type_stack_size * sizeof (*type_stack)); in _initialize_parse()
Dparser-defs.h111 extern union type_stack_elt *type_stack;