brintos

brintos / llvm-project-archived public Read only

0
0
Text · 4.5 KiB · d46159c Raw
98 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt -S -passes=early-cse < %s | FileCheck %s3 4define i32 @different_types_load(ptr %p) {5; CHECK-LABEL: @different_types_load(6; CHECK-NEXT:    [[V1:%.*]] = load i32, ptr [[P:%.*]], align 47; CHECK-NEXT:    [[V2:%.*]] = load i64, ptr [[P]], align 48; CHECK-NEXT:    [[V2_C:%.*]] = trunc i64 [[V2]] to i329; CHECK-NEXT:    [[SUB:%.*]] = sub i32 [[V1]], [[V2_C]]10; CHECK-NEXT:    ret i32 [[SUB]]11;12  %v1 = load i32, ptr %p13  %v2 = load i64, ptr %p14  %v2.c = trunc i64 %v2 to i3215  %sub = sub i32 %v1, %v2.c16  ret i32 %sub17}18 19define i32 @different_types_vector_load(ptr %p) {20; CHECK-LABEL: @different_types_vector_load(21; CHECK-NEXT:    [[V1:%.*]] = call <4 x i32> @llvm.masked.load.v4i32.p0(ptr align 4 [[P:%.*]], <4 x i1> <i1 true, i1 true, i1 true, i1 false>, <4 x i32> poison)22; CHECK-NEXT:    [[V2:%.*]] = call <8 x i32> @llvm.masked.load.v8i32.p0(ptr align 4 [[P]], <8 x i1> <i1 true, i1 true, i1 true, i1 true, i1 false, i1 false, i1 false, i1 false>, <8 x i32> poison)23; CHECK-NEXT:    [[E1:%.*]] = extractelement <4 x i32> [[V1]], i32 024; CHECK-NEXT:    [[E2:%.*]] = extractelement <8 x i32> [[V2]], i32 625; CHECK-NEXT:    [[SUM:%.*]] = add i32 [[E1]], [[E2]]26; CHECK-NEXT:    ret i32 [[SUM]]27;28  %v1 = call <4 x i32> @llvm.masked.load.v4i32.p(ptr %p, i32 4, <4 x i1> <i1 true, i1 true, i1 true, i1 false>, <4 x i32> poison)29  %v2 = call <8 x i32> @llvm.masked.load.v8i32.p(ptr %p, i32 4, <8 x i1> <i1 true, i1 true, i1 true, i1 true, i1 false, i1 false, i1 false, i1 false>, <8 x i32> poison)30  %e1 = extractelement <4 x i32> %v1, i32 031  %e2 = extractelement <8 x i32> %v2, i32 632  %sum = add i32 %e1, %e233  ret i32 %sum34}35 36define i32 @different_types_store(ptr %p, i32 %a) {37; CHECK-LABEL: @different_types_store(38; CHECK-NEXT:    store i32 [[A:%.*]], ptr [[P:%.*]], align 439; CHECK-NEXT:    [[V2:%.*]] = load i64, ptr [[P]], align 440; CHECK-NEXT:    [[V2_C:%.*]] = trunc i64 [[V2]] to i3241; CHECK-NEXT:    [[SUB:%.*]] = sub i32 [[A]], [[V2_C]]42; CHECK-NEXT:    ret i32 [[SUB]]43;44  store i32 %a, ptr %p45  %v2 = load i64, ptr %p46  %v2.c = trunc i64 %v2 to i3247  %sub = sub i32 %a, %v2.c48  ret i32 %sub49}50 51define i32 @different_elt_types_vector_load(ptr %p, <4 x i1> %c) {52; CHECK-LABEL: @different_elt_types_vector_load(53; CHECK-NEXT:    [[V1:%.*]] = call <4 x i32> @llvm.masked.load.v4i32.p0(ptr align 4 [[P:%.*]], <4 x i1> [[C:%.*]], <4 x i32> poison)54; CHECK-NEXT:    [[V2:%.*]] = call <4 x float> @llvm.masked.load.v4f32.p0(ptr align 4 [[P]], <4 x i1> [[C]], <4 x float> poison)55; CHECK-NEXT:    [[E1:%.*]] = extractelement <4 x i32> [[V1]], i32 056; CHECK-NEXT:    [[E2:%.*]] = extractelement <4 x float> [[V2]], i32 057; CHECK-NEXT:    [[E2I:%.*]] = fptosi float [[E2]] to i3258; CHECK-NEXT:    [[SUM:%.*]] = add i32 [[E1]], [[E2I]]59; CHECK-NEXT:    ret i32 [[SUM]]60;61  %v1 = call <4 x i32> @llvm.masked.load.v4i32.p(ptr %p, i32 4, <4 x i1> %c, <4 x i32> poison)62  %v2 = call <4 x float> @llvm.masked.load.v4f32.p(ptr %p, i32 4, <4 x i1> %c, <4 x float> poison)63  %e1 = extractelement <4 x i32> %v1, i32 064  %e2 = extractelement <4 x float> %v2, i32 065  %e2i = fptosi float %e2 to i3266  %sum = add i32 %e1, %e2i67  ret i32 %sum68}69 70define float @different_elt_types_vector_store_load(ptr %p, <4 x i32> %v1, <4 x i1> %c) {71; CHECK-LABEL: @different_elt_types_vector_store_load(72; CHECK-NEXT:    call void @llvm.masked.store.v4i32.p0(<4 x i32> [[V1:%.*]], ptr align 4 [[P:%.*]], <4 x i1> [[C:%.*]])73; CHECK-NEXT:    [[V2:%.*]] = call <4 x float> @llvm.masked.load.v4f32.p0(ptr align 4 [[P]], <4 x i1> [[C]], <4 x float> poison)74; CHECK-NEXT:    [[E2:%.*]] = extractelement <4 x float> [[V2]], i32 075; CHECK-NEXT:    ret float [[E2]]76;77  call void @llvm.masked.store.v4i32.p(<4 x i32> %v1, ptr %p, i32 4, <4 x i1> %c)78  %v2 = call <4 x float> @llvm.masked.load.v4f32.p(ptr %p, i32 4, <4 x i1> %c, <4 x float> poison)79  %e2 = extractelement <4 x float> %v2, i32 080  ret float %e281}82 83define void @dse(ptr %p, i32 %i1, i8 %i2) {84; CHECK-LABEL: @dse(85; CHECK-NEXT:    store i32 [[I1:%.*]], ptr [[P:%.*]], align 486; CHECK-NEXT:    store i8 [[I2:%.*]], ptr [[P]], align 187; CHECK-NEXT:    ret void88;89  store i32 %i1, ptr %p90  store i8 %i2, ptr %p91  ret void92}93 94declare <4 x i32> @llvm.masked.load.v4i32.p(ptr, i32 immarg, <4 x i1>, <4 x i32>)95declare <8 x i32> @llvm.masked.load.v8i32.p(ptr, i32 immarg, <8 x i1>, <8 x i32>)96declare <4 x float> @llvm.masked.load.v4f32.p(ptr, i32 immarg, <4 x i1>, <4 x float>)97declare void @llvm.masked.store.v4i32.p(<4 x i32>, ptr, i32 immarg, <4 x i1>)98