Mercurial > hg-old > index.cgi
annotate lwasm/list.c @ 407:b2e007c28b8f
Changed ENDS to be ENDSTRUCT instead of ENDSECTION since ENDSTRUCT is required but ENDSECTION is not; updated docs to reflect change
author | lost@l-w.ca |
---|---|
date | Fri, 23 Jul 2010 19:53:43 -0600 |
parents | 027d7fbcdcfc |
children | f792faf877bb |
rev | line source |
---|---|
384 | 1 /* |
2 list.c | |
3 | |
4 Copyright © 2010 William Astle | |
5 | |
6 This file is part of LWTOOLS. | |
7 | |
8 LWTOOLS is free software: you can redistribute it and/or modify it under the | |
9 terms of the GNU General Public License as published by the Free Software | |
10 Foundation, either version 3 of the License, or (at your option) any later | |
11 version. | |
12 | |
13 This program is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
16 more details. | |
17 | |
18 You should have received a copy of the GNU General Public License along with | |
19 this program. If not, see <http://www.gnu.org/licenses/>. | |
20 */ | |
21 | |
22 #include <config.h> | |
23 | |
24 #include <stdio.h> | |
25 #include <string.h> | |
26 | |
27 #include <lw_alloc.h> | |
28 #include <lw_string.h> | |
29 | |
30 #include "lwasm.h" | |
31 #include "instab.h" | |
32 | |
390
027d7fbcdcfc
Basic symbol table output; needs work for non-constant symbols
lost@l-w.ca
parents:
389
diff
changeset
|
33 void list_symbols(asmstate_t *as, FILE *of); |
027d7fbcdcfc
Basic symbol table output; needs work for non-constant symbols
lost@l-w.ca
parents:
389
diff
changeset
|
34 |
384 | 35 /* |
36 Do listing | |
37 */ | |
38 void do_list(asmstate_t *as) | |
39 { | |
40 line_t *cl; | |
41 FILE *of; | |
42 int i; | |
43 | |
44 if (!(as -> flags & FLAG_LIST)) | |
45 return; | |
46 | |
47 if (as -> list_file) | |
48 of = fopen(as -> list_file, "w"); | |
49 else | |
50 of = stdout; | |
51 if (!of) | |
52 { | |
53 fprintf(stderr, "Cannot open list file; list not generated\n"); | |
54 return; | |
55 } | |
56 for (cl = as -> line_head; cl; cl = cl -> next) | |
57 { | |
58 if (cl -> len < 1) | |
59 { | |
389
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
60 if (cl -> soff >= 0) |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
61 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
62 fprintf(of, "%04X ", cl -> soff & 0xffff); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
63 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
64 else if (cl -> dshow >= 0) |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
65 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
66 if (cl -> dsize == 1) |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
67 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
68 fprintf(of, " %02X ", cl -> dshow & 0xff); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
69 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
70 else |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
71 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
72 fprintf(of, " %04X ", cl -> dshow & 0xff); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
73 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
74 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
75 else if (cl -> dptr) |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
76 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
77 lw_expr_t te; |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
78 te = lw_expr_copy(cl -> dptr -> value); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
79 as -> exportcheck = 1; |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
80 as -> csect = cl -> csect; |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
81 lwasm_reduce_expr(as, te); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
82 as -> exportcheck = 0; |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
83 if (lw_expr_istype(te, lw_expr_type_int)) |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
84 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
85 fprintf(of, " %04X ", lw_expr_intval(te) & 0xffff); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
86 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
87 else |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
88 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
89 fprintf(of, " ???? "); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
90 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
91 lw_expr_destroy(te); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
92 } |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
93 else |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
94 { |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
95 fprintf(of, " "); |
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
96 } |
384 | 97 } |
98 else | |
99 { | |
387
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
100 lw_expr_t te; |
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
101 te = lw_expr_copy(cl -> addr); |
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
102 as -> exportcheck = 1; |
389
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
103 as -> csect = cl -> csect; |
387
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
104 lwasm_reduce_expr(as, te); |
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
105 as -> exportcheck = 0; |
389
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
106 // fprintf(of, "%s\n", lw_expr_print(te)); |
387
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
107 fprintf(of, "%04X ", lw_expr_intval(te) & 0xffff); |
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
108 lw_expr_destroy(te); |
384 | 109 for (i = 0; i < cl -> outputl && i < 8; i++) |
110 { | |
111 fprintf(of, "%02X", cl -> output[i]); | |
112 } | |
113 for (; i < 8; i++) | |
114 { | |
115 fprintf(of, " "); | |
116 } | |
117 fprintf(of, " "); | |
118 } | |
389
fbb7bfed8076
Added in structure support and fixed up some warts in the listing code (by adding more warts)
lost@l-w.ca
parents:
387
diff
changeset
|
119 fprintf(of, "(%31.31s):%05d %s\n", cl -> linespec, cl -> lineno, cl -> ltext); |
384 | 120 if (cl -> outputl > 8) |
121 { | |
122 for (i = 8; i < cl -> outputl; i++) | |
123 { | |
124 if (i % 8 == 0) | |
125 { | |
126 if (i != 8) | |
127 fprintf(of, "\n "); | |
128 else | |
129 fprintf(of, " "); | |
130 } | |
131 fprintf(of, "%02X", cl -> output[i]); | |
132 } | |
387
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
133 if (i % 8) |
a741d2e4869f
Various bugfixes; fixed lwobjdump to display symbols with unprintable characters more sensibly; start of a (nonfunctional for now) testing framework
lost@l-w.ca
parents:
384
diff
changeset
|
134 fprintf(of, "\n"); |
384 | 135 } |
136 } | |
390
027d7fbcdcfc
Basic symbol table output; needs work for non-constant symbols
lost@l-w.ca
parents:
389
diff
changeset
|
137 |
027d7fbcdcfc
Basic symbol table output; needs work for non-constant symbols
lost@l-w.ca
parents:
389
diff
changeset
|
138 if (as -> flags & FLAG_SYMBOLS) |
027d7fbcdcfc
Basic symbol table output; needs work for non-constant symbols
lost@l-w.ca
parents:
389
diff
changeset
|
139 list_symbols(as, of); |
384 | 140 } |