brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · 2c4a349 Raw
44 lines · plain
1! FIXME: https://github.com/llvm/llvm-project/issues/1236682!3! DEFINE: %{triple} =4! DEFINE: %{check-unroll} = %flang_fc1 -emit-llvm -O1 -vectorize-loops -funroll-loops -mllvm -force-vector-width=2 -triple %{triple} -o- %s | FileCheck %s --check-prefixes=CHECK,UNROLL5! DEFINE: %{check-nounroll} = %flang_fc1 -emit-llvm -O1 -vectorize-loops -mllvm -force-vector-width=2 -triple %{triple} -o- %s | FileCheck %s --check-prefixes=CHECK,NO-UNROLL6!7! REDEFINE: %{triple} = aarch64-unknown-linux-gnu8! RUN: %if aarch64-registered-target %{ %{check-unroll} %}9! RUN: %if aarch64-registered-target %{ %{check-nounroll} %}10!11! REDEFINE: %{triple} = x86_64-unknown-linux-gnu12! RUN: %if x86-registered-target %{ %{check-unroll} %}13! RUN: %if x86-registered-target %{ %{check-nounroll} %}14!15! CHECK-LABEL: @unroll16! CHECK-SAME: (ptr {{[^%]*}}%[[ARG0:.*]])17subroutine unroll(a)18  integer(kind=8), intent(out) :: a(1000)19  integer(kind=8) :: i20    ! CHECK: br label %[[BLK:.*]]21    ! CHECK: [[BLK]]:22    ! CHECK-NEXT: %[[IND:.*]] = phi i64 [ 0, %{{.*}} ], [ %[[NIV:.*]], %[[BLK]] ]23    ! CHECK-NEXT: %[[VIND:.*]] = phi <2 x i64> [ <i64 1, i64 2>, %{{.*}} ], [ %[[NVIND:.*]], %[[BLK]] ]24    !25    ! NO-UNROLL-NEXT: %[[GEP:.*]] = getelementptr i64, ptr %[[ARG0]], i64 %[[IND]]26    ! NO-UNROLL-NEXT: store <2 x i64> %[[VIND]], ptr %[[GEP]]27    ! NO-UNROLL-NEXT: %[[NIV:.*]] = add nuw i64 %{{.*}}, 228    ! NO-UNROLL-NEXT: %[[NVIND]] = add nuw nsw <2 x i64> %[[VIND]], splat (i64 2)29    !30    ! UNROLL-NEXT: %[[VIND1:.*]] = add <2 x i64> %[[VIND]], splat (i64 2)31    ! UNROLL-NEXT: %[[GEP0:.*]] = getelementptr i64, ptr %[[ARG0]], i64 %[[IND]]32    ! UNROLL-NEXT: %[[GEP1:.*]] = getelementptr i8, ptr %[[GEP0]], i64 1633    ! UNROLL-NEXT: store <2 x i64> %[[VIND]], ptr %[[GEP0]]34    ! UNROLL-NEXT: store <2 x i64> %[[VIND1]], ptr %[[GEP1]]35    ! UNROLL-NEXT: %[[NIV:.*]] = add nuw i64 %[[IND]], 436    ! UNROLL-NEXT: %[[NVIND:.*]] = add <2 x i64> %[[VIND]], splat (i64 4)37    !38    ! CHECK-NEXT: %[[EXIT:.*]] = icmp eq i64 %[[NIV]], 100039    ! CHECK-NEXT: br i1 %[[EXIT]], label %{{.*}}, label %[[BLK]]40  do i=1,100041    a(i) = i42  end do43end subroutine44