mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
fix PR8642: if a critical edge has a PHI value that can trap,
isel is *required* to split the edge. PHI values get evaluated on the edge, not in their predecessor block. llvm-svn: 122170
This commit is contained in:
parent
70cfded393
commit
ac82ea26da
@ -43,6 +43,7 @@
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
@ -239,6 +240,44 @@ static bool FunctionCallsSetJmp(const Function *F) {
|
||||
#undef NUM_RETURNS_TWICE_FNS
|
||||
}
|
||||
|
||||
/// SplitCriticalSideEffectEdges - Look for critical edges with a PHI value that
|
||||
/// may trap on it. In this case we have to split the edge so that the path
|
||||
/// through the predecessor block that doesn't go to the phi block doesn't
|
||||
/// execute the possibly trapping instruction.
|
||||
///
|
||||
/// This is required for correctness, so it must be done at -O0.
|
||||
///
|
||||
static void SplitCriticalSideEffectEdges(Function &Fn, Pass *SDISel) {
|
||||
// Loop for blocks with phi nodes.
|
||||
for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
|
||||
PHINode *PN = dyn_cast<PHINode>(BB->begin());
|
||||
if (PN == 0) continue;
|
||||
|
||||
ReprocessBlock:
|
||||
// For each block with a PHI node, check to see if any of the input values
|
||||
// are potentially trapping constant expressions. Constant expressions are
|
||||
// the only potentially trapping value that can occur as the argument to a
|
||||
// PHI.
|
||||
for (BasicBlock::iterator I = BB->begin(); (PN = dyn_cast<PHINode>(I)); ++I)
|
||||
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
|
||||
ConstantExpr *CE = dyn_cast<ConstantExpr>(PN->getIncomingValue(i));
|
||||
if (CE == 0 || !CE->canTrap()) continue;
|
||||
|
||||
// The only case we have to worry about is when the edge is critical.
|
||||
// Since this block has a PHI Node, we assume it has multiple input
|
||||
// edges: check to see if the pred has multiple successors.
|
||||
BasicBlock *Pred = PN->getIncomingBlock(i);
|
||||
if (Pred->getTerminator()->getNumSuccessors() == 1)
|
||||
continue;
|
||||
|
||||
// Okay, we have to split this edge.
|
||||
SplitCriticalEdge(Pred->getTerminator(),
|
||||
GetSuccessorNumber(Pred, BB), SDISel, true);
|
||||
goto ReprocessBlock;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
|
||||
// Do some sanity-checking on the command-line options.
|
||||
assert((!EnableFastISelVerbose || EnableFastISel) &&
|
||||
@ -257,6 +296,8 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
|
||||
|
||||
DEBUG(dbgs() << "\n\n\n=== " << Fn.getName() << "\n");
|
||||
|
||||
SplitCriticalSideEffectEdges(const_cast<Function&>(Fn), this);
|
||||
|
||||
CurDAG->init(*MF);
|
||||
FuncInfo->set(Fn, *MF);
|
||||
SDB->init(GFI, *AA);
|
||||
|
29
test/CodeGen/X86/critical-edge-split-2.ll
Normal file
29
test/CodeGen/X86/critical-edge-split-2.ll
Normal file
@ -0,0 +1,29 @@
|
||||
; RUN: llc < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
||||
%0 = type <{ %1, %1 }>
|
||||
%1 = type { i8, i8, i8, i8 }
|
||||
|
||||
@g_2 = global %0 zeroinitializer
|
||||
@g_4 = global %1 zeroinitializer, align 4
|
||||
|
||||
|
||||
; PR8642
|
||||
define i16 @test1(i1 zeroext %C, i8** nocapture %argv) nounwind ssp {
|
||||
entry:
|
||||
br i1 %C, label %cond.end.i, label %cond.false.i
|
||||
|
||||
cond.false.i: ; preds = %entry
|
||||
br label %cond.end.i
|
||||
|
||||
cond.end.i: ; preds = %entry
|
||||
%call1 = phi i16 [ trunc (i32 srem (i32 1, i32 zext (i1 icmp eq (%1* bitcast (i8* getelementptr inbounds (%0* @g_2, i64 0, i32 1, i32 0) to %1*), %1* @g_4) to i32)) to i16), %cond.false.i ], [ 1, %entry ]
|
||||
ret i16 %call1
|
||||
}
|
||||
|
||||
; CHECK: test1:
|
||||
; CHECK: testb %dil, %dil
|
||||
; CHECK: jne LBB0_2
|
||||
; CHECK: divl
|
||||
; CHECK: LBB0_2:
|
Loading…
Reference in New Issue
Block a user