From 5842b20633ef3b244a2d583cf0d209b4ea57a911 Mon Sep 17 00:00:00 2001 From: Michael Kuperstein Date: Wed, 7 Dec 2016 19:31:08 +0000 Subject: [PATCH] [X86] Skip over DEBUG_VALUE while looking for start of call sequence If we don't skip over DEBUG_VALUEs, we get differences between -g and non-g code. This fixes PR31242. Differential Revision: https://reviews.llvm.org/D27485 llvm-svn: 288965 --- llvm/lib/Target/X86/X86CallFrameOptimization.cpp | 6 +-- llvm/test/CodeGen/X86/pr31242.ll | 55 ++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 llvm/test/CodeGen/X86/pr31242.ll diff --git a/llvm/lib/Target/X86/X86CallFrameOptimization.cpp b/llvm/lib/Target/X86/X86CallFrameOptimization.cpp index 25d1c51..78bd2ad 100644 --- a/llvm/lib/Target/X86/X86CallFrameOptimization.cpp +++ b/llvm/lib/Target/X86/X86CallFrameOptimization.cpp @@ -340,10 +340,10 @@ void X86CallFrameOptimization::collectCallInfo(MachineFunction &MF, return; } - // For globals in PIC mode, we can have some LEAs here. - // Ignore them, they don't bother us. + // Skip over DEBUG_VALUE. + // For globals in PIC mode, we can have some LEAs here. Skip them as well. // TODO: Extend this to something that covers more cases. - while (I->getOpcode() == X86::LEA32r) + while (I->getOpcode() == X86::LEA32r || I->isDebugValue()) ++I; unsigned StackPtr = RegInfo.getStackRegister(); diff --git a/llvm/test/CodeGen/X86/pr31242.ll b/llvm/test/CodeGen/X86/pr31242.ll new file mode 100644 index 0000000..273ae76 --- /dev/null +++ b/llvm/test/CodeGen/X86/pr31242.ll @@ -0,0 +1,55 @@ +; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s + +declare void @raf(i32, ...) + +; CHECK-LABEL: test3 +; CHECK-DAG: movl $7, %edi +; CHECK-DAG: xorl %esi, %esi +; CHECK-DAG: xorl %edx, %edx +; CHECK-DAG: xorl %ecx, %ecx +; CHECK-DAG: xorl %r8d, %r8d +; CHECK-DAG: xorl %r9d, %r9d +; CHECK-DAG: xorl %eax, %eax +; CHECK: pushq %rbx +; CHECK: pushq $0 +; CHECK: callq raf + + +; Function Attrs: nounwind uwtable +define void @test3() { +entry: + br label %for.body + +for.body: + %i.04 = phi i32 [ 0, %entry ], [ %inc, %for.body ] + tail call void @llvm.dbg.value(metadata i32 %i.04, i64 0, metadata !10, metadata !12), !dbg !6 + tail call void (i32, ...) @raf(i32 7, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 %i.04) + %inc = add nuw nsw i32 %i.04, 1 + %exitcond = icmp eq i32 %inc, 21 + br i1 %exitcond, label %for.cond.cleanup, label %for.body + +for.cond.cleanup: + ret void +} + +; Function Attrs: nounwind readnone +declare void @llvm.dbg.value(metadata, i64, metadata, metadata) +attributes #3 = { nounwind } + +!llvm.dbg.cu = !{!0} +!llvm.module.flags = !{!3, !4} +!llvm.ident = !{!5} + +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 4.0.0 (trunk 288844)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2) +!1 = !DIFile(filename: "pr31242.c", directory: "") +!2 = !{} +!3 = !{i32 2, !"Dwarf Version", i32 4} +!4 = !{i32 2, !"Debug Info Version", i32 3} +!5 = !{!"clang version 4.0.0 (trunk 288844)"} +!6 = !DILocation(line: 2, column: 16, scope: !7) +!7 = distinct !DISubprogram(name: "test3", scope: !1, file: !1, line: 5, type: !8, isLocal: false, isDefinition: true, scopeLine: 5, isOptimized: true, unit: !0) +!8 = !DISubroutineType(types: !9) +!9 = !{null} +!10 = !DILocalVariable(name: "value", arg: 1, scope: !7, file: !1, line: 2, type: !11) +!11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) +!12 = !DIExpression() -- 2.7.4