Lines Matching refs:Mov
1432 COMPARE_BOTH(Mov(r0, 0xbadbeef),
1435 COMPARE_A32(Mov(eq, r0, 0xbadbeef),
1438 COMPARE_T32(Mov(eq, r0, 0xbadbeef),
1460 COMPARE_BOTH(Mov(pc, 0xbadbeef),
1464 COMPARE_A32(Mov(eq, pc, 0xbadbeef),
1468 COMPARE_T32(Mov(eq, pc, 0xbadbeef),
2358 TEST_MOV_SHIFT_T32(Mov, "", 0x00000006)
2367 // Wide immediates (Mov and Movs are tested in
2739 COMPARE_A32(Mov(pc, 1), "mov pc, #1\n");
2740 MUST_FAIL_TEST_T32(Mov(pc, 1), "Unpredictable instruction.\n");
2741 MUST_FAIL_TEST_T32(Mov(pc, 0xfff), "Unpredictable instruction.\n");
2742 COMPARE_A32(Mov(pc, 0xf000), "mov pc, #61440\n");
2743 MUST_FAIL_TEST_T32(Mov(pc, 0xf000), "Unpredictable instruction.\n");
2751 COMPARE_BOTH(Mov(pc, r0), "mov pc, r0\n");
2752 COMPARE_BOTH(Mov(r0, pc), "mov r0, pc\n");
2758 MUST_FAIL_TEST_BOTH(Mov(pc, Operand(r0, ASR, r1)),
2760 MUST_FAIL_TEST_BOTH(Mov(r0, Operand(pc, ASR, r1)),
2762 MUST_FAIL_TEST_BOTH(Mov(r0, Operand(r1, ASR, pc)),
3495 COMPARE_T32(Mov(eq, r7, 0xff),
3500 COMPARE_T32(Mov(eq, r9, r8),
3505 COMPARE_T32(Mov(eq, r0, Operand(r1, LSR, 16)),
3509 COMPARE_T32(Mov(eq, r0, Operand(r1, ROR, 16)),
3514 COMPARE_T32(Mov(eq, r0, Operand(r0, LSR, r1)),
3518 COMPARE_T32(Mov(eq, r0, Operand(r1, LSR, r2)),
4084 CHECK_T32_16(Mov(DontCare, r7, 255), "movs r7, #255\n");
4086 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r7, 255),
4090 CHECK_T32_16(Mov(DontCare, r9, r8), "mov r9, r8\n");
4093 CHECK_T32_16(Mov(DontCare, r5, r6), "mov r5, r6\n");
4095 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r9, r8),
4099 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, ASR, 1)), "asrs r5, r6, #1\n");
4101 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, ASR, 32)), "asrs r5, r6, #32\n");
4103 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, LSR, 1)), "lsrs r5, r6, #1\n");
4105 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, LSR, 32)), "lsrs r5, r6, #32\n");
4107 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, LSL, 1)), "lsls r5, r6, #1\n");
4109 CHECK_T32_16(Mov(DontCare, r5, Operand(r6, LSL, 31)), "lsls r5, r6, #31\n");
4111 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, ASR, 1)),
4115 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, ASR, 32)),
4119 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, LSR, 1)),
4123 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, LSR, 32)),
4127 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, LSL, 1)),
4131 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r5, Operand(r6, LSL, 31)),
4135 CHECK_T32_16(Mov(DontCare, r7, Operand(r7, ASR, r6)), "asrs r7, r6\n");
4137 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r7, Operand(r7, ASR, r6)),
4141 CHECK_T32_16(Mov(DontCare, r7, Operand(r7, LSR, r6)), "lsrs r7, r6\n");
4143 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r7, Operand(r7, LSR, r6)),
4147 CHECK_T32_16(Mov(DontCare, r7, Operand(r7, LSL, r6)), "lsls r7, r6\n");
4149 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r7, Operand(r7, LSL, r6)),
4153 CHECK_T32_16(Mov(DontCare, r7, Operand(r7, ROR, r6)), "rors r7, r6\n");
4155 CHECK_T32_16_IT_BLOCK(Mov(DontCare, eq, r7, Operand(r7, ROR, r6)),
4252 COMPARE_BOTH(Mov(r0, r0), "");
4253 COMPARE_BOTH(Mov(DontCare, r0, r0), "");