Lines Matching refs:INSN

51 #define FUNC_x_OP_x(RESTYPE, SRCTYPE, NAME, INSN) \  argument
57 INSN "\n\t" \
66 #define FUNC_R_OP_R(NAME, INSN) \ argument
67 FUNC_x_OP_x(uint32_t, uint32_t, NAME, INSN)
69 #define FUNC_R_OP_P(NAME, INSN) \ argument
70 FUNC_x_OP_x(uint32_t, uint64_t, NAME, INSN)
72 #define FUNC_P_OP_P(NAME, INSN) \ argument
73 FUNC_x_OP_x(uint64_t, uint64_t, NAME, INSN)
75 #define FUNC_P_OP_R(NAME, INSN) \ argument
76 FUNC_x_OP_x(uint64_t, uint32_t, NAME, INSN)
82 #define FUNC_xp_OP_x(RESTYPE, SRCTYPE, NAME, INSN) \ argument
89 INSN "\n\t" \
100 #define FUNC_Rp_OP_R(NAME, INSN) \ argument
101 FUNC_xp_OP_x(uint32_t, uint32_t, NAME, INSN)
104 #define FUNC_x_OP_xx(RESTYPE, SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
110 INSN "\n\t" \
119 #define FUNC_P_OP_PP(NAME, INSN) \ argument
120 FUNC_x_OP_xx(uint64_t, uint64_t, uint64_t, NAME, INSN)
122 #define FUNC_R_OP_PP(NAME, INSN) \ argument
123 FUNC_x_OP_xx(uint32_t, uint64_t, uint64_t, NAME, INSN)
125 #define FUNC_P_OP_RR(NAME, INSN) \ argument
126 FUNC_x_OP_xx(uint64_t, uint32_t, uint32_t, NAME, INSN)
128 #define FUNC_R_OP_RR(NAME, INSN) \ argument
129 FUNC_x_OP_xx(uint32_t, uint32_t, uint32_t, NAME, INSN)
131 #define FUNC_R_OP_PR(NAME, INSN) \ argument
132 FUNC_x_OP_xx(uint32_t, uint64_t, uint32_t, NAME, INSN)
134 #define FUNC_P_OP_PR(NAME, INSN) \ argument
135 FUNC_x_OP_xx(uint64_t, uint64_t, uint32_t, NAME, INSN)
141 #define FUNC_xp_OP_xx(RESTYPE, SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
149 INSN "\n\t" \
160 #define FUNC_Rp_OP_RR(NAME, INSN) \ argument
161 FUNC_xp_OP_xx(uint32_t, uint32_t, uint32_t, NAME, INSN)
164 #define FUNC_x_OP_xI(RESTYPE, SRC1TYPE, NAME, INSN) \ argument
170 INSN "\n\t" \
179 #define FUNC_R_OP_RI(NAME, INSN) \ argument
180 FUNC_x_OP_xI(uint32_t, uint32_t, NAME, INSN)
182 #define FUNC_R_OP_PI(NAME, INSN) \ argument
183 FUNC_x_OP_xI(uint32_t, uint64_t, NAME, INSN)
189 #define FUNC_Xx_OP_xx(RESTYPE, SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
195 INSN "\n\t" \
204 #define FUNC_XR_OP_RR(NAME, INSN) \ argument
205 FUNC_Xx_OP_xx(uint32_t, uint32_t, uint32_t, NAME, INSN)
207 #define FUNC_XP_OP_PP(NAME, INSN) \ argument
208 FUNC_Xx_OP_xx(uint64_t, uint64_t, uint64_t, NAME, INSN)
210 #define FUNC_XP_OP_RR(NAME, INSN) \ argument
211 FUNC_Xx_OP_xx(uint64_t, uint32_t, uint32_t, NAME, INSN)
217 #define FUNC_Xxp_OP_xx(RESTYPE, SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
224 INSN "\n\t" \
235 #define FUNC_XPp_OP_PP(NAME, INSN) \ argument
236 FUNC_Xxp_OP_xx(uint64_t, uint64_t, uint64_t, NAME, INSN)
242 #define FUNC_Xx_OP_xxp(RESTYPE, SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
249 INSN "\n\t" \
258 #define FUNC_XR_OP_RRp(NAME, INSN) \ argument
259 FUNC_Xx_OP_xxp(uint32_t, uint32_t, uint32_t, NAME, INSN)
262 #define FUNC_CMP_xx(SRC1TYPE, SRC2TYPE, NAME, INSN) \ argument
268 INSN "\n\t" \
278 #define FUNC_CMP_RR(NAME, INSN) \ argument
279 FUNC_CMP_xx(uint32_t, uint32_t, NAME, INSN)
281 #define FUNC_CMP_PP(NAME, INSN) \ argument
282 FUNC_CMP_xx(uint64_t, uint64_t, NAME, INSN)