diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-30 02:49:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-30 02:49:14 +0000 |
commit | 3311a1f8f0d8a2c6d940802bbb95eba0b801a615 (patch) | |
tree | bdd2e29d59721787b1d6dd48c8dfca58ef4b49ce /lib/Analysis/BasicAliasAnalysis.cpp | |
parent | 9c8148ac93835b7d53c81c554cde2e6da3730771 (diff) |
Fix a post-RA scheduling dependency bug.
If a MachineInstr doesn't have a memoperand but has an opcode that
is known to load or store, assume its memory reference may alias
*anything*, including stack slots which the compiler completely
controls.
To partially compensate for this, teach the ScheduleDAG building
code to do basic getUnderlyingValue analysis. This greatly
reduces the number of instructions that require restrictive
dependencies. This code will need to be revisited when we start
doing real alias analysis, but it should suffice for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicAliasAnalysis.cpp')
-rw-r--r-- | lib/Analysis/BasicAliasAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index 82514400b8..1002868e84 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -80,7 +80,7 @@ static bool isNoAliasCall(const Value *V) { /// ByVal and NoAlias Arguments /// NoAlias returns /// -static bool isIdentifiedObject(const Value *V) { +bool llvm::isIdentifiedObject(const Value *V) { if (isa<GlobalValue>(V) || isa<AllocationInst>(V) || isNoAliasCall(V)) return true; if (const Argument *A = dyn_cast<Argument>(V)) |