Lines Matching defs:i

30 #define IMM_H(i)		((uintptr_t)(i)>>16)  argument
31 #define IMM_HA(i) (((uintptr_t)(i)>>16) + \ argument
33 #define IMM_L(i) ((uintptr_t)(i) & 0xffff) argument
45 #define PPC_ADDI(d, a, i) EMIT(PPC_INST_ADDI | ___PPC_RT(d) | \ argument
48 #define PPC_LI(r, i) PPC_ADDI(r, 0, i) argument
49 #define PPC_ADDIS(d, a, i) EMIT(PPC_INST_ADDIS | \ argument
51 #define PPC_LIS(r, i) PPC_ADDIS(r, 0, i) argument
52 #define PPC_STD(r, base, i) EMIT(PPC_INST_STD | ___PPC_RS(r) | \ argument
54 #define PPC_STDU(r, base, i) EMIT(PPC_INST_STDU | ___PPC_RS(r) | \ argument
56 #define PPC_STW(r, base, i) EMIT(PPC_INST_STW | ___PPC_RS(r) | \ argument
58 #define PPC_STWU(r, base, i) EMIT(PPC_INST_STWU | ___PPC_RS(r) | \ argument
60 #define PPC_STH(r, base, i) EMIT(PPC_INST_STH | ___PPC_RS(r) | \ argument
62 #define PPC_STB(r, base, i) EMIT(PPC_INST_STB | ___PPC_RS(r) | \ argument
65 #define PPC_LBZ(r, base, i) EMIT(PPC_INST_LBZ | ___PPC_RT(r) | \ argument
67 #define PPC_LD(r, base, i) EMIT(PPC_INST_LD | ___PPC_RT(r) | \ argument
69 #define PPC_LWZ(r, base, i) EMIT(PPC_INST_LWZ | ___PPC_RT(r) | \ argument
71 #define PPC_LHZ(r, base, i) EMIT(PPC_INST_LHZ | ___PPC_RT(r) | \ argument
90 #define PPC_BPF_LL(r, base, i) do { PPC_LD(r, base, i); } while(0) argument
91 #define PPC_BPF_STL(r, base, i) do { PPC_STD(r, base, i); } while(0) argument
92 #define PPC_BPF_STLU(r, base, i) do { PPC_STDU(r, base, i); } while(0) argument
94 #define PPC_BPF_LL(r, base, i) do { PPC_LWZ(r, base, i); } while(0) argument
95 #define PPC_BPF_STL(r, base, i) do { PPC_STW(r, base, i); } while(0) argument
96 #define PPC_BPF_STLU(r, base, i) do { PPC_STWU(r, base, i); } while(0) argument
99 #define PPC_CMPWI(a, i) EMIT(PPC_INST_CMPWI | ___PPC_RA(a) | IMM_L(i)) argument
100 #define PPC_CMPDI(a, i) EMIT(PPC_INST_CMPDI | ___PPC_RA(a) | IMM_L(i)) argument
105 #define PPC_CMPLWI(a, i) EMIT(PPC_INST_CMPLWI | ___PPC_RA(a) | IMM_L(i)) argument
106 #define PPC_CMPLDI(a, i) EMIT(PPC_INST_CMPLDI | ___PPC_RA(a) | IMM_L(i)) argument
122 #define PPC_MULI(d, a, i) EMIT(PPC_INST_MULLI | ___PPC_RT(d) | \ argument
130 #define PPC_ANDI(d, a, i) EMIT(PPC_INST_ANDI | ___PPC_RA(d) | \ argument
137 #define PPC_ORI(d, a, i) EMIT(PPC_INST_ORI | ___PPC_RA(d) | \ argument
139 #define PPC_ORIS(d, a, i) EMIT(PPC_INST_ORIS | ___PPC_RA(d) | \ argument
143 #define PPC_XORI(d, a, i) EMIT(PPC_INST_XORI | ___PPC_RA(d) | \ argument
145 #define PPC_XORIS(d, a, i) EMIT(PPC_INST_XORIS | ___PPC_RA(d) | \ argument
159 #define PPC_SRADI(d, a, i) EMIT(PPC_INST_SRADI | ___PPC_RA(d) | \ argument
161 #define PPC_RLWINM(d, a, i, mb, me) EMIT(PPC_INST_RLWINM | ___PPC_RA(d) | \ argument
164 #define PPC_RLWIMI(d, a, i, mb, me) EMIT(PPC_INST_RLWIMI | ___PPC_RA(d) | \ argument
167 #define PPC_RLDICL(d, a, i, mb) EMIT(PPC_INST_RLDICL | ___PPC_RA(d) | \ argument
170 #define PPC_RLDICR(d, a, i, me) EMIT(PPC_INST_RLDICR | ___PPC_RA(d) | \ argument
175 #define PPC_SLWI(d, a, i) PPC_RLWINM(d, a, i, 0, 31-(i)) argument
177 #define PPC_SRWI(d, a, i) PPC_RLWINM(d, a, 32-(i), i, 31) argument
179 #define PPC_SLDI(d, a, i) PPC_RLDICR(d, a, i, 63-(i)) argument
181 #define PPC_SRDI(d, a, i) PPC_RLDICL(d, a, 64-(i), i) argument
194 #define PPC_LI32(d, i) do { \ argument
204 #define PPC_LI64(d, i) do { \ argument
226 #define PPC_FUNC_ADDR(d,i) do { PPC_LI64(d, i); } while(0) argument
228 #define PPC_FUNC_ADDR(d,i) do { PPC_LI32(d, i); } while(0) argument