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