Lines Matching full:opcode
202 class V4AsmStr<string opcode> : BinOpAsmString<
205 opcode, " \t${dst}_0, ${a}_0, ${b}_0;\n\t"),
206 opcode), " \t${dst}_1, ${a}_1, ${b}_1;\n\t"),
207 opcode), " \t${dst}_2, ${a}_2, ${b}_2;\n\t"),
208 opcode), " \t${dst}_3, ${a}_3, ${b}_3;")>;
210 class V2AsmStr<string opcode> : BinOpAsmString<
212 opcode, " \t${dst}_0, ${a}_0, ${b}_0;\n\t"),
213 opcode), " \t${dst}_1, ${a}_1, ${b}_1;")>;
215 class V4MADStr<string opcode> : BinOpAsmString<
218 opcode, " \t${dst}_0, ${a}_0, ${b}_0, ${c}_0;\n\t"),
219 opcode), " \t${dst}_1, ${a}_1, ${b}_1, ${c}_1;\n\t"),
220 opcode), " \t${dst}_2, ${a}_2, ${b}_2, ${c}_2;\n\t"),
221 opcode), " \t${dst}_3, ${a}_3, ${b}_3, ${c}_3;")>;
223 class V2MADStr<string opcode> : BinOpAsmString<
225 opcode, " \t${dst}_0, ${a}_0, ${b}_0, ${c}_0;\n\t"),
226 opcode), " \t${dst}_1, ${a}_1, ${b}_1, ${c}_1;")>;
228 class V4UnaryStr<string opcode> : BinOpAsmString<
231 opcode, " \t${dst}_0, ${a}_0;\n\t"),
232 opcode), " \t${dst}_1, ${a}_1;\n\t"),
233 opcode), " \t${dst}_2, ${a}_2;\n\t"),
234 opcode), " \t${dst}_3, ${a}_3;")>;
236 class V2UnaryStr<string opcode> : BinOpAsmString<
238 opcode, " \t${dst}_0, ${a}_0;\n\t"),
239 opcode), " \t${dst}_1, ${a}_1;")>;