1 /* This file is debug.c
2 Copyright 1987, 1988, 1989, 1990, 1991, 1992, 2000, 2005, 2006, 2007
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
21 /* Routines for debug use only. */
32 for (s = stdoutput->sections; s; s = s->next)
33 for (chp = seg_info (s)->frchainP; chp; chp = chp->frch_next)
47 printf ("\nSEGMENT %s %d\n", p, chp->frch_subseg);
48 dmp_frag (chp->frch_root, "\t");
56 for (; fp; fp = fp->fr_next)
58 printf ("%sFRAGMENT @ 0x%x\n", indent, fp);
62 printf ("%srs_align(%d)\n", indent, fp->fr_offset);
65 printf ("%srs_fill(%d)\n", indent, fp->fr_offset);
66 printf ("%s", indent);
67 var_chars (fp, fp->fr_var + fp->fr_fix);
68 printf ("%s\t repeated %d times,", indent, fp->fr_offset);
69 printf (" fixed length if # chars == 0)\n");
72 printf ("%srs_org(%d+sym @0x%x)\n", indent,
73 fp->fr_offset, fp->fr_symbol);
74 printf ("%sfill with ", indent);
78 case rs_machine_dependent:
79 printf ("%smachine_dep\n", indent);
82 printf ("%sunknown type\n", indent);
85 printf ("%saddr=%d(0x%x)\n", indent, fp->fr_address, fp->fr_address);
86 printf ("%sfr_fix=%d\n", indent, fp->fr_fix);
87 printf ("%sfr_var=%d\n", indent, fp->fr_var);
88 printf ("%sfr_offset=%d\n", indent, fp->fr_offset);
89 printf ("%schars @ 0x%x\n", indent, fp->fr_literal);
100 for (p = (unsigned char *) fp->fr_literal; n; n--, p++)
102 printf ("%02x ", *p);