summaryrefslogtreecommitdiff
path: root/nqdasm.c
blob: d7016fb155a2a3be3be7450e558384e9f5b66630 (plain)
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
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "mnemonics.h"

const char *progname;

#define ERROR(...) \
	do { \
		fprintf(stderr, "%s: ", progname); \
		fprintf(stderr, __VA_ARGS__); \
		fprintf(stderr, "\n"); \
	} while (0)

#define PERROR(str) \
	do { \
		int err = errno; \
		fprintf(stderr, "%s: ", progname); \
		errno = err; \
		perror(str); \
	} while (0)

struct line {
	const struct mnemonic *mnem;
	uint16_t addr;
	uint16_t value;
	int      label;
};

static const struct mnemonic *match_instruction(unsigned bits)
{
	for (int i = 0; i < MNEM_LAST; i++) {
		const struct mnemonic *m = mnemonics + i;
		if ((bits & m->mask) == m->bits) return m;
	}
	return NULL;
}

static inline int get_argvalue(const struct line *line, int argidx)
{
	const struct operand *op = line->mnem->operands + argidx;
	switch (op->type) {
	case REG:
	case REGPTR: return       7 & (line->value >> op->shift);
	case IMM:    return (uint8_t) (line->value >> op->shift);
	case PCOFF:  return  (int8_t) (line->value >> op->shift);
	}
	assert(0);
}

static int cmp_line_addr(const void *a, const void *b)
{
	const struct line *la = (const struct line*)a;
	const struct line *lb = (const struct line*)b;
	return la->addr < lb->addr ? -1 : la->addr == lb->addr ? 0 : 1;
}

static struct line *get_pcoff_target(const struct line *lines, size_t count, const struct line *inst, int argidx)
{
	uint16_t targetaddr = inst->addr + get_argvalue(inst, argidx);
	return bsearch(&(struct line){ .addr = targetaddr }, lines, count, sizeof *lines, cmp_line_addr);
}

static void assign_labels(struct line *lines, size_t count)
{
	/* mark those addresses that need a label */
	for (size_t i = 0; i < count; i++) {
		if (!lines[i].mnem) continue;

		const struct operand *ops = lines[i].mnem->operands;
		for (int j = 0; j < 3 && ops[j].type; j++) {
			if (ops[j].type == PCOFF) {
				struct line *target = get_pcoff_target(lines, count, lines + i, j);
				if (target) target->label = 1;
			}
		}
	}

	/* assign labels in ascending order */
	int label = 0;
	for (size_t i = 0; i < count; i++) {
		lines[i].label = lines[i].label ? label++ : -1;
	}
}

static void print_operand(FILE *out, const struct line *lines, size_t count, size_t lineidx, size_t argidx)
{
	const struct line  *inst = lines + lineidx;
	const struct operand *op = inst->mnem->operands + argidx;

	switch (op->type) {
	case REG:    fprintf(out,  "r%d", get_argvalue(inst, argidx)); break;
	case REGPTR: fprintf(out, "@r%d", get_argvalue(inst, argidx)); break;
	case IMM:    fprintf(out,   "%d", get_argvalue(inst, argidx)); break;
	case PCOFF: {
			const struct line *target = get_pcoff_target(lines, count, inst, argidx);
			if (target && target->label >= 0)
				fprintf(out, "L%d", target->label);
			else
				fprintf(out, "%d", get_argvalue(inst, argidx));
			break;
		}
	default: assert(0);
	}
}

static int resize_lines(struct line **lines, size_t alloc)
{
	struct line *result = realloc(*lines, alloc * sizeof **lines);
	if (result) *lines = result;
	else PERROR("Error allocating memory");
	return !result;
}

static struct line *read_lines(FILE *in, size_t *count)
{
	size_t alloc = 16;
	struct line *lines = NULL;

	*count = 0;
	if (resize_lines(&lines, alloc)) goto fail;

	unsigned bits, addr = 0;
	while (fscanf(in, " %x\n", &bits) > 0) {
		if (addr > 0xffff) {
			ERROR("Input exceeds 16-bit address space");
			goto fail;
		}
		if (*count >= alloc && resize_lines(&lines, alloc *= 2)) {
			goto fail;
		}

		lines[*count] = (struct line) {
			.mnem  = match_instruction(bits),
			.value = bits,
			.addr  = addr,
		};

		addr   += 2;
		*count += 1;
	}

	return lines;

fail:
	free(lines);
	return NULL;
}

static void disassemble(FILE *in, FILE *out)
{
	size_t count;
	struct line *lines = read_lines(in, &count);
	if (!lines) return;

	assign_labels(lines, count);

	for (size_t i = 0; i < count; i++) {
		const struct line *line  = lines + i;
		unsigned bits            = line->value;
		const struct mnemonic *m = line->mnem;

		if (line->label >= 0) fprintf(out, "L%d:", line->label);

		if (!m) {
			fprintf(out, "\t.word   0x%04x\n", bits);
			continue;
		}

		fprintf(out, "\t%s", m->mnem);
		for (int j = 0; j < 3 && m->operands[j].type; j++) {
			if (j) fprintf(out, ", ");
			else   fprintf(out, "%*s", 8 - (int)strlen(m->mnem), "");
			print_operand(out, lines, count, i, j);
		}
		fprintf(out, "\n");
	}

	free(lines);
}

static void usage(const char *progname)
{
	printf("usage: %s [-o output] [input]\n", progname);
	printf("       %s -h\n", progname);
	printf("\n");
	printf("\t%-16s %s\n", "-h",        "display this help text and exit");
	printf("\t%-16s %s\n", "-o output", "write output to 'output' (default=stdout)");
	printf("\t%-16s %s\n", "input",     "read input from 'input' (default=stdin)");
}

int main(int argc, char **argv)
{
	const char *outname = NULL;
	int error = 0;

	extern int   optind;
	extern char *optarg;

	progname = argv[0];
	for (int opt; (opt = getopt(argc, argv, "+ho:")) != -1;) {
		switch (opt) {
		case 'h':
			usage(argv[0]);
			return 0;
		case 'o':
			outname = optarg;
			break;
		default:
			error = 1;
		}
	}

	if (optind < argc - 1) {
		ERROR("Too many input files");
		return 1;
	}
	if (error) return 1;

	FILE *in  = stdin;
	FILE *out = stdout;

	if (optind < argc && !(in = fopen(argv[optind], "r"))) {
		PERROR("Error opening input file");
		return 1;
	}
	if (outname && !(out = fopen(outname, "w"))) {
		PERROR("Error opening output file");
		fclose(in);
		return 1;
	}

	disassemble(in, out);

	fclose(in);
	fclose(out);
	return 0;
}