[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / memcpy-vec.ll
blobd636921eea3e512c6fd361d6db531dba9bfcc3a3
1 ; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck  %s -check-prefix=PWR7
2 ; RUN: llc -verify-machineinstrs -mcpu=pwr8 < %s | FileCheck  %s -check-prefix=PWR8
3 target datalayout = "E-m:e-i64:64-n32:64"
4 target triple = "powerpc64-unknown-linux-gnu"
6 ; Function Attrs: nounwind
7 define void @foo1(ptr nocapture %x, ptr nocapture readonly %y) #0 {
8 entry:
9   tail call void @llvm.memcpy.p0.p0.i64(ptr align 8 %x, ptr align 8 %y, i64 32, i1 false)
10   ret void
12 ; PWR7-LABEL: @foo1
13 ; PWR7-NOT: bl memcpy
14 ; PWR7-DAG: li [[OFFSET:[0-9]+]], 16
15 ; PWR7-DAG: lxvd2x [[TMP0:[0-9]+]], 4, [[OFFSET]]
16 ; PWR7-DAG: stxvd2x [[TMP0]], 3, [[OFFSET]]
17 ; PWR7-DAG: lxvd2x [[TMP1:[0-9]+]], 0, 4
18 ; PWR7-DAG: stxvd2x [[TMP1]], 0, 3
19 ; PWR7: blr
21 ; PWR8-LABEL: @foo1
22 ; PWR8: lxvw4x
23 ; PWR8: stxvw4x
24 ; PWR8: blr
27 ; Function Attrs: nounwind
28 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture readonly, i64, i1) #0
30 ; Function Attrs: nounwind
31 define void @foo2(ptr nocapture %x, ptr nocapture readonly %y) #0 {
32 entry:
33   tail call void @llvm.memcpy.p0.p0.i64(ptr align 8 %x, ptr align 8 %y, i64 128, i1 false)
34   ret void
36 ; PWR7-LABEL: @foo2
37 ; PWR7: bl memcpy
38 ; PWR7: blr
40 ; PWR8-LABEL: @foo2
41 ; PWR8: lxvw4x
42 ; PWR8: stxvw4x
43 ; PWR8: blr
46 ; Function Attrs: nounwind
47 define void @bar1(ptr nocapture %x) #0 {
48 entry:
49   tail call void @llvm.memset.p0.i64(ptr align 8 %x, i8 0, i64 128, i1 false)
50   ret void
52 ; PWR7-LABEL: @bar1
53 ; PWR7-NOT: bl memset
54 ; PWR7: stxvw4x
55 ; PWR7: blr
57 ; PWR8-LABEL: @bar1
58 ; PWR8-NOT: bl memset
59 ; PWR8: stxvw4x
60 ; PWR8: blr
63 ; Function Attrs: nounwind
64 define void @bar2(ptr nocapture %x) #0 {
65 entry:
66   tail call void @llvm.memset.p0.i64(ptr align 32 %x, i8 0, i64 128, i1 false)
67   ret void
69 ; PWR7-LABEL: @bar2
70 ; PWR7-NOT: bl memset
71 ; PWR7: stxvw4x
72 ; PWR7: blr
74 ; PWR8-LABEL: @bar2
75 ; PWR8-NOT: bl memset
76 ; PWR8: stxvw4x
77 ; PWR8: blr
80 ; Function Attrs: nounwind
81 declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) #0
83 attributes #0 = { nounwind }