xref: /openbmc/linux/arch/powerpc/net/bpf_jit.h (revision 156d0e29)
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))
43cdaade71SMichael Neuling #define PPC_ADDI(d, a, i)	EMIT(PPC_INST_ADDI | ___PPC_RT(d) |	      \
44cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
450ca87f05SMatt Evans #define PPC_MR(d, a)		PPC_OR(d, a, a)
460ca87f05SMatt Evans #define PPC_LI(r, i)		PPC_ADDI(r, 0, i)
470ca87f05SMatt Evans #define PPC_ADDIS(d, a, i)	EMIT(PPC_INST_ADDIS |			      \
48cef1e8cdSNaveen N. Rao 				     ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i))
490ca87f05SMatt Evans #define PPC_LIS(r, i)		PPC_ADDIS(r, 0, i)
50cdaade71SMichael Neuling #define PPC_STD(r, base, i)	EMIT(PPC_INST_STD | ___PPC_RS(r) |	      \
51cdaade71SMichael Neuling 				     ___PPC_RA(base) | ((i) & 0xfffc))
5209ca5ab2SDenis Kirjanov #define PPC_STDU(r, base, i)	EMIT(PPC_INST_STDU | ___PPC_RS(r) |	      \
5309ca5ab2SDenis Kirjanov 				     ___PPC_RA(base) | ((i) & 0xfffc))
5409ca5ab2SDenis Kirjanov #define PPC_STW(r, base, i)	EMIT(PPC_INST_STW | ___PPC_RS(r) |	      \
55cef1e8cdSNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
5609ca5ab2SDenis Kirjanov #define PPC_STWU(r, base, i)	EMIT(PPC_INST_STWU | ___PPC_RS(r) |	      \
57cef1e8cdSNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
58156d0e29SNaveen N. Rao #define PPC_STH(r, base, i)	EMIT(PPC_INST_STH | ___PPC_RS(r) |	      \
59156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
60156d0e29SNaveen N. Rao #define PPC_STB(r, base, i)	EMIT(PPC_INST_STB | ___PPC_RS(r) |	      \
61156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | IMM_L(i))
624e235761SDenis Kirjanov 
634e235761SDenis Kirjanov #define PPC_LBZ(r, base, i)	EMIT(PPC_INST_LBZ | ___PPC_RT(r) |	      \
644e235761SDenis Kirjanov 				     ___PPC_RA(base) | IMM_L(i))
65cdaade71SMichael Neuling #define PPC_LD(r, base, i)	EMIT(PPC_INST_LD | ___PPC_RT(r) |	      \
66cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
67cdaade71SMichael Neuling #define PPC_LWZ(r, base, i)	EMIT(PPC_INST_LWZ | ___PPC_RT(r) |	      \
68cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
69cdaade71SMichael Neuling #define PPC_LHZ(r, base, i)	EMIT(PPC_INST_LHZ | ___PPC_RT(r) |	      \
70cdaade71SMichael Neuling 				     ___PPC_RA(base) | IMM_L(i))
719c662cadSPhilippe Bergheaud #define PPC_LHBRX(r, base, b)	EMIT(PPC_INST_LHBRX | ___PPC_RT(r) |	      \
729c662cadSPhilippe Bergheaud 				     ___PPC_RA(base) | ___PPC_RB(b))
73156d0e29SNaveen N. Rao #define PPC_LDBRX(r, base, b)	EMIT(PPC_INST_LDBRX | ___PPC_RT(r) |	      \
74156d0e29SNaveen N. Rao 				     ___PPC_RA(base) | ___PPC_RB(b))
75156d0e29SNaveen N. Rao 
76156d0e29SNaveen N. Rao #define PPC_BPF_LDARX(t, a, b, eh) EMIT(PPC_INST_LDARX | ___PPC_RT(t) |	      \
77156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b) |	      \
78156d0e29SNaveen N. Rao 					__PPC_EH(eh))
79156d0e29SNaveen N. Rao #define PPC_BPF_LWARX(t, a, b, eh) EMIT(PPC_INST_LWARX | ___PPC_RT(t) |	      \
80156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b) |	      \
81156d0e29SNaveen N. Rao 					__PPC_EH(eh))
82156d0e29SNaveen N. Rao #define PPC_BPF_STWCX(s, a, b)	EMIT(PPC_INST_STWCX | ___PPC_RS(s) |	      \
83156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b))
84156d0e29SNaveen N. Rao #define PPC_BPF_STDCX(s, a, b)	EMIT(PPC_INST_STDCX | ___PPC_RS(s) |	      \
85156d0e29SNaveen N. Rao 					___PPC_RA(a) | ___PPC_RB(b))
8609ca5ab2SDenis Kirjanov 
8709ca5ab2SDenis Kirjanov #ifdef CONFIG_PPC64
8809ca5ab2SDenis Kirjanov #define PPC_BPF_LL(r, base, i) do { PPC_LD(r, base, i); } while(0)
8909ca5ab2SDenis Kirjanov #define PPC_BPF_STL(r, base, i) do { PPC_STD(r, base, i); } while(0)
9009ca5ab2SDenis Kirjanov #define PPC_BPF_STLU(r, base, i) do { PPC_STDU(r, base, i); } while(0)
9109ca5ab2SDenis Kirjanov #else
9209ca5ab2SDenis Kirjanov #define PPC_BPF_LL(r, base, i) do { PPC_LWZ(r, base, i); } while(0)
9309ca5ab2SDenis Kirjanov #define PPC_BPF_STL(r, base, i) do { PPC_STW(r, base, i); } while(0)
9409ca5ab2SDenis Kirjanov #define PPC_BPF_STLU(r, base, i) do { PPC_STWU(r, base, i); } while(0)
9509ca5ab2SDenis Kirjanov #endif
9609ca5ab2SDenis Kirjanov 
97cdaade71SMichael Neuling #define PPC_CMPWI(a, i)		EMIT(PPC_INST_CMPWI | ___PPC_RA(a) | IMM_L(i))
98cdaade71SMichael Neuling #define PPC_CMPDI(a, i)		EMIT(PPC_INST_CMPDI | ___PPC_RA(a) | IMM_L(i))
99156d0e29SNaveen N. Rao #define PPC_CMPW(a, b)		EMIT(PPC_INST_CMPW | ___PPC_RA(a) |	      \
100156d0e29SNaveen N. Rao 					___PPC_RB(b))
101156d0e29SNaveen N. Rao #define PPC_CMPD(a, b)		EMIT(PPC_INST_CMPD | ___PPC_RA(a) |	      \
102156d0e29SNaveen N. Rao 					___PPC_RB(b))
103cdaade71SMichael Neuling #define PPC_CMPLWI(a, i)	EMIT(PPC_INST_CMPLWI | ___PPC_RA(a) | IMM_L(i))
104156d0e29SNaveen N. Rao #define PPC_CMPLDI(a, i)	EMIT(PPC_INST_CMPLDI | ___PPC_RA(a) | IMM_L(i))
105cef1e8cdSNaveen N. Rao #define PPC_CMPLW(a, b)		EMIT(PPC_INST_CMPLW | ___PPC_RA(a) |	      \
106cef1e8cdSNaveen N. Rao 					___PPC_RB(b))
107156d0e29SNaveen N. Rao #define PPC_CMPLD(a, b)		EMIT(PPC_INST_CMPLD | ___PPC_RA(a) |	      \
108156d0e29SNaveen N. Rao 					___PPC_RB(b))
1090ca87f05SMatt Evans 
110cdaade71SMichael Neuling #define PPC_SUB(d, a, b)	EMIT(PPC_INST_SUB | ___PPC_RT(d) |	      \
111cdaade71SMichael Neuling 				     ___PPC_RB(a) | ___PPC_RA(b))
112cdaade71SMichael Neuling #define PPC_ADD(d, a, b)	EMIT(PPC_INST_ADD | ___PPC_RT(d) |	      \
113cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
114156d0e29SNaveen N. Rao #define PPC_MULD(d, a, b)	EMIT(PPC_INST_MULLD | ___PPC_RT(d) |	      \
115156d0e29SNaveen N. Rao 				     ___PPC_RA(a) | ___PPC_RB(b))
116cef1e8cdSNaveen N. Rao #define PPC_MULW(d, a, b)	EMIT(PPC_INST_MULLW | ___PPC_RT(d) |	      \
117cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
118cdaade71SMichael Neuling #define PPC_MULHWU(d, a, b)	EMIT(PPC_INST_MULHWU | ___PPC_RT(d) |	      \
119cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
120cdaade71SMichael Neuling #define PPC_MULI(d, a, i)	EMIT(PPC_INST_MULLI | ___PPC_RT(d) |	      \
121cdaade71SMichael Neuling 				     ___PPC_RA(a) | IMM_L(i))
122cdaade71SMichael Neuling #define PPC_DIVWU(d, a, b)	EMIT(PPC_INST_DIVWU | ___PPC_RT(d) |	      \
123cdaade71SMichael Neuling 				     ___PPC_RA(a) | ___PPC_RB(b))
124156d0e29SNaveen N. Rao #define PPC_DIVD(d, a, b)	EMIT(PPC_INST_DIVD | ___PPC_RT(d) |	      \
125156d0e29SNaveen N. Rao 				     ___PPC_RA(a) | ___PPC_RB(b))
126cdaade71SMichael Neuling #define PPC_AND(d, a, b)	EMIT(PPC_INST_AND | ___PPC_RA(d) |	      \
127cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
128cdaade71SMichael Neuling #define PPC_ANDI(d, a, i)	EMIT(PPC_INST_ANDI | ___PPC_RA(d) |	      \
129cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
130cdaade71SMichael Neuling #define PPC_AND_DOT(d, a, b)	EMIT(PPC_INST_ANDDOT | ___PPC_RA(d) |	      \
131cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
132cdaade71SMichael Neuling #define PPC_OR(d, a, b)		EMIT(PPC_INST_OR | ___PPC_RA(d) |	      \
133cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(b))
134156d0e29SNaveen N. Rao #define PPC_MR(d, a)		PPC_OR(d, a, a)
135cdaade71SMichael Neuling #define PPC_ORI(d, a, i)	EMIT(PPC_INST_ORI | ___PPC_RA(d) |	      \
136cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
137cdaade71SMichael Neuling #define PPC_ORIS(d, a, i)	EMIT(PPC_INST_ORIS | ___PPC_RA(d) |	      \
138cdaade71SMichael Neuling 				     ___PPC_RS(a) | IMM_L(i))
13902871903SDaniel Borkmann #define PPC_XOR(d, a, b)	EMIT(PPC_INST_XOR | ___PPC_RA(d) |	      \
14002871903SDaniel Borkmann 				     ___PPC_RS(a) | ___PPC_RB(b))
14102871903SDaniel Borkmann #define PPC_XORI(d, a, i)	EMIT(PPC_INST_XORI | ___PPC_RA(d) |	      \
14202871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
14302871903SDaniel Borkmann #define PPC_XORIS(d, a, i)	EMIT(PPC_INST_XORIS | ___PPC_RA(d) |	      \
14402871903SDaniel Borkmann 				     ___PPC_RS(a) | IMM_L(i))
145156d0e29SNaveen N. Rao #define PPC_EXTSW(d, a)		EMIT(PPC_INST_EXTSW | ___PPC_RA(d) |	      \
146156d0e29SNaveen N. Rao 				     ___PPC_RS(a))
147cdaade71SMichael Neuling #define PPC_SLW(d, a, s)	EMIT(PPC_INST_SLW | ___PPC_RA(d) |	      \
148cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
149156d0e29SNaveen N. Rao #define PPC_SLD(d, a, s)	EMIT(PPC_INST_SLD | ___PPC_RA(d) |	      \
150156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
151cdaade71SMichael Neuling #define PPC_SRW(d, a, s)	EMIT(PPC_INST_SRW | ___PPC_RA(d) |	      \
152cdaade71SMichael Neuling 				     ___PPC_RS(a) | ___PPC_RB(s))
153156d0e29SNaveen N. Rao #define PPC_SRD(d, a, s)	EMIT(PPC_INST_SRD | ___PPC_RA(d) |	      \
154156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
155156d0e29SNaveen N. Rao #define PPC_SRAD(d, a, s)	EMIT(PPC_INST_SRAD | ___PPC_RA(d) |	      \
156156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | ___PPC_RB(s))
157156d0e29SNaveen N. Rao #define PPC_SRADI(d, a, i)	EMIT(PPC_INST_SRADI | ___PPC_RA(d) |	      \
158156d0e29SNaveen N. Rao 				     ___PPC_RS(a) | __PPC_SH(i) |             \
159156d0e29SNaveen N. Rao 				     (((i) & 0x20) >> 4))
160277285b8SNaveen N. Rao #define PPC_RLWINM(d, a, i, mb, me)	EMIT(PPC_INST_RLWINM | ___PPC_RA(d) | \
161277285b8SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
162277285b8SNaveen N. Rao 					__PPC_MB(mb) | __PPC_ME(me))
163156d0e29SNaveen N. Rao #define PPC_RLWIMI(d, a, i, mb, me)	EMIT(PPC_INST_RLWIMI | ___PPC_RA(d) | \
164156d0e29SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
165156d0e29SNaveen N. Rao 					__PPC_MB(mb) | __PPC_ME(me))
166156d0e29SNaveen N. Rao #define PPC_RLDICL(d, a, i, mb)		EMIT(PPC_INST_RLDICL | ___PPC_RA(d) | \
167156d0e29SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
168156d0e29SNaveen N. Rao 					__PPC_MB64(mb) | (((i) & 0x20) >> 4))
169277285b8SNaveen N. Rao #define PPC_RLDICR(d, a, i, me)		EMIT(PPC_INST_RLDICR | ___PPC_RA(d) | \
170277285b8SNaveen N. Rao 					___PPC_RS(a) | __PPC_SH(i) |	      \
171277285b8SNaveen N. Rao 					__PPC_ME64(me) | (((i) & 0x20) >> 4))
172277285b8SNaveen N. Rao 
1730ca87f05SMatt Evans /* slwi = rlwinm Rx, Ry, n, 0, 31-n */
174277285b8SNaveen N. Rao #define PPC_SLWI(d, a, i)	PPC_RLWINM(d, a, i, 0, 31-(i))
1750ca87f05SMatt Evans /* srwi = rlwinm Rx, Ry, 32-n, n, 31 */
176277285b8SNaveen N. Rao #define PPC_SRWI(d, a, i)	PPC_RLWINM(d, a, 32-(i), i, 31)
1770ca87f05SMatt Evans /* sldi = rldicr Rx, Ry, n, 63-n */
178277285b8SNaveen N. Rao #define PPC_SLDI(d, a, i)	PPC_RLDICR(d, a, i, 63-(i))
179156d0e29SNaveen N. Rao /* sldi = rldicl Rx, Ry, 64-n, n */
180156d0e29SNaveen N. Rao #define PPC_SRDI(d, a, i)	PPC_RLDICL(d, a, 64-(i), i)
181277285b8SNaveen N. Rao 
182cdaade71SMichael Neuling #define PPC_NEG(d, a)		EMIT(PPC_INST_NEG | ___PPC_RT(d) | ___PPC_RA(a))
1830ca87f05SMatt Evans 
1840ca87f05SMatt Evans /* Long jump; (unconditional 'branch') */
1850ca87f05SMatt Evans #define PPC_JMP(dest)		EMIT(PPC_INST_BRANCH |			      \
1860ca87f05SMatt Evans 				     (((dest) - (ctx->idx * 4)) & 0x03fffffc))
1870ca87f05SMatt Evans /* "cond" here covers BO:BI fields. */
1880ca87f05SMatt Evans #define PPC_BCC_SHORT(cond, dest)	EMIT(PPC_INST_BRANCH_COND |	      \
1890ca87f05SMatt Evans 					     (((cond) & 0x3ff) << 16) |	      \
1900ca87f05SMatt Evans 					     (((dest) - (ctx->idx * 4)) &     \
1910ca87f05SMatt Evans 					      0xfffc))
192aaf2f7e0SNaveen N. Rao /* Sign-extended 32-bit immediate load */
193aaf2f7e0SNaveen N. Rao #define PPC_LI32(d, i)		do {					      \
194aaf2f7e0SNaveen N. Rao 		if ((int)(uintptr_t)(i) >= -32768 &&			      \
195aaf2f7e0SNaveen N. Rao 				(int)(uintptr_t)(i) < 32768)		      \
196aaf2f7e0SNaveen N. Rao 			PPC_LI(d, i);					      \
197aaf2f7e0SNaveen N. Rao 		else {							      \
198aaf2f7e0SNaveen N. Rao 			PPC_LIS(d, IMM_H(i));				      \
199aaf2f7e0SNaveen N. Rao 			if (IMM_L(i))					      \
200aaf2f7e0SNaveen N. Rao 				PPC_ORI(d, d, IMM_L(i));		      \
2010ca87f05SMatt Evans 		} } while(0)
202aaf2f7e0SNaveen N. Rao 
2030ca87f05SMatt Evans #define PPC_LI64(d, i)		do {					      \
204b1a05787SNaveen N. Rao 		if ((long)(i) >= -2147483648 &&				      \
205b1a05787SNaveen N. Rao 				(long)(i) < 2147483648)			      \
2060ca87f05SMatt Evans 			PPC_LI32(d, i);					      \
2070ca87f05SMatt Evans 		else {							      \
208b1a05787SNaveen N. Rao 			if (!((uintptr_t)(i) & 0xffff800000000000ULL))	      \
209b1a05787SNaveen N. Rao 				PPC_LI(d, ((uintptr_t)(i) >> 32) & 0xffff);   \
210b1a05787SNaveen N. Rao 			else {						      \
2110ca87f05SMatt Evans 				PPC_LIS(d, ((uintptr_t)(i) >> 48));	      \
2120ca87f05SMatt Evans 				if ((uintptr_t)(i) & 0x0000ffff00000000ULL)   \
2130ca87f05SMatt Evans 					PPC_ORI(d, d,			      \
2140ca87f05SMatt Evans 					  ((uintptr_t)(i) >> 32) & 0xffff);   \
215b1a05787SNaveen N. Rao 			}						      \
2160ca87f05SMatt Evans 			PPC_SLDI(d, d, 32);				      \
2170ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x00000000ffff0000ULL)	      \
2180ca87f05SMatt Evans 				PPC_ORIS(d, d,				      \
2190ca87f05SMatt Evans 					 ((uintptr_t)(i) >> 16) & 0xffff);    \
2200ca87f05SMatt Evans 			if ((uintptr_t)(i) & 0x000000000000ffffULL)	      \
2210ca87f05SMatt Evans 				PPC_ORI(d, d, (uintptr_t)(i) & 0xffff);	      \
222b1a05787SNaveen N. Rao 		} } while (0)
2230ca87f05SMatt Evans 
22409ca5ab2SDenis Kirjanov #ifdef CONFIG_PPC64
22509ca5ab2SDenis Kirjanov #define PPC_FUNC_ADDR(d,i) do { PPC_LI64(d, i); } while(0)
22609ca5ab2SDenis Kirjanov #else
22709ca5ab2SDenis Kirjanov #define PPC_FUNC_ADDR(d,i) do { PPC_LI32(d, i); } while(0)
22809ca5ab2SDenis Kirjanov #endif
22909ca5ab2SDenis Kirjanov 
2300ca87f05SMatt Evans static inline bool is_nearbranch(int offset)
2310ca87f05SMatt Evans {
2320ca87f05SMatt Evans 	return (offset < 32768) && (offset >= -32768);
2330ca87f05SMatt Evans }
2340ca87f05SMatt Evans 
2350ca87f05SMatt Evans /*
2360ca87f05SMatt Evans  * The fly in the ointment of code size changing from pass to pass is
2370ca87f05SMatt Evans  * avoided by padding the short branch case with a NOP.	 If code size differs
2380ca87f05SMatt Evans  * with different branch reaches we will have the issue of code moving from
2390ca87f05SMatt Evans  * one pass to the next and will need a few passes to converge on a stable
2400ca87f05SMatt Evans  * state.
2410ca87f05SMatt Evans  */
2420ca87f05SMatt Evans #define PPC_BCC(cond, dest)	do {					      \
2430ca87f05SMatt Evans 		if (is_nearbranch((dest) - (ctx->idx * 4))) {		      \
2440ca87f05SMatt Evans 			PPC_BCC_SHORT(cond, dest);			      \
2450ca87f05SMatt Evans 			PPC_NOP();					      \
2460ca87f05SMatt Evans 		} else {						      \
2470ca87f05SMatt Evans 			/* Flip the 'T or F' bit to invert comparison */      \
2480ca87f05SMatt Evans 			PPC_BCC_SHORT(cond ^ COND_CMP_TRUE, (ctx->idx+2)*4);  \
2490ca87f05SMatt Evans 			PPC_JMP(dest);					      \
2500ca87f05SMatt Evans 		} } while(0)
2510ca87f05SMatt Evans 
2520ca87f05SMatt Evans /* To create a branch condition, select a bit of cr0... */
2530ca87f05SMatt Evans #define CR0_LT		0
2540ca87f05SMatt Evans #define CR0_GT		1
2550ca87f05SMatt Evans #define CR0_EQ		2
2560ca87f05SMatt Evans /* ...and modify BO[3] */
2570ca87f05SMatt Evans #define COND_CMP_TRUE	0x100
2580ca87f05SMatt Evans #define COND_CMP_FALSE	0x000
2590ca87f05SMatt Evans /* Together, they make all required comparisons: */
2600ca87f05SMatt Evans #define COND_GT		(CR0_GT | COND_CMP_TRUE)
2610ca87f05SMatt Evans #define COND_GE		(CR0_LT | COND_CMP_FALSE)
2620ca87f05SMatt Evans #define COND_EQ		(CR0_EQ | COND_CMP_TRUE)
2630ca87f05SMatt Evans #define COND_NE		(CR0_EQ | COND_CMP_FALSE)
2640ca87f05SMatt Evans #define COND_LT		(CR0_LT | COND_CMP_TRUE)
2650ca87f05SMatt Evans 
2660ca87f05SMatt Evans #endif
2670ca87f05SMatt Evans 
2680ca87f05SMatt Evans #endif
269