Lines Matching refs:type

233     uint64_t type;  member
1431 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \ argument
1432 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
1434 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \ argument
1435 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
1437 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \ argument
1438 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
1440 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \ argument
1441 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
1443 #define GEN_HANDLER_E_2(name, opc1, opc2, opc3, opc4, inval, type, type2) \ argument
1444 GEN_OPCODE3(name, opc1, opc2, opc3, opc4, inval, type, type2)
1507 .type = _typ, \
1522 .type = _typ, \
1536 .type = _typ, \
1550 .type = _typ, \
1564 .type = _typ, \
1580 .type = PPC_NONE,
2632 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \ argument
2643 #define GEN_LDX(name, ldop, opc2, opc3, type) \ argument
2644 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2646 #define GEN_LDX_HVRM(name, ldop, opc2, opc3, type) \ argument
2647 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
2676 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \ argument
2686 #define GEN_STX(name, stop, opc2, opc3, type) \ argument
2687 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2689 #define GEN_STX_HVRM(name, stop, opc2, opc3, type) \ argument
2690 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
3668 static void gen_bcond(DisasContext *ctx, int type) in gen_bcond() argument
3675 if (type == BCOND_LR || type == BCOND_CTR || type == BCOND_TAR) { in gen_bcond()
3677 if (type == BCOND_CTR) { in gen_bcond()
3679 } else if (type == BCOND_TAR) { in gen_bcond()
3700 if (type == BCOND_CTR) { in gen_bcond()
3764 if (type == BCOND_IM) { in gen_bcond()
5979 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \ argument
5980 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
6008 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \ argument
6009 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000000, type, type2),
6340 if (((opc->handler.type & pcc->insns_flags) != 0) || in create_ppc_opcodes()
6450 if (unlikely(handler->type & (PPC_SPE | PPC_SPE_SINGLE | PPC_SPE_DOUBLE) in decode_legacy()