summaryrefslogtreecommitdiff
path: root/instruction.c
blob: 1846832789311840936b6e07001a1946adaa71ea (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
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/*
 * 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;
}

/*
 * Used as a placeholder for instructions not yet implemented by the simulator.
 */
static int unimplemented(struct nios2 *cpu, uint32_t code)
{
	info("Unsupported instruction %s (%08x) @ PC %08x\n",
			instruction_get_string(code), code, cpu->pc);

	return PC_INC_NORMAL;
}

/*
 * Used as a placeholder for all instructions which do not have an effect on the
 * simulator (e.g. flush, sync)
 */
static int nop(struct nios2 *cpu, uint32_t code)
{
	/* Nothing to do here */
	return PC_INC_NORMAL;
}

/*
 * J-Type instructions
 */

/*
 * ra <- PC + 4
 * PC <- (PC(31..28) : IMM26 * 4)
 */
static int call(struct nios2 *cpu, uint32_t code)
{
	J_TYPE(instr, code);

	cpu->gp_regs[ra] = cpu->pc + 4;
	cpu->pc = (instr->imm26 * 4) | (cpu->pc & 0xF0000000);

	return PC_INC_BY_INSTR;
}

/* PC <- (PC(31..28) : IMM26 * 4) */
static int jmpi(struct nios2 *cpu, uint32_t code)
{
	J_TYPE(instr, code);

	cpu->pc = (instr->imm26 * 4) | (cpu->pc & 0xF0000000);

	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;
}

/* rB <- rA + IMM16 */
static int addi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] + (int16_t) (instr->imm16);

	return PC_INC_NORMAL;
}

/* PC <- PC + 4 + IMM16 */
static int br(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);

	cpu->pc += 4 + (instr->imm16 & 0xFFFC);

	return PC_INC_NORMAL;
}

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

	return PC_INC_NORMAL;
}

/* rB <- rA & IMM16 */
static int andi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] & instr->imm16;

	return PC_INC_NORMAL;
}

/* rB <- rA | IMM16 */
static int ori(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] | instr->imm16;
	return PC_INC_NORMAL;
}

/*
 * if ((signed) rA < (signed) rB)
 *   PC <- PC + 4 + @(IMM16)
 * else
 *   PC <- PC + 4
 */
static int blt(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (((int32_t) gp_regs[instr->a]) < ((int32_t) gp_regs[instr->b]))
		cpu->pc += 4 + (int16_t)(instr->imm16 & 0xFFFC);
	else
		cpu->pc += 4;

	return PC_INC_BY_INSTR;
}

/* rB <- rA ^ IMM16 */
static int xori(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] ^ instr->imm16;
	return PC_INC_NORMAL;
}

/* rB <- (rA * @(IMM16))(31..0) */
static int muli(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;
	uint64_t tmp;

	/* Raise exception if instruction is not implemented */
	if (!cpu->has_mul)
		return INSTR_EXECPTION;

	tmp = gp_regs[instr->a] * ((int16_t) instr->imm16);
	gp_regs[instr->b] = (uint32_t) (tmp & BIT_MASK(32));
	return PC_INC_NORMAL;
}

/*
 * if (rA == rB)
 *   PC <- PC + 4 + @(IMM16)
 * else
 *   PC <- PC + 4
 */
static int beq(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (gp_regs[instr->a] == gp_regs[instr->b])
		cpu->pc += 4 + (int16_t)(instr->imm16 & 0xFFFC);
	else
		cpu->pc += 4;

	return PC_INC_BY_INSTR;
}

/* rB <- rA & (IMM16 : 0x0000) */
static int andhi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] & (instr->imm16 << 16);

	return PC_INC_NORMAL;
}

/* Prototype only, defined below */
static int handle_r_type_instr(struct nios2 *cpu, uint32_t code);

/* rB <- rA ^ (IMM16 : 0x0000) */
static int xorhi(struct nios2 *cpu, uint32_t code)
{
	I_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->b] = gp_regs[instr->a] ^ (instr->imm16 << 16);

	return PC_INC_NORMAL;
}

static instruction_handler i_type_instr_handlers[I_TYPE_COUNT] = {
	[CALL]		= call,
	[JMPI]		= jmpi,
	[LDBU]		= ldbu,
	[ADDI]		= addi,
	[STB]		= unimplemented,
	[BR]		= br,
	[LDB]		= unimplemented,
	[CMPGEI]	= unimplemented,
	[LDHU]		= ldhu,
	[ANDI]		= andi,
	[STH]		= unimplemented,
	[BGE]		= unimplemented,
	[LDH]		= unimplemented,
	[CMPLTI]	= unimplemented,
	[INITDA]	= unimplemented,
	[ORI]		= ori,
	[STW]		= unimplemented,
	[BLT]		= blt,
	[LDW]		= unimplemented,
	[CMPNEI]	= unimplemented,
	[FLUSHDA]	= nop,
	[XORI]		= xori,
	[BNE]		= unimplemented,
	[CMPEQI]	= unimplemented,
	[LDBUIO]	= unimplemented,
	[MULI]		= muli,
	[STBIO]		= unimplemented,
	[BEQ]		= beq,
	[LDBIO]		= unimplemented,
	[CMPGEUI]	= unimplemented,
	[LDHUIO]	= unimplemented,
	[ANDHI]		= andhi,
	[STHIO]		= unimplemented,
	[BGEU]		= unimplemented,
	[LDHIO]		= unimplemented,
	[CMPLTUI]	= unimplemented,
	[CUSTOM]	= unimplemented,
	[INITD]		= unimplemented,
	[ORHI]		= unimplemented,
	[STWIO]		= unimplemented,
	[BLTU]		= unimplemented,
	[LDWIO]		= unimplemented,
	[R_TYPE]	= handle_r_type_instr,
	[FLUSHD]	= nop,
	[XORHI]		= xorhi,
};

/*
 * R-Type instructions
 */

/* rC <- rA rotated left IMM5 bit positions */
static int roli(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;
	uint32_t a = gp_regs[instr->a];
	uint32_t shift_bits = instr->opx.imm5;

	gp_regs[instr->c] = (a  << shift_bits) | (a >> (32 - shift_bits));

	return PC_INC_NORMAL;
}

/* rC <- rA rotated left rB(4..0) bit positions */
static int rol(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;
	uint32_t a = gp_regs[instr->a];
	uint32_t shift_bits = gp_regs[instr->b] & BIT_MASK(5);

	gp_regs[instr->c] = (a  << shift_bits) | (a >> (32 - shift_bits));

	return PC_INC_NORMAL;
}

/* rC <- ~(A | rB) */
static int nor(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = ~(gp_regs[instr->a] | gp_regs[instr->b]);

	return PC_INC_NORMAL;
}

/* rC <- rA & rB */
static int and(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] & gp_regs[instr->b];

	return PC_INC_NORMAL;
}

/*
 * if ((signed) rA < (signed) rB)
 *   rC <- 1
 * else
 *   rC <- 0
 */
static int cmplt(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (((int32_t) gp_regs[instr->a]) < ((int32_t) gp_regs[instr->b]))
		gp_regs[instr->c] = 1;
	else
		gp_regs[instr->c] = 0;

	return PC_INC_NORMAL;
}

/* rC <- rA << IMM5 */
static int slli(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] << instr->opx.imm5;

	return PC_INC_NORMAL;
}

/* rC <- rA << rB(4..0) */
static int sll(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] << (gp_regs[instr->b] & BIT_MASK(5));

	return PC_INC_NORMAL;
}

/* rC <- rA | rB */
static int or(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] | gp_regs[instr->b];

	return PC_INC_NORMAL;
}

/*
 * if (rA != rB)
 *   rC <- 1
 * else
 *   rC <- 0
 */
static int cmpne(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (gp_regs[instr->a] != gp_regs[instr->b])
		gp_regs[instr->c] = 1;
	else
		gp_regs[instr->c] = 0;

	return PC_INC_NORMAL;
}

/* rC <- (unsigned) rA >> ((unsigned) IMM5)*/
static int srli(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] >> instr->opx.imm5;

	return PC_INC_NORMAL;
}

/* rC <- (unsigned) rA >> ((unsigned) rB(4..0))*/
static int srl(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] >> (gp_regs[instr->b] & BIT_MASK(5));

	return PC_INC_NORMAL;
}

/* rC <- rA ^ rB */
static int xor(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] ^ gp_regs[instr->b];

	return PC_INC_NORMAL;
}

/*
 * if (rA == rB)
 *   rC <- 1
 * else
 *   rC <- 0
 */
static int cmpeq(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (gp_regs[instr->a] == gp_regs[instr->b])
		gp_regs[instr->c] = 1;
	else
		gp_regs[instr->c] = 0;

	return PC_INC_NORMAL;
}

/* rC <- rA / rB */
static int divu(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	if (!cpu->has_div)
		return INSTR_EXECPTION;

	/* Division by zero? */
	if (gp_regs[instr->b] == 0)
		return INSTR_EXECPTION;

	gp_regs[instr->c] = gp_regs[instr->a] / gp_regs[instr->b];

	return PC_INC_NORMAL;
}

/* rC <- rA / rB */
static int div(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;
	int32_t a, b;

	if (!cpu->has_div)
		return INSTR_EXECPTION;

	b = (int32_t) gp_regs[instr->b];

	/* Division by zero? */
	if (instr->b == 0)
		return INSTR_EXECPTION;

	a = (int32_t) gp_regs[instr->a];
	gp_regs[instr->c] = (uint32_t)(a / b);

	return PC_INC_NORMAL;
}

/* rC <- ctlN */
static int rdctl(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);

	/* Instruction only allowed in supervisor mode */
	if (!nios2_in_supervisor_mode(cpu))
		return INSTR_EXECPTION;

	cpu->gp_regs[instr->c] = cpu->ctrl_regs[instr->opx.imm5];

	return PC_INC_NORMAL;
}

/* rC <- rA + rB */
static int add(struct nios2 *cpu, uint32_t code)
{
	R_TYPE(instr, code);
	uint32_t *gp_regs = cpu->gp_regs;

	gp_regs[instr->c] = gp_regs[instr->a] + gp_regs[instr->b];

	return PC_INC_NORMAL;
}

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

	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] = {
	[ERET]		= unimplemented,
	[ROLI]		= roli,
	[ROL]		= rol,
	[FLUSHP]	= nop,
	[RET]		= unimplemented,
	[NOR]		= nor,
	[MULXUU]	= unimplemented,
	[CMPGE]		= unimplemented,
	[BRET]		= unimplemented,
	[ROR]		= unimplemented,
	[FLUSHI]	= nop,
	[JMP]		= unimplemented,
	[AND]		= and,
	[CMPLT]		= cmplt,
	[SLLI]		= slli,
	[SLL]		= sll,
	[OR]		= or,
	[MULXSU]	= unimplemented,
	[CMPNE]		= cmpne,
	[SRLI]		= srli,
	[SRL]		= srl,
	[NEXTPC]	= unimplemented,
	[CALLR]		= unimplemented,
	[XOR]		= xor,
	[MULXSS]	= unimplemented,
	[CMPEQ]		= cmpeq,
	[DIVU]		= divu,
	[DIV]		= div,
	[RDCTL]		= rdctl,
	[MUL]		= unimplemented,
	[CMPGEU]	= unimplemented,
	[INITI]		= unimplemented,
	[TRAP]		= unimplemented,
	[WRCTL]		= unimplemented,
	[CMPLTU]	= unimplemented,
	[ADD]		= add,
	[BREAK]		= unimplemented,
	[SYNC]		= nop,
	[SUB]		= sub,
	[SRAI]		= unimplemented,
	[SRA]		= unimplemented,
};

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);
}

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];
}

static const char *i_type_instr_strings[I_TYPE_COUNT] = {
	[CALL]		= "call",
	[JMPI]		= "jmpi",
	[LDBU]		= "ldbu",
	[ADDI]		= "addi",
	[STB]		= "stb",
	[BR]		= "br",
	[LDB]		= "ldb",
	[CMPGEI]	= "cmpgei",
	[LDHU]		= "ldhu",
	[ANDI]		= "andi",
	[STH]		= "sth",
	[BGE]		= "bge",
	[LDH]		= "ldh",
	[CMPLTI]	= "cmplti",
	[INITDA]	= "initda",
	[ORI]		= "ori",
	[STW]		= "stw",
	[BLT]		= "blt",
	[LDW]		= "ldw",
	[CMPNEI]	= "cmpnei",
	[FLUSHDA]	= "nop",
	[XORI]		= "xori",
	[BNE]		= "bne",
	[CMPEQI]	= "cmpeqi",
	[LDBUIO]	= "ldbuio",
	[MULI]		= "muli",
	[STBIO]		= "stbio",
	[BEQ]		= "beq",
	[LDBIO]		= "ldbio",
	[CMPGEUI]	= "cmpgeui",
	[LDHUIO]	= "ldhuio",
	[ANDHI]		= "andhi",
	[STHIO]		= "sthio",
	[BGEU]		= "bgeu",
	[LDHIO]		= "ldhio",
	[CMPLTUI]	= "cmpltui",
	[CUSTOM]	= "custom",
	[INITD]		= "initd",
	[ORHI]		= "orhi",
	[STWIO]		= "stwio",
	[BLTU]		= "bltu",
	[LDWIO]		= "ldwio",
	[R_TYPE]	= "<R-type instruction>",
	[FLUSHD]	= "flushd",
	[XORHI]		= "xorhi",
};

static const char *r_type_instr_strings[R_TYPE_COUNT] = {
	[ERET]		= "eret",
	[ROLI]		= "roli",
	[ROL]		= "rol",
	[FLUSHP]	= "flushp",
	[RET]		= "ret",
	[NOR]		= "nor",
	[MULXUU]	= "mulxuu",
	[CMPGE]		= "cmpge",
	[BRET]		= "bret",
	[ROR]		= "ror",
	[FLUSHI]	= "flushi",
	[JMP]		= "jmp",
	[AND]		= "and",
	[CMPLT]		= "cmplt",
	[SLLI]		= "slli",
	[SLL]		= "sll",
	[OR]		= "or",
	[MULXSU]	= "mulxsu",
	[CMPNE]		= "cmpne",
	[SRLI]		= "srli",
	[SRL]		= "srl",
	[NEXTPC]	= "nextpc",
	[CALLR]		= "callr",
	[XOR]		= "xor",
	[MULXSS]	= "mulxss",
	[CMPEQ]		= "cmpeq",
	[DIVU]		= "divu",
	[DIV]		= "div",
	[RDCTL]		= "rdctl",
	[MUL]		= "mul",
	[CMPGEU]	= "cmpgeu",
	[INITI]		= "initi",
	[TRAP]		= "trap",
	[WRCTL]		= "wrctl",
	[CMPLTU]	= "cmpltu",
	[ADD]		= "add",
	[BREAK]		= "break",
	[SYNC]		= "sync",
	[SUB]		= "sub",
	[SRAI]		= "srai",
	[SRA]		= "sra",
};

const char *instruction_get_string(uint32_t code)
{
	uint32_t op = get_opcode(code);

	if (unlikely(op >= I_TYPE_COUNT))
		return "";
	else if (op == R_TYPE) {
		uint32_t opx = get_opxcode(code);
		if (unlikely(opx >= R_TYPE_COUNT))
			return "";
		return r_type_instr_strings[opx];
	}else
		return i_type_instr_strings[op];
}