|
| 1 | +; RUN: opt -passes="default<O3>" -enable-merge-functions -S < %s | FileCheck %s |
| 2 | + |
| 3 | +target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128" |
| 4 | +target triple = "x86_64-apple-macosx12.0.0" |
| 5 | + |
| 6 | +@switch.table.f = private unnamed_addr constant [8 x i32] [i32 1, i32 0, i32 1, i32 0, i32 1, i32 0, i32 1, i32 1], align 4 |
| 7 | +@switch.table.g = private unnamed_addr constant [8 x i32] [i32 1, i32 0, i32 1, i32 0, i32 1, i32 0, i32 1, i32 1], align 4 |
| 8 | + |
| 9 | +; Function Attrs: mustprogress nofree noinline norecurse nosync nounwind optsize ssp willreturn memory(none) uwtable |
| 10 | +define range(i32 0, 2) i32 @f(i32 noundef %x) local_unnamed_addr #0 { |
| 11 | +; CHECK-LABEL: @f( |
| 12 | +entry: |
| 13 | + %0 = icmp ult i32 %x, 8 |
| 14 | + br i1 %0, label %switch.lookup, label %sw.epilog |
| 15 | + |
| 16 | +switch.lookup: ; preds = %entry |
| 17 | + %1 = zext nneg i32 %x to i64 |
| 18 | + %switch.gep = getelementptr inbounds [8 x i32], ptr @switch.table.f, i64 0, i64 %1 |
| 19 | + %switch.load = load i32, ptr %switch.gep, align 4 |
| 20 | + br label %sw.epilog |
| 21 | + |
| 22 | +sw.epilog: ; preds = %entry, %switch.lookup |
| 23 | + %x.addr.0 = phi i32 [ %switch.load, %switch.lookup ], [ 0, %entry ] |
| 24 | + ret i32 %x.addr.0 |
| 25 | +} |
| 26 | + |
| 27 | +; Function Attrs: mustprogress nofree noinline norecurse nosync nounwind optsize ssp willreturn memory(none) uwtable |
| 28 | +define range(i32 0, 2) i32 @g(i32 noundef %x) local_unnamed_addr #0 { |
| 29 | +; CHECK-LABEL: @g( |
| 30 | +; CHECK-NEXT: [[TMP2:%.*]] = tail call range(i32 0, 2) i32 @f(i32 noundef [[TMP0:%.*]]) #[[ATTR0:[0-9]+]] |
| 31 | +; CHECK-NEXT: ret i32 [[TMP2]] |
| 32 | +entry: |
| 33 | + %0 = icmp ult i32 %x, 8 |
| 34 | + br i1 %0, label %switch.lookup, label %sw.epilog |
| 35 | + |
| 36 | +switch.lookup: ; preds = %entry |
| 37 | + %1 = zext nneg i32 %x to i64 |
| 38 | + %switch.gep = getelementptr inbounds [8 x i32], ptr @switch.table.g, i64 0, i64 %1 |
| 39 | + %switch.load = load i32, ptr %switch.gep, align 4 |
| 40 | + br label %sw.epilog |
| 41 | + |
| 42 | +sw.epilog: ; preds = %entry, %switch.lookup |
| 43 | + %x.addr.0 = phi i32 [ %switch.load, %switch.lookup ], [ 0, %entry ] |
| 44 | + ret i32 %x.addr.0 |
| 45 | +} |
| 46 | + |
| 47 | +attributes #0 = { mustprogress nofree noinline norecurse nosync nounwind optsize ssp willreturn memory(none) uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="penryn" "target-features"="+cmov,+cx16,+cx8,+fxsr,+mmx,+sahf,+sse,+sse2,+sse3,+sse4.1,+ssse3,+x87" "tune-cpu"="generic" } |
0 commit comments