Home | History | Annotate | Download | only in test

Lines Matching defs:OP1

97 #define OP1
102 #define OP1
107 #define OP1
112 #define OP1
368 void test_imulw2(int64 op0, int64 op1)
372 s1 = op1;
386 void test_imull2(int64 op0, int64 op1)
391 s1 = op1;
405 #define TEST_IMUL_IM(size, size1, op0, op1)\
416 : "r" (op1), "1" (flags), "0" (res));\
418 "imul" size, op0, op1, res, flags & CC_MASK);\
421 #define TEST_IMUL_IM_L(op0, op1)\
432 : "r" (op1), "1" (flags), "0" (res));\
434 "imull", op0, op1, res, flags & CC_MASK);\
867 int op0, op1;\
869 op1 = 0xfbca7654;\
871 : "=q" (op0), opconst (op1) \
872 : "0" (op0), "1" (op1));\
874 #op, op0, op1);\
879 int op0, op1;\
881 op1 = 0xfbca7654;\
883 : "=q" (op0), opconst (op1) \
884 : "0" (op0), "1" (op1), "a" (eax));\
886 #op, eax, op0, op1);\
932 uint64_t op0, op1, op2;
938 op1 = 0xfbca765423456;
940 op1 = op0;
945 : "=A" (op0), "=m" (op1), "=g" (eflags)
946 : "0" (op0), "m" (op1), "b" ((int)op2), "c" ((int)(op2 >> 32)));
947 printf("cmpxchg8b: op0=%016llx op1=%016llx CC=%02x\n",
948 op0, op1, eflags & CC_Z);