-
Notifications
You must be signed in to change notification settings - Fork 1
/
riscv.js
163 lines (147 loc) · 6.09 KB
/
riscv.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
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
// prettier-ignore
const directives = [
// Architecture independent directives.
// http://sourceware.org/binutils/docs/as/Pseudo-Ops.html#Pseudo-Ops
"abort", "align", "altmacro", "ascii", "asciz",
"balign", "balignw", "balignl",
"bundle_align_mode", "bundle_lock", "bundle_unlock",
"byte", "cfi_startproc", "comm",
"data", "def", "desc", "dim", "double",
"eject", "else", "elseif", "end", "endef", "endfunc", "endif",
"equ", "equiv", "eqv", "err",
"error", "exitm", "extern", "fail", "file", "fill",
"float", "func", "global", "gnu_attribute",
"hidden", "hword", "ident", "if", "incbin", "include", "int",
"internal", "irp", "irpc", "lcomm", "lflags", "line", "linkonce",
"list", "ln", "loc", "loc_mark_labels", "local", "long",
"macro", "mri", "noaltmacro", "nolist", "octa", "offset", "org",
"p2align", "popsection", "previous", "print", "protected", "psize",
"purgem", "pushsection", "quad", "reloc", "rept", "sbttl", "scl",
"section", "set", "short", "single", "size", "skip", "sleb128",
"space", "stab", "string", "struct", "subsection", "symver", "tag",
"text", "title", "type", "uleb128", "val", "version", "vtable_entry",
"vtable_inherit", "warning", "weak", "weakref", "word",
// RISC-V
// https://github.com/riscv-non-isa/riscv-asm-manual/blob/master/riscv-asm.md#pseudo-ops
"2byte", "4byte", "8byte", "bss", "common", "globl",
"dtpreldword", "dtprelword", "dword", "half",
"insn", "macro", "endm", "option", "rodata",
"variant_cc", "zero",
];
const directivesPattern = new RegExp("\\.(?:" + directives.join("|") + ")");
const registers = /x(?:[0-9]|[1-2][0-9]|31)|pc/;
const registerAbiNames =
/zero|ra|[fsgt]p|t[0-6]|f?s(?:[0-9]|1[01])|f?a[0-7]|ft(?:[0-9]|1[01])/;
// https://github.com/riscv-non-isa/riscv-asm-manual/blob/master/riscv-asm.md#assembler-relocation-functions
// prettier-ignore
const relocationFunctions = [
"hi", "lo", "pcrel_hi", "pcrel_lo",
"tprel_hi", "tprel_lo", "tprel_add",
"tls_ie_pcrel_hi", "tls_gd_pcrel_hi", "got_pcrel_hi",
];
const relocationFunctionPatterns = new RegExp(
"%(?:" + relocationFunctions.join("|") + ")\\([^)]+\\)"
);
const instructions = (xs) =>
new RegExp(
"\\b(?:" + xs.map((x) => x.replace(/\./g, (_) => "\\.")).join("|") + ")\\b"
);
// prettier-ignore
const pseudos = instructions([
"j", "jr", "la", "lla", "lga", "li",
"beqz", "bnez", "bgez", "blez", "bgtz", "bltz",
"bgt", "bgtu", "ble", "bleu",
"seqz", "snez", "sgtz", "sltz",
"call", "tail", "fence",
"mv", "neg", "negw", "not", "nop", "ret",
"fabs.s", "fabs.d", "fmv.s", "fmv.d", "fneg.s", "fneg.d",
"sext.b", "sext.h", "sext.w",
"zext.b", "zext.h", "zext.w",
]);
// prettier-ignore
const baseI = instructions([
// RV32I/RV64I
"add", "addi", "and", "andi", "auipc", "beq", "bge", "bgeu", "blt", "bltu", "bne",
"csrrc", "csrrci", "csrrs", "csrrsi", "csrrw", "csrrwi", "ebreak", "ecall", "fence",
"fence.i", "jal", "jalr", "lb", "lbu", "lh", "lhu", "lui", "lw", "mret", "or", "ori",
"sb", "sfence.vma", "sh", "sll", "slli", "slt", "slti", "sltiu", "sltu", "sra", "srai",
"sret", "srl", "srli", "sub", "sw", "uret", "wfi", "xor", "xori",
// RV64I
"addiw", "addw", "ld", "lwu", "sd", "slliw", "sllw", "sraiw", "sraw", "srliw", "srlw",
"subw",
]);
// prettier-ignore
const extM = instructions([
// RV32M/RV64M
"div", "divu", "mul", "mulh", "mulhsu", "mulhu", "rem", "remu",
// RV64M
"divuw", "divw", "mulw", "remuw", "remw",
]);
// prettier-ignore
const extA = instructions([
// RV32A/RV64A
"amoadd.w", "amoand.w", "amomax.w", "amomaxu.w", "amomin.w", "amominu.w",
"amoor.w", "amoswap.w", "amoxor.w", "lr.w", "sc.w",
// RV64A
"amoadd.d", "amoand.d", "amomax.d", "amomaxu.d", "amomin.d", "amominu.d",
"amoor.d", "amoswap.d", "amoxor.d", "lr.d", "sc.d",
]);
// prettier-ignore
const extFD = instructions([
// RV32F/RV64D
"fadd.d", "fadd.s", "fclass.d", "fclass.s", "fcvt.d.s", "fcvt.d.w",
"fcvt.d.wu", "fcvt.s.d", "fcvt.s.w", "fcvt.s.wu", "fcvt.w.d", "fcvt.w.s",
"fcvt.wu.d", "fcvt.wu.s", "fdiv.d", "fdiv.s", "feq.d", "feq.s", "fld",
"fle.d", "fle.s", "flt.d", "flt.s", "flw", "fmadd.d", "fmadd.s", "fmax.d",
"fmax.s", "fmin.d", "fmin.s", "fmsub.d", "fmsub.s", "fmul.d", "fmul.s",
"fmv.w.x", "fmv.x.w", "fnmadd.d", "fnmadd.s", "fnmsub.d", "fnmsub.s", "fsd",
"fsgnj.d", "fsgnj.s", "fsgnjn.d", "fsgnjn.s", "fsgnjx.d", "fsgnjx.s", "fsqrt.d",
"fsqrt.s", "fsub.d", "fsub.s", "fsw",
// RV64F
"fcvt.l.s", "fcvt.lu.s", "fcvt.s.l", "fcvt.s.lu",
// RV64D
"fcvt.d.l", "fcvt.d.lu", "fcvt.l.d", "fcvt.lu.d", "fmv.d.x", "fmv.x.d",
]);
// prettier-ignore
const extC = instructions([
// RV32C/RV64C
"c.add", "c.addi", "c.addi16sp", "c.addi4spn", "c.addiw", "c.addw",
"c.and", "c.andi", "c.beqz", "c.bnez", "c.ebreak",
"c.fld", "c.fldsp", "c.flw", "c.flwsp", "c.fsd", "c.fsdsp", "c.fsw", "c.fswsp",
"c.j", "c.jal", "c.jalr", "c.jr", "c.ld", "c.ldsp",
"c.li", "c.lui", "c.lw", "c.lwsp", "c.mv", "c.nop", "c.or", "c.sd", "c.sdsp",
"c.slli", "c.srai", "c.srli", "c.sub", "c.subw", "c.sw", "c.swsp", "c.xor",
]);
export const defineMode = (CodeMirror) => {
CodeMirror.defineSimpleMode("riscv", {
meta: {
lineComment: "#",
},
start: [
{ regex: /#.*/, token: "comment" },
// Labels
{ regex: /\w+:/, token: "tag" },
{ regex: /[1-9]\d*:/, token: "tag" },
// Reference to local label
{ regex: /[1-9]\d*[bf]/, token: "variable-2" },
// Integer literal
{ regex: /-?(?:0|[1-9]\d*|0x[0-9A-Fa-f]+)\b/, token: "number" },
// String literal
{ regex: /"(?:[^\\]|\\.)*?(?:"|$)/, token: "string" },
{ regex: relocationFunctionPatterns, token: "builtin" },
// Directives
{ regex: directivesPattern, token: "attribute" },
// Instructions
{ regex: extC, token: "builtin" },
{ regex: extFD, token: "builtin" },
{ regex: extA, token: "builtin" },
{ regex: extM, token: "builtin" },
{ regex: baseI, token: "builtin" },
{ regex: pseudos, token: "builtin" },
// Registers
{ regex: registers, token: "variable" },
{ regex: registerAbiNames, token: "variable-2" },
],
});
CodeMirror.defineMIME("text/x-riscv", "riscv");
};