brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · ae130af Raw
43 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt -S -mtriple=powerpc64-linux-gnu -mcpu=pwr8 -mattr=+vsx -passes=slp-vectorizer < %s | FileCheck %s3 4%struct.A = type { ptr, ptr }5 6define i64 @foo(ptr nocapture readonly %this) {7; CHECK-LABEL: @foo(8; CHECK-NEXT:  entry:9; CHECK-NEXT:    [[END_I:%.*]] = getelementptr inbounds [[STRUCT_A:%.*]], ptr [[THIS:%.*]], i64 0, i32 110; CHECK-NEXT:    [[TMP1:%.*]] = load i64, ptr [[END_I]], align 811; CHECK-NEXT:    [[TMP3:%.*]] = load i64, ptr [[THIS]], align 812; CHECK-NEXT:    [[SUB_PTR_SUB_I:%.*]] = sub i64 [[TMP1]], [[TMP3]]13; CHECK-NEXT:    [[CMP:%.*]] = icmp sgt i64 [[SUB_PTR_SUB_I]], 914; CHECK-NEXT:    br i1 [[CMP]], label [[RETURN:%.*]], label [[LOR_LHS_FALSE:%.*]]15; CHECK:       lor.lhs.false:16; CHECK-NEXT:    [[TMP4:%.*]] = inttoptr i64 [[TMP3]] to ptr17; CHECK-NEXT:    [[TMP5:%.*]] = inttoptr i64 [[TMP1]] to ptr18; CHECK-NEXT:    [[CMP2:%.*]] = icmp ugt ptr [[TMP5]], [[TMP4]]19; CHECK-NEXT:    [[DOT:%.*]] = select i1 [[CMP2]], i64 2, i64 -120; CHECK-NEXT:    ret i64 [[DOT]]21; CHECK:       return:22; CHECK-NEXT:    ret i64 223;24entry:25  %end.i = getelementptr inbounds %struct.A, ptr %this, i64 0, i32 126  %0 = load i64, ptr %end.i, align 827  %1 = load i64, ptr %this, align 828  %sub.ptr.sub.i = sub i64 %0, %129  %cmp = icmp sgt i64 %sub.ptr.sub.i, 930  br i1 %cmp, label %return, label %lor.lhs.false31 32lor.lhs.false:33  %2 = inttoptr i64 %1 to ptr34  %3 = inttoptr i64 %0 to ptr35  %cmp2 = icmp ugt ptr %3, %236  %. = select i1 %cmp2, i64 2, i64 -137  ret i64 %.38 39return:40  ret i64 241}42 43