mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-07 23:39:19 +00:00
Add some helpers for manipulating function
parameter attributes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53228 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1512642973
commit
cfa3c236b2
@ -174,29 +174,49 @@ public:
|
|||||||
/// addParamAttr - adds the attribute to the list of attributes.
|
/// addParamAttr - adds the attribute to the list of attributes.
|
||||||
void addParamAttr(unsigned i, ParameterAttributes attr);
|
void addParamAttr(unsigned i, ParameterAttributes attr);
|
||||||
|
|
||||||
|
/// removeParamAttr - removes the attribute from the list of attributes.
|
||||||
|
void removeParamAttr(unsigned i, ParameterAttributes attr);
|
||||||
|
|
||||||
/// @brief Extract the alignment for a call or parameter (0=unknown).
|
/// @brief Extract the alignment for a call or parameter (0=unknown).
|
||||||
unsigned getParamAlignment(unsigned i) const {
|
unsigned getParamAlignment(unsigned i) const {
|
||||||
return ParamAttrs.getParamAlignment(i);
|
return ParamAttrs.getParamAlignment(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Determine if the function cannot return.
|
|
||||||
bool doesNotReturn() const { return paramHasAttr(0, ParamAttr::NoReturn); }
|
|
||||||
void setDoesNotThrow(bool doesNotThrow = true);
|
|
||||||
|
|
||||||
/// @brief Determine if the function cannot unwind.
|
|
||||||
bool doesNotThrow() const {
|
|
||||||
return paramHasAttr(0, ParamAttr::NoUnwind);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Determine if the function does not access memory.
|
/// @brief Determine if the function does not access memory.
|
||||||
bool doesNotAccessMemory() const {
|
bool doesNotAccessMemory() const {
|
||||||
return paramHasAttr(0, ParamAttr::ReadNone);
|
return paramHasAttr(0, ParamAttr::ReadNone);
|
||||||
}
|
}
|
||||||
|
void setDoesNotAccessMemory(bool doesNotAccessMemory = true) {
|
||||||
|
if (doesNotAccessMemory) addParamAttr(0, ParamAttr::ReadNone);
|
||||||
|
else removeParamAttr(0, ParamAttr::ReadNone);
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Determine if the function does not access or only reads memory.
|
/// @brief Determine if the function does not access or only reads memory.
|
||||||
bool onlyReadsMemory() const {
|
bool onlyReadsMemory() const {
|
||||||
return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
|
return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
|
||||||
}
|
}
|
||||||
|
void setOnlyReadsMemory(bool onlyReadsMemory = true) {
|
||||||
|
if (onlyReadsMemory) addParamAttr(0, ParamAttr::ReadOnly);
|
||||||
|
else removeParamAttr(0, ParamAttr::ReadOnly | ParamAttr::ReadNone);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Determine if the function cannot return.
|
||||||
|
bool doesNotReturn() const {
|
||||||
|
return paramHasAttr(0, ParamAttr::NoReturn);
|
||||||
|
}
|
||||||
|
void setDoesNotReturn(bool doesNotReturn = true) {
|
||||||
|
if (doesNotReturn) addParamAttr(0, ParamAttr::NoReturn);
|
||||||
|
else removeParamAttr(0, ParamAttr::NoReturn);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Determine if the function cannot unwind.
|
||||||
|
bool doesNotThrow() const {
|
||||||
|
return paramHasAttr(0, ParamAttr::NoUnwind);
|
||||||
|
}
|
||||||
|
void setDoesNotThrow(bool doesNotThrow = true) {
|
||||||
|
if (doesNotThrow) addParamAttr(0, ParamAttr::NoUnwind);
|
||||||
|
else removeParamAttr(0, ParamAttr::NoUnwind);
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Determine if the function returns a structure through first
|
/// @brief Determine if the function returns a structure through first
|
||||||
/// pointer argument.
|
/// pointer argument.
|
||||||
|
@ -113,16 +113,13 @@ bool Argument::hasStructRetAttr() const {
|
|||||||
|
|
||||||
/// addAttr - Add a ParamAttr to an argument
|
/// addAttr - Add a ParamAttr to an argument
|
||||||
void Argument::addAttr(ParameterAttributes attr) {
|
void Argument::addAttr(ParameterAttributes attr) {
|
||||||
getParent()->setParamAttrs(
|
getParent()->addParamAttr(getArgNo() + 1, attr);
|
||||||
getParent()->getParamAttrs().addAttr(getArgNo() + 1, attr));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// removeAttr - Remove a ParamAttr from an argument
|
|
||||||
void Argument::removeAttr(ParameterAttributes attr) {
|
|
||||||
getParent()->setParamAttrs(
|
|
||||||
getParent()->getParamAttrs().removeAttr(getArgNo() + 1, attr));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// removeAttr - Remove a ParamAttr from an argument
|
||||||
|
void Argument::removeAttr(ParameterAttributes attr) {
|
||||||
|
getParent()->removeParamAttr(getArgNo() + 1, attr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -231,21 +228,18 @@ void Function::dropAllReferences() {
|
|||||||
BasicBlocks.clear(); // Delete all basic blocks...
|
BasicBlocks.clear(); // Delete all basic blocks...
|
||||||
}
|
}
|
||||||
|
|
||||||
void Function::setDoesNotThrow(bool doesNotThrow) {
|
|
||||||
PAListPtr PAL = getParamAttrs();
|
|
||||||
if (doesNotThrow)
|
|
||||||
PAL = PAL.addAttr(0, ParamAttr::NoUnwind);
|
|
||||||
else
|
|
||||||
PAL = PAL.removeAttr(0, ParamAttr::NoUnwind);
|
|
||||||
setParamAttrs(PAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Function::addParamAttr(unsigned i, ParameterAttributes attr) {
|
void Function::addParamAttr(unsigned i, ParameterAttributes attr) {
|
||||||
PAListPtr PAL = getParamAttrs();
|
PAListPtr PAL = getParamAttrs();
|
||||||
PAL = PAL.addAttr(i, attr);
|
PAL = PAL.addAttr(i, attr);
|
||||||
setParamAttrs(PAL);
|
setParamAttrs(PAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Function::removeParamAttr(unsigned i, ParameterAttributes attr) {
|
||||||
|
PAListPtr PAL = getParamAttrs();
|
||||||
|
PAL = PAL.removeAttr(i, attr);
|
||||||
|
setParamAttrs(PAL);
|
||||||
|
}
|
||||||
|
|
||||||
// Maintain the collector name for each function in an on-the-side table. This
|
// Maintain the collector name for each function in an on-the-side table. This
|
||||||
// saves allocating an additional word in Function for programs which do not use
|
// saves allocating an additional word in Function for programs which do not use
|
||||||
// GC (i.e., most programs) at the cost of increased overhead for clients which
|
// GC (i.e., most programs) at the cost of increased overhead for clients which
|
||||||
|
Loading…
x
Reference in New Issue
Block a user