1 /* This file is debug.c
2 Copyright 1987, 1988, 1989, 1990, 1991, 1992, 2000
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 2, 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Routines for debug use only. */
31 for (chp = frchain_root; chp; chp = chp->frch_next)
33 switch (chp->frch_seg)
45 printf ("\nSEGMENT %s %d\n", p, chp->frch_subseg);
46 dmp_frag (chp->frch_root, "\t");
54 for (; fp; fp = fp->fr_next)
56 printf ("%sFRAGMENT @ 0x%x\n", indent, fp);
60 printf ("%srs_align(%d)\n", indent, fp->fr_offset);
63 printf ("%srs_fill(%d)\n", indent, fp->fr_offset);
64 printf ("%s", indent);
65 var_chars (fp, fp->fr_var + fp->fr_fix);
66 printf ("%s\t repeated %d times,", indent, fp->fr_offset);
67 printf (" fixed length if # chars == 0)\n");
70 printf ("%srs_org(%d+sym @0x%x)\n", indent,
71 fp->fr_offset, fp->fr_symbol);
72 printf ("%sfill with ", indent);
76 case rs_machine_dependent:
77 printf ("%smachine_dep\n", indent);
80 printf ("%sunknown type\n", indent);
83 printf ("%saddr=%d(0x%x)\n", indent, fp->fr_address, fp->fr_address);
84 printf ("%sfr_fix=%d\n", indent, fp->fr_fix);
85 printf ("%sfr_var=%d\n", indent, fp->fr_var);
86 printf ("%sfr_offset=%d\n", indent, fp->fr_offset);
87 printf ("%schars @ 0x%x\n", indent, fp->fr_literal);
98 for (p = (unsigned char *) fp->fr_literal; n; n--, p++)
100 printf ("%02x ", *p);