mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +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:
parent
fac31ded96
commit
5df15c692b
@ -1279,6 +1279,7 @@ public:
|
|||||||
bool paramHasStructRetAttr(unsigned i) const;
|
bool paramHasStructRetAttr(unsigned i) const;
|
||||||
bool paramHasNestAttr(unsigned i) const;
|
bool paramHasNestAttr(unsigned i) const;
|
||||||
bool paramHasByValAttr(unsigned i) const;
|
bool paramHasByValAttr(unsigned i) const;
|
||||||
|
bool paramHasNoAliasAttr(unsigned i) const;
|
||||||
|
|
||||||
/// @brief Determine whether the call or the callee has the given attribute.
|
/// @brief Determine whether the call or the callee has the given attribute.
|
||||||
bool paramHasAttr(unsigned i, Attributes attr) const;
|
bool paramHasAttr(unsigned i, Attributes attr) const;
|
||||||
@ -3049,6 +3050,7 @@ public:
|
|||||||
bool paramHasStructRetAttr(unsigned i) const;
|
bool paramHasStructRetAttr(unsigned i) const;
|
||||||
bool paramHasNestAttr(unsigned i) const;
|
bool paramHasNestAttr(unsigned i) const;
|
||||||
bool paramHasByValAttr(unsigned i) const;
|
bool paramHasByValAttr(unsigned i) const;
|
||||||
|
bool paramHasNoAliasAttr(unsigned i) const;
|
||||||
|
|
||||||
/// @brief Determine whether the call or the callee has the given attribute.
|
/// @brief Determine whether the call or the callee has the given attribute.
|
||||||
bool paramHasAttr(unsigned i, Attributes attr) const;
|
bool paramHasAttr(unsigned i, Attributes attr) const;
|
||||||
|
@ -208,6 +208,9 @@ public:
|
|||||||
bool paramHasByValAttr(unsigned i) const {
|
bool paramHasByValAttr(unsigned i) const {
|
||||||
CALLSITE_DELEGATE_GETTER(paramHasByValAttr(i));
|
CALLSITE_DELEGATE_GETTER(paramHasByValAttr(i));
|
||||||
}
|
}
|
||||||
|
bool paramHasNoAliasAttr(unsigned i) const {
|
||||||
|
CALLSITE_DELEGATE_GETTER(paramHasNoAliasAttr(i));
|
||||||
|
}
|
||||||
|
|
||||||
/// paramHasAttr - whether the call or the callee has the given attribute.
|
/// paramHasAttr - whether the call or the callee has the given attribute.
|
||||||
bool paramHasAttr(uint16_t i, Attributes attr) const {
|
bool paramHasAttr(uint16_t i, Attributes attr) const {
|
||||||
|
@ -520,7 +520,7 @@ bool FunctionAttrs::IsFunctionMallocLike(Function *F,
|
|||||||
case Instruction::Call:
|
case Instruction::Call:
|
||||||
case Instruction::Invoke: {
|
case Instruction::Invoke: {
|
||||||
CallSite CS(RVI);
|
CallSite CS(RVI);
|
||||||
if (CS.paramHasAttr(0, Attribute::NoAlias))
|
if (CS.paramHasNoAliasAttr(0))
|
||||||
break;
|
break;
|
||||||
if (CS.getCalledFunction() &&
|
if (CS.getCalledFunction() &&
|
||||||
SCCNodes.count(CS.getCalledFunction()))
|
SCCNodes.count(CS.getCalledFunction()))
|
||||||
|
@ -390,6 +390,14 @@ bool CallInst::paramHasByValAttr(unsigned i) const {
|
|||||||
return false;
|
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 {
|
bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
|
||||||
if (AttributeList.paramHasAttr(i, attr))
|
if (AttributeList.paramHasAttr(i, attr))
|
||||||
return true;
|
return true;
|
||||||
@ -658,6 +666,14 @@ bool InvokeInst::paramHasByValAttr(unsigned i) const {
|
|||||||
return false;
|
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 {
|
bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
|
||||||
if (AttributeList.paramHasAttr(i, attr))
|
if (AttributeList.paramHasAttr(i, attr))
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user