Lines Matching +full:0 +full:x98000000
10 (0x7c00060c | (RA) << (31-15) | (RB) << (31-20) | (L) << (31-10))
16 asm volatile(str(COPY(0, %0, 0))";" in copy()
25 asm volatile(str(COPY(0, %0, 1))";" in copy_first()
34 (0x7c00070c | (RA) << (31-15) | (RB) << (31-20) | (L) << (31-10) | (RC) << (31-31))
42 asm volatile(str(PASTE(0, %1, 0, 0))";" in paste()
43 "mfcr %0;" in paste()
55 asm volatile(str(PASTE(0, %1, 1, 1))";" in paste_last()
56 "mfcr %0;" in paste_last()
64 #define PPC_INST_COPY __COPY(0, 0, 0)
65 #define PPC_INST_COPY_FIRST __COPY(0, 0, 1)
66 #define PPC_INST_PASTE __PASTE(0, 0, 0, 0)
67 #define PPC_INST_PASTE_LAST __PASTE(0, 0, 1, 1)
77 #define __PPC_RA(a) (((a) & 0x1f) << 16)
78 #define __PPC_RS(s) (((s) & 0x1f) << 21)
80 #define __PPC_PREFIX_R(r) (((r) & 0x1) << 20)
82 #define PPC_PREFIX_MLS 0x06000000
83 #define PPC_PREFIX_8LS 0x04000000
85 #define PPC_INST_LBZ 0x88000000
86 #define PPC_INST_LHZ 0xa0000000
87 #define PPC_INST_LHA 0xa8000000
88 #define PPC_INST_LWZ 0x80000000
89 #define PPC_INST_STB 0x98000000
90 #define PPC_INST_STH 0xb0000000
91 #define PPC_INST_STW 0x90000000
92 #define PPC_INST_STD 0xf8000000
93 #define PPC_INST_LFS 0xc0000000
94 #define PPC_INST_LFD 0xc8000000
95 #define PPC_INST_STFS 0xd0000000
96 #define PPC_INST_STFD 0xd8000000
101 (((d) >> 16) & 0x3ffff);) \
105 ((d) & 0xffff);\n)
110 (((d) >> 16) & 0x3ffff);) \
114 ((d) & 0xffff);\n)
121 #define PLWA(t, a, r, d) PREFIX_8LS(0xa4000000, t, a, r, d)
122 #define PLD(t, a, r, d) PREFIX_8LS(0xe4000000, t, a, r, d)
123 #define PLQ(t, a, r, d) PREFIX_8LS(0xe0000000, t, a, r, d)
127 #define PSTD(s, a, r, d) PREFIX_8LS(0xf4000000, s, a, r, d)
128 #define PSTQ(s, a, r, d) PREFIX_8LS(0xf0000000, s, a, r, d)
137 #define PLXSD(vrt, a, r, d) PREFIX_8LS(0xa8000000, vrt, a, r, d)
138 #define PLXSSP(vrt, a, r, d) PREFIX_8LS(0xac000000, vrt, a, r, d)
139 #define PLXV0(s, a, r, d) PREFIX_8LS(0xc8000000, s, a, r, d)
140 #define PLXV1(s, a, r, d) PREFIX_8LS(0xcc000000, s, a, r, d)
141 #define PSTXSD(vrs, a, r, d) PREFIX_8LS(0xb8000000, vrs, a, r, d)
142 #define PSTXSSP(vrs, a, r, d) PREFIX_8LS(0xbc000000, vrs, a, r, d)
143 #define PSTXV0(s, a, r, d) PREFIX_8LS(0xd8000000, s, a, r, d)
144 #define PSTXV1(s, a, r, d) PREFIX_8LS(0xdc000000, s, a, r, d)