diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-25 21:00:45 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-25 21:00:45 +0000 |
commit | 0598866c052147c31b808391f58434ce3dbfb838 (patch) | |
tree | 5a33037d52126e5eb635d76afe643d9b854694a1 /lib/Target/CppBackend/CPPBackend.cpp | |
parent | 32b952a2a60d1091e0e17bb6ce788cd1d41e6f8b (diff) |
Large mechanical patch.
s/ParamAttr/Attribute/g
s/PAList/AttrList/g
s/FnAttributeWithIndex/AttributeWithIndex/g
s/FnAttr/Attribute/g
This sets the stage
- to implement function notes as function attributes and
- to distinguish between function attributes and return value attributes.
This requires corresponding changes in llvm-gcc and clang.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index 25ed4e0211..e435f16d1e 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -133,7 +133,7 @@ namespace { std::string getCppName(const Value* val); inline void printCppName(const Value* val); - void printParamAttrs(const PAListPtr &PAL, const std::string &name); + void printAttributes(const AttrListPtr &PAL, const std::string &name); bool printTypeInternal(const Type* Ty); inline void printType(const Type* Ty); void printTypes(const Module* M); @@ -428,46 +428,46 @@ namespace { printEscapedString(getCppName(val)); } - void CppWriter::printParamAttrs(const PAListPtr &PAL, + void CppWriter::printAttributes(const AttrListPtr &PAL, const std::string &name) { - Out << "PAListPtr " << name << "_PAL;"; + Out << "AttrListPtr " << name << "_PAL;"; nl(Out); if (!PAL.isEmpty()) { Out << '{'; in(); nl(Out); - Out << "SmallVector<FnAttributeWithIndex, 4> Attrs;"; nl(Out); - Out << "FnAttributeWithIndex PAWI;"; nl(Out); + Out << "SmallVector<AttributeWithIndex, 4> Attrs;"; nl(Out); + Out << "AttributeWithIndex PAWI;"; nl(Out); for (unsigned i = 0; i < PAL.getNumSlots(); ++i) { uint16_t index = PAL.getSlot(i).Index; Attributes attrs = PAL.getSlot(i).Attrs; Out << "PAWI.Index = " << index << "; PAWI.Attrs = 0 "; - if (attrs & ParamAttr::SExt) - Out << " | ParamAttr::SExt"; - if (attrs & ParamAttr::ZExt) - Out << " | ParamAttr::ZExt"; - if (attrs & ParamAttr::StructRet) - Out << " | ParamAttr::StructRet"; - if (attrs & ParamAttr::InReg) - Out << " | ParamAttr::InReg"; - if (attrs & ParamAttr::NoReturn) - Out << " | ParamAttr::NoReturn"; - if (attrs & ParamAttr::NoUnwind) - Out << " | ParamAttr::NoUnwind"; - if (attrs & ParamAttr::ByVal) - Out << " | ParamAttr::ByVal"; - if (attrs & ParamAttr::NoAlias) - Out << " | ParamAttr::NoAlias"; - if (attrs & ParamAttr::Nest) - Out << " | ParamAttr::Nest"; - if (attrs & ParamAttr::ReadNone) - Out << " | ParamAttr::ReadNone"; - if (attrs & ParamAttr::ReadOnly) - Out << " | ParamAttr::ReadOnly"; + if (attrs & Attribute::SExt) + Out << " | Attribute::SExt"; + if (attrs & Attribute::ZExt) + Out << " | Attribute::ZExt"; + if (attrs & Attribute::StructRet) + Out << " | Attribute::StructRet"; + if (attrs & Attribute::InReg) + Out << " | Attribute::InReg"; + if (attrs & Attribute::NoReturn) + Out << " | Attribute::NoReturn"; + if (attrs & Attribute::NoUnwind) + Out << " | Attribute::NoUnwind"; + if (attrs & Attribute::ByVal) + Out << " | Attribute::ByVal"; + if (attrs & Attribute::NoAlias) + Out << " | Attribute::NoAlias"; + if (attrs & Attribute::Nest) + Out << " | Attribute::Nest"; + if (attrs & Attribute::ReadNone) + Out << " | Attribute::ReadNone"; + if (attrs & Attribute::ReadOnly) + Out << " | Attribute::ReadOnly"; Out << ";"; nl(Out); Out << "Attrs.push_back(PAWI);"; nl(Out); } - Out << name << "_PAL = PAListPtr::get(Attrs.begin(), Attrs.end());"; + Out << name << "_PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());"; nl(Out); out(); nl(Out); Out << '}'; nl(Out); @@ -1127,8 +1127,8 @@ namespace { nl(Out) << iName << "->setCallingConv("; printCallingConv(inv->getCallingConv()); Out << ");"; - printParamAttrs(inv->getParamAttrs(), iName); - Out << iName << "->setParamAttrs(" << iName << "_PAL);"; + printAttributes(inv->getAttributes(), iName); + Out << iName << "->setAttributes(" << iName << "_PAL);"; nl(Out); break; } @@ -1390,8 +1390,8 @@ namespace { nl(Out) << iName << "->setTailCall(" << (call->isTailCall() ? "true":"false"); Out << ");"; - printParamAttrs(call->getParamAttrs(), iName); - Out << iName << "->setParamAttrs(" << iName << "_PAL);"; + printAttributes(call->getAttributes(), iName); + Out << iName << "->setAttributes(" << iName << "_PAL);"; nl(Out); break; } @@ -1614,9 +1614,9 @@ namespace { Out << "}"; nl(Out); } - printParamAttrs(F->getParamAttrs(), getCppName(F)); + printAttributes(F->getAttributes(), getCppName(F)); printCppName(F); - Out << "->setParamAttrs(" << getCppName(F) << "_PAL);"; + Out << "->setAttributes(" << getCppName(F) << "_PAL);"; nl(Out); } |