-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
286 lines (194 loc) · 6.78 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#include <fstream>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <vector>
#include <list>
#include "StringUtil.hpp"
#include "Assembler.hpp"
#include "Asem-Func.hpp"
#include "Punning.hpp"
#include "Asem-ELFHolder.hpp"
#include "Asem-Global.hpp"
#include "Asem-Except.hpp"
/*
* Calling convention:
* asm87 path_in path_out start_addr [optional flags...]
*
* Optional flags:
* log - log compilation to console
*
* path_out == stdout -> print to console
*
*/
const asem::Section::Enum SECTIONS[4] =
{ asem::Section::Text
, asem::Section::Data
, asem::Section::BSS
, asem::Section::ROData
} ;
void DisplayHelp() {
std::cout << "\n";
std::cout << "The calling conventions for this program are:\n";
std::cout << "[1] asm87 \"path_in\" \"path_out\" start_addr [optional flags...]\n";
std::cout << " Where optional flags may be (in any order):\n";
std::cout << " log - log operations in console.\n";
std::cout << "[2] asm87 info\n";
std::cout << "The first option compiles files, the second one displays program info.\n";
std::cout << "\n";
}
void DisplayInfo() {
std::cout << "\n";
std::cout << " < Elektrotehnicki fakultet Univerziteta u Beogradu >\n";
std::cout << " - Projektni zadatak iz predmeta Sistemski Softver -\n";
std::cout << " - Asembler za hipoteticki 16-bitni procesor -\n";
std::cout << " - Student: Jovan Batnozic 0087/2015 -\n";
std::cout << " - Datum: Jun 2018. godine -\n";
DisplayHelp();
}
std::string SymTabToString(const asem::AssemblyList & al) {
return (al.symtab.toString() + "\n\n");
}
std::string RelocRecordsToString(const asem::ELFHolder & eh) {
std::string rv;
for (size_t i = 0; i < 4; i += 1) {
std::string temp = eh.rrToString(SECTIONS[i]);
if (temp.empty()) continue;
rv += temp;
rv += "\n\n";
}
return rv;
}
std::string SectionsToString(const asem::ELFHolder & eh) {
std::string rv;
for (size_t i = 0; i < 4; i += 1) {
std::string temp = eh.secToString(SECTIONS[i]);
if (temp.empty()) continue;
rv += temp;
rv += "\n\n";
}
return rv;
}
#define LOG(text) do{ if (flag_log) std::cout << text; }while(0)
int main(int argc, char** argv) {
bool flag_log = false;
const char * path_in = nullptr;
const char * path_out = nullptr;
int start_addr = 0;
//const char * path = "/home/etf/Desktop/asmtest.txt";
// Main arguments:
if (argc < 4) {
if (argc == 2 && strcmp(argv[1], "info") == 0) {
DisplayInfo();
return 0;
}
else {
std::cout << "Too few arguments.\n";
DisplayHelp();
return 1;
}
}
// Optional flags:
for (int i = 4; i < argc; i += 1) {
if (strcmp(argv[i], "log") == 0) {
flag_log = true;
continue;
}
if (strcmp(argv[i], "info") == 0) {
std::cout << "Flag [info] is ignored unless it's the first and only argument.";
continue;
}
std::cout << "Unknown flag [" << argv[i] << "]\n.";
return 1;
}
// Start address:
if (gen::string_is_integer(argv[3])) {
start_addr = std::stoi(argv[3]);
if (start_addr < 0 || start_addr >= (1 << 16 - 1)) {
std::cout << "Starting address (" << start_addr << ") too large or too small.\n.";
return 1;
}
}
else {
std::cout << "Third argument [" << argv[3] << "] must be an integer.\n.";
return 1;
}
// Everything OK, setup:
asem::DO_CHAIN_SECTIONS = true;
asem::START_LOCATION = size_t(start_addr);
path_in = argv[1];
path_out = argv[2];
////////////////////////////////////////////////////////////////////////////
asem::AssemblyList al{};
asem::ELFHolder eh{};
try {
// PASS 1:
LOG( "Loading AssemblyList from file... " );
al.loadFromFile(path_in);
LOG( "OK\n" );
LOG( "Parsing instruction/directive arguments... " );
al.parseArguments();
LOG( "OK\n" );
LOG( "Generating symbol table... " );
al.generateSymbolTable();
LOG( "OK\n" );
LOG( "Verifying symbol table... " );
al.verifySymbolTable();
LOG( "OK\n" );
// PASS 2:
LOG( "Generating ELFHolder from AssemblyList... " );
eh.loadFromAssemblyList(al);
eh.clearBSS();
LOG( "OK\n" );
}
catch (asem::SyntaxError & ex) {
std::cout << "\nSyntax Error: " << ex.what() << std::endl;
return 1;
}
catch (std::exception & ex) {
std::cout << "\nException caught: " << ex.what() << std::endl;
return 1;
}
catch (...) {
std::cout << "\nUnknown exception caught (no message provided).\n";
return 1;
}
// WRITE OUTPUT: ///////////////////////////////////////////////////////////
if (strcmp(path_out, "stdout") == 0) {
std::cout << SymTabToString(al);
std::cout << RelocRecordsToString(eh);
std::cout << SectionsToString(eh);
}
else {
std::ofstream outfile;
try {
LOG( "Opening file for writing... " );
outfile.open(path_out, std::ios_base::out | std::ios_base::trunc);
LOG( "OK\n" );
if (!outfile.is_open()) {
std::cout << "Could not open file [" << path_out << "] for writing.\n";
return 1;
}
LOG( "Writing to file... " );
outfile << SymTabToString(al);
outfile << RelocRecordsToString(eh);
outfile << SectionsToString(eh);
LOG( "OK\n" );
LOG( "Flushing and closing file... " );
outfile.flush();
outfile.close();
LOG( "OK\n" );
}
catch (std::exception & ex) {
std::cout << "\nException caught: " << ex.what() << std::endl;
return 1;
}
catch (...) {
std::cout << "\nUnknown exception caught (no message provided).\n";
return 1;
}
}
LOG( "All operations completed successfully.\n" );
return 0;
}
#undef LOG