mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-25 21:46:50 +00:00
Be more conservative in the face of volatile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b8639c9bd
commit
b9db52dcbc
@ -195,31 +195,31 @@ AliasAnalysis::getModRefBehavior(const Function *F) {
|
|||||||
|
|
||||||
AliasAnalysis::ModRefResult
|
AliasAnalysis::ModRefResult
|
||||||
AliasAnalysis::getModRefInfo(const LoadInst *L, const Value *P, unsigned Size) {
|
AliasAnalysis::getModRefInfo(const LoadInst *L, const Value *P, unsigned Size) {
|
||||||
|
// Be conservative in the face of volatile.
|
||||||
|
if (L->isVolatile())
|
||||||
|
return ModRef;
|
||||||
|
|
||||||
// If the load address doesn't alias the given address, it doesn't read
|
// If the load address doesn't alias the given address, it doesn't read
|
||||||
// or write the specified memory.
|
// or write the specified memory.
|
||||||
if (!alias(L->getOperand(0), getTypeStoreSize(L->getType()), P, Size))
|
if (!alias(L->getOperand(0), getTypeStoreSize(L->getType()), P, Size))
|
||||||
return NoModRef;
|
return NoModRef;
|
||||||
|
|
||||||
// Be conservative in the face of volatile.
|
|
||||||
if (L->isVolatile())
|
|
||||||
return ModRef;
|
|
||||||
|
|
||||||
// Otherwise, a load just reads.
|
// Otherwise, a load just reads.
|
||||||
return Ref;
|
return Ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
AliasAnalysis::ModRefResult
|
AliasAnalysis::ModRefResult
|
||||||
AliasAnalysis::getModRefInfo(const StoreInst *S, const Value *P, unsigned Size) {
|
AliasAnalysis::getModRefInfo(const StoreInst *S, const Value *P, unsigned Size) {
|
||||||
|
// Be conservative in the face of volatile.
|
||||||
|
if (S->isVolatile())
|
||||||
|
return ModRef;
|
||||||
|
|
||||||
// If the store address cannot alias the pointer in question, then the
|
// If the store address cannot alias the pointer in question, then the
|
||||||
// specified memory cannot be modified by the store.
|
// specified memory cannot be modified by the store.
|
||||||
if (!alias(S->getOperand(1),
|
if (!alias(S->getOperand(1),
|
||||||
getTypeStoreSize(S->getOperand(0)->getType()), P, Size))
|
getTypeStoreSize(S->getOperand(0)->getType()), P, Size))
|
||||||
return NoModRef;
|
return NoModRef;
|
||||||
|
|
||||||
// Be conservative in the face of volatile.
|
|
||||||
if (S->isVolatile())
|
|
||||||
return ModRef;
|
|
||||||
|
|
||||||
// If the pointer is a pointer to constant memory, then it could not have been
|
// If the pointer is a pointer to constant memory, then it could not have been
|
||||||
// modified by this store.
|
// modified by this store.
|
||||||
if (pointsToConstantMemory(P))
|
if (pointsToConstantMemory(P))
|
||||||
|
Loading…
Reference in New Issue
Block a user