forked from dcamarmas/creator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
creator.sh
executable file
·406 lines (360 loc) · 12.5 KB
/
creator.sh
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#!/usr/bin/env node
//
// Import
//
// filesystem
var fs = require('fs') ;
var path = require('path') ;
// creator
var creator = require('./js/min.creator_node.js') ;
var creator_version = JSON.parse(fs.readFileSync(__dirname + '/package.json', 'utf8')).version ;
// color
var color_theme = {
info: 'bgGreen',
help: 'green',
warn: 'yellow',
success: 'cyan',
error: 'bgRed'
} ;
var gray_theme = {
info: 'white',
help: 'gray',
warn: 'white',
success: 'white',
error: 'brightWhite'
} ;
var colors = require('colors') ;
colors.setTheme(gray_theme) ;
// arguments
var argv = require('yargs')
.usage(welcome() + '\n' +
'Usage: $0 -a <file name> -s <file name>\n' +
'Usage: $0 -h')
.example([ ['./$0',
'To show examples.'] ])
.option('architecture', {
alias: 'a',
type: 'string',
describe: 'Architecture file',
nargs: 1,
default: ''
})
.option('assembly', {
alias: 's',
type: 'string',
describe: 'Assembly file',
nargs: 1,
default: ''
})
.option('directory', {
alias: 'd',
type: 'string',
describe: 'Assemblies directory',
nargs: 1,
default: ''
})
.option('library', {
alias: 'l',
type: 'string',
describe: 'Assembly library file',
nargs: 1,
default: ''
})
.option('result', {
alias: 'r',
type: 'string',
describe: 'Result file to compare with',
nargs: 1,
default: ''
})
.option('describe', {
type: 'string',
describe: 'Help on element',
nargs: 1,
default: ''
})
.option('maxins', {
type: 'string',
describe: 'Maximum number of instructions to be executed',
nargs: 1,
default: '1000000'
})
.option('output', {
alias: 'o',
type: 'string',
describe: 'Define output format',
nargs: 1,
default: 'normal'
})
.option('color', {
type: 'boolean',
describe: 'Colored output',
default: false
})
.demandOption(['architecture', 'assembly'], 'Please provide both architecture and assembly files.')
.help('h')
.alias('h', 'help')
.argv ;
//
// Main
//
try
{
colors.disable() ;
if (argv.color)
{
colors.enable() ;
colors.setTheme(color_theme) ;
}
var limit_n_ins = parseInt(argv.maxins) ;
var output_format = argv.output.toUpperCase() ;
// work: a) help and usage
if ( (argv.a != "") && (argv.describe != "") )
{
var o = help_describe(argv) ;
console.log(welcome() + '\n' + o) ;
return process.exit(0) ;
}
if ( (argv.a == "") || ((argv.s == "") && (argv.d == "")) )
{
var o = help_usage() ;
console.log(welcome() + '\n' + o) ;
return process.exit(0) ;
}
// work: welcome
if (output_format == "NORMAL") {
var msg = welcome() ;
console.log(msg.success) ;
}
// work: b) list assembly files
var file_names = [] ;
if (argv.assembly !== '') {
file_names.push(argv.assembly) ;
}
if (argv.directory !== '')
{
files = fs.readdirSync(argv.directory) ;
files.forEach(function (file) {
file_names.push(argv.directory + '/' + file) ;
});
}
// work: b) commands and switches
var hdr = '' ;
var stage = '' ;
var ret = null ;
for (var i=0; i<file_names.length; i++)
{
hdr = 'FileName' ;
show_result(output_format, file_names[i], file_names[i], '', true) ;
ret = one_file(argv.architecture, argv.library, file_names[i], limit_n_ins, argv.result) ;
// info: show possible errors
for (var j=0; j<ret.stages.length; j++)
{
stage = ret.stages[j] ;
hdr = hdr + ',\t' + stage ;
if (ret[stage].status !== "ok")
show_result(output_format, stage, 'ko', ret[stage].msg.error, true) ;
else show_result(output_format, stage, 'ok', ret[stage].msg.success, false) ;
}
// info: "check differences" or "print finalmachine state"
if (argv.result !== '')
{
hdr = hdr + ',\tState' ;
show_result(output_format, 'State', 'ko', ret['LastState'].msg.error, true) ;
//continue ;
if (ret.LastState.status != "ok") {
process.exit(-1) ;
}
}
hdr = hdr + ',\tFinalState\n' ;
ret = creator.get_state() ;
if (argv.result === '') {
show_result(output_format, 'FinalState', 'is', ret.msg, true) ;
console.log('') ;
}
}
if (output_format == "TAB") {
console.log(hdr) ;
}
process.exit(0) ;
}
catch (e)
{
console.log(e.stack) ;
process.exit(-1) ;
}
//
// Functions
//
function welcome ( )
{
return '\n' +
'CREATOR\n'.help +
'-------\n'.help +
'version: '.help + creator_version.help + '\n'.help +
'website: https://creatorsim.github.io/\n'.help;
}
function help_usage ( )
{
return 'Usage:\n' +
' * To compile and execute an assembly file on an architecture:\n' +
' ./creator.sh -a <architecture file name> -s <assembly file name>\n' +
' * Same as before but execute only 10 instructions:\n' +
' ./creator.sh -a <architecture file name> -s <assembly file name> --maxins 10\n' +
'\n' +
' * Same as before and save the final state in a result file:\n' +
' ./creator.sh -a <architecture file name> -s <ok assembly file name> -o min > <result file>\n' +
' * To compile and execute an assembly file, and check the final state with a result file:\n' +
' ./creator.sh -a <architecture file name> -s <assembly file name> -o min -r <result file>\n' +
'\n' +
' * To get a summary of the instructions/pseudoinstructions:\n' +
' ./creator.sh -a <architecture file name> --describe <instructions|pseudo>\n' +
'\n' +
' * To get more information:\n' +
' ./creator.sh -h\n' ;
}
function help_describe ( argv )
{
// load architecture
try
{
var architecture = fs.readFileSync(argv.architecture, 'utf8') ;
ret = creator.load_architecture(architecture) ;
if (ret.status !== "ok") {
throw ret.errorcode ;
}
}
catch (e)
{
var msg = '\n' + e.toString() ;
msg = msg.split("\n").join("\n[Architecture] ") ;
console.log(msg) ;
process.exit(-1) ;
}
// show description
var o = '' ;
if (argv.describe.toUpperCase().startsWith('INS')) {
o = creator.help_instructions() ;
}
if (argv.describe.toUpperCase().startsWith('PSEUDO')) {
o = creator.help_pseudoins() ;
}
return o ;
}
function show_result ( output_format, stage, status, msg, show_in_min )
{
switch (output_format)
{
case "NORMAL":
msg = "[" + stage + "] " + msg ;
msg = msg.split("\n").join("\n[" + stage + "] ") ;
console.log(msg.success) ;
break;
case "MIN":
if (show_in_min) {
console.log(msg) ;
}
break;
case "TAB":
process.stdout.write(status + ',\t\t') ;
break;
default:
console.log('[' + stage + '] ' + msg + '\n') ;
break;
}
}
function one_file ( argv_architecture, argv_library, argv_assembly, limit_n_ins, argv_result )
{
var msg1 = '' ;
var ret = null ;
var ret1 = {
'Architecture': { 'status': 'ko', 'msg': 'Not loaded' },
'Library': { 'status': 'ok', 'msg': 'Without library' },
'Compile': { 'status': 'ko', 'msg': 'Not compiled' },
'Execute': { 'status': 'ko', 'msg': 'Not executed' },
'LastState': { 'status': 'ko', 'msg': 'Not equals states' },
'stages': [ 'Architecture', 'Library', 'Compile', 'Execute' ]
} ;
// (a) load architecture
try
{
var architecture = fs.readFileSync(argv_architecture, 'utf8') ;
ret = creator.load_architecture(architecture) ;
if (ret.status !== "ok") {
throw ret.errorcode ;
}
ret1.Architecture = { 'status': 'ok', 'msg': "Architecture '" + argv.a + "' loaded successfully." } ;
}
catch (e)
{
ret1.Architecture = { 'status': 'ko', 'msg': e.toString() } ;
return ret1 ;
}
// (b) link
if (argv_library !== '')
{
try
{
var library = fs.readFileSync(argv_library, 'utf8') ;
ret = creator.load_library(library) ;
if (ret.status !== "ok") {
throw ret.msg ;
}
ret1.Library = { 'status': 'ok', 'msg': "Code '" + argv.l + "' linked successfully." } ;
}
catch (e)
{
ret1.Library = { 'status': 'ko', 'msg': e.toString() } ;
return ret1 ;
}
}
// (c) compile
try
{
var architecture = fs.readFileSync(argv_architecture, 'utf8') ;
var assembly = fs.readFileSync(argv_assembly, 'utf8') ;
ret = creator.assembly_compile(assembly) ;
if (ret.status !== "ok") {
msg1 = "\nError at line " + (ret.line+1) ;
if (ret.token !== '') msg1 += " (" + ret.token + ")" ;
msg1 += ":\n" + ret.msg ;
throw msg1 ;
}
ret1.Compile = { 'status': 'ok', 'msg': "Code '" + argv.s + "' compiled successfully." } ;
}
catch (e)
{
ret1.Compile = { 'status': 'ko', 'msg': e.toString() } ;
return ret1 ;
}
// (d) ejecutar
try
{
ret = creator.execute_program(limit_n_ins) ;
if (ret.status !== "ok")
{
msg1 = "\n Error found." +
"\n " + ret.msg ;
throw msg1 ;
}
ret1.Execute = { 'status': 'ok', 'msg': "Executed successfully." } ;
}
catch (e)
{
ret1.Execute = { 'status': 'ko', 'msg': e.toString() } ;
return ret1 ;
}
// (e) compare results
if (argv_result !== '')
{
var result = fs.readFileSync(argv_result, 'utf8') ;
ret = creator.get_state() ;
ret = creator.compare_states(result, ret.msg) ;
if (ret.msg !== '')
ret1.LastState = { 'status': 'ko', 'msg': ret.msg } ;
else ret1.LastState = { 'status': 'ok', 'msg': 'Equals' } ;
return ret1 ;
}
// the end
return ret1 ;
}