• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt %s -scalarizer -scalarize-load-store -dce -S | FileCheck --check-prefixes=ALL %s
3
4target 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"
5
6; Test that constant extracts are nicely scalarized
7define i32 @f1(<4 x i32> *%src, i32 %index) {
8; ALL-LABEL: @f1(
9; ALL-NEXT:    [[SRC_I0:%.*]] = bitcast <4 x i32>* [[SRC:%.*]] to i32*
10; ALL-NEXT:    [[SRC_I3:%.*]] = getelementptr i32, i32* [[SRC_I0]], i32 3
11; ALL-NEXT:    [[VAL0_I3:%.*]] = load i32, i32* [[SRC_I3]], align 4
12; ALL-NEXT:    [[VAL2:%.*]] = shl i32 4, [[VAL0_I3]]
13; ALL-NEXT:    ret i32 [[VAL2]]
14;
15  %val0 = load <4 x i32> , <4 x i32> *%src
16  %val1 = shl <4 x i32> <i32 1, i32 2, i32 3, i32 4>, %val0
17  %val2 = extractelement <4 x i32> %val1, i32 3
18  ret i32 %val2
19}
20