Lines Matching refs:p
100 dump_coff_lines (struct coff_line *p) in dump_coff_lines() argument
106 printf (_("#lines %d "),p->nlines); in dump_coff_lines()
108 for (i = 0; i < p->nlines; i++) in dump_coff_lines()
110 printf ("(%d 0x%x)", p->lines[i], p->addresses[i]); in dump_coff_lines()
126 dump_coff_type (struct coff_type *p) in dump_coff_type() argument
129 printf (_("size %d "), p->size); in dump_coff_type()
131 switch (p->type) in dump_coff_type()
135 p->u.asecdef.address, in dump_coff_type()
136 p->u.asecdef.size); in dump_coff_type()
142 dump_coff_type (p->u.pointer.points_to); in dump_coff_type()
145 printf (_("array [%d] of"), p->u.array.dim); in dump_coff_type()
147 dump_coff_type (p->u.array.array_of); in dump_coff_type()
152 dump_coff_type (p->u.function.function_returns); in dump_coff_type()
153 dump_coff_lines (p->u.function.lines); in dump_coff_type()
156 dump_coff_scope (p->u.function.parameters); in dump_coff_type()
160 dump_coff_scope (p->u.function.code); in dump_coff_type()
166 dump_coff_scope (p->u.astructdef.elements); in dump_coff_type()
169 if (!p->u.aenumref.ref) in dump_coff_type()
172 printf (_("structure ref to %s"), p->u.aenumref.ref->name); in dump_coff_type()
175 printf (_("enum ref to %s"), p->u.astructref.ref->name); in dump_coff_type()
180 dump_coff_scope (p->u.aenumdef.elements); in dump_coff_type()
183 switch (p->u.basic) in dump_coff_type()
245 dump_coff_where (struct coff_where *p) in dump_coff_where() argument
248 switch (p->where) in dump_coff_where()
251 printf (_("Stack offset %x"), p->offset); in dump_coff_where()
254 printf (_("Memory section %s+%x"), p->section->name, p->offset); in dump_coff_where()
257 printf (_("Register %d"), p->offset); in dump_coff_where()
260 printf (_("Struct Member offset %x"), p->offset); in dump_coff_where()
263 printf (_("Enum Member offset %x"), p->offset); in dump_coff_where()
284 dump_coff_visible (struct coff_visible *p) in dump_coff_visible() argument
287 switch (p->type) in dump_coff_visible()
330 dump_coff_symbol (struct coff_symbol *p) in dump_coff_symbol() argument
336 while (p) in dump_coff_symbol()
340 printf (_("Symbol %s, tag %d, number %d"), p->name, p->tag, p->number); in dump_coff_symbol()
346 dump_coff_type (p->type); in dump_coff_symbol()
350 dump_coff_where (p->where); in dump_coff_symbol()
354 dump_coff_visible (p->visible); in dump_coff_symbol()
356 p = p->next; in dump_coff_symbol()
363 dump_coff_scope (struct coff_scope *p) in dump_coff_scope() argument
365 if (p) in dump_coff_scope()
369 _("List of blocks "), (bfd_vma) (uintptr_t) p); in dump_coff_scope()
371 if (p->sec) in dump_coff_scope()
372 printf( " %s %x..%x", p->sec->name,p->offset, p->offset + p->size -1); in dump_coff_scope()
379 while (p) in dump_coff_scope()
382 printf (_("vars %d"), p->nvars); in dump_coff_scope()
384 dump_coff_symbol (p->vars_head); in dump_coff_scope()
387 dump_coff_scope (p->list_head); in dump_coff_scope()
389 p = p->next; in dump_coff_scope()
400 dump_coff_sfile (struct coff_sfile *p) in dump_coff_sfile() argument
406 while (p) in dump_coff_sfile()
409 printf (_("Source file %s"), p->name); in dump_coff_sfile()
411 dump_coff_scope (p->scope); in dump_coff_sfile()
412 p = p->next; in dump_coff_sfile()