-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathr2dec-testsuite.js
38 lines (35 loc) · 1.56 KB
/
r2dec-testsuite.js
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
// SPDX-FileCopyrightText: 2017-2023 Giovanni Dante Grazioli <deroad@libero.it>
// SPDX-License-Identifier: BSD-3-Clause
import libdec from './libdec/libdec.js';
import Printer from './libdec/printer.js';
import TestSuite from './libdec/testsuite.js';
function main() {
try {
const test = new TestSuite();
var Shared = Global();
Shared.evars = test.evars;
Shared.argdb = test.data.argdb;
Shared.printer = new Printer();
Shared.context = new libdec.context();
var architecture = libdec.archs[Shared.evars.arch];
// af seems to break renaming.
/* asm.pseudo breaks things.. */
if (test.data.graph && test.data.graph.length > 0) {
var p = new libdec.core.session(test.data, architecture, Shared.evars);
var arch_context = architecture.context(test.data);
libdec.core.analysis.pre(p, architecture, arch_context);
libdec.core.decompile(p, architecture, arch_context);
libdec.core.analysis.post(p, architecture, arch_context);
libdec.core.print(p);
Shared.printer.flushOutput(Shared.context.lines, Shared.context.errors, Shared.context.log, Shared.evars.extra);
} else {
console.log('Error: no data available.\nPlease analyze the function/binary first.');
}
} catch (e) {
const error = 'Exception: ' + e.message + ' (' + e.name + ')\n' + e.stack;
const filename = unit.file.split('/').slice(-1)[0];
console.log('File:', filename);
console.log(error);
}
}
main();