diff options
author | Dan Gohman <djg@cray.com> | 2007-07-26 16:06:08 +0000 |
---|---|---|
committer | Dan Gohman <djg@cray.com> | 2007-07-26 16:06:08 +0000 |
commit | ba6ec63c3703cdfd15cceaf2bd168260c77f9062 (patch) | |
tree | 24593350863a6f0aa740fb353e95fb4fbb4767ac | |
parent | 9163f0c366490ceb50ea963643230016641a5ef9 (diff) | |
download | external_llvm-ba6ec63c3703cdfd15cceaf2bd168260c77f9062.zip external_llvm-ba6ec63c3703cdfd15cceaf2bd168260c77f9062.tar.gz external_llvm-ba6ec63c3703cdfd15cceaf2bd168260c77f9062.tar.bz2 |
Move the GET_SIDE_EFFECT_INFO logic from isInstructionTriviallyDead
to Instruction::mayWriteToMemory, fixing a FIXME, and helping
various places that call mayWriteToMemory directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40533 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Utils/Local.cpp | 7 | ||||
-rw-r--r-- | lib/VMCore/Instruction.cpp | 16 |
2 files changed, 12 insertions, 11 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp index 5e2d237..187ebdc 100644 --- a/lib/Transforms/Utils/Local.cpp +++ b/lib/Transforms/Utils/Local.cpp @@ -175,13 +175,6 @@ bool llvm::isInstructionTriviallyDead(Instruction *I) { if (!I->mayWriteToMemory()) return true; - if (CallInst *CI = dyn_cast<CallInst>(I)) - if (Function *F = CI->getCalledFunction()) { - unsigned IntrinsicID = F->getIntrinsicID(); -#define GET_SIDE_EFFECT_INFO -#include "llvm/Intrinsics.gen" -#undef GET_SIDE_EFFECT_INFO - } return false; } diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index feff59d..a368753 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -197,6 +197,15 @@ bool Instruction::isSameOperationAs(Instruction *I) const { return true; } +// IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't +// have any side-effects or if it only reads memory. +static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) { +#define GET_SIDE_EFFECT_INFO +#include "llvm/Intrinsics.gen" +#undef GET_SIDE_EFFECT_INFO + return false; +} + /// mayWriteToMemory - Return true if this instruction may modify memory. /// bool Instruction::mayWriteToMemory() const { @@ -208,11 +217,10 @@ bool Instruction::mayWriteToMemory() const { case Instruction::VAArg: return true; case Instruction::Call: - //if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(this)) { + if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(this)) { // If the intrinsic doesn't write memory, it is safe. - // FIXME: this is obviously supposed to determine which intrinsics - // don't write to memory, but hasn't been implemented yet. - //} + return !IntrinsicOnlyReadsMemory(II->getIntrinsicID()); + } return true; case Instruction::Load: return cast<LoadInst>(this)->isVolatile(); |