Skip to content

Commit 204726b

Browse files
committedJul 4, 2018
[DebugInfo][LoopVectorize] Preserve DL in generated phi instruction
When creating `phi` instructions to resume at the scalar part of the loop, copy the DebugLoc from the original phi over to the new one. Differential Revision: https://reviews.llvm.org/D48769 llvm-svn: 336256
1 parent f5ba09f commit 204726b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

‎llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2912,6 +2912,8 @@ BasicBlock *InnerLoopVectorizer::createVectorizedLoopSkeleton() {
29122912
// Create phi nodes to merge from the backedge-taken check block.
29132913
PHINode *BCResumeVal = PHINode::Create(
29142914
OrigPhi->getType(), 3, "bc.resume.val", ScalarPH->getTerminator());
2915+
// Copy original phi DL over to the new one.
2916+
BCResumeVal->setDebugLoc(OrigPhi->getDebugLoc());
29152917
Value *&EndValue = IVEndValues[OrigPhi];
29162918
if (OrigPhi == OldInduction) {
29172919
// We know what the end value is.

‎llvm/test/Transforms/LoopVectorize/duplicated-metadata.ll ‎llvm/test/Transforms/LoopVectorize/preserve-dbg-loc-and-loop-metadata.ll

+9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
; RUN: opt < %s -loop-vectorize -S 2>&1 | FileCheck %s
2+
; RUN: opt < %s -debugify -loop-vectorize -S | FileCheck %s -check-prefix DEBUGLOC
23
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
34

45
; This test makes sure we don't duplicate the loop vectorizer's metadata
56
; while marking them as already vectorized (by setting width = 1), even
67
; at lower optimization levels, where no extra cleanup is done
78

9+
; DEBUGLOC-LABEL: define void @_Z3fooPf(
10+
; Check that the phi to resume the scalar part of the loop
11+
; has Debug Location.
812
define void @_Z3fooPf(float* %a) {
913
entry:
1014
br label %for.body
@@ -19,6 +23,11 @@ for.body: ; preds = %for.body, %entry
1923
%exitcond = icmp eq i64 %indvars.iv.next, 1024
2024
br i1 %exitcond, label %for.end, label %for.body, !llvm.loop !0
2125

26+
; DEBUGLOC: scalar.ph:
27+
; DEBUGLOC-NEXT: %bc.resume.val = phi {{.*}} !dbg ![[DbgLoc:[0-9]+]]
28+
;
29+
; DEBUGLOC: ![[DbgLoc]] = !DILocation(line: 2
30+
2231
for.end: ; preds = %for.body
2332
ret void
2433
}

0 commit comments

Comments
 (0)
Please sign in to comment.