Lines Matching refs:opc

1048 void fpu_VR(ALU_Opcode opc, OpndSize size, int vA) {
1049 Mnemonic m = map_of_fpu_opcode_2_mnemonic[opc];
1212 void alu_unary_reg(OpndSize size, ALU_Opcode opc, int reg, bool isPhysical) {
1215 m = map_of_64_opcode_2_mnemonic[opc];
1217 m = map_of_alu_opcode_2_mnemonic[opc];
1223 void alu_unary_mem(LowOp* op, OpndSize size, ALU_Opcode opc, int disp, int base_reg, bool isBasePhysical) {
1226 m = map_of_64_opcode_2_mnemonic[opc];
1228 m = map_of_alu_opcode_2_mnemonic[opc];
1234 void alu_binary_imm_mem(OpndSize size, ALU_Opcode opc, int imm, int disp, int base_reg, bool isBasePhysical) {
1237 m = map_of_64_opcode_2_mnemonic[opc];
1239 m = map_of_alu_opcode_2_mnemonic[opc];
1245 void alu_binary_imm_reg(OpndSize size, ALU_Opcode opc, int imm, int reg, bool isPhysical) {
1248 m = map_of_64_opcode_2_mnemonic[opc];
1250 m = map_of_alu_opcode_2_mnemonic[opc];
1256 void alu_binary_mem_reg(OpndSize size, ALU_Opcode opc,
1261 m = map_of_64_opcode_2_mnemonic[opc];
1263 m = map_of_alu_opcode_2_mnemonic[opc];
1267 void alu_sd_binary_VR_reg(ALU_Opcode opc, int vA, int reg, bool isPhysical, bool isSD) {
1269 if(isSD) m = map_of_sse_opcode_2_mnemonic[opc];
1270 else m = (Mnemonic)(map_of_sse_opcode_2_mnemonic[opc]+1); //from SD to SS
1320 void alu_binary_VR_reg(OpndSize size, ALU_Opcode opc, int vA, int reg, bool isPhysical) {
1323 m = map_of_64_opcode_2_mnemonic[opc];
1325 m = map_of_alu_opcode_2_mnemonic[opc];
1369 void alu_binary_reg_reg(OpndSize size, ALU_Opcode opc,
1374 m = map_of_64_opcode_2_mnemonic[opc];
1376 m = map_of_alu_opcode_2_mnemonic[opc];
1382 void alu_binary_reg_mem(OpndSize size, ALU_Opcode opc,
1387 m = map_of_64_opcode_2_mnemonic[opc];
1389 m = map_of_alu_opcode_2_mnemonic[opc];
1395 void fpu_mem(LowOp* op, ALU_Opcode opc, OpndSize size, int disp, int base_reg, bool isBasePhysical) {
1396 Mnemonic m = map_of_fpu_opcode_2_mnemonic[opc];
1402 void alu_ss_binary_reg_reg(ALU_Opcode opc, int reg, bool isPhysical,
1404 Mnemonic m = (Mnemonic)(map_of_sse_opcode_2_mnemonic[opc]+1); //from SD to SS
1410 void alu_sd_binary_reg_reg(ALU_Opcode opc, int reg, bool isPhysical,
1412 Mnemonic m = map_of_sse_opcode_2_mnemonic[opc];