Lines Matching refs:format
3007 #define MSA_I10(name, format) \
3009 GenInstrMsaI10(LDI, format, imm10, wd); \
3028 #define MSA_I5_FORMAT(name, opcode, format) \
3029 void Assembler::name##_##format(MSARegister wd, MSARegister ws, \
3031 GenInstrMsaI5(opcode, I5_DF_##format, imm5, ws, wd); \
3089 #define MSA_2R_FORMAT(name, opcode, format) \
3090 void Assembler::name##_##format(MSARegister wd, MSARegister ws) { \
3091 GenInstrMsa2R(opcode, MSA_2R_DF_##format, ws, wd); \
3105 #define MSA_FILL(format) \
3106 void Assembler::fill_##format(MSARegister wd, Register rs) { \
3109 Instr instr = MSA | MSA_2R_FORMAT | FILL | MSA_2R_DF_##format | \
3138 #define MSA_2RF_FORMAT(name, opcode, format) \
3139 void Assembler::name##_##format(MSARegister wd, MSARegister ws) { \
3140 GenInstrMsa2RF(opcode, MSA_2RF_DF_##format, ws, wd); \
3215 #define MSA_3R_FORMAT(name, opcode, format) \
3216 void Assembler::name##_##format(MSARegister wd, MSARegister ws, \
3218 GenInstrMsa3R<MSARegister>(opcode, MSA_3R_DF_##format, wt, ws, wd); \
3221 #define MSA_3R_FORMAT_SLD_SPLAT(name, opcode, format) \
3222 void Assembler::name##_##format(MSARegister wd, MSARegister ws, \
3224 GenInstrMsa3R<Register>(opcode, MSA_3R_DF_##format, rt, ws, wd); \
3438 #define MSA_BIT_FORMAT(name, opcode, format) \
3439 void Assembler::name##_##format(MSARegister wd, MSARegister ws, \
3441 GenInstrMsaBit(opcode, BIT_DF_##format, m, ws, wd); \