2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -O3 -emit-llvm -debug-info-kind=line-tables-only -S -verify -o /dev/null
|
2014-07-19 09:17:32 +08:00
|
|
|
// REQUIRES: x86-registered-target
|
2014-07-19 03:40:19 +08:00
|
|
|
|
|
|
|
// Test verifies optimization failures generated by the backend are handled
|
|
|
|
// correctly by clang. LLVM tests verify all of the failure conditions.
|
|
|
|
|
2016-08-31 19:01:41 +08:00
|
|
|
void test_switch(int *A, int *B, int Length,int J) {
|
2014-07-19 03:40:19 +08:00
|
|
|
#pragma clang loop vectorize(enable) unroll(disable)
|
2015-03-03 05:47:47 +08:00
|
|
|
for (int i = 0; i < Length; i++) {
|
Add a loop's debug location to its llvm.loop metadata
Getting accurate locations for loops is important, because those locations are
used by the frontend to generate optimization remarks. Currently, optimization
remarks for loops often appear on the wrong line, often the first line of the
loop body instead of the loop itself. This is confusing because that line might
itself be another loop, or might be somewhere else completely if the body was
an inlined function call. This happens because of the way we find the loop's
starting location. First, we look for a preheader, and if we find one, and its
terminator has a debug location, then we use that. Otherwise, we look for a
location on an instruction in the loop header.
The fallback heuristic is not bad, but will almost always find the beginning of
the body, and not the loop statement itself. The preheader location search
often fails because there's often not a preheader, and even when there is a
preheader, depending on how it was formed, it sometimes carries the location of
some preceeding code.
I don't see any good theoretical way to fix this problem. On the other hand,
this seems like a straightforward solution: Put the debug location in the
loop's llvm.loop metadata. When emitting debug information, this commit causes
us to add the debug location as an operand to each loop's llvm.loop metadata.
Thus, we now generate this metadata for all loops (not just loops with
optimization hints) when we're otherwise generating debug information.
The remark test case changes depend on the companion LLVM commit r270771.
llvm-svn: 270772
2016-05-26 05:53:24 +08:00
|
|
|
/* expected-warning@-1 {{loop not vectorized: failed explicitly specified loop vectorization}} */ switch (A[i]) {
|
2014-07-19 03:40:19 +08:00
|
|
|
case 0:
|
|
|
|
B[i] = 1;
|
|
|
|
break;
|
|
|
|
case 1:
|
2016-08-31 19:01:41 +08:00
|
|
|
B[J] = 2;
|
2014-07-19 03:40:19 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
B[i] = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|