Lines Matching defs:x
262 #define OP2(x) (((x) & 0x7) << 22) /* Op2 field of format2 insns. */ argument
263 #define OP3(x) (((x) & 0x3f) << 19) /* Op3 field of format3 insns. */ argument
264 #define OP(x) ((unsigned) ((x) & 0x3) << 30) /* Op field of all insns. */ argument
265 #define OPF(x) (((x) & 0x1ff) << 5) /* Opf field of float insns. */ argument
266 #define OPF_LOW5(x) OPF ((x) & 0x1f) /* V9. */ argument
267 #define OPF_LOW4(x) OPF ((x) & 0xf) /* V9. */ argument
268 #define F3F(x, y, z) (OP (x) | OP3 (y) | OPF (z)) /* Format3 float insns. */ argument
269 #define F3F4(x, y, z) (OP (x) | OP3 (y) | OPF_LOW4 (z)) argument
270 #define F3I(x) (((x) & 0x1) << 13) /* Immediate field of format 3 insns. */ argument
271 #define F2(x, y) (OP (x) | OP2(y)) /* Format 2 insns. */ argument
272 #define F3(x, y, z) (OP (x) | OP3(y) | F3I(z)) /* Format3 insns. */ argument
273 #define F1(x) (OP (x)) argument
274 #define DISP30(x) ((x) & 0x3fffffff) argument
275 #define ASI(x) (((x) & 0xff) << 5) /* Asi field of format3 insns. */ argument
276 #define RS2(x) ((x) & 0x1f) /* Rs2 field. */ argument
277 #define SIMM13(x) ((x) & 0x1fff) /* Simm13 field. */ argument
278 #define RD(x) (((x) & 0x1f) << 25) /* Destination register field. */ argument
279 #define RS1(x) (((x) & 0x1f) << 14) /* Rs1 field. */ argument
280 #define RS3(x) (((x) & 0x1f) << 9) /* Rs3 field. */ argument
281 #define ASI_RS2(x) (SIMM13 (x)) argument
282 #define MEMBAR(x) ((x) & 0x7f) argument
283 #define SLCPOP(x) (((x) & 0x7f) << 6) /* Sparclet cpop. */ argument