Home | History | Annotate | Download | only in x64

Lines Matching refs:P2

649   template<class P1, class P2>                          \
650 void instruction##p(P1 p1, P2 p2) { \
651 emit_##instruction(p1, p2, kPointerSize); \
654 template<class P1, class P2> \
655 void instruction##l(P1 p1, P2 p2) { \
656 emit_##instruction(p1, p2, kInt32Size); \
659 template<class P1, class P2> \
660 void instruction##q(P1 p1, P2 p2) { \
661 emit_##instruction(p1, p2, kInt64Size); \
664 template<class P1, class P2, class P3> \
665 void instruction##p(P1 p1, P2 p2, P3 p3) { \
666 emit_##instruction(p1, p2, p3, kPointerSize); \
669 template<class P1, class P2, class P3> \
670 void instruction##l(P1 p1, P2 p2, P3 p3) { \
671 emit_##instruction(p1, p2, p3, kInt32Size); \
674 template<class P1, class P2, class P3> \
675 void instruction##q(P1 p1, P2 p2, P3 p3) { \
676 emit_##instruction(p1, p2, p3, kInt64Size); \
1279 template<class P1, class P2>
1280 void emit_rex(P1 p1, P2 p2, int size) {
1282 emit_rex_64(p1, p2);
1285 emit_optional_rex_32(p1, p2);