mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
Add method to query for 'NoAlias' attribute on call/invoke instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165208 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -390,6 +390,14 @@ bool CallInst::paramHasByValAttr(unsigned i) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CallInst::paramHasNoAliasAttr(unsigned i) const {
|
||||
if (AttributeList.getParamAttributes(i).hasNoAliasAttr())
|
||||
return true;
|
||||
if (const Function *F = getCalledFunction())
|
||||
return F->getParamAttributes(i).hasNoAliasAttr();
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
|
||||
if (AttributeList.paramHasAttr(i, attr))
|
||||
return true;
|
||||
@@ -658,6 +666,14 @@ bool InvokeInst::paramHasByValAttr(unsigned i) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool InvokeInst::paramHasNoAliasAttr(unsigned i) const {
|
||||
if (AttributeList.getParamAttributes(i).hasNoAliasAttr())
|
||||
return true;
|
||||
if (const Function *F = getCalledFunction())
|
||||
return F->getParamAttributes(i).hasNoAliasAttr();
|
||||
return false;
|
||||
}
|
||||
|
||||
bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
|
||||
if (AttributeList.paramHasAttr(i, attr))
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user