Lines Matching refs:a

254 #define ___PPC_RA(a)	(((a) & 0x1f) << 16)  argument
258 #define __PPC_RA(a) ___PPC_RA(__REG_##a) argument
259 #define __PPC_RA0(a) ___PPC_RA(__REGA0_##a) argument
263 #define __PPC_XA(a) ((((a) & 0x1f) << 16) | (((a) & 0x20) >> 3)) argument
301 #define PPC_DCBAL(a, b) stringify_in_c(.long PPC_INST_DCBAL | \ argument
302 __PPC_RA(a) | __PPC_RB(b))
303 #define PPC_DCBZL(a, b) stringify_in_c(.long PPC_INST_DCBZL | \ argument
304 __PPC_RA(a) | __PPC_RB(b))
305 #define PPC_LDARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LDARX | \ argument
306 ___PPC_RT(t) | ___PPC_RA(a) | \
310 #define PPC_LWARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LWARX | \ argument
311 ___PPC_RT(t) | ___PPC_RA(a) | \
319 #define PPC_POPCNTB(a, s) stringify_in_c(.long PPC_INST_POPCNTB | \ argument
320 __PPC_RA(a) | __PPC_RS(s))
321 #define PPC_POPCNTD(a, s) stringify_in_c(.long PPC_INST_POPCNTD | \ argument
322 __PPC_RA(a) | __PPC_RS(s))
323 #define PPC_POPCNTW(a, s) stringify_in_c(.long PPC_INST_POPCNTW | \ argument
324 __PPC_RA(a) | __PPC_RS(s))
328 #define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_INST_TLBILX | \ argument
329 __PPC_T_TLB(t) | __PPC_RA0(a) | __PPC_RB(b))
330 #define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b) argument
331 #define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b) argument
332 #define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b) argument
335 #define PPC_TLBIE(lp,a) stringify_in_c(.long PPC_INST_TLBIE | \ argument
336 ___PPC_RB(a) | ___PPC_RS(lp))
337 #define PPC_TLBSRX_DOT(a,b) stringify_in_c(.long PPC_INST_TLBSRX_DOT | \ argument
338 __PPC_RA0(a) | __PPC_RB(b))
339 #define PPC_TLBIVAX(a,b) stringify_in_c(.long PPC_INST_TLBIVAX | \ argument
340 __PPC_RA0(a) | __PPC_RB(b))
342 #define PPC_ERATWE(s, a, w) stringify_in_c(.long PPC_INST_ERATWE | \ argument
343 __PPC_RS(s) | __PPC_RA(a) | __PPC_WS(w))
344 #define PPC_ERATRE(s, a, w) stringify_in_c(.long PPC_INST_ERATRE | \ argument
345 __PPC_RS(s) | __PPC_RA(a) | __PPC_WS(w))
346 #define PPC_ERATILX(t, a, b) stringify_in_c(.long PPC_INST_ERATILX | \ argument
347 __PPC_T_TLB(t) | __PPC_RA0(a) | \
349 #define PPC_ERATIVAX(s, a, b) stringify_in_c(.long PPC_INST_ERATIVAX | \ argument
350 __PPC_RS(s) | __PPC_RA0(a) | __PPC_RB(b))
351 #define PPC_ERATSX(t, a, w) stringify_in_c(.long PPC_INST_ERATSX | \ argument
352 __PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b))
353 #define PPC_ERATSX_DOT(t, a, w) stringify_in_c(.long PPC_INST_ERATSX_DOT | \ argument
354 __PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b))
357 #define PPC_ICBT(c,a,b) stringify_in_c(.long PPC_INST_ICBT | \ argument
358 __PPC_CT(c) | __PPC_RA0(a) | __PPC_RB(b))
360 #define LBZCIX(t,a,b) stringify_in_c(.long PPC_INST_LBZCIX | \ argument
361 __PPC_RT(t) | __PPC_RA(a) | __PPC_RB(b))
362 #define STBCIX(s,a,b) stringify_in_c(.long PPC_INST_STBCIX | \ argument
363 __PPC_RS(s) | __PPC_RA(a) | __PPC_RB(b))
369 #define VSX_XX1(s, a, b) (__PPC_XS(s) | __PPC_RA(a) | __PPC_RB(b)) argument
370 #define VSX_XX3(t, a, b) (__PPC_XT(t) | __PPC_XA(a) | __PPC_XB(b)) argument
371 #define STXVD2X(s, a, b) stringify_in_c(.long PPC_INST_STXVD2X | \ argument
372 VSX_XX1((s), a, b))
373 #define LXVD2X(s, a, b) stringify_in_c(.long PPC_INST_LXVD2X | \ argument
374 VSX_XX1((s), a, b))
375 #define XXLOR(t, a, b) stringify_in_c(.long PPC_INST_XXLOR | \ argument
376 VSX_XX3((t), a, b))
377 #define XXSWAPD(t, a) stringify_in_c(.long PPC_INST_XXSWAPD | \ argument
378 VSX_XX3((t), a, a))
379 #define XVCPSGNDP(t, a, b) stringify_in_c(.long (PPC_INST_XVCPSGNDP | \ argument
380 VSX_XX3((t), (a), (b))))