-Wdeprecated-clean: Fix cases of violating the rule of 5 in ways that are deprecated...
[oota-llvm.git] / test / CodeGen / X86 / expand-vr64-gr64-copy.mir
1 # RUN: llc -run-pass postrapseudos -mtriple=x86_64-unknown-unknown -mattr=+3dnow -o /dev/null %s | FileCheck %s
2 # This test verifies that the ExpandPostRA pass expands the GR64 <-> VR64
3 # copies into appropriate MMX_MOV instructions.
4
5 --- |
6
7   define <2 x i32> @test_pswapdsi(<2 x i32> %a) nounwind readnone {
8   entry:
9     %0 = bitcast <2 x i32> %a to x86_mmx
10     %1 = tail call x86_mmx @llvm.x86.3dnowa.pswapd(x86_mmx %0)
11     %2 = bitcast x86_mmx %1 to <2 x i32>
12     ret <2 x i32> %2
13   }
14
15   declare x86_mmx @llvm.x86.3dnowa.pswapd(x86_mmx) nounwind readnone
16
17 ...
18 ---
19 name:            test_pswapdsi
20 tracksRegLiveness: true
21 body:
22   - id:          0
23     name:        entry
24     liveins:     [ '%xmm0' ]
25     instructions:
26       - '%xmm0 = PSHUFDri killed %xmm0, -24'
27       - 'MOVPQI2QImr %rsp, 1, _, -8, _, killed %xmm0'
28       - '%mm0 = PSWAPDrm %rsp, 1, _, -8, _'
29 # CHECK:      %rax = MMX_MOVD64from64rr %mm0
30 # CHECK-NEXT: %mm0 = MMX_MOVD64to64rr %rax
31       - '%rax = COPY %mm0'
32       - '%mm0 = COPY %rax'
33       - 'MMX_MOVQ64mr %rsp, 1, _, -16, _, killed %mm0'
34       - '%xmm0 = MOVQI2PQIrm %rsp, 1, _, -16, _'
35       - '%xmm0 = PSHUFDri killed %xmm0, -44'
36       - 'RETQ %xmm0'
37 ...