-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
268 lines (194 loc) · 4.63 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include <string>
#include <unordered_set>
#include <cstdio>
#include <cstring>
#include <unistd.h>
#include <fcntl.h>
#include <sysexits.h>
#include <stdlib.h>
#include <err.h>
#include "common.h"
#include "Instruction.h"
#include "Machine.h"
#include "Expression.h"
#include "omf.h"
#include "cxx/filesystem.h"
#include "intern.h"
#include "printer.h"
#include <afp/finder_info.h>
namespace fs = filesystem;
struct {
bool S = false;
bool v = false;
int O = 0;
unsigned f = 0;
fs::path o;
} flags;
extern OMF::Segment data_to_omf(Segment *segment);
extern OMF::Segment code_to_omf(Segment *segment);
bool set_ftype(const filesystem::path &name, uint16_t fileType, uint32_t auxType) {
afp::finder_info fi;
std::error_code ec;
if (!fi.open(name, afp::finder_info::read_write, ec)) {
warnx("Unable to set file type for %s: %s", name.c_str(), ec.message().c_str());
return false;
}
fi.set_prodos_file_type(fileType, auxType);
if (!fi.write(ec)) {
warnx("Unable to set file type for %s: %s", name.c_str(), ec.message().c_str());
return false;
}
return true;
}
void simplify(LineQueue &lines) {
for (BasicLinePtr line : lines) {
for (auto &e : line->operands)
if (e) e = e->simplify();
}
}
void process_segments(Module &m, fs::path &outfile) {
int segnum = 1;
int fd = -1;
if (!flags.S) {
if (outfile.empty()) outfile = "object.omf";
fd = open(outfile.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0666);
if (fd < 0) {
err(EX_CANTCREAT, "Unable to open %s", outfile.c_str());
}
}
for (auto &seg : m.segments) {
if (seg->convention == Segment::data) {
if (flags.S) continue;
auto omf = data_to_omf(seg.get());
omf.segnum = segnum++;
omf.write(fd);
continue;
}
//auto &lines = seg->lines;
basic_block(seg.get());
if (flags.S) continue;
auto omf = code_to_omf(seg.get());
omf.segnum = segnum++;
omf.write(fd);
}
if (fd >= 0) {
set_ftype(outfile, 0xb1, 0x0000);
close(fd);
}
if (flags.S) {
printer *p = nullptr;
switch(flags.f){
case 1: { static merlin_printer pp; p = &pp; break; }
case 2: { static mpw_printer pp; p = &pp; break; }
case 3: { static orca_printer pp; p = &pp; break; }
default: { static harpoon_printer pp; p = &pp; break; }
}
FILE *f = nullptr;
if (outfile.empty() || outfile == "-") f = stdout;
else {
f = fopen(outfile.c_str(), "w");
if (!f) {
err(EX_CANTCREAT, "Unable to open %s", outfile.c_str());
}
}
p->print(f, m);
if (f != stdout) fclose(f);
}
}
void help() {
fputs(
"asm-816 [options] [file]\n\n"
"options:\n"
"-I directory Specify include directory path\n"
"-S Generate source code\n"
"-o file Specify output file name\n"
"-f format Specify output source format (merlin, mpw, orca)\n"
"-O level Specify optimization level\n"
"-v Be verbose\n"
"-V Display version\n"
"-h Dusplay help\n"
, stdout);
}
int main(int argc, char **argv) {
std::vector<fs::path> _I;
int c;
while ((c = getopt(argc, argv, "hf:I:vSVo:O:")) != -1) {
switch(c) {
case 'I': // include directories.
_I.emplace_back(optarg);
break;
case 'S': // output source code
flags.S = true;
break;
case 'o':
flags.o = optarg;
break;
case 'O':
{
char c = *optarg;
if (c >= '0' && c <= '3') flags.O = c - '0';
}
break;
case 'h':
help();
exit(0);
break;
case 'f':
{
std::string tmp(optarg);
if (tmp == "merlin") flags.f = 1;
else if (tmp == "mpw") flags.f = 2;
else if (tmp == "orca") flags.f = 3;
else {
fprintf(stderr, "%s: unsupported format\n", optarg);
}
}
break;
case 'v':
flags.v = true;
break;
case 'V':
fprintf(stdout, "Version 0.0\n");
exit(0);
break;
case ':':
case '?':
help();
exit(EX_USAGE);
break;
}
}
argv += optind;
argc -= optind;
if (flags.o == "-") {
flags.S = true;
flags.o.clear();
}
//atexit(clear_intern_table);
if (argc == 0) {
auto m = parse_file(STDIN_FILENO);
if (!m) exit(EX_DATAERR);
if (m) {
// ok if ofn is empty.
fs::path ofn = std::move(flags.o);
flags.o.clear();
process_segments(*m, ofn);
}
}
for (int i = 0 ; i < argc; ++i) {
fs::path ifn = argv[i];
auto m = parse_file(ifn);
if (!m) exit(EX_DATAERR);
if (m) {
fs::path ofn = std::move(flags.o);
flags.o.clear();
if (ofn.empty() && !flags.S) {
ofn = ifn.filename(); // use cwd.
//if (flags.S) ofn.replace_extension(".s");
ofn.replace_extension(".omf");
}
process_segments(*m, ofn);
}
}
return 0;
}