xref: /linux/arch/riscv/net/bpf_jit.h (revision 906fd46a65383cd639e5eec72a047efc33045d86)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Common functionality for RV32 and RV64 BPF JIT compilers
4  *
5  * Copyright (c) 2019 Björn Töpel <bjorn.topel@gmail.com>
6  *
7  */
8 
9 #ifndef _BPF_JIT_H
10 #define _BPF_JIT_H
11 
12 #include <linux/bpf.h>
13 #include <linux/filter.h>
14 #include <asm/cacheflush.h>
15 
16 static inline bool rvc_enabled(void)
17 {
18 	return IS_ENABLED(CONFIG_RISCV_ISA_C);
19 }
20 
21 static inline bool rvzbb_enabled(void)
22 {
23 	return IS_ENABLED(CONFIG_RISCV_ISA_ZBB) && riscv_has_extension_likely(RISCV_ISA_EXT_ZBB);
24 }
25 
26 enum {
27 	RV_REG_ZERO =	0,	/* The constant value 0 */
28 	RV_REG_RA =	1,	/* Return address */
29 	RV_REG_SP =	2,	/* Stack pointer */
30 	RV_REG_GP =	3,	/* Global pointer */
31 	RV_REG_TP =	4,	/* Thread pointer */
32 	RV_REG_T0 =	5,	/* Temporaries */
33 	RV_REG_T1 =	6,
34 	RV_REG_T2 =	7,
35 	RV_REG_FP =	8,	/* Saved register/frame pointer */
36 	RV_REG_S1 =	9,	/* Saved register */
37 	RV_REG_A0 =	10,	/* Function argument/return values */
38 	RV_REG_A1 =	11,	/* Function arguments */
39 	RV_REG_A2 =	12,
40 	RV_REG_A3 =	13,
41 	RV_REG_A4 =	14,
42 	RV_REG_A5 =	15,
43 	RV_REG_A6 =	16,
44 	RV_REG_A7 =	17,
45 	RV_REG_S2 =	18,	/* Saved registers */
46 	RV_REG_S3 =	19,
47 	RV_REG_S4 =	20,
48 	RV_REG_S5 =	21,
49 	RV_REG_S6 =	22,
50 	RV_REG_S7 =	23,
51 	RV_REG_S8 =	24,
52 	RV_REG_S9 =	25,
53 	RV_REG_S10 =	26,
54 	RV_REG_S11 =	27,
55 	RV_REG_T3 =	28,	/* Temporaries */
56 	RV_REG_T4 =	29,
57 	RV_REG_T5 =	30,
58 	RV_REG_T6 =	31,
59 };
60 
61 static inline bool is_creg(u8 reg)
62 {
63 	return (1 << reg) & (BIT(RV_REG_FP) |
64 			     BIT(RV_REG_S1) |
65 			     BIT(RV_REG_A0) |
66 			     BIT(RV_REG_A1) |
67 			     BIT(RV_REG_A2) |
68 			     BIT(RV_REG_A3) |
69 			     BIT(RV_REG_A4) |
70 			     BIT(RV_REG_A5));
71 }
72 
73 struct rv_jit_context {
74 	struct bpf_prog *prog;
75 	u16 *insns;		/* RV insns */
76 	u16 *ro_insns;
77 	int ninsns;
78 	int prologue_len;
79 	int epilogue_offset;
80 	int *offset;		/* BPF to RV */
81 	int nexentries;
82 	unsigned long flags;
83 	int stack_size;
84 	u64 arena_vm_start;
85 	u64 user_vm_start;
86 };
87 
88 /* Convert from ninsns to bytes. */
89 static inline int ninsns_rvoff(int ninsns)
90 {
91 	return ninsns << 1;
92 }
93 
94 struct rv_jit_data {
95 	struct bpf_binary_header *header;
96 	struct bpf_binary_header *ro_header;
97 	u8 *image;
98 	u8 *ro_image;
99 	struct rv_jit_context ctx;
100 };
101 
102 static inline void bpf_fill_ill_insns(void *area, unsigned int size)
103 {
104 	memset(area, 0, size);
105 }
106 
107 static inline void bpf_flush_icache(void *start, void *end)
108 {
109 	flush_icache_range((unsigned long)start, (unsigned long)end);
110 }
111 
112 /* Emit a 4-byte riscv instruction. */
113 static inline void emit(const u32 insn, struct rv_jit_context *ctx)
114 {
115 	if (ctx->insns) {
116 		ctx->insns[ctx->ninsns] = insn;
117 		ctx->insns[ctx->ninsns + 1] = (insn >> 16);
118 	}
119 
120 	ctx->ninsns += 2;
121 }
122 
123 /* Emit a 2-byte riscv compressed instruction. */
124 static inline void emitc(const u16 insn, struct rv_jit_context *ctx)
125 {
126 	BUILD_BUG_ON(!rvc_enabled());
127 
128 	if (ctx->insns)
129 		ctx->insns[ctx->ninsns] = insn;
130 
131 	ctx->ninsns++;
132 }
133 
134 static inline int epilogue_offset(struct rv_jit_context *ctx)
135 {
136 	int to = ctx->epilogue_offset, from = ctx->ninsns;
137 
138 	return ninsns_rvoff(to - from);
139 }
140 
141 /* Return -1 or inverted cond. */
142 static inline int invert_bpf_cond(u8 cond)
143 {
144 	switch (cond) {
145 	case BPF_JEQ:
146 		return BPF_JNE;
147 	case BPF_JGT:
148 		return BPF_JLE;
149 	case BPF_JLT:
150 		return BPF_JGE;
151 	case BPF_JGE:
152 		return BPF_JLT;
153 	case BPF_JLE:
154 		return BPF_JGT;
155 	case BPF_JNE:
156 		return BPF_JEQ;
157 	case BPF_JSGT:
158 		return BPF_JSLE;
159 	case BPF_JSLT:
160 		return BPF_JSGE;
161 	case BPF_JSGE:
162 		return BPF_JSLT;
163 	case BPF_JSLE:
164 		return BPF_JSGT;
165 	}
166 	return -1;
167 }
168 
169 static inline bool is_6b_int(long val)
170 {
171 	return -(1L << 5) <= val && val < (1L << 5);
172 }
173 
174 static inline bool is_7b_uint(unsigned long val)
175 {
176 	return val < (1UL << 7);
177 }
178 
179 static inline bool is_8b_uint(unsigned long val)
180 {
181 	return val < (1UL << 8);
182 }
183 
184 static inline bool is_9b_uint(unsigned long val)
185 {
186 	return val < (1UL << 9);
187 }
188 
189 static inline bool is_10b_int(long val)
190 {
191 	return -(1L << 9) <= val && val < (1L << 9);
192 }
193 
194 static inline bool is_10b_uint(unsigned long val)
195 {
196 	return val < (1UL << 10);
197 }
198 
199 static inline bool is_12b_int(long val)
200 {
201 	return -(1L << 11) <= val && val < (1L << 11);
202 }
203 
204 static inline int is_12b_check(int off, int insn)
205 {
206 	if (!is_12b_int(off)) {
207 		pr_err("bpf-jit: insn=%d 12b < offset=%d not supported yet!\n",
208 		       insn, (int)off);
209 		return -1;
210 	}
211 	return 0;
212 }
213 
214 static inline bool is_13b_int(long val)
215 {
216 	return -(1L << 12) <= val && val < (1L << 12);
217 }
218 
219 static inline bool is_21b_int(long val)
220 {
221 	return -(1L << 20) <= val && val < (1L << 20);
222 }
223 
224 static inline int rv_offset(int insn, int off, struct rv_jit_context *ctx)
225 {
226 	int from, to;
227 
228 	off++; /* BPF branch is from PC+1, RV is from PC */
229 	from = (insn > 0) ? ctx->offset[insn - 1] : ctx->prologue_len;
230 	to = (insn + off > 0) ? ctx->offset[insn + off - 1] : ctx->prologue_len;
231 	return ninsns_rvoff(to - from);
232 }
233 
234 /* Instruction formats. */
235 
236 static inline u32 rv_r_insn(u8 funct7, u8 rs2, u8 rs1, u8 funct3, u8 rd,
237 			    u8 opcode)
238 {
239 	return (funct7 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
240 		(rd << 7) | opcode;
241 }
242 
243 static inline u32 rv_i_insn(u16 imm11_0, u8 rs1, u8 funct3, u8 rd, u8 opcode)
244 {
245 	return (imm11_0 << 20) | (rs1 << 15) | (funct3 << 12) | (rd << 7) |
246 		opcode;
247 }
248 
249 static inline u32 rv_s_insn(u16 imm11_0, u8 rs2, u8 rs1, u8 funct3, u8 opcode)
250 {
251 	u8 imm11_5 = imm11_0 >> 5, imm4_0 = imm11_0 & 0x1f;
252 
253 	return (imm11_5 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
254 		(imm4_0 << 7) | opcode;
255 }
256 
257 static inline u32 rv_b_insn(u16 imm12_1, u8 rs2, u8 rs1, u8 funct3, u8 opcode)
258 {
259 	u8 imm12 = ((imm12_1 & 0x800) >> 5) | ((imm12_1 & 0x3f0) >> 4);
260 	u8 imm4_1 = ((imm12_1 & 0xf) << 1) | ((imm12_1 & 0x400) >> 10);
261 
262 	return (imm12 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
263 		(imm4_1 << 7) | opcode;
264 }
265 
266 static inline u32 rv_u_insn(u32 imm31_12, u8 rd, u8 opcode)
267 {
268 	return (imm31_12 << 12) | (rd << 7) | opcode;
269 }
270 
271 static inline u32 rv_j_insn(u32 imm20_1, u8 rd, u8 opcode)
272 {
273 	u32 imm;
274 
275 	imm = (imm20_1 & 0x80000) | ((imm20_1 & 0x3ff) << 9) |
276 		((imm20_1 & 0x400) >> 2) | ((imm20_1 & 0x7f800) >> 11);
277 
278 	return (imm << 12) | (rd << 7) | opcode;
279 }
280 
281 static inline u32 rv_amo_insn(u8 funct5, u8 aq, u8 rl, u8 rs2, u8 rs1,
282 			      u8 funct3, u8 rd, u8 opcode)
283 {
284 	u8 funct7 = (funct5 << 2) | (aq << 1) | rl;
285 
286 	return rv_r_insn(funct7, rs2, rs1, funct3, rd, opcode);
287 }
288 
289 /* RISC-V compressed instruction formats. */
290 
291 static inline u16 rv_cr_insn(u8 funct4, u8 rd, u8 rs2, u8 op)
292 {
293 	return (funct4 << 12) | (rd << 7) | (rs2 << 2) | op;
294 }
295 
296 static inline u16 rv_ci_insn(u8 funct3, u32 imm6, u8 rd, u8 op)
297 {
298 	u32 imm;
299 
300 	imm = ((imm6 & 0x20) << 7) | ((imm6 & 0x1f) << 2);
301 	return (funct3 << 13) | (rd << 7) | op | imm;
302 }
303 
304 static inline u16 rv_css_insn(u8 funct3, u32 uimm, u8 rs2, u8 op)
305 {
306 	return (funct3 << 13) | (uimm << 7) | (rs2 << 2) | op;
307 }
308 
309 static inline u16 rv_ciw_insn(u8 funct3, u32 uimm, u8 rd, u8 op)
310 {
311 	return (funct3 << 13) | (uimm << 5) | ((rd & 0x7) << 2) | op;
312 }
313 
314 static inline u16 rv_cl_insn(u8 funct3, u32 imm_hi, u8 rs1, u32 imm_lo, u8 rd,
315 			     u8 op)
316 {
317 	return (funct3 << 13) | (imm_hi << 10) | ((rs1 & 0x7) << 7) |
318 		(imm_lo << 5) | ((rd & 0x7) << 2) | op;
319 }
320 
321 static inline u16 rv_cs_insn(u8 funct3, u32 imm_hi, u8 rs1, u32 imm_lo, u8 rs2,
322 			     u8 op)
323 {
324 	return (funct3 << 13) | (imm_hi << 10) | ((rs1 & 0x7) << 7) |
325 		(imm_lo << 5) | ((rs2 & 0x7) << 2) | op;
326 }
327 
328 static inline u16 rv_ca_insn(u8 funct6, u8 rd, u8 funct2, u8 rs2, u8 op)
329 {
330 	return (funct6 << 10) | ((rd & 0x7) << 7) | (funct2 << 5) |
331 		((rs2 & 0x7) << 2) | op;
332 }
333 
334 static inline u16 rv_cb_insn(u8 funct3, u32 imm6, u8 funct2, u8 rd, u8 op)
335 {
336 	u32 imm;
337 
338 	imm = ((imm6 & 0x20) << 7) | ((imm6 & 0x1f) << 2);
339 	return (funct3 << 13) | (funct2 << 10) | ((rd & 0x7) << 7) | op | imm;
340 }
341 
342 /* Instructions shared by both RV32 and RV64. */
343 
344 static inline u32 rv_addi(u8 rd, u8 rs1, u16 imm11_0)
345 {
346 	return rv_i_insn(imm11_0, rs1, 0, rd, 0x13);
347 }
348 
349 static inline u32 rv_andi(u8 rd, u8 rs1, u16 imm11_0)
350 {
351 	return rv_i_insn(imm11_0, rs1, 7, rd, 0x13);
352 }
353 
354 static inline u32 rv_ori(u8 rd, u8 rs1, u16 imm11_0)
355 {
356 	return rv_i_insn(imm11_0, rs1, 6, rd, 0x13);
357 }
358 
359 static inline u32 rv_xori(u8 rd, u8 rs1, u16 imm11_0)
360 {
361 	return rv_i_insn(imm11_0, rs1, 4, rd, 0x13);
362 }
363 
364 static inline u32 rv_slli(u8 rd, u8 rs1, u16 imm11_0)
365 {
366 	return rv_i_insn(imm11_0, rs1, 1, rd, 0x13);
367 }
368 
369 static inline u32 rv_srli(u8 rd, u8 rs1, u16 imm11_0)
370 {
371 	return rv_i_insn(imm11_0, rs1, 5, rd, 0x13);
372 }
373 
374 static inline u32 rv_srai(u8 rd, u8 rs1, u16 imm11_0)
375 {
376 	return rv_i_insn(0x400 | imm11_0, rs1, 5, rd, 0x13);
377 }
378 
379 static inline u32 rv_lui(u8 rd, u32 imm31_12)
380 {
381 	return rv_u_insn(imm31_12, rd, 0x37);
382 }
383 
384 static inline u32 rv_auipc(u8 rd, u32 imm31_12)
385 {
386 	return rv_u_insn(imm31_12, rd, 0x17);
387 }
388 
389 static inline u32 rv_add(u8 rd, u8 rs1, u8 rs2)
390 {
391 	return rv_r_insn(0, rs2, rs1, 0, rd, 0x33);
392 }
393 
394 static inline u32 rv_sub(u8 rd, u8 rs1, u8 rs2)
395 {
396 	return rv_r_insn(0x20, rs2, rs1, 0, rd, 0x33);
397 }
398 
399 static inline u32 rv_sltu(u8 rd, u8 rs1, u8 rs2)
400 {
401 	return rv_r_insn(0, rs2, rs1, 3, rd, 0x33);
402 }
403 
404 static inline u32 rv_and(u8 rd, u8 rs1, u8 rs2)
405 {
406 	return rv_r_insn(0, rs2, rs1, 7, rd, 0x33);
407 }
408 
409 static inline u32 rv_or(u8 rd, u8 rs1, u8 rs2)
410 {
411 	return rv_r_insn(0, rs2, rs1, 6, rd, 0x33);
412 }
413 
414 static inline u32 rv_xor(u8 rd, u8 rs1, u8 rs2)
415 {
416 	return rv_r_insn(0, rs2, rs1, 4, rd, 0x33);
417 }
418 
419 static inline u32 rv_sll(u8 rd, u8 rs1, u8 rs2)
420 {
421 	return rv_r_insn(0, rs2, rs1, 1, rd, 0x33);
422 }
423 
424 static inline u32 rv_srl(u8 rd, u8 rs1, u8 rs2)
425 {
426 	return rv_r_insn(0, rs2, rs1, 5, rd, 0x33);
427 }
428 
429 static inline u32 rv_sra(u8 rd, u8 rs1, u8 rs2)
430 {
431 	return rv_r_insn(0x20, rs2, rs1, 5, rd, 0x33);
432 }
433 
434 static inline u32 rv_mul(u8 rd, u8 rs1, u8 rs2)
435 {
436 	return rv_r_insn(1, rs2, rs1, 0, rd, 0x33);
437 }
438 
439 static inline u32 rv_mulhu(u8 rd, u8 rs1, u8 rs2)
440 {
441 	return rv_r_insn(1, rs2, rs1, 3, rd, 0x33);
442 }
443 
444 static inline u32 rv_div(u8 rd, u8 rs1, u8 rs2)
445 {
446 	return rv_r_insn(1, rs2, rs1, 4, rd, 0x33);
447 }
448 
449 static inline u32 rv_divu(u8 rd, u8 rs1, u8 rs2)
450 {
451 	return rv_r_insn(1, rs2, rs1, 5, rd, 0x33);
452 }
453 
454 static inline u32 rv_rem(u8 rd, u8 rs1, u8 rs2)
455 {
456 	return rv_r_insn(1, rs2, rs1, 6, rd, 0x33);
457 }
458 
459 static inline u32 rv_remu(u8 rd, u8 rs1, u8 rs2)
460 {
461 	return rv_r_insn(1, rs2, rs1, 7, rd, 0x33);
462 }
463 
464 static inline u32 rv_jal(u8 rd, u32 imm20_1)
465 {
466 	return rv_j_insn(imm20_1, rd, 0x6f);
467 }
468 
469 static inline u32 rv_jalr(u8 rd, u8 rs1, u16 imm11_0)
470 {
471 	return rv_i_insn(imm11_0, rs1, 0, rd, 0x67);
472 }
473 
474 static inline u32 rv_beq(u8 rs1, u8 rs2, u16 imm12_1)
475 {
476 	return rv_b_insn(imm12_1, rs2, rs1, 0, 0x63);
477 }
478 
479 static inline u32 rv_bne(u8 rs1, u8 rs2, u16 imm12_1)
480 {
481 	return rv_b_insn(imm12_1, rs2, rs1, 1, 0x63);
482 }
483 
484 static inline u32 rv_bltu(u8 rs1, u8 rs2, u16 imm12_1)
485 {
486 	return rv_b_insn(imm12_1, rs2, rs1, 6, 0x63);
487 }
488 
489 static inline u32 rv_bgtu(u8 rs1, u8 rs2, u16 imm12_1)
490 {
491 	return rv_bltu(rs2, rs1, imm12_1);
492 }
493 
494 static inline u32 rv_bgeu(u8 rs1, u8 rs2, u16 imm12_1)
495 {
496 	return rv_b_insn(imm12_1, rs2, rs1, 7, 0x63);
497 }
498 
499 static inline u32 rv_bleu(u8 rs1, u8 rs2, u16 imm12_1)
500 {
501 	return rv_bgeu(rs2, rs1, imm12_1);
502 }
503 
504 static inline u32 rv_blt(u8 rs1, u8 rs2, u16 imm12_1)
505 {
506 	return rv_b_insn(imm12_1, rs2, rs1, 4, 0x63);
507 }
508 
509 static inline u32 rv_bgt(u8 rs1, u8 rs2, u16 imm12_1)
510 {
511 	return rv_blt(rs2, rs1, imm12_1);
512 }
513 
514 static inline u32 rv_bge(u8 rs1, u8 rs2, u16 imm12_1)
515 {
516 	return rv_b_insn(imm12_1, rs2, rs1, 5, 0x63);
517 }
518 
519 static inline u32 rv_ble(u8 rs1, u8 rs2, u16 imm12_1)
520 {
521 	return rv_bge(rs2, rs1, imm12_1);
522 }
523 
524 static inline u32 rv_lb(u8 rd, u16 imm11_0, u8 rs1)
525 {
526 	return rv_i_insn(imm11_0, rs1, 0, rd, 0x03);
527 }
528 
529 static inline u32 rv_lh(u8 rd, u16 imm11_0, u8 rs1)
530 {
531 	return rv_i_insn(imm11_0, rs1, 1, rd, 0x03);
532 }
533 
534 static inline u32 rv_lw(u8 rd, u16 imm11_0, u8 rs1)
535 {
536 	return rv_i_insn(imm11_0, rs1, 2, rd, 0x03);
537 }
538 
539 static inline u32 rv_lbu(u8 rd, u16 imm11_0, u8 rs1)
540 {
541 	return rv_i_insn(imm11_0, rs1, 4, rd, 0x03);
542 }
543 
544 static inline u32 rv_lhu(u8 rd, u16 imm11_0, u8 rs1)
545 {
546 	return rv_i_insn(imm11_0, rs1, 5, rd, 0x03);
547 }
548 
549 static inline u32 rv_sb(u8 rs1, u16 imm11_0, u8 rs2)
550 {
551 	return rv_s_insn(imm11_0, rs2, rs1, 0, 0x23);
552 }
553 
554 static inline u32 rv_sh(u8 rs1, u16 imm11_0, u8 rs2)
555 {
556 	return rv_s_insn(imm11_0, rs2, rs1, 1, 0x23);
557 }
558 
559 static inline u32 rv_sw(u8 rs1, u16 imm11_0, u8 rs2)
560 {
561 	return rv_s_insn(imm11_0, rs2, rs1, 2, 0x23);
562 }
563 
564 static inline u32 rv_amoadd_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
565 {
566 	return rv_amo_insn(0, aq, rl, rs2, rs1, 2, rd, 0x2f);
567 }
568 
569 static inline u32 rv_amoand_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
570 {
571 	return rv_amo_insn(0xc, aq, rl, rs2, rs1, 2, rd, 0x2f);
572 }
573 
574 static inline u32 rv_amoor_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
575 {
576 	return rv_amo_insn(0x8, aq, rl, rs2, rs1, 2, rd, 0x2f);
577 }
578 
579 static inline u32 rv_amoxor_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
580 {
581 	return rv_amo_insn(0x4, aq, rl, rs2, rs1, 2, rd, 0x2f);
582 }
583 
584 static inline u32 rv_amoswap_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
585 {
586 	return rv_amo_insn(0x1, aq, rl, rs2, rs1, 2, rd, 0x2f);
587 }
588 
589 static inline u32 rv_lr_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
590 {
591 	return rv_amo_insn(0x2, aq, rl, rs2, rs1, 2, rd, 0x2f);
592 }
593 
594 static inline u32 rv_sc_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
595 {
596 	return rv_amo_insn(0x3, aq, rl, rs2, rs1, 2, rd, 0x2f);
597 }
598 
599 static inline u32 rv_fence(u8 pred, u8 succ)
600 {
601 	u16 imm11_0 = pred << 4 | succ;
602 
603 	return rv_i_insn(imm11_0, 0, 0, 0, 0xf);
604 }
605 
606 static inline u32 rv_nop(void)
607 {
608 	return rv_i_insn(0, 0, 0, 0, 0x13);
609 }
610 
611 /* RVC instructions. */
612 
613 static inline u16 rvc_addi4spn(u8 rd, u32 imm10)
614 {
615 	u32 imm;
616 
617 	imm = ((imm10 & 0x30) << 2) | ((imm10 & 0x3c0) >> 4) |
618 		((imm10 & 0x4) >> 1) | ((imm10 & 0x8) >> 3);
619 	return rv_ciw_insn(0x0, imm, rd, 0x0);
620 }
621 
622 static inline u16 rvc_lw(u8 rd, u32 imm7, u8 rs1)
623 {
624 	u32 imm_hi, imm_lo;
625 
626 	imm_hi = (imm7 & 0x38) >> 3;
627 	imm_lo = ((imm7 & 0x4) >> 1) | ((imm7 & 0x40) >> 6);
628 	return rv_cl_insn(0x2, imm_hi, rs1, imm_lo, rd, 0x0);
629 }
630 
631 static inline u16 rvc_sw(u8 rs1, u32 imm7, u8 rs2)
632 {
633 	u32 imm_hi, imm_lo;
634 
635 	imm_hi = (imm7 & 0x38) >> 3;
636 	imm_lo = ((imm7 & 0x4) >> 1) | ((imm7 & 0x40) >> 6);
637 	return rv_cs_insn(0x6, imm_hi, rs1, imm_lo, rs2, 0x0);
638 }
639 
640 static inline u16 rvc_addi(u8 rd, u32 imm6)
641 {
642 	return rv_ci_insn(0, imm6, rd, 0x1);
643 }
644 
645 static inline u16 rvc_li(u8 rd, u32 imm6)
646 {
647 	return rv_ci_insn(0x2, imm6, rd, 0x1);
648 }
649 
650 static inline u16 rvc_addi16sp(u32 imm10)
651 {
652 	u32 imm;
653 
654 	imm = ((imm10 & 0x200) >> 4) | (imm10 & 0x10) | ((imm10 & 0x40) >> 3) |
655 		((imm10 & 0x180) >> 6) | ((imm10 & 0x20) >> 5);
656 	return rv_ci_insn(0x3, imm, RV_REG_SP, 0x1);
657 }
658 
659 static inline u16 rvc_lui(u8 rd, u32 imm6)
660 {
661 	return rv_ci_insn(0x3, imm6, rd, 0x1);
662 }
663 
664 static inline u16 rvc_srli(u8 rd, u32 imm6)
665 {
666 	return rv_cb_insn(0x4, imm6, 0, rd, 0x1);
667 }
668 
669 static inline u16 rvc_srai(u8 rd, u32 imm6)
670 {
671 	return rv_cb_insn(0x4, imm6, 0x1, rd, 0x1);
672 }
673 
674 static inline u16 rvc_andi(u8 rd, u32 imm6)
675 {
676 	return rv_cb_insn(0x4, imm6, 0x2, rd, 0x1);
677 }
678 
679 static inline u16 rvc_sub(u8 rd, u8 rs)
680 {
681 	return rv_ca_insn(0x23, rd, 0, rs, 0x1);
682 }
683 
684 static inline u16 rvc_xor(u8 rd, u8 rs)
685 {
686 	return rv_ca_insn(0x23, rd, 0x1, rs, 0x1);
687 }
688 
689 static inline u16 rvc_or(u8 rd, u8 rs)
690 {
691 	return rv_ca_insn(0x23, rd, 0x2, rs, 0x1);
692 }
693 
694 static inline u16 rvc_and(u8 rd, u8 rs)
695 {
696 	return rv_ca_insn(0x23, rd, 0x3, rs, 0x1);
697 }
698 
699 static inline u16 rvc_slli(u8 rd, u32 imm6)
700 {
701 	return rv_ci_insn(0, imm6, rd, 0x2);
702 }
703 
704 static inline u16 rvc_lwsp(u8 rd, u32 imm8)
705 {
706 	u32 imm;
707 
708 	imm = ((imm8 & 0xc0) >> 6) | (imm8 & 0x3c);
709 	return rv_ci_insn(0x2, imm, rd, 0x2);
710 }
711 
712 static inline u16 rvc_jr(u8 rs1)
713 {
714 	return rv_cr_insn(0x8, rs1, RV_REG_ZERO, 0x2);
715 }
716 
717 static inline u16 rvc_mv(u8 rd, u8 rs)
718 {
719 	return rv_cr_insn(0x8, rd, rs, 0x2);
720 }
721 
722 static inline u16 rvc_jalr(u8 rs1)
723 {
724 	return rv_cr_insn(0x9, rs1, RV_REG_ZERO, 0x2);
725 }
726 
727 static inline u16 rvc_add(u8 rd, u8 rs)
728 {
729 	return rv_cr_insn(0x9, rd, rs, 0x2);
730 }
731 
732 static inline u16 rvc_swsp(u32 imm8, u8 rs2)
733 {
734 	u32 imm;
735 
736 	imm = (imm8 & 0x3c) | ((imm8 & 0xc0) >> 6);
737 	return rv_css_insn(0x6, imm, rs2, 0x2);
738 }
739 
740 /* RVZBB instructions. */
741 static inline u32 rvzbb_sextb(u8 rd, u8 rs1)
742 {
743 	return rv_i_insn(0x604, rs1, 1, rd, 0x13);
744 }
745 
746 static inline u32 rvzbb_sexth(u8 rd, u8 rs1)
747 {
748 	return rv_i_insn(0x605, rs1, 1, rd, 0x13);
749 }
750 
751 static inline u32 rvzbb_zexth(u8 rd, u8 rs)
752 {
753 	if (IS_ENABLED(CONFIG_64BIT))
754 		return rv_i_insn(0x80, rs, 4, rd, 0x3b);
755 
756 	return rv_i_insn(0x80, rs, 4, rd, 0x33);
757 }
758 
759 static inline u32 rvzbb_rev8(u8 rd, u8 rs)
760 {
761 	if (IS_ENABLED(CONFIG_64BIT))
762 		return rv_i_insn(0x6b8, rs, 5, rd, 0x13);
763 
764 	return rv_i_insn(0x698, rs, 5, rd, 0x13);
765 }
766 
767 /*
768  * RV64-only instructions.
769  *
770  * These instructions are not available on RV32.  Wrap them below a #if to
771  * ensure that the RV32 JIT doesn't emit any of these instructions.
772  */
773 
774 #if __riscv_xlen == 64
775 
776 static inline u32 rv_addiw(u8 rd, u8 rs1, u16 imm11_0)
777 {
778 	return rv_i_insn(imm11_0, rs1, 0, rd, 0x1b);
779 }
780 
781 static inline u32 rv_slliw(u8 rd, u8 rs1, u16 imm11_0)
782 {
783 	return rv_i_insn(imm11_0, rs1, 1, rd, 0x1b);
784 }
785 
786 static inline u32 rv_srliw(u8 rd, u8 rs1, u16 imm11_0)
787 {
788 	return rv_i_insn(imm11_0, rs1, 5, rd, 0x1b);
789 }
790 
791 static inline u32 rv_sraiw(u8 rd, u8 rs1, u16 imm11_0)
792 {
793 	return rv_i_insn(0x400 | imm11_0, rs1, 5, rd, 0x1b);
794 }
795 
796 static inline u32 rv_addw(u8 rd, u8 rs1, u8 rs2)
797 {
798 	return rv_r_insn(0, rs2, rs1, 0, rd, 0x3b);
799 }
800 
801 static inline u32 rv_subw(u8 rd, u8 rs1, u8 rs2)
802 {
803 	return rv_r_insn(0x20, rs2, rs1, 0, rd, 0x3b);
804 }
805 
806 static inline u32 rv_sllw(u8 rd, u8 rs1, u8 rs2)
807 {
808 	return rv_r_insn(0, rs2, rs1, 1, rd, 0x3b);
809 }
810 
811 static inline u32 rv_srlw(u8 rd, u8 rs1, u8 rs2)
812 {
813 	return rv_r_insn(0, rs2, rs1, 5, rd, 0x3b);
814 }
815 
816 static inline u32 rv_sraw(u8 rd, u8 rs1, u8 rs2)
817 {
818 	return rv_r_insn(0x20, rs2, rs1, 5, rd, 0x3b);
819 }
820 
821 static inline u32 rv_mulw(u8 rd, u8 rs1, u8 rs2)
822 {
823 	return rv_r_insn(1, rs2, rs1, 0, rd, 0x3b);
824 }
825 
826 static inline u32 rv_divw(u8 rd, u8 rs1, u8 rs2)
827 {
828 	return rv_r_insn(1, rs2, rs1, 4, rd, 0x3b);
829 }
830 
831 static inline u32 rv_divuw(u8 rd, u8 rs1, u8 rs2)
832 {
833 	return rv_r_insn(1, rs2, rs1, 5, rd, 0x3b);
834 }
835 
836 static inline u32 rv_remw(u8 rd, u8 rs1, u8 rs2)
837 {
838 	return rv_r_insn(1, rs2, rs1, 6, rd, 0x3b);
839 }
840 
841 static inline u32 rv_remuw(u8 rd, u8 rs1, u8 rs2)
842 {
843 	return rv_r_insn(1, rs2, rs1, 7, rd, 0x3b);
844 }
845 
846 static inline u32 rv_ld(u8 rd, u16 imm11_0, u8 rs1)
847 {
848 	return rv_i_insn(imm11_0, rs1, 3, rd, 0x03);
849 }
850 
851 static inline u32 rv_lwu(u8 rd, u16 imm11_0, u8 rs1)
852 {
853 	return rv_i_insn(imm11_0, rs1, 6, rd, 0x03);
854 }
855 
856 static inline u32 rv_sd(u8 rs1, u16 imm11_0, u8 rs2)
857 {
858 	return rv_s_insn(imm11_0, rs2, rs1, 3, 0x23);
859 }
860 
861 static inline u32 rv_amoadd_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
862 {
863 	return rv_amo_insn(0, aq, rl, rs2, rs1, 3, rd, 0x2f);
864 }
865 
866 static inline u32 rv_amoand_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
867 {
868 	return rv_amo_insn(0xc, aq, rl, rs2, rs1, 3, rd, 0x2f);
869 }
870 
871 static inline u32 rv_amoor_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
872 {
873 	return rv_amo_insn(0x8, aq, rl, rs2, rs1, 3, rd, 0x2f);
874 }
875 
876 static inline u32 rv_amoxor_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
877 {
878 	return rv_amo_insn(0x4, aq, rl, rs2, rs1, 3, rd, 0x2f);
879 }
880 
881 static inline u32 rv_amoswap_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
882 {
883 	return rv_amo_insn(0x1, aq, rl, rs2, rs1, 3, rd, 0x2f);
884 }
885 
886 static inline u32 rv_lr_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
887 {
888 	return rv_amo_insn(0x2, aq, rl, rs2, rs1, 3, rd, 0x2f);
889 }
890 
891 static inline u32 rv_sc_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
892 {
893 	return rv_amo_insn(0x3, aq, rl, rs2, rs1, 3, rd, 0x2f);
894 }
895 
896 /* RV64-only RVC instructions. */
897 
898 static inline u16 rvc_ld(u8 rd, u32 imm8, u8 rs1)
899 {
900 	u32 imm_hi, imm_lo;
901 
902 	imm_hi = (imm8 & 0x38) >> 3;
903 	imm_lo = (imm8 & 0xc0) >> 6;
904 	return rv_cl_insn(0x3, imm_hi, rs1, imm_lo, rd, 0x0);
905 }
906 
907 static inline u16 rvc_sd(u8 rs1, u32 imm8, u8 rs2)
908 {
909 	u32 imm_hi, imm_lo;
910 
911 	imm_hi = (imm8 & 0x38) >> 3;
912 	imm_lo = (imm8 & 0xc0) >> 6;
913 	return rv_cs_insn(0x7, imm_hi, rs1, imm_lo, rs2, 0x0);
914 }
915 
916 static inline u16 rvc_subw(u8 rd, u8 rs)
917 {
918 	return rv_ca_insn(0x27, rd, 0, rs, 0x1);
919 }
920 
921 static inline u16 rvc_addiw(u8 rd, u32 imm6)
922 {
923 	return rv_ci_insn(0x1, imm6, rd, 0x1);
924 }
925 
926 static inline u16 rvc_ldsp(u8 rd, u32 imm9)
927 {
928 	u32 imm;
929 
930 	imm = ((imm9 & 0x1c0) >> 6) | (imm9 & 0x38);
931 	return rv_ci_insn(0x3, imm, rd, 0x2);
932 }
933 
934 static inline u16 rvc_sdsp(u32 imm9, u8 rs2)
935 {
936 	u32 imm;
937 
938 	imm = (imm9 & 0x38) | ((imm9 & 0x1c0) >> 6);
939 	return rv_css_insn(0x7, imm, rs2, 0x2);
940 }
941 
942 #endif /* __riscv_xlen == 64 */
943 
944 /* Helper functions that emit RVC instructions when possible. */
945 
946 static inline void emit_jalr(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
947 {
948 	if (rvc_enabled() && rd == RV_REG_RA && rs && !imm)
949 		emitc(rvc_jalr(rs), ctx);
950 	else if (rvc_enabled() && !rd && rs && !imm)
951 		emitc(rvc_jr(rs), ctx);
952 	else
953 		emit(rv_jalr(rd, rs, imm), ctx);
954 }
955 
956 static inline void emit_mv(u8 rd, u8 rs, struct rv_jit_context *ctx)
957 {
958 	if (rvc_enabled() && rd && rs)
959 		emitc(rvc_mv(rd, rs), ctx);
960 	else
961 		emit(rv_addi(rd, rs, 0), ctx);
962 }
963 
964 static inline void emit_add(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
965 {
966 	if (rvc_enabled() && rd && rd == rs1 && rs2)
967 		emitc(rvc_add(rd, rs2), ctx);
968 	else
969 		emit(rv_add(rd, rs1, rs2), ctx);
970 }
971 
972 static inline void emit_addi(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
973 {
974 	if (rvc_enabled() && rd == RV_REG_SP && rd == rs && is_10b_int(imm) && imm && !(imm & 0xf))
975 		emitc(rvc_addi16sp(imm), ctx);
976 	else if (rvc_enabled() && is_creg(rd) && rs == RV_REG_SP && is_10b_uint(imm) &&
977 		 !(imm & 0x3) && imm)
978 		emitc(rvc_addi4spn(rd, imm), ctx);
979 	else if (rvc_enabled() && rd && rd == rs && imm && is_6b_int(imm))
980 		emitc(rvc_addi(rd, imm), ctx);
981 	else
982 		emit(rv_addi(rd, rs, imm), ctx);
983 }
984 
985 static inline void emit_li(u8 rd, s32 imm, struct rv_jit_context *ctx)
986 {
987 	if (rvc_enabled() && rd && is_6b_int(imm))
988 		emitc(rvc_li(rd, imm), ctx);
989 	else
990 		emit(rv_addi(rd, RV_REG_ZERO, imm), ctx);
991 }
992 
993 static inline void emit_lui(u8 rd, s32 imm, struct rv_jit_context *ctx)
994 {
995 	if (rvc_enabled() && rd && rd != RV_REG_SP && is_6b_int(imm) && imm)
996 		emitc(rvc_lui(rd, imm), ctx);
997 	else
998 		emit(rv_lui(rd, imm), ctx);
999 }
1000 
1001 static inline void emit_slli(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
1002 {
1003 	if (rvc_enabled() && rd && rd == rs && imm && (u32)imm < __riscv_xlen)
1004 		emitc(rvc_slli(rd, imm), ctx);
1005 	else
1006 		emit(rv_slli(rd, rs, imm), ctx);
1007 }
1008 
1009 static inline void emit_andi(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
1010 {
1011 	if (rvc_enabled() && is_creg(rd) && rd == rs && is_6b_int(imm))
1012 		emitc(rvc_andi(rd, imm), ctx);
1013 	else
1014 		emit(rv_andi(rd, rs, imm), ctx);
1015 }
1016 
1017 static inline void emit_srli(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
1018 {
1019 	if (rvc_enabled() && is_creg(rd) && rd == rs && imm && (u32)imm < __riscv_xlen)
1020 		emitc(rvc_srli(rd, imm), ctx);
1021 	else
1022 		emit(rv_srli(rd, rs, imm), ctx);
1023 }
1024 
1025 static inline void emit_srai(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
1026 {
1027 	if (rvc_enabled() && is_creg(rd) && rd == rs && imm && (u32)imm < __riscv_xlen)
1028 		emitc(rvc_srai(rd, imm), ctx);
1029 	else
1030 		emit(rv_srai(rd, rs, imm), ctx);
1031 }
1032 
1033 static inline void emit_sub(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
1034 {
1035 	if (rvc_enabled() && is_creg(rd) && rd == rs1 && is_creg(rs2))
1036 		emitc(rvc_sub(rd, rs2), ctx);
1037 	else
1038 		emit(rv_sub(rd, rs1, rs2), ctx);
1039 }
1040 
1041 static inline void emit_or(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
1042 {
1043 	if (rvc_enabled() && is_creg(rd) && rd == rs1 && is_creg(rs2))
1044 		emitc(rvc_or(rd, rs2), ctx);
1045 	else
1046 		emit(rv_or(rd, rs1, rs2), ctx);
1047 }
1048 
1049 static inline void emit_and(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
1050 {
1051 	if (rvc_enabled() && is_creg(rd) && rd == rs1 && is_creg(rs2))
1052 		emitc(rvc_and(rd, rs2), ctx);
1053 	else
1054 		emit(rv_and(rd, rs1, rs2), ctx);
1055 }
1056 
1057 static inline void emit_xor(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
1058 {
1059 	if (rvc_enabled() && is_creg(rd) && rd == rs1 && is_creg(rs2))
1060 		emitc(rvc_xor(rd, rs2), ctx);
1061 	else
1062 		emit(rv_xor(rd, rs1, rs2), ctx);
1063 }
1064 
1065 static inline void emit_lw(u8 rd, s32 off, u8 rs1, struct rv_jit_context *ctx)
1066 {
1067 	if (rvc_enabled() && rs1 == RV_REG_SP && rd && is_8b_uint(off) && !(off & 0x3))
1068 		emitc(rvc_lwsp(rd, off), ctx);
1069 	else if (rvc_enabled() && is_creg(rd) && is_creg(rs1) && is_7b_uint(off) && !(off & 0x3))
1070 		emitc(rvc_lw(rd, off, rs1), ctx);
1071 	else
1072 		emit(rv_lw(rd, off, rs1), ctx);
1073 }
1074 
1075 static inline void emit_sw(u8 rs1, s32 off, u8 rs2, struct rv_jit_context *ctx)
1076 {
1077 	if (rvc_enabled() && rs1 == RV_REG_SP && is_8b_uint(off) && !(off & 0x3))
1078 		emitc(rvc_swsp(off, rs2), ctx);
1079 	else if (rvc_enabled() && is_creg(rs1) && is_creg(rs2) && is_7b_uint(off) && !(off & 0x3))
1080 		emitc(rvc_sw(rs1, off, rs2), ctx);
1081 	else
1082 		emit(rv_sw(rs1, off, rs2), ctx);
1083 }
1084 
1085 /* RV64-only helper functions. */
1086 #if __riscv_xlen == 64
1087 
1088 static inline void emit_addiw(u8 rd, u8 rs, s32 imm, struct rv_jit_context *ctx)
1089 {
1090 	if (rvc_enabled() && rd && rd == rs && is_6b_int(imm))
1091 		emitc(rvc_addiw(rd, imm), ctx);
1092 	else
1093 		emit(rv_addiw(rd, rs, imm), ctx);
1094 }
1095 
1096 static inline void emit_ld(u8 rd, s32 off, u8 rs1, struct rv_jit_context *ctx)
1097 {
1098 	if (rvc_enabled() && rs1 == RV_REG_SP && rd && is_9b_uint(off) && !(off & 0x7))
1099 		emitc(rvc_ldsp(rd, off), ctx);
1100 	else if (rvc_enabled() && is_creg(rd) && is_creg(rs1) && is_8b_uint(off) && !(off & 0x7))
1101 		emitc(rvc_ld(rd, off, rs1), ctx);
1102 	else
1103 		emit(rv_ld(rd, off, rs1), ctx);
1104 }
1105 
1106 static inline void emit_sd(u8 rs1, s32 off, u8 rs2, struct rv_jit_context *ctx)
1107 {
1108 	if (rvc_enabled() && rs1 == RV_REG_SP && is_9b_uint(off) && !(off & 0x7))
1109 		emitc(rvc_sdsp(off, rs2), ctx);
1110 	else if (rvc_enabled() && is_creg(rs1) && is_creg(rs2) && is_8b_uint(off) && !(off & 0x7))
1111 		emitc(rvc_sd(rs1, off, rs2), ctx);
1112 	else
1113 		emit(rv_sd(rs1, off, rs2), ctx);
1114 }
1115 
1116 static inline void emit_subw(u8 rd, u8 rs1, u8 rs2, struct rv_jit_context *ctx)
1117 {
1118 	if (rvc_enabled() && is_creg(rd) && rd == rs1 && is_creg(rs2))
1119 		emitc(rvc_subw(rd, rs2), ctx);
1120 	else
1121 		emit(rv_subw(rd, rs1, rs2), ctx);
1122 }
1123 
1124 static inline void emit_sextb(u8 rd, u8 rs, struct rv_jit_context *ctx)
1125 {
1126 	if (rvzbb_enabled()) {
1127 		emit(rvzbb_sextb(rd, rs), ctx);
1128 		return;
1129 	}
1130 
1131 	emit_slli(rd, rs, 56, ctx);
1132 	emit_srai(rd, rd, 56, ctx);
1133 }
1134 
1135 static inline void emit_sexth(u8 rd, u8 rs, struct rv_jit_context *ctx)
1136 {
1137 	if (rvzbb_enabled()) {
1138 		emit(rvzbb_sexth(rd, rs), ctx);
1139 		return;
1140 	}
1141 
1142 	emit_slli(rd, rs, 48, ctx);
1143 	emit_srai(rd, rd, 48, ctx);
1144 }
1145 
1146 static inline void emit_sextw(u8 rd, u8 rs, struct rv_jit_context *ctx)
1147 {
1148 	emit_addiw(rd, rs, 0, ctx);
1149 }
1150 
1151 static inline void emit_zexth(u8 rd, u8 rs, struct rv_jit_context *ctx)
1152 {
1153 	if (rvzbb_enabled()) {
1154 		emit(rvzbb_zexth(rd, rs), ctx);
1155 		return;
1156 	}
1157 
1158 	emit_slli(rd, rs, 48, ctx);
1159 	emit_srli(rd, rd, 48, ctx);
1160 }
1161 
1162 static inline void emit_zextw(u8 rd, u8 rs, struct rv_jit_context *ctx)
1163 {
1164 	emit_slli(rd, rs, 32, ctx);
1165 	emit_srli(rd, rd, 32, ctx);
1166 }
1167 
1168 static inline void emit_bswap(u8 rd, s32 imm, struct rv_jit_context *ctx)
1169 {
1170 	if (rvzbb_enabled()) {
1171 		int bits = 64 - imm;
1172 
1173 		emit(rvzbb_rev8(rd, rd), ctx);
1174 		if (bits)
1175 			emit_srli(rd, rd, bits, ctx);
1176 		return;
1177 	}
1178 
1179 	emit_li(RV_REG_T2, 0, ctx);
1180 
1181 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1182 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1183 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1184 	emit_srli(rd, rd, 8, ctx);
1185 	if (imm == 16)
1186 		goto out_be;
1187 
1188 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1189 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1190 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1191 	emit_srli(rd, rd, 8, ctx);
1192 
1193 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1194 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1195 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1196 	emit_srli(rd, rd, 8, ctx);
1197 	if (imm == 32)
1198 		goto out_be;
1199 
1200 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1201 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1202 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1203 	emit_srli(rd, rd, 8, ctx);
1204 
1205 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1206 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1207 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1208 	emit_srli(rd, rd, 8, ctx);
1209 
1210 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1211 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1212 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1213 	emit_srli(rd, rd, 8, ctx);
1214 
1215 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1216 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1217 	emit_slli(RV_REG_T2, RV_REG_T2, 8, ctx);
1218 	emit_srli(rd, rd, 8, ctx);
1219 out_be:
1220 	emit_andi(RV_REG_T1, rd, 0xff, ctx);
1221 	emit_add(RV_REG_T2, RV_REG_T2, RV_REG_T1, ctx);
1222 
1223 	emit_mv(rd, RV_REG_T2, ctx);
1224 }
1225 
1226 #endif /* __riscv_xlen == 64 */
1227 
1228 void bpf_jit_build_prologue(struct rv_jit_context *ctx, bool is_subprog);
1229 void bpf_jit_build_epilogue(struct rv_jit_context *ctx);
1230 
1231 int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx,
1232 		      bool extra_pass);
1233 
1234 #endif /* _BPF_JIT_H */
1235