aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-03 00:29:27 +0000
committerChris Lattner <sabre@nondot.org>2008-01-03 00:29:27 +0000
commit3de70632b2534d164c30239d5c437765b97b723f (patch)
treed09309dd1c4547c4c91998181fc911b3cee8c2cc
parent4382d1d8b8c0c5d936b8d56f6c5738dced7e0bac (diff)
downloadexternal_llvm-3de70632b2534d164c30239d5c437765b97b723f.zip
external_llvm-3de70632b2534d164c30239d5c437765b97b723f.tar.gz
external_llvm-3de70632b2534d164c30239d5c437765b97b723f.tar.bz2
Don't create a new ParamAttrsList (which copies the vector) just to
get a profile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45524 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ParameterAttributes.h5
-rw-r--r--lib/VMCore/ParameterAttributes.cpp12
2 files changed, 10 insertions, 7 deletions
diff --git a/include/llvm/ParameterAttributes.h b/include/llvm/ParameterAttributes.h
index 05c3ebe..2b557bd 100644
--- a/include/llvm/ParameterAttributes.h
+++ b/include/llvm/ParameterAttributes.h
@@ -266,7 +266,10 @@ class ParamAttrsList : public FoldingSetNode {
/// @name Implementation Details
/// @{
public:
- void Profile(FoldingSetNodeID &ID) const;
+ void Profile(FoldingSetNodeID &ID) const {
+ Profile(ID, attrs);
+ }
+ static void Profile(FoldingSetNodeID &ID, const ParamAttrsVector &Attrs);
void dump() const;
/// @}
diff --git a/lib/VMCore/ParameterAttributes.cpp b/lib/VMCore/ParameterAttributes.cpp
index aaf80cd..b6c2992 100644
--- a/lib/VMCore/ParameterAttributes.cpp
+++ b/lib/VMCore/ParameterAttributes.cpp
@@ -106,9 +106,10 @@ ParamAttrsList::areCompatible(const ParamAttrsList *A, const ParamAttrsList *B){
return true;
}
-void ParamAttrsList::Profile(FoldingSetNodeID &ID) const {
- for (unsigned i = 0; i < attrs.size(); ++i)
- ID.AddInteger(unsigned(attrs[i].attrs) << 16 | unsigned(attrs[i].index));
+void ParamAttrsList::Profile(FoldingSetNodeID &ID,
+ const ParamAttrsVector &Attrs) {
+ for (unsigned i = 0; i < Attrs.size(); ++i)
+ ID.AddInteger(unsigned(Attrs[i].attrs) << 16 | unsigned(Attrs[i].index));
}
const ParamAttrsList *
@@ -127,11 +128,10 @@ ParamAttrsList::get(const ParamAttrsVector &attrVec) {
#endif
// Otherwise, build a key to look up the existing attributes.
- ParamAttrsList key(attrVec);
FoldingSetNodeID ID;
- key.Profile(ID);
+ ParamAttrsList::Profile(ID, attrVec);
void *InsertPos;
- ParamAttrsList* PAL = ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
+ ParamAttrsList *PAL = ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
// If we didn't find any existing attributes of the same shape then
// create a new one and insert it.