Lines Matching defs:OPC1

119 #define OPC1(opcode)	((opcode) << 30)
124 #define ADD (OPC1(0x2) | OPC3(0x00))
125 #define ADDC (OPC1(0x2) | OPC3(0x08))
126 #define AND (OPC1(0x2) | OPC3(0x01))
127 #define ANDN (OPC1(0x2) | OPC3(0x05))
128 #define CALL (OPC1(0x1))
129 #define FABSS (OPC1(0x2) | OPC3(0x34) | DOP(0x09))
130 #define FADDD (OPC1(0x2) | OPC3(0x34) | DOP(0x42))
131 #define FADDS (OPC1(0x2) | OPC3(0x34) | DOP(0x41))
132 #define FCMPD (OPC1(0x2) | OPC3(0x35) | DOP(0x52))
133 #define FCMPS (OPC1(0x2) | OPC3(0x35) | DOP(0x51))
134 #define FDIVD (OPC1(0x2) | OPC3(0x34) | DOP(0x4e))
135 #define FDIVS (OPC1(0x2) | OPC3(0x34) | DOP(0x4d))
136 #define FDTOI (OPC1(0x2) | OPC3(0x34) | DOP(0xd2))
137 #define FDTOS (OPC1(0x2) | OPC3(0x34) | DOP(0xc6))
138 #define FITOD (OPC1(0x2) | OPC3(0x34) | DOP(0xc8))
139 #define FITOS (OPC1(0x2) | OPC3(0x34) | DOP(0xc4))
140 #define FMOVS (OPC1(0x2) | OPC3(0x34) | DOP(0x01))
141 #define FMULD (OPC1(0x2) | OPC3(0x34) | DOP(0x4a))
142 #define FMULS (OPC1(0x2) | OPC3(0x34) | DOP(0x49))
143 #define FNEGS (OPC1(0x2) | OPC3(0x34) | DOP(0x05))
144 #define FSTOD (OPC1(0x2) | OPC3(0x34) | DOP(0xc9))
145 #define FSTOI (OPC1(0x2) | OPC3(0x34) | DOP(0xd1))
146 #define FSUBD (OPC1(0x2) | OPC3(0x34) | DOP(0x46))
147 #define FSUBS (OPC1(0x2) | OPC3(0x34) | DOP(0x45))
148 #define JMPL (OPC1(0x2) | OPC3(0x38))
149 #define NOP (OPC1(0x0) | OPC2(0x04))
150 #define OR (OPC1(0x2) | OPC3(0x02))
151 #define ORN (OPC1(0x2) | OPC3(0x06))
152 #define RDY (OPC1(0x2) | OPC3(0x28) | S1A(0))
153 #define RESTORE (OPC1(0x2) | OPC3(0x3d))
154 #define SAVE (OPC1(0x2) | OPC3(0x3c))
155 #define SETHI (OPC1(0x0) | OPC2(0x04))
156 #define SLL (OPC1(0x2) | OPC3(0x25))
157 #define SLLX (OPC1(0x2) | OPC3(0x25) | (1 << 12))
158 #define SRA (OPC1(0x2) | OPC3(0x27))
159 #define SRAX (OPC1(0x2) | OPC3(0x27) | (1 << 12))
160 #define SRL (OPC1(0x2) | OPC3(0x26))
161 #define SRLX (OPC1(0x2) | OPC3(0x26) | (1 << 12))
162 #define SUB (OPC1(0x2) | OPC3(0x04))
163 #define SUBC (OPC1(0x2) | OPC3(0x0c))
164 #define TA (OPC1(0x2) | OPC3(0x3a) | (8 << 25))
165 #define WRY (OPC1(0x2) | OPC3(0x30) | DA(0))
166 #define XOR (OPC1(0x2) | OPC3(0x03))
167 #define XNOR (OPC1(0x2) | OPC3(0x07))
174 #define BICC (OPC1(0x0) | OPC2(0x2))
175 #define FBFCC (OPC1(0x0) | OPC2(0x6))
177 #define SDIV (OPC1(0x2) | OPC3(0x0f))
178 #define SMUL (OPC1(0x2) | OPC3(0x0b))
179 #define UDIV (OPC1(0x2) | OPC3(0x0e))
180 #define UMUL (OPC1(0x2) | OPC3(0x0a))
499 /* u w s */ ARCH_32_64(OPC1(3) | OPC3(0x04) /* stw */, OPC1(3) | OPC3(0x0e) /* stx */),
500 /* u w l */ ARCH_32_64(OPC1(3) | OPC3(0x00) /* lduw */, OPC1(3) | OPC3(0x0b) /* ldx */),
501 /* u b s */ OPC1(3) | OPC3(0x05) /* stb */,
502 /* u b l */ OPC1(3) | OPC3(0x01) /* ldub */,
503 /* u h s */ OPC1(3) | OPC3(0x06) /* sth */,
504 /* u h l */ OPC1(3) | OPC3(0x02) /* lduh */,
505 /* u i s */ OPC1(3) | OPC3(0x04) /* stw */,
506 /* u i l */ OPC1(3) | OPC3(0x00) /* lduw */,
508 /* s w s */ ARCH_32_64(OPC1(3) | OPC3(0x04) /* stw */, OPC1(3) | OPC3(0x0e) /* stx */),
509 /* s w l */ ARCH_32_64(OPC1(3) | OPC3(0x00) /* lduw */, OPC1(3) | OPC3(0x0b) /* ldx */),
510 /* s b s */ OPC1(3) | OPC3(0x05) /* stb */,
511 /* s b l */ OPC1(3) | OPC3(0x09) /* ldsb */,
512 /* s h s */ OPC1(3) | OPC3(0x06) /* sth */,
513 /* s h l */ OPC1(3) | OPC3(0x0a) /* ldsh */,
514 /* s i s */ OPC1(3) | OPC3(0x04) /* stw */,
515 /* s i l */ ARCH_32_64(OPC1(3) | OPC3(0x00) /* lduw */, OPC1(3) | OPC3(0x08) /* ldsw */),
517 /* d s */ OPC1(3) | OPC3(0x27),
518 /* d l */ OPC1(3) | OPC3(0x23),
519 /* s s */ OPC1(3) | OPC3(0x24),
520 /* s l */ OPC1(3) | OPC3(0x20),