|
@@ -134,6 +134,12 @@ DECLARE_LOAD_FUNC(sk_load_byte_msh);
|
|
|
___PPC_RS(a) | IMM_L(i))
|
|
|
#define PPC_ORIS(d, a, i) EMIT(PPC_INST_ORIS | ___PPC_RA(d) | \
|
|
|
___PPC_RS(a) | IMM_L(i))
|
|
|
+#define PPC_XOR(d, a, b) EMIT(PPC_INST_XOR | ___PPC_RA(d) | \
|
|
|
+ ___PPC_RS(a) | ___PPC_RB(b))
|
|
|
+#define PPC_XORI(d, a, i) EMIT(PPC_INST_XORI | ___PPC_RA(d) | \
|
|
|
+ ___PPC_RS(a) | IMM_L(i))
|
|
|
+#define PPC_XORIS(d, a, i) EMIT(PPC_INST_XORIS | ___PPC_RA(d) | \
|
|
|
+ ___PPC_RS(a) | IMM_L(i))
|
|
|
#define PPC_SLW(d, a, s) EMIT(PPC_INST_SLW | ___PPC_RA(d) | \
|
|
|
___PPC_RS(a) | ___PPC_RB(s))
|
|
|
#define PPC_SRW(d, a, s) EMIT(PPC_INST_SRW | ___PPC_RA(d) | \
|