aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-01-26 08:40:22 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-01-26 08:40:22 +0000
commite19b7b80bd1bf48f9a6f036cf1cbc5f65445090a (patch)
treed19d53a1d8e2fb3c549070c355a7e6152b50b911 /lib/Analysis
parent5d83955b8c2bdca28d0a0c62a9d0f9bbd5a6d668 (diff)
downloadexternal_llvm-e19b7b80bd1bf48f9a6f036cf1cbc5f65445090a.zip
external_llvm-e19b7b80bd1bf48f9a6f036cf1cbc5f65445090a.tar.gz
external_llvm-e19b7b80bd1bf48f9a6f036cf1cbc5f65445090a.tar.bz2
Fix memory corruption. If one of the SCEV creation functions calls another but
doesn't return immediately after then the insert position in UniqueSCEVs will be out of date. No test because this is a memory corruption issue. Fixes PR9051! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index c10af50..c2f3ac0 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -831,6 +831,7 @@ const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op,
}
if (!hasTrunc)
return getAddExpr(Operands, false, false);
+ UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL.
}
// trunc(x1*x2*...*xN) --> trunc(x1)*trunc(x2)*...*trunc(xN) if we can
@@ -845,6 +846,7 @@ const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op,
}
if (!hasTrunc)
return getMulExpr(Operands, false, false);
+ UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL.
}
// If the input value is a chrec scev, truncate the chrec's operands.