mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
AArch64ISelLowering: Reduce maximum recursion depth of isConjunctionDisjunctionTree()
This function will exhibit exponential runtime (2**n) so we should rather use a lower limit. llvm-svn: 258604
This commit is contained in:
parent
a0ca239a6c
commit
da14179563
@ -1326,8 +1326,8 @@ static bool isConjunctionDisjunctionTree(const SDValue Val, bool &CanPushNegate,
|
|||||||
CanPushNegate = true;
|
CanPushNegate = true;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// Protect against stack overflow.
|
// Protect against exponential runtime and stack overflow.
|
||||||
if (Depth > 15)
|
if (Depth > 6)
|
||||||
return false;
|
return false;
|
||||||
if (Opcode == ISD::AND || Opcode == ISD::OR) {
|
if (Opcode == ISD::AND || Opcode == ISD::OR) {
|
||||||
SDValue O0 = Val->getOperand(0);
|
SDValue O0 = Val->getOperand(0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user