[PATCH] D47282: [DebugInfo] Maintain DI for sunken bitcasts
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 23 15:07:53 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL333133: [DebugInfo] Maintain DI for sunken bitcasts (authored by vedantk, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D47282?vs=148288&id=148297#toc
Repository:
rL LLVM
https://reviews.llvm.org/D47282
Files:
llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
llvm/trunk/test/DebugInfo/sink-bitcast-di.ll
Index: llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
+++ llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
@@ -1050,6 +1050,7 @@
assert(InsertPt != UserBB->end());
InsertedCast = CastInst::Create(CI->getOpcode(), CI->getOperand(0),
CI->getType(), "", &*InsertPt);
+ InsertedCast->setDebugLoc(CI->getDebugLoc());
}
// Replace a use of the cast with a use of the new cast.
Index: llvm/trunk/test/DebugInfo/sink-bitcast-di.ll
===================================================================
--- llvm/trunk/test/DebugInfo/sink-bitcast-di.ll
+++ llvm/trunk/test/DebugInfo/sink-bitcast-di.ll
@@ -0,0 +1,37 @@
+; RUN: opt -S -debugify -codegenprepare < %s | FileCheck %s
+
+target datalayout =
+"e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
+target triple = "x86_64-unknown-linux-gnu"
+
+declare void @foo(i32)
+
+declare void @slowpath(i32, i32*)
+
+; Is DI maintained after sinking bitcast?
+define void @test(i1 %cond, i64* %base) {
+; CHECK-LABEL: @test
+entry:
+ %addr = getelementptr inbounds i64, i64* %base, i64 5
+ %casted = bitcast i64* %addr to i32*
+ br i1 %cond, label %if.then, label %fallthrough
+
+if.then:
+; CHECK-LABEL: if.then:
+; CHECK: bitcast i64* %addr to i32*, !dbg ![[castLoc:[0-9]+]]
+ %v1 = load i32, i32* %casted, align 4
+ call void @foo(i32 %v1)
+ %cmp = icmp eq i32 %v1, 0
+ br i1 %cmp, label %rare.1, label %fallthrough
+
+fallthrough:
+ ret void
+
+rare.1:
+; CHECK-LABEL: rare.1:
+; CHECK: bitcast i64* %addr to i32*, !dbg ![[castLoc]]
+ call void @slowpath(i32 %v1, i32* %casted) ;; NOT COLD
+ br label %fallthrough
+}
+
+; CHECK: ![[castLoc]] = !DILocation(line: 2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47282.148297.patch
Type: text/x-patch
Size: 1865 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180523/7744adf6/attachment.bin>
More information about the llvm-commits
mailing list