summaryrefslogtreecommitdiff
path: root/instruction.c
blob: b6671d1b68435acfd6b8ede9490cf5563298dadd (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
/*
 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch>
 *
 * This file is part of nios2sim-ng.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License. See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#include <stdio.h>

#include "nios2sim-ng.h"
#include "instruction.h"
#include "nios2.h"

static inline uint32_t get_opcode(uint32_t code)
{
	I_TYPE(instr, code);
	return instr->op;
}

static inline uint32_t get_opxcode(uint32_t code)
{
	R_TYPE(instr, code);
	return instr->opx.opx11;
}

static int unsupported(struct nios2 *cpu, uint32_t code)
{
	info("Unsupported instructtion %08x @ PC %08x\n", code, cpu->pc);

	return PC_INC_NORMAL;
}

/*
 * J-Type instructions
 */

static int call(struct nios2 *cpu, uint32_t code)
{
	J_TYPE(instr, code);

	return PC_INC_BY_INSTR;
}

static int jmpi(struct nios2 *cpu, uint32_t code)
{
	J_TYPE(instr, code);

	return PC_INC_BY_INSTR;
}

/*
 * I-Type instructions
 */

static int ldbu(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);

	return PC_INC_NORMAL;
}

static int addi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rB <- rA + IMM16 */
	gp_regs[instr->b] = gp_regs[instr->a] + (int16_t) (instr->imm16);
	return PC_INC_NORMAL;
}

static int ldhu(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);

	return PC_INC_NORMAL;
}

static int andi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rB <- rA & IMM16 */
	gp_regs[instr->b] = gp_regs[instr->a] & (int32_t) (instr->imm16 & BIT_MASK(16));
	return PC_INC_NORMAL;
}

static int ori(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rB <- rA | IMM16 */
	gp_regs[instr->b] = gp_regs[instr->a] | (int32_t) (instr->imm16 & BIT_MASK(16));
	return PC_INC_NORMAL;
}

static int xori(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rB <- rA ^ IMM16 */
	gp_regs[instr->b] = gp_regs[instr->a] ^ (int32_t) (instr->imm16 & BIT_MASK(16));
	return PC_INC_NORMAL;
}

/*
 * R-Type instructions
 */

static int and(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rC <- rA & rB */
	gp_regs[instr->c] = gp_regs[instr->a] & gp_regs[instr->b];
	return PC_INC_NORMAL;
}

static int or(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rC <- rA | rB */
	gp_regs[instr->c] = gp_regs[instr->a] | gp_regs[instr->b];
	return PC_INC_NORMAL;
}

static int add(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rC <- rA + rB */
	gp_regs[instr->c] = gp_regs[instr->a] + gp_regs[instr->b];
	return PC_INC_NORMAL;
}

static int sync(struct nios2 *cpu, uint32_t code)
{
	/* Nothing to do here */
	return PC_INC_NORMAL;
}

static int sub(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	/* rC <- rA - rB */
	gp_regs[instr->c] = gp_regs[instr->a] - gp_regs[instr->b];
	return PC_INC_NORMAL;
}

static instruction_handler r_type_instr_handlers[R_TYPE_COUNT] = {
	[AND]	= and,
	[OR]	= or,
	[ADD]	= add,

	[BREAK]	= unsupported,
	[SYNC]	= sync,
	[SUB]	= sub,
	[SRAI]	= unsupported,
	[SRA]	= unsupported,
};

static int handle_r_type_instr(struct nios2 *cpu, uint32_t code)
{
	uint32_t opx;
	instruction_handler handle_instr;

	opx = get_opxcode(code);
	if (unlikely(opx >= R_TYPE_COUNT)) {
		err("Invalid OPX code %08x\n", opx);
		return INSTR_ERR;
	}

	handle_instr = r_type_instr_handlers[opx];
	if (unlikely(handle_instr == NULL)) {
		err("Invalid instruction %08x\n", code);
		return INSTR_ERR;
	}

	return handle_instr(cpu, code);
}

static instruction_handler i_type_instr_handlers[I_TYPE_COUNT] = {
	[CALL]		= call,
	[JMPI]		= jmpi,
	[LDBU]		= ldbu,
	[ADDI]		= addi,
	[STB]		= unsupported,
	[BR]		= unsupported,
	[LDB]		= unsupported,
	[CMPGEI]	= unsupported,
	[LDHU]		= ldhu,
	[ANDI]		= andi,
	[STH]		= unsupported,
	[BGE]		= unsupported,
	[LDH]		= unsupported,
	[CMPLTI]	= unsupported,
	[INITDA]	= unsupported,
	[ORI]		= ori,
	[STW]		= unsupported,
	[BLT]		= unsupported,
	[LDW]		= unsupported,
	[CMPNEI]	= unsupported,
	[FLUSHDA]	= unsupported,
	[XORI]		= xori,
	[BNE]		= unsupported,

	[BLTU]		= unsupported,
	[LDWIO]		= unsupported,
	[R_TYPE]	= handle_r_type_instr,
	[FLUSHD]	= unsupported,
	[XORHI]		= unsupported,
};

instruction_handler instruction_get_handler(uint32_t code)
{
	uint32_t op = get_opcode(code);

	if (unlikely(op >= I_TYPE_COUNT))
		return NULL;
	return i_type_instr_handlers[op];
}