[PATCH] D69606: [MachineBasicBlock] Skip over debug instructions in computeRegisterLiveness before checking for begin/end.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 1 14:44:31 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rG42d77461f329: [MachineBasicBlock] Skip over debug instructions in computeRegisterLiveness… (authored by craig.topper).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69606/new/

https://reviews.llvm.org/D69606

Files:
  llvm/lib/CodeGen/MachineBasicBlock.cpp
  llvm/test/CodeGen/X86/leaFixup64.mir


Index: llvm/test/CodeGen/X86/leaFixup64.mir
===================================================================
--- llvm/test/CodeGen/X86/leaFixup64.mir
+++ llvm/test/CodeGen/X86/leaFixup64.mir
@@ -1169,7 +1169,7 @@
     ; CHECK: NOOP
     ; CHECK: NOOP
     ; CHECK: NOOP
-    ; CHECK: $ebp = LEA64_32r killed $rbp, 1, killed $rax, 0, $noreg
+    ; CHECK: $ebp = ADD32rr $ebp, $eax, implicit-def $eflags, implicit $rbp, implicit $rax
     ; CHECK: NOOP
     ; CHECK: NOOP
     ; CHECK: NOOP
Index: llvm/lib/CodeGen/MachineBasicBlock.cpp
===================================================================
--- llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -1462,6 +1462,11 @@
     } while (I != begin() && N > 0);
   }
 
+  // If all the instructions before this in the block are debug instructions,
+  // skip over them.
+  while (I != begin() && std::prev(I)->isDebugInstr())
+    --I;
+
   // Did we get to the start of the block?
   if (I == begin()) {
     // If so, the register's state is definitely defined by the live-in state.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69606.227539.patch
Type: text/x-patch
Size: 1076 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191101/f54cd252/attachment.bin>


More information about the llvm-commits mailing list