[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / Analysis / MemorySSA / pr36883.ll
blob329026beb2895db7107fd34dd4ebbe1aa48808de
1 ; RUN: opt -aa-pipeline=basic-aa -passes='print<memoryssa>,verify<memoryssa>' -S < %s 2>&1 | FileCheck %s
3 ; We weren't properly considering the args in callsites in equality or hashing.
5 target triple = "armv7-dcg-linux-gnueabi"
7 ; CHECK-LABEL: define <8 x i16> @vpx_idct32_32_neon
8 define <8 x i16> @vpx_idct32_32_neon(ptr %p, <8 x i16> %v) {
9 entry:
10 ; CHECK: MemoryUse(liveOnEntry)
11   %load1 = call <8 x i16> @llvm.arm.neon.vld1.v8i16.p0(ptr %p, i32 2) #4 ; load CSE replacement
13 ; CHECK: 1 = MemoryDef(liveOnEntry)
14   call void @llvm.arm.neon.vst1.p0.v8i16(ptr %p, <8 x i16> %v, i32 2) #4 ; clobber
16   %p_next = getelementptr inbounds i8, ptr %p, i32 16
17 ; CHECK: MemoryUse(liveOnEntry)
18   %load2 = call <8 x i16> @llvm.arm.neon.vld1.v8i16.p0(ptr %p_next, i32 2) #4 ; non-aliasing load needed to trigger bug
20 ; CHECK: MemoryUse(1)
21   %load3 = call <8 x i16> @llvm.arm.neon.vld1.v8i16.p0(ptr %p, i32 2) #4 ; load CSE removed
23   %add = add <8 x i16> %load1, %load2
24   %ret = add <8 x i16> %add, %load3
25   ret <8 x i16> %ret
28 ; Function Attrs: argmemonly nounwind readonly
29 declare <8 x i16> @llvm.arm.neon.vld1.v8i16.p0(ptr, i32) #2
31 ; Function Attrs: argmemonly nounwind
32 declare void @llvm.arm.neon.vst1.p0.v8i16(ptr, <8 x i16>, i32) #1
34 attributes #1 = { argmemonly nounwind }
35 attributes #2 = { argmemonly nounwind readonly }
36 attributes #3 = { nounwind readnone }
37 attributes #4 = { nounwind }