annotate lwasm/list.c @ 384:38b50ce6967a

Made --list and --depend work
author lost@starbug
date Sat, 15 May 2010 20:46:04 -0600
parents
children a741d2e4869f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
384
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
1 /*
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
2 list.c
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
3
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
4 Copyright © 2010 William Astle
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
5
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
6 This file is part of LWTOOLS.
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
7
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
8 LWTOOLS is free software: you can redistribute it and/or modify it under the
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
9 terms of the GNU General Public License as published by the Free Software
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
10 Foundation, either version 3 of the License, or (at your option) any later
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
11 version.
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
12
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
13 This program is distributed in the hope that it will be useful, but WITHOUT
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
16 more details.
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
17
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
18 You should have received a copy of the GNU General Public License along with
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
19 this program. If not, see <http://www.gnu.org/licenses/>.
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
20 */
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
21
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
22 #include <config.h>
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
23
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
24 #include <stdio.h>
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
25 #include <string.h>
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
26
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
27 #include <lw_alloc.h>
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
28 #include <lw_string.h>
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
29
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
30 #include "lwasm.h"
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
31 #include "instab.h"
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
32
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
33 /*
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
34 Do listing
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
35 */
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
36 void do_list(asmstate_t *as)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
37 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
38 line_t *cl;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
39 FILE *of;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
40 int i;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
41
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
42 if (!(as -> flags & FLAG_LIST))
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
43 return;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
44
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
45 if (as -> list_file)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
46 of = fopen(as -> list_file, "w");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
47 else
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
48 of = stdout;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
49 if (!of)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
50 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
51 fprintf(stderr, "Cannot open list file; list not generated\n");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
52 return;
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
53 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
54 for (cl = as -> line_head; cl; cl = cl -> next)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
55 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
56 if (cl -> len < 1)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
57 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
58 fprintf(of, " ");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
59 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
60 else
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
61 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
62 fprintf(of, "%04X ", lw_expr_intval(cl -> addr));
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
63 for (i = 0; i < cl -> outputl && i < 8; i++)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
64 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
65 fprintf(of, "%02X", cl -> output[i]);
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
66 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
67 for (; i < 8; i++)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
68 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
69 fprintf(of, " ");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
70 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
71 fprintf(of, " ");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
72 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
73 fprintf(of, "%15s:%05d %s\n", cl -> linespec, cl -> lineno, cl -> ltext);
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
74 if (cl -> outputl > 8)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
75 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
76 for (i = 8; i < cl -> outputl; i++)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
77 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
78 if (i % 8 == 0)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
79 {
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
80 if (i != 8)
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
81 fprintf(of, "\n ");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
82 else
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
83 fprintf(of, " ");
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
84 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
85 fprintf(of, "%02X", cl -> output[i]);
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
86 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
87 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
88 }
38b50ce6967a Made --list and --depend work
lost@starbug
parents:
diff changeset
89 }