[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Instrumentation / MemorySanitizer / msan_x86intrinsics.ll
blobc5bdc2aee5dcc77aedb0171ade357a98467109e8
1 ; RUN: opt < %s -msan-check-access-address=0 -S -passes=msan 2>&1 | FileCheck  \
2 ; RUN: %s
3 ; RUN: opt < %s -msan -msan-check-access-address=0 -S | FileCheck %s
4 ; RUN: opt < %s -msan-check-access-address=0 -msan-track-origins=1 -S          \
5 ; RUN: -passes=msan 2>&1 | FileCheck -check-prefix=CHECK                       \
6 ; RUN: -check-prefix=CHECK-ORIGINS %s
7 ; RUN: opt < %s -msan -msan-check-access-address=0 -msan-track-origins=1 -S | FileCheck -check-prefix=CHECK -check-prefix=CHECK-ORIGINS %s
8 ; REQUIRES: x86-registered-target
10 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
11 target triple = "x86_64-unknown-linux-gnu"
13 ; Store intrinsic.
15 define void @StoreIntrinsic(i8* %p, <4 x float> %x) nounwind uwtable sanitize_memory {
16   call void @llvm.x86.sse.storeu.ps(i8* %p, <4 x float> %x)
17   ret void
20 declare void @llvm.x86.sse.storeu.ps(i8*, <4 x float>) nounwind
22 ; CHECK-LABEL: @StoreIntrinsic
23 ; CHECK-NOT: br
24 ; CHECK-NOT: = or
25 ; CHECK: store <4 x i32> {{.*}} align 1
26 ; CHECK: store <4 x float> %{{.*}}, <4 x float>* %{{.*}}, align 1{{$}}
27 ; CHECK: ret void
30 ; Load intrinsic.
32 define <16 x i8> @LoadIntrinsic(i8* %p) nounwind uwtable sanitize_memory {
33   %call = call <16 x i8> @llvm.x86.sse3.ldu.dq(i8* %p)
34   ret <16 x i8> %call
37 declare <16 x i8> @llvm.x86.sse3.ldu.dq(i8* %p) nounwind
39 ; CHECK-LABEL: @LoadIntrinsic
40 ; CHECK: load <16 x i8>, <16 x i8>* {{.*}} align 1
41 ; CHECK-ORIGINS: [[ORIGIN:%[01-9a-z]+]] = load i32, i32* {{.*}}
42 ; CHECK-NOT: br
43 ; CHECK-NOT: = or
44 ; CHECK: call <16 x i8> @llvm.x86.sse3.ldu.dq
45 ; CHECK: store <16 x i8> {{.*}} @__msan_retval_tls
46 ; CHECK-ORIGINS: store i32 {{.*}}[[ORIGIN]], i32* @__msan_retval_origin_tls
47 ; CHECK: ret <16 x i8>
50 ; Simple NoMem intrinsic
51 ; Check that shadow is OR'ed, and origin is Select'ed
52 ; And no shadow checks!
54 define <8 x i16> @Pmulhuw128(<8 x i16> %a, <8 x i16> %b) nounwind uwtable sanitize_memory {
55   %call = call <8 x i16> @llvm.x86.sse2.pmulhu.w(<8 x i16> %a, <8 x i16> %b)
56   ret <8 x i16> %call
59 declare <8 x i16> @llvm.x86.sse2.pmulhu.w(<8 x i16> %a, <8 x i16> %b) nounwind
61 ; CHECK-LABEL: @Pmulhuw128
62 ; CHECK-NEXT: load <8 x i16>, <8 x i16>* {{.*}} @__msan_param_tls
63 ; CHECK-ORIGINS: load i32, i32* {{.*}} @__msan_param_origin_tls
64 ; CHECK-NEXT: load <8 x i16>, <8 x i16>* {{.*}} @__msan_param_tls
65 ; CHECK-ORIGINS: load i32, i32* {{.*}} @__msan_param_origin_tls
66 ; CHECK-NEXT: = or <8 x i16>
67 ; CHECK-ORIGINS: = bitcast <8 x i16> {{.*}} to i128
68 ; CHECK-ORIGINS-NEXT: = icmp ne i128 {{.*}}, 0
69 ; CHECK-ORIGINS-NEXT: = select i1 {{.*}}, i32 {{.*}}, i32
70 ; CHECK-NEXT: call <8 x i16> @llvm.x86.sse2.pmulhu.w
71 ; CHECK-NEXT: store <8 x i16> {{.*}} @__msan_retval_tls
72 ; CHECK-ORIGINS: store i32 {{.*}} @__msan_retval_origin_tls
73 ; CHECK-NEXT: ret <8 x i16>