-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.cpp
36 lines (35 loc) · 1.01 KB
/
parser.cpp
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
#include "parser.h"
#include <assert.h>
#include <stdio.h>
Inst parse_inst(const char *line) {
struct Inst ret;
if (line[0] == 'A') {
// ADD
ret.type = InstType::Add;
sscanf(line, "ADD,R%d,R%d,R%d", &ret.rd, &ret.rs1, &ret.rs2);
} else if (line[0] == 'S') {
// SUB
ret.type = InstType::Sub;
sscanf(line, "SUB,R%d,R%d,R%d", &ret.rd, &ret.rs1, &ret.rs2);
} else if (line[0] == 'M') {
// MUL
ret.type = InstType::Mul;
sscanf(line, "MUL,R%d,R%d,R%d", &ret.rd, &ret.rs1, &ret.rs2);
} else if (line[0] == 'D') {
// DIV
ret.type = InstType::Div;
sscanf(line, "DIV,R%d,R%d,R%d", &ret.rd, &ret.rs1, &ret.rs2);
} else if (line[0] == 'L') {
// LD
ret.type = InstType::Load;
sscanf(line, "LD,R%d,%x", &ret.rd, &ret.imm);
} else if (line[0] == 'J') {
// JUMP
ret.type = InstType::Jump;
sscanf(line, "JUMP,%x,R%d,%x", &ret.imm, &ret.rs1, &ret.offset);
} else {
fprintf(stderr, "Invalid instruction: %s\n", line);
assert(false);
}
return ret;
}