forked from OSchip/llvm-project
ISelDAG: spot chain cycles involving MachineNodes
Previously, the DAGISel function WalkChainUsers was spotting that it had entered already-selected territory by whether a node was a MachineNode (amongst other things). Since it's fairly common practice to insert MachineNodes during ISelLowering, this was not the correct check. Looking around, it seems that other nodes get their NodeId set to -1 upon selection, so this makes sure the same thing happens to all MachineNodes and uses that characteristic to determine whether we should stop looking for a loop during selection. This should fix PR15840. llvm-svn: 191165
This commit is contained in:
parent
cb1dca602c
commit
31d093c705
|
@ -1857,15 +1857,15 @@ WalkChainUsers(const SDNode *ChainedNode,
|
|||
|
||||
SDNode *User = *UI;
|
||||
|
||||
if (User->getOpcode() == ISD::HANDLENODE) // Root of the graph.
|
||||
continue;
|
||||
|
||||
// If we see an already-selected machine node, then we've gone beyond the
|
||||
// pattern that we're selecting down into the already selected chunk of the
|
||||
// DAG.
|
||||
if (User->isMachineOpcode() ||
|
||||
User->getOpcode() == ISD::HANDLENODE) // Root of the graph.
|
||||
continue;
|
||||
|
||||
unsigned UserOpcode = User->getOpcode();
|
||||
if (UserOpcode == ISD::CopyToReg ||
|
||||
if (User->isMachineOpcode() ||
|
||||
UserOpcode == ISD::CopyToReg ||
|
||||
UserOpcode == ISD::CopyFromReg ||
|
||||
UserOpcode == ISD::INLINEASM ||
|
||||
UserOpcode == ISD::EH_LABEL ||
|
||||
|
|
|
@ -396,6 +396,7 @@ SDNode *AArch64DAGToDAGISel::Select(SDNode *Node) {
|
|||
|
||||
if (Node->isMachineOpcode()) {
|
||||
DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << "\n");
|
||||
Node->setNodeId(-1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -2383,8 +2383,10 @@ SDNode *ARMDAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
|
|||
SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
|
||||
SDLoc dl(N);
|
||||
|
||||
if (N->isMachineOpcode())
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: break;
|
||||
|
|
|
@ -1344,8 +1344,10 @@ SDNode *HexagonDAGToDAGISel::SelectAdd(SDNode *N) {
|
|||
|
||||
|
||||
SDNode *HexagonDAGToDAGISel::Select(SDNode *N) {
|
||||
if (N->isMachineOpcode())
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
|
|
|
@ -395,6 +395,7 @@ SDNode *MSP430DAGToDAGISel::Select(SDNode *Node) {
|
|||
DEBUG(errs() << "== ";
|
||||
Node->dump(CurDAG);
|
||||
errs() << "\n");
|
||||
Node->setNodeId(-1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -110,6 +110,7 @@ SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
|
|||
// If we have a custom node, we already have selected!
|
||||
if (Node->isMachineOpcode()) {
|
||||
DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
|
||||
Node->setNodeId(-1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -118,8 +118,10 @@ bool NVPTXDAGToDAGISel::useF32FTZ() const {
|
|||
/// expanded, promoted and normal instructions.
|
||||
SDNode *NVPTXDAGToDAGISel::Select(SDNode *N) {
|
||||
|
||||
if (N->isMachineOpcode())
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
SDNode *ResNode = NULL;
|
||||
switch (N->getOpcode()) {
|
||||
|
|
|
@ -876,8 +876,10 @@ SDNode *PPCDAGToDAGISel::SelectSETCC(SDNode *N) {
|
|||
// target-specific node if it hasn't already been changed.
|
||||
SDNode *PPCDAGToDAGISel::Select(SDNode *N) {
|
||||
SDLoc dl(N);
|
||||
if (N->isMachineOpcode())
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: break;
|
||||
|
|
|
@ -195,6 +195,7 @@ bool AMDGPUDAGToDAGISel::SelectADDR64(SDValue Addr, SDValue& R1, SDValue& R2) {
|
|||
SDNode *AMDGPUDAGToDAGISel::Select(SDNode *N) {
|
||||
unsigned int Opc = N->getOpcode();
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
switch (Opc) {
|
||||
|
|
|
@ -141,8 +141,10 @@ bool SparcDAGToDAGISel::SelectADDRrr(SDValue Addr, SDValue &R1, SDValue &R2) {
|
|||
|
||||
SDNode *SparcDAGToDAGISel::Select(SDNode *N) {
|
||||
SDLoc dl(N);
|
||||
if (N->isMachineOpcode())
|
||||
if (N->isMachineOpcode()) {
|
||||
N->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: break;
|
||||
|
|
|
@ -999,6 +999,7 @@ SDNode *SystemZDAGToDAGISel::Select(SDNode *Node) {
|
|||
// If we have a custom node, we already have selected!
|
||||
if (Node->isMachineOpcode()) {
|
||||
DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
|
||||
Node->setNodeId(-1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -2057,6 +2057,7 @@ SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
|
|||
|
||||
if (Node->isMachineOpcode()) {
|
||||
DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
|
||||
Node->setNodeId(-1);
|
||||
return NULL; // Already selected.
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ entry:
|
|||
|
||||
; CHECK: lock
|
||||
; CHECK-NEXT: orl {{.*}}, (%esp)
|
||||
; CHECK-NEXT: cmpl $0
|
||||
; CHECK-NEXT: testl [[REG:%e[a-z]+]], [[REG]]
|
||||
|
||||
if.then: ; preds = %entry
|
||||
tail call void bitcast (void (...)* @foo to void ()*)() nounwind
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
; RUN: llc -march=x86 -mcpu=i486 -o - %s | FileCheck %s
|
||||
|
||||
; Main test here was that ISelDAG could cope with a MachineNode in the chain
|
||||
; from the first load to the "X86ISD::SUB". Previously it thought that meant no
|
||||
; cycle could be formed so it tried to use "sub (%eax), [[RHS]]".
|
||||
|
||||
define void @gst_atomic_queue_push(i32* %addr) {
|
||||
; CHECK-LABEL: gst_atomic_queue_push:
|
||||
; CHECK: movl (%eax), [[LHS:%e[a-z]+]]
|
||||
; CHECK: lock
|
||||
; CHECK-NEXT: orl
|
||||
; CHECK: movl (%eax), [[RHS:%e[a-z]+]]
|
||||
; CHECK: cmpl [[LHS]], [[RHS]]
|
||||
|
||||
entry:
|
||||
br label %while.body
|
||||
|
||||
while.body:
|
||||
%0 = load volatile i32* %addr, align 4
|
||||
fence seq_cst
|
||||
%1 = load volatile i32* %addr, align 4
|
||||
%cmp = icmp sgt i32 %1, %0
|
||||
br i1 %cmp, label %while.body, label %if.then
|
||||
|
||||
if.then:
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue