1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
|
/* This file is part of KDevelop
Copyright 2007 David Nolden <david.nolden.kdevelop@art-master.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "templatedeclaration.h"
#include <qatomic.h>
#include <kglobal.h>
#include <language/duchain/declaration.h>
#include <language/duchain/declarationdata.h>
#include <language/duchain/forwarddeclaration.h>
#include <language/duchain/aliasdeclaration.h>
#include <language/duchain/functiondeclaration.h>
#include <language/duchain/functiondefinition.h>
#include <language/duchain/repositories/itemrepository.h>
#include <language/duchain/classfunctiondeclaration.h>
#include <language/duchain/appendedlist.h>
#include "templateparameterdeclaration.h"
#include "qtfunctiondeclaration.h"
#include "cppducontext.h"
#include "expressionparser.h"
#include <language/duchain/classdeclaration.h>
#include <language/duchain/duchainregister.h>
#include <util/pushvalue.h>
#include <name_compiler.h>
#include <parsesession.h>
#include <rpp/chartools.h>
#include <rpp/pp-location.h>
#include <control.h>
#include <parser.h>
#include <typeinfo>
using namespace KDevelop;
using namespace Cpp;
#define REGISTER_TEMPLATE_DECLARATION(Declaration) typedef SpecialTemplateDeclaration<Declaration> TheTemplate ## Declaration; \
REGISTER_DUCHAIN_ITEM_WITH_DATA(TheTemplate ## Declaration, SpecialTemplateDeclarationData<Declaration::Data>);
REGISTER_TEMPLATE_DECLARATION(Declaration)
REGISTER_TEMPLATE_DECLARATION(ClassDeclaration)
REGISTER_TEMPLATE_DECLARATION(TemplateParameterDeclaration)
REGISTER_TEMPLATE_DECLARATION(ClassFunctionDeclaration)
REGISTER_TEMPLATE_DECLARATION(ClassMemberDeclaration)
REGISTER_TEMPLATE_DECLARATION(FunctionDeclaration)
REGISTER_TEMPLATE_DECLARATION(QtFunctionDeclaration)
REGISTER_TEMPLATE_DECLARATION(FunctionDefinition)
REGISTER_TEMPLATE_DECLARATION(AliasDeclaration)
REGISTER_TEMPLATE_DECLARATION(ForwardDeclaration)
QMutex TemplateDeclaration::instantiationsMutex(QMutex::Recursive);
typedef CppDUContext<KDevelop::DUContext> StandardCppDUContext;
namespace Cpp {
DEFINE_LIST_MEMBER_HASH(SpecialTemplateDeclarationData, m_specializations, IndexedDeclaration)
DEFINE_LIST_MEMBER_HASH(SpecialTemplateDeclarationData, m_specializedWith, IndexedType)
}
struct AtomicIncrementer {
typedef QBasicAtomicInt Int;
AtomicIncrementer( Int *cnt ) : c(cnt) {
c->ref();
}
~AtomicIncrementer() {
c->deref();
}
Int* c;
};
AbstractType::Ptr applyPointerReference( AbstractType::Ptr ptr, const KDevelop::IndexedTypeIdentifier& id ) {
AbstractType::Ptr ret = ptr;
if(ret && static_cast<bool>(ret->modifiers() & AbstractType::ConstModifier) != id.isConstant())
ret->setModifiers(id.isConstant() ? AbstractType::ConstModifier : AbstractType::NoModifiers);
for( int a = 0; a < id.pointerDepth(); ++a ) {
uint modifiers = AbstractType::NoModifiers;
if( id.isConstPointer( a ) )
modifiers = AbstractType::ConstModifier;
PointerType::Ptr newRet( new PointerType() );
newRet->setModifiers(modifiers);
newRet->setBaseType( ret );
ret = newRet.cast<AbstractType>();
}
if(id.isReference() ) {
uint modifiers = AbstractType::NoModifiers;
if( id.isConstant() )
modifiers = AbstractType::ConstModifier;
ReferenceType::Ptr newRet( new ReferenceType() );
newRet->setModifiers(modifiers);
newRet->setBaseType( ret );
newRet->setIsRValue(id.isRValue());
ret = newRet.cast<AbstractType>();
}
return ret;
}
///Finds out whether any DelayedType's are involved in a given type(It searches return-values, argument-types, base-classes, etc.)
struct DelayedTypeSearcher : public KDevelop::SimpleTypeVisitor {
bool found;
DelayedTypeSearcher() : found(false) {
}
virtual bool visit ( const AbstractType* type ) {
if( found ) return false;
if( dynamic_cast<const DelayedType*>(type) )
found = true;
return !found;
}
virtual bool visit (const StructureType *) {
///We do not want to visit member-types, so return false here
return false;
}
};
namespace Cpp {
TypePtr<DelayedType> containsDelayedType(AbstractType::Ptr type)
{
PointerType::Ptr pType = type.cast<PointerType>();
ReferenceType::Ptr rType = type.cast<ReferenceType>();
DelayedType::Ptr delayedType = type.cast<DelayedType>();
TypeAliasType::Ptr aType = type.cast<TypeAliasType>();
if( pType )
return containsDelayedType(pType->baseType());
if( rType )
return containsDelayedType(rType->baseType());
if( aType )
return containsDelayedType(aType->type());
return delayedType;
}
}
///Replaces any DelayedType's in interesting positions with their resolved versions, if they can be resolved.
struct DelayedTypeResolver : public KDevelop::TypeExchanger {
const KDevelop::DUContext* searchContext;
const KDevelop::TopDUContext* source;
static AtomicIncrementer::Int depth_counter;
KDevelop::DUContext::SearchFlags searchFlags;
DelayedTypeResolver(const KDevelop::DUContext* _searchContext, const KDevelop::TopDUContext* _source, KDevelop::DUContext::SearchFlags _searchFlags = KDevelop::DUContext::NoUndefinedTemplateParams) : searchContext(_searchContext), source(_source), searchFlags(_searchFlags) {
}
virtual AbstractType::Ptr exchange( const AbstractType::Ptr& type )
{
AtomicIncrementer inc(&depth_counter);
if( depth_counter > 30 ) {
kDebug(9007) << "Too much depth in DelayedTypeResolver::exchange, while exchanging" << (type ? type->toString() : QString("(null)"));
return type;
}
DelayedType::Ptr delayedType = type.cast<DelayedType>();
if( delayedType && delayedType->kind() == DelayedType::Delayed ) {
QualifiedIdentifier qid = delayedType->identifier().identifier().identifier();
if( !qid.isExpression() ) {
DUContext::SearchItem::PtrList identifiers;
identifiers << DUContext::SearchItem::Ptr( new DUContext::SearchItem(qid) );
DUContext::DeclarationList decls;
if( !searchContext->findDeclarationsInternal( identifiers, searchContext->range().end, AbstractType::Ptr(), decls, source, searchFlags, 0 ) )
return type;
if( !decls.isEmpty() ) {
return applyPointerReference(decls[0]->abstractType(), delayedType->identifier());
}
}
///Resolution as type has failed, or is not appropriate.
///Resolve delayed expression, for example static numeric expressions
ExpressionParser p;
ExpressionEvaluationResult res;
if( qid.isExpression() )
res = p.evaluateExpression( delayedType->identifier().toString().toUtf8(), DUContextPointer(const_cast<DUContext*>(searchContext)), source );
else
res = p.evaluateType( delayedType->identifier().toString().toUtf8(), DUContextPointer(const_cast<DUContext*>(searchContext)), source );
return res.type.abstractType();
}else{
if( containsDelayedType(type) )
{
//Copy the type to keep the correct reference/pointer structure
AbstractType::Ptr typeCopy( type->clone() );
PointerType::Ptr pType = typeCopy.cast<PointerType>();
ReferenceType::Ptr rType = typeCopy.cast<ReferenceType>();
TypeAliasType::Ptr aType = typeCopy.cast<TypeAliasType>();
if( pType ) //Replace the base
pType->exchangeTypes(this);
if( rType ) //Replace the base
rType->exchangeTypes(this);
if( aType )
aType->exchangeTypes(this);
return typeCopy;
}
}
return type;
}
virtual bool exchangeMembers() const {
return false;
}
private:
AbstractType::Ptr keepAlive;
};
AtomicIncrementer::Int DelayedTypeResolver::depth_counter = Q_BASIC_ATOMIC_INITIALIZER(0);
AtomicIncrementer::Int alias_depth_counter = Q_BASIC_ATOMIC_INITIALIZER(0);
// bool operator==( const ExpressionEvaluationResult& left, const ExpressionEvaluationResult& right ) {
// return left.type == right.type && left.isInstance == right.isInstance;
// }
namespace Cpp {
// bool operator==( const QList<ExpressionEvaluationResult>& left, const QList<ExpressionEvaluationResult>& right ) {
// return true;
// }
TemplateDeclaration::TemplateDeclaration(const TemplateDeclaration& /*rhs*/)
: m_instantiatedFrom(0)
, m_instantiationDepth(0)
{
}
TemplateDeclaration::TemplateDeclaration()
: m_instantiatedFrom(0)
, m_instantiationDepth(0)
{
}
Declaration* TemplateDeclaration::specialize(IndexedInstantiationInformation specialization, const TopDUContext* topContext, int upDistance) {
if(!specialization.isValid())
return dynamic_cast<Declaration*>(this);
else {
InstantiationInformation information = IndexedInstantiationInformation( specialization ).information();
//Add empty elements until the specified depth
for(int a = 0; a < upDistance; ++a) {
InstantiationInformation nextInformation;
nextInformation.previousInstantiationInformation = information.indexed();
information = nextInformation;
}
return instantiate(information, topContext);
}
}
IndexedInstantiationInformation TemplateDeclaration::specialization() const {
if(m_instantiatedWith.isValid())
return m_instantiatedWith;
else
return IndexedInstantiationInformation();
}
// DeclarationId TemplateDeclaration::id() const {
// const Declaration* thisDecl = dynamic_cast<const Declaration*>(this);
// if(m_instantiatedFrom) {
// DeclarationId ret = m_instantiatedFrom->id();
// ret.setSpecialization(m_instantiatedWith.index());
// return ret;
// } else{
// thisDecl->topContext()->ownIndex();
// return thisDecl->Declaration::id();
// }
// }
DUContext* TemplateDeclaration::templateContext(const TopDUContext* source) const {
return getTemplateContext(dynamic_cast<Declaration*>(const_cast<TemplateDeclaration*>(this)), source);
}
TemplateDeclaration::~TemplateDeclaration()
{
InstantiationsHash instantiations;
{
///Unregister at the declaration this one is instantiated from
if( m_instantiatedFrom ) {
InstantiationsHash::iterator it = m_instantiatedFrom->m_instantiations.find(m_instantiatedWith);
if( it != m_instantiatedFrom->m_instantiations.end() ) {
Q_ASSERT(*it == this);
m_instantiatedFrom->m_instantiations.erase(it);
}
m_instantiatedFrom = 0;
}
}
deleteAllInstantiations();
}
TemplateDeclaration* TemplateDeclaration::instantiatedFrom() const {
return m_instantiatedFrom;
}
void TemplateDeclaration::setSpecializedFrom(TemplateDeclaration* other) {
if(other && other->instantiatedFrom()) {
setSpecializedFrom(other->instantiatedFrom());
return;
}
if(other && other->specializedFrom().data()) {
setSpecializedFrom(dynamic_cast<TemplateDeclaration*>(other->specializedFrom().data()));
return;
}
IndexedDeclaration indexedSelf(dynamic_cast<Declaration*>(this));
IndexedDeclaration indexedOther(dynamic_cast<Declaration*>(other));
Q_ASSERT(indexedSelf.data());
if( TemplateDeclaration* tplDec = dynamic_cast<TemplateDeclaration*>(specializedFrom().data()) )
tplDec->removeSpecializationInternal(indexedSelf);
setSpecializedFromInternal(indexedOther);
if( TemplateDeclaration* otherTemplate = dynamic_cast<TemplateDeclaration*>(indexedOther.data()) ) {
otherTemplate->addSpecializationInternal(indexedSelf);
otherTemplate->deleteAllInstantiations();
}
}
void TemplateDeclaration::reserveInstantiation(const IndexedInstantiationInformation& info) {
QMutexLocker l(&instantiationsMutex);
Q_ASSERT(m_instantiations.find(info) == m_instantiations.end());
m_instantiations.insert(info, 0);
}
///Reads the template-parameters from the template-context of the declaration, and puts them into the identifier.
///Must be called AFTER the declaration was instantiated.
void updateIdentifierTemplateParameters( Identifier& identifier, Declaration* basicDeclaration, const TopDUContext* top )
{
identifier.clearTemplateIdentifiers();
TemplateDeclaration* tempDecl = dynamic_cast<TemplateDeclaration*>(basicDeclaration);
if(tempDecl) {
InstantiationInformation specializedWith(tempDecl->specializedWith().information());
if(specializedWith.templateParametersSize()) {
//Use the information from the specialization-information to build the template-identifiers
FOREACH_FUNCTION(const IndexedType& indexedType, specializedWith.templateParameters) {
AbstractType::Ptr type = indexedType.abstractType();
if(type)
identifier.appendTemplateIdentifier( IndexedTypeIdentifier(type->toString()) );
else
identifier.appendTemplateIdentifier( IndexedTypeIdentifier("(missing template type)") );
}
return;
}
}
DUContext* templateCtx = getTemplateContext(basicDeclaration, top);
if( !templateCtx )
return;
for( int a = 0; a < templateCtx->localDeclarations().count(); a++ ) {
AbstractType::Ptr type = templateCtx->localDeclarations()[a]->abstractType();
if(type)
identifier.appendTemplateIdentifier( IndexedTypeIdentifier(type->toString()) );
else
identifier.appendTemplateIdentifier( IndexedTypeIdentifier("(missing template type)") );
}
}
void TemplateDeclaration::setInstantiatedFrom(TemplateDeclaration* from, const InstantiationInformation& instantiatedWith)
{
Q_ASSERT(from != this);
//Change the identifier so it contains the template-parameters
QMutexLocker l(&instantiationsMutex);
if( m_instantiatedFrom ) {
InstantiationsHash::iterator it = m_instantiatedFrom->m_instantiations.find(m_instantiatedWith);
if( it != m_instantiatedFrom->m_instantiations.end() && *it == this )
m_instantiatedFrom->m_instantiations.erase(it);
m_instantiatedFrom = 0;
}
m_instantiatedFrom = from;
m_instantiatedWith = instantiatedWith.indexed();
//Only one instantiation is allowed
if(from) {
//Either it must be reserved, or not exist yet
Q_ASSERT(from->m_instantiations.find(instantiatedWith.indexed()) == from->m_instantiations.end() || (*from->m_instantiations.find(instantiatedWith.indexed())) == 0);
from->m_instantiations.insert(m_instantiatedWith, this);
Q_ASSERT(from->m_instantiations.contains(m_instantiatedWith));
}
}
bool TemplateDeclaration::isInstantiatedFrom(const TemplateDeclaration* other) const {
QMutexLocker l(&instantiationsMutex);
InstantiationsHash::const_iterator it = other->m_instantiations.find(m_instantiatedWith);
if( it != other->m_instantiations.end() && (*it) == this )
return true;
else
return false;
}
void TemplateDeclaration::setTemplateParameterContext(KDevelop::DUContext* context) {
dynamicTemplateData()->m_parameterContext = context;
}
KDevelop::DUContext* TemplateDeclaration::templateParameterContext() const {
return const_cast<KDevelop::DUContext*>(templateData()->m_parameterContext.data()); ///@todo make data() const; return non-const pointer in duchain-pointer
}
bool isTemplateDeclaration(const KDevelop::Declaration* decl) {
return (bool)dynamic_cast<const TemplateDeclaration*>(decl);
}
///Applies the default-parameters from basicDeclaration. This must be called AFTER basicDeclaration was instantiated, so the
///template-parameters are already replaced with their instantiated types
// InstantiationInformation applyDefaultParameters( const InstantiationInformation& information, Declaration* basicDeclaration )
// {
// DUContext* templateCtx = getTemplateContext(basicDeclaration);
// if( !templateCtx )
// return information;
//
// if( information.templateParametersSize() >= templateCtx->localDeclarations().count() )
// return information;
//
// InstantiationInformation ret(information);
//
// for( int a = information.templateParameters.count(); a < templateCtx->localDeclarations().count(); a++ ) {
// TemplateParameterDeclaration* decl = dynamic_cast<TemplateParameterDeclaration*>(templateCtx->localDeclarations()[a]);
// if( decl ) {
// if( !decl->defaultParameter().isEmpty() ) {
// ExpressionEvaluationResult res;
// res.type = decl->abstractType();
//
// ret.templateParametersList.append(res.indexed());
// }else{
// //kDebug(9007) << "missing needed default template-parameter";
// }
// } else {
// kDebug(9007) << "Warning: non template-parameter in template context";
// }
// }
//
// return ret;
// }
///@todo prevent endless recursion when resolving base-classes!(Parent is not yet in du-chain, so a base-class that references it will cause endless recursion)
CppDUContext<KDevelop::DUContext>* instantiateDeclarationAndContext( KDevelop::DUContext* parentContext, const TopDUContext* source, KDevelop::DUContext* context, const InstantiationInformation& templateArguments, Declaration* instantiatedDeclaration, Declaration* instantiatedFrom, bool doNotRegister )
{
Q_ASSERT(parentContext);
TemplateDeclaration* instantiatedFromTemplate = dynamic_cast<TemplateDeclaration*>(instantiatedFrom);
StandardCppDUContext* contextCopy = 0;
if( context ) {
///Specialize involved contexts
Q_ASSERT(context->parentContext()); //Top-context is not allowed
contextCopy = new StandardCppDUContext(context->range(), parentContext, true); //We do not need to care about TopDUContext here, because a top-context can not be instantiated
contextCopy->setType(context->type());
contextCopy->setLocalScopeIdentifier(context->localScopeIdentifier());
if( instantiatedDeclaration )
instantiatedDeclaration->setInternalContext(contextCopy);
///Now the created context is already partially functional and can be used for searching(not the instantiated template-params yet though)
if( context->type() == KDevelop::DUContext::Template ) {
///We're in the template-parameter context, exchange the template-parameters with their values.
///Specialize the local template-declarations
uint currentArgument = 0;
InstantiationInformation parameterInstantiationInformation;
parameterInstantiationInformation.previousInstantiationInformation = templateArguments.indexed();
foreach(Declaration* decl, context->localDeclarations())
{
#ifdef QT_DEBUG
TemplateDeclaration* tempDecl = dynamic_cast<TemplateDeclaration*>(decl);
Q_ASSERT(tempDecl);
// tempDecl->instantiate(parameterInstantiationInformation, source, true);
#endif
TemplateParameterDeclaration* templateDecl = dynamic_cast<TemplateParameterDeclaration*>(decl);
Q_ASSERT(templateDecl); //Only template-parameter declarations are allowed in template-contexts
TemplateParameterDeclaration* declCopy = dynamic_cast<TemplateParameterDeclaration*>(decl->clone());
Q_ASSERT(declCopy);
TemplateDeclaration* tempCopyDecl = dynamic_cast<TemplateDeclaration*>(declCopy);
Q_ASSERT(tempCopyDecl);
if( currentArgument < templateArguments.templateParametersSize() && templateArguments.templateParameters()[currentArgument].abstractType() )
{
declCopy->setAbstractType( templateArguments.templateParameters()[currentArgument].abstractType() );
} else {
//Apply default-parameters, although these should have been applied before
//Use the already available delayed-type resolution to resolve the value/type
if( !templateDecl->defaultParameter().isEmpty() ) {
DelayedType::Ptr delayed( new DelayedType() );
delayed->setIdentifier( IndexedTypeIdentifier(templateDecl->defaultParameter()) );
declCopy->setAbstractType( resolveDelayedTypes( delayed.cast<AbstractType>(), contextCopy, source) );
}else{
//Parameter missing
}
}
///We mark the declaration as a specialization, so no index is created for it within the top-context(that needs a write-lock)
tempCopyDecl->setInstantiatedFrom(0, parameterInstantiationInformation);
///This inserts the copied declaration into the copied context
declCopy->setContext(contextCopy);
++currentArgument;
}
}
///Find the template-parameter context, and recurse into it, so we can replace the template parameters
foreach( const DUContext::Import &importedContext, context->importedParentContexts() )
{
CppDUContext<DUContext>* import = dynamic_cast<CppDUContext<DUContext>*>(importedContext.context(source));
if( !import)
continue;
///For functions, the Template-context is one level deeper(it is imported by the function-context) so also copy the function-context
if( import->type() == KDevelop::DUContext::Template || import->type() == KDevelop::DUContext::Function )
{
DUContext* ctx = import->instantiate(templateArguments, source);
contextCopy->addImportedParentContext( ctx, CursorInRevision(), true );
if( instantiatedDeclaration && import->type() == KDevelop::DUContext::Template ) {
TemplateDeclaration* tempDecl = dynamic_cast<TemplateDeclaration*>(instantiatedDeclaration);
if( instantiatedDeclaration )
tempDecl->setTemplateParameterContext( ctx );
else
kDebug(9007) << "instantiated declaration is not a template declaration";
}
}
else
{
//Import all other imported contexts
contextCopy->addImportedParentContext( import, CursorInRevision::invalid(), true );
}
}
if( instantiatedDeclaration ) {
///We do not need to respect forward-declarations here, because they are not allowed as base-classes.
ClassDeclaration* klass = dynamic_cast<ClassDeclaration*>( instantiatedDeclaration );
if( klass ) { //It could also be a function
///Resolve template-dependent base-classes(They can not be found in the imports-list, because their type is DelayedType and those have no context)
uint num = 0;
FOREACH_FUNCTION( const BaseClassInstance& base, klass->baseClasses ) {
DelayedType::Ptr delayed = base.baseClass.type<DelayedType>();
if( delayed ) {
///Resolve the delayed type, and import the context
DelayedTypeResolver res(contextCopy, source);
AbstractType::Ptr newType( res.exchange(delayed.cast<AbstractType>()) );
if( CppClassType::Ptr baseClass = newType.cast<CppClassType>() )
{
if( baseClass->declaration(source) && baseClass->declaration(source)->internalContext() )
{
contextCopy->addImportedParentContext( baseClass->declaration(source)->internalContext(), CursorInRevision::invalid(), true );
}
BaseClassInstance newInstance(base);
newInstance.baseClass = newType->indexed();
klass->replaceBaseClass( num, newInstance );
} else {
// kDebug(9007) << "Resolved bad base-class";
}
}
++num;
}
}
}
} else {
///Note: this is possible, for example for template function-declarations(They do not have an internal context, because they have no compound statement), for variables, etc..
///Directly take their assigned template-parameter-context and specialize it. We need it at least for overload-resolution.
TemplateDeclaration* fromTemplateDecl = dynamic_cast<TemplateDeclaration*>(instantiatedFrom);
TemplateDeclaration* toTemplateDecl = dynamic_cast<TemplateDeclaration*>(instantiatedDeclaration);
if( toTemplateDecl && fromTemplateDecl && fromTemplateDecl->templateParameterContext() ) {
CppDUContext<DUContext>* templCtx = dynamic_cast<CppDUContext<DUContext>*>(fromTemplateDecl->templateParameterContext());
DUContext* ctx = templCtx->instantiate(templateArguments, source);
toTemplateDecl->setTemplateParameterContext( ctx );
}
}
if( contextCopy && !doNotRegister )
contextCopy->setInstantiatedFrom(dynamic_cast<CppDUContext<DUContext>*>(context), templateArguments);
///Since now the context is accessible through the du-chain, so it must not be changed any more.
if( instantiatedDeclaration && instantiatedDeclaration->abstractType() ) {
///an AliasDeclaration represents a C++ "using bla::bla;" declaration.
if(AliasDeclaration* alias = dynamic_cast<AliasDeclaration*>(instantiatedDeclaration)) {
AtomicIncrementer safety(&alias_depth_counter);
if(alias_depth_counter > 30) {
kWarning() << "depth-limit reached while resolving alias-declaration" << alias->identifier().toString() << "within" << parentContext->scopeIdentifier(true).toString();
}else {
///For alias declaration, we resolve the declaration that is aliased instead of a type.
///For this reason, template alias-declarations have a DelayedType assigned
DelayedType::Ptr delayed = alias->type<DelayedType>();
if(delayed) {
QList<Declaration*> declarations = parentContext->findDeclarations(delayed->identifier().identifier().identifier());
if(!declarations.isEmpty())
alias->setAliasedDeclaration(declarations.first());
}
}
}else{
TemplateDeclaration* instantiatedTemplate = dynamic_cast<TemplateDeclaration*>(instantiatedDeclaration);
InstantiationInformation globalTemplateArguments = templateArguments;
if(instantiatedTemplate) {
//Update the "specializedWith" information
InstantiationInformation oldSpecializedWith = instantiatedTemplate->specializedWith().information();
if(oldSpecializedWith.templateParametersSize()) {
//Replace the delayed types in the specialization-information with their real types
InstantiationInformation newSpecializedWith(oldSpecializedWith);
newSpecializedWith.templateParametersList().clear();
FOREACH_FUNCTION(const IndexedType& type, oldSpecializedWith.templateParameters)
newSpecializedWith.addTemplateParameter(resolveDelayedTypes(type.abstractType(), instantiatedDeclaration->internalContext() ? instantiatedDeclaration->internalContext() : parentContext, source ));
instantiatedTemplate->setSpecializedWith(newSpecializedWith.indexed());
globalTemplateArguments = newSpecializedWith;
}
}
///Resolve all involved delayed types
AbstractType::Ptr t(instantiatedDeclaration->abstractType());
IdentifiedType* idType = dynamic_cast<IdentifiedType*>(t.unsafeData());
///Use the internal context if it exists, so undefined template-arguments can be found and the DelayedType can be further delayed then.
AbstractType::Ptr changedType = resolveDelayedTypes( instantiatedDeclaration->abstractType(), instantiatedDeclaration->internalContext() ? instantiatedDeclaration->internalContext() : parentContext, source );
if( idType && idType->declarationId() == instantiatedFrom->id() ) {
if( changedType == instantiatedDeclaration->abstractType() )
changedType = instantiatedDeclaration->abstractType()->clone();
IdentifiedType* changedIdType = dynamic_cast<IdentifiedType*>(changedType.unsafeData());
if( changedIdType ) {
DeclarationId base = instantiatedFrom->id();
if(instantiatedFromTemplate && instantiatedFromTemplate->specializedFrom().data())
base = instantiatedFromTemplate->specializedFrom().data()->id();
base.setSpecialization(globalTemplateArguments.indexed());
changedIdType->setDeclarationId(base);
}
}
instantiatedDeclaration->setAbstractType( changedType );
}
// }
}
if( instantiatedDeclaration ) {
TemplateDeclaration* instantiatedTemplate = dynamic_cast<TemplateDeclaration*>(instantiatedDeclaration);
if(instantiatedTemplate && templateArguments.templateParametersSize()) { //Since this is also called for normal members, this does not have to be the case.
///Change the identifier to reflect the used template-arguments
KDevelop::Identifier id = instantiatedDeclaration->identifier();
updateIdentifierTemplateParameters( id, instantiatedDeclaration, source );
instantiatedDeclaration->setIdentifier(id);
}
///Last step, because after this, the declaration will be potentially findable
if(instantiatedTemplate && instantiatedFromTemplate)
instantiatedTemplate->setInstantiatedFrom(instantiatedFromTemplate, templateArguments);
///@todo check for possible multi-threading issues when inserting visible declarations into anonymous contexts
instantiatedDeclaration->setContext(parentContext, templateArguments.templateParametersSize() || parentContext->inSymbolTable());
}
return contextCopy;
}
DeclarationId TemplateDeclaration::id(bool forceDirect) const
{
if(m_instantiatedFrom) {
DeclarationId ret = m_instantiatedFrom->id(forceDirect);
ret.setSpecialization(specialization());
return ret;
}else{
return dynamic_cast<const Declaration*>(this)->Declaration::id(forceDirect);
}
}
void TemplateDeclaration::deleteAllInstantiations()
{
if(m_instantiations.isEmpty() && m_defaultParameterInstantiations.isEmpty())
return;
ENSURE_CHAIN_WRITE_LOCKED
InstantiationsHash instantiations;
{
QMutexLocker l(&instantiationsMutex);
instantiations = m_instantiations;
m_defaultParameterInstantiations.clear();
m_instantiations.clear();
}
foreach( TemplateDeclaration* decl, instantiations ) {
Q_ASSERT(decl);
decl->m_instantiatedFrom = 0;
Declaration* realDecl = dynamic_cast<Declaration*>(decl);
//Only delete real insantiations, not specializations
if(realDecl->isAnonymous()) {
Declaration* realDecl = dynamic_cast<Declaration*>(decl);
delete realDecl; //It may as well be just a specialization, then we should keep it
}
}
}
// #define ifDebugMatching(x) x
#define ifDebugMatching(x)
QPair<unsigned int, TemplateDeclaration*> TemplateDeclaration::matchTemplateParameters(Cpp::InstantiationInformation info, const TopDUContext* source) {
Q_ASSERT(source);
///@todo match higher scopes
InstantiationInformation specializedWith(this->specializedWith().information());
Declaration* thisDecl = dynamic_cast<Declaration*>(this);
ifDebugMatching( kDebug() << "matching to" << thisDecl->toString() << "parameters:" << info.toString(); )
if(info.templateParametersSize() != specializedWith.templateParametersSize()) {
ifDebugMatching( kDebug() << "template-parameter count doesn't match" << info.toString() << specializedWith.toString(); )
return qMakePair(0u, (TemplateDeclaration*)0);
}
QMap<IndexedString, AbstractType::Ptr> instantiatedParameters;
DUContext* templateContext = getTemplateContext(thisDecl, source);
if(!templateContext) {
return qMakePair(0u, (TemplateDeclaration*)0);
}
///Match the arguments, by assigning types to template paremeters
foreach(Declaration* parameterDecl, templateContext->localDeclarations()) {
instantiatedParameters[parameterDecl->identifier().identifier()] = AbstractType::Ptr();
ifDebugMatching( kDebug() << "need value for parameter" << parameterDecl->identifier().identifier().str(); )
}
OverloadResolver resolver(DUContextPointer(thisDecl->context()), TopDUContextPointer(const_cast<TopDUContext*>(source)));
uint matchDepth = 1;
for(uint a = 0; a < info.templateParametersSize(); ++a) {
uint localMatchDepth = resolver.matchParameterTypes(info.templateParameters()[a].abstractType(), specializedWith.templateParameters()[a].abstractType(), instantiatedParameters, true);
if(!localMatchDepth) {
ifDebugMatching( kDebug() << "mismatch in parameter" << a; )
return qMakePair(0u, (TemplateDeclaration*)0);
}
matchDepth += localMatchDepth;
}
for(QMap<IndexedString, AbstractType::Ptr>::iterator it = instantiatedParameters.begin(); it != instantiatedParameters.end(); ++it) {
ifDebugMatching( kDebug() << "value for parameter" << it.key().str() << (it.value() ? it.value()->toString() : QString("no type")); )
AbstractType::Ptr param(it.value());
if(param.isNull()) { //All parameters should have a type assigned
return qMakePair(0u, (TemplateDeclaration*)0);
}
}
Cpp::InstantiationInformation instantiateWith(info);
instantiateWith.templateParametersList().clear();
foreach( Declaration* decl, templateContext->localDeclarations() ) {
AbstractType::Ptr type;
CppTemplateParameterType::Ptr paramType = decl->abstractType().cast<CppTemplateParameterType>();
if( paramType ) //Take the type we have assigned.
type = instantiatedParameters[decl->identifier().identifier()];
else
type = decl->abstractType(); //Take the type that was available already earlier
instantiateWith.addTemplateParameter(type);
}
ifDebugMatching( kDebug() << "instantiating locally with" << instantiateWith.toString(); )
TemplateDeclaration* instantiated = this;
if(templateContext->localDeclarations().count() != 0)
instantiated = dynamic_cast<TemplateDeclaration*>(instantiate( instantiateWith, source, true ));
if(!instantiated)
return qMakePair(0u, (TemplateDeclaration*)0);
ifDebugMatching( kDebug() << "instantiated:" << dynamic_cast<Declaration*>(instantiated)->toString(); )
InstantiationInformation instantiationSpecializedWith(instantiated->specializedWith().information());
if(instantiationSpecializedWith.templateParametersSize()) {
if(instantiationSpecializedWith.templateParametersSize() != info.templateParametersSize()) {
ifDebugMatching( kDebug() << "template-parameter size does not match while matching" << thisDecl->toString(); )
return qMakePair(0u, (TemplateDeclaration*)0);
}
//Use the information from the specialization-information to build the template-identifiers
for(uint a = 0; a < instantiationSpecializedWith.templateParametersSize(); ++a) {
if(instantiationSpecializedWith.templateParameters()[a] != info.templateParameters()[a]) {
ifDebugMatching( kDebug() << "mismatch in final parameters at" << a << instantiationSpecializedWith.templateParameters()[a].abstractType()->toString() << info.templateParameters()[a].abstractType()->toString(); )
return qMakePair(0u, (TemplateDeclaration*)0);
}
}
}
return qMakePair((unsigned int)(info.templateParametersSize() - templateContext->localDeclarations().count())*1000 + matchDepth, instantiated);
}
Declaration* TemplateDeclaration::instantiate( const InstantiationInformation& _templateArguments, const TopDUContext* source, bool forceLocal )
{
InstantiationInformation templateArguments(_templateArguments);
/* if(dynamic_cast<TopDUContext*>(dynamic_cast<const Declaration*>(this)->context())) {
Q_ASSERT(templateArguments.previousInstantiationInformation == 0);
}*/
if( m_instantiatedFrom && !forceLocal)
return m_instantiatedFrom->instantiate( templateArguments, source );
{
QMutexLocker l(&instantiationsMutex);
{
DefaultParameterInstantiationHash::const_iterator it = m_defaultParameterInstantiations.constFind(templateArguments.indexed());
if(it != m_defaultParameterInstantiations.constEnd())
templateArguments = (*it).information();
}
InstantiationsHash::const_iterator it;
it = m_instantiations.constFind( templateArguments.indexed() );
if( it != m_instantiations.constEnd() ) {
if(*it) {
return dynamic_cast<Declaration*>(*it);
}else{
///@todo What if the same thing is instantiated twice in parralel? Then this may trigger as well, altough one side should wait
///We are currently instantiating this declaration with the same template arguments. This would lead to an assertion.
kDebug() << "tried to recursively instantiate" << dynamic_cast<Declaration*>(this)->toString() << "with" << templateArguments.toString();
///Maybe problematic, because the returned declaration is not in the correct context etc.
return 0;
}
}
}
if(!source)
return 0;
if (m_instantiationDepth > 5) {
kWarning() << "depth-limit reached while instantiating template declaration with" << _templateArguments.toString();
return 0;
}
PushValue<int> depthCounter(m_instantiationDepth, m_instantiationDepth + 1);
DUContext* surroundingContext = dynamic_cast<const Declaration*>(this)->context();
if(!surroundingContext) {
kDebug() << "Declaration has no context:" << dynamic_cast<Declaration*>(this)->qualifiedIdentifier().toString() << dynamic_cast<Declaration*>(this)->toString();
return dynamic_cast<Declaration*>(this);
}
Declaration* decl = dynamic_cast<Declaration*>(this);
Q_ASSERT(decl);
Q_ASSERT(decl->topContext());
DUContext* templateContext = getTemplateContext(dynamic_cast<Declaration*>(this), source);
// kDebug() << decl->qualifiedIdentifier().toString() << "got template-context" << templateContext << templateArguments.toString();
if(!forceLocal) {
///Apply default-parameters
if(templateContext && (static_cast<uint>(templateContext->localDeclarations().count()) > templateArguments.templateParametersSize() || (templateArguments.templateParametersSize() == 1 && !templateArguments.templateParameters()[0].isValid() && templateContext->localDeclarations().count() >= 1))) {
//Do a little fake instantiation so all the default-parameters are correctly applied right here. Then, they can be used
//during specialization-matching.
DUContext* newTemplateContext = instantiateDeclarationAndContext( surroundingContext, source, templateContext, templateArguments, 0, 0, true );
templateArguments.templateParametersList().clear();
// kDebug() << "count in copied:" << newTemplateContext->localDeclarations().count();
foreach(Declaration* decl, newTemplateContext->localDeclarations())
if(!decl->type<CppTemplateParameterType>()) {
// kDebug() << "inserting" << decl->abstractType()->toString();
templateArguments.addTemplateParameter(decl->abstractType());
}else{
// kDebug() << "not inserting";
}
delete newTemplateContext;
}
///Check whether there is type-aliases in the parameters that need to be resolved
///Generally, resolve all type-aliases that are part of a template-class, and keep the others
{
InstantiationInformation newTemplateArguments = templateArguments;
newTemplateArguments.templateParametersList().clear();
struct UnAliasExchanger : public KDevelop::TypeExchanger {
UnAliasExchanger(const TopDUContext* _source) : source(_source) {
}
const TopDUContext* source;
virtual KDevelop::AbstractType::Ptr exchange(const KDevelop::AbstractType::Ptr& type) {
KDevelop::AbstractType::Ptr check = type;
KDevelop::TypeAliasType::Ptr alias = type.cast<KDevelop::TypeAliasType>();
if(alias) {
//We exchange type-aliases with their real types only of the type-alias is in a template
//class. In that case, we cannot be sure that it's not used for meta-programming.
//All other aliases can be kept, for user-friendliness, even if it's not 100% C++ correct
Declaration* decl = alias->declaration(source);
if(!decl || dynamic_cast<TemplateDeclaration*>(decl)) {
return exchange(alias->type());
}
}
if(check)
check->exchangeTypes(this);
return check;
}
};
UnAliasExchanger exchanger(source);
for(uint a = 0; a < templateArguments.templateParametersSize(); ++a)
newTemplateArguments.templateParametersList().append(exchanger.exchange(templateArguments.templateParameters()[a].abstractType())->indexed());
templateArguments = newTemplateArguments;
}
if(!(templateArguments == _templateArguments)) {
QMutexLocker l(&instantiationsMutex);
m_defaultParameterInstantiations[_templateArguments.indexed()] = templateArguments.indexed();
}
}
{
//Now we have the final template-parameters. Once again check whether we have already instantiated this,
//and if not, reserve the instantiation so we cannot crash later on
///@todo When the same declaration is instantuated multiple times, this sucks because one is returned invalid
QMutexLocker l(&instantiationsMutex);
InstantiationsHash::const_iterator it;
it = m_instantiations.constFind( templateArguments.indexed() );
if( it != m_instantiations.constEnd() ) {
if(*it) {
return dynamic_cast<Declaration*>(*it);
}else{
//Problem
return dynamic_cast<Declaration*>(this);
}
}
///@warning Once we've called reserveInstantiation, we have to be 100% sure that we actually create the instantiation
reserveInstantiation(templateArguments.indexed());
}
TemplateDeclaration* instantiatedSpecialization = 0;
uint specializationMatchQuality = 0;
//Check whether there is a specialization that matches the template parameters
FOREACH_FUNCTION(const IndexedDeclaration& decl, specializations) {
//We only use visible specializations here
if(source->recursiveImportIndices().contains(decl.indexedTopContext())) {
TemplateDeclaration* tempDecl = dynamic_cast<TemplateDeclaration*>(decl.data());
if(tempDecl) {
QPair<uint, TemplateDeclaration*> match = tempDecl->matchTemplateParameters(templateArguments, source);
if(match.first > specializationMatchQuality && match.second) {
instantiatedSpecialization = match.second;
specializationMatchQuality = match.first;
}
}
}
}
//We have reserved the instantiation, so it must have stayed untouched
Q_ASSERT(m_instantiations[templateArguments.indexed()] == 0);
if(instantiatedSpecialization) {
//A specialization has been chosen and instantiated. Just register it here, and return it.
instantiatedSpecialization->setInstantiatedFrom(this, templateArguments);
return dynamic_cast<Declaration*>(instantiatedSpecialization);
}
{
//Check whether the instantiation also instantiates the parent context, and if it does, replace surroundingContext with the instantiated version
CppDUContext<DUContext>* parent = dynamic_cast<CppDUContext<DUContext>*>(surroundingContext);
if(parent && templateArguments.previousInstantiationInformation.index() && templateArguments.previousInstantiationInformation.index() != parent->instantiatedWith().index()) {
DUContext* surroundingCandidate = parent->instantiate(IndexedInstantiationInformation(templateArguments.previousInstantiationInformation).information(), source);
if(surroundingCandidate)
surroundingContext = surroundingCandidate;
else
kDebug() << "could not instantiate surrounding context for" << dynamic_cast<Declaration*>(this)->qualifiedIdentifier().toString();
}
}
Declaration* clone = decl->clone();
Q_ASSERT(clone);
#ifdef QT_DEBUG
TemplateDeclaration* cloneTemplateDecl = dynamic_cast<TemplateDeclaration*>(clone);
Q_ASSERT(cloneTemplateDecl);
#endif
///Now eventually create the virtual contexts, and fill new information into the declaration
instantiateDeclarationAndContext( surroundingContext, source, decl->internalContext(), templateArguments, clone, decl );
// cloneTemplateDecl->setInstantiatedFrom(this);
Q_ASSERT(clone->topContext());
return clone;
}
AbstractType::Ptr resolveDelayedTypes( AbstractType::Ptr type, const KDevelop::DUContext* context, const KDevelop::TopDUContext* source, KDevelop::DUContext::SearchFlags searchFlags ) {
if( !type )
return type;
///First, find out if delayed types are involved(Function return-type, function-arguments, reference/pointer target, base-class)
DelayedTypeSearcher search;
type->accept(&search);
DelayedType::Ptr delayedType = type.cast<DelayedType>();
if( search.found || delayedType ) {
///Delayed types were found. We must copy the whole type, and replace the delayed types.
DelayedTypeResolver resolver(context, source, searchFlags);
AbstractType::Ptr typeCopy;
if( delayedType )
///The type itself is a delayed type, resolve it
typeCopy = resolver.exchange( type );
else {
///Resolve involved delayed types, now hopefully we know the template-parameters
typeCopy = AbstractType::Ptr( type->clone() );
DelayedTypeSearcher testSearch;
typeCopy->accept(&testSearch);
Q_ASSERT(testSearch.found);
typeCopy->exchangeTypes( &resolver );
}
return typeCopy;
} else {
return type;
}
}
// void TemplateDeclaration::setInstantiatedWith(const InstantiationInformation& with) {
// Q_ASSERT(!m_instantiatedFrom);
// m_instantiatedWith = with.indexed();
// }
IndexedInstantiationInformation TemplateDeclaration::instantiatedWith() const {
return m_instantiatedWith;
}
TemplateDeclaration::InstantiationsHash TemplateDeclaration::instantiations() const {
QMutexLocker l(&instantiationsMutex);
return m_instantiations;
}
template<>
Declaration* SpecialTemplateDeclaration<ForwardDeclaration>::resolve(const TopDUContext* topContext) const {
if( instantiatedFrom() ) {
SpecialTemplateDeclaration<ForwardDeclaration>* instantiatedFrom = dynamic_cast<SpecialTemplateDeclaration<ForwardDeclaration>*>(this->instantiatedFrom());
if( instantiatedFrom ) {
Declaration* baseResolved = instantiatedFrom->resolve(topContext);
TemplateDeclaration* baseTemplate = dynamic_cast<TemplateDeclaration*>(baseResolved);
if( baseResolved && baseTemplate ) {
return baseTemplate->instantiate(instantiatedWith().information(), topContext ? topContext : this->topContext());
}else{
//Forward-declaration was not resolved
return 0;
}
}else{
//TODO: report this in the problem reporter?
kWarning(9007) << "Problem in template forward-declaration";
return 0;
}
}else{
return ForwardDeclaration::resolve(topContext);
}
}
}
|