|
| 1 | +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py |
| 2 | +; RUN: opt < %s -sroa -S | FileCheck %s |
| 3 | + |
| 4 | +%S = type { [4 x i8] } |
| 5 | + |
| 6 | +; Ensure the load/store of integer types whose size is not equal to the store |
| 7 | +; size are not split. |
| 8 | + |
| 9 | +define i8 @foo(i23 %0) { |
| 10 | +; CHECK-LABEL: @foo( |
| 11 | +; CHECK-NEXT: Entry: |
| 12 | +; CHECK-NEXT: [[DOTSROA_0:%.*]] = alloca [3 x i8], align 8 |
| 13 | +; CHECK-NEXT: [[DOTSROA_0_0__SROA_CAST1:%.*]] = bitcast [3 x i8]* [[DOTSROA_0]] to i23* |
| 14 | +; CHECK-NEXT: store i23 [[TMP0:%.*]], i23* [[DOTSROA_0_0__SROA_CAST1]], align 8 |
| 15 | +; CHECK-NEXT: [[DOTSROA_0_1__SROA_IDX2:%.*]] = getelementptr inbounds [3 x i8], [3 x i8]* [[DOTSROA_0]], i64 0, i64 1 |
| 16 | +; CHECK-NEXT: [[DOTSROA_0_1__SROA_0_1_:%.*]] = load i8, i8* [[DOTSROA_0_1__SROA_IDX2]], align 1 |
| 17 | +; CHECK-NEXT: ret i8 [[DOTSROA_0_1__SROA_0_1_]] |
| 18 | +; |
| 19 | +Entry: |
| 20 | + %1 = alloca %S |
| 21 | + %2 = bitcast %S* %1 to i23* |
| 22 | + store i23 %0, i23* %2 |
| 23 | + %3 = getelementptr inbounds %S, %S* %1, i64 0, i32 0, i32 1 |
| 24 | + %4 = load i8, i8* %3 |
| 25 | + ret i8 %4 |
| 26 | +} |
| 27 | + |
| 28 | +define i32 @bar(i16 %0) { |
| 29 | +; CHECK-LABEL: @bar( |
| 30 | +; CHECK-NEXT: Entry: |
| 31 | +; CHECK-NEXT: [[DOTSROA_0:%.*]] = alloca [3 x i8], align 8 |
| 32 | +; CHECK-NEXT: [[DOTSROA_0_0__SROA_CAST2:%.*]] = bitcast [3 x i8]* [[DOTSROA_0]] to i16* |
| 33 | +; CHECK-NEXT: store i16 [[TMP0:%.*]], i16* [[DOTSROA_0_0__SROA_CAST2]], align 8 |
| 34 | +; CHECK-NEXT: [[DOTSROA_0_0_Q_SROA_CAST1:%.*]] = bitcast [3 x i8]* [[DOTSROA_0]] to i17* |
| 35 | +; CHECK-NEXT: [[DOTSROA_0_0__SROA_0_0_:%.*]] = load i17, i17* [[DOTSROA_0_0_Q_SROA_CAST1]], align 8 |
| 36 | +; CHECK-NEXT: [[TMP1:%.*]] = zext i17 [[DOTSROA_0_0__SROA_0_0_]] to i32 |
| 37 | +; CHECK-NEXT: ret i32 [[TMP1]] |
| 38 | +; |
| 39 | +Entry: |
| 40 | + %1 = alloca %S |
| 41 | + %2 = bitcast %S* %1 to i16* |
| 42 | + store i16 %0, i16* %2 |
| 43 | + %3 = getelementptr inbounds %S, %S* %1, i64 0, i32 0 |
| 44 | + %q = bitcast [4 x i8]* %3 to i17* |
| 45 | + %4 = load i17, i17* %q |
| 46 | + %5 = zext i17 %4 to i32 |
| 47 | + ret i32 %5 |
| 48 | +} |
0 commit comments