H A D | translate.c | 1432 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \ argument 1433 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE) 1435 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \ argument 1436 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2) 1438 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \ argument 1439 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE) 1441 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \ argument 1442 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2) 1444 #define GEN_HANDLER_E_2(name, opc1, opc2, opc3, opc4, inval, type, type2) \ argument 1445 GEN_OPCODE3(name, opc1, opc2, opc3, opc4, inval, type, type2) [all …]
|