xref: /openbmc/linux/arch/powerpc/net/bpf_jit.h (revision 20dbf5cc)
16ac0ba5aSNaveen N. Rao /*
26ac0ba5aSNaveen N. Rao  * bpf_jit.h: BPF JIT compiler for PPC
30ca87f05SMatt Evans  *
40ca87f05SMatt Evans  * Copyright 2011 Matt Evans <matt@ozlabs.org>, IBM Corporation
5156d0e29SNaveen N. Rao  * 	     2016 Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
60ca87f05SMatt Evans  *
70ca87f05SMatt Evans  * This program is free software; you can redistribute it and/or
80ca87f05SMatt Evans  * modify it under the terms of the GNU General Public License
90ca87f05SMatt Evans  * as published by the Free Software Foundation; version 2
100ca87f05SMatt Evans  * of the License.
110ca87f05SMatt Evans  */
120ca87f05SMatt Evans #ifndef _BPF_JIT_H
130ca87f05SMatt Evans #define _BPF_JIT_H
140ca87f05SMatt Evans 
150ca87f05SMatt Evans #ifndef __ASSEMBLY__
160ca87f05SMatt Evans 
17156d0e29SNaveen N. Rao #include <asm/types.h>
18156d0e29SNaveen N. Rao 
19156d0e29SNaveen N. Rao #ifdef PPC64_ELF_ABI_v1
200ca87f05SMatt Evans #define FUNCTION_DESCR_SIZE	24
2109ca5ab2SDenis Kirjanov #else
2209ca5ab2SDenis Kirjanov #define FUNCTION_DESCR_SIZE	0
2309ca5ab2SDenis Kirjanov #endif
240ca87f05SMatt Evans 
250ca87f05SMatt Evans /*
260ca87f05SMatt Evans  * 16-bit immediate helper macros: HA() is for use with sign-extending instrs
270ca87f05SMatt Evans  * (e.g. LD, ADDI).  If the bottom 16 bits is "-ve", add another bit into the
280ca87f05SMatt Evans  * top half to negate the effect (i.e. 0xffff + 1 = 0x(1)0000).
290ca87f05SMatt Evans  */
300ca87f05SMatt Evans #define IMM_H(i)		((uintptr_t)(i)>>16)
310ca87f05SMatt Evans #define IMM_HA(i)		(((uintptr_t)(i)>>16) +			      \
320ca87f05SMatt Evans 					(((uintptr_t)(i) & 0x8000) >> 15))
330ca87f05SMatt Evans #define IMM_L(i)		((uintptr_t)(i) & 0xffff)
340ca87f05SMatt Evans 
350ca87f05SMatt Evans #define PLANT_INSTR(d, idx, instr)					      \
360ca87f05SMatt Evans 	do { if (d) { (d)[idx] = instr; } idx++; } while (0)
370ca87f05SMatt Evans #define EMIT(instr)		PLANT_INSTR(image, ctx->idx, instr)
380ca87f05SMatt Evans 
390ca87f05SMatt Evans #define PPC_NOP()		EMIT(PPC_INST_NOP)
400ca87f05SMatt Evans #define PPC_BLR()		EMIT(PPC_INST_BLR)
410ca87f05SMatt Evans #define PPC_BLRL()		EMIT(PPC_INST_BLRL)
42cdaade71SMichael Neuling #define PPC_MTLR(r)		EMIT(PPC_INST_MTLR | ___PPC_RT(r))
43ce076141SNaveen N. Rao #define PPC_BCTR()		EMIT(PPC_INST_BCTR)
44ce076141SNaveen N. Rao #define PPC_MTCTR(r)		EMIT(PPC_INST_MTCTR | ___PPC_RT(r))
45cdaade71SMichael Neuling #define PPC_ADDI(d, a, i)	EMIT(PPC_INST_ADDI | ___PPC_RT(d) |	      \
46cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
470ca87f05SMatt Evans #define PPC_MR(d, a)		PPC_OR(d, a, a)
480ca87f05SMatt Evans #define PPC_LI(r, i)		PPC_ADDI(r, 0, i)
490ca87f05SMatt Evans #define PPC_ADDIS(d, a, i)	EMIT(PPC_INST_ADDIS |			      \
50cef1e8cdSNaveen N. Rao 				     ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i))
510ca87f05SMatt Evans #define PPC_LIS(r, i)		PPC_ADDIS(r, 0, i)
52cdaade71SMichael Neuling #define PPC_STD(r, base, i)	EMIT(PPC_INST_STD | ___PPC_RS(r) |	      \
53cdaade71SMichael Neuling 				     ___PPC_RA(base) | ((i) & 0xfffc))
5409ca5ab2SDenis Kirjanov #define PPC_STDU(r, base, i)	EMIT(PPC_INST_STDU | ___PPC_RS(r) |	      \
5509ca5ab2SDenis Kirjanov 				     ___PPC_RA(base) | ((i) & 0xfffc))
5609ca5ab2SDenis Kirjanov #define PPC_STW(r, base, i)	EMIT(PPC_INST_STW | ___PPC_RS(r) |	      \
57cef1e8cdSNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
5809ca5ab2SDenis Kirjanov #define PPC_STWU(r, base, i)	EMIT(PPC_INST_STWU | ___PPC_RS(r) |	      \
59cef1e8cdSNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
60156d0e29SNaveen N. Rao #define PPC_STH(r, base, i)	EMIT(PPC_INST_STH | ___PPC_RS(r) |	      \
61156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
62156d0e29SNaveen N. Rao #define PPC_STB(r, base, i)	EMIT(PPC_INST_STB | ___PPC_RS(r) |	      \
63156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
644e235761SDenis Kirjanov 
654e235761SDenis Kirjanov #define PPC_LBZ(r, base, i)	EMIT(PPC_INST_LBZ | ___PPC_RT(r) |	      \
664e235761SDenis Kirjanov 				     ___PPC_RA(base) | IMM_L(i))
67cdaade71SMichael Neuling #define PPC_LD(r, base, i)	EMIT(PPC_INST_LD | ___PPC_RT(r) |	      \
68cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
69cdaade71SMichael Neuling #define PPC_LWZ(r, base, i)	EMIT(PPC_INST_LWZ | ___PPC_RT(r) |	      \
70cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
71cdaade71SMichael Neuling #define PPC_LHZ(r, base, i)	EMIT(PPC_INST_LHZ | ___PPC_RT(r) |	      \
72cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
739c662cadSPhilippe Bergheaud #define PPC_LHBRX(r, base, b)	EMIT(PPC_INST_LHBRX | ___PPC_RT(r) |	      \
749c662cadSPhilippe Bergheaud 				     ___PPC_RA(base) | ___PPC_RB(b))
75156d0e29SNaveen N. Rao #define PPC_LDBRX(r, base, b)	EMIT(PPC_INST_LDBRX | ___PPC_RT(r) |	      \
76156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | ___PPC_RB(b))
77156d0e29SNaveen N. Rao 
78156d0e29SNaveen N. Rao #define PPC_BPF_LDARX(t, a, b, eh) EMIT(PPC_INST_LDARX | ___PPC_RT(t) |	      \
79156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b) |	      \
80156d0e29SNaveen N. Rao 					__PPC_EH(eh))
81156d0e29SNaveen N. Rao #define PPC_BPF_LWARX(t, a, b, eh) EMIT(PPC_INST_LWARX | ___PPC_RT(t) |	      \
82156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b) |	      \
83156d0e29SNaveen N. Rao 					__PPC_EH(eh))
84156d0e29SNaveen N. Rao #define PPC_BPF_STWCX(s, a, b)	EMIT(PPC_INST_STWCX | ___PPC_RS(s) |	      \
85156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b))
86156d0e29SNaveen N. Rao #define PPC_BPF_STDCX(s, a, b)	EMIT(PPC_INST_STDCX | ___PPC_RS(s) |	      \
87156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b))
8809ca5ab2SDenis Kirjanov 
8909ca5ab2SDenis Kirjanov #ifdef CONFIG_PPC64
9009ca5ab2SDenis Kirjanov #define PPC_BPF_LL(r, base, i) do { PPC_LD(r, base, i); } while(0)
9109ca5ab2SDenis Kirjanov #define PPC_BPF_STL(r, base, i) do { PPC_STD(r, base, i); } while(0)
9209ca5ab2SDenis Kirjanov #define PPC_BPF_STLU(r, base, i) do { PPC_STDU(r, base, i); } while(0)
9309ca5ab2SDenis Kirjanov #else
9409ca5ab2SDenis Kirjanov #define PPC_BPF_LL(r, base, i) do { PPC_LWZ(r, base, i); } while(0)
9509ca5ab2SDenis Kirjanov #define PPC_BPF_STL(r, base, i) do { PPC_STW(r, base, i); } while(0)
9609ca5ab2SDenis Kirjanov #define PPC_BPF_STLU(r, base, i) do { PPC_STWU(r, base, i); } while(0)
9709ca5ab2SDenis Kirjanov #endif
9809ca5ab2SDenis Kirjanov 
99cdaade71SMichael Neuling #define PPC_CMPWI(a, i)		EMIT(PPC_INST_CMPWI | ___PPC_RA(a) | IMM_L(i))
100cdaade71SMichael Neuling #define PPC_CMPDI(a, i)		EMIT(PPC_INST_CMPDI | ___PPC_RA(a) | IMM_L(i))
101156d0e29SNaveen N. Rao #define PPC_CMPW(a, b)		EMIT(PPC_INST_CMPW | ___PPC_RA(a) |	      \
102156d0e29SNaveen N. Rao 					___PPC_RB(b))
103156d0e29SNaveen N. Rao #define PPC_CMPD(a, b)		EMIT(PPC_INST_CMPD | ___PPC_RA(a) |	      \
104156d0e29SNaveen N. Rao 					___PPC_RB(b))
105cdaade71SMichael Neuling #define PPC_CMPLWI(a, i)	EMIT(PPC_INST_CMPLWI | ___PPC_RA(a) | IMM_L(i))
106156d0e29SNaveen N. Rao #define PPC_CMPLDI(a, i)	EMIT(PPC_INST_CMPLDI | ___PPC_RA(a) | IMM_L(i))
107cef1e8cdSNaveen N. Rao #define PPC_CMPLW(a, b)		EMIT(PPC_INST_CMPLW | ___PPC_RA(a) |	      \
108cef1e8cdSNaveen N. Rao 					___PPC_RB(b))
109156d0e29SNaveen N. Rao #define PPC_CMPLD(a, b)		EMIT(PPC_INST_CMPLD | ___PPC_RA(a) |	      \
110156d0e29SNaveen N. Rao 					___PPC_RB(b))
1110ca87f05SMatt Evans 
112cdaade71SMichael Neuling #define PPC_SUB(d, a, b)	EMIT(PPC_INST_SUB | ___PPC_RT(d) |	      \
113cdaade71SMichael Neuling 				     ___PPC_RB(a) | ___PPC_RA(b))
114cdaade71SMichael Neuling #define PPC_ADD(d, a, b)	EMIT(PPC_INST_ADD | ___PPC_RT(d) |	      \
115cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
116156d0e29SNaveen N. Rao #define PPC_MULD(d, a, b)	EMIT(PPC_INST_MULLD | ___PPC_RT(d) |	      \
117156d0e29SNaveen N. Rao 				     ___PPC_RA(a) | ___PPC_RB(b))
118cef1e8cdSNaveen N. Rao #define PPC_MULW(d, a, b)	EMIT(PPC_INST_MULLW | ___PPC_RT(d) |	      \
119cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
120cdaade71SMichael Neuling #define PPC_MULHWU(d, a, b)	EMIT(PPC_INST_MULHWU | ___PPC_RT(d) |	      \
121cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
122cdaade71SMichael Neuling #define PPC_MULI(d, a, i)	EMIT(PPC_INST_MULLI | ___PPC_RT(d) |	      \
123cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
124cdaade71SMichael Neuling #define PPC_DIVWU(d, a, b)	EMIT(PPC_INST_DIVWU | ___PPC_RT(d) |	      \
125cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
126156d0e29SNaveen N. Rao #define PPC_DIVD(d, a, b)	EMIT(PPC_INST_DIVD | ___PPC_RT(d) |	      \
127156d0e29SNaveen N. Rao 				     ___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))
136156d0e29SNaveen N. Rao #define PPC_MR(d, a)		PPC_OR(d, a, a)
137cdaade71SMichael Neuling #define PPC_ORI(d, a, i)	EMIT(PPC_INST_ORI | ___PPC_RA(d) |	      \
138cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
139cdaade71SMichael Neuling #define PPC_ORIS(d, a, i)	EMIT(PPC_INST_ORIS | ___PPC_RA(d) |	      \
140cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
14102871903SDaniel Borkmann #define PPC_XOR(d, a, b)	EMIT(PPC_INST_XOR | ___PPC_RA(d) |	      \
14202871903SDaniel Borkmann 				     ___PPC_RS(a) | ___PPC_RB(b))
14302871903SDaniel Borkmann #define PPC_XORI(d, a, i)	EMIT(PPC_INST_XORI | ___PPC_RA(d) |	      \
14402871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
14502871903SDaniel Borkmann #define PPC_XORIS(d, a, i)	EMIT(PPC_INST_XORIS | ___PPC_RA(d) |	      \
14602871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
147156d0e29SNaveen N. Rao #define PPC_EXTSW(d, a)		EMIT(PPC_INST_EXTSW | ___PPC_RA(d) |	      \
148156d0e29SNaveen N. Rao 				     ___PPC_RS(a))
149cdaade71SMichael Neuling #define PPC_SLW(d, a, s)	EMIT(PPC_INST_SLW | ___PPC_RA(d) |	      \
150cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
151156d0e29SNaveen N. Rao #define PPC_SLD(d, a, s)	EMIT(PPC_INST_SLD | ___PPC_RA(d) |	      \
152156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
153cdaade71SMichael Neuling #define PPC_SRW(d, a, s)	EMIT(PPC_INST_SRW | ___PPC_RA(d) |	      \
154cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
155156d0e29SNaveen N. Rao #define PPC_SRD(d, a, s)	EMIT(PPC_INST_SRD | ___PPC_RA(d) |	      \
156156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
157156d0e29SNaveen N. Rao #define PPC_SRAD(d, a, s)	EMIT(PPC_INST_SRAD | ___PPC_RA(d) |	      \
158156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
159156d0e29SNaveen N. Rao #define PPC_SRADI(d, a, i)	EMIT(PPC_INST_SRADI | ___PPC_RA(d) |	      \
160c233f597SNaveen N. Rao 				     ___PPC_RS(a) | __PPC_SH64(i))
161277285b8SNaveen N. Rao #define PPC_RLWINM(d, a, i, mb, me)	EMIT(PPC_INST_RLWINM | ___PPC_RA(d) | \
162277285b8SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
163277285b8SNaveen N. Rao 					__PPC_MB(mb) | __PPC_ME(me))
164156d0e29SNaveen N. Rao #define PPC_RLWIMI(d, a, i, mb, me)	EMIT(PPC_INST_RLWIMI | ___PPC_RA(d) | \
165156d0e29SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
166156d0e29SNaveen N. Rao 					__PPC_MB(mb) | __PPC_ME(me))
167156d0e29SNaveen N. Rao #define PPC_RLDICL(d, a, i, mb)		EMIT(PPC_INST_RLDICL | ___PPC_RA(d) | \
168c233f597SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH64(i) |	      \
169c233f597SNaveen N. Rao 					__PPC_MB64(mb))
170277285b8SNaveen N. Rao #define PPC_RLDICR(d, a, i, me)		EMIT(PPC_INST_RLDICR | ___PPC_RA(d) | \
171c233f597SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH64(i) |	      \
172c233f597SNaveen N. Rao 					__PPC_ME64(me))
173277285b8SNaveen N. Rao 
1740ca87f05SMatt Evans /* slwi = rlwinm Rx, Ry, n, 0, 31-n */
175277285b8SNaveen N. Rao #define PPC_SLWI(d, a, i)	PPC_RLWINM(d, a, i, 0, 31-(i))
1760ca87f05SMatt Evans /* srwi = rlwinm Rx, Ry, 32-n, n, 31 */
177277285b8SNaveen N. Rao #define PPC_SRWI(d, a, i)	PPC_RLWINM(d, a, 32-(i), i, 31)
1780ca87f05SMatt Evans /* sldi = rldicr Rx, Ry, n, 63-n */
179277285b8SNaveen N. Rao #define PPC_SLDI(d, a, i)	PPC_RLDICR(d, a, i, 63-(i))
180156d0e29SNaveen N. Rao /* sldi = rldicl Rx, Ry, 64-n, n */
181156d0e29SNaveen N. Rao #define PPC_SRDI(d, a, i)	PPC_RLDICL(d, a, 64-(i), i)
182277285b8SNaveen N. Rao 
183cdaade71SMichael Neuling #define PPC_NEG(d, a)		EMIT(PPC_INST_NEG | ___PPC_RT(d) | ___PPC_RA(a))
1840ca87f05SMatt Evans 
1850ca87f05SMatt Evans /* Long jump; (unconditional 'branch') */
1860ca87f05SMatt Evans #define PPC_JMP(dest)		EMIT(PPC_INST_BRANCH |			      \
1870ca87f05SMatt Evans 				     (((dest) - (ctx->idx * 4)) & 0x03fffffc))
1880ca87f05SMatt Evans /* "cond" here covers BO:BI fields. */
1890ca87f05SMatt Evans #define PPC_BCC_SHORT(cond, dest)	EMIT(PPC_INST_BRANCH_COND |	      \
1900ca87f05SMatt Evans 					     (((cond) & 0x3ff) << 16) |	      \
1910ca87f05SMatt Evans 					     (((dest) - (ctx->idx * 4)) &     \
1920ca87f05SMatt Evans 					      0xfffc))
193aaf2f7e0SNaveen N. Rao /* Sign-extended 32-bit immediate load */
194aaf2f7e0SNaveen N. Rao #define PPC_LI32(d, i)		do {					      \
195aaf2f7e0SNaveen N. Rao 		if ((int)(uintptr_t)(i) >= -32768 &&			      \
196aaf2f7e0SNaveen N. Rao 				(int)(uintptr_t)(i) < 32768)		      \
197aaf2f7e0SNaveen N. Rao 			PPC_LI(d, i);					      \
198aaf2f7e0SNaveen N. Rao 		else {							      \
199aaf2f7e0SNaveen N. Rao 			PPC_LIS(d, IMM_H(i));				      \
200aaf2f7e0SNaveen N. Rao 			if (IMM_L(i))					      \
201aaf2f7e0SNaveen N. Rao 				PPC_ORI(d, d, IMM_L(i));		      \
2020ca87f05SMatt Evans 		} } while(0)
203aaf2f7e0SNaveen N. Rao 
2040ca87f05SMatt Evans #define PPC_LI64(d, i)		do {					      \
205b1a05787SNaveen N. Rao 		if ((long)(i) >= -2147483648 &&				      \
206b1a05787SNaveen N. Rao 				(long)(i) < 2147483648)			      \
2070ca87f05SMatt Evans 			PPC_LI32(d, i);					      \
2080ca87f05SMatt Evans 		else {							      \
209b1a05787SNaveen N. Rao 			if (!((uintptr_t)(i) & 0xffff800000000000ULL))	      \
210b1a05787SNaveen N. Rao 				PPC_LI(d, ((uintptr_t)(i) >> 32) & 0xffff);   \
211b1a05787SNaveen N. Rao 			else {						      \
2120ca87f05SMatt Evans 				PPC_LIS(d, ((uintptr_t)(i) >> 48));	      \
2130ca87f05SMatt Evans 				if ((uintptr_t)(i) & 0x0000ffff00000000ULL)   \
2140ca87f05SMatt Evans 					PPC_ORI(d, d,			      \
2150ca87f05SMatt Evans 					  ((uintptr_t)(i) >> 32) & 0xffff);   \
216b1a05787SNaveen N. Rao 			}						      \
2170ca87f05SMatt Evans 			PPC_SLDI(d, d, 32);				      \
2180ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x00000000ffff0000ULL)	      \
2190ca87f05SMatt Evans 				PPC_ORIS(d, d,				      \
2200ca87f05SMatt Evans 					 ((uintptr_t)(i) >> 16) & 0xffff);    \
2210ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x000000000000ffffULL)	      \
2220ca87f05SMatt Evans 				PPC_ORI(d, d, (uintptr_t)(i) & 0xffff);	      \
223b1a05787SNaveen N. Rao 		} } while (0)
2240ca87f05SMatt Evans 
22509ca5ab2SDenis Kirjanov #ifdef CONFIG_PPC64
22609ca5ab2SDenis Kirjanov #define PPC_FUNC_ADDR(d,i) do { PPC_LI64(d, i); } while(0)
22709ca5ab2SDenis Kirjanov #else
22809ca5ab2SDenis Kirjanov #define PPC_FUNC_ADDR(d,i) do { PPC_LI32(d, i); } while(0)
22909ca5ab2SDenis Kirjanov #endif
23009ca5ab2SDenis Kirjanov 
2310ca87f05SMatt Evans static inline bool is_nearbranch(int offset)
2320ca87f05SMatt Evans {
2330ca87f05SMatt Evans 	return (offset < 32768) && (offset >= -32768);
2340ca87f05SMatt Evans }
2350ca87f05SMatt Evans 
2360ca87f05SMatt Evans /*
2370ca87f05SMatt Evans  * The fly in the ointment of code size changing from pass to pass is
2380ca87f05SMatt Evans  * avoided by padding the short branch case with a NOP.	 If code size differs
2390ca87f05SMatt Evans  * with different branch reaches we will have the issue of code moving from
2400ca87f05SMatt Evans  * one pass to the next and will need a few passes to converge on a stable
2410ca87f05SMatt Evans  * state.
2420ca87f05SMatt Evans  */
2430ca87f05SMatt Evans #define PPC_BCC(cond, dest)	do {					      \
2440ca87f05SMatt Evans 		if (is_nearbranch((dest) - (ctx->idx * 4))) {		      \
2450ca87f05SMatt Evans 			PPC_BCC_SHORT(cond, dest);			      \
2460ca87f05SMatt Evans 			PPC_NOP();					      \
2470ca87f05SMatt Evans 		} else {						      \
2480ca87f05SMatt Evans 			/* Flip the 'T or F' bit to invert comparison */      \
2490ca87f05SMatt Evans 			PPC_BCC_SHORT(cond ^ COND_CMP_TRUE, (ctx->idx+2)*4);  \
2500ca87f05SMatt Evans 			PPC_JMP(dest);					      \
2510ca87f05SMatt Evans 		} } while(0)
2520ca87f05SMatt Evans 
2530ca87f05SMatt Evans /* To create a branch condition, select a bit of cr0... */
2540ca87f05SMatt Evans #define CR0_LT		0
2550ca87f05SMatt Evans #define CR0_GT		1
2560ca87f05SMatt Evans #define CR0_EQ		2
2570ca87f05SMatt Evans /* ...and modify BO[3] */
2580ca87f05SMatt Evans #define COND_CMP_TRUE	0x100
2590ca87f05SMatt Evans #define COND_CMP_FALSE	0x000
2600ca87f05SMatt Evans /* Together, they make all required comparisons: */
2610ca87f05SMatt Evans #define COND_GT		(CR0_GT | COND_CMP_TRUE)
2620ca87f05SMatt Evans #define COND_GE		(CR0_LT | COND_CMP_FALSE)
2630ca87f05SMatt Evans #define COND_EQ		(CR0_EQ | COND_CMP_TRUE)
2640ca87f05SMatt Evans #define COND_NE		(CR0_EQ | COND_CMP_FALSE)
2650ca87f05SMatt Evans #define COND_LT		(CR0_LT | COND_CMP_TRUE)
26620dbf5ccSDaniel Borkmann #define COND_LE		(CR0_GT | COND_CMP_FALSE)
2670ca87f05SMatt Evans 
2680ca87f05SMatt Evans #endif
2690ca87f05SMatt Evans 
2700ca87f05SMatt Evans #endif
271