| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- // Copyright (c) 2008 Roberto Raggi <[email protected]>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #include "Names.h"
- #include "Matcher.h"
- #include "NameVisitor.h"
- #include "Literals.h"
- #include <algorithm>
- #include <cstring>
- using namespace CPlusPlus;
- QualifiedNameId::~QualifiedNameId()
- { }
- void QualifiedNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool QualifiedNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const QualifiedNameId *name = otherName->asQualifiedNameId())
- return matcher->match(this, name);
- return false;
- }
- const Identifier *QualifiedNameId::identifier() const
- {
- if (const Name *u = name())
- return u->identifier();
- return 0;
- }
- const Name *QualifiedNameId::base() const
- { return _base; }
- const Name *QualifiedNameId::name() const
- { return _name; }
- DestructorNameId::DestructorNameId(const Name *name)
- : _name(name)
- { }
- DestructorNameId::~DestructorNameId()
- { }
- void DestructorNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool DestructorNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const DestructorNameId *name = otherName->asDestructorNameId())
- return matcher->match(this, name);
- return false;
- }
- const Name *DestructorNameId::name() const
- { return _name; }
- const Identifier *DestructorNameId::identifier() const
- { return _name->identifier(); }
- TemplateNameId::~TemplateNameId()
- { }
- void TemplateNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool TemplateNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const TemplateNameId *other = otherName->asTemplateNameId())
- return matcher->match(this, other);
- return false;
- }
- const Identifier *TemplateNameId::identifier() const
- { return _identifier; }
- unsigned TemplateNameId::templateArgumentCount() const
- { return unsigned(_templateArguments.size()); }
- const FullySpecifiedType &TemplateNameId::templateArgumentAt(unsigned index) const
- { return _templateArguments[index]; }
- bool TemplateNameId::Compare::operator()(const TemplateNameId *name,
- const TemplateNameId *other) const
- {
- if (name == 0)
- return other != 0;
- if (other == 0)
- return false;
- if (name == other)
- return false;
- const Identifier *id = name->identifier();
- const Identifier *otherId = other->identifier();
- if (id == 0)
- return otherId != 0;
- if (otherId == 0)
- return false;
- const int c = std::strcmp(id->chars(), otherId->chars());
- if (c == 0) {
- // we have to differentiate TemplateNameId with respect to specialization or instantiation
- if (name->isSpecialization() == other->isSpecialization()) {
- return std::lexicographical_compare(name->firstTemplateArgument(),
- name->lastTemplateArgument(),
- other->firstTemplateArgument(),
- other->lastTemplateArgument());
- } else {
- return name->isSpecialization();
- }
- }
- return c < 0;
- }
- OperatorNameId::OperatorNameId(Kind kind)
- : _kind(kind)
- { }
- OperatorNameId::~OperatorNameId()
- { }
- void OperatorNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool OperatorNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const OperatorNameId *name = otherName->asOperatorNameId())
- return matcher->match(this, name);
- return false;
- }
- OperatorNameId::Kind OperatorNameId::kind() const
- { return _kind; }
- const Identifier *OperatorNameId::identifier() const
- { return 0; }
- ConversionNameId::ConversionNameId(const FullySpecifiedType &type)
- : _type(type)
- { }
- ConversionNameId::~ConversionNameId()
- { }
- void ConversionNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool ConversionNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const ConversionNameId *name = otherName->asConversionNameId())
- return matcher->match(this, name);
- return false;
- }
- FullySpecifiedType ConversionNameId::type() const
- { return _type; }
- const Identifier *ConversionNameId::identifier() const
- { return 0; }
- SelectorNameId::~SelectorNameId()
- { }
- void SelectorNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool SelectorNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const SelectorNameId *name = otherName->asSelectorNameId())
- return matcher->match(this, name);
- return false;
- }
- const Identifier *SelectorNameId::identifier() const
- {
- if (_names.empty())
- return 0;
- return nameAt(0)->identifier();
- }
- unsigned SelectorNameId::nameCount() const
- { return unsigned(_names.size()); }
- const Name *SelectorNameId::nameAt(unsigned index) const
- { return _names[index]; }
- bool SelectorNameId::hasArguments() const
- { return _hasArguments; }
- AnonymousNameId::AnonymousNameId(unsigned classTokenIndex)
- : _classTokenIndex(classTokenIndex)
- { }
- AnonymousNameId::~AnonymousNameId()
- { }
- unsigned AnonymousNameId::classTokenIndex() const
- {
- return _classTokenIndex;
- }
- void AnonymousNameId::accept0(NameVisitor *visitor) const
- { visitor->visit(this); }
- bool AnonymousNameId::match0(const Name *otherName, Matcher *matcher) const
- {
- if (const AnonymousNameId *id = otherName->asAnonymousNameId())
- return matcher->match(this, id);
- return false;
- }
- const Identifier *AnonymousNameId::identifier() const
- { return 0; }
|