forked from OSchip/llvm-project
Refine the definition of convergent to only disallow the addition of new control dependencies.
This covers the common case of operations that cannot be sunk. Operations that cannot be hoisted should already be handled properly via the safe-to-speculate rules and mechanisms. llvm-svn: 249865
This commit is contained in:
parent
c7b054a60c
commit
d95b08a0a7
|
@ -1219,10 +1219,8 @@ example:
|
|||
``convergent``
|
||||
This attribute indicates that the callee is dependent on a convergent
|
||||
thread execution pattern under certain parallel execution models.
|
||||
Transformations that are execution model agnostic may only move or
|
||||
tranform this call if the final location is control equivalent to its
|
||||
original position in the program, where control equivalence is defined as
|
||||
A dominates B and B post-dominates A, or vice versa.
|
||||
Transformations that are execution model agnostic may not make the execution
|
||||
of a convergent operation control dependent on any additional values.
|
||||
``inlinehint``
|
||||
This attribute indicates that the source code contained a hint that
|
||||
inlining this function is desirable (such as the "inline" keyword in
|
||||
|
|
|
@ -497,8 +497,8 @@ public:
|
|||
}
|
||||
|
||||
/// Return true if this instruction is convergent.
|
||||
/// Convergent instructions can only be moved to locations that are
|
||||
/// control-equivalent to their initial position.
|
||||
/// Convergent instructions can not be made control-dependent on any
|
||||
/// additional values.
|
||||
bool isConvergent(QueryType Type = AnyInBundle) const {
|
||||
return hasProperty(MCID::Convergent, Type);
|
||||
}
|
||||
|
|
|
@ -73,8 +73,8 @@ def IntrNoReturn : IntrinsicProperty;
|
|||
// Parallels the noduplicate attribute on LLVM IR functions.
|
||||
def IntrNoDuplicate : IntrinsicProperty;
|
||||
|
||||
// IntrConvergent - Calls to this intrinsic are convergent and may only be
|
||||
// moved to control equivalent blocks.
|
||||
// IntrConvergent - Calls to this intrinsic are convergent and may not be made
|
||||
// control-dependent on any additional values.
|
||||
// Parallels the convergent attribute on LLVM IR functions.
|
||||
def IntrConvergent : IntrinsicProperty;
|
||||
|
||||
|
|
|
@ -336,8 +336,8 @@ public:
|
|||
|
||||
/// \brief Return true if this instruction is convergent.
|
||||
///
|
||||
/// Convergent instructions may only be moved to locations that are
|
||||
/// control-equivalent to their original positions.
|
||||
/// Convergent instructions may not be made control-dependent on any
|
||||
/// additional values.
|
||||
bool isConvergent() const { return Flags & (1 << MCID::Convergent); }
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
|
|
@ -686,7 +686,8 @@ bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore,
|
|||
if (!MI->isSafeToMove(AA, SawStore))
|
||||
return false;
|
||||
|
||||
// Convergent operations may only be moved to control equivalent locations.
|
||||
// Convergent operations may not be made control-dependent on additional
|
||||
// values.
|
||||
if (MI->isConvergent())
|
||||
return false;
|
||||
|
||||
|
|
|
@ -172,7 +172,8 @@ static bool isSafeToMove(Instruction *Inst, AliasAnalysis *AA,
|
|||
if (isa<TerminatorInst>(Inst) || isa<PHINode>(Inst))
|
||||
return false;
|
||||
|
||||
// Convergent operations can only be moved to control equivalent blocks.
|
||||
// Convergent operations cannot be made control-dependent on additional
|
||||
// values.
|
||||
if (auto CS = CallSite(Inst)) {
|
||||
if (CS.hasFnAttr(Attribute::Convergent))
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue