mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 06:16:06 +00:00

Since C++11, the C++ standard has a forward progress guarantee [intro.progress], so all such functions must have the `mustprogress` requirement. In addition, from C11 and onwards, loops without a non-zero constant conditional or no conditional are also required to make progress (C11 6.8.5p6). This patch implements these attribute deductions so they can be used by the optimization passes. Differential Revision: https://reviews.llvm.org/D86841
38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// We expect to get a loop structure like this:
|
|
// do.body: ; preds = %do.cond, ...
|
|
// ...
|
|
// br label %do.cond
|
|
// do.cond: ; preds = %do.body
|
|
// ...
|
|
// br i1 %cmp, label %do.body, label %do.end
|
|
// do.end: ; preds = %do.cond
|
|
// ...
|
|
//
|
|
// Verify that the loop metadata only is put on the backedge.
|
|
//
|
|
// CHECK-NOT: llvm.loop
|
|
// CHECK-LABEL: do.cond:
|
|
// CHECK: br {{.*}}, label %do.body, label %do.end, !llvm.loop ![[LMD1:[0-9]+]]
|
|
// CHECK-LABEL: do.end:
|
|
// CHECK-NOT: llvm.loop
|
|
// CHECK: ![[LMD1]] = distinct !{![[LMD1]], [[LMD2:![0-9]+]], ![[LMD3:[0-9]+]]}
|
|
// CHECK: [[LMD2]] = !{!"llvm.loop.mustprogress"}
|
|
// CHECK: ![[LMD3]] = !{!"llvm.loop.unroll.count", i32 4}
|
|
|
|
int test(int a[], int n) {
|
|
int i = 0;
|
|
int sum = 0;
|
|
|
|
#pragma unroll 4
|
|
do
|
|
{
|
|
a[i] = a[i] + 1;
|
|
sum = sum + a[i];
|
|
i++;
|
|
} while (i < n);
|
|
|
|
return sum;
|
|
}
|