xref: /openbmc/linux/arch/powerpc/net/bpf_jit.h (revision b0c06d33)
10ca87f05SMatt Evans /* bpf_jit.h: BPF JIT compiler for PPC64
20ca87f05SMatt Evans  *
30ca87f05SMatt Evans  * Copyright 2011 Matt Evans <matt@ozlabs.org>, IBM Corporation
40ca87f05SMatt Evans  *
50ca87f05SMatt Evans  * This program is free software; you can redistribute it and/or
60ca87f05SMatt Evans  * modify it under the terms of the GNU General Public License
70ca87f05SMatt Evans  * as published by the Free Software Foundation; version 2
80ca87f05SMatt Evans  * of the License.
90ca87f05SMatt Evans  */
100ca87f05SMatt Evans #ifndef _BPF_JIT_H
110ca87f05SMatt Evans #define _BPF_JIT_H
120ca87f05SMatt Evans 
130ca87f05SMatt Evans #define BPF_PPC_STACK_LOCALS	32
140ca87f05SMatt Evans #define BPF_PPC_STACK_BASIC	(48+64)
150ca87f05SMatt Evans #define BPF_PPC_STACK_SAVE	(18*8)
160ca87f05SMatt Evans #define BPF_PPC_STACKFRAME	(BPF_PPC_STACK_BASIC+BPF_PPC_STACK_LOCALS+ \
170ca87f05SMatt Evans 				 BPF_PPC_STACK_SAVE)
180ca87f05SMatt Evans #define BPF_PPC_SLOWPATH_FRAME	(48+64)
190ca87f05SMatt Evans 
200ca87f05SMatt Evans /*
210ca87f05SMatt Evans  * Generated code register usage:
220ca87f05SMatt Evans  *
230ca87f05SMatt Evans  * As normal PPC C ABI (e.g. r1=sp, r2=TOC), with:
240ca87f05SMatt Evans  *
250ca87f05SMatt Evans  * skb		r3	(Entry parameter)
260ca87f05SMatt Evans  * A register	r4
270ca87f05SMatt Evans  * X register	r5
280ca87f05SMatt Evans  * addr param	r6
290ca87f05SMatt Evans  * r7-r10	scratch
300ca87f05SMatt Evans  * skb->data	r14
310ca87f05SMatt Evans  * skb headlen	r15	(skb->len - skb->data_len)
320ca87f05SMatt Evans  * m[0]		r16
330ca87f05SMatt Evans  * m[...]	...
340ca87f05SMatt Evans  * m[15]	r31
350ca87f05SMatt Evans  */
360ca87f05SMatt Evans #define r_skb		3
370ca87f05SMatt Evans #define r_ret		3
380ca87f05SMatt Evans #define r_A		4
390ca87f05SMatt Evans #define r_X		5
400ca87f05SMatt Evans #define r_addr		6
410ca87f05SMatt Evans #define r_scratch1	7
42b0c06d33SVladimir Murzin #define r_scratch2	8
430ca87f05SMatt Evans #define r_D		14
440ca87f05SMatt Evans #define r_HL		15
450ca87f05SMatt Evans #define r_M		16
460ca87f05SMatt Evans 
470ca87f05SMatt Evans #ifndef __ASSEMBLY__
480ca87f05SMatt Evans 
490ca87f05SMatt Evans /*
500ca87f05SMatt Evans  * Assembly helpers from arch/powerpc/net/bpf_jit.S:
510ca87f05SMatt Evans  */
5205be1824SJan Seiffert #define DECLARE_LOAD_FUNC(func)	\
5305be1824SJan Seiffert 	extern u8 func[], func##_negative_offset[], func##_positive_offset[]
5405be1824SJan Seiffert 
5505be1824SJan Seiffert DECLARE_LOAD_FUNC(sk_load_word);
5605be1824SJan Seiffert DECLARE_LOAD_FUNC(sk_load_half);
5705be1824SJan Seiffert DECLARE_LOAD_FUNC(sk_load_byte);
5805be1824SJan Seiffert DECLARE_LOAD_FUNC(sk_load_byte_msh);
590ca87f05SMatt Evans 
600ca87f05SMatt Evans #define FUNCTION_DESCR_SIZE	24
610ca87f05SMatt Evans 
620ca87f05SMatt Evans /*
630ca87f05SMatt Evans  * 16-bit immediate helper macros: HA() is for use with sign-extending instrs
640ca87f05SMatt Evans  * (e.g. LD, ADDI).  If the bottom 16 bits is "-ve", add another bit into the
650ca87f05SMatt Evans  * top half to negate the effect (i.e. 0xffff + 1 = 0x(1)0000).
660ca87f05SMatt Evans  */
670ca87f05SMatt Evans #define IMM_H(i)		((uintptr_t)(i)>>16)
680ca87f05SMatt Evans #define IMM_HA(i)		(((uintptr_t)(i)>>16) +			      \
690ca87f05SMatt Evans 				 (((uintptr_t)(i) & 0x8000) >> 15))
700ca87f05SMatt Evans #define IMM_L(i)		((uintptr_t)(i) & 0xffff)
710ca87f05SMatt Evans 
720ca87f05SMatt Evans #define PLANT_INSTR(d, idx, instr)					      \
730ca87f05SMatt Evans 	do { if (d) { (d)[idx] = instr; } idx++; } while (0)
740ca87f05SMatt Evans #define EMIT(instr)		PLANT_INSTR(image, ctx->idx, instr)
750ca87f05SMatt Evans 
760ca87f05SMatt Evans #define PPC_NOP()		EMIT(PPC_INST_NOP)
770ca87f05SMatt Evans #define PPC_BLR()		EMIT(PPC_INST_BLR)
780ca87f05SMatt Evans #define PPC_BLRL()		EMIT(PPC_INST_BLRL)
79cdaade71SMichael Neuling #define PPC_MTLR(r)		EMIT(PPC_INST_MTLR | ___PPC_RT(r))
80cdaade71SMichael Neuling #define PPC_ADDI(d, a, i)	EMIT(PPC_INST_ADDI | ___PPC_RT(d) |	      \
81cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
820ca87f05SMatt Evans #define PPC_MR(d, a)		PPC_OR(d, a, a)
830ca87f05SMatt Evans #define PPC_LI(r, i)		PPC_ADDI(r, 0, i)
840ca87f05SMatt Evans #define PPC_ADDIS(d, a, i)	EMIT(PPC_INST_ADDIS |			      \
85cdaade71SMichael Neuling 				     ___PPC_RS(d) | ___PPC_RA(a) | IMM_L(i))
860ca87f05SMatt Evans #define PPC_LIS(r, i)		PPC_ADDIS(r, 0, i)
87cdaade71SMichael Neuling #define PPC_STD(r, base, i)	EMIT(PPC_INST_STD | ___PPC_RS(r) |	      \
88cdaade71SMichael Neuling 				     ___PPC_RA(base) | ((i) & 0xfffc))
890ca87f05SMatt Evans 
90cdaade71SMichael Neuling #define PPC_LD(r, base, i)	EMIT(PPC_INST_LD | ___PPC_RT(r) |	      \
91cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
92cdaade71SMichael Neuling #define PPC_LWZ(r, base, i)	EMIT(PPC_INST_LWZ | ___PPC_RT(r) |	      \
93cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
94cdaade71SMichael Neuling #define PPC_LHZ(r, base, i)	EMIT(PPC_INST_LHZ | ___PPC_RT(r) |	      \
95cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
969c662cadSPhilippe Bergheaud #define PPC_LHBRX(r, base, b)	EMIT(PPC_INST_LHBRX | ___PPC_RT(r) |	      \
979c662cadSPhilippe Bergheaud 				     ___PPC_RA(base) | ___PPC_RB(b))
980ca87f05SMatt Evans /* Convenience helpers for the above with 'far' offsets: */
990ca87f05SMatt Evans #define PPC_LD_OFFS(r, base, i) do { if ((i) < 32768) PPC_LD(r, base, i);     \
1000ca87f05SMatt Evans 		else {	PPC_ADDIS(r, base, IMM_HA(i));			      \
1010ca87f05SMatt Evans 			PPC_LD(r, r, IMM_L(i)); } } while(0)
1020ca87f05SMatt Evans 
1030ca87f05SMatt Evans #define PPC_LWZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LWZ(r, base, i);   \
1040ca87f05SMatt Evans 		else {	PPC_ADDIS(r, base, IMM_HA(i));			      \
1050ca87f05SMatt Evans 			PPC_LWZ(r, r, IMM_L(i)); } } while(0)
1060ca87f05SMatt Evans 
1070ca87f05SMatt Evans #define PPC_LHZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LHZ(r, base, i);   \
1080ca87f05SMatt Evans 		else {	PPC_ADDIS(r, base, IMM_HA(i));			      \
1090ca87f05SMatt Evans 			PPC_LHZ(r, r, IMM_L(i)); } } while(0)
1100ca87f05SMatt Evans 
111cdaade71SMichael Neuling #define PPC_CMPWI(a, i)		EMIT(PPC_INST_CMPWI | ___PPC_RA(a) | IMM_L(i))
112cdaade71SMichael Neuling #define PPC_CMPDI(a, i)		EMIT(PPC_INST_CMPDI | ___PPC_RA(a) | IMM_L(i))
113cdaade71SMichael Neuling #define PPC_CMPLWI(a, i)	EMIT(PPC_INST_CMPLWI | ___PPC_RA(a) | IMM_L(i))
114cdaade71SMichael Neuling #define PPC_CMPLW(a, b)		EMIT(PPC_INST_CMPLW | ___PPC_RA(a) | ___PPC_RB(b))
1150ca87f05SMatt Evans 
116cdaade71SMichael Neuling #define PPC_SUB(d, a, b)	EMIT(PPC_INST_SUB | ___PPC_RT(d) |	      \
117cdaade71SMichael Neuling 				     ___PPC_RB(a) | ___PPC_RA(b))
118cdaade71SMichael Neuling #define PPC_ADD(d, a, b)	EMIT(PPC_INST_ADD | ___PPC_RT(d) |	      \
119cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
120cdaade71SMichael Neuling #define PPC_MUL(d, a, b)	EMIT(PPC_INST_MULLW | ___PPC_RT(d) |	      \
121cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
122cdaade71SMichael Neuling #define PPC_MULHWU(d, a, b)	EMIT(PPC_INST_MULHWU | ___PPC_RT(d) |	      \
123cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
124cdaade71SMichael Neuling #define PPC_MULI(d, a, i)	EMIT(PPC_INST_MULLI | ___PPC_RT(d) |	      \
125cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
126cdaade71SMichael Neuling #define PPC_DIVWU(d, a, b)	EMIT(PPC_INST_DIVWU | ___PPC_RT(d) |	      \
127cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
128cdaade71SMichael Neuling #define PPC_AND(d, a, b)	EMIT(PPC_INST_AND | ___PPC_RA(d) |	      \
129cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
130cdaade71SMichael Neuling #define PPC_ANDI(d, a, i)	EMIT(PPC_INST_ANDI | ___PPC_RA(d) |	      \
131cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
132cdaade71SMichael Neuling #define PPC_AND_DOT(d, a, b)	EMIT(PPC_INST_ANDDOT | ___PPC_RA(d) |	      \
133cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
134cdaade71SMichael Neuling #define PPC_OR(d, a, b)		EMIT(PPC_INST_OR | ___PPC_RA(d) |	      \
135cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
136cdaade71SMichael Neuling #define PPC_ORI(d, a, i)	EMIT(PPC_INST_ORI | ___PPC_RA(d) |	      \
137cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
138cdaade71SMichael Neuling #define PPC_ORIS(d, a, i)	EMIT(PPC_INST_ORIS | ___PPC_RA(d) |	      \
139cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
14002871903SDaniel Borkmann #define PPC_XOR(d, a, b)	EMIT(PPC_INST_XOR | ___PPC_RA(d) |	      \
14102871903SDaniel Borkmann 				     ___PPC_RS(a) | ___PPC_RB(b))
14202871903SDaniel Borkmann #define PPC_XORI(d, a, i)	EMIT(PPC_INST_XORI | ___PPC_RA(d) |	      \
14302871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
14402871903SDaniel Borkmann #define PPC_XORIS(d, a, i)	EMIT(PPC_INST_XORIS | ___PPC_RA(d) |	      \
14502871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
146cdaade71SMichael Neuling #define PPC_SLW(d, a, s)	EMIT(PPC_INST_SLW | ___PPC_RA(d) |	      \
147cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
148cdaade71SMichael Neuling #define PPC_SRW(d, a, s)	EMIT(PPC_INST_SRW | ___PPC_RA(d) |	      \
149cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
1500ca87f05SMatt Evans /* slwi = rlwinm Rx, Ry, n, 0, 31-n */
151cdaade71SMichael Neuling #define PPC_SLWI(d, a, i)	EMIT(PPC_INST_RLWINM | ___PPC_RA(d) |	      \
152cdaade71SMichael Neuling 				     ___PPC_RS(a) | __PPC_SH(i) |	      \
1530ca87f05SMatt Evans 				     __PPC_MB(0) | __PPC_ME(31-(i)))
1540ca87f05SMatt Evans /* srwi = rlwinm Rx, Ry, 32-n, n, 31 */
155cdaade71SMichael Neuling #define PPC_SRWI(d, a, i)	EMIT(PPC_INST_RLWINM | ___PPC_RA(d) |	      \
156cdaade71SMichael Neuling 				     ___PPC_RS(a) | __PPC_SH(32-(i)) |	      \
1570ca87f05SMatt Evans 				     __PPC_MB(i) | __PPC_ME(31))
1580ca87f05SMatt Evans /* sldi = rldicr Rx, Ry, n, 63-n */
159cdaade71SMichael Neuling #define PPC_SLDI(d, a, i)	EMIT(PPC_INST_RLDICR | ___PPC_RA(d) |	      \
160cdaade71SMichael Neuling 				     ___PPC_RS(a) | __PPC_SH(i) |	      \
1610ca87f05SMatt Evans 				     __PPC_MB(63-(i)) | (((i) & 0x20) >> 4))
162cdaade71SMichael Neuling #define PPC_NEG(d, a)		EMIT(PPC_INST_NEG | ___PPC_RT(d) | ___PPC_RA(a))
1630ca87f05SMatt Evans 
1640ca87f05SMatt Evans /* Long jump; (unconditional 'branch') */
1650ca87f05SMatt Evans #define PPC_JMP(dest)		EMIT(PPC_INST_BRANCH |			      \
1660ca87f05SMatt Evans 				     (((dest) - (ctx->idx * 4)) & 0x03fffffc))
1670ca87f05SMatt Evans /* "cond" here covers BO:BI fields. */
1680ca87f05SMatt Evans #define PPC_BCC_SHORT(cond, dest)	EMIT(PPC_INST_BRANCH_COND |	      \
1690ca87f05SMatt Evans 					     (((cond) & 0x3ff) << 16) |	      \
1700ca87f05SMatt Evans 					     (((dest) - (ctx->idx * 4)) &     \
1710ca87f05SMatt Evans 					      0xfffc))
1720ca87f05SMatt Evans #define PPC_LI32(d, i)		do { PPC_LI(d, IMM_L(i));		      \
1730ca87f05SMatt Evans 		if ((u32)(uintptr_t)(i) >= 32768) {			      \
1740ca87f05SMatt Evans 			PPC_ADDIS(d, d, IMM_HA(i));			      \
1750ca87f05SMatt Evans 		} } while(0)
1760ca87f05SMatt Evans #define PPC_LI64(d, i)		do {					      \
1770ca87f05SMatt Evans 		if (!((uintptr_t)(i) & 0xffffffff00000000ULL))		      \
1780ca87f05SMatt Evans 			PPC_LI32(d, i);					      \
1790ca87f05SMatt Evans 		else {							      \
1800ca87f05SMatt Evans 			PPC_LIS(d, ((uintptr_t)(i) >> 48));		      \
1810ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x0000ffff00000000ULL)	      \
1820ca87f05SMatt Evans 				PPC_ORI(d, d,				      \
1830ca87f05SMatt Evans 					((uintptr_t)(i) >> 32) & 0xffff);     \
1840ca87f05SMatt Evans 			PPC_SLDI(d, d, 32);				      \
1850ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x00000000ffff0000ULL)	      \
1860ca87f05SMatt Evans 				PPC_ORIS(d, d,				      \
1870ca87f05SMatt Evans 					 ((uintptr_t)(i) >> 16) & 0xffff);    \
1880ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x000000000000ffffULL)	      \
1890ca87f05SMatt Evans 				PPC_ORI(d, d, (uintptr_t)(i) & 0xffff);	      \
1900ca87f05SMatt Evans 		} } while (0);
1910ca87f05SMatt Evans 
1929c662cadSPhilippe Bergheaud #define PPC_LHBRX_OFFS(r, base, i) \
1939c662cadSPhilippe Bergheaud 		do { PPC_LI32(r, i); PPC_LHBRX(r, r, base); } while(0)
1949c662cadSPhilippe Bergheaud #ifdef __LITTLE_ENDIAN__
1959c662cadSPhilippe Bergheaud #define PPC_NTOHS_OFFS(r, base, i)	PPC_LHBRX_OFFS(r, base, i)
1969c662cadSPhilippe Bergheaud #else
1979c662cadSPhilippe Bergheaud #define PPC_NTOHS_OFFS(r, base, i)	PPC_LHZ_OFFS(r, base, i)
1989c662cadSPhilippe Bergheaud #endif
1999c662cadSPhilippe Bergheaud 
2000ca87f05SMatt Evans static inline bool is_nearbranch(int offset)
2010ca87f05SMatt Evans {
2020ca87f05SMatt Evans 	return (offset < 32768) && (offset >= -32768);
2030ca87f05SMatt Evans }
2040ca87f05SMatt Evans 
2050ca87f05SMatt Evans /*
2060ca87f05SMatt Evans  * The fly in the ointment of code size changing from pass to pass is
2070ca87f05SMatt Evans  * avoided by padding the short branch case with a NOP.	 If code size differs
2080ca87f05SMatt Evans  * with different branch reaches we will have the issue of code moving from
2090ca87f05SMatt Evans  * one pass to the next and will need a few passes to converge on a stable
2100ca87f05SMatt Evans  * state.
2110ca87f05SMatt Evans  */
2120ca87f05SMatt Evans #define PPC_BCC(cond, dest)	do {					      \
2130ca87f05SMatt Evans 		if (is_nearbranch((dest) - (ctx->idx * 4))) {		      \
2140ca87f05SMatt Evans 			PPC_BCC_SHORT(cond, dest);			      \
2150ca87f05SMatt Evans 			PPC_NOP();					      \
2160ca87f05SMatt Evans 		} else {						      \
2170ca87f05SMatt Evans 			/* Flip the 'T or F' bit to invert comparison */      \
2180ca87f05SMatt Evans 			PPC_BCC_SHORT(cond ^ COND_CMP_TRUE, (ctx->idx+2)*4);  \
2190ca87f05SMatt Evans 			PPC_JMP(dest);					      \
2200ca87f05SMatt Evans 		} } while(0)
2210ca87f05SMatt Evans 
2220ca87f05SMatt Evans /* To create a branch condition, select a bit of cr0... */
2230ca87f05SMatt Evans #define CR0_LT		0
2240ca87f05SMatt Evans #define CR0_GT		1
2250ca87f05SMatt Evans #define CR0_EQ		2
2260ca87f05SMatt Evans /* ...and modify BO[3] */
2270ca87f05SMatt Evans #define COND_CMP_TRUE	0x100
2280ca87f05SMatt Evans #define COND_CMP_FALSE	0x000
2290ca87f05SMatt Evans /* Together, they make all required comparisons: */
2300ca87f05SMatt Evans #define COND_GT		(CR0_GT | COND_CMP_TRUE)
2310ca87f05SMatt Evans #define COND_GE		(CR0_LT | COND_CMP_FALSE)
2320ca87f05SMatt Evans #define COND_EQ		(CR0_EQ | COND_CMP_TRUE)
2330ca87f05SMatt Evans #define COND_NE		(CR0_EQ | COND_CMP_FALSE)
2340ca87f05SMatt Evans #define COND_LT		(CR0_LT | COND_CMP_TRUE)
2350ca87f05SMatt Evans 
2360ca87f05SMatt Evans #define SEEN_DATAREF 0x10000 /* might call external helpers */
2370ca87f05SMatt Evans #define SEEN_XREG    0x20000 /* X reg is used */
2380ca87f05SMatt Evans #define SEEN_MEM     0x40000 /* SEEN_MEM+(1<<n) = use mem[n] for temporary
2390ca87f05SMatt Evans 			      * storage */
2400ca87f05SMatt Evans #define SEEN_MEM_MSK 0x0ffff
2410ca87f05SMatt Evans 
2420ca87f05SMatt Evans struct codegen_context {
2430ca87f05SMatt Evans 	unsigned int seen;
2440ca87f05SMatt Evans 	unsigned int idx;
2450ca87f05SMatt Evans 	int pc_ret0; /* bpf index of first RET #0 instruction (if any) */
2460ca87f05SMatt Evans };
2470ca87f05SMatt Evans 
2480ca87f05SMatt Evans #endif
2490ca87f05SMatt Evans 
2500ca87f05SMatt Evans #endif
251