1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[BranchFolding] skip debug instr to avoid code change

Use the existing helper function in BranchFolding, "countsAsInstruction",
to skip over non-instructions. Otherwise debug instructions can be
identified as the last real instruction in a block, leading to different
codegen decisions when debug is enabled as demonstrated by the test case.

Patch by: yechunliang (Chris Ye)!

Differential Revision: https://reviews.llvm.org/D66467
This commit is contained in:
Jeremy Morse 2019-10-29 11:38:20 +00:00
parent a5da59e9b1
commit 554afeef83
2 changed files with 112 additions and 2 deletions

View File

@ -402,11 +402,12 @@ SkipTopCFIAndReturn:
// the CFI instruction. Later on, this leads to BB2 being 'hacked off' at the
// wrong place (in ReplaceTailWithBranchTo()) which results in losing this CFI
// instruction.
while (I1 != MBB1->end() && I1->isCFIInstruction()) {
// Skip CFI_INSTRUCTION and debugging instruction; necessary to avoid changing the code.
while (I1 != MBB1->end() && !countsAsInstruction(*I1)) {
++I1;
}
while (I2 != MBB2->end() && I2->isCFIInstruction()) {
while (I2 != MBB2->end() && !countsAsInstruction(*I2)) {
++I2;
}

View File

@ -0,0 +1,109 @@
# RUN: llc -o - %s -mtriple=x86_64-- -run-pass=branch-folder | FileCheck %s
# Branch folder should ignore the DBG_VALUE between block bb.2 and bb.3,
# set these blocks as bb.3, so that bb.6 will succeed to merge between bb.2 and bb.3.
# if the DBG_VALUE is not ignored, bb.6 will merge between bb.1 and bb.2, the result is
# different with Codegen without -g.
#
# Generated with
#
# clang++ -g -w -O1 -S -emit-llvm test.cc
# llc -stop-before=branch-folder test.ll
#
# template <typename, typename = int> class e;
# class allocator {
# public:
# ~allocator();
# };
# template <typename, typename> class e {
# public:
# e(char *, allocator = allocator());
# };
# template <typename b, typename c, typename d> bool operator==(e<c, d>, b);
# class f {
# public:
# f(int *, int *, int *, int, int, int, int);
# e<char> g();
# void j();
# };
# int h, i;
# class k {
# void l();
# bool m_fn4();
# int m;
# int n;
# int q;
# int fmap;
# };
# void k::l() {
# e<char> o = "";
# for (;;) {
# int p = 0;
# for (;;) {
# if (m_fn4())
# break;
# f a(&q, &fmap, &m, n, h, i, 0);
# if (a.g() == "")
# a.j();
# }
# }
# }
--- |
define dso_local void @l() {
ret void
}
...
---
name: l
body: |
bb.0:
; CHECK: bb.0:
; CHECK-NEXT: successors: %bb.1({{.*}}), %bb.7
successors: %bb.1, %bb.3
bb.1:
$rdi = MOV64rr $rsp
bb.2:
; CHECK: bb.2:
; CHECK-NEXT: successors: %bb.3
successors: %bb.2, %bb.4
DBG_VALUE
CFI_INSTRUCTION def_cfa_offset 8
; CHECK: bb.3
; CHECK-NEXT: successors: %bb.2({{.*}}), %bb.4
TEST8rr killed renamable $al, renamable $al, implicit-def $eflags
JCC_1 %bb.2, 5, implicit killed $eflags
JMP_1 %bb.4
bb.3 (landing-pad):
; CHECK: bb.4:
; CHECK-NEXT: successors: %bb.5({{.*}}), %bb.6
successors:
bb.4:
successors: %bb.5, %bb.6
JCC_1 %bb.6, 4, implicit killed $eflags
; CHECK: JCC_1 %bb.6, 4, implicit $eflags
JMP_1 %bb.5
bb.5:
; CHECK: bb.5:
; CHECK-NEXT: successors: %bb.6
$rdi = COPY renamable $r12
bb.6:
; CHECK: bb.6:
; CHECK-NEXT: successors: %bb.3
successors: %bb.2, %bb.4
; CHECK: JMP_1 %bb.3
; CHECK: bb.7 (landing-pad):
$rdi = COPY renamable $rbx
TEST8rr killed renamable $al, renamable $al, implicit-def $eflags
JCC_1 %bb.2, 5, implicit killed $eflags
JMP_1 %bb.4
...