[llvm] r318934 - [X86] Don't invert NewCC variable while processing the jcc/setcc/cmovcc instructions in optimizeCompareInstr.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 23 11:25:45 PST 2017
Author: ctopper
Date: Thu Nov 23 11:25:45 2017
New Revision: 318934
URL: http://llvm.org/viewvc/llvm-project?rev=318934&view=rev
Log:
[X86] Don't invert NewCC variable while processing the jcc/setcc/cmovcc instructions in optimizeCompareInstr.
The NewCC variable is calculated outside of the loop that processes jcc/setcc/cmovcc instructions. If we invert it during the loop it can cause an incorrect value to be used by a later iteration. Instead only read it during the loop and use a new variable to store the possibly inverted value.
Fixes PR35399.
Added:
llvm/trunk/test/CodeGen/X86/pr35399.ll
Modified:
llvm/trunk/lib/Target/X86/X86InstrInfo.cpp
Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.cpp?rev=318934&r1=318933&r2=318934&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.cpp Thu Nov 23 11:25:45 2017
@@ -7475,6 +7475,7 @@ bool X86InstrInfo::optimizeCompareInstr(
}
if (OldCC == X86::COND_INVALID) return false;
}
+ X86::CondCode ReplacementCC = X86::COND_INVALID;
if (IsCmpZero) {
switch (OldCC) {
default: break;
@@ -7494,31 +7495,32 @@ bool X86InstrInfo::optimizeCompareInstr(
default:
return false;
case X86::COND_E:
+ ReplacementCC = NewCC;
break;
case X86::COND_NE:
- NewCC = GetOppositeBranchCondition(NewCC);
+ ReplacementCC = GetOppositeBranchCondition(NewCC);
break;
}
} else if (IsSwapped) {
// If we have SUB(r1, r2) and CMP(r2, r1), the condition code needs
// to be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
// We swap the condition code and synthesize the new opcode.
- NewCC = getSwappedCondition(OldCC);
- if (NewCC == X86::COND_INVALID) return false;
+ ReplacementCC = getSwappedCondition(OldCC);
+ if (ReplacementCC == X86::COND_INVALID) return false;
}
- if ((ShouldUpdateCC || IsSwapped) && NewCC != OldCC) {
+ if ((ShouldUpdateCC || IsSwapped) && ReplacementCC != OldCC) {
// Synthesize the new opcode.
bool HasMemoryOperand = Instr.hasOneMemOperand();
unsigned NewOpc;
if (Instr.isBranch())
- NewOpc = GetCondBranchFromCond(NewCC);
+ NewOpc = GetCondBranchFromCond(ReplacementCC);
else if(OpcIsSET)
- NewOpc = getSETFromCond(NewCC, HasMemoryOperand);
+ NewOpc = getSETFromCond(ReplacementCC, HasMemoryOperand);
else {
unsigned DstReg = Instr.getOperand(0).getReg();
const TargetRegisterClass *DstRC = MRI->getRegClass(DstReg);
- NewOpc = getCMovFromCond(NewCC, TRI->getRegSizeInBits(*DstRC)/8,
+ NewOpc = getCMovFromCond(ReplacementCC, TRI->getRegSizeInBits(*DstRC)/8,
HasMemoryOperand);
}
Added: llvm/trunk/test/CodeGen/X86/pr35399.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pr35399.ll?rev=318934&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pr35399.ll (added)
+++ llvm/trunk/test/CodeGen/X86/pr35399.ll Thu Nov 23 11:25:45 2017
@@ -0,0 +1,22 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-unknown -mattr=lzcnt | FileCheck %s
+
+; Make sure we emit opoosite setcc instructions.
+define i64 @pr35399(i64, i8*, i8*) {
+; CHECK-LABEL: pr35399:
+; CHECK: # BB#0:
+; CHECK-NEXT: lzcntq %rdi, %rax
+; CHECK-NEXT: setae (%rsi)
+; CHECK-NEXT: setb (%rdx)
+; CHECK-NEXT: retq
+ %4 = tail call i64 @llvm.ctlz.i64(i64 %0, i1 false)
+ %5 = icmp ne i64 %0, 0
+ %6 = zext i1 %5 to i8
+ store i8 %6, i8* %1, align 1
+ %7 = xor i1 %5, true
+ %8 = zext i1 %7 to i8
+ store i8 %8, i8* %2, align 1
+ ret i64 %4
+}
+
+declare i64 @llvm.ctlz.i64(i64, i1)
More information about the llvm-commits
mailing list