Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
James Dennett | 306f179 | 2012-06-22 05:14:59 +0000 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
| 11 | /// \brief Implements semantic analysis for C++ expressions. |
| 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 14 | |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 15 | #include "clang/Sema/SemaInternal.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 16 | #include "TypeLocBuilder.h" |
Steve Naroff | 210679c | 2007-08-25 14:02:58 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 18 | #include "clang/AST/CXXInheritance.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 19 | #include "clang/AST/CharUnits.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclObjC.h" |
Richard Smith | 6c3af3d | 2013-01-17 01:17:56 +0000 | [diff] [blame] | 21 | #include "clang/AST/EvaluatedExprVisitor.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 22 | #include "clang/AST/ExprCXX.h" |
Fariborz Jahanian | d426662 | 2010-06-16 18:56:04 +0000 | [diff] [blame] | 23 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 24 | #include "clang/AST/TypeLoc.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 25 | #include "clang/Basic/PartialDiagnostic.h" |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 26 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 27 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 28 | #include "clang/Sema/DeclSpec.h" |
| 29 | #include "clang/Sema/Initialization.h" |
| 30 | #include "clang/Sema/Lookup.h" |
| 31 | #include "clang/Sema/ParsedTemplate.h" |
| 32 | #include "clang/Sema/Scope.h" |
| 33 | #include "clang/Sema/ScopeInfo.h" |
| 34 | #include "clang/Sema/TemplateDeduction.h" |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/APInt.h" |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 73e0a91 | 2011-05-01 07:23:17 +0000 | [diff] [blame] | 37 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 38 | using namespace clang; |
John McCall | 2a7fb27 | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 39 | using namespace sema; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | |
Richard Smith | 2db075b | 2013-03-26 01:15:19 +0000 | [diff] [blame] | 41 | /// \brief Handle the result of the special case name lookup for inheriting |
| 42 | /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as |
| 43 | /// constructor names in member using declarations, even if 'X' is not the |
| 44 | /// name of the corresponding type. |
| 45 | ParsedType Sema::getInheritingConstructorName(CXXScopeSpec &SS, |
| 46 | SourceLocation NameLoc, |
| 47 | IdentifierInfo &Name) { |
| 48 | NestedNameSpecifier *NNS = SS.getScopeRep(); |
| 49 | |
| 50 | // Convert the nested-name-specifier into a type. |
| 51 | QualType Type; |
| 52 | switch (NNS->getKind()) { |
| 53 | case NestedNameSpecifier::TypeSpec: |
| 54 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 55 | Type = QualType(NNS->getAsType(), 0); |
| 56 | break; |
| 57 | |
| 58 | case NestedNameSpecifier::Identifier: |
| 59 | // Strip off the last layer of the nested-name-specifier and build a |
| 60 | // typename type for it. |
| 61 | assert(NNS->getAsIdentifier() == &Name && "not a constructor name"); |
| 62 | Type = Context.getDependentNameType(ETK_None, NNS->getPrefix(), |
| 63 | NNS->getAsIdentifier()); |
| 64 | break; |
| 65 | |
| 66 | case NestedNameSpecifier::Global: |
| 67 | case NestedNameSpecifier::Namespace: |
| 68 | case NestedNameSpecifier::NamespaceAlias: |
| 69 | llvm_unreachable("Nested name specifier is not a type for inheriting ctor"); |
| 70 | } |
| 71 | |
| 72 | // This reference to the type is located entirely at the location of the |
| 73 | // final identifier in the qualified-id. |
| 74 | return CreateParsedType(Type, |
| 75 | Context.getTrivialTypeSourceInfo(Type, NameLoc)); |
| 76 | } |
| 77 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 78 | ParsedType Sema::getDestructorName(SourceLocation TildeLoc, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 79 | IdentifierInfo &II, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 80 | SourceLocation NameLoc, |
| 81 | Scope *S, CXXScopeSpec &SS, |
| 82 | ParsedType ObjectTypePtr, |
| 83 | bool EnteringContext) { |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 84 | // Determine where to perform name lookup. |
| 85 | |
| 86 | // FIXME: This area of the standard is very messy, and the current |
| 87 | // wording is rather unclear about which scopes we search for the |
| 88 | // destructor name; see core issues 399 and 555. Issue 399 in |
| 89 | // particular shows where the current description of destructor name |
| 90 | // lookup is completely out of line with existing practice, e.g., |
| 91 | // this appears to be ill-formed: |
| 92 | // |
| 93 | // namespace N { |
| 94 | // template <typename T> struct S { |
| 95 | // ~S(); |
| 96 | // }; |
| 97 | // } |
| 98 | // |
| 99 | // void f(N::S<int>* s) { |
| 100 | // s->N::S<int>::~S(); |
| 101 | // } |
| 102 | // |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 103 | // See also PR6358 and PR6359. |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 104 | // For this reason, we're currently only doing the C++03 version of this |
| 105 | // code; the C++0x version has to wait until we get a proper spec. |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 106 | QualType SearchType; |
| 107 | DeclContext *LookupCtx = 0; |
| 108 | bool isDependent = false; |
| 109 | bool LookInScope = false; |
| 110 | |
| 111 | // If we have an object type, it's because we are in a |
| 112 | // pseudo-destructor-expression or a member access expression, and |
| 113 | // we know what type we're looking for. |
| 114 | if (ObjectTypePtr) |
| 115 | SearchType = GetTypeFromParser(ObjectTypePtr); |
| 116 | |
| 117 | if (SS.isSet()) { |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 118 | NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 119 | |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 120 | bool AlreadySearched = false; |
| 121 | bool LookAtPrefix = true; |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 122 | // C++ [basic.lookup.qual]p6: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 123 | // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier, |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 124 | // the type-names are looked up as types in the scope designated by the |
| 125 | // nested-name-specifier. In a qualified-id of the form: |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 126 | // |
| 127 | // ::[opt] nested-name-specifier ~ class-name |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 128 | // |
| 129 | // where the nested-name-specifier designates a namespace scope, and in |
Chandler Carruth | 5e895a8 | 2010-02-21 10:19:54 +0000 | [diff] [blame] | 130 | // a qualified-id of the form: |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 131 | // |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 132 | // ::opt nested-name-specifier class-name :: ~ class-name |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 133 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 134 | // the class-names are looked up as types in the scope designated by |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 135 | // the nested-name-specifier. |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 136 | // |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 137 | // Here, we check the first case (completely) and determine whether the |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 138 | // code below is permitted to look at the prefix of the |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 139 | // nested-name-specifier. |
| 140 | DeclContext *DC = computeDeclContext(SS, EnteringContext); |
| 141 | if (DC && DC->isFileContext()) { |
| 142 | AlreadySearched = true; |
| 143 | LookupCtx = DC; |
| 144 | isDependent = false; |
| 145 | } else if (DC && isa<CXXRecordDecl>(DC)) |
| 146 | LookAtPrefix = false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 147 | |
Sebastian Redl | c0fee50 | 2010-07-07 23:17:38 +0000 | [diff] [blame] | 148 | // The second case from the C++03 rules quoted further above. |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 149 | NestedNameSpecifier *Prefix = 0; |
| 150 | if (AlreadySearched) { |
| 151 | // Nothing left to do. |
| 152 | } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) { |
| 153 | CXXScopeSpec PrefixSS; |
Douglas Gregor | 7e38494 | 2011-02-25 16:07:42 +0000 | [diff] [blame] | 154 | PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data())); |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 155 | LookupCtx = computeDeclContext(PrefixSS, EnteringContext); |
| 156 | isDependent = isDependentScopeSpecifier(PrefixSS); |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 157 | } else if (ObjectTypePtr) { |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 158 | LookupCtx = computeDeclContext(SearchType); |
| 159 | isDependent = SearchType->isDependentType(); |
| 160 | } else { |
| 161 | LookupCtx = computeDeclContext(SS, EnteringContext); |
Douglas Gregor | 93649fd | 2010-02-23 00:15:22 +0000 | [diff] [blame] | 162 | isDependent = LookupCtx && LookupCtx->isDependentContext(); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 163 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 164 | |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 165 | LookInScope = false; |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 166 | } else if (ObjectTypePtr) { |
| 167 | // C++ [basic.lookup.classref]p3: |
| 168 | // If the unqualified-id is ~type-name, the type-name is looked up |
| 169 | // in the context of the entire postfix-expression. If the type T |
| 170 | // of the object expression is of a class type C, the type-name is |
| 171 | // also looked up in the scope of class C. At least one of the |
| 172 | // lookups shall find a name that refers to (possibly |
| 173 | // cv-qualified) T. |
| 174 | LookupCtx = computeDeclContext(SearchType); |
| 175 | isDependent = SearchType->isDependentType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 176 | assert((isDependent || !SearchType->isIncompleteType()) && |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 177 | "Caller should have completed object type"); |
| 178 | |
| 179 | LookInScope = true; |
| 180 | } else { |
| 181 | // Perform lookup into the current scope (only). |
| 182 | LookInScope = true; |
| 183 | } |
| 184 | |
Douglas Gregor | 7ec1873 | 2011-03-04 22:32:08 +0000 | [diff] [blame] | 185 | TypeDecl *NonMatchingTypeDecl = 0; |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 186 | LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName); |
| 187 | for (unsigned Step = 0; Step != 2; ++Step) { |
| 188 | // Look for the name first in the computed lookup context (if we |
Douglas Gregor | 7ec1873 | 2011-03-04 22:32:08 +0000 | [diff] [blame] | 189 | // have one) and, if that fails to find a match, in the scope (if |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 190 | // we're allowed to look there). |
| 191 | Found.clear(); |
| 192 | if (Step == 0 && LookupCtx) |
| 193 | LookupQualifiedName(Found, LookupCtx); |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 194 | else if (Step == 1 && LookInScope && S) |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 195 | LookupName(Found, S); |
| 196 | else |
| 197 | continue; |
| 198 | |
| 199 | // FIXME: Should we be suppressing ambiguities here? |
| 200 | if (Found.isAmbiguous()) |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 201 | return ParsedType(); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 202 | |
| 203 | if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) { |
| 204 | QualType T = Context.getTypeDeclType(Type); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 205 | |
| 206 | if (SearchType.isNull() || SearchType->isDependentType() || |
| 207 | Context.hasSameUnqualifiedType(T, SearchType)) { |
| 208 | // We found our type! |
| 209 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 210 | return ParsedType::make(T); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 211 | } |
John Wiegley | 36784e7 | 2011-03-08 08:13:22 +0000 | [diff] [blame] | 212 | |
Douglas Gregor | 7ec1873 | 2011-03-04 22:32:08 +0000 | [diff] [blame] | 213 | if (!SearchType.isNull()) |
| 214 | NonMatchingTypeDecl = Type; |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | // If the name that we found is a class template name, and it is |
| 218 | // the same name as the template name in the last part of the |
| 219 | // nested-name-specifier (if present) or the object type, then |
| 220 | // this is the destructor for that class. |
| 221 | // FIXME: This is a workaround until we get real drafting for core |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 222 | // issue 399, for which there isn't even an obvious direction. |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 223 | if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) { |
| 224 | QualType MemberOfType; |
| 225 | if (SS.isSet()) { |
| 226 | if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) { |
| 227 | // Figure out the type of the context, if it has one. |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 228 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) |
| 229 | MemberOfType = Context.getTypeDeclType(Record); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | if (MemberOfType.isNull()) |
| 233 | MemberOfType = SearchType; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 234 | |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 235 | if (MemberOfType.isNull()) |
| 236 | continue; |
| 237 | |
| 238 | // We're referring into a class template specialization. If the |
| 239 | // class template we found is the same as the template being |
| 240 | // specialized, we found what we are looking for. |
| 241 | if (const RecordType *Record = MemberOfType->getAs<RecordType>()) { |
| 242 | if (ClassTemplateSpecializationDecl *Spec |
| 243 | = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) { |
| 244 | if (Spec->getSpecializedTemplate()->getCanonicalDecl() == |
| 245 | Template->getCanonicalDecl()) |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 246 | return ParsedType::make(MemberOfType); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | continue; |
| 250 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 251 | |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 252 | // We're referring to an unresolved class template |
| 253 | // specialization. Determine whether we class template we found |
| 254 | // is the same as the template being specialized or, if we don't |
| 255 | // know which template is being specialized, that it at least |
| 256 | // has the same name. |
| 257 | if (const TemplateSpecializationType *SpecType |
| 258 | = MemberOfType->getAs<TemplateSpecializationType>()) { |
| 259 | TemplateName SpecName = SpecType->getTemplateName(); |
| 260 | |
| 261 | // The class template we found is the same template being |
| 262 | // specialized. |
| 263 | if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) { |
| 264 | if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl()) |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 265 | return ParsedType::make(MemberOfType); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 266 | |
| 267 | continue; |
| 268 | } |
| 269 | |
| 270 | // The class template we found has the same name as the |
| 271 | // (dependent) template name being specialized. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 272 | if (DependentTemplateName *DepTemplate |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 273 | = SpecName.getAsDependentTemplateName()) { |
| 274 | if (DepTemplate->isIdentifier() && |
| 275 | DepTemplate->getIdentifier() == Template->getIdentifier()) |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 276 | return ParsedType::make(MemberOfType); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 277 | |
| 278 | continue; |
| 279 | } |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | if (isDependent) { |
| 285 | // We didn't find our type, but that's okay: it's dependent |
| 286 | // anyway. |
Douglas Gregor | e29425b | 2011-02-28 22:42:13 +0000 | [diff] [blame] | 287 | |
| 288 | // FIXME: What if we have no nested-name-specifier? |
| 289 | QualType T = CheckTypenameType(ETK_None, SourceLocation(), |
| 290 | SS.getWithLocInContext(Context), |
| 291 | II, NameLoc); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 292 | return ParsedType::make(T); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 293 | } |
| 294 | |
Douglas Gregor | 7ec1873 | 2011-03-04 22:32:08 +0000 | [diff] [blame] | 295 | if (NonMatchingTypeDecl) { |
| 296 | QualType T = Context.getTypeDeclType(NonMatchingTypeDecl); |
| 297 | Diag(NameLoc, diag::err_destructor_expr_type_mismatch) |
| 298 | << T << SearchType; |
| 299 | Diag(NonMatchingTypeDecl->getLocation(), diag::note_destructor_type_here) |
| 300 | << T; |
| 301 | } else if (ObjectTypePtr) |
| 302 | Diag(NameLoc, diag::err_ident_in_dtor_not_a_type) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 303 | << &II; |
David Blaikie | 36771d9 | 2013-03-20 17:42:13 +0000 | [diff] [blame] | 304 | else { |
| 305 | SemaDiagnosticBuilder DtorDiag = Diag(NameLoc, |
| 306 | diag::err_destructor_class_name); |
| 307 | if (S) { |
| 308 | const DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()); |
| 309 | if (const CXXRecordDecl *Class = dyn_cast_or_null<CXXRecordDecl>(Ctx)) |
| 310 | DtorDiag << FixItHint::CreateReplacement(SourceRange(NameLoc), |
| 311 | Class->getNameAsString()); |
| 312 | } |
| 313 | } |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 314 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 315 | return ParsedType(); |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 316 | } |
| 317 | |
David Blaikie | 53a75c0 | 2011-12-08 16:13:53 +0000 | [diff] [blame] | 318 | ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) { |
David Blaikie | 4db8c44 | 2011-12-12 04:13:55 +0000 | [diff] [blame] | 319 | if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType) |
David Blaikie | 53a75c0 | 2011-12-08 16:13:53 +0000 | [diff] [blame] | 320 | return ParsedType(); |
| 321 | assert(DS.getTypeSpecType() == DeclSpec::TST_decltype |
| 322 | && "only get destructor types from declspecs"); |
| 323 | QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); |
| 324 | QualType SearchType = GetTypeFromParser(ObjectType); |
| 325 | if (SearchType->isDependentType() || Context.hasSameUnqualifiedType(SearchType, T)) { |
| 326 | return ParsedType::make(T); |
| 327 | } |
| 328 | |
| 329 | Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch) |
| 330 | << T << SearchType; |
| 331 | return ParsedType(); |
| 332 | } |
| 333 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 334 | /// \brief Build a C++ typeid expression with a type operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 335 | ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType, |
Douglas Gregor | 4eb4f0f | 2010-09-08 23:14:30 +0000 | [diff] [blame] | 336 | SourceLocation TypeidLoc, |
| 337 | TypeSourceInfo *Operand, |
| 338 | SourceLocation RParenLoc) { |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 339 | // C++ [expr.typeid]p4: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 340 | // The top-level cv-qualifiers of the lvalue expression or the type-id |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 341 | // that is the operand of typeid are always ignored. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 342 | // If the type of the type-id is a class type or a reference to a class |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 343 | // type, the class shall be completely-defined. |
Douglas Gregor | d1c1d7b | 2010-06-02 06:16:02 +0000 | [diff] [blame] | 344 | Qualifiers Quals; |
| 345 | QualType T |
| 346 | = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(), |
| 347 | Quals); |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 348 | if (T->getAs<RecordType>() && |
| 349 | RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid)) |
| 350 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 351 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 352 | return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(), |
| 353 | Operand, |
| 354 | SourceRange(TypeidLoc, RParenLoc))); |
| 355 | } |
| 356 | |
| 357 | /// \brief Build a C++ typeid expression with an expression operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 358 | ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType, |
Douglas Gregor | 4eb4f0f | 2010-09-08 23:14:30 +0000 | [diff] [blame] | 359 | SourceLocation TypeidLoc, |
| 360 | Expr *E, |
| 361 | SourceLocation RParenLoc) { |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 362 | if (E && !E->isTypeDependent()) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 363 | if (E->getType()->isPlaceholderType()) { |
| 364 | ExprResult result = CheckPlaceholderExpr(E); |
| 365 | if (result.isInvalid()) return ExprError(); |
| 366 | E = result.take(); |
| 367 | } |
| 368 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 369 | QualType T = E->getType(); |
| 370 | if (const RecordType *RecordT = T->getAs<RecordType>()) { |
| 371 | CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl()); |
| 372 | // C++ [expr.typeid]p3: |
| 373 | // [...] If the type of the expression is a class type, the class |
| 374 | // shall be completely-defined. |
| 375 | if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid)) |
| 376 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 377 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 378 | // C++ [expr.typeid]p3: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 379 | // When typeid is applied to an expression other than an glvalue of a |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 380 | // polymorphic class type [...] [the] expression is an unevaluated |
| 381 | // operand. [...] |
Richard Smith | 0d72910 | 2012-08-13 20:08:14 +0000 | [diff] [blame] | 382 | if (RecordD->isPolymorphic() && E->isGLValue()) { |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 383 | // The subexpression is potentially evaluated; switch the context |
| 384 | // and recheck the subexpression. |
Benjamin Kramer | accaf19 | 2012-11-14 15:08:31 +0000 | [diff] [blame] | 385 | ExprResult Result = TransformToPotentiallyEvaluated(E); |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 386 | if (Result.isInvalid()) return ExprError(); |
| 387 | E = Result.take(); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 388 | |
| 389 | // We require a vtable to query the type at run time. |
| 390 | MarkVTableUsed(TypeidLoc, RecordD); |
| 391 | } |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 392 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 393 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 394 | // C++ [expr.typeid]p4: |
| 395 | // [...] If the type of the type-id is a reference to a possibly |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 396 | // cv-qualified type, the result of the typeid expression refers to a |
| 397 | // std::type_info object representing the cv-unqualified referenced |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 398 | // type. |
Douglas Gregor | d1c1d7b | 2010-06-02 06:16:02 +0000 | [diff] [blame] | 399 | Qualifiers Quals; |
| 400 | QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals); |
| 401 | if (!Context.hasSameType(T, UnqualT)) { |
| 402 | T = UnqualT; |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 403 | E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).take(); |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 404 | } |
| 405 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 406 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 407 | return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(), |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 408 | E, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 409 | SourceRange(TypeidLoc, RParenLoc))); |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | /// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 413 | ExprResult |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 414 | Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc, |
| 415 | bool isType, void *TyOrExpr, SourceLocation RParenLoc) { |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 416 | // Find the std::type_info type. |
Sebastian Redl | ce0682f | 2011-03-31 19:29:24 +0000 | [diff] [blame] | 417 | if (!getStdNamespace()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 418 | return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid)); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 419 | |
Douglas Gregor | 4eb4f0f | 2010-09-08 23:14:30 +0000 | [diff] [blame] | 420 | if (!CXXTypeInfoDecl) { |
| 421 | IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); |
| 422 | LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName); |
| 423 | LookupQualifiedName(R, getStdNamespace()); |
| 424 | CXXTypeInfoDecl = R.getAsSingle<RecordDecl>(); |
Nico Weber | ed36b2a | 2012-06-19 23:58:27 +0000 | [diff] [blame] | 425 | // Microsoft's typeinfo doesn't have type_info in std but in the global |
| 426 | // namespace if _HAS_EXCEPTIONS is defined to 0. See PR13153. |
| 427 | if (!CXXTypeInfoDecl && LangOpts.MicrosoftMode) { |
| 428 | LookupQualifiedName(R, Context.getTranslationUnitDecl()); |
| 429 | CXXTypeInfoDecl = R.getAsSingle<RecordDecl>(); |
| 430 | } |
Douglas Gregor | 4eb4f0f | 2010-09-08 23:14:30 +0000 | [diff] [blame] | 431 | if (!CXXTypeInfoDecl) |
| 432 | return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid)); |
| 433 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 434 | |
Nico Weber | 11d1a69 | 2012-05-20 01:27:21 +0000 | [diff] [blame] | 435 | if (!getLangOpts().RTTI) { |
| 436 | return ExprError(Diag(OpLoc, diag::err_no_typeid_with_fno_rtti)); |
| 437 | } |
| 438 | |
Douglas Gregor | 4eb4f0f | 2010-09-08 23:14:30 +0000 | [diff] [blame] | 439 | QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 440 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 441 | if (isType) { |
| 442 | // The operand is a type; handle it as such. |
| 443 | TypeSourceInfo *TInfo = 0; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 444 | QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr), |
| 445 | &TInfo); |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 446 | if (T.isNull()) |
| 447 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 448 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 449 | if (!TInfo) |
| 450 | TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 451 | |
Douglas Gregor | 57fdc8a | 2010-04-26 22:37:10 +0000 | [diff] [blame] | 452 | return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 453 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 455 | // The operand is an expression. |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 456 | return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 459 | /// \brief Build a Microsoft __uuidof expression with a type operand. |
| 460 | ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType, |
| 461 | SourceLocation TypeidLoc, |
| 462 | TypeSourceInfo *Operand, |
| 463 | SourceLocation RParenLoc) { |
Francois Pichet | 6915c52 | 2010-12-27 01:32:00 +0000 | [diff] [blame] | 464 | if (!Operand->getType()->isDependentType()) { |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 465 | if (!CXXUuidofExpr::GetUuidAttrOfType(Operand->getType())) |
Francois Pichet | 6915c52 | 2010-12-27 01:32:00 +0000 | [diff] [blame] | 466 | return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid)); |
| 467 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 468 | |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 469 | // FIXME: add __uuidof semantic analysis for type operand. |
| 470 | return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(), |
| 471 | Operand, |
| 472 | SourceRange(TypeidLoc, RParenLoc))); |
| 473 | } |
| 474 | |
| 475 | /// \brief Build a Microsoft __uuidof expression with an expression operand. |
| 476 | ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType, |
| 477 | SourceLocation TypeidLoc, |
| 478 | Expr *E, |
| 479 | SourceLocation RParenLoc) { |
Francois Pichet | 6915c52 | 2010-12-27 01:32:00 +0000 | [diff] [blame] | 480 | if (!E->getType()->isDependentType()) { |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 481 | if (!CXXUuidofExpr::GetUuidAttrOfType(E->getType()) && |
Francois Pichet | 6915c52 | 2010-12-27 01:32:00 +0000 | [diff] [blame] | 482 | !E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) |
| 483 | return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid)); |
| 484 | } |
| 485 | // FIXME: add __uuidof semantic analysis for type operand. |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 486 | return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(), |
| 487 | E, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 488 | SourceRange(TypeidLoc, RParenLoc))); |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | /// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression); |
| 492 | ExprResult |
| 493 | Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc, |
| 494 | bool isType, void *TyOrExpr, SourceLocation RParenLoc) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 495 | // If MSVCGuidDecl has not been cached, do the lookup. |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 496 | if (!MSVCGuidDecl) { |
| 497 | IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID"); |
| 498 | LookupResult R(*this, GuidII, SourceLocation(), LookupTagName); |
| 499 | LookupQualifiedName(R, Context.getTranslationUnitDecl()); |
| 500 | MSVCGuidDecl = R.getAsSingle<RecordDecl>(); |
| 501 | if (!MSVCGuidDecl) |
| 502 | return ExprError(Diag(OpLoc, diag::err_need_header_before_ms_uuidof)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 505 | QualType GuidType = Context.getTypeDeclType(MSVCGuidDecl); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 506 | |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 507 | if (isType) { |
| 508 | // The operand is a type; handle it as such. |
| 509 | TypeSourceInfo *TInfo = 0; |
| 510 | QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr), |
| 511 | &TInfo); |
| 512 | if (T.isNull()) |
| 513 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 514 | |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 515 | if (!TInfo) |
| 516 | TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc); |
| 517 | |
| 518 | return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc); |
| 519 | } |
| 520 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 521 | // The operand is an expression. |
Francois Pichet | 01b7c30 | 2010-09-08 12:20:18 +0000 | [diff] [blame] | 522 | return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc); |
| 523 | } |
| 524 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 525 | /// ActOnCXXBoolLiteral - Parse {true,false} literals. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 526 | ExprResult |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 527 | Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { |
Douglas Gregor | 2f639b9 | 2008-10-24 15:36:09 +0000 | [diff] [blame] | 528 | assert((Kind == tok::kw_true || Kind == tok::kw_false) && |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 529 | "Unknown C++ Boolean value!"); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 530 | return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true, |
| 531 | Context.BoolTy, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 532 | } |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 533 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 534 | /// ActOnCXXNullPtrLiteral - Parse 'nullptr'. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 535 | ExprResult |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 536 | Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) { |
| 537 | return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc)); |
| 538 | } |
| 539 | |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 540 | /// ActOnCXXThrow - Parse throw expressions. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 541 | ExprResult |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 542 | Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) { |
| 543 | bool IsThrownVarInScope = false; |
| 544 | if (Ex) { |
| 545 | // C++0x [class.copymove]p31: |
| 546 | // When certain criteria are met, an implementation is allowed to omit the |
| 547 | // copy/move construction of a class object [...] |
| 548 | // |
| 549 | // - in a throw-expression, when the operand is the name of a |
| 550 | // non-volatile automatic object (other than a function or catch- |
| 551 | // clause parameter) whose scope does not extend beyond the end of the |
| 552 | // innermost enclosing try-block (if there is one), the copy/move |
| 553 | // operation from the operand to the exception object (15.1) can be |
| 554 | // omitted by constructing the automatic object directly into the |
| 555 | // exception object |
| 556 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens())) |
| 557 | if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) { |
| 558 | if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) { |
| 559 | for( ; S; S = S->getParent()) { |
| 560 | if (S->isDeclScope(Var)) { |
| 561 | IsThrownVarInScope = true; |
| 562 | break; |
| 563 | } |
| 564 | |
| 565 | if (S->getFlags() & |
| 566 | (Scope::FnScope | Scope::ClassScope | Scope::BlockScope | |
| 567 | Scope::FunctionPrototypeScope | Scope::ObjCMethodScope | |
| 568 | Scope::TryScope)) |
| 569 | break; |
| 570 | } |
| 571 | } |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope); |
| 576 | } |
| 577 | |
| 578 | ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex, |
| 579 | bool IsThrownVarInScope) { |
Anders Carlsson | 729b853 | 2011-02-23 03:46:46 +0000 | [diff] [blame] | 580 | // Don't report an error if 'throw' is used in system headers. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 581 | if (!getLangOpts().CXXExceptions && |
Anders Carlsson | 729b853 | 2011-02-23 03:46:46 +0000 | [diff] [blame] | 582 | !getSourceManager().isInSystemHeader(OpLoc)) |
Anders Carlsson | b1fba31 | 2011-02-19 21:53:09 +0000 | [diff] [blame] | 583 | Diag(OpLoc, diag::err_exceptions_disabled) << "throw"; |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 584 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 585 | if (Ex && !Ex->isTypeDependent()) { |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 586 | ExprResult ExRes = CheckCXXThrowOperand(OpLoc, Ex, IsThrownVarInScope); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 587 | if (ExRes.isInvalid()) |
| 588 | return ExprError(); |
| 589 | Ex = ExRes.take(); |
| 590 | } |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 591 | |
| 592 | return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc, |
| 593 | IsThrownVarInScope)); |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | /// CheckCXXThrowOperand - Validate the operand of a throw. |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 597 | ExprResult Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E, |
| 598 | bool IsThrownVarInScope) { |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 599 | // C++ [except.throw]p3: |
Douglas Gregor | 154fe98 | 2009-12-23 22:04:40 +0000 | [diff] [blame] | 600 | // A throw-expression initializes a temporary object, called the exception |
| 601 | // object, the type of which is determined by removing any top-level |
| 602 | // cv-qualifiers from the static type of the operand of throw and adjusting |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 603 | // the type from "array of T" or "function returning T" to "pointer to T" |
Douglas Gregor | 154fe98 | 2009-12-23 22:04:40 +0000 | [diff] [blame] | 604 | // or "pointer to function returning T", [...] |
| 605 | if (E->getType().hasQualifiers()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 606 | E = ImpCastExprToType(E, E->getType().getUnqualifiedType(), CK_NoOp, |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 607 | E->getValueKind()).take(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 608 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 609 | ExprResult Res = DefaultFunctionArrayConversion(E); |
| 610 | if (Res.isInvalid()) |
| 611 | return ExprError(); |
| 612 | E = Res.take(); |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 613 | |
| 614 | // If the type of the exception would be an incomplete type or a pointer |
| 615 | // to an incomplete type other than (cv) void the program is ill-formed. |
| 616 | QualType Ty = E->getType(); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 617 | bool isPointer = false; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 618 | if (const PointerType* Ptr = Ty->getAs<PointerType>()) { |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 619 | Ty = Ptr->getPointeeType(); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 620 | isPointer = true; |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 621 | } |
| 622 | if (!isPointer || !Ty->isVoidType()) { |
| 623 | if (RequireCompleteType(ThrowLoc, Ty, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 624 | isPointer? diag::err_throw_incomplete_ptr |
| 625 | : diag::err_throw_incomplete, |
| 626 | E->getSourceRange())) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 627 | return ExprError(); |
Rafael Espindola | 7b9a5aa | 2010-03-02 21:28:26 +0000 | [diff] [blame] | 628 | |
Douglas Gregor | bf422f9 | 2010-04-15 18:05:39 +0000 | [diff] [blame] | 629 | if (RequireNonAbstractType(ThrowLoc, E->getType(), |
Douglas Gregor | 6a26e2e | 2012-05-04 17:09:59 +0000 | [diff] [blame] | 630 | diag::err_throw_abstract_type, E)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 631 | return ExprError(); |
Sebastian Redl | 972041f | 2009-04-27 20:27:31 +0000 | [diff] [blame] | 632 | } |
| 633 | |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 634 | // Initialize the exception result. This implicitly weeds out |
| 635 | // abstract types or types with inaccessible copy constructors. |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 636 | |
| 637 | // C++0x [class.copymove]p31: |
| 638 | // When certain criteria are met, an implementation is allowed to omit the |
| 639 | // copy/move construction of a class object [...] |
| 640 | // |
| 641 | // - in a throw-expression, when the operand is the name of a |
| 642 | // non-volatile automatic object (other than a function or catch-clause |
| 643 | // parameter) whose scope does not extend beyond the end of the |
| 644 | // innermost enclosing try-block (if there is one), the copy/move |
| 645 | // operation from the operand to the exception object (15.1) can be |
| 646 | // omitted by constructing the automatic object directly into the |
| 647 | // exception object |
| 648 | const VarDecl *NRVOVariable = 0; |
| 649 | if (IsThrownVarInScope) |
| 650 | NRVOVariable = getCopyElisionCandidate(QualType(), E, false); |
| 651 | |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 652 | InitializedEntity Entity = |
Douglas Gregor | 72dfa27 | 2011-01-21 22:46:35 +0000 | [diff] [blame] | 653 | InitializedEntity::InitializeException(ThrowLoc, E->getType(), |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 654 | /*NRVO=*/NRVOVariable != 0); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 655 | Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable, |
Douglas Gregor | bca01b4 | 2011-07-06 22:04:06 +0000 | [diff] [blame] | 656 | QualType(), E, |
| 657 | IsThrownVarInScope); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 658 | if (Res.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 659 | return ExprError(); |
| 660 | E = Res.take(); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 661 | |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 662 | // If the exception has class type, we need additional handling. |
| 663 | const RecordType *RecordTy = Ty->getAs<RecordType>(); |
| 664 | if (!RecordTy) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 665 | return Owned(E); |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 666 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 667 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 668 | // If we are throwing a polymorphic class type or pointer thereof, |
| 669 | // exception handling will make use of the vtable. |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 670 | MarkVTableUsed(ThrowLoc, RD); |
| 671 | |
Eli Friedman | 98efb9f | 2010-10-12 20:32:36 +0000 | [diff] [blame] | 672 | // If a pointer is thrown, the referenced object will not be destroyed. |
| 673 | if (isPointer) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 674 | return Owned(E); |
Eli Friedman | 98efb9f | 2010-10-12 20:32:36 +0000 | [diff] [blame] | 675 | |
Richard Smith | 213d70b | 2012-02-18 04:13:32 +0000 | [diff] [blame] | 676 | // If the class has a destructor, we must be able to call it. |
| 677 | if (RD->hasIrrelevantDestructor()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 678 | return Owned(E); |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 679 | |
Sebastian Redl | 2835745 | 2012-03-05 19:35:43 +0000 | [diff] [blame] | 680 | CXXDestructorDecl *Destructor = LookupDestructor(RD); |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 681 | if (!Destructor) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 682 | return Owned(E); |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 683 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 684 | MarkFunctionReferenced(E->getExprLoc(), Destructor); |
Eli Friedman | 5ed9b93 | 2010-06-03 20:39:03 +0000 | [diff] [blame] | 685 | CheckDestructorAccess(E->getExprLoc(), Destructor, |
Douglas Gregor | ed8abf1 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 686 | PDiag(diag::err_access_dtor_exception) << Ty); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 687 | if (DiagnoseUseOfDecl(Destructor, E->getExprLoc())) |
| 688 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 689 | return Owned(E); |
Chris Lattner | 50dd289 | 2008-02-26 00:51:44 +0000 | [diff] [blame] | 690 | } |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 691 | |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 692 | QualType Sema::getCurrentThisType() { |
| 693 | DeclContext *DC = getFunctionLevelDeclContext(); |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 694 | QualType ThisTy = CXXThisTypeOverride; |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 695 | if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) { |
| 696 | if (method && method->isInstance()) |
| 697 | ThisTy = method->getThisType(Context); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 698 | } |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 699 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 700 | return ThisTy; |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 703 | Sema::CXXThisScopeRAII::CXXThisScopeRAII(Sema &S, |
| 704 | Decl *ContextDecl, |
| 705 | unsigned CXXThisTypeQuals, |
| 706 | bool Enabled) |
| 707 | : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(false) |
| 708 | { |
| 709 | if (!Enabled || !ContextDecl) |
| 710 | return; |
| 711 | |
| 712 | CXXRecordDecl *Record = 0; |
| 713 | if (ClassTemplateDecl *Template = dyn_cast<ClassTemplateDecl>(ContextDecl)) |
| 714 | Record = Template->getTemplatedDecl(); |
| 715 | else |
| 716 | Record = cast<CXXRecordDecl>(ContextDecl); |
| 717 | |
| 718 | S.CXXThisTypeOverride |
| 719 | = S.Context.getPointerType( |
| 720 | S.Context.getRecordType(Record).withCVRQualifiers(CXXThisTypeQuals)); |
| 721 | |
| 722 | this->Enabled = true; |
| 723 | } |
| 724 | |
| 725 | |
| 726 | Sema::CXXThisScopeRAII::~CXXThisScopeRAII() { |
| 727 | if (Enabled) { |
| 728 | S.CXXThisTypeOverride = OldCXXThisTypeOverride; |
| 729 | } |
| 730 | } |
| 731 | |
Ben Langmuir | 3a2f912 | 2013-04-29 13:32:41 +0000 | [diff] [blame] | 732 | static Expr *captureThis(ASTContext &Context, RecordDecl *RD, |
| 733 | QualType ThisTy, SourceLocation Loc) { |
| 734 | FieldDecl *Field |
| 735 | = FieldDecl::Create(Context, RD, Loc, Loc, 0, ThisTy, |
| 736 | Context.getTrivialTypeSourceInfo(ThisTy, Loc), |
| 737 | 0, false, ICIS_NoInit); |
| 738 | Field->setImplicit(true); |
| 739 | Field->setAccess(AS_private); |
| 740 | RD->addDecl(Field); |
| 741 | return new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit*/true); |
| 742 | } |
| 743 | |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 744 | void Sema::CheckCXXThisCapture(SourceLocation Loc, bool Explicit) { |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 745 | // We don't need to capture this in an unevaluated context. |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 746 | if (isUnevaluatedContext() && !Explicit) |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 747 | return; |
| 748 | |
| 749 | // Otherwise, check that we can capture 'this'. |
| 750 | unsigned NumClosures = 0; |
| 751 | for (unsigned idx = FunctionScopes.size() - 1; idx != 0; idx--) { |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 752 | if (CapturingScopeInfo *CSI = |
| 753 | dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) { |
| 754 | if (CSI->CXXThisCaptureIndex != 0) { |
| 755 | // 'this' is already being captured; there isn't anything more to do. |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 756 | break; |
| 757 | } |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 758 | |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 759 | if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref || |
Douglas Gregor | 3ac109c | 2012-02-10 17:46:20 +0000 | [diff] [blame] | 760 | CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval || |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 761 | CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block || |
Tareq A. Siraj | 6afcf88 | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 762 | CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion || |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 763 | Explicit) { |
| 764 | // This closure can capture 'this'; continue looking upwards. |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 765 | NumClosures++; |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 766 | Explicit = false; |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 767 | continue; |
| 768 | } |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 769 | // This context can't implicitly capture 'this'; fail out. |
Douglas Gregor | a1f2114 | 2012-02-01 17:04:21 +0000 | [diff] [blame] | 770 | Diag(Loc, diag::err_this_capture) << Explicit; |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 771 | return; |
| 772 | } |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 773 | break; |
| 774 | } |
| 775 | |
| 776 | // Mark that we're implicitly capturing 'this' in all the scopes we skipped. |
| 777 | // FIXME: We need to delay this marking in PotentiallyPotentiallyEvaluated |
| 778 | // contexts. |
| 779 | for (unsigned idx = FunctionScopes.size() - 1; |
| 780 | NumClosures; --idx, --NumClosures) { |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 781 | CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]); |
Eli Friedman | 668165a | 2012-02-11 02:51:16 +0000 | [diff] [blame] | 782 | Expr *ThisExpr = 0; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 783 | QualType ThisTy = getCurrentThisType(); |
Ben Langmuir | 3a2f912 | 2013-04-29 13:32:41 +0000 | [diff] [blame] | 784 | if (LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI)) |
Eli Friedman | 668165a | 2012-02-11 02:51:16 +0000 | [diff] [blame] | 785 | // For lambda expressions, build a field and an initializing expression. |
Ben Langmuir | 3a2f912 | 2013-04-29 13:32:41 +0000 | [diff] [blame] | 786 | ThisExpr = captureThis(Context, LSI->Lambda, ThisTy, Loc); |
| 787 | else if (CapturedRegionScopeInfo *RSI |
| 788 | = dyn_cast<CapturedRegionScopeInfo>(FunctionScopes[idx])) |
| 789 | ThisExpr = captureThis(Context, RSI->TheRecordDecl, ThisTy, Loc); |
Tareq A. Siraj | 6afcf88 | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 790 | |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 791 | bool isNested = NumClosures > 1; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 792 | CSI->addThisCapture(isNested, Loc, ThisTy, ThisExpr); |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 793 | } |
| 794 | } |
| 795 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 796 | ExprResult Sema::ActOnCXXThis(SourceLocation Loc) { |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 797 | /// C++ 9.3.2: In the body of a non-static member function, the keyword this |
| 798 | /// is a non-lvalue expression whose value is the address of the object for |
| 799 | /// which the function is called. |
| 800 | |
Douglas Gregor | 341350e | 2011-10-18 16:47:30 +0000 | [diff] [blame] | 801 | QualType ThisTy = getCurrentThisType(); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 802 | if (ThisTy.isNull()) return Diag(Loc, diag::err_invalid_this_use); |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 803 | |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 804 | CheckCXXThisCapture(Loc); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 805 | return Owned(new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit=*/false)); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 806 | } |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 807 | |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 808 | bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) { |
| 809 | // If we're outside the body of a member function, then we'll have a specified |
| 810 | // type for 'this'. |
| 811 | if (CXXThisTypeOverride.isNull()) |
| 812 | return false; |
| 813 | |
| 814 | // Determine whether we're looking into a class that's currently being |
| 815 | // defined. |
| 816 | CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl(); |
| 817 | return Class && Class->isBeingDefined(); |
| 818 | } |
| 819 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 820 | ExprResult |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 821 | Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep, |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 822 | SourceLocation LParenLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 823 | MultiExprArg exprs, |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 824 | SourceLocation RParenLoc) { |
Douglas Gregor | ae4c77d | 2010-02-05 19:11:37 +0000 | [diff] [blame] | 825 | if (!TypeRep) |
| 826 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 827 | |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 828 | TypeSourceInfo *TInfo; |
| 829 | QualType Ty = GetTypeFromParser(TypeRep, &TInfo); |
| 830 | if (!TInfo) |
| 831 | TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation()); |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 832 | |
| 833 | return BuildCXXTypeConstructExpr(TInfo, LParenLoc, exprs, RParenLoc); |
| 834 | } |
| 835 | |
| 836 | /// ActOnCXXTypeConstructExpr - Parse construction of a specified type. |
| 837 | /// Can be interpreted either as function-style casting ("int(x)") |
| 838 | /// or class type construction ("ClassType(x,y,z)") |
| 839 | /// or creation of a value-initialized type ("int()"). |
| 840 | ExprResult |
| 841 | Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo, |
| 842 | SourceLocation LParenLoc, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 843 | MultiExprArg Exprs, |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 844 | SourceLocation RParenLoc) { |
| 845 | QualType Ty = TInfo->getType(); |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 846 | SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc(); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 847 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 848 | if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(Exprs)) { |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 849 | return Owned(CXXUnresolvedConstructExpr::Create(Context, TInfo, |
Douglas Gregor | d81e6ca | 2009-05-20 18:46:25 +0000 | [diff] [blame] | 850 | LParenLoc, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 851 | Exprs, |
Douglas Gregor | d81e6ca | 2009-05-20 18:46:25 +0000 | [diff] [blame] | 852 | RParenLoc)); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 853 | } |
| 854 | |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 855 | bool ListInitialization = LParenLoc.isInvalid(); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 856 | assert((!ListInitialization || (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 857 | && "List initialization must have initializer list as expression."); |
| 858 | SourceRange FullRange = SourceRange(TyBeginLoc, |
| 859 | ListInitialization ? Exprs[0]->getSourceRange().getEnd() : RParenLoc); |
| 860 | |
Douglas Gregor | 506ae41 | 2009-01-16 18:33:17 +0000 | [diff] [blame] | 861 | // C++ [expr.type.conv]p1: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 862 | // If the expression list is a single expression, the type conversion |
| 863 | // expression is equivalent (in definedness, and if defined in meaning) to the |
| 864 | // corresponding cast expression. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 865 | if (Exprs.size() == 1 && !ListInitialization) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 866 | Expr *Arg = Exprs[0]; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 867 | return BuildCXXFunctionalCastExpr(TInfo, LParenLoc, Arg, RParenLoc); |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 868 | } |
| 869 | |
Eli Friedman | c60ccf5 | 2012-02-29 00:00:28 +0000 | [diff] [blame] | 870 | QualType ElemTy = Ty; |
| 871 | if (Ty->isArrayType()) { |
| 872 | if (!ListInitialization) |
| 873 | return ExprError(Diag(TyBeginLoc, |
| 874 | diag::err_value_init_for_array_type) << FullRange); |
| 875 | ElemTy = Context.getBaseElementType(Ty); |
| 876 | } |
| 877 | |
| 878 | if (!Ty->isVoidType() && |
| 879 | RequireCompleteType(TyBeginLoc, ElemTy, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 880 | diag::err_invalid_incomplete_type_use, FullRange)) |
Eli Friedman | c60ccf5 | 2012-02-29 00:00:28 +0000 | [diff] [blame] | 881 | return ExprError(); |
| 882 | |
| 883 | if (RequireNonAbstractType(TyBeginLoc, Ty, |
| 884 | diag::err_allocation_of_abstract_type)) |
| 885 | return ExprError(); |
| 886 | |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 887 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 888 | InitializationKind Kind = |
| 889 | Exprs.size() ? ListInitialization |
| 890 | ? InitializationKind::CreateDirectList(TyBeginLoc) |
| 891 | : InitializationKind::CreateDirect(TyBeginLoc, LParenLoc, RParenLoc) |
| 892 | : InitializationKind::CreateValue(TyBeginLoc, LParenLoc, RParenLoc); |
| 893 | InitializationSequence InitSeq(*this, Entity, Kind, Exprs); |
| 894 | ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 895 | |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 896 | if (!Result.isInvalid() && ListInitialization && |
| 897 | isa<InitListExpr>(Result.get())) { |
| 898 | // If the list-initialization doesn't involve a constructor call, we'll get |
| 899 | // the initializer-list (with corrected type) back, but that's not what we |
| 900 | // want, since it will be treated as an initializer list in further |
| 901 | // processing. Explicitly insert a cast here. |
| 902 | InitListExpr *List = cast<InitListExpr>(Result.take()); |
| 903 | Result = Owned(CXXFunctionalCastExpr::Create(Context, List->getType(), |
| 904 | Expr::getValueKindForType(TInfo->getType()), |
| 905 | TInfo, TyBeginLoc, CK_NoOp, |
| 906 | List, /*Path=*/0, RParenLoc)); |
| 907 | } |
| 908 | |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 909 | // FIXME: Improve AST representation? |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 910 | return Result; |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 911 | } |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 912 | |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 913 | /// doesUsualArrayDeleteWantSize - Answers whether the usual |
| 914 | /// operator delete[] for the given type has a size_t parameter. |
| 915 | static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc, |
| 916 | QualType allocType) { |
| 917 | const RecordType *record = |
| 918 | allocType->getBaseElementTypeUnsafe()->getAs<RecordType>(); |
| 919 | if (!record) return false; |
| 920 | |
| 921 | // Try to find an operator delete[] in class scope. |
| 922 | |
| 923 | DeclarationName deleteName = |
| 924 | S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete); |
| 925 | LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName); |
| 926 | S.LookupQualifiedName(ops, record->getDecl()); |
| 927 | |
| 928 | // We're just doing this for information. |
| 929 | ops.suppressDiagnostics(); |
| 930 | |
| 931 | // Very likely: there's no operator delete[]. |
| 932 | if (ops.empty()) return false; |
| 933 | |
| 934 | // If it's ambiguous, it should be illegal to call operator delete[] |
| 935 | // on this thing, so it doesn't matter if we allocate extra space or not. |
| 936 | if (ops.isAmbiguous()) return false; |
| 937 | |
| 938 | LookupResult::Filter filter = ops.makeFilter(); |
| 939 | while (filter.hasNext()) { |
| 940 | NamedDecl *del = filter.next()->getUnderlyingDecl(); |
| 941 | |
| 942 | // C++0x [basic.stc.dynamic.deallocation]p2: |
| 943 | // A template instance is never a usual deallocation function, |
| 944 | // regardless of its signature. |
| 945 | if (isa<FunctionTemplateDecl>(del)) { |
| 946 | filter.erase(); |
| 947 | continue; |
| 948 | } |
| 949 | |
| 950 | // C++0x [basic.stc.dynamic.deallocation]p2: |
| 951 | // If class T does not declare [an operator delete[] with one |
| 952 | // parameter] but does declare a member deallocation function |
| 953 | // named operator delete[] with exactly two parameters, the |
| 954 | // second of which has type std::size_t, then this function |
| 955 | // is a usual deallocation function. |
| 956 | if (!cast<CXXMethodDecl>(del)->isUsualDeallocationFunction()) { |
| 957 | filter.erase(); |
| 958 | continue; |
| 959 | } |
| 960 | } |
| 961 | filter.done(); |
| 962 | |
| 963 | if (!ops.isSingleResult()) return false; |
| 964 | |
| 965 | const FunctionDecl *del = cast<FunctionDecl>(ops.getFoundDecl()); |
| 966 | return (del->getNumParams() == 2); |
| 967 | } |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 968 | |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 969 | /// \brief Parsed a C++ 'new' expression (C++ 5.3.4). |
James Dennett | ef2b5b3 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 970 | /// |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 971 | /// E.g.: |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 972 | /// @code new (memory) int[size][4] @endcode |
| 973 | /// or |
| 974 | /// @code ::new Foo(23, "hello") @endcode |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 975 | /// |
| 976 | /// \param StartLoc The first location of the expression. |
| 977 | /// \param UseGlobal True if 'new' was prefixed with '::'. |
| 978 | /// \param PlacementLParen Opening paren of the placement arguments. |
| 979 | /// \param PlacementArgs Placement new arguments. |
| 980 | /// \param PlacementRParen Closing paren of the placement arguments. |
| 981 | /// \param TypeIdParens If the type is in parens, the source range. |
| 982 | /// \param D The type to be allocated, as well as array dimensions. |
James Dennett | ef2b5b3 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 983 | /// \param Initializer The initializing expression or initializer-list, or null |
| 984 | /// if there is none. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 985 | ExprResult |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 986 | Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 987 | SourceLocation PlacementLParen, MultiExprArg PlacementArgs, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 988 | SourceLocation PlacementRParen, SourceRange TypeIdParens, |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 989 | Declarator &D, Expr *Initializer) { |
Richard Smith | a2c3646 | 2013-04-26 16:15:35 +0000 | [diff] [blame] | 990 | bool TypeContainsAuto = D.getDeclSpec().containsPlaceholderType(); |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 991 | |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 992 | Expr *ArraySize = 0; |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 993 | // If the specified type is an array, unwrap it and save the expression. |
| 994 | if (D.getNumTypeObjects() > 0 && |
| 995 | D.getTypeObject(0).Kind == DeclaratorChunk::Array) { |
James Dennett | ef2b5b3 | 2012-06-15 22:23:43 +0000 | [diff] [blame] | 996 | DeclaratorChunk &Chunk = D.getTypeObject(0); |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 997 | if (TypeContainsAuto) |
| 998 | return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto) |
| 999 | << D.getSourceRange()); |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1000 | if (Chunk.Arr.hasStatic) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1001 | return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new) |
| 1002 | << D.getSourceRange()); |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1003 | if (!Chunk.Arr.NumElts) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1004 | return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size) |
| 1005 | << D.getSourceRange()); |
Sebastian Redl | 8ce35b0 | 2009-10-25 21:45:37 +0000 | [diff] [blame] | 1006 | |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1007 | ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts); |
Sebastian Redl | 8ce35b0 | 2009-10-25 21:45:37 +0000 | [diff] [blame] | 1008 | D.DropFirstTypeObject(); |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Douglas Gregor | 043cad2 | 2009-09-11 00:18:58 +0000 | [diff] [blame] | 1011 | // Every dimension shall be of constant size. |
Sebastian Redl | 8ce35b0 | 2009-10-25 21:45:37 +0000 | [diff] [blame] | 1012 | if (ArraySize) { |
| 1013 | for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) { |
Douglas Gregor | 043cad2 | 2009-09-11 00:18:58 +0000 | [diff] [blame] | 1014 | if (D.getTypeObject(I).Kind != DeclaratorChunk::Array) |
| 1015 | break; |
| 1016 | |
| 1017 | DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr; |
| 1018 | if (Expr *NumElts = (Expr *)Array.NumElts) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 1019 | if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) { |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 1020 | Array.NumElts |
| 1021 | = VerifyIntegerConstantExpression(NumElts, 0, |
| 1022 | diag::err_new_array_nonconst) |
| 1023 | .take(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 1024 | if (!Array.NumElts) |
| 1025 | return ExprError(); |
Douglas Gregor | 043cad2 | 2009-09-11 00:18:58 +0000 | [diff] [blame] | 1026 | } |
| 1027 | } |
| 1028 | } |
| 1029 | } |
Sebastian Redl | 8ce35b0 | 2009-10-25 21:45:37 +0000 | [diff] [blame] | 1030 | |
Argyrios Kyrtzidis | 0b8c98f | 2011-06-28 03:01:23 +0000 | [diff] [blame] | 1031 | TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/0); |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 1032 | QualType AllocType = TInfo->getType(); |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 1033 | if (D.isInvalidType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1034 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1035 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1036 | SourceRange DirectInitRange; |
| 1037 | if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) |
| 1038 | DirectInitRange = List->getSourceRange(); |
| 1039 | |
David Blaikie | 5305641 | 2012-11-07 00:12:38 +0000 | [diff] [blame] | 1040 | return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal, |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1041 | PlacementLParen, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1042 | PlacementArgs, |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1043 | PlacementRParen, |
Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1044 | TypeIdParens, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1045 | AllocType, |
Douglas Gregor | 1bb2a93 | 2010-09-07 21:49:58 +0000 | [diff] [blame] | 1046 | TInfo, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1047 | ArraySize, |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1048 | DirectInitRange, |
| 1049 | Initializer, |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1050 | TypeContainsAuto); |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 1053 | static bool isLegalArrayNewInitializer(CXXNewExpr::InitializationStyle Style, |
| 1054 | Expr *Init) { |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1055 | if (!Init) |
| 1056 | return true; |
Sebastian Redl | 1f27805 | 2012-02-17 08:42:32 +0000 | [diff] [blame] | 1057 | if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init)) |
| 1058 | return PLE->getNumExprs() == 0; |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1059 | if (isa<ImplicitValueInitExpr>(Init)) |
| 1060 | return true; |
| 1061 | else if (CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) |
| 1062 | return !CCE->isListInitialization() && |
| 1063 | CCE->getConstructor()->isDefaultConstructor(); |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 1064 | else if (Style == CXXNewExpr::ListInit) { |
| 1065 | assert(isa<InitListExpr>(Init) && |
| 1066 | "Shouldn't create list CXXConstructExprs for arrays."); |
| 1067 | return true; |
| 1068 | } |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1069 | return false; |
| 1070 | } |
| 1071 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1072 | ExprResult |
David Blaikie | 5305641 | 2012-11-07 00:12:38 +0000 | [diff] [blame] | 1073 | Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1074 | SourceLocation PlacementLParen, |
| 1075 | MultiExprArg PlacementArgs, |
| 1076 | SourceLocation PlacementRParen, |
Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1077 | SourceRange TypeIdParens, |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1078 | QualType AllocType, |
Douglas Gregor | 1bb2a93 | 2010-09-07 21:49:58 +0000 | [diff] [blame] | 1079 | TypeSourceInfo *AllocTypeInfo, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1080 | Expr *ArraySize, |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1081 | SourceRange DirectInitRange, |
| 1082 | Expr *Initializer, |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1083 | bool TypeMayContainAuto) { |
Douglas Gregor | 1bb2a93 | 2010-09-07 21:49:58 +0000 | [diff] [blame] | 1084 | SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange(); |
David Blaikie | 5305641 | 2012-11-07 00:12:38 +0000 | [diff] [blame] | 1085 | SourceLocation StartLoc = Range.getBegin(); |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1086 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1087 | CXXNewExpr::InitializationStyle initStyle; |
| 1088 | if (DirectInitRange.isValid()) { |
| 1089 | assert(Initializer && "Have parens but no initializer."); |
| 1090 | initStyle = CXXNewExpr::CallInit; |
| 1091 | } else if (Initializer && isa<InitListExpr>(Initializer)) |
| 1092 | initStyle = CXXNewExpr::ListInit; |
| 1093 | else { |
| 1094 | assert((!Initializer || isa<ImplicitValueInitExpr>(Initializer) || |
| 1095 | isa<CXXConstructExpr>(Initializer)) && |
| 1096 | "Initializer expression that cannot have been implicitly created."); |
| 1097 | initStyle = CXXNewExpr::NoInit; |
| 1098 | } |
| 1099 | |
| 1100 | Expr **Inits = &Initializer; |
| 1101 | unsigned NumInits = Initializer ? 1 : 0; |
Richard Smith | 73ed67c | 2012-11-26 08:32:48 +0000 | [diff] [blame] | 1102 | if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) { |
| 1103 | assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init"); |
| 1104 | Inits = List->getExprs(); |
| 1105 | NumInits = List->getNumExprs(); |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1106 | } |
| 1107 | |
Richard Smith | 73ed67c | 2012-11-26 08:32:48 +0000 | [diff] [blame] | 1108 | // Determine whether we've already built the initializer. |
| 1109 | bool HaveCompleteInit = false; |
| 1110 | if (Initializer && isa<CXXConstructExpr>(Initializer) && |
| 1111 | !isa<CXXTemporaryObjectExpr>(Initializer)) |
| 1112 | HaveCompleteInit = true; |
| 1113 | else if (Initializer && isa<ImplicitValueInitExpr>(Initializer)) |
| 1114 | HaveCompleteInit = true; |
| 1115 | |
Richard Smith | 8ad6c86 | 2012-07-08 04:13:07 +0000 | [diff] [blame] | 1116 | // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for. |
Richard Smith | dc7a4f5 | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 1117 | if (TypeMayContainAuto && AllocType->isUndeducedType()) { |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1118 | if (initStyle == CXXNewExpr::NoInit || NumInits == 0) |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1119 | return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg) |
| 1120 | << AllocType << TypeRange); |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1121 | if (initStyle == CXXNewExpr::ListInit) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1122 | return ExprError(Diag(Inits[0]->getLocStart(), |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1123 | diag::err_auto_new_requires_parens) |
| 1124 | << AllocType << TypeRange); |
| 1125 | if (NumInits > 1) { |
| 1126 | Expr *FirstBad = Inits[1]; |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1127 | return ExprError(Diag(FirstBad->getLocStart(), |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1128 | diag::err_auto_new_ctor_multiple_expressions) |
| 1129 | << AllocType << TypeRange); |
| 1130 | } |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1131 | Expr *Deduce = Inits[0]; |
Richard Smith | 9b13175 | 2013-04-30 21:23:01 +0000 | [diff] [blame] | 1132 | QualType DeducedType; |
Richard Smith | 8ad6c86 | 2012-07-08 04:13:07 +0000 | [diff] [blame] | 1133 | if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed) |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1134 | return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure) |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1135 | << AllocType << Deduce->getType() |
| 1136 | << TypeRange << Deduce->getSourceRange()); |
Richard Smith | 9b13175 | 2013-04-30 21:23:01 +0000 | [diff] [blame] | 1137 | if (DeducedType.isNull()) |
Richard Smith | a085da8 | 2011-03-17 16:11:59 +0000 | [diff] [blame] | 1138 | return ExprError(); |
Richard Smith | 9b13175 | 2013-04-30 21:23:01 +0000 | [diff] [blame] | 1139 | AllocType = DeducedType; |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1140 | } |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1141 | |
Douglas Gregor | 3caf04e | 2010-05-16 16:01:03 +0000 | [diff] [blame] | 1142 | // Per C++0x [expr.new]p5, the type being constructed may be a |
| 1143 | // typedef of an array type. |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1144 | if (!ArraySize) { |
Douglas Gregor | 3caf04e | 2010-05-16 16:01:03 +0000 | [diff] [blame] | 1145 | if (const ConstantArrayType *Array |
| 1146 | = Context.getAsConstantArrayType(AllocType)) { |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 1147 | ArraySize = IntegerLiteral::Create(Context, Array->getSize(), |
| 1148 | Context.getSizeType(), |
| 1149 | TypeRange.getEnd()); |
Douglas Gregor | 3caf04e | 2010-05-16 16:01:03 +0000 | [diff] [blame] | 1150 | AllocType = Array->getElementType(); |
| 1151 | } |
| 1152 | } |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1153 | |
Douglas Gregor | a075076 | 2010-10-06 16:00:31 +0000 | [diff] [blame] | 1154 | if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange)) |
| 1155 | return ExprError(); |
| 1156 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1157 | if (initStyle == CXXNewExpr::ListInit && isStdInitializerList(AllocType, 0)) { |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1158 | Diag(AllocTypeInfo->getTypeLoc().getBeginLoc(), |
| 1159 | diag::warn_dangling_std_initializer_list) |
Sebastian Redl | 772291a | 2012-02-19 16:31:05 +0000 | [diff] [blame] | 1160 | << /*at end of FE*/0 << Inits[0]->getSourceRange(); |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1161 | } |
| 1162 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1163 | // In ARC, infer 'retaining' for the allocated |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1164 | if (getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1165 | AllocType.getObjCLifetime() == Qualifiers::OCL_None && |
| 1166 | AllocType->isObjCLifetimeType()) { |
| 1167 | AllocType = Context.getLifetimeQualifiedType(AllocType, |
| 1168 | AllocType->getObjCARCImplicitLifetime()); |
| 1169 | } |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1170 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1171 | QualType ResultType = Context.getPointerType(AllocType); |
| 1172 | |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 1173 | if (ArraySize && ArraySize->getType()->isNonOverloadPlaceholderType()) { |
| 1174 | ExprResult result = CheckPlaceholderExpr(ArraySize); |
| 1175 | if (result.isInvalid()) return ExprError(); |
| 1176 | ArraySize = result.take(); |
| 1177 | } |
Richard Smith | f39aec1 | 2012-02-04 07:07:42 +0000 | [diff] [blame] | 1178 | // C++98 5.3.4p6: "The expression in a direct-new-declarator shall have |
| 1179 | // integral or enumeration type with a non-negative value." |
| 1180 | // C++11 [expr.new]p6: The expression [...] shall be of integral or unscoped |
| 1181 | // enumeration type, or a class type for which a single non-explicit |
| 1182 | // conversion function to integral or unscoped enumeration type exists. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1183 | if (ArraySize && !ArraySize->isTypeDependent()) { |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 1184 | class SizeConvertDiagnoser : public ICEConvertDiagnoser { |
| 1185 | Expr *ArraySize; |
| 1186 | |
| 1187 | public: |
| 1188 | SizeConvertDiagnoser(Expr *ArraySize) |
| 1189 | : ICEConvertDiagnoser(false, false), ArraySize(ArraySize) { } |
| 1190 | |
| 1191 | virtual DiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, |
| 1192 | QualType T) { |
| 1193 | return S.Diag(Loc, diag::err_array_size_not_integral) |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1194 | << S.getLangOpts().CPlusPlus11 << T; |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
| 1197 | virtual DiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc, |
| 1198 | QualType T) { |
| 1199 | return S.Diag(Loc, diag::err_array_size_incomplete_type) |
| 1200 | << T << ArraySize->getSourceRange(); |
| 1201 | } |
| 1202 | |
| 1203 | virtual DiagnosticBuilder diagnoseExplicitConv(Sema &S, |
| 1204 | SourceLocation Loc, |
| 1205 | QualType T, |
| 1206 | QualType ConvTy) { |
| 1207 | return S.Diag(Loc, diag::err_array_size_explicit_conversion) << T << ConvTy; |
| 1208 | } |
| 1209 | |
| 1210 | virtual DiagnosticBuilder noteExplicitConv(Sema &S, |
| 1211 | CXXConversionDecl *Conv, |
| 1212 | QualType ConvTy) { |
| 1213 | return S.Diag(Conv->getLocation(), diag::note_array_size_conversion) |
| 1214 | << ConvTy->isEnumeralType() << ConvTy; |
| 1215 | } |
| 1216 | |
| 1217 | virtual DiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc, |
| 1218 | QualType T) { |
| 1219 | return S.Diag(Loc, diag::err_array_size_ambiguous_conversion) << T; |
| 1220 | } |
| 1221 | |
| 1222 | virtual DiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv, |
| 1223 | QualType ConvTy) { |
| 1224 | return S.Diag(Conv->getLocation(), diag::note_array_size_conversion) |
| 1225 | << ConvTy->isEnumeralType() << ConvTy; |
| 1226 | } |
| 1227 | |
| 1228 | virtual DiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc, |
| 1229 | QualType T, |
| 1230 | QualType ConvTy) { |
| 1231 | return S.Diag(Loc, |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1232 | S.getLangOpts().CPlusPlus11 |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 1233 | ? diag::warn_cxx98_compat_array_size_conversion |
| 1234 | : diag::ext_array_size_conversion) |
| 1235 | << T << ConvTy->isEnumeralType() << ConvTy; |
| 1236 | } |
| 1237 | } SizeDiagnoser(ArraySize); |
| 1238 | |
| 1239 | ExprResult ConvertedSize |
| 1240 | = ConvertToIntegralOrEnumerationType(StartLoc, ArraySize, SizeDiagnoser, |
| 1241 | /*AllowScopedEnumerations*/ false); |
Douglas Gregor | 6bc574d | 2010-06-30 00:20:43 +0000 | [diff] [blame] | 1242 | if (ConvertedSize.isInvalid()) |
| 1243 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1244 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 1245 | ArraySize = ConvertedSize.take(); |
John McCall | 806054d | 2012-01-11 00:14:46 +0000 | [diff] [blame] | 1246 | QualType SizeType = ArraySize->getType(); |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 1247 | if (!SizeType->isIntegralOrUnscopedEnumerationType()) |
Douglas Gregor | 6bc574d | 2010-06-30 00:20:43 +0000 | [diff] [blame] | 1248 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1249 | |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1250 | // C++98 [expr.new]p7: |
| 1251 | // The expression in a direct-new-declarator shall have integral type |
| 1252 | // with a non-negative value. |
| 1253 | // |
| 1254 | // Let's see if this is a constant < 0. If so, we reject it out of |
| 1255 | // hand. Otherwise, if it's not a constant, we must have an unparenthesized |
| 1256 | // array type. |
| 1257 | // |
| 1258 | // Note: such a construct has well-defined semantics in C++11: it throws |
| 1259 | // std::bad_array_new_length. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1260 | if (!ArraySize->isValueDependent()) { |
| 1261 | llvm::APSInt Value; |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 1262 | // We've already performed any required implicit conversion to integer or |
| 1263 | // unscoped enumeration type. |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1264 | if (ArraySize->isIntegerConstantExpr(Value, Context)) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1265 | if (Value < llvm::APSInt( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1266 | llvm::APInt::getNullValue(Value.getBitWidth()), |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1267 | Value.isUnsigned())) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1268 | if (getLangOpts().CPlusPlus11) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1269 | Diag(ArraySize->getLocStart(), |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1270 | diag::warn_typecheck_negative_array_new_size) |
Douglas Gregor | 2767ce2 | 2010-08-18 00:39:00 +0000 | [diff] [blame] | 1271 | << ArraySize->getSourceRange(); |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1272 | else |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1273 | return ExprError(Diag(ArraySize->getLocStart(), |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1274 | diag::err_typecheck_negative_array_size) |
| 1275 | << ArraySize->getSourceRange()); |
| 1276 | } else if (!AllocType->isDependentType()) { |
| 1277 | unsigned ActiveSizeBits = |
| 1278 | ConstantArrayType::getNumAddressingBits(Context, AllocType, Value); |
| 1279 | if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1280 | if (getLangOpts().CPlusPlus11) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1281 | Diag(ArraySize->getLocStart(), |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1282 | diag::warn_array_new_too_large) |
| 1283 | << Value.toString(10) |
| 1284 | << ArraySize->getSourceRange(); |
| 1285 | else |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1286 | return ExprError(Diag(ArraySize->getLocStart(), |
Richard Smith | 0b458fd | 2012-02-04 05:35:53 +0000 | [diff] [blame] | 1287 | diag::err_array_too_large) |
| 1288 | << Value.toString(10) |
| 1289 | << ArraySize->getSourceRange()); |
Douglas Gregor | 2767ce2 | 2010-08-18 00:39:00 +0000 | [diff] [blame] | 1290 | } |
| 1291 | } |
Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1292 | } else if (TypeIdParens.isValid()) { |
| 1293 | // Can't have dynamic array size when the type-id is in parentheses. |
| 1294 | Diag(ArraySize->getLocStart(), diag::ext_new_paren_array_nonconst) |
| 1295 | << ArraySize->getSourceRange() |
| 1296 | << FixItHint::CreateRemoval(TypeIdParens.getBegin()) |
| 1297 | << FixItHint::CreateRemoval(TypeIdParens.getEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1298 | |
Douglas Gregor | 4bd4031 | 2010-07-13 15:54:32 +0000 | [diff] [blame] | 1299 | TypeIdParens = SourceRange(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1300 | } |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1301 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1302 | |
John McCall | 7d16627 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 1303 | // Note that we do *not* convert the argument in any way. It can |
| 1304 | // be signed, larger than size_t, whatever. |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 1305 | } |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1306 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1307 | FunctionDecl *OperatorNew = 0; |
| 1308 | FunctionDecl *OperatorDelete = 0; |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 1309 | Expr **PlaceArgs = PlacementArgs.data(); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1310 | unsigned NumPlaceArgs = PlacementArgs.size(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1311 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1312 | if (!AllocType->isDependentType() && |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1313 | !Expr::hasAnyTypeDependentArguments( |
| 1314 | llvm::makeArrayRef(PlaceArgs, NumPlaceArgs)) && |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1315 | FindAllocationFunctions(StartLoc, |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 1316 | SourceRange(PlacementLParen, PlacementRParen), |
| 1317 | UseGlobal, AllocType, ArraySize, PlaceArgs, |
| 1318 | NumPlaceArgs, OperatorNew, OperatorDelete)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 1319 | return ExprError(); |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 1320 | |
| 1321 | // If this is an array allocation, compute whether the usual array |
| 1322 | // deallocation function for the type has a size_t parameter. |
| 1323 | bool UsualArrayDeleteWantsSize = false; |
| 1324 | if (ArraySize && !AllocType->isDependentType()) |
| 1325 | UsualArrayDeleteWantsSize |
| 1326 | = doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType); |
| 1327 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1328 | SmallVector<Expr *, 8> AllPlaceArgs; |
Fariborz Jahanian | 498429f | 2009-11-19 18:39:40 +0000 | [diff] [blame] | 1329 | if (OperatorNew) { |
| 1330 | // Add default arguments, if any. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1331 | const FunctionProtoType *Proto = |
Fariborz Jahanian | 498429f | 2009-11-19 18:39:40 +0000 | [diff] [blame] | 1332 | OperatorNew->getType()->getAs<FunctionProtoType>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1333 | VariadicCallType CallType = |
Fariborz Jahanian | 4cd1c70 | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 1334 | Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1335 | |
Anders Carlsson | 28e9483 | 2010-05-03 02:07:56 +0000 | [diff] [blame] | 1336 | if (GatherArgumentsForCall(PlacementLParen, OperatorNew, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1337 | Proto, 1, PlaceArgs, NumPlaceArgs, |
Anders Carlsson | 28e9483 | 2010-05-03 02:07:56 +0000 | [diff] [blame] | 1338 | AllPlaceArgs, CallType)) |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 1339 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1340 | |
Fariborz Jahanian | 498429f | 2009-11-19 18:39:40 +0000 | [diff] [blame] | 1341 | NumPlaceArgs = AllPlaceArgs.size(); |
| 1342 | if (NumPlaceArgs > 0) |
| 1343 | PlaceArgs = &AllPlaceArgs[0]; |
Eli Friedman | e61eb04 | 2012-02-18 04:48:30 +0000 | [diff] [blame] | 1344 | |
| 1345 | DiagnoseSentinelCalls(OperatorNew, PlacementLParen, |
| 1346 | PlaceArgs, NumPlaceArgs); |
| 1347 | |
| 1348 | // FIXME: Missing call to CheckFunctionCall or equivalent |
Fariborz Jahanian | 498429f | 2009-11-19 18:39:40 +0000 | [diff] [blame] | 1349 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1350 | |
Nick Lewycky | fca84b2 | 2012-01-24 21:15:41 +0000 | [diff] [blame] | 1351 | // Warn if the type is over-aligned and is being allocated by global operator |
| 1352 | // new. |
Nick Lewycky | 507a8a3 | 2012-02-04 03:30:14 +0000 | [diff] [blame] | 1353 | if (NumPlaceArgs == 0 && OperatorNew && |
Nick Lewycky | fca84b2 | 2012-01-24 21:15:41 +0000 | [diff] [blame] | 1354 | (OperatorNew->isImplicit() || |
| 1355 | getSourceManager().isInSystemHeader(OperatorNew->getLocStart()))) { |
| 1356 | if (unsigned Align = Context.getPreferredTypeAlign(AllocType.getTypePtr())){ |
| 1357 | unsigned SuitableAlign = Context.getTargetInfo().getSuitableAlign(); |
| 1358 | if (Align > SuitableAlign) |
| 1359 | Diag(StartLoc, diag::warn_overaligned_type) |
| 1360 | << AllocType |
| 1361 | << unsigned(Align / Context.getCharWidth()) |
| 1362 | << unsigned(SuitableAlign / Context.getCharWidth()); |
| 1363 | } |
| 1364 | } |
| 1365 | |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 1366 | QualType InitType = AllocType; |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1367 | // Array 'new' can't have any initializers except empty parentheses. |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 1368 | // Initializer lists are also allowed, in C++11. Rely on the parser for the |
| 1369 | // dialect distinction. |
| 1370 | if (ResultType->isArrayType() || ArraySize) { |
| 1371 | if (!isLegalArrayNewInitializer(initStyle, Initializer)) { |
| 1372 | SourceRange InitRange(Inits[0]->getLocStart(), |
| 1373 | Inits[NumInits - 1]->getLocEnd()); |
| 1374 | Diag(StartLoc, diag::err_new_array_init_args) << InitRange; |
| 1375 | return ExprError(); |
| 1376 | } |
| 1377 | if (InitListExpr *ILE = dyn_cast_or_null<InitListExpr>(Initializer)) { |
| 1378 | // We do the initialization typechecking against the array type |
| 1379 | // corresponding to the number of initializers + 1 (to also check |
| 1380 | // default-initialization). |
| 1381 | unsigned NumElements = ILE->getNumInits() + 1; |
| 1382 | InitType = Context.getConstantArrayType(AllocType, |
| 1383 | llvm::APInt(Context.getTypeSize(Context.getSizeType()), NumElements), |
| 1384 | ArrayType::Normal, 0); |
| 1385 | } |
Anders Carlsson | 48c9501 | 2010-05-03 15:45:23 +0000 | [diff] [blame] | 1386 | } |
| 1387 | |
Richard Smith | 73ed67c | 2012-11-26 08:32:48 +0000 | [diff] [blame] | 1388 | // If we can perform the initialization, and we've not already done so, |
| 1389 | // do it now. |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 1390 | if (!AllocType->isDependentType() && |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1391 | !Expr::hasAnyTypeDependentArguments( |
Richard Smith | 73ed67c | 2012-11-26 08:32:48 +0000 | [diff] [blame] | 1392 | llvm::makeArrayRef(Inits, NumInits)) && |
| 1393 | !HaveCompleteInit) { |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1394 | // C++11 [expr.new]p15: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 1395 | // A new-expression that creates an object of type T initializes that |
| 1396 | // object as follows: |
| 1397 | InitializationKind Kind |
| 1398 | // - If the new-initializer is omitted, the object is default- |
| 1399 | // initialized (8.5); if no initialization is performed, |
| 1400 | // the object has indeterminate value |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1401 | = initStyle == CXXNewExpr::NoInit |
| 1402 | ? InitializationKind::CreateDefault(TypeRange.getBegin()) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1403 | // - Otherwise, the new-initializer is interpreted according to the |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 1404 | // initialization rules of 8.5 for direct-initialization. |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1405 | : initStyle == CXXNewExpr::ListInit |
| 1406 | ? InitializationKind::CreateDirectList(TypeRange.getBegin()) |
| 1407 | : InitializationKind::CreateDirect(TypeRange.getBegin(), |
| 1408 | DirectInitRange.getBegin(), |
| 1409 | DirectInitRange.getEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1410 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 1411 | InitializedEntity Entity |
Sebastian Redl | bd45d25 | 2012-02-16 12:59:47 +0000 | [diff] [blame] | 1412 | = InitializedEntity::InitializeNew(StartLoc, InitType); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 1413 | InitializationSequence InitSeq(*this, Entity, Kind, MultiExprArg(Inits, NumInits)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1414 | ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind, |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1415 | MultiExprArg(Inits, NumInits)); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 1416 | if (FullInit.isInvalid()) |
| 1417 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1418 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1419 | // FullInit is our initializer; strip off CXXBindTemporaryExprs, because |
| 1420 | // we don't want the initialized object to be destructed. |
| 1421 | if (CXXBindTemporaryExpr *Binder = |
| 1422 | dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.get())) |
| 1423 | FullInit = Owned(Binder->getSubExpr()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1424 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1425 | Initializer = FullInit.take(); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1426 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1427 | |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1428 | // Mark the new and delete operators as referenced. |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 1429 | if (OperatorNew) { |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 1430 | if (DiagnoseUseOfDecl(OperatorNew, StartLoc)) |
| 1431 | return ExprError(); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1432 | MarkFunctionReferenced(StartLoc, OperatorNew); |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 1433 | } |
| 1434 | if (OperatorDelete) { |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 1435 | if (DiagnoseUseOfDecl(OperatorDelete, StartLoc)) |
| 1436 | return ExprError(); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1437 | MarkFunctionReferenced(StartLoc, OperatorDelete); |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 1438 | } |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1439 | |
John McCall | 84ff0fc | 2011-07-13 20:12:57 +0000 | [diff] [blame] | 1440 | // C++0x [expr.new]p17: |
| 1441 | // If the new expression creates an array of objects of class type, |
| 1442 | // access and ambiguity control are done for the destructor. |
David Blaikie | 426d6ca | 2012-03-10 23:40:02 +0000 | [diff] [blame] | 1443 | QualType BaseAllocType = Context.getBaseElementType(AllocType); |
| 1444 | if (ArraySize && !BaseAllocType->isDependentType()) { |
| 1445 | if (const RecordType *BaseRecordType = BaseAllocType->getAs<RecordType>()) { |
| 1446 | if (CXXDestructorDecl *dtor = LookupDestructor( |
| 1447 | cast<CXXRecordDecl>(BaseRecordType->getDecl()))) { |
| 1448 | MarkFunctionReferenced(StartLoc, dtor); |
| 1449 | CheckDestructorAccess(StartLoc, dtor, |
| 1450 | PDiag(diag::err_access_dtor) |
| 1451 | << BaseAllocType); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 1452 | if (DiagnoseUseOfDecl(dtor, StartLoc)) |
| 1453 | return ExprError(); |
David Blaikie | 426d6ca | 2012-03-10 23:40:02 +0000 | [diff] [blame] | 1454 | } |
John McCall | 84ff0fc | 2011-07-13 20:12:57 +0000 | [diff] [blame] | 1455 | } |
| 1456 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1457 | |
Ted Kremenek | ad7fe86 | 2010-02-11 22:51:03 +0000 | [diff] [blame] | 1458 | return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 1459 | OperatorDelete, |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 1460 | UsualArrayDeleteWantsSize, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 1461 | llvm::makeArrayRef(PlaceArgs, NumPlaceArgs), |
| 1462 | TypeIdParens, |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1463 | ArraySize, initStyle, Initializer, |
Douglas Gregor | 1bb2a93 | 2010-09-07 21:49:58 +0000 | [diff] [blame] | 1464 | ResultType, AllocTypeInfo, |
David Blaikie | 5305641 | 2012-11-07 00:12:38 +0000 | [diff] [blame] | 1465 | Range, DirectInitRange)); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1468 | /// \brief Checks that a type is suitable as the allocated type |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1469 | /// in a new-expression. |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1470 | bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1471 | SourceRange R) { |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1472 | // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an |
| 1473 | // abstract class type or array thereof. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1474 | if (AllocType->isFunctionType()) |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1475 | return Diag(Loc, diag::err_bad_new_type) |
| 1476 | << AllocType << 0 << R; |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1477 | else if (AllocType->isReferenceType()) |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1478 | return Diag(Loc, diag::err_bad_new_type) |
| 1479 | << AllocType << 1 << R; |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1480 | else if (!AllocType->isDependentType() && |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1481 | RequireCompleteType(Loc, AllocType, diag::err_new_incomplete_type,R)) |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1482 | return true; |
Douglas Gregor | 3433cf7 | 2009-05-21 00:00:09 +0000 | [diff] [blame] | 1483 | else if (RequireNonAbstractType(Loc, AllocType, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1484 | diag::err_allocation_of_abstract_type)) |
| 1485 | return true; |
Douglas Gregor | a075076 | 2010-10-06 16:00:31 +0000 | [diff] [blame] | 1486 | else if (AllocType->isVariablyModifiedType()) |
| 1487 | return Diag(Loc, diag::err_variably_modified_new_type) |
| 1488 | << AllocType; |
Douglas Gregor | 5666d36 | 2011-04-15 19:46:20 +0000 | [diff] [blame] | 1489 | else if (unsigned AddressSpace = AllocType.getAddressSpace()) |
| 1490 | return Diag(Loc, diag::err_address_space_qualified_new) |
| 1491 | << AllocType.getUnqualifiedType() << AddressSpace; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1492 | else if (getLangOpts().ObjCAutoRefCount) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1493 | if (const ArrayType *AT = Context.getAsArrayType(AllocType)) { |
| 1494 | QualType BaseAllocType = Context.getBaseElementType(AT); |
| 1495 | if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None && |
| 1496 | BaseAllocType->isObjCLifetimeType()) |
Argyrios Kyrtzidis | b8b0313 | 2011-06-24 00:08:59 +0000 | [diff] [blame] | 1497 | return Diag(Loc, diag::err_arc_new_array_without_ownership) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1498 | << BaseAllocType; |
| 1499 | } |
| 1500 | } |
Douglas Gregor | 5666d36 | 2011-04-15 19:46:20 +0000 | [diff] [blame] | 1501 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 1502 | return false; |
| 1503 | } |
| 1504 | |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1505 | /// \brief Determine whether the given function is a non-placement |
| 1506 | /// deallocation function. |
| 1507 | static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) { |
| 1508 | if (FD->isInvalidDecl()) |
| 1509 | return false; |
| 1510 | |
| 1511 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD)) |
| 1512 | return Method->isUsualDeallocationFunction(); |
| 1513 | |
| 1514 | return ((FD->getOverloadedOperator() == OO_Delete || |
| 1515 | FD->getOverloadedOperator() == OO_Array_Delete) && |
| 1516 | FD->getNumParams() == 1); |
| 1517 | } |
| 1518 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1519 | /// FindAllocationFunctions - Finds the overloads of operator new and delete |
| 1520 | /// that are appropriate for the allocation. |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 1521 | bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, |
| 1522 | bool UseGlobal, QualType AllocType, |
| 1523 | bool IsArray, Expr **PlaceArgs, |
| 1524 | unsigned NumPlaceArgs, |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1525 | FunctionDecl *&OperatorNew, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1526 | FunctionDecl *&OperatorDelete) { |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1527 | // --- Choosing an allocation function --- |
| 1528 | // C++ 5.3.4p8 - 14 & 18 |
| 1529 | // 1) If UseGlobal is true, only look in the global scope. Else, also look |
| 1530 | // in the scope of the allocated class. |
| 1531 | // 2) If an array size is given, look for operator new[], else look for |
| 1532 | // operator new. |
| 1533 | // 3) The first argument is always size_t. Append the arguments from the |
| 1534 | // placement form. |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1535 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1536 | SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1537 | // We don't care about the actual value of this argument. |
| 1538 | // FIXME: Should the Sema create the expression and embed it in the syntax |
| 1539 | // tree? Or should the consumer just recalculate the value? |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 1540 | IntegerLiteral Size(Context, llvm::APInt::getNullValue( |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 1541 | Context.getTargetInfo().getPointerWidth(0)), |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 1542 | Context.getSizeType(), |
| 1543 | SourceLocation()); |
| 1544 | AllocArgs[0] = &Size; |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1545 | std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1); |
| 1546 | |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1547 | // C++ [expr.new]p8: |
| 1548 | // If the allocated type is a non-array type, the allocation |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 1549 | // function's name is operator new and the deallocation function's |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1550 | // name is operator delete. If the allocated type is an array |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 1551 | // type, the allocation function's name is operator new[] and the |
| 1552 | // deallocation function's name is operator delete[]. |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1553 | DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName( |
| 1554 | IsArray ? OO_Array_New : OO_New); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1555 | DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName( |
| 1556 | IsArray ? OO_Array_Delete : OO_Delete); |
| 1557 | |
Argyrios Kyrtzidis | d293298 | 2010-08-25 23:14:56 +0000 | [diff] [blame] | 1558 | QualType AllocElemType = Context.getBaseElementType(AllocType); |
| 1559 | |
| 1560 | if (AllocElemType->isRecordType() && !UseGlobal) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1561 | CXXRecordDecl *Record |
Argyrios Kyrtzidis | d293298 | 2010-08-25 23:14:56 +0000 | [diff] [blame] | 1562 | = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl()); |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 1563 | if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0], |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1564 | AllocArgs.size(), Record, /*AllowMissing=*/true, |
| 1565 | OperatorNew)) |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1566 | return true; |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1567 | } |
| 1568 | if (!OperatorNew) { |
| 1569 | // Didn't find a member overload. Look for a global one. |
| 1570 | DeclareGlobalNewDelete(); |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1571 | DeclContext *TUDecl = Context.getTranslationUnitDecl(); |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 1572 | if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0], |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1573 | AllocArgs.size(), TUDecl, /*AllowMissing=*/false, |
| 1574 | OperatorNew)) |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1575 | return true; |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1576 | } |
| 1577 | |
John McCall | 9c82afc | 2010-04-20 02:18:25 +0000 | [diff] [blame] | 1578 | // We don't need an operator delete if we're running under |
| 1579 | // -fno-exceptions. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1580 | if (!getLangOpts().Exceptions) { |
John McCall | 9c82afc | 2010-04-20 02:18:25 +0000 | [diff] [blame] | 1581 | OperatorDelete = 0; |
| 1582 | return false; |
| 1583 | } |
| 1584 | |
Anders Carlsson | d958389 | 2009-05-31 20:26:12 +0000 | [diff] [blame] | 1585 | // FindAllocationOverload can change the passed in arguments, so we need to |
| 1586 | // copy them back. |
| 1587 | if (NumPlaceArgs > 0) |
| 1588 | std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1589 | |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1590 | // C++ [expr.new]p19: |
| 1591 | // |
| 1592 | // If the new-expression begins with a unary :: operator, the |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 1593 | // deallocation function's name is looked up in the global |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1594 | // scope. Otherwise, if the allocated type is a class type T or an |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 1595 | // array thereof, the deallocation function's name is looked up in |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1596 | // the scope of T. If this lookup fails to find the name, or if |
| 1597 | // the allocated type is not a class type or array thereof, the |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 1598 | // deallocation function's name is looked up in the global scope. |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1599 | LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName); |
Argyrios Kyrtzidis | d293298 | 2010-08-25 23:14:56 +0000 | [diff] [blame] | 1600 | if (AllocElemType->isRecordType() && !UseGlobal) { |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1601 | CXXRecordDecl *RD |
Argyrios Kyrtzidis | d293298 | 2010-08-25 23:14:56 +0000 | [diff] [blame] | 1602 | = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl()); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1603 | LookupQualifiedName(FoundDelete, RD); |
| 1604 | } |
John McCall | 90c8c57 | 2010-03-18 08:19:33 +0000 | [diff] [blame] | 1605 | if (FoundDelete.isAmbiguous()) |
| 1606 | return true; // FIXME: clean up expressions? |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1607 | |
| 1608 | if (FoundDelete.empty()) { |
| 1609 | DeclareGlobalNewDelete(); |
| 1610 | LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl()); |
| 1611 | } |
| 1612 | |
| 1613 | FoundDelete.suppressDiagnostics(); |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1614 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1615 | SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1616 | |
John McCall | edeb6c9 | 2010-09-14 21:34:24 +0000 | [diff] [blame] | 1617 | // Whether we're looking for a placement operator delete is dictated |
| 1618 | // by whether we selected a placement operator new, not by whether |
| 1619 | // we had explicit placement arguments. This matters for things like |
| 1620 | // struct A { void *operator new(size_t, int = 0); ... }; |
| 1621 | // A *a = new A() |
| 1622 | bool isPlacementNew = (NumPlaceArgs > 0 || OperatorNew->param_size() != 1); |
| 1623 | |
| 1624 | if (isPlacementNew) { |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1625 | // C++ [expr.new]p20: |
| 1626 | // A declaration of a placement deallocation function matches the |
| 1627 | // declaration of a placement allocation function if it has the |
| 1628 | // same number of parameters and, after parameter transformations |
| 1629 | // (8.3.5), all parameter types except the first are |
| 1630 | // identical. [...] |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1631 | // |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1632 | // To perform this comparison, we compute the function type that |
| 1633 | // the deallocation function should have, and use that type both |
| 1634 | // for template argument deduction and for comparison purposes. |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1635 | // |
| 1636 | // FIXME: this comparison should ignore CC and the like. |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1637 | QualType ExpectedFunctionType; |
| 1638 | { |
| 1639 | const FunctionProtoType *Proto |
| 1640 | = OperatorNew->getType()->getAs<FunctionProtoType>(); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1641 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1642 | SmallVector<QualType, 4> ArgTypes; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1643 | ArgTypes.push_back(Context.VoidPtrTy); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1644 | for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I) |
| 1645 | ArgTypes.push_back(Proto->getArgType(I)); |
| 1646 | |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1647 | FunctionProtoType::ExtProtoInfo EPI; |
| 1648 | EPI.Variadic = Proto->isVariadic(); |
| 1649 | |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1650 | ExpectedFunctionType |
Jordan Rose | bea522f | 2013-03-08 21:51:21 +0000 | [diff] [blame] | 1651 | = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1652 | } |
| 1653 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1654 | for (LookupResult::iterator D = FoundDelete.begin(), |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1655 | DEnd = FoundDelete.end(); |
| 1656 | D != DEnd; ++D) { |
| 1657 | FunctionDecl *Fn = 0; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1658 | if (FunctionTemplateDecl *FnTmpl |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1659 | = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) { |
| 1660 | // Perform template argument deduction to try to match the |
| 1661 | // expected function type. |
Craig Topper | 93e4599 | 2012-09-19 02:26:47 +0000 | [diff] [blame] | 1662 | TemplateDeductionInfo Info(StartLoc); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1663 | if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info)) |
| 1664 | continue; |
| 1665 | } else |
| 1666 | Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl()); |
| 1667 | |
| 1668 | if (Context.hasSameType(Fn->getType(), ExpectedFunctionType)) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1669 | Matches.push_back(std::make_pair(D.getPair(), Fn)); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1670 | } |
| 1671 | } else { |
| 1672 | // C++ [expr.new]p20: |
| 1673 | // [...] Any non-placement deallocation function matches a |
| 1674 | // non-placement allocation function. [...] |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1675 | for (LookupResult::iterator D = FoundDelete.begin(), |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1676 | DEnd = FoundDelete.end(); |
| 1677 | D != DEnd; ++D) { |
| 1678 | if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl())) |
| 1679 | if (isNonPlacementDeallocationFunction(Fn)) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1680 | Matches.push_back(std::make_pair(D.getPair(), Fn)); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1681 | } |
| 1682 | } |
| 1683 | |
| 1684 | // C++ [expr.new]p20: |
| 1685 | // [...] If the lookup finds a single matching deallocation |
| 1686 | // function, that function will be called; otherwise, no |
| 1687 | // deallocation function will be called. |
| 1688 | if (Matches.size() == 1) { |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1689 | OperatorDelete = Matches[0].second; |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1690 | |
| 1691 | // C++0x [expr.new]p20: |
| 1692 | // If the lookup finds the two-parameter form of a usual |
| 1693 | // deallocation function (3.7.4.2) and that function, considered |
| 1694 | // as a placement deallocation function, would have been |
| 1695 | // selected as a match for the allocation function, the program |
| 1696 | // is ill-formed. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1697 | if (NumPlaceArgs && getLangOpts().CPlusPlus11 && |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1698 | isNonPlacementDeallocationFunction(OperatorDelete)) { |
| 1699 | Diag(StartLoc, diag::err_placement_new_non_placement_delete) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1700 | << SourceRange(PlaceArgs[0]->getLocStart(), |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1701 | PlaceArgs[NumPlaceArgs - 1]->getLocEnd()); |
| 1702 | Diag(OperatorDelete->getLocation(), diag::note_previous_decl) |
| 1703 | << DeleteName; |
John McCall | 90c8c57 | 2010-03-18 08:19:33 +0000 | [diff] [blame] | 1704 | } else { |
| 1705 | CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(), |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1706 | Matches[0].first); |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1707 | } |
| 1708 | } |
| 1709 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1710 | return false; |
| 1711 | } |
| 1712 | |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1713 | /// FindAllocationOverload - Find an fitting overload for the allocation |
| 1714 | /// function in the specified scope. |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 1715 | bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, |
| 1716 | DeclarationName Name, Expr** Args, |
| 1717 | unsigned NumArgs, DeclContext *Ctx, |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1718 | bool AllowMissing, FunctionDecl *&Operator, |
| 1719 | bool Diagnose) { |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1720 | LookupResult R(*this, Name, StartLoc, LookupOrdinaryName); |
| 1721 | LookupQualifiedName(R, Ctx); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1722 | if (R.empty()) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1723 | if (AllowMissing || !Diagnose) |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1724 | return false; |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1725 | return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call) |
Chris Lattner | 4330d65 | 2009-02-17 07:29:20 +0000 | [diff] [blame] | 1726 | << Name << Range; |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1727 | } |
| 1728 | |
John McCall | 90c8c57 | 2010-03-18 08:19:33 +0000 | [diff] [blame] | 1729 | if (R.isAmbiguous()) |
| 1730 | return true; |
| 1731 | |
| 1732 | R.suppressDiagnostics(); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1733 | |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 1734 | OverloadCandidateSet Candidates(StartLoc); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1735 | for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end(); |
Douglas Gregor | 5d64e5b | 2009-09-30 00:03:47 +0000 | [diff] [blame] | 1736 | Alloc != AllocEnd; ++Alloc) { |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 1737 | // Even member operator new/delete are implicitly treated as |
| 1738 | // static, so don't use AddMemberCandidate. |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1739 | NamedDecl *D = (*Alloc)->getUnderlyingDecl(); |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1740 | |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1741 | if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) { |
| 1742 | AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(), |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1743 | /*ExplicitTemplateArgs=*/0, |
| 1744 | llvm::makeArrayRef(Args, NumArgs), |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1745 | Candidates, |
| 1746 | /*SuppressUserConversions=*/false); |
Douglas Gregor | 9091656 | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1747 | continue; |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1748 | } |
| 1749 | |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 1750 | FunctionDecl *Fn = cast<FunctionDecl>(D); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1751 | AddOverloadCandidate(Fn, Alloc.getPair(), |
| 1752 | llvm::makeArrayRef(Args, NumArgs), Candidates, |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1753 | /*SuppressUserConversions=*/false); |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | // Do the resolution. |
| 1757 | OverloadCandidateSet::iterator Best; |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 1758 | switch (Candidates.BestViableFunction(*this, StartLoc, Best)) { |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1759 | case OR_Success: { |
| 1760 | // Got one! |
| 1761 | FunctionDecl *FnDecl = Best->Function; |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1762 | MarkFunctionReferenced(StartLoc, FnDecl); |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1763 | // The first argument is size_t, and the first parameter must be size_t, |
| 1764 | // too. This is checked on declaration and can be assumed. (It can't be |
| 1765 | // asserted on, though, since invalid decls are left in there.) |
John McCall | 90c8c57 | 2010-03-18 08:19:33 +0000 | [diff] [blame] | 1766 | // Watch out for variadic allocator function. |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 1767 | unsigned NumArgsInFnDecl = FnDecl->getNumParams(); |
| 1768 | for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1769 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, |
| 1770 | FnDecl->getParamDecl(i)); |
| 1771 | |
| 1772 | if (!Diagnose && !CanPerformCopyInitialization(Entity, Owned(Args[i]))) |
| 1773 | return true; |
| 1774 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1775 | ExprResult Result |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1776 | = PerformCopyInitialization(Entity, SourceLocation(), Owned(Args[i])); |
Douglas Gregor | 29ecaba | 2010-03-26 20:35:59 +0000 | [diff] [blame] | 1777 | if (Result.isInvalid()) |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1778 | return true; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1779 | |
Douglas Gregor | 29ecaba | 2010-03-26 20:35:59 +0000 | [diff] [blame] | 1780 | Args[i] = Result.takeAs<Expr>(); |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1781 | } |
Richard Smith | 9a561d5 | 2012-02-26 09:11:52 +0000 | [diff] [blame] | 1782 | |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1783 | Operator = FnDecl; |
Richard Smith | 9a561d5 | 2012-02-26 09:11:52 +0000 | [diff] [blame] | 1784 | |
| 1785 | if (CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), |
| 1786 | Best->FoundDecl, Diagnose) == AR_inaccessible) |
| 1787 | return true; |
| 1788 | |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1789 | return false; |
| 1790 | } |
| 1791 | |
| 1792 | case OR_No_Viable_Function: |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1793 | if (Diagnose) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1794 | Diag(StartLoc, diag::err_ovl_no_viable_function_in_call) |
| 1795 | << Name << Range; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1796 | Candidates.NoteCandidates(*this, OCD_AllCandidates, |
| 1797 | llvm::makeArrayRef(Args, NumArgs)); |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1798 | } |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1799 | return true; |
| 1800 | |
| 1801 | case OR_Ambiguous: |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1802 | if (Diagnose) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1803 | Diag(StartLoc, diag::err_ovl_ambiguous_call) |
| 1804 | << Name << Range; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1805 | Candidates.NoteCandidates(*this, OCD_ViableCandidates, |
| 1806 | llvm::makeArrayRef(Args, NumArgs)); |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1807 | } |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1808 | return true; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1809 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1810 | case OR_Deleted: { |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1811 | if (Diagnose) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1812 | Diag(StartLoc, diag::err_ovl_deleted_call) |
| 1813 | << Best->Function->isDeleted() |
| 1814 | << Name |
| 1815 | << getDeletedOrUnavailableSuffix(Best->Function) |
| 1816 | << Range; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1817 | Candidates.NoteCandidates(*this, OCD_AllCandidates, |
| 1818 | llvm::makeArrayRef(Args, NumArgs)); |
Chandler Carruth | 361d380 | 2011-06-08 10:26:03 +0000 | [diff] [blame] | 1819 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1820 | return true; |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1821 | } |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1822 | } |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1823 | llvm_unreachable("Unreachable, bad result from BestViableFunction"); |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 1824 | } |
| 1825 | |
| 1826 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1827 | /// DeclareGlobalNewDelete - Declare the global forms of operator new and |
| 1828 | /// delete. These are: |
| 1829 | /// @code |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1830 | /// // C++03: |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1831 | /// void* operator new(std::size_t) throw(std::bad_alloc); |
| 1832 | /// void* operator new[](std::size_t) throw(std::bad_alloc); |
| 1833 | /// void operator delete(void *) throw(); |
| 1834 | /// void operator delete[](void *) throw(); |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1835 | /// // C++0x: |
| 1836 | /// void* operator new(std::size_t); |
| 1837 | /// void* operator new[](std::size_t); |
| 1838 | /// void operator delete(void *); |
| 1839 | /// void operator delete[](void *); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1840 | /// @endcode |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1841 | /// C++0x operator delete is implicitly noexcept. |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1842 | /// Note that the placement and nothrow forms of new are *not* implicitly |
| 1843 | /// declared. Their use requires including \<new\>. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1844 | void Sema::DeclareGlobalNewDelete() { |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1845 | if (GlobalNewDeleteDeclared) |
| 1846 | return; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1847 | |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1848 | // C++ [basic.std.dynamic]p2: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1849 | // [...] The following allocation and deallocation functions (18.4) are |
| 1850 | // implicitly declared in global scope in each translation unit of a |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1851 | // program |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1852 | // |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1853 | // C++03: |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1854 | // void* operator new(std::size_t) throw(std::bad_alloc); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1855 | // void* operator new[](std::size_t) throw(std::bad_alloc); |
| 1856 | // void operator delete(void*) throw(); |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1857 | // void operator delete[](void*) throw(); |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1858 | // C++0x: |
| 1859 | // void* operator new(std::size_t); |
| 1860 | // void* operator new[](std::size_t); |
| 1861 | // void operator delete(void*); |
| 1862 | // void operator delete[](void*); |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1863 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1864 | // These implicit declarations introduce only the function names operator |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1865 | // new, operator new[], operator delete, operator delete[]. |
| 1866 | // |
| 1867 | // Here, we need to refer to std::bad_alloc, so we will implicitly declare |
| 1868 | // "std" or "bad_alloc" as necessary to form the exception specification. |
| 1869 | // However, we do not make these implicit declarations visible to name |
| 1870 | // lookup. |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1871 | // Note that the C++0x versions of operator delete are deallocation functions, |
| 1872 | // and thus are implicitly noexcept. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1873 | if (!StdBadAlloc && !getLangOpts().CPlusPlus11) { |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1874 | // The "std::bad_alloc" class has not yet been declared, so build it |
| 1875 | // implicitly. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1876 | StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class, |
| 1877 | getOrCreateStdNamespace(), |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 1878 | SourceLocation(), SourceLocation(), |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1879 | &PP.getIdentifierTable().get("bad_alloc"), |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 1880 | 0); |
Argyrios Kyrtzidis | 76c38d3 | 2010-08-02 07:14:54 +0000 | [diff] [blame] | 1881 | getStdBadAlloc()->setImplicit(true); |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1882 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1883 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1884 | GlobalNewDeleteDeclared = true; |
| 1885 | |
| 1886 | QualType VoidPtr = Context.getPointerType(Context.VoidTy); |
| 1887 | QualType SizeT = Context.getSizeType(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1888 | bool AssumeSaneOperatorNew = getLangOpts().AssumeSaneOperatorNew; |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1889 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1890 | DeclareGlobalAllocationFunction( |
| 1891 | Context.DeclarationNames.getCXXOperatorName(OO_New), |
Nuno Lopes | fc28448 | 2009-12-16 16:59:22 +0000 | [diff] [blame] | 1892 | VoidPtr, SizeT, AssumeSaneOperatorNew); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1893 | DeclareGlobalAllocationFunction( |
| 1894 | Context.DeclarationNames.getCXXOperatorName(OO_Array_New), |
Nuno Lopes | fc28448 | 2009-12-16 16:59:22 +0000 | [diff] [blame] | 1895 | VoidPtr, SizeT, AssumeSaneOperatorNew); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1896 | DeclareGlobalAllocationFunction( |
| 1897 | Context.DeclarationNames.getCXXOperatorName(OO_Delete), |
| 1898 | Context.VoidTy, VoidPtr); |
| 1899 | DeclareGlobalAllocationFunction( |
| 1900 | Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete), |
| 1901 | Context.VoidTy, VoidPtr); |
| 1902 | } |
| 1903 | |
| 1904 | /// DeclareGlobalAllocationFunction - Declares a single implicit global |
| 1905 | /// allocation function if it doesn't already exist. |
| 1906 | void Sema::DeclareGlobalAllocationFunction(DeclarationName Name, |
Nuno Lopes | fc28448 | 2009-12-16 16:59:22 +0000 | [diff] [blame] | 1907 | QualType Return, QualType Argument, |
| 1908 | bool AddMallocAttr) { |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1909 | DeclContext *GlobalCtx = Context.getTranslationUnitDecl(); |
| 1910 | |
| 1911 | // Check if this function is already declared. |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 1912 | { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1913 | DeclContext::lookup_result R = GlobalCtx->lookup(Name); |
| 1914 | for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end(); |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 1915 | Alloc != AllocEnd; ++Alloc) { |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1916 | // Only look at non-template functions, as it is the predefined, |
| 1917 | // non-templated allocation function we are trying to declare here. |
| 1918 | if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) { |
| 1919 | QualType InitialParamType = |
Douglas Gregor | 6e790ab | 2009-12-22 23:42:49 +0000 | [diff] [blame] | 1920 | Context.getCanonicalType( |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1921 | Func->getParamDecl(0)->getType().getUnqualifiedType()); |
| 1922 | // FIXME: Do we need to check for default arguments here? |
Douglas Gregor | 7b86862 | 2010-08-18 15:06:25 +0000 | [diff] [blame] | 1923 | if (Func->getNumParams() == 1 && InitialParamType == Argument) { |
| 1924 | if(AddMallocAttr && !Func->hasAttr<MallocAttr>()) |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1925 | Func->addAttr(::new (Context) MallocAttr(SourceLocation(), Context)); |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1926 | return; |
Douglas Gregor | 7b86862 | 2010-08-18 15:06:25 +0000 | [diff] [blame] | 1927 | } |
Chandler Carruth | 4a73ea9 | 2010-02-03 11:02:14 +0000 | [diff] [blame] | 1928 | } |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1929 | } |
| 1930 | } |
| 1931 | |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1932 | QualType BadAllocType; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1933 | bool HasBadAllocExceptionSpec |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1934 | = (Name.getCXXOverloadedOperator() == OO_New || |
| 1935 | Name.getCXXOverloadedOperator() == OO_Array_New); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1936 | if (HasBadAllocExceptionSpec && !getLangOpts().CPlusPlus11) { |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1937 | assert(StdBadAlloc && "Must have std::bad_alloc declared"); |
Argyrios Kyrtzidis | 76c38d3 | 2010-08-02 07:14:54 +0000 | [diff] [blame] | 1938 | BadAllocType = Context.getTypeDeclType(getStdBadAlloc()); |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 1939 | } |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1940 | |
| 1941 | FunctionProtoType::ExtProtoInfo EPI; |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1942 | if (HasBadAllocExceptionSpec) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1943 | if (!getLangOpts().CPlusPlus11) { |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1944 | EPI.ExceptionSpecType = EST_Dynamic; |
| 1945 | EPI.NumExceptions = 1; |
| 1946 | EPI.Exceptions = &BadAllocType; |
| 1947 | } |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 1948 | } else { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1949 | EPI.ExceptionSpecType = getLangOpts().CPlusPlus11 ? |
Sebastian Redl | 8999fe1 | 2011-03-14 18:08:30 +0000 | [diff] [blame] | 1950 | EST_BasicNoexcept : EST_DynamicNone; |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1951 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1952 | |
Jordan Rose | bea522f | 2013-03-08 21:51:21 +0000 | [diff] [blame] | 1953 | QualType FnType = Context.getFunctionType(Return, Argument, EPI); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1954 | FunctionDecl *Alloc = |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1955 | FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), |
| 1956 | SourceLocation(), Name, |
Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1957 | FnType, /*TInfo=*/0, SC_None, false, true); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1958 | Alloc->setImplicit(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1959 | |
Nuno Lopes | fc28448 | 2009-12-16 16:59:22 +0000 | [diff] [blame] | 1960 | if (AddMallocAttr) |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1961 | Alloc->addAttr(::new (Context) MallocAttr(SourceLocation(), Context)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1962 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1963 | ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1964 | SourceLocation(), 0, |
| 1965 | Argument, /*TInfo=*/0, |
Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1966 | SC_None, 0); |
David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 1967 | Alloc->setParams(Param); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1968 | |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 1969 | // FIXME: Also add this declaration to the IdentifierResolver, but |
| 1970 | // make sure it is at the end of the chain to coincide with the |
| 1971 | // global scope. |
John McCall | 5f1e094 | 2010-08-24 08:50:51 +0000 | [diff] [blame] | 1972 | Context.getTranslationUnitDecl()->addDecl(Alloc); |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 1973 | } |
| 1974 | |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 1975 | bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, |
| 1976 | DeclarationName Name, |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 1977 | FunctionDecl* &Operator, bool Diagnose) { |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1978 | LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName); |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 1979 | // Try to find operator delete/operator delete[] in class scope. |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1980 | LookupQualifiedName(Found, RD); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1981 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1982 | if (Found.isAmbiguous()) |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 1983 | return true; |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 1984 | |
Chandler Carruth | 2389324 | 2010-06-28 00:30:51 +0000 | [diff] [blame] | 1985 | Found.suppressDiagnostics(); |
| 1986 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1987 | SmallVector<DeclAccessPair,4> Matches; |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 1988 | for (LookupResult::iterator F = Found.begin(), FEnd = Found.end(); |
| 1989 | F != FEnd; ++F) { |
Chandler Carruth | 09556fd | 2010-08-08 07:04:00 +0000 | [diff] [blame] | 1990 | NamedDecl *ND = (*F)->getUnderlyingDecl(); |
| 1991 | |
| 1992 | // Ignore template operator delete members from the check for a usual |
| 1993 | // deallocation function. |
| 1994 | if (isa<FunctionTemplateDecl>(ND)) |
| 1995 | continue; |
| 1996 | |
| 1997 | if (cast<CXXMethodDecl>(ND)->isUsualDeallocationFunction()) |
John McCall | 046a746 | 2010-08-04 00:31:26 +0000 | [diff] [blame] | 1998 | Matches.push_back(F.getPair()); |
| 1999 | } |
| 2000 | |
| 2001 | // There's exactly one suitable operator; pick it. |
| 2002 | if (Matches.size() == 1) { |
| 2003 | Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl()); |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 2004 | |
| 2005 | if (Operator->isDeleted()) { |
| 2006 | if (Diagnose) { |
| 2007 | Diag(StartLoc, diag::err_deleted_function_use); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2008 | NoteDeletedFunction(Operator); |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 2009 | } |
| 2010 | return true; |
| 2011 | } |
| 2012 | |
Richard Smith | 9a561d5 | 2012-02-26 09:11:52 +0000 | [diff] [blame] | 2013 | if (CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(), |
| 2014 | Matches[0], Diagnose) == AR_inaccessible) |
| 2015 | return true; |
| 2016 | |
John McCall | 046a746 | 2010-08-04 00:31:26 +0000 | [diff] [blame] | 2017 | return false; |
| 2018 | |
| 2019 | // We found multiple suitable operators; complain about the ambiguity. |
| 2020 | } else if (!Matches.empty()) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 2021 | if (Diagnose) { |
Sean Hunt | cb45a0f | 2011-05-12 22:46:25 +0000 | [diff] [blame] | 2022 | Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found) |
| 2023 | << Name << RD; |
John McCall | 046a746 | 2010-08-04 00:31:26 +0000 | [diff] [blame] | 2024 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2025 | for (SmallVectorImpl<DeclAccessPair>::iterator |
Sean Hunt | cb45a0f | 2011-05-12 22:46:25 +0000 | [diff] [blame] | 2026 | F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F) |
| 2027 | Diag((*F)->getUnderlyingDecl()->getLocation(), |
| 2028 | diag::note_member_declared_here) << Name; |
| 2029 | } |
John McCall | 046a746 | 2010-08-04 00:31:26 +0000 | [diff] [blame] | 2030 | return true; |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 2031 | } |
| 2032 | |
| 2033 | // We did find operator delete/operator delete[] declarations, but |
| 2034 | // none of them were suitable. |
| 2035 | if (!Found.empty()) { |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 2036 | if (Diagnose) { |
Sean Hunt | cb45a0f | 2011-05-12 22:46:25 +0000 | [diff] [blame] | 2037 | Diag(StartLoc, diag::err_no_suitable_delete_member_function_found) |
| 2038 | << Name << RD; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2039 | |
Sean Hunt | cb45a0f | 2011-05-12 22:46:25 +0000 | [diff] [blame] | 2040 | for (LookupResult::iterator F = Found.begin(), FEnd = Found.end(); |
| 2041 | F != FEnd; ++F) |
| 2042 | Diag((*F)->getUnderlyingDecl()->getLocation(), |
| 2043 | diag::note_member_declared_here) << Name; |
| 2044 | } |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 2045 | return true; |
| 2046 | } |
| 2047 | |
| 2048 | // Look for a global declaration. |
| 2049 | DeclareGlobalNewDelete(); |
| 2050 | DeclContext *TUDecl = Context.getTranslationUnitDecl(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2051 | |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 2052 | CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation()); |
| 2053 | Expr* DeallocArgs[1]; |
| 2054 | DeallocArgs[0] = &Null; |
| 2055 | if (FindAllocationOverload(StartLoc, SourceRange(), Name, |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 2056 | DeallocArgs, 1, TUDecl, !Diagnose, |
| 2057 | Operator, Diagnose)) |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 2058 | return true; |
| 2059 | |
| 2060 | assert(Operator && "Did not find a deallocation function!"); |
| 2061 | return false; |
| 2062 | } |
| 2063 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2064 | /// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in: |
| 2065 | /// @code ::delete ptr; @endcode |
| 2066 | /// or |
| 2067 | /// @code delete [] ptr; @endcode |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2068 | ExprResult |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2069 | Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2070 | bool ArrayForm, Expr *ExE) { |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2071 | // C++ [expr.delete]p1: |
| 2072 | // The operand shall have a pointer type, or a class type having a single |
| 2073 | // conversion function to a pointer type. The result has type void. |
| 2074 | // |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2075 | // DR599 amends "pointer type" to "pointer to object type" in both cases. |
| 2076 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2077 | ExprResult Ex = Owned(ExE); |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2078 | FunctionDecl *OperatorDelete = 0; |
Argyrios Kyrtzidis | 4076dac | 2010-09-13 20:15:54 +0000 | [diff] [blame] | 2079 | bool ArrayFormAsWritten = ArrayForm; |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 2080 | bool UsualArrayDeleteWantsSize = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2081 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2082 | if (!Ex.get()->isTypeDependent()) { |
John McCall | 5aba3eb | 2012-03-09 04:08:29 +0000 | [diff] [blame] | 2083 | // Perform lvalue-to-rvalue cast, if needed. |
| 2084 | Ex = DefaultLvalueConversion(Ex.take()); |
Eli Friedman | 206491d | 2012-12-13 00:37:17 +0000 | [diff] [blame] | 2085 | if (Ex.isInvalid()) |
| 2086 | return ExprError(); |
John McCall | 5aba3eb | 2012-03-09 04:08:29 +0000 | [diff] [blame] | 2087 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2088 | QualType Type = Ex.get()->getType(); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2089 | |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2090 | if (const RecordType *Record = Type->getAs<RecordType>()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2091 | if (RequireCompleteType(StartLoc, Type, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 2092 | diag::err_delete_incomplete_class_type)) |
Douglas Gregor | 254a942 | 2010-07-29 14:44:35 +0000 | [diff] [blame] | 2093 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2094 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2095 | SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions; |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2096 | |
Fariborz Jahanian | 5346278 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 2097 | CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()); |
Argyrios Kyrtzidis | 9d29543 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 2098 | std::pair<CXXRecordDecl::conversion_iterator, |
| 2099 | CXXRecordDecl::conversion_iterator> |
| 2100 | Conversions = RD->getVisibleConversionFunctions(); |
| 2101 | for (CXXRecordDecl::conversion_iterator |
| 2102 | I = Conversions.first, E = Conversions.second; I != E; ++I) { |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2103 | NamedDecl *D = I.getDecl(); |
| 2104 | if (isa<UsingShadowDecl>(D)) |
| 2105 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 2106 | |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2107 | // Skip over templated conversion functions; they aren't considered. |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2108 | if (isa<FunctionTemplateDecl>(D)) |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2109 | continue; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2110 | |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2111 | CXXConversionDecl *Conv = cast<CXXConversionDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2112 | |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2113 | QualType ConvType = Conv->getConversionType().getNonReferenceType(); |
| 2114 | if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>()) |
Eli Friedman | 1357869 | 2010-08-05 02:49:48 +0000 | [diff] [blame] | 2115 | if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType()) |
Fariborz Jahanian | 8b915e7 | 2009-09-15 22:15:23 +0000 | [diff] [blame] | 2116 | ObjectPtrConversions.push_back(Conv); |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2117 | } |
Fariborz Jahanian | 8b915e7 | 2009-09-15 22:15:23 +0000 | [diff] [blame] | 2118 | if (ObjectPtrConversions.size() == 1) { |
| 2119 | // We have a single conversion to a pointer-to-object type. Perform |
| 2120 | // that conversion. |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2121 | // TODO: don't redo the conversion calculation. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2122 | ExprResult Res = |
| 2123 | PerformImplicitConversion(Ex.get(), |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2124 | ObjectPtrConversions.front()->getConversionType(), |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2125 | AA_Converting); |
| 2126 | if (Res.isUsable()) { |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2127 | Ex = Res; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2128 | Type = Ex.get()->getType(); |
Fariborz Jahanian | 8b915e7 | 2009-09-15 22:15:23 +0000 | [diff] [blame] | 2129 | } |
| 2130 | } |
| 2131 | else if (ObjectPtrConversions.size() > 1) { |
| 2132 | Diag(StartLoc, diag::err_ambiguous_delete_operand) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2133 | << Type << Ex.get()->getSourceRange(); |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 2134 | for (unsigned i= 0; i < ObjectPtrConversions.size(); i++) |
| 2135 | NoteOverloadCandidate(ObjectPtrConversions[i]); |
Fariborz Jahanian | 8b915e7 | 2009-09-15 22:15:23 +0000 | [diff] [blame] | 2136 | return ExprError(); |
Douglas Gregor | 9cd9f3f | 2009-09-09 23:39:55 +0000 | [diff] [blame] | 2137 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2138 | } |
| 2139 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2140 | if (!Type->isPointerType()) |
| 2141 | return ExprError(Diag(StartLoc, diag::err_delete_operand) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2142 | << Type << Ex.get()->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2143 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2144 | QualType Pointee = Type->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2145 | QualType PointeeElem = Context.getBaseElementType(Pointee); |
| 2146 | |
| 2147 | if (unsigned AddressSpace = Pointee.getAddressSpace()) |
| 2148 | return Diag(Ex.get()->getLocStart(), |
| 2149 | diag::err_address_space_qualified_delete) |
| 2150 | << Pointee.getUnqualifiedType() << AddressSpace; |
| 2151 | |
| 2152 | CXXRecordDecl *PointeeRD = 0; |
Douglas Gregor | 94a6157 | 2010-05-24 17:01:56 +0000 | [diff] [blame] | 2153 | if (Pointee->isVoidType() && !isSFINAEContext()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2154 | // The C++ standard bans deleting a pointer to a non-object type, which |
Douglas Gregor | 94a6157 | 2010-05-24 17:01:56 +0000 | [diff] [blame] | 2155 | // effectively bans deletion of "void*". However, most compilers support |
| 2156 | // this, so we treat it as a warning unless we're in a SFINAE context. |
| 2157 | Diag(StartLoc, diag::ext_delete_void_ptr_operand) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2158 | << Type << Ex.get()->getSourceRange(); |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2159 | } else if (Pointee->isFunctionType() || Pointee->isVoidType()) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2160 | return ExprError(Diag(StartLoc, diag::err_delete_operand) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2161 | << Type << Ex.get()->getSourceRange()); |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2162 | } else if (!Pointee->isDependentType()) { |
| 2163 | if (!RequireCompleteType(StartLoc, Pointee, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 2164 | diag::warn_delete_incomplete, Ex.get())) { |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2165 | if (const RecordType *RT = PointeeElem->getAs<RecordType>()) |
| 2166 | PointeeRD = cast<CXXRecordDecl>(RT->getDecl()); |
| 2167 | } |
| 2168 | } |
| 2169 | |
Douglas Gregor | 1070c9f | 2009-09-29 21:38:53 +0000 | [diff] [blame] | 2170 | // C++ [expr.delete]p2: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2171 | // [Note: a pointer to a const type can be the operand of a |
| 2172 | // delete-expression; it is not necessary to cast away the constness |
| 2173 | // (5.2.11) of the pointer expression before it is used as the operand |
Douglas Gregor | 1070c9f | 2009-09-29 21:38:53 +0000 | [diff] [blame] | 2174 | // of the delete-expression. ] |
Argyrios Kyrtzidis | 4076dac | 2010-09-13 20:15:54 +0000 | [diff] [blame] | 2175 | |
| 2176 | if (Pointee->isArrayType() && !ArrayForm) { |
| 2177 | Diag(StartLoc, diag::warn_delete_array_type) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2178 | << Type << Ex.get()->getSourceRange() |
Argyrios Kyrtzidis | 4076dac | 2010-09-13 20:15:54 +0000 | [diff] [blame] | 2179 | << FixItHint::CreateInsertion(PP.getLocForEndOfToken(StartLoc), "[]"); |
| 2180 | ArrayForm = true; |
| 2181 | } |
| 2182 | |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2183 | DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName( |
| 2184 | ArrayForm ? OO_Array_Delete : OO_Delete); |
| 2185 | |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2186 | if (PointeeRD) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2187 | if (!UseGlobal && |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2188 | FindDeallocationFunction(StartLoc, PointeeRD, DeleteName, |
| 2189 | OperatorDelete)) |
Anders Carlsson | 0ba63ea | 2009-11-14 03:17:38 +0000 | [diff] [blame] | 2190 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2191 | |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 2192 | // If we're allocating an array of records, check whether the |
| 2193 | // usual operator delete[] has a size_t parameter. |
| 2194 | if (ArrayForm) { |
| 2195 | // If the user specifically asked to use the global allocator, |
| 2196 | // we'll need to do the lookup into the class. |
| 2197 | if (UseGlobal) |
| 2198 | UsualArrayDeleteWantsSize = |
| 2199 | doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem); |
| 2200 | |
| 2201 | // Otherwise, the usual operator delete[] should be the |
| 2202 | // function we just found. |
| 2203 | else if (isa<CXXMethodDecl>(OperatorDelete)) |
| 2204 | UsualArrayDeleteWantsSize = (OperatorDelete->getNumParams() == 2); |
| 2205 | } |
| 2206 | |
Richard Smith | 213d70b | 2012-02-18 04:13:32 +0000 | [diff] [blame] | 2207 | if (!PointeeRD->hasIrrelevantDestructor()) |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2208 | if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 2209 | MarkFunctionReferenced(StartLoc, |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 2210 | const_cast<CXXDestructorDecl*>(Dtor)); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 2211 | if (DiagnoseUseOfDecl(Dtor, StartLoc)) |
| 2212 | return ExprError(); |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 2213 | } |
Argyrios Kyrtzidis | 6f0074a | 2011-05-24 19:53:26 +0000 | [diff] [blame] | 2214 | |
| 2215 | // C++ [expr.delete]p3: |
| 2216 | // In the first alternative (delete object), if the static type of the |
| 2217 | // object to be deleted is different from its dynamic type, the static |
| 2218 | // type shall be a base class of the dynamic type of the object to be |
| 2219 | // deleted and the static type shall have a virtual destructor or the |
| 2220 | // behavior is undefined. |
| 2221 | // |
| 2222 | // Note: a final class cannot be derived from, no issue there |
Eli Friedman | ef8c79c | 2011-07-26 23:27:24 +0000 | [diff] [blame] | 2223 | if (PointeeRD->isPolymorphic() && !PointeeRD->hasAttr<FinalAttr>()) { |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2224 | CXXDestructorDecl *dtor = PointeeRD->getDestructor(); |
Eli Friedman | ef8c79c | 2011-07-26 23:27:24 +0000 | [diff] [blame] | 2225 | if (dtor && !dtor->isVirtual()) { |
| 2226 | if (PointeeRD->isAbstract()) { |
| 2227 | // If the class is abstract, we warn by default, because we're |
| 2228 | // sure the code has undefined behavior. |
| 2229 | Diag(StartLoc, diag::warn_delete_abstract_non_virtual_dtor) |
| 2230 | << PointeeElem; |
| 2231 | } else if (!ArrayForm) { |
| 2232 | // Otherwise, if this is not an array delete, it's a bit suspect, |
| 2233 | // but not necessarily wrong. |
| 2234 | Diag(StartLoc, diag::warn_delete_non_virtual_dtor) << PointeeElem; |
| 2235 | } |
| 2236 | } |
Argyrios Kyrtzidis | 6f0074a | 2011-05-24 19:53:26 +0000 | [diff] [blame] | 2237 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2238 | |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2239 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2240 | |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2241 | if (!OperatorDelete) { |
Anders Carlsson | 78f7455 | 2009-11-15 18:45:20 +0000 | [diff] [blame] | 2242 | // Look for a global declaration. |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2243 | DeclareGlobalNewDelete(); |
| 2244 | DeclContext *TUDecl = Context.getTranslationUnitDecl(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2245 | Expr *Arg = Ex.get(); |
Abramo Bagnara | 34f60a4 | 2012-07-09 21:15:43 +0000 | [diff] [blame] | 2246 | if (!Context.hasSameType(Arg->getType(), Context.VoidPtrTy)) |
| 2247 | Arg = ImplicitCastExpr::Create(Context, Context.VoidPtrTy, |
| 2248 | CK_BitCast, Arg, 0, VK_RValue); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2249 | if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2250 | &Arg, 1, TUDecl, /*AllowMissing=*/false, |
Anders Carlsson | d67c4c3 | 2009-08-16 20:29:29 +0000 | [diff] [blame] | 2251 | OperatorDelete)) |
| 2252 | return ExprError(); |
| 2253 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2254 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 2255 | MarkFunctionReferenced(StartLoc, OperatorDelete); |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 2256 | |
Douglas Gregor | d880f52 | 2011-02-01 15:50:11 +0000 | [diff] [blame] | 2257 | // Check access and ambiguity of operator delete and destructor. |
Eli Friedman | e52c914 | 2011-07-26 22:25:31 +0000 | [diff] [blame] | 2258 | if (PointeeRD) { |
| 2259 | if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2260 | CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor, |
Douglas Gregor | d880f52 | 2011-02-01 15:50:11 +0000 | [diff] [blame] | 2261 | PDiag(diag::err_access_dtor) << PointeeElem); |
| 2262 | } |
| 2263 | } |
| 2264 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2265 | } |
| 2266 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 2267 | return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm, |
John McCall | 6ec278d | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 2268 | ArrayFormAsWritten, |
| 2269 | UsualArrayDeleteWantsSize, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2270 | OperatorDelete, Ex.take(), StartLoc)); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 2271 | } |
| 2272 | |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2273 | /// \brief Check the use of the given variable as a C++ condition in an if, |
| 2274 | /// while, do-while, or switch statement. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2275 | ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2276 | SourceLocation StmtLoc, |
| 2277 | bool ConvertToBoolean) { |
Richard Smith | dc7a4f5 | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 2278 | if (ConditionVar->isInvalidDecl()) |
| 2279 | return ExprError(); |
| 2280 | |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2281 | QualType T = ConditionVar->getType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2282 | |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2283 | // C++ [stmt.select]p2: |
| 2284 | // The declarator shall not specify a function or an array. |
| 2285 | if (T->isFunctionType()) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2286 | return ExprError(Diag(ConditionVar->getLocation(), |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2287 | diag::err_invalid_use_of_function_type) |
| 2288 | << ConditionVar->getSourceRange()); |
| 2289 | else if (T->isArrayType()) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2290 | return ExprError(Diag(ConditionVar->getLocation(), |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2291 | diag::err_invalid_use_of_array_type) |
| 2292 | << ConditionVar->getSourceRange()); |
Douglas Gregor | a7605db | 2009-11-24 16:07:02 +0000 | [diff] [blame] | 2293 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2294 | ExprResult Condition = |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 2295 | Owned(DeclRefExpr::Create(Context, NestedNameSpecifierLoc(), |
| 2296 | SourceLocation(), |
| 2297 | ConditionVar, |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 2298 | /*enclosing*/ false, |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 2299 | ConditionVar->getLocation(), |
| 2300 | ConditionVar->getType().getNonReferenceType(), |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2301 | VK_LValue)); |
Eli Friedman | cf7c14c | 2012-01-16 21:00:51 +0000 | [diff] [blame] | 2302 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 2303 | MarkDeclRefReferenced(cast<DeclRefExpr>(Condition.get())); |
Eli Friedman | cf7c14c | 2012-01-16 21:00:51 +0000 | [diff] [blame] | 2304 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2305 | if (ConvertToBoolean) { |
| 2306 | Condition = CheckBooleanCondition(Condition.take(), StmtLoc); |
| 2307 | if (Condition.isInvalid()) |
| 2308 | return ExprError(); |
| 2309 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2310 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2311 | return Condition; |
Douglas Gregor | 8cfe5a7 | 2009-11-23 23:44:04 +0000 | [diff] [blame] | 2312 | } |
| 2313 | |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2314 | /// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2315 | ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr) { |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2316 | // C++ 6.4p4: |
| 2317 | // The value of a condition that is an initialized declaration in a statement |
| 2318 | // other than a switch statement is the value of the declared variable |
| 2319 | // implicitly converted to type bool. If that conversion is ill-formed, the |
| 2320 | // program is ill-formed. |
| 2321 | // The value of a condition that is an expression is the value of the |
| 2322 | // expression, implicitly converted to bool. |
| 2323 | // |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2324 | return PerformContextuallyConvertToBool(CondExpr); |
Argyrios Kyrtzidis | 5921093 | 2008-09-10 02:17:11 +0000 | [diff] [blame] | 2325 | } |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 2326 | |
| 2327 | /// Helper function to determine whether this is the (deprecated) C++ |
| 2328 | /// conversion from a string literal to a pointer to non-const char or |
| 2329 | /// non-const wchar_t (for narrow and wide string literals, |
| 2330 | /// respectively). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2331 | bool |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 2332 | Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) { |
| 2333 | // Look inside the implicit cast, if it exists. |
| 2334 | if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From)) |
| 2335 | From = Cast->getSubExpr(); |
| 2336 | |
| 2337 | // A string literal (2.13.4) that is not a wide string literal can |
| 2338 | // be converted to an rvalue of type "pointer to char"; a wide |
| 2339 | // string literal can be converted to an rvalue of type "pointer |
| 2340 | // to wchar_t" (C++ 4.2p2). |
Douglas Gregor | 1984eb9 | 2010-06-22 23:47:37 +0000 | [diff] [blame] | 2341 | if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens())) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2342 | if (const PointerType *ToPtrType = ToType->getAs<PointerType>()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2343 | if (const BuiltinType *ToPointeeType |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2344 | = ToPtrType->getPointeeType()->getAs<BuiltinType>()) { |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 2345 | // This conversion is considered only when there is an |
| 2346 | // explicit appropriate pointer target type (C++ 4.2p2). |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2347 | if (!ToPtrType->getPointeeType().hasQualifiers()) { |
| 2348 | switch (StrLit->getKind()) { |
| 2349 | case StringLiteral::UTF8: |
| 2350 | case StringLiteral::UTF16: |
| 2351 | case StringLiteral::UTF32: |
| 2352 | // We don't allow UTF literals to be implicitly converted |
| 2353 | break; |
| 2354 | case StringLiteral::Ascii: |
| 2355 | return (ToPointeeType->getKind() == BuiltinType::Char_U || |
| 2356 | ToPointeeType->getKind() == BuiltinType::Char_S); |
| 2357 | case StringLiteral::Wide: |
| 2358 | return ToPointeeType->isWideCharType(); |
| 2359 | } |
| 2360 | } |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 2361 | } |
| 2362 | |
| 2363 | return false; |
| 2364 | } |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2365 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2366 | static ExprResult BuildCXXCastArgument(Sema &S, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2367 | SourceLocation CastLoc, |
| 2368 | QualType Ty, |
| 2369 | CastKind Kind, |
| 2370 | CXXMethodDecl *Method, |
John McCall | ca82a82 | 2011-09-21 08:36:56 +0000 | [diff] [blame] | 2371 | DeclAccessPair FoundDecl, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 2372 | bool HadMultipleCandidates, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2373 | Expr *From) { |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2374 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2375 | default: llvm_unreachable("Unhandled cast kind!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2376 | case CK_ConstructorConversion: { |
Douglas Gregor | 13e1bca | 2011-10-10 22:41:00 +0000 | [diff] [blame] | 2377 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method); |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2378 | SmallVector<Expr*, 8> ConstructorArgs; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2379 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2380 | if (S.CompleteConstructorCall(Constructor, From, CastLoc, ConstructorArgs)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2381 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2382 | |
John McCall | b9abd872 | 2012-04-07 03:04:20 +0000 | [diff] [blame] | 2383 | S.CheckConstructorAccess(CastLoc, Constructor, |
| 2384 | InitializedEntity::InitializeTemporary(Ty), |
| 2385 | Constructor->getAccess()); |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 2386 | |
Douglas Gregor | 13e1bca | 2011-10-10 22:41:00 +0000 | [diff] [blame] | 2387 | ExprResult Result |
| 2388 | = S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method), |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 2389 | ConstructorArgs, HadMultipleCandidates, |
| 2390 | /*ListInit*/ false, /*ZeroInit*/ false, |
Douglas Gregor | 13e1bca | 2011-10-10 22:41:00 +0000 | [diff] [blame] | 2391 | CXXConstructExpr::CK_Complete, SourceRange()); |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2392 | if (Result.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2393 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2394 | |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2395 | return S.MaybeBindToTemporary(Result.takeAs<Expr>()); |
| 2396 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2397 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2398 | case CK_UserDefinedConversion: { |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2399 | assert(!From->getType()->isPointerType() && "Arg can't have pointer type!"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2400 | |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2401 | // Create an implicit call expr that calls it. |
Eli Friedman | 3f01c8a | 2012-03-01 01:30:04 +0000 | [diff] [blame] | 2402 | CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method); |
| 2403 | ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 2404 | HadMultipleCandidates); |
Douglas Gregor | f2ae526 | 2011-01-20 00:18:04 +0000 | [diff] [blame] | 2405 | if (Result.isInvalid()) |
| 2406 | return ExprError(); |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 2407 | // Record usage of conversion in an implicit cast. |
| 2408 | Result = S.Owned(ImplicitCastExpr::Create(S.Context, |
| 2409 | Result.get()->getType(), |
| 2410 | CK_UserDefinedConversion, |
| 2411 | Result.get(), 0, |
| 2412 | Result.get()->getValueKind())); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2413 | |
John McCall | ca82a82 | 2011-09-21 08:36:56 +0000 | [diff] [blame] | 2414 | S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ 0, FoundDecl); |
| 2415 | |
Douglas Gregor | f2ae526 | 2011-01-20 00:18:04 +0000 | [diff] [blame] | 2416 | return S.MaybeBindToTemporary(Result.get()); |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2417 | } |
| 2418 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2419 | } |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2420 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2421 | /// PerformImplicitConversion - Perform an implicit conversion of the |
| 2422 | /// expression From to the type ToType using the pre-computed implicit |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2423 | /// conversion sequence ICS. Returns the converted |
Douglas Gregor | 6864748 | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 2424 | /// expression. Action is the kind of conversion we're performing, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2425 | /// used in the error message. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2426 | ExprResult |
| 2427 | Sema::PerformImplicitConversion(Expr *From, QualType ToType, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2428 | const ImplicitConversionSequence &ICS, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2429 | AssignmentAction Action, |
| 2430 | CheckedConversionKind CCK) { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 2431 | switch (ICS.getKind()) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2432 | case ImplicitConversionSequence::StandardConversion: { |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2433 | ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard, |
| 2434 | Action, CCK); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2435 | if (Res.isInvalid()) |
| 2436 | return ExprError(); |
| 2437 | From = Res.take(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2438 | break; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2439 | } |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2440 | |
Anders Carlsson | f6c213a | 2009-09-15 06:28:28 +0000 | [diff] [blame] | 2441 | case ImplicitConversionSequence::UserDefinedConversion: { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2442 | |
Fariborz Jahanian | 7fe5d72 | 2009-08-28 22:04:50 +0000 | [diff] [blame] | 2443 | FunctionDecl *FD = ICS.UserDefined.ConversionFunction; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2444 | CastKind CastKind; |
Anders Carlsson | f6c213a | 2009-09-15 06:28:28 +0000 | [diff] [blame] | 2445 | QualType BeforeToType; |
Sebastian Redl | cc7a648 | 2011-11-01 15:53:09 +0000 | [diff] [blame] | 2446 | assert(FD && "FIXME: aggregate initialization from init list"); |
Anders Carlsson | f6c213a | 2009-09-15 06:28:28 +0000 | [diff] [blame] | 2447 | if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2448 | CastKind = CK_UserDefinedConversion; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2449 | |
Anders Carlsson | f6c213a | 2009-09-15 06:28:28 +0000 | [diff] [blame] | 2450 | // If the user-defined conversion is specified by a conversion function, |
| 2451 | // the initial standard conversion sequence converts the source type to |
| 2452 | // the implicit object parameter of the conversion function. |
| 2453 | BeforeToType = Context.getTagDeclType(Conv->getParent()); |
John McCall | 9ec9445 | 2010-12-04 09:57:16 +0000 | [diff] [blame] | 2454 | } else { |
| 2455 | const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2456 | CastKind = CK_ConstructorConversion; |
Fariborz Jahanian | 966256a | 2009-11-06 00:23:08 +0000 | [diff] [blame] | 2457 | // Do no conversion if dealing with ... for the first conversion. |
Douglas Gregor | e44201a | 2009-11-20 02:31:03 +0000 | [diff] [blame] | 2458 | if (!ICS.UserDefined.EllipsisConversion) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2459 | // If the user-defined conversion is specified by a constructor, the |
Fariborz Jahanian | 966256a | 2009-11-06 00:23:08 +0000 | [diff] [blame] | 2460 | // initial standard conversion sequence converts the source type to the |
| 2461 | // type required by the argument of the constructor |
Douglas Gregor | e44201a | 2009-11-20 02:31:03 +0000 | [diff] [blame] | 2462 | BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType(); |
| 2463 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2464 | } |
Douglas Gregor | a3998bd | 2010-12-02 21:47:04 +0000 | [diff] [blame] | 2465 | // Watch out for elipsis conversion. |
Fariborz Jahanian | 4c0cea2 | 2009-11-06 00:55:14 +0000 | [diff] [blame] | 2466 | if (!ICS.UserDefined.EllipsisConversion) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2467 | ExprResult Res = |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2468 | PerformImplicitConversion(From, BeforeToType, |
| 2469 | ICS.UserDefined.Before, AA_Converting, |
| 2470 | CCK); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2471 | if (Res.isInvalid()) |
| 2472 | return ExprError(); |
| 2473 | From = Res.take(); |
Fariborz Jahanian | 966256a | 2009-11-06 00:23:08 +0000 | [diff] [blame] | 2474 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2475 | |
| 2476 | ExprResult CastArg |
Douglas Gregor | ba70ab6 | 2010-04-16 22:17:36 +0000 | [diff] [blame] | 2477 | = BuildCXXCastArgument(*this, |
| 2478 | From->getLocStart(), |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 2479 | ToType.getNonReferenceType(), |
Douglas Gregor | 83eecbe | 2011-01-20 01:32:05 +0000 | [diff] [blame] | 2480 | CastKind, cast<CXXMethodDecl>(FD), |
| 2481 | ICS.UserDefined.FoundConversionFunction, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 2482 | ICS.UserDefined.HadMultipleCandidates, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 2483 | From); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 2484 | |
| 2485 | if (CastArg.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2486 | return ExprError(); |
Eli Friedman | d888962 | 2009-11-27 04:41:50 +0000 | [diff] [blame] | 2487 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2488 | From = CastArg.take(); |
Eli Friedman | d888962 | 2009-11-27 04:41:50 +0000 | [diff] [blame] | 2489 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2490 | return PerformImplicitConversion(From, ToType, ICS.UserDefined.After, |
| 2491 | AA_Converting, CCK); |
Fariborz Jahanian | 93034ca | 2009-10-16 19:20:59 +0000 | [diff] [blame] | 2492 | } |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 2493 | |
| 2494 | case ImplicitConversionSequence::AmbiguousConversion: |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 2495 | ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(), |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 2496 | PDiag(diag::err_typecheck_ambiguous_condition) |
| 2497 | << From->getSourceRange()); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2498 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2499 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2500 | case ImplicitConversionSequence::EllipsisConversion: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2501 | llvm_unreachable("Cannot perform an ellipsis conversion"); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2502 | |
| 2503 | case ImplicitConversionSequence::BadConversion: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2504 | return ExprError(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2505 | } |
| 2506 | |
| 2507 | // Everything went well. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2508 | return Owned(From); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2509 | } |
| 2510 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2511 | /// PerformImplicitConversion - Perform an implicit conversion of the |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2512 | /// expression From to the type ToType by following the standard |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2513 | /// conversion sequence SCS. Returns the converted |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 2514 | /// expression. Flavor is the context in which we're performing this |
| 2515 | /// conversion, for use in error messages. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2516 | ExprResult |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2517 | Sema::PerformImplicitConversion(Expr *From, QualType ToType, |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 2518 | const StandardConversionSequence& SCS, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2519 | AssignmentAction Action, |
| 2520 | CheckedConversionKind CCK) { |
| 2521 | bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast); |
| 2522 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2523 | // Overall FIXME: we are recomputing too many types here and doing far too |
| 2524 | // much extra work. What this means is that we need to keep track of more |
| 2525 | // information that is computed when we try the implicit conversion initially, |
| 2526 | // so that we don't need to recompute anything here. |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2527 | QualType FromType = From->getType(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2528 | |
Douglas Gregor | 225c41e | 2008-11-03 19:09:14 +0000 | [diff] [blame] | 2529 | if (SCS.CopyConstructor) { |
Anders Carlsson | 7c3e8a1 | 2009-05-19 04:45:15 +0000 | [diff] [blame] | 2530 | // FIXME: When can ToType be a reference type? |
| 2531 | assert(!ToType->isReferenceType()); |
Fariborz Jahanian | b3c4774 | 2009-09-25 18:59:21 +0000 | [diff] [blame] | 2532 | if (SCS.Second == ICK_Derived_To_Base) { |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 2533 | SmallVector<Expr*, 8> ConstructorArgs; |
Fariborz Jahanian | b3c4774 | 2009-09-25 18:59:21 +0000 | [diff] [blame] | 2534 | if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor), |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2535 | From, /*FIXME:ConstructLoc*/SourceLocation(), |
Fariborz Jahanian | b3c4774 | 2009-09-25 18:59:21 +0000 | [diff] [blame] | 2536 | ConstructorArgs)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2537 | return ExprError(); |
| 2538 | return BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(), |
| 2539 | ToType, SCS.CopyConstructor, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 2540 | ConstructorArgs, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 2541 | /*HadMultipleCandidates*/ false, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 2542 | /*ListInit*/ false, /*ZeroInit*/ false, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2543 | CXXConstructExpr::CK_Complete, |
| 2544 | SourceRange()); |
Fariborz Jahanian | b3c4774 | 2009-09-25 18:59:21 +0000 | [diff] [blame] | 2545 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2546 | return BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(), |
| 2547 | ToType, SCS.CopyConstructor, |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 2548 | From, /*HadMultipleCandidates*/ false, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 2549 | /*ListInit*/ false, /*ZeroInit*/ false, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2550 | CXXConstructExpr::CK_Complete, |
| 2551 | SourceRange()); |
Douglas Gregor | 225c41e | 2008-11-03 19:09:14 +0000 | [diff] [blame] | 2552 | } |
| 2553 | |
Douglas Gregor | ad4e02f | 2010-04-29 18:24:40 +0000 | [diff] [blame] | 2554 | // Resolve overloaded function references. |
| 2555 | if (Context.hasSameType(FromType, Context.OverloadTy)) { |
| 2556 | DeclAccessPair Found; |
| 2557 | FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType, |
| 2558 | true, Found); |
| 2559 | if (!Fn) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2560 | return ExprError(); |
Douglas Gregor | ad4e02f | 2010-04-29 18:24:40 +0000 | [diff] [blame] | 2561 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2562 | if (DiagnoseUseOfDecl(Fn, From->getLocStart())) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2563 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2564 | |
Douglas Gregor | ad4e02f | 2010-04-29 18:24:40 +0000 | [diff] [blame] | 2565 | From = FixOverloadedFunctionReference(From, Found, Fn); |
| 2566 | FromType = From->getType(); |
| 2567 | } |
| 2568 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2569 | // Perform the first implicit conversion. |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2570 | switch (SCS.First) { |
| 2571 | case ICK_Identity: |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2572 | // Nothing to do. |
| 2573 | break; |
| 2574 | |
Eli Friedman | d814eaf | 2012-01-24 22:51:26 +0000 | [diff] [blame] | 2575 | case ICK_Lvalue_To_Rvalue: { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 2576 | assert(From->getObjectKind() != OK_ObjCProperty); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2577 | FromType = FromType.getUnqualifiedType(); |
Eli Friedman | d814eaf | 2012-01-24 22:51:26 +0000 | [diff] [blame] | 2578 | ExprResult FromRes = DefaultLvalueConversion(From); |
| 2579 | assert(!FromRes.isInvalid() && "Can't perform deduced conversion?!"); |
| 2580 | From = FromRes.take(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2581 | break; |
Eli Friedman | d814eaf | 2012-01-24 22:51:26 +0000 | [diff] [blame] | 2582 | } |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 2583 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2584 | case ICK_Array_To_Pointer: |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2585 | FromType = Context.getArrayDecayedType(FromType); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2586 | From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay, |
| 2587 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2588 | break; |
| 2589 | |
| 2590 | case ICK_Function_To_Pointer: |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2591 | FromType = Context.getPointerType(FromType); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2592 | From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay, |
| 2593 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2594 | break; |
| 2595 | |
| 2596 | default: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2597 | llvm_unreachable("Improper first standard conversion"); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2598 | } |
| 2599 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2600 | // Perform the second implicit conversion |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2601 | switch (SCS.Second) { |
| 2602 | case ICK_Identity: |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 2603 | // If both sides are functions (or pointers/references to them), there could |
| 2604 | // be incompatible exception declarations. |
| 2605 | if (CheckExceptionSpecCompatibility(From, ToType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2606 | return ExprError(); |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 2607 | // Nothing else to do. |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2608 | break; |
| 2609 | |
Douglas Gregor | 43c79c2 | 2009-12-09 00:47:37 +0000 | [diff] [blame] | 2610 | case ICK_NoReturn_Adjustment: |
| 2611 | // If both sides are functions (or pointers/references to them), there could |
| 2612 | // be incompatible exception declarations. |
| 2613 | if (CheckExceptionSpecCompatibility(From, ToType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2614 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2615 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2616 | From = ImpCastExprToType(From, ToType, CK_NoOp, |
| 2617 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | 43c79c2 | 2009-12-09 00:47:37 +0000 | [diff] [blame] | 2618 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2619 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2620 | case ICK_Integral_Promotion: |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2621 | case ICK_Integral_Conversion: |
Richard Smith | e7ff919 | 2012-09-13 21:18:54 +0000 | [diff] [blame] | 2622 | if (ToType->isBooleanType()) { |
| 2623 | assert(FromType->castAs<EnumType>()->getDecl()->isFixed() && |
| 2624 | SCS.Second == ICK_Integral_Promotion && |
| 2625 | "only enums with fixed underlying type can promote to bool"); |
| 2626 | From = ImpCastExprToType(From, ToType, CK_IntegralToBoolean, |
| 2627 | VK_RValue, /*BasePath=*/0, CCK).take(); |
| 2628 | } else { |
| 2629 | From = ImpCastExprToType(From, ToType, CK_IntegralCast, |
| 2630 | VK_RValue, /*BasePath=*/0, CCK).take(); |
| 2631 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2632 | break; |
| 2633 | |
| 2634 | case ICK_Floating_Promotion: |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2635 | case ICK_Floating_Conversion: |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2636 | From = ImpCastExprToType(From, ToType, CK_FloatingCast, |
| 2637 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2638 | break; |
| 2639 | |
| 2640 | case ICK_Complex_Promotion: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2641 | case ICK_Complex_Conversion: { |
| 2642 | QualType FromEl = From->getType()->getAs<ComplexType>()->getElementType(); |
| 2643 | QualType ToEl = ToType->getAs<ComplexType>()->getElementType(); |
| 2644 | CastKind CK; |
| 2645 | if (FromEl->isRealFloatingType()) { |
| 2646 | if (ToEl->isRealFloatingType()) |
| 2647 | CK = CK_FloatingComplexCast; |
| 2648 | else |
| 2649 | CK = CK_FloatingComplexToIntegralComplex; |
| 2650 | } else if (ToEl->isRealFloatingType()) { |
| 2651 | CK = CK_IntegralComplexToFloatingComplex; |
| 2652 | } else { |
| 2653 | CK = CK_IntegralComplexCast; |
| 2654 | } |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2655 | From = ImpCastExprToType(From, ToType, CK, |
| 2656 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2657 | break; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2658 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2659 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2660 | case ICK_Floating_Integral: |
Douglas Gregor | 0c293ea | 2010-06-22 23:07:26 +0000 | [diff] [blame] | 2661 | if (ToType->isRealFloatingType()) |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2662 | From = ImpCastExprToType(From, ToType, CK_IntegralToFloating, |
| 2663 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2664 | else |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2665 | From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral, |
| 2666 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2667 | break; |
| 2668 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2669 | case ICK_Compatible_Conversion: |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2670 | From = ImpCastExprToType(From, ToType, CK_NoOp, |
| 2671 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2672 | break; |
| 2673 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2674 | case ICK_Writeback_Conversion: |
Anders Carlsson | 61faec1 | 2009-09-12 04:46:44 +0000 | [diff] [blame] | 2675 | case ICK_Pointer_Conversion: { |
Douglas Gregor | a3998bd | 2010-12-02 21:47:04 +0000 | [diff] [blame] | 2676 | if (SCS.IncompatibleObjC && Action != AA_Casting) { |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 2677 | // Diagnose incompatible Objective-C conversions |
Douglas Gregor | 8cf0d22 | 2011-06-11 04:42:12 +0000 | [diff] [blame] | 2678 | if (Action == AA_Initializing || Action == AA_Assigning) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2679 | Diag(From->getLocStart(), |
Fariborz Jahanian | 84950c7 | 2011-03-21 19:08:42 +0000 | [diff] [blame] | 2680 | diag::ext_typecheck_convert_incompatible_pointer) |
| 2681 | << ToType << From->getType() << Action |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 2682 | << From->getSourceRange() << 0; |
Fariborz Jahanian | 84950c7 | 2011-03-21 19:08:42 +0000 | [diff] [blame] | 2683 | else |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2684 | Diag(From->getLocStart(), |
Fariborz Jahanian | 84950c7 | 2011-03-21 19:08:42 +0000 | [diff] [blame] | 2685 | diag::ext_typecheck_convert_incompatible_pointer) |
| 2686 | << From->getType() << ToType << Action |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 2687 | << From->getSourceRange() << 0; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2688 | |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2689 | if (From->getType()->isObjCObjectPointerType() && |
| 2690 | ToType->isObjCObjectPointerType()) |
| 2691 | EmitRelatedResultTypeNote(From); |
Fariborz Jahanian | 82007c3 | 2011-07-08 17:41:42 +0000 | [diff] [blame] | 2692 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2693 | else if (getLangOpts().ObjCAutoRefCount && |
Fariborz Jahanian | 82007c3 | 2011-07-08 17:41:42 +0000 | [diff] [blame] | 2694 | !CheckObjCARCUnavailableWeakConversion(ToType, |
| 2695 | From->getType())) { |
John McCall | 7f3a6d3 | 2011-09-09 06:12:06 +0000 | [diff] [blame] | 2696 | if (Action == AA_Initializing) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2697 | Diag(From->getLocStart(), |
John McCall | 7f3a6d3 | 2011-09-09 06:12:06 +0000 | [diff] [blame] | 2698 | diag::err_arc_weak_unavailable_assign); |
| 2699 | else |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2700 | Diag(From->getLocStart(), |
John McCall | 7f3a6d3 | 2011-09-09 06:12:06 +0000 | [diff] [blame] | 2701 | diag::err_arc_convesion_of_weak_unavailable) |
| 2702 | << (Action == AA_Casting) << From->getType() << ToType |
| 2703 | << From->getSourceRange(); |
| 2704 | } |
Fariborz Jahanian | 82007c3 | 2011-07-08 17:41:42 +0000 | [diff] [blame] | 2705 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2706 | CastKind Kind = CK_Invalid; |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2707 | CXXCastPath BasePath; |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 2708 | if (CheckPointerConversion(From, ToType, Kind, BasePath, CStyle)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2709 | return ExprError(); |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 2710 | |
| 2711 | // Make sure we extend blocks if necessary. |
| 2712 | // FIXME: doing this here is really ugly. |
| 2713 | if (Kind == CK_BlockPointerToObjCPointerCast) { |
| 2714 | ExprResult E = From; |
| 2715 | (void) PrepareCastToObjCObjectPointer(E); |
| 2716 | From = E.take(); |
| 2717 | } |
| 2718 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2719 | From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK) |
| 2720 | .take(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2721 | break; |
Anders Carlsson | 61faec1 | 2009-09-12 04:46:44 +0000 | [diff] [blame] | 2722 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2723 | |
Anders Carlsson | 61faec1 | 2009-09-12 04:46:44 +0000 | [diff] [blame] | 2724 | case ICK_Pointer_Member: { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2725 | CastKind Kind = CK_Invalid; |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2726 | CXXCastPath BasePath; |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 2727 | if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2728 | return ExprError(); |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 2729 | if (CheckExceptionSpecCompatibility(From, ToType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2730 | return ExprError(); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2731 | From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK) |
| 2732 | .take(); |
Anders Carlsson | 61faec1 | 2009-09-12 04:46:44 +0000 | [diff] [blame] | 2733 | break; |
| 2734 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2735 | |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 2736 | case ICK_Boolean_Conversion: |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 2737 | // Perform half-to-boolean conversion via float. |
| 2738 | if (From->getType()->isHalfType()) { |
| 2739 | From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).take(); |
| 2740 | FromType = Context.FloatTy; |
| 2741 | } |
| 2742 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2743 | From = ImpCastExprToType(From, Context.BoolTy, |
| 2744 | ScalarTypeToBooleanCastKind(FromType), |
| 2745 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2746 | break; |
| 2747 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 2748 | case ICK_Derived_To_Base: { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2749 | CXXCastPath BasePath; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2750 | if (CheckDerivedToBaseConversion(From->getType(), |
Douglas Gregor | b7a86f5 | 2009-11-06 01:02:41 +0000 | [diff] [blame] | 2751 | ToType.getNonReferenceType(), |
| 2752 | From->getLocStart(), |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2753 | From->getSourceRange(), |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 2754 | &BasePath, |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 2755 | CStyle)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2756 | return ExprError(); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 2757 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2758 | From = ImpCastExprToType(From, ToType.getNonReferenceType(), |
| 2759 | CK_DerivedToBase, From->getValueKind(), |
| 2760 | &BasePath, CCK).take(); |
Douglas Gregor | b7a86f5 | 2009-11-06 01:02:41 +0000 | [diff] [blame] | 2761 | break; |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 2762 | } |
| 2763 | |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2764 | case ICK_Vector_Conversion: |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2765 | From = ImpCastExprToType(From, ToType, CK_BitCast, |
| 2766 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2767 | break; |
| 2768 | |
| 2769 | case ICK_Vector_Splat: |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2770 | From = ImpCastExprToType(From, ToType, CK_VectorSplat, |
| 2771 | VK_RValue, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2772 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2773 | |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2774 | case ICK_Complex_Real: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2775 | // Case 1. x -> _Complex y |
| 2776 | if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) { |
| 2777 | QualType ElType = ToComplex->getElementType(); |
| 2778 | bool isFloatingComplex = ElType->isRealFloatingType(); |
| 2779 | |
| 2780 | // x -> y |
| 2781 | if (Context.hasSameUnqualifiedType(ElType, From->getType())) { |
| 2782 | // do nothing |
| 2783 | } else if (From->getType()->isRealFloatingType()) { |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2784 | From = ImpCastExprToType(From, ElType, |
| 2785 | isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2786 | } else { |
| 2787 | assert(From->getType()->isIntegerType()); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2788 | From = ImpCastExprToType(From, ElType, |
| 2789 | isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2790 | } |
| 2791 | // y -> _Complex y |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2792 | From = ImpCastExprToType(From, ToType, |
| 2793 | isFloatingComplex ? CK_FloatingRealToComplex |
| 2794 | : CK_IntegralRealToComplex).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2795 | |
| 2796 | // Case 2. _Complex x -> y |
| 2797 | } else { |
| 2798 | const ComplexType *FromComplex = From->getType()->getAs<ComplexType>(); |
| 2799 | assert(FromComplex); |
| 2800 | |
| 2801 | QualType ElType = FromComplex->getElementType(); |
| 2802 | bool isFloatingComplex = ElType->isRealFloatingType(); |
| 2803 | |
| 2804 | // _Complex x -> x |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2805 | From = ImpCastExprToType(From, ElType, |
| 2806 | isFloatingComplex ? CK_FloatingComplexToReal |
| 2807 | : CK_IntegralComplexToReal, |
| 2808 | VK_RValue, /*BasePath=*/0, CCK).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2809 | |
| 2810 | // x -> y |
| 2811 | if (Context.hasSameUnqualifiedType(ElType, ToType)) { |
| 2812 | // do nothing |
| 2813 | } else if (ToType->isRealFloatingType()) { |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2814 | From = ImpCastExprToType(From, ToType, |
| 2815 | isFloatingComplex ? CK_FloatingCast : CK_IntegralToFloating, |
| 2816 | VK_RValue, /*BasePath=*/0, CCK).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2817 | } else { |
| 2818 | assert(ToType->isIntegerType()); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2819 | From = ImpCastExprToType(From, ToType, |
| 2820 | isFloatingComplex ? CK_FloatingToIntegral : CK_IntegralCast, |
| 2821 | VK_RValue, /*BasePath=*/0, CCK).take(); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 2822 | } |
| 2823 | } |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2824 | break; |
Fariborz Jahanian | e3c8c64 | 2011-02-12 19:07:46 +0000 | [diff] [blame] | 2825 | |
| 2826 | case ICK_Block_Pointer_Conversion: { |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2827 | From = ImpCastExprToType(From, ToType.getUnqualifiedType(), CK_BitCast, |
| 2828 | VK_RValue, /*BasePath=*/0, CCK).take(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2829 | break; |
| 2830 | } |
Fariborz Jahanian | e3c8c64 | 2011-02-12 19:07:46 +0000 | [diff] [blame] | 2831 | |
Fariborz Jahanian | d97f558 | 2011-03-23 19:50:54 +0000 | [diff] [blame] | 2832 | case ICK_TransparentUnionConversion: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2833 | ExprResult FromRes = Owned(From); |
Fariborz Jahanian | d97f558 | 2011-03-23 19:50:54 +0000 | [diff] [blame] | 2834 | Sema::AssignConvertType ConvTy = |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2835 | CheckTransparentUnionArgumentConstraints(ToType, FromRes); |
| 2836 | if (FromRes.isInvalid()) |
| 2837 | return ExprError(); |
| 2838 | From = FromRes.take(); |
Fariborz Jahanian | d97f558 | 2011-03-23 19:50:54 +0000 | [diff] [blame] | 2839 | assert ((ConvTy == Sema::Compatible) && |
| 2840 | "Improper transparent union conversion"); |
| 2841 | (void)ConvTy; |
| 2842 | break; |
| 2843 | } |
| 2844 | |
Guy Benyei | 6959acd | 2013-02-07 16:05:33 +0000 | [diff] [blame] | 2845 | case ICK_Zero_Event_Conversion: |
| 2846 | From = ImpCastExprToType(From, ToType, |
| 2847 | CK_ZeroToOCLEvent, |
| 2848 | From->getValueKind()).take(); |
| 2849 | break; |
| 2850 | |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 2851 | case ICK_Lvalue_To_Rvalue: |
| 2852 | case ICK_Array_To_Pointer: |
| 2853 | case ICK_Function_To_Pointer: |
| 2854 | case ICK_Qualification: |
| 2855 | case ICK_Num_Conversion_Kinds: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2856 | llvm_unreachable("Improper second standard conversion"); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2857 | } |
| 2858 | |
| 2859 | switch (SCS.Third) { |
| 2860 | case ICK_Identity: |
| 2861 | // Nothing to do. |
| 2862 | break; |
| 2863 | |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2864 | case ICK_Qualification: { |
| 2865 | // The qualification keeps the category of the inner expression, unless the |
| 2866 | // target type isn't a reference. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2867 | ExprValueKind VK = ToType->isReferenceType() ? |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 2868 | From->getValueKind() : VK_RValue; |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 2869 | From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context), |
| 2870 | CK_NoOp, VK, /*BasePath=*/0, CCK).take(); |
Douglas Gregor | a9bff30 | 2010-02-28 18:30:25 +0000 | [diff] [blame] | 2871 | |
Douglas Gregor | 069a6da | 2011-03-14 16:13:32 +0000 | [diff] [blame] | 2872 | if (SCS.DeprecatedStringLiteralToCharPtr && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2873 | !getLangOpts().WritableStrings) |
Douglas Gregor | a9bff30 | 2010-02-28 18:30:25 +0000 | [diff] [blame] | 2874 | Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion) |
| 2875 | << ToType.getNonReferenceType(); |
| 2876 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2877 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2878 | } |
| 2879 | |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2880 | default: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2881 | llvm_unreachable("Improper third standard conversion"); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2882 | } |
| 2883 | |
Douglas Gregor | 47bfcca | 2012-04-12 20:42:30 +0000 | [diff] [blame] | 2884 | // If this conversion sequence involved a scalar -> atomic conversion, perform |
| 2885 | // that conversion now. |
| 2886 | if (const AtomicType *ToAtomic = ToType->getAs<AtomicType>()) |
| 2887 | if (Context.hasSameType(ToAtomic->getValueType(), From->getType())) |
| 2888 | From = ImpCastExprToType(From, ToType, CK_NonAtomicToAtomic, VK_RValue, 0, |
| 2889 | CCK).take(); |
| 2890 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2891 | return Owned(From); |
Douglas Gregor | 94b1dd2 | 2008-10-24 04:54:22 +0000 | [diff] [blame] | 2892 | } |
| 2893 | |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 2894 | ExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait UTT, |
Douglas Gregor | 3d37c0a | 2010-09-09 16:14:44 +0000 | [diff] [blame] | 2895 | SourceLocation KWLoc, |
| 2896 | ParsedType Ty, |
| 2897 | SourceLocation RParen) { |
| 2898 | TypeSourceInfo *TSInfo; |
| 2899 | QualType T = GetTypeFromParser(Ty, &TSInfo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2900 | |
Douglas Gregor | 3d37c0a | 2010-09-09 16:14:44 +0000 | [diff] [blame] | 2901 | if (!TSInfo) |
| 2902 | TSInfo = Context.getTrivialTypeSourceInfo(T); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 2903 | return BuildUnaryTypeTrait(UTT, KWLoc, TSInfo, RParen); |
Douglas Gregor | 3d37c0a | 2010-09-09 16:14:44 +0000 | [diff] [blame] | 2904 | } |
| 2905 | |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2906 | /// \brief Check the completeness of a type in a unary type trait. |
| 2907 | /// |
| 2908 | /// If the particular type trait requires a complete type, tries to complete |
| 2909 | /// it. If completing the type fails, a diagnostic is emitted and false |
| 2910 | /// returned. If completing the type succeeds or no completion was required, |
| 2911 | /// returns true. |
| 2912 | static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, |
| 2913 | UnaryTypeTrait UTT, |
| 2914 | SourceLocation Loc, |
| 2915 | QualType ArgTy) { |
| 2916 | // C++0x [meta.unary.prop]p3: |
| 2917 | // For all of the class templates X declared in this Clause, instantiating |
| 2918 | // that template with a template argument that is a class template |
| 2919 | // specialization may result in the implicit instantiation of the template |
| 2920 | // argument if and only if the semantics of X require that the argument |
| 2921 | // must be a complete type. |
| 2922 | // We apply this rule to all the type trait expressions used to implement |
| 2923 | // these class templates. We also try to follow any GCC documented behavior |
| 2924 | // in these expressions to ensure portability of standard libraries. |
| 2925 | switch (UTT) { |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2926 | // is_complete_type somewhat obviously cannot require a complete type. |
| 2927 | case UTT_IsCompleteType: |
Chandler Carruth | d6efe9b | 2011-05-01 19:18:02 +0000 | [diff] [blame] | 2928 | // Fall-through |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2929 | |
| 2930 | // These traits are modeled on the type predicates in C++0x |
| 2931 | // [meta.unary.cat] and [meta.unary.comp]. They are not specified as |
| 2932 | // requiring a complete type, as whether or not they return true cannot be |
| 2933 | // impacted by the completeness of the type. |
| 2934 | case UTT_IsVoid: |
| 2935 | case UTT_IsIntegral: |
| 2936 | case UTT_IsFloatingPoint: |
| 2937 | case UTT_IsArray: |
| 2938 | case UTT_IsPointer: |
| 2939 | case UTT_IsLvalueReference: |
| 2940 | case UTT_IsRvalueReference: |
| 2941 | case UTT_IsMemberFunctionPointer: |
| 2942 | case UTT_IsMemberObjectPointer: |
| 2943 | case UTT_IsEnum: |
| 2944 | case UTT_IsUnion: |
| 2945 | case UTT_IsClass: |
| 2946 | case UTT_IsFunction: |
| 2947 | case UTT_IsReference: |
| 2948 | case UTT_IsArithmetic: |
| 2949 | case UTT_IsFundamental: |
| 2950 | case UTT_IsObject: |
| 2951 | case UTT_IsScalar: |
| 2952 | case UTT_IsCompound: |
| 2953 | case UTT_IsMemberPointer: |
Chandler Carruth | d6efe9b | 2011-05-01 19:18:02 +0000 | [diff] [blame] | 2954 | // Fall-through |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2955 | |
| 2956 | // These traits are modeled on type predicates in C++0x [meta.unary.prop] |
| 2957 | // which requires some of its traits to have the complete type. However, |
| 2958 | // the completeness of the type cannot impact these traits' semantics, and |
| 2959 | // so they don't require it. This matches the comments on these traits in |
| 2960 | // Table 49. |
| 2961 | case UTT_IsConst: |
| 2962 | case UTT_IsVolatile: |
| 2963 | case UTT_IsSigned: |
| 2964 | case UTT_IsUnsigned: |
| 2965 | return true; |
| 2966 | |
| 2967 | // C++0x [meta.unary.prop] Table 49 requires the following traits to be |
Chandler Carruth | d6efe9b | 2011-05-01 19:18:02 +0000 | [diff] [blame] | 2968 | // applied to a complete type. |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2969 | case UTT_IsTrivial: |
Sean Hunt | feb375d | 2011-05-13 00:31:07 +0000 | [diff] [blame] | 2970 | case UTT_IsTriviallyCopyable: |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2971 | case UTT_IsStandardLayout: |
| 2972 | case UTT_IsPOD: |
| 2973 | case UTT_IsLiteral: |
| 2974 | case UTT_IsEmpty: |
| 2975 | case UTT_IsPolymorphic: |
| 2976 | case UTT_IsAbstract: |
John McCall | ea30e2f | 2012-09-25 07:32:49 +0000 | [diff] [blame] | 2977 | case UTT_IsInterfaceClass: |
Chandler Carruth | d6efe9b | 2011-05-01 19:18:02 +0000 | [diff] [blame] | 2978 | // Fall-through |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2979 | |
Douglas Gregor | 5e9392b | 2011-12-03 18:14:24 +0000 | [diff] [blame] | 2980 | // These traits require a complete type. |
| 2981 | case UTT_IsFinal: |
| 2982 | |
Chandler Carruth | d6efe9b | 2011-05-01 19:18:02 +0000 | [diff] [blame] | 2983 | // These trait expressions are designed to help implement predicates in |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2984 | // [meta.unary.prop] despite not being named the same. They are specified |
| 2985 | // by both GCC and the Embarcadero C++ compiler, and require the complete |
| 2986 | // type due to the overarching C++0x type predicates being implemented |
| 2987 | // requiring the complete type. |
| 2988 | case UTT_HasNothrowAssign: |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 2989 | case UTT_HasNothrowMoveAssign: |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2990 | case UTT_HasNothrowConstructor: |
| 2991 | case UTT_HasNothrowCopy: |
| 2992 | case UTT_HasTrivialAssign: |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 2993 | case UTT_HasTrivialMoveAssign: |
Sean Hunt | 023df37 | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 2994 | case UTT_HasTrivialDefaultConstructor: |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 2995 | case UTT_HasTrivialMoveConstructor: |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 2996 | case UTT_HasTrivialCopy: |
| 2997 | case UTT_HasTrivialDestructor: |
| 2998 | case UTT_HasVirtualDestructor: |
| 2999 | // Arrays of unknown bound are expressly allowed. |
| 3000 | QualType ElTy = ArgTy; |
| 3001 | if (ArgTy->isIncompleteArrayType()) |
| 3002 | ElTy = S.Context.getAsArrayType(ArgTy)->getElementType(); |
| 3003 | |
| 3004 | // The void type is expressly allowed. |
| 3005 | if (ElTy->isVoidType()) |
| 3006 | return true; |
| 3007 | |
| 3008 | return !S.RequireCompleteType( |
| 3009 | Loc, ElTy, diag::err_incomplete_type_used_in_type_trait_expr); |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3010 | } |
Chandler Carruth | 73e0a91 | 2011-05-01 07:23:17 +0000 | [diff] [blame] | 3011 | llvm_unreachable("Type trait not handled by switch"); |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 3012 | } |
| 3013 | |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 3014 | static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op, |
| 3015 | Sema &Self, SourceLocation KeyLoc, ASTContext &C, |
| 3016 | bool (CXXRecordDecl::*HasTrivial)() const, |
| 3017 | bool (CXXRecordDecl::*HasNonTrivial)() const, |
| 3018 | bool (CXXMethodDecl::*IsDesiredOp)() const) |
| 3019 | { |
| 3020 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
| 3021 | if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)()) |
| 3022 | return true; |
| 3023 | |
| 3024 | DeclarationName Name = C.DeclarationNames.getCXXOperatorName(Op); |
| 3025 | DeclarationNameInfo NameInfo(Name, KeyLoc); |
| 3026 | LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName); |
| 3027 | if (Self.LookupQualifiedName(Res, RD)) { |
| 3028 | bool FoundOperator = false; |
| 3029 | Res.suppressDiagnostics(); |
| 3030 | for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end(); |
| 3031 | Op != OpEnd; ++Op) { |
| 3032 | if (isa<FunctionTemplateDecl>(*Op)) |
| 3033 | continue; |
| 3034 | |
| 3035 | CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op); |
| 3036 | if((Operator->*IsDesiredOp)()) { |
| 3037 | FoundOperator = true; |
| 3038 | const FunctionProtoType *CPT = |
| 3039 | Operator->getType()->getAs<FunctionProtoType>(); |
| 3040 | CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); |
| 3041 | if (!CPT || !CPT->isNothrow(Self.Context)) |
| 3042 | return false; |
| 3043 | } |
| 3044 | } |
| 3045 | return FoundOperator; |
| 3046 | } |
| 3047 | return false; |
| 3048 | } |
| 3049 | |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 3050 | static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT, |
| 3051 | SourceLocation KeyLoc, QualType T) { |
Chandler Carruth | d064c70 | 2011-05-01 08:41:10 +0000 | [diff] [blame] | 3052 | assert(!T->isDependentType() && "Cannot evaluate traits of dependent type"); |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3053 | |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3054 | ASTContext &C = Self.Context; |
| 3055 | switch(UTT) { |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3056 | // Type trait expressions corresponding to the primary type category |
| 3057 | // predicates in C++0x [meta.unary.cat]. |
| 3058 | case UTT_IsVoid: |
| 3059 | return T->isVoidType(); |
| 3060 | case UTT_IsIntegral: |
| 3061 | return T->isIntegralType(C); |
| 3062 | case UTT_IsFloatingPoint: |
| 3063 | return T->isFloatingType(); |
| 3064 | case UTT_IsArray: |
| 3065 | return T->isArrayType(); |
| 3066 | case UTT_IsPointer: |
| 3067 | return T->isPointerType(); |
| 3068 | case UTT_IsLvalueReference: |
| 3069 | return T->isLValueReferenceType(); |
| 3070 | case UTT_IsRvalueReference: |
| 3071 | return T->isRValueReferenceType(); |
| 3072 | case UTT_IsMemberFunctionPointer: |
| 3073 | return T->isMemberFunctionPointerType(); |
| 3074 | case UTT_IsMemberObjectPointer: |
| 3075 | return T->isMemberDataPointerType(); |
| 3076 | case UTT_IsEnum: |
| 3077 | return T->isEnumeralType(); |
Chandler Carruth | 28eeb38 | 2011-05-01 06:11:03 +0000 | [diff] [blame] | 3078 | case UTT_IsUnion: |
Chandler Carruth | aaf147b | 2011-05-01 09:29:58 +0000 | [diff] [blame] | 3079 | return T->isUnionType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3080 | case UTT_IsClass: |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 3081 | return T->isClassType() || T->isStructureType() || T->isInterfaceType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3082 | case UTT_IsFunction: |
| 3083 | return T->isFunctionType(); |
| 3084 | |
| 3085 | // Type trait expressions which correspond to the convenient composition |
| 3086 | // predicates in C++0x [meta.unary.comp]. |
| 3087 | case UTT_IsReference: |
| 3088 | return T->isReferenceType(); |
| 3089 | case UTT_IsArithmetic: |
Chandler Carruth | aaf147b | 2011-05-01 09:29:58 +0000 | [diff] [blame] | 3090 | return T->isArithmeticType() && !T->isEnumeralType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3091 | case UTT_IsFundamental: |
Chandler Carruth | aaf147b | 2011-05-01 09:29:58 +0000 | [diff] [blame] | 3092 | return T->isFundamentalType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3093 | case UTT_IsObject: |
Chandler Carruth | aaf147b | 2011-05-01 09:29:58 +0000 | [diff] [blame] | 3094 | return T->isObjectType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3095 | case UTT_IsScalar: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3096 | // Note: semantic analysis depends on Objective-C lifetime types to be |
| 3097 | // considered scalar types. However, such types do not actually behave |
| 3098 | // like scalar types at run time (since they may require retain/release |
| 3099 | // operations), so we report them as non-scalar. |
| 3100 | if (T->isObjCLifetimeType()) { |
| 3101 | switch (T.getObjCLifetime()) { |
| 3102 | case Qualifiers::OCL_None: |
| 3103 | case Qualifiers::OCL_ExplicitNone: |
| 3104 | return true; |
| 3105 | |
| 3106 | case Qualifiers::OCL_Strong: |
| 3107 | case Qualifiers::OCL_Weak: |
| 3108 | case Qualifiers::OCL_Autoreleasing: |
| 3109 | return false; |
| 3110 | } |
| 3111 | } |
| 3112 | |
Chandler Carruth | cec0ced | 2011-05-01 09:29:55 +0000 | [diff] [blame] | 3113 | return T->isScalarType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3114 | case UTT_IsCompound: |
Chandler Carruth | aaf147b | 2011-05-01 09:29:58 +0000 | [diff] [blame] | 3115 | return T->isCompoundType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3116 | case UTT_IsMemberPointer: |
| 3117 | return T->isMemberPointerType(); |
| 3118 | |
| 3119 | // Type trait expressions which correspond to the type property predicates |
| 3120 | // in C++0x [meta.unary.prop]. |
| 3121 | case UTT_IsConst: |
| 3122 | return T.isConstQualified(); |
| 3123 | case UTT_IsVolatile: |
| 3124 | return T.isVolatileQualified(); |
| 3125 | case UTT_IsTrivial: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3126 | return T.isTrivialType(Self.Context); |
Sean Hunt | feb375d | 2011-05-13 00:31:07 +0000 | [diff] [blame] | 3127 | case UTT_IsTriviallyCopyable: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3128 | return T.isTriviallyCopyableType(Self.Context); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3129 | case UTT_IsStandardLayout: |
| 3130 | return T->isStandardLayoutType(); |
| 3131 | case UTT_IsPOD: |
Benjamin Kramer | 470360d | 2012-04-28 10:00:33 +0000 | [diff] [blame] | 3132 | return T.isPODType(Self.Context); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3133 | case UTT_IsLiteral: |
Richard Smith | a10b978 | 2013-04-22 15:31:51 +0000 | [diff] [blame] | 3134 | return T->isLiteralType(Self.Context); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3135 | case UTT_IsEmpty: |
| 3136 | if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3137 | return !RD->isUnion() && RD->isEmpty(); |
| 3138 | return false; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3139 | case UTT_IsPolymorphic: |
Chandler Carruth | 28eeb38 | 2011-05-01 06:11:03 +0000 | [diff] [blame] | 3140 | if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3141 | return RD->isPolymorphic(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3142 | return false; |
| 3143 | case UTT_IsAbstract: |
Chandler Carruth | 28eeb38 | 2011-05-01 06:11:03 +0000 | [diff] [blame] | 3144 | if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3145 | return RD->isAbstract(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3146 | return false; |
John McCall | ea30e2f | 2012-09-25 07:32:49 +0000 | [diff] [blame] | 3147 | case UTT_IsInterfaceClass: |
| 3148 | if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3149 | return RD->isInterface(); |
| 3150 | return false; |
Douglas Gregor | 5e9392b | 2011-12-03 18:14:24 +0000 | [diff] [blame] | 3151 | case UTT_IsFinal: |
| 3152 | if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3153 | return RD->hasAttr<FinalAttr>(); |
| 3154 | return false; |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 3155 | case UTT_IsSigned: |
| 3156 | return T->isSignedIntegerType(); |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 3157 | case UTT_IsUnsigned: |
| 3158 | return T->isUnsignedIntegerType(); |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3159 | |
| 3160 | // Type trait expressions which query classes regarding their construction, |
| 3161 | // destruction, and copying. Rather than being based directly on the |
| 3162 | // related type predicates in the standard, they are specified by both |
| 3163 | // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those |
| 3164 | // specifications. |
| 3165 | // |
| 3166 | // 1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html |
| 3167 | // 2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3168 | // |
| 3169 | // Note that these builtins do not behave as documented in g++: if a class |
| 3170 | // has both a trivial and a non-trivial special member of a particular kind, |
| 3171 | // they return false! For now, we emulate this behavior. |
| 3172 | // FIXME: This appears to be a g++ bug: more complex cases reveal that it |
| 3173 | // does not correctly compute triviality in the presence of multiple special |
| 3174 | // members of the same kind. Revisit this once the g++ bug is fixed. |
Sean Hunt | 023df37 | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 3175 | case UTT_HasTrivialDefaultConstructor: |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3176 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3177 | // If __is_pod (type) is true then the trait is true, else if type is |
| 3178 | // a cv class or union type (or array thereof) with a trivial default |
| 3179 | // constructor ([class.ctor]) then the trait is true, else it is false. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3180 | if (T.isPODType(Self.Context)) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3181 | return true; |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3182 | if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) |
| 3183 | return RD->hasTrivialDefaultConstructor() && |
| 3184 | !RD->hasNonTrivialDefaultConstructor(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3185 | return false; |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 3186 | case UTT_HasTrivialMoveConstructor: |
| 3187 | // This trait is implemented by MSVC 2012 and needed to parse the |
| 3188 | // standard library headers. Specifically this is used as the logic |
| 3189 | // behind std::is_trivially_move_constructible (20.9.4.3). |
| 3190 | if (T.isPODType(Self.Context)) |
| 3191 | return true; |
| 3192 | if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) |
| 3193 | return RD->hasTrivialMoveConstructor() && !RD->hasNonTrivialMoveConstructor(); |
| 3194 | return false; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3195 | case UTT_HasTrivialCopy: |
| 3196 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3197 | // If __is_pod (type) is true or type is a reference type then |
| 3198 | // the trait is true, else if type is a cv class or union type |
| 3199 | // with a trivial copy constructor ([class.copy]) then the trait |
| 3200 | // is true, else it is false. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3201 | if (T.isPODType(Self.Context) || T->isReferenceType()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3202 | return true; |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3203 | if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3204 | return RD->hasTrivialCopyConstructor() && |
| 3205 | !RD->hasNonTrivialCopyConstructor(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3206 | return false; |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 3207 | case UTT_HasTrivialMoveAssign: |
| 3208 | // This trait is implemented by MSVC 2012 and needed to parse the |
| 3209 | // standard library headers. Specifically it is used as the logic |
| 3210 | // behind std::is_trivially_move_assignable (20.9.4.3) |
| 3211 | if (T.isPODType(Self.Context)) |
| 3212 | return true; |
| 3213 | if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) |
| 3214 | return RD->hasTrivialMoveAssignment() && !RD->hasNonTrivialMoveAssignment(); |
| 3215 | return false; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3216 | case UTT_HasTrivialAssign: |
| 3217 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3218 | // If type is const qualified or is a reference type then the |
| 3219 | // trait is false. Otherwise if __is_pod (type) is true then the |
| 3220 | // trait is true, else if type is a cv class or union type with |
| 3221 | // a trivial copy assignment ([class.copy]) then the trait is |
| 3222 | // true, else it is false. |
| 3223 | // Note: the const and reference restrictions are interesting, |
| 3224 | // given that const and reference members don't prevent a class |
| 3225 | // from having a trivial copy assignment operator (but do cause |
| 3226 | // errors if the copy assignment operator is actually used, q.v. |
| 3227 | // [class.copy]p12). |
| 3228 | |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3229 | if (T.isConstQualified()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3230 | return false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3231 | if (T.isPODType(Self.Context)) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3232 | return true; |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3233 | if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
| 3234 | return RD->hasTrivialCopyAssignment() && |
| 3235 | !RD->hasNonTrivialCopyAssignment(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3236 | return false; |
| 3237 | case UTT_HasTrivialDestructor: |
| 3238 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3239 | // If __is_pod (type) is true or type is a reference type |
| 3240 | // then the trait is true, else if type is a cv class or union |
| 3241 | // type (or array thereof) with a trivial destructor |
| 3242 | // ([class.dtor]) then the trait is true, else it is |
| 3243 | // false. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3244 | if (T.isPODType(Self.Context) || T->isReferenceType()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3245 | return true; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3246 | |
| 3247 | // Objective-C++ ARC: autorelease types don't require destruction. |
| 3248 | if (T->isObjCLifetimeType() && |
| 3249 | T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) |
| 3250 | return true; |
| 3251 | |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3252 | if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) |
| 3253 | return RD->hasTrivialDestructor(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3254 | return false; |
| 3255 | // TODO: Propagate nothrowness for implicitly declared special members. |
| 3256 | case UTT_HasNothrowAssign: |
| 3257 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3258 | // If type is const qualified or is a reference type then the |
| 3259 | // trait is false. Otherwise if __has_trivial_assign (type) |
| 3260 | // is true then the trait is true, else if type is a cv class |
| 3261 | // or union type with copy assignment operators that are known |
| 3262 | // not to throw an exception then the trait is true, else it is |
| 3263 | // false. |
| 3264 | if (C.getBaseElementType(T).isConstQualified()) |
| 3265 | return false; |
| 3266 | if (T->isReferenceType()) |
| 3267 | return false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3268 | if (T.isPODType(Self.Context) || T->isObjCLifetimeType()) |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 3269 | return true; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3270 | |
Joao Matos | 9ef9875 | 2013-03-27 01:34:16 +0000 | [diff] [blame] | 3271 | if (const RecordType *RT = T->getAs<RecordType>()) |
| 3272 | return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, |
| 3273 | &CXXRecordDecl::hasTrivialCopyAssignment, |
| 3274 | &CXXRecordDecl::hasNonTrivialCopyAssignment, |
| 3275 | &CXXMethodDecl::isCopyAssignmentOperator); |
| 3276 | return false; |
| 3277 | case UTT_HasNothrowMoveAssign: |
| 3278 | // This trait is implemented by MSVC 2012 and needed to parse the |
| 3279 | // standard library headers. Specifically this is used as the logic |
| 3280 | // behind std::is_nothrow_move_assignable (20.9.4.3). |
| 3281 | if (T.isPODType(Self.Context)) |
| 3282 | return true; |
| 3283 | |
| 3284 | if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>()) |
| 3285 | return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, |
| 3286 | &CXXRecordDecl::hasTrivialMoveAssignment, |
| 3287 | &CXXRecordDecl::hasNonTrivialMoveAssignment, |
| 3288 | &CXXMethodDecl::isMoveAssignmentOperator); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3289 | return false; |
| 3290 | case UTT_HasNothrowCopy: |
| 3291 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3292 | // If __has_trivial_copy (type) is true then the trait is true, else |
| 3293 | // if type is a cv class or union type with copy constructors that are |
| 3294 | // known not to throw an exception then the trait is true, else it is |
| 3295 | // false. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3296 | if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3297 | return true; |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3298 | if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) { |
| 3299 | if (RD->hasTrivialCopyConstructor() && |
| 3300 | !RD->hasNonTrivialCopyConstructor()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3301 | return true; |
| 3302 | |
| 3303 | bool FoundConstructor = false; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3304 | unsigned FoundTQs; |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3305 | DeclContext::lookup_const_result R = Self.LookupConstructors(RD); |
| 3306 | for (DeclContext::lookup_const_iterator Con = R.begin(), |
| 3307 | ConEnd = R.end(); Con != ConEnd; ++Con) { |
Sebastian Redl | 08295a5 | 2010-09-13 22:18:28 +0000 | [diff] [blame] | 3308 | // A template constructor is never a copy constructor. |
| 3309 | // FIXME: However, it may actually be selected at the actual overload |
| 3310 | // resolution point. |
| 3311 | if (isa<FunctionTemplateDecl>(*Con)) |
| 3312 | continue; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3313 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con); |
| 3314 | if (Constructor->isCopyConstructor(FoundTQs)) { |
| 3315 | FoundConstructor = true; |
| 3316 | const FunctionProtoType *CPT |
| 3317 | = Constructor->getType()->getAs<FunctionProtoType>(); |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 3318 | CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); |
| 3319 | if (!CPT) |
| 3320 | return false; |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 3321 | // FIXME: check whether evaluating default arguments can throw. |
Sebastian Redl | 751025d | 2010-09-13 22:02:47 +0000 | [diff] [blame] | 3322 | // For now, we'll be conservative and assume that they can throw. |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 3323 | if (!CPT->isNothrow(Self.Context) || CPT->getNumArgs() > 1) |
| 3324 | return false; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3325 | } |
| 3326 | } |
| 3327 | |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 3328 | return FoundConstructor; |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3329 | } |
| 3330 | return false; |
| 3331 | case UTT_HasNothrowConstructor: |
| 3332 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3333 | // If __has_trivial_constructor (type) is true then the trait is |
| 3334 | // true, else if type is a cv class or union type (or array |
| 3335 | // thereof) with a default constructor that is known not to |
| 3336 | // throw an exception then the trait is true, else it is false. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3337 | if (T.isPODType(C) || T->isObjCLifetimeType()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3338 | return true; |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3339 | if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) { |
| 3340 | if (RD->hasTrivialDefaultConstructor() && |
| 3341 | !RD->hasNonTrivialDefaultConstructor()) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3342 | return true; |
| 3343 | |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3344 | DeclContext::lookup_const_result R = Self.LookupConstructors(RD); |
| 3345 | for (DeclContext::lookup_const_iterator Con = R.begin(), |
| 3346 | ConEnd = R.end(); Con != ConEnd; ++Con) { |
Sebastian Redl | 08295a5 | 2010-09-13 22:18:28 +0000 | [diff] [blame] | 3347 | // FIXME: In C++0x, a constructor template can be a default constructor. |
| 3348 | if (isa<FunctionTemplateDecl>(*Con)) |
| 3349 | continue; |
Sebastian Redl | 751025d | 2010-09-13 22:02:47 +0000 | [diff] [blame] | 3350 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con); |
| 3351 | if (Constructor->isDefaultConstructor()) { |
| 3352 | const FunctionProtoType *CPT |
| 3353 | = Constructor->getType()->getAs<FunctionProtoType>(); |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 3354 | CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); |
| 3355 | if (!CPT) |
| 3356 | return false; |
Sebastian Redl | 751025d | 2010-09-13 22:02:47 +0000 | [diff] [blame] | 3357 | // TODO: check whether evaluating default arguments can throw. |
| 3358 | // For now, we'll be conservative and assume that they can throw. |
Sebastian Redl | 8026f6d | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 3359 | return CPT->isNothrow(Self.Context) && CPT->getNumArgs() == 0; |
Sebastian Redl | 751025d | 2010-09-13 22:02:47 +0000 | [diff] [blame] | 3360 | } |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3361 | } |
| 3362 | } |
| 3363 | return false; |
| 3364 | case UTT_HasVirtualDestructor: |
| 3365 | // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: |
| 3366 | // If type is a class type with a virtual destructor ([class.dtor]) |
| 3367 | // then the trait is true, else it is false. |
Richard Smith | ac71351 | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 3368 | if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) |
Sebastian Redl | f8aca86 | 2010-09-14 23:40:14 +0000 | [diff] [blame] | 3369 | if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD)) |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3370 | return Destructor->isVirtual(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3371 | return false; |
Chandler Carruth | c41d6b5 | 2011-05-01 06:11:07 +0000 | [diff] [blame] | 3372 | |
| 3373 | // These type trait expressions are modeled on the specifications for the |
| 3374 | // Embarcadero C++0x type trait functions: |
| 3375 | // http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index |
| 3376 | case UTT_IsCompleteType: |
| 3377 | // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_): |
| 3378 | // Returns True if and only if T is a complete type at the point of the |
| 3379 | // function call. |
| 3380 | return !T->isIncompleteType(); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3381 | } |
Chandler Carruth | 83f563c | 2011-05-01 07:44:17 +0000 | [diff] [blame] | 3382 | llvm_unreachable("Type trait not covered by switch"); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3383 | } |
| 3384 | |
| 3385 | ExprResult Sema::BuildUnaryTypeTrait(UnaryTypeTrait UTT, |
Douglas Gregor | 3d37c0a | 2010-09-09 16:14:44 +0000 | [diff] [blame] | 3386 | SourceLocation KWLoc, |
| 3387 | TypeSourceInfo *TSInfo, |
| 3388 | SourceLocation RParen) { |
| 3389 | QualType T = TSInfo->getType(); |
Chandler Carruth | eb65a10 | 2011-04-30 10:07:32 +0000 | [diff] [blame] | 3390 | if (!CheckUnaryTypeTraitTypeCompleteness(*this, UTT, KWLoc, T)) |
| 3391 | return ExprError(); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3392 | |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3393 | bool Value = false; |
| 3394 | if (!T->isDependentType()) |
Chandler Carruth | ccb4ecf | 2011-05-01 06:51:22 +0000 | [diff] [blame] | 3395 | Value = EvaluateUnaryTypeTrait(*this, UTT, KWLoc, T); |
Sebastian Redl | 0dfd848 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 3396 | |
| 3397 | return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, UTT, TSInfo, Value, |
Anders Carlsson | 3292d5c | 2009-07-07 19:06:02 +0000 | [diff] [blame] | 3398 | RParen, Context.BoolTy)); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3399 | } |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3400 | |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3401 | ExprResult Sema::ActOnBinaryTypeTrait(BinaryTypeTrait BTT, |
| 3402 | SourceLocation KWLoc, |
| 3403 | ParsedType LhsTy, |
| 3404 | ParsedType RhsTy, |
| 3405 | SourceLocation RParen) { |
| 3406 | TypeSourceInfo *LhsTSInfo; |
| 3407 | QualType LhsT = GetTypeFromParser(LhsTy, &LhsTSInfo); |
| 3408 | if (!LhsTSInfo) |
| 3409 | LhsTSInfo = Context.getTrivialTypeSourceInfo(LhsT); |
| 3410 | |
| 3411 | TypeSourceInfo *RhsTSInfo; |
| 3412 | QualType RhsT = GetTypeFromParser(RhsTy, &RhsTSInfo); |
| 3413 | if (!RhsTSInfo) |
| 3414 | RhsTSInfo = Context.getTrivialTypeSourceInfo(RhsT); |
| 3415 | |
| 3416 | return BuildBinaryTypeTrait(BTT, KWLoc, LhsTSInfo, RhsTSInfo, RParen); |
| 3417 | } |
| 3418 | |
Douglas Gregor | 14b2327 | 2012-06-29 00:49:17 +0000 | [diff] [blame] | 3419 | /// \brief Determine whether T has a non-trivial Objective-C lifetime in |
| 3420 | /// ARC mode. |
| 3421 | static bool hasNontrivialObjCLifetime(QualType T) { |
| 3422 | switch (T.getObjCLifetime()) { |
| 3423 | case Qualifiers::OCL_ExplicitNone: |
| 3424 | return false; |
| 3425 | |
| 3426 | case Qualifiers::OCL_Strong: |
| 3427 | case Qualifiers::OCL_Weak: |
| 3428 | case Qualifiers::OCL_Autoreleasing: |
| 3429 | return true; |
| 3430 | |
| 3431 | case Qualifiers::OCL_None: |
| 3432 | return T->isObjCLifetimeType(); |
| 3433 | } |
| 3434 | |
| 3435 | llvm_unreachable("Unknown ObjC lifetime qualifier"); |
| 3436 | } |
| 3437 | |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3438 | static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc, |
| 3439 | ArrayRef<TypeSourceInfo *> Args, |
| 3440 | SourceLocation RParenLoc) { |
| 3441 | switch (Kind) { |
| 3442 | case clang::TT_IsTriviallyConstructible: { |
| 3443 | // C++11 [meta.unary.prop]: |
Dmitri Gribenko | 62348f0 | 2012-02-24 20:03:35 +0000 | [diff] [blame] | 3444 | // is_trivially_constructible is defined as: |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3445 | // |
Dmitri Gribenko | 62348f0 | 2012-02-24 20:03:35 +0000 | [diff] [blame] | 3446 | // is_constructible<T, Args...>::value is true and the variable |
| 3447 | // definition for is_constructible, as defined below, is known to call no |
| 3448 | // operation that is not trivial. |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3449 | // |
| 3450 | // The predicate condition for a template specialization |
| 3451 | // is_constructible<T, Args...> shall be satisfied if and only if the |
| 3452 | // following variable definition would be well-formed for some invented |
| 3453 | // variable t: |
| 3454 | // |
| 3455 | // T t(create<Args>()...); |
| 3456 | if (Args.empty()) { |
| 3457 | S.Diag(KWLoc, diag::err_type_trait_arity) |
| 3458 | << 1 << 1 << 1 << (int)Args.size(); |
| 3459 | return false; |
| 3460 | } |
| 3461 | |
| 3462 | bool SawVoid = false; |
| 3463 | for (unsigned I = 0, N = Args.size(); I != N; ++I) { |
| 3464 | if (Args[I]->getType()->isVoidType()) { |
| 3465 | SawVoid = true; |
| 3466 | continue; |
| 3467 | } |
| 3468 | |
| 3469 | if (!Args[I]->getType()->isIncompleteType() && |
| 3470 | S.RequireCompleteType(KWLoc, Args[I]->getType(), |
| 3471 | diag::err_incomplete_type_used_in_type_trait_expr)) |
| 3472 | return false; |
| 3473 | } |
| 3474 | |
| 3475 | // If any argument was 'void', of course it won't type-check. |
| 3476 | if (SawVoid) |
| 3477 | return false; |
| 3478 | |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 3479 | SmallVector<OpaqueValueExpr, 2> OpaqueArgExprs; |
| 3480 | SmallVector<Expr *, 2> ArgExprs; |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3481 | ArgExprs.reserve(Args.size() - 1); |
| 3482 | for (unsigned I = 1, N = Args.size(); I != N; ++I) { |
| 3483 | QualType T = Args[I]->getType(); |
| 3484 | if (T->isObjectType() || T->isFunctionType()) |
| 3485 | T = S.Context.getRValueReferenceType(T); |
| 3486 | OpaqueArgExprs.push_back( |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3487 | OpaqueValueExpr(Args[I]->getTypeLoc().getLocStart(), |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3488 | T.getNonLValueExprType(S.Context), |
| 3489 | Expr::getValueKindForType(T))); |
| 3490 | ArgExprs.push_back(&OpaqueArgExprs.back()); |
| 3491 | } |
| 3492 | |
| 3493 | // Perform the initialization in an unevaluated context within a SFINAE |
| 3494 | // trap at translation unit scope. |
| 3495 | EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated); |
| 3496 | Sema::SFINAETrap SFINAE(S, /*AccessCheckingSFINAE=*/true); |
| 3497 | Sema::ContextRAII TUContext(S, S.Context.getTranslationUnitDecl()); |
| 3498 | InitializedEntity To(InitializedEntity::InitializeTemporary(Args[0])); |
| 3499 | InitializationKind InitKind(InitializationKind::CreateDirect(KWLoc, KWLoc, |
| 3500 | RParenLoc)); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3501 | InitializationSequence Init(S, To, InitKind, ArgExprs); |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3502 | if (Init.Failed()) |
| 3503 | return false; |
| 3504 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 3505 | ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs); |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3506 | if (Result.isInvalid() || SFINAE.hasErrorOccurred()) |
| 3507 | return false; |
Douglas Gregor | 14b2327 | 2012-06-29 00:49:17 +0000 | [diff] [blame] | 3508 | |
| 3509 | // Under Objective-C ARC, if the destination has non-trivial Objective-C |
| 3510 | // lifetime, this is a non-trivial construction. |
| 3511 | if (S.getLangOpts().ObjCAutoRefCount && |
| 3512 | hasNontrivialObjCLifetime(Args[0]->getType().getNonReferenceType())) |
| 3513 | return false; |
| 3514 | |
| 3515 | // The initialization succeeded; now make sure there are no non-trivial |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3516 | // calls. |
| 3517 | return !Result.get()->hasNonTrivialCall(S.Context); |
| 3518 | } |
| 3519 | } |
| 3520 | |
| 3521 | return false; |
| 3522 | } |
| 3523 | |
| 3524 | ExprResult Sema::BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc, |
| 3525 | ArrayRef<TypeSourceInfo *> Args, |
| 3526 | SourceLocation RParenLoc) { |
| 3527 | bool Dependent = false; |
| 3528 | for (unsigned I = 0, N = Args.size(); I != N; ++I) { |
| 3529 | if (Args[I]->getType()->isDependentType()) { |
| 3530 | Dependent = true; |
| 3531 | break; |
| 3532 | } |
| 3533 | } |
| 3534 | |
| 3535 | bool Value = false; |
| 3536 | if (!Dependent) |
| 3537 | Value = evaluateTypeTrait(*this, Kind, KWLoc, Args, RParenLoc); |
| 3538 | |
| 3539 | return TypeTraitExpr::Create(Context, Context.BoolTy, KWLoc, Kind, |
| 3540 | Args, RParenLoc, Value); |
| 3541 | } |
| 3542 | |
| 3543 | ExprResult Sema::ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc, |
| 3544 | ArrayRef<ParsedType> Args, |
| 3545 | SourceLocation RParenLoc) { |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 3546 | SmallVector<TypeSourceInfo *, 4> ConvertedArgs; |
Douglas Gregor | 4ca8ac2 | 2012-02-24 07:38:34 +0000 | [diff] [blame] | 3547 | ConvertedArgs.reserve(Args.size()); |
| 3548 | |
| 3549 | for (unsigned I = 0, N = Args.size(); I != N; ++I) { |
| 3550 | TypeSourceInfo *TInfo; |
| 3551 | QualType T = GetTypeFromParser(Args[I], &TInfo); |
| 3552 | if (!TInfo) |
| 3553 | TInfo = Context.getTrivialTypeSourceInfo(T, KWLoc); |
| 3554 | |
| 3555 | ConvertedArgs.push_back(TInfo); |
| 3556 | } |
| 3557 | |
| 3558 | return BuildTypeTrait(Kind, KWLoc, ConvertedArgs, RParenLoc); |
| 3559 | } |
| 3560 | |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3561 | static bool EvaluateBinaryTypeTrait(Sema &Self, BinaryTypeTrait BTT, |
| 3562 | QualType LhsT, QualType RhsT, |
| 3563 | SourceLocation KeyLoc) { |
Chandler Carruth | d064c70 | 2011-05-01 08:41:10 +0000 | [diff] [blame] | 3564 | assert(!LhsT->isDependentType() && !RhsT->isDependentType() && |
| 3565 | "Cannot evaluate traits of dependent types"); |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3566 | |
| 3567 | switch(BTT) { |
John McCall | d89d30f | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 3568 | case BTT_IsBaseOf: { |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3569 | // C++0x [meta.rel]p2 |
John McCall | d89d30f | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 3570 | // Base is a base class of Derived without regard to cv-qualifiers or |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3571 | // Base and Derived are not unions and name the same class type without |
| 3572 | // regard to cv-qualifiers. |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3573 | |
John McCall | d89d30f | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 3574 | const RecordType *lhsRecord = LhsT->getAs<RecordType>(); |
| 3575 | if (!lhsRecord) return false; |
| 3576 | |
| 3577 | const RecordType *rhsRecord = RhsT->getAs<RecordType>(); |
| 3578 | if (!rhsRecord) return false; |
| 3579 | |
| 3580 | assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) |
| 3581 | == (lhsRecord == rhsRecord)); |
| 3582 | |
| 3583 | if (lhsRecord == rhsRecord) |
| 3584 | return !lhsRecord->getDecl()->isUnion(); |
| 3585 | |
| 3586 | // C++0x [meta.rel]p2: |
| 3587 | // If Base and Derived are class types and are different types |
| 3588 | // (ignoring possible cv-qualifiers) then Derived shall be a |
| 3589 | // complete type. |
| 3590 | if (Self.RequireCompleteType(KeyLoc, RhsT, |
| 3591 | diag::err_incomplete_type_used_in_type_trait_expr)) |
| 3592 | return false; |
| 3593 | |
| 3594 | return cast<CXXRecordDecl>(rhsRecord->getDecl()) |
| 3595 | ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl())); |
| 3596 | } |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 3597 | case BTT_IsSame: |
| 3598 | return Self.Context.hasSameType(LhsT, RhsT); |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3599 | case BTT_TypeCompatible: |
| 3600 | return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(), |
| 3601 | RhsT.getUnqualifiedType()); |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 3602 | case BTT_IsConvertible: |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3603 | case BTT_IsConvertibleTo: { |
| 3604 | // C++0x [meta.rel]p4: |
| 3605 | // Given the following function prototype: |
| 3606 | // |
| 3607 | // template <class T> |
| 3608 | // typename add_rvalue_reference<T>::type create(); |
| 3609 | // |
| 3610 | // the predicate condition for a template specialization |
| 3611 | // is_convertible<From, To> shall be satisfied if and only if |
| 3612 | // the return expression in the following code would be |
| 3613 | // well-formed, including any implicit conversions to the return |
| 3614 | // type of the function: |
| 3615 | // |
| 3616 | // To test() { |
| 3617 | // return create<From>(); |
| 3618 | // } |
| 3619 | // |
| 3620 | // Access checking is performed as if in a context unrelated to To and |
| 3621 | // From. Only the validity of the immediate context of the expression |
| 3622 | // of the return-statement (including conversions to the return type) |
| 3623 | // is considered. |
| 3624 | // |
| 3625 | // We model the initialization as a copy-initialization of a temporary |
| 3626 | // of the appropriate type, which for this expression is identical to the |
| 3627 | // return statement (since NRVO doesn't apply). |
Eli Friedman | 2217f85 | 2012-08-14 02:06:07 +0000 | [diff] [blame] | 3628 | |
| 3629 | // Functions aren't allowed to return function or array types. |
| 3630 | if (RhsT->isFunctionType() || RhsT->isArrayType()) |
| 3631 | return false; |
| 3632 | |
| 3633 | // A return statement in a void function must have void type. |
| 3634 | if (RhsT->isVoidType()) |
| 3635 | return LhsT->isVoidType(); |
| 3636 | |
| 3637 | // A function definition requires a complete, non-abstract return type. |
| 3638 | if (Self.RequireCompleteType(KeyLoc, RhsT, 0) || |
| 3639 | Self.RequireNonAbstractType(KeyLoc, RhsT, 0)) |
| 3640 | return false; |
| 3641 | |
| 3642 | // Compute the result of add_rvalue_reference. |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3643 | if (LhsT->isObjectType() || LhsT->isFunctionType()) |
| 3644 | LhsT = Self.Context.getRValueReferenceType(LhsT); |
Eli Friedman | 2217f85 | 2012-08-14 02:06:07 +0000 | [diff] [blame] | 3645 | |
| 3646 | // Build a fake source and destination for initialization. |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3647 | InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT)); |
Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 3648 | OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context), |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3649 | Expr::getValueKindForType(LhsT)); |
| 3650 | Expr *FromPtr = &From; |
| 3651 | InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc, |
| 3652 | SourceLocation())); |
| 3653 | |
Eli Friedman | 3add9f0 | 2012-01-25 01:05:57 +0000 | [diff] [blame] | 3654 | // Perform the initialization in an unevaluated context within a SFINAE |
| 3655 | // trap at translation unit scope. |
| 3656 | EnterExpressionEvaluationContext Unevaluated(Self, Sema::Unevaluated); |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 3657 | Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true); |
| 3658 | Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3659 | InitializationSequence Init(Self, To, Kind, FromPtr); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 3660 | if (Init.Failed()) |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3661 | return false; |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 3662 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 3663 | ExprResult Result = Init.Perform(Self, To, Kind, FromPtr); |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3664 | return !Result.isInvalid() && !SFINAE.hasErrorOccurred(); |
| 3665 | } |
Douglas Gregor | 25d0a0f | 2012-02-23 07:33:15 +0000 | [diff] [blame] | 3666 | |
| 3667 | case BTT_IsTriviallyAssignable: { |
| 3668 | // C++11 [meta.unary.prop]p3: |
| 3669 | // is_trivially_assignable is defined as: |
| 3670 | // is_assignable<T, U>::value is true and the assignment, as defined by |
| 3671 | // is_assignable, is known to call no operation that is not trivial |
| 3672 | // |
| 3673 | // is_assignable is defined as: |
| 3674 | // The expression declval<T>() = declval<U>() is well-formed when |
| 3675 | // treated as an unevaluated operand (Clause 5). |
| 3676 | // |
| 3677 | // For both, T and U shall be complete types, (possibly cv-qualified) |
| 3678 | // void, or arrays of unknown bound. |
| 3679 | if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() && |
| 3680 | Self.RequireCompleteType(KeyLoc, LhsT, |
| 3681 | diag::err_incomplete_type_used_in_type_trait_expr)) |
| 3682 | return false; |
| 3683 | if (!RhsT->isVoidType() && !RhsT->isIncompleteArrayType() && |
| 3684 | Self.RequireCompleteType(KeyLoc, RhsT, |
| 3685 | diag::err_incomplete_type_used_in_type_trait_expr)) |
| 3686 | return false; |
| 3687 | |
| 3688 | // cv void is never assignable. |
| 3689 | if (LhsT->isVoidType() || RhsT->isVoidType()) |
| 3690 | return false; |
| 3691 | |
| 3692 | // Build expressions that emulate the effect of declval<T>() and |
| 3693 | // declval<U>(). |
| 3694 | if (LhsT->isObjectType() || LhsT->isFunctionType()) |
| 3695 | LhsT = Self.Context.getRValueReferenceType(LhsT); |
| 3696 | if (RhsT->isObjectType() || RhsT->isFunctionType()) |
| 3697 | RhsT = Self.Context.getRValueReferenceType(RhsT); |
| 3698 | OpaqueValueExpr Lhs(KeyLoc, LhsT.getNonLValueExprType(Self.Context), |
| 3699 | Expr::getValueKindForType(LhsT)); |
| 3700 | OpaqueValueExpr Rhs(KeyLoc, RhsT.getNonLValueExprType(Self.Context), |
| 3701 | Expr::getValueKindForType(RhsT)); |
| 3702 | |
| 3703 | // Attempt the assignment in an unevaluated context within a SFINAE |
| 3704 | // trap at translation unit scope. |
| 3705 | EnterExpressionEvaluationContext Unevaluated(Self, Sema::Unevaluated); |
| 3706 | Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true); |
| 3707 | Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); |
| 3708 | ExprResult Result = Self.BuildBinOp(/*S=*/0, KeyLoc, BO_Assign, &Lhs, &Rhs); |
| 3709 | if (Result.isInvalid() || SFINAE.hasErrorOccurred()) |
| 3710 | return false; |
| 3711 | |
Douglas Gregor | 14b2327 | 2012-06-29 00:49:17 +0000 | [diff] [blame] | 3712 | // Under Objective-C ARC, if the destination has non-trivial Objective-C |
| 3713 | // lifetime, this is a non-trivial assignment. |
| 3714 | if (Self.getLangOpts().ObjCAutoRefCount && |
| 3715 | hasNontrivialObjCLifetime(LhsT.getNonReferenceType())) |
| 3716 | return false; |
| 3717 | |
Douglas Gregor | 25d0a0f | 2012-02-23 07:33:15 +0000 | [diff] [blame] | 3718 | return !Result.get()->hasNonTrivialCall(Self.Context); |
| 3719 | } |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3720 | } |
| 3721 | llvm_unreachable("Unknown type trait or not implemented"); |
| 3722 | } |
| 3723 | |
| 3724 | ExprResult Sema::BuildBinaryTypeTrait(BinaryTypeTrait BTT, |
| 3725 | SourceLocation KWLoc, |
| 3726 | TypeSourceInfo *LhsTSInfo, |
| 3727 | TypeSourceInfo *RhsTSInfo, |
| 3728 | SourceLocation RParen) { |
| 3729 | QualType LhsT = LhsTSInfo->getType(); |
| 3730 | QualType RhsT = RhsTSInfo->getType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3731 | |
John McCall | d89d30f | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 3732 | if (BTT == BTT_TypeCompatible) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3733 | if (getLangOpts().CPlusPlus) { |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3734 | Diag(KWLoc, diag::err_types_compatible_p_in_cplusplus) |
| 3735 | << SourceRange(KWLoc, RParen); |
| 3736 | return ExprError(); |
| 3737 | } |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3738 | } |
| 3739 | |
| 3740 | bool Value = false; |
| 3741 | if (!LhsT->isDependentType() && !RhsT->isDependentType()) |
| 3742 | Value = EvaluateBinaryTypeTrait(*this, BTT, LhsT, RhsT, KWLoc); |
| 3743 | |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3744 | // Select trait result type. |
| 3745 | QualType ResultType; |
| 3746 | switch (BTT) { |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3747 | case BTT_IsBaseOf: ResultType = Context.BoolTy; break; |
John Wiegley | 20c0da7 | 2011-04-27 23:09:49 +0000 | [diff] [blame] | 3748 | case BTT_IsConvertible: ResultType = Context.BoolTy; break; |
| 3749 | case BTT_IsSame: ResultType = Context.BoolTy; break; |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3750 | case BTT_TypeCompatible: ResultType = Context.IntTy; break; |
Douglas Gregor | 9f36113 | 2011-01-27 20:28:01 +0000 | [diff] [blame] | 3751 | case BTT_IsConvertibleTo: ResultType = Context.BoolTy; break; |
Douglas Gregor | 25d0a0f | 2012-02-23 07:33:15 +0000 | [diff] [blame] | 3752 | case BTT_IsTriviallyAssignable: ResultType = Context.BoolTy; |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3753 | } |
| 3754 | |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3755 | return Owned(new (Context) BinaryTypeTraitExpr(KWLoc, BTT, LhsTSInfo, |
| 3756 | RhsTSInfo, Value, RParen, |
Francois Pichet | f187237 | 2010-12-08 22:35:30 +0000 | [diff] [blame] | 3757 | ResultType)); |
Francois Pichet | 6ad6f28 | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 3758 | } |
| 3759 | |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3760 | ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT, |
| 3761 | SourceLocation KWLoc, |
| 3762 | ParsedType Ty, |
| 3763 | Expr* DimExpr, |
| 3764 | SourceLocation RParen) { |
| 3765 | TypeSourceInfo *TSInfo; |
| 3766 | QualType T = GetTypeFromParser(Ty, &TSInfo); |
| 3767 | if (!TSInfo) |
| 3768 | TSInfo = Context.getTrivialTypeSourceInfo(T); |
| 3769 | |
| 3770 | return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen); |
| 3771 | } |
| 3772 | |
| 3773 | static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT, |
| 3774 | QualType T, Expr *DimExpr, |
| 3775 | SourceLocation KeyLoc) { |
Chandler Carruth | d064c70 | 2011-05-01 08:41:10 +0000 | [diff] [blame] | 3776 | assert(!T->isDependentType() && "Cannot evaluate traits of dependent type"); |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3777 | |
| 3778 | switch(ATT) { |
| 3779 | case ATT_ArrayRank: |
| 3780 | if (T->isArrayType()) { |
| 3781 | unsigned Dim = 0; |
| 3782 | while (const ArrayType *AT = Self.Context.getAsArrayType(T)) { |
| 3783 | ++Dim; |
| 3784 | T = AT->getElementType(); |
| 3785 | } |
| 3786 | return Dim; |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3787 | } |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3788 | return 0; |
| 3789 | |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3790 | case ATT_ArrayExtent: { |
| 3791 | llvm::APSInt Value; |
| 3792 | uint64_t Dim; |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 3793 | if (Self.VerifyIntegerConstantExpression(DimExpr, &Value, |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 3794 | diag::err_dimension_expr_not_constant_integer, |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 3795 | false).isInvalid()) |
| 3796 | return 0; |
| 3797 | if (Value.isSigned() && Value.isNegative()) { |
Daniel Dunbar | e7d6ca0 | 2012-03-09 21:38:22 +0000 | [diff] [blame] | 3798 | Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer) |
| 3799 | << DimExpr->getSourceRange(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 3800 | return 0; |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3801 | } |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 3802 | Dim = Value.getLimitedValue(); |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3803 | |
| 3804 | if (T->isArrayType()) { |
| 3805 | unsigned D = 0; |
| 3806 | bool Matched = false; |
| 3807 | while (const ArrayType *AT = Self.Context.getAsArrayType(T)) { |
| 3808 | if (Dim == D) { |
| 3809 | Matched = true; |
| 3810 | break; |
| 3811 | } |
| 3812 | ++D; |
| 3813 | T = AT->getElementType(); |
| 3814 | } |
| 3815 | |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3816 | if (Matched && T->isArrayType()) { |
| 3817 | if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T)) |
| 3818 | return CAT->getSize().getLimitedValue(); |
| 3819 | } |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3820 | } |
John Wiegley | cf56641 | 2011-04-28 02:06:46 +0000 | [diff] [blame] | 3821 | return 0; |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3822 | } |
| 3823 | } |
| 3824 | llvm_unreachable("Unknown type trait or not implemented"); |
| 3825 | } |
| 3826 | |
| 3827 | ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT, |
| 3828 | SourceLocation KWLoc, |
| 3829 | TypeSourceInfo *TSInfo, |
| 3830 | Expr* DimExpr, |
| 3831 | SourceLocation RParen) { |
| 3832 | QualType T = TSInfo->getType(); |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3833 | |
Chandler Carruth | af5a3c6 | 2011-05-01 08:48:21 +0000 | [diff] [blame] | 3834 | // FIXME: This should likely be tracked as an APInt to remove any host |
| 3835 | // assumptions about the width of size_t on the target. |
Chandler Carruth | d064c70 | 2011-05-01 08:41:10 +0000 | [diff] [blame] | 3836 | uint64_t Value = 0; |
| 3837 | if (!T->isDependentType()) |
| 3838 | Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc); |
| 3839 | |
Chandler Carruth | af5a3c6 | 2011-05-01 08:48:21 +0000 | [diff] [blame] | 3840 | // While the specification for these traits from the Embarcadero C++ |
| 3841 | // compiler's documentation says the return type is 'unsigned int', Clang |
| 3842 | // returns 'size_t'. On Windows, the primary platform for the Embarcadero |
| 3843 | // compiler, there is no difference. On several other platforms this is an |
| 3844 | // important distinction. |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3845 | return Owned(new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value, |
Chandler Carruth | 06207f6 | 2011-05-01 07:49:26 +0000 | [diff] [blame] | 3846 | DimExpr, RParen, |
Chandler Carruth | af5a3c6 | 2011-05-01 08:48:21 +0000 | [diff] [blame] | 3847 | Context.getSizeType())); |
John Wiegley | 21ff2e5 | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 3848 | } |
| 3849 | |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3850 | ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET, |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3851 | SourceLocation KWLoc, |
| 3852 | Expr *Queried, |
| 3853 | SourceLocation RParen) { |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3854 | // If error parsing the expression, ignore. |
| 3855 | if (!Queried) |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3856 | return ExprError(); |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3857 | |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3858 | ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen); |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3859 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3860 | return Result; |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3861 | } |
| 3862 | |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3863 | static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) { |
| 3864 | switch (ET) { |
| 3865 | case ET_IsLValueExpr: return E->isLValue(); |
| 3866 | case ET_IsRValueExpr: return E->isRValue(); |
| 3867 | } |
| 3868 | llvm_unreachable("Expression trait not covered by switch"); |
| 3869 | } |
| 3870 | |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3871 | ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET, |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3872 | SourceLocation KWLoc, |
| 3873 | Expr *Queried, |
| 3874 | SourceLocation RParen) { |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3875 | if (Queried->isTypeDependent()) { |
| 3876 | // Delay type-checking for type-dependent expressions. |
| 3877 | } else if (Queried->getType()->isPlaceholderType()) { |
| 3878 | ExprResult PE = CheckPlaceholderExpr(Queried); |
| 3879 | if (PE.isInvalid()) return ExprError(); |
| 3880 | return BuildExpressionTrait(ET, KWLoc, PE.take(), RParen); |
| 3881 | } |
| 3882 | |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3883 | bool Value = EvaluateExpressionTrait(ET, Queried); |
Chandler Carruth | f7ef000 | 2011-05-01 08:48:19 +0000 | [diff] [blame] | 3884 | |
Chandler Carruth | 4aa0af3 | 2011-05-01 07:44:20 +0000 | [diff] [blame] | 3885 | return Owned(new (Context) ExpressionTraitExpr(KWLoc, ET, Queried, Value, |
| 3886 | RParen, Context.BoolTy)); |
John Wiegley | 5526220 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 3887 | } |
| 3888 | |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3889 | QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3890 | ExprValueKind &VK, |
| 3891 | SourceLocation Loc, |
| 3892 | bool isIndirect) { |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3893 | assert(!LHS.get()->getType()->isPlaceholderType() && |
| 3894 | !RHS.get()->getType()->isPlaceholderType() && |
John McCall | ea4aba0 | 2011-06-30 17:15:34 +0000 | [diff] [blame] | 3895 | "placeholders should have been weeded out by now"); |
| 3896 | |
| 3897 | // The LHS undergoes lvalue conversions if this is ->*. |
| 3898 | if (isIndirect) { |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3899 | LHS = DefaultLvalueConversion(LHS.take()); |
| 3900 | if (LHS.isInvalid()) return QualType(); |
John McCall | ea4aba0 | 2011-06-30 17:15:34 +0000 | [diff] [blame] | 3901 | } |
| 3902 | |
| 3903 | // The RHS always undergoes lvalue conversions. |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3904 | RHS = DefaultLvalueConversion(RHS.take()); |
| 3905 | if (RHS.isInvalid()) return QualType(); |
John McCall | ea4aba0 | 2011-06-30 17:15:34 +0000 | [diff] [blame] | 3906 | |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3907 | const char *OpSpelling = isIndirect ? "->*" : ".*"; |
| 3908 | // C++ 5.5p2 |
| 3909 | // The binary operator .* [p3: ->*] binds its second operand, which shall |
| 3910 | // be of type "pointer to member of T" (where T is a completely-defined |
| 3911 | // class type) [...] |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3912 | QualType RHSType = RHS.get()->getType(); |
| 3913 | const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3914 | if (!MemPtr) { |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3915 | Diag(Loc, diag::err_bad_memptr_rhs) |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3916 | << OpSpelling << RHSType << RHS.get()->getSourceRange(); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3917 | return QualType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3918 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3919 | |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3920 | QualType Class(MemPtr->getClass(), 0); |
| 3921 | |
Douglas Gregor | 7d520ba | 2010-10-13 20:41:14 +0000 | [diff] [blame] | 3922 | // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the |
| 3923 | // member pointer points must be completely-defined. However, there is no |
| 3924 | // reason for this semantic distinction, and the rule is not enforced by |
| 3925 | // other compilers. Therefore, we do not check this property, as it is |
| 3926 | // likely to be considered a defect. |
Sebastian Redl | 59fc269 | 2010-04-10 10:14:54 +0000 | [diff] [blame] | 3927 | |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3928 | // C++ 5.5p2 |
| 3929 | // [...] to its first operand, which shall be of class T or of a class of |
| 3930 | // which T is an unambiguous and accessible base class. [p3: a pointer to |
| 3931 | // such a class] |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3932 | QualType LHSType = LHS.get()->getType(); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3933 | if (isIndirect) { |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3934 | if (const PointerType *Ptr = LHSType->getAs<PointerType>()) |
| 3935 | LHSType = Ptr->getPointeeType(); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3936 | else { |
| 3937 | Diag(Loc, diag::err_bad_memptr_lhs) |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3938 | << OpSpelling << 1 << LHSType |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 3939 | << FixItHint::CreateReplacement(SourceRange(Loc), ".*"); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3940 | return QualType(); |
| 3941 | } |
| 3942 | } |
| 3943 | |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3944 | if (!Context.hasSameUnqualifiedType(Class, LHSType)) { |
Sebastian Redl | 17e1d35 | 2010-04-23 17:18:26 +0000 | [diff] [blame] | 3945 | // If we want to check the hierarchy, we need a complete type. |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3946 | if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs, |
| 3947 | OpSpelling, (int)isIndirect)) { |
Sebastian Redl | 17e1d35 | 2010-04-23 17:18:26 +0000 | [diff] [blame] | 3948 | return QualType(); |
| 3949 | } |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 3950 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 3951 | /*DetectVirtual=*/false); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3952 | // FIXME: Would it be useful to print full ambiguity paths, or is that |
| 3953 | // overkill? |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3954 | if (!IsDerivedFrom(LHSType, Class, Paths) || |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3955 | Paths.isAmbiguous(Context.getCanonicalType(Class))) { |
| 3956 | Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3957 | << (int)isIndirect << LHS.get()->getType(); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3958 | return QualType(); |
| 3959 | } |
Eli Friedman | 3005efe | 2010-01-16 00:00:48 +0000 | [diff] [blame] | 3960 | // Cast LHS to type of use. |
| 3961 | QualType UseType = isIndirect ? Context.getPointerType(Class) : Class; |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 3962 | ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind(); |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3963 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 3964 | CXXCastPath BasePath; |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 3965 | BuildBasePathArray(Paths, BasePath); |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3966 | LHS = ImpCastExprToType(LHS.take(), UseType, CK_DerivedToBase, VK, |
| 3967 | &BasePath); |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3968 | } |
| 3969 | |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3970 | if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) { |
Fariborz Jahanian | 05ebda9 | 2009-11-18 21:54:48 +0000 | [diff] [blame] | 3971 | // Diagnose use of pointer-to-member type which when used as |
| 3972 | // the functional cast in a pointer-to-member expression. |
| 3973 | Diag(Loc, diag::err_pointer_to_member_type) << isIndirect; |
| 3974 | return QualType(); |
| 3975 | } |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3976 | |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3977 | // C++ 5.5p2 |
| 3978 | // The result is an object or a function of the type specified by the |
| 3979 | // second operand. |
| 3980 | // The cv qualifiers are the union of those in the pointer and the left side, |
| 3981 | // in accordance with 5.5p5 and 5.2.5. |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 3982 | QualType Result = MemPtr->getPointeeType(); |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3983 | Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3984 | |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 3985 | // C++0x [expr.mptr.oper]p6: |
| 3986 | // In a .* expression whose object expression is an rvalue, the program is |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3987 | // ill-formed if the second operand is a pointer to member function with |
| 3988 | // ref-qualifier &. In a ->* expression or in a .* expression whose object |
| 3989 | // expression is an lvalue, the program is ill-formed if the second operand |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 3990 | // is a pointer to member function with ref-qualifier &&. |
| 3991 | if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) { |
| 3992 | switch (Proto->getRefQualifier()) { |
| 3993 | case RQ_None: |
| 3994 | // Do nothing |
| 3995 | break; |
| 3996 | |
| 3997 | case RQ_LValue: |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 3998 | if (!isIndirect && !LHS.get()->Classify(Context).isLValue()) |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 3999 | Diag(Loc, diag::err_pointer_to_member_oper_value_classify) |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 4000 | << RHSType << 1 << LHS.get()->getSourceRange(); |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 4001 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4002 | |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 4003 | case RQ_RValue: |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 4004 | if (isIndirect || !LHS.get()->Classify(Context).isRValue()) |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 4005 | Diag(Loc, diag::err_pointer_to_member_oper_value_classify) |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 4006 | << RHSType << 0 << LHS.get()->getSourceRange(); |
Douglas Gregor | 6b4df91 | 2011-01-26 16:40:18 +0000 | [diff] [blame] | 4007 | break; |
| 4008 | } |
| 4009 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4010 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4011 | // C++ [expr.mptr.oper]p6: |
| 4012 | // The result of a .* expression whose second operand is a pointer |
| 4013 | // to a data member is of the same value category as its |
| 4014 | // first operand. The result of a .* expression whose second |
| 4015 | // operand is a pointer to a member function is a prvalue. The |
| 4016 | // result of an ->* expression is an lvalue if its second operand |
| 4017 | // is a pointer to data member and a prvalue otherwise. |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 4018 | if (Result->isFunctionType()) { |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4019 | VK = VK_RValue; |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 4020 | return Context.BoundMemberTy; |
| 4021 | } else if (isIndirect) { |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4022 | VK = VK_LValue; |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 4023 | } else { |
Richard Trieu | dd22509 | 2011-09-15 21:56:47 +0000 | [diff] [blame] | 4024 | VK = LHS.get()->getValueKind(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 4025 | } |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4026 | |
Sebastian Redl | 7c8bd60 | 2009-02-07 20:10:22 +0000 | [diff] [blame] | 4027 | return Result; |
| 4028 | } |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4029 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4030 | /// \brief Try to convert a type to another according to C++0x 5.16p3. |
| 4031 | /// |
| 4032 | /// This is part of the parameter validation for the ? operator. If either |
| 4033 | /// value operand is a class type, the two operands are attempted to be |
| 4034 | /// converted to each other. This function does the conversion in one direction. |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4035 | /// It returns true if the program is ill-formed and has already been diagnosed |
| 4036 | /// as such. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4037 | static bool TryClassUnification(Sema &Self, Expr *From, Expr *To, |
| 4038 | SourceLocation QuestionLoc, |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4039 | bool &HaveConversion, |
| 4040 | QualType &ToType) { |
| 4041 | HaveConversion = false; |
| 4042 | ToType = To->getType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4043 | |
| 4044 | InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(), |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4045 | SourceLocation()); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4046 | // C++0x 5.16p3 |
| 4047 | // The process for determining whether an operand expression E1 of type T1 |
| 4048 | // can be converted to match an operand expression E2 of type T2 is defined |
| 4049 | // as follows: |
| 4050 | // -- If E2 is an lvalue: |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 4051 | bool ToIsLvalue = To->isLValue(); |
Douglas Gregor | 0fd8ff7 | 2010-03-26 20:59:55 +0000 | [diff] [blame] | 4052 | if (ToIsLvalue) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4053 | // E1 can be converted to match E2 if E1 can be implicitly converted to |
| 4054 | // type "lvalue reference to T2", subject to the constraint that in the |
| 4055 | // conversion the reference must bind directly to E1. |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4056 | QualType T = Self.Context.getLValueReferenceType(ToType); |
| 4057 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(T); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4058 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4059 | InitializationSequence InitSeq(Self, Entity, Kind, From); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4060 | if (InitSeq.isDirectReferenceBinding()) { |
| 4061 | ToType = T; |
| 4062 | HaveConversion = true; |
| 4063 | return false; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4064 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4065 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4066 | if (InitSeq.isAmbiguous()) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4067 | return InitSeq.Diagnose(Self, Entity, Kind, From); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4068 | } |
John McCall | b1bdc62 | 2010-02-25 01:37:24 +0000 | [diff] [blame] | 4069 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4070 | // -- If E2 is an rvalue, or if the conversion above cannot be done: |
| 4071 | // -- if E1 and E2 have class type, and the underlying class types are |
| 4072 | // the same or one is a base class of the other: |
| 4073 | QualType FTy = From->getType(); |
| 4074 | QualType TTy = To->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4075 | const RecordType *FRec = FTy->getAs<RecordType>(); |
| 4076 | const RecordType *TRec = TTy->getAs<RecordType>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4077 | bool FDerivedFromT = FRec && TRec && FRec != TRec && |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4078 | Self.IsDerivedFrom(FTy, TTy); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4079 | if (FRec && TRec && |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4080 | (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4081 | // E1 can be converted to match E2 if the class of T2 is the |
| 4082 | // same type as, or a base class of, the class of T1, and |
| 4083 | // [cv2 > cv1]. |
John McCall | b1bdc62 | 2010-02-25 01:37:24 +0000 | [diff] [blame] | 4084 | if (FRec == TRec || FDerivedFromT) { |
| 4085 | if (TTy.isAtLeastAsQualifiedAs(FTy)) { |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4086 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4087 | InitializationSequence InitSeq(Self, Entity, Kind, From); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 4088 | if (InitSeq) { |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4089 | HaveConversion = true; |
| 4090 | return false; |
| 4091 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4092 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4093 | if (InitSeq.isAmbiguous()) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4094 | return InitSeq.Diagnose(Self, Entity, Kind, From); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4095 | } |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4096 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4097 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4098 | return false; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4099 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4100 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4101 | // -- Otherwise: E1 can be converted to match E2 if E1 can be |
| 4102 | // implicitly converted to the type that expression E2 would have |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4103 | // if E2 were converted to an rvalue (or the type it has, if E2 is |
Douglas Gregor | 0fd8ff7 | 2010-03-26 20:59:55 +0000 | [diff] [blame] | 4104 | // an rvalue). |
| 4105 | // |
| 4106 | // This actually refers very narrowly to the lvalue-to-rvalue conversion, not |
| 4107 | // to the array-to-pointer or function-to-pointer conversions. |
| 4108 | if (!TTy->getAs<TagType>()) |
| 4109 | TTy = TTy.getUnqualifiedType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4110 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4111 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4112 | InitializationSequence InitSeq(Self, Entity, Kind, From); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 4113 | HaveConversion = !InitSeq.Failed(); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4114 | ToType = TTy; |
| 4115 | if (InitSeq.isAmbiguous()) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4116 | return InitSeq.Diagnose(Self, Entity, Kind, From); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4117 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4118 | return false; |
| 4119 | } |
| 4120 | |
| 4121 | /// \brief Try to find a common type for two according to C++0x 5.16p5. |
| 4122 | /// |
| 4123 | /// This is part of the parameter validation for the ? operator. If either |
| 4124 | /// value operand is a class type, overload resolution is used to find a |
| 4125 | /// conversion to a common type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4126 | static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS, |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4127 | SourceLocation QuestionLoc) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4128 | Expr *Args[2] = { LHS.get(), RHS.get() }; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4129 | OverloadCandidateSet CandidateSet(QuestionLoc); |
Richard Smith | 958ba64 | 2013-05-05 15:51:06 +0000 | [diff] [blame] | 4130 | Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args, |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4131 | CandidateSet); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4132 | |
| 4133 | OverloadCandidateSet::iterator Best; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4134 | switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4135 | case OR_Success: { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4136 | // We found a match. Perform the conversions on the arguments and move on. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4137 | ExprResult LHSRes = |
| 4138 | Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0], |
| 4139 | Best->Conversions[0], Sema::AA_Converting); |
| 4140 | if (LHSRes.isInvalid()) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4141 | break; |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4142 | LHS = LHSRes; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4143 | |
| 4144 | ExprResult RHSRes = |
| 4145 | Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1], |
| 4146 | Best->Conversions[1], Sema::AA_Converting); |
| 4147 | if (RHSRes.isInvalid()) |
| 4148 | break; |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4149 | RHS = RHSRes; |
Chandler Carruth | 25ca421 | 2011-02-25 19:41:05 +0000 | [diff] [blame] | 4150 | if (Best->Function) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 4151 | Self.MarkFunctionReferenced(QuestionLoc, Best->Function); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4152 | return false; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4153 | } |
| 4154 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4155 | case OR_No_Viable_Function: |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4156 | |
| 4157 | // Emit a better diagnostic if one of the expressions is a null pointer |
| 4158 | // constant and the other is a pointer type. In this case, the user most |
| 4159 | // likely forgot to take the address of the other expression. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4160 | if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4161 | return true; |
| 4162 | |
| 4163 | Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4164 | << LHS.get()->getType() << RHS.get()->getType() |
| 4165 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4166 | return true; |
| 4167 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4168 | case OR_Ambiguous: |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4169 | Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4170 | << LHS.get()->getType() << RHS.get()->getType() |
| 4171 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4172 | // FIXME: Print the possible common types by printing the return types of |
| 4173 | // the viable candidates. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4174 | break; |
| 4175 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4176 | case OR_Deleted: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4177 | llvm_unreachable("Conditional operator has only built-in overloads"); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4178 | } |
| 4179 | return true; |
| 4180 | } |
| 4181 | |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 4182 | /// \brief Perform an "extended" implicit conversion as returned by |
| 4183 | /// TryClassUnification. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4184 | static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) { |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4185 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(T); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4186 | InitializationKind Kind = InitializationKind::CreateCopy(E.get()->getLocStart(), |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4187 | SourceLocation()); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4188 | Expr *Arg = E.take(); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4189 | InitializationSequence InitSeq(Self, Entity, Kind, Arg); |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4190 | ExprResult Result = InitSeq.Perform(Self, Entity, Kind, Arg); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4191 | if (Result.isInvalid()) |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 4192 | return true; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4193 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4194 | E = Result; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 4195 | return false; |
| 4196 | } |
| 4197 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4198 | /// \brief Check the operands of ?: under C++ semantics. |
| 4199 | /// |
| 4200 | /// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y |
| 4201 | /// extension. In this case, LHS == Cond. (But they're not aliases.) |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4202 | QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, |
| 4203 | ExprResult &RHS, ExprValueKind &VK, |
| 4204 | ExprObjectKind &OK, |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4205 | SourceLocation QuestionLoc) { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4206 | // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++ |
| 4207 | // interface pointers. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4208 | |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4209 | // C++11 [expr.cond]p1 |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4210 | // The first expression is contextually converted to bool. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4211 | if (!Cond.get()->isTypeDependent()) { |
| 4212 | ExprResult CondRes = CheckCXXBooleanCondition(Cond.take()); |
| 4213 | if (CondRes.isInvalid()) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4214 | return QualType(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4215 | Cond = CondRes; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4216 | } |
| 4217 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4218 | // Assume r-value. |
| 4219 | VK = VK_RValue; |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 4220 | OK = OK_Ordinary; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4221 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4222 | // Either of the arguments dependent? |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4223 | if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent()) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4224 | return Context.DependentTy; |
| 4225 | |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4226 | // C++11 [expr.cond]p2 |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4227 | // If either the second or the third operand has type (cv) void, ... |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4228 | QualType LTy = LHS.get()->getType(); |
| 4229 | QualType RTy = RHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4230 | bool LVoid = LTy->isVoidType(); |
| 4231 | bool RVoid = RTy->isVoidType(); |
| 4232 | if (LVoid || RVoid) { |
| 4233 | // ... then the [l2r] conversions are performed on the second and third |
| 4234 | // operands ... |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4235 | LHS = DefaultFunctionArrayLvalueConversion(LHS.take()); |
| 4236 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 4237 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 4238 | return QualType(); |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4239 | |
| 4240 | // Finish off the lvalue-to-rvalue conversion by copy-initializing a |
| 4241 | // temporary if necessary. DefaultFunctionArrayLvalueConversion doesn't |
| 4242 | // do this part for us. |
| 4243 | ExprResult &NonVoid = LVoid ? RHS : LHS; |
| 4244 | if (NonVoid.get()->getType()->isRecordType() && |
| 4245 | NonVoid.get()->isGLValue()) { |
David Blaikie | 654f1d5 | 2012-09-10 22:05:41 +0000 | [diff] [blame] | 4246 | if (RequireNonAbstractType(QuestionLoc, NonVoid.get()->getType(), |
| 4247 | diag::err_allocation_of_abstract_type)) |
| 4248 | return QualType(); |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4249 | InitializedEntity Entity = |
| 4250 | InitializedEntity::InitializeTemporary(NonVoid.get()->getType()); |
| 4251 | NonVoid = PerformCopyInitialization(Entity, SourceLocation(), NonVoid); |
| 4252 | if (NonVoid.isInvalid()) |
| 4253 | return QualType(); |
| 4254 | } |
| 4255 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4256 | LTy = LHS.get()->getType(); |
| 4257 | RTy = RHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4258 | |
| 4259 | // ... and one of the following shall hold: |
| 4260 | // -- The second or the third operand (but not both) is a throw- |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4261 | // expression; the result is of the type of the other and is a prvalue. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4262 | bool LThrow = isa<CXXThrowExpr>(LHS.get()); |
| 4263 | bool RThrow = isa<CXXThrowExpr>(RHS.get()); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4264 | if (LThrow && !RThrow) |
| 4265 | return RTy; |
| 4266 | if (RThrow && !LThrow) |
| 4267 | return LTy; |
| 4268 | |
| 4269 | // -- Both the second and third operands have type void; the result is of |
Richard Smith | 604fb38 | 2012-08-07 22:06:48 +0000 | [diff] [blame] | 4270 | // type void and is a prvalue. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4271 | if (LVoid && RVoid) |
| 4272 | return Context.VoidTy; |
| 4273 | |
| 4274 | // Neither holds, error. |
| 4275 | Diag(QuestionLoc, diag::err_conditional_void_nonvoid) |
| 4276 | << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4277 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4278 | return QualType(); |
| 4279 | } |
| 4280 | |
| 4281 | // Neither is void. |
| 4282 | |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4283 | // C++11 [expr.cond]p3 |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4284 | // Otherwise, if the second and third operand have different types, and |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4285 | // either has (cv) class type [...] an attempt is made to convert each of |
| 4286 | // those operands to the type of the other. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4287 | if (!Context.hasSameType(LTy, RTy) && |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4288 | (LTy->isRecordType() || RTy->isRecordType())) { |
| 4289 | ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft; |
| 4290 | // These return true if a single direction is already ambiguous. |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 4291 | QualType L2RType, R2LType; |
| 4292 | bool HaveL2R, HaveR2L; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4293 | if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType)) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4294 | return QualType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4295 | if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType)) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4296 | return QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4297 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4298 | // If both can be converted, [...] the program is ill-formed. |
| 4299 | if (HaveL2R && HaveR2L) { |
| 4300 | Diag(QuestionLoc, diag::err_conditional_ambiguous) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4301 | << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4302 | return QualType(); |
| 4303 | } |
| 4304 | |
| 4305 | // If exactly one conversion is possible, that conversion is applied to |
| 4306 | // the chosen operand and the converted operands are used in place of the |
| 4307 | // original operands for the remainder of this section. |
| 4308 | if (HaveL2R) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4309 | if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid()) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4310 | return QualType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4311 | LTy = LHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4312 | } else if (HaveR2L) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4313 | if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid()) |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4314 | return QualType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4315 | RTy = RHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4316 | } |
| 4317 | } |
| 4318 | |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4319 | // C++11 [expr.cond]p3 |
| 4320 | // if both are glvalues of the same value category and the same type except |
| 4321 | // for cv-qualification, an attempt is made to convert each of those |
| 4322 | // operands to the type of the other. |
| 4323 | ExprValueKind LVK = LHS.get()->getValueKind(); |
| 4324 | ExprValueKind RVK = RHS.get()->getValueKind(); |
| 4325 | if (!Context.hasSameType(LTy, RTy) && |
| 4326 | Context.hasSameUnqualifiedType(LTy, RTy) && |
| 4327 | LVK == RVK && LVK != VK_RValue) { |
| 4328 | // Since the unqualified types are reference-related and we require the |
| 4329 | // result to be as if a reference bound directly, the only conversion |
| 4330 | // we can perform is to add cv-qualifiers. |
| 4331 | Qualifiers LCVR = Qualifiers::fromCVRMask(LTy.getCVRQualifiers()); |
| 4332 | Qualifiers RCVR = Qualifiers::fromCVRMask(RTy.getCVRQualifiers()); |
| 4333 | if (RCVR.isStrictSupersetOf(LCVR)) { |
| 4334 | LHS = ImpCastExprToType(LHS.take(), RTy, CK_NoOp, LVK); |
| 4335 | LTy = LHS.get()->getType(); |
| 4336 | } |
| 4337 | else if (LCVR.isStrictSupersetOf(RCVR)) { |
| 4338 | RHS = ImpCastExprToType(RHS.take(), LTy, CK_NoOp, RVK); |
| 4339 | RTy = RHS.get()->getType(); |
| 4340 | } |
| 4341 | } |
| 4342 | |
| 4343 | // C++11 [expr.cond]p4 |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4344 | // If the second and third operands are glvalues of the same value |
| 4345 | // category and have the same type, the result is of that type and |
| 4346 | // value category and it is a bit-field if the second or the third |
| 4347 | // operand is a bit-field, or if both are bit-fields. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 4348 | // We only extend this to bitfields, not to the crazy other kinds of |
| 4349 | // l-values. |
Douglas Gregor | 1927b1f | 2010-04-01 22:47:07 +0000 | [diff] [blame] | 4350 | bool Same = Context.hasSameType(LTy, RTy); |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4351 | if (Same && LVK == RVK && LVK != VK_RValue && |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4352 | LHS.get()->isOrdinaryOrBitFieldObject() && |
| 4353 | RHS.get()->isOrdinaryOrBitFieldObject()) { |
| 4354 | VK = LHS.get()->getValueKind(); |
| 4355 | if (LHS.get()->getObjectKind() == OK_BitField || |
| 4356 | RHS.get()->getObjectKind() == OK_BitField) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 4357 | OK = OK_BitField; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4358 | return LTy; |
Fariborz Jahanian | 3911a1a | 2010-09-25 01:08:05 +0000 | [diff] [blame] | 4359 | } |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4360 | |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4361 | // C++11 [expr.cond]p5 |
| 4362 | // Otherwise, the result is a prvalue. If the second and third operands |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4363 | // do not have the same type, and either has (cv) class type, ... |
| 4364 | if (!Same && (LTy->isRecordType() || RTy->isRecordType())) { |
| 4365 | // ... overload resolution is used to determine the conversions (if any) |
| 4366 | // to be applied to the operands. If the overload resolution fails, the |
| 4367 | // program is ill-formed. |
| 4368 | if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc)) |
| 4369 | return QualType(); |
| 4370 | } |
| 4371 | |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4372 | // C++11 [expr.cond]p6 |
| 4373 | // Lvalue-to-rvalue, array-to-pointer, and function-to-pointer standard |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4374 | // conversions are performed on the second and third operands. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4375 | LHS = DefaultFunctionArrayLvalueConversion(LHS.take()); |
| 4376 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 4377 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 4378 | return QualType(); |
| 4379 | LTy = LHS.get()->getType(); |
| 4380 | RTy = RHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4381 | |
| 4382 | // After those conversions, one of the following shall hold: |
| 4383 | // -- The second and third operands have the same type; the result |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4384 | // is of that type. If the operands have class type, the result |
| 4385 | // is a prvalue temporary of the result type, which is |
| 4386 | // copy-initialized from either the second operand or the third |
| 4387 | // operand depending on the value of the first operand. |
| 4388 | if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) { |
| 4389 | if (LTy->isRecordType()) { |
| 4390 | // The operands have class type. Make a temporary copy. |
David Blaikie | 654f1d5 | 2012-09-10 22:05:41 +0000 | [diff] [blame] | 4391 | if (RequireNonAbstractType(QuestionLoc, LTy, |
| 4392 | diag::err_allocation_of_abstract_type)) |
| 4393 | return QualType(); |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4394 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy); |
David Blaikie | 654f1d5 | 2012-09-10 22:05:41 +0000 | [diff] [blame] | 4395 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4396 | ExprResult LHSCopy = PerformCopyInitialization(Entity, |
| 4397 | SourceLocation(), |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4398 | LHS); |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4399 | if (LHSCopy.isInvalid()) |
| 4400 | return QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4401 | |
| 4402 | ExprResult RHSCopy = PerformCopyInitialization(Entity, |
| 4403 | SourceLocation(), |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4404 | RHS); |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4405 | if (RHSCopy.isInvalid()) |
| 4406 | return QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4407 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4408 | LHS = LHSCopy; |
| 4409 | RHS = RHSCopy; |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4410 | } |
| 4411 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4412 | return LTy; |
Douglas Gregor | b65a458 | 2010-05-19 23:40:50 +0000 | [diff] [blame] | 4413 | } |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4414 | |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 4415 | // Extension: conditional operator involving vector types. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4416 | if (LTy->isVectorType() || RTy->isVectorType()) |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 4417 | return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); |
Douglas Gregor | fb4a543 | 2010-05-18 22:42:18 +0000 | [diff] [blame] | 4418 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4419 | // -- The second and third operands have arithmetic or enumeration type; |
| 4420 | // the usual arithmetic conversions are performed to bring them to a |
| 4421 | // common type, and the result is of that type. |
| 4422 | if (LTy->isArithmeticType() && RTy->isArithmeticType()) { |
| 4423 | UsualArithmeticConversions(LHS, RHS); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4424 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 4425 | return QualType(); |
| 4426 | return LHS.get()->getType(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4427 | } |
| 4428 | |
| 4429 | // -- The second and third operands have pointer type, or one has pointer |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4430 | // type and the other is a null pointer constant, or both are null |
| 4431 | // pointer constants, at least one of which is non-integral; pointer |
| 4432 | // conversions and qualification conversions are performed to bring them |
| 4433 | // to their composite pointer type. The result is of the composite |
| 4434 | // pointer type. |
Eli Friedman | de8ac49 | 2010-01-02 22:56:07 +0000 | [diff] [blame] | 4435 | // -- The second and third operands have pointer to member type, or one has |
| 4436 | // pointer to member type and the other is a null pointer constant; |
| 4437 | // pointer to member conversions and qualification conversions are |
| 4438 | // performed to bring them to a common type, whose cv-qualification |
| 4439 | // shall match the cv-qualification of either the second or the third |
| 4440 | // operand. The result is of the common type. |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4441 | bool NonStandardCompositeType = false; |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4442 | QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS, |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4443 | isSFINAEContext()? 0 : &NonStandardCompositeType); |
| 4444 | if (!Composite.isNull()) { |
| 4445 | if (NonStandardCompositeType) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4446 | Diag(QuestionLoc, |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4447 | diag::ext_typecheck_cond_incompatible_operands_nonstandard) |
| 4448 | << LTy << RTy << Composite |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4449 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4450 | |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4451 | return Composite; |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4452 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4453 | |
Douglas Gregor | 1927b1f | 2010-04-01 22:47:07 +0000 | [diff] [blame] | 4454 | // Similarly, attempt to find composite type of two objective-c pointers. |
Fariborz Jahanian | 5501636 | 2009-12-10 20:46:08 +0000 | [diff] [blame] | 4455 | Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc); |
| 4456 | if (!Composite.isNull()) |
| 4457 | return Composite; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4458 | |
Chandler Carruth | 7ef9324 | 2011-02-19 00:13:59 +0000 | [diff] [blame] | 4459 | // Check if we are using a null with a non-pointer type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4460 | if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) |
Chandler Carruth | 7ef9324 | 2011-02-19 00:13:59 +0000 | [diff] [blame] | 4461 | return QualType(); |
| 4462 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4463 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4464 | << LHS.get()->getType() << RHS.get()->getType() |
| 4465 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4466 | return QualType(); |
| 4467 | } |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4468 | |
| 4469 | /// \brief Find a merged pointer type and convert the two expressions to it. |
| 4470 | /// |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4471 | /// This finds the composite pointer type (or member pointer type) for @p E1 |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4472 | /// and @p E2 according to C++11 5.9p2. It converts both expressions to this |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4473 | /// type and returns it. |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4474 | /// It does not emit diagnostics. |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4475 | /// |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4476 | /// \param Loc The location of the operator requiring these two expressions to |
| 4477 | /// be converted to the composite pointer type. |
| 4478 | /// |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4479 | /// If \p NonStandardCompositeType is non-NULL, then we are permitted to find |
| 4480 | /// a non-standard (but still sane) composite type to which both expressions |
| 4481 | /// can be converted. When such a type is chosen, \c *NonStandardCompositeType |
| 4482 | /// will be set true. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4483 | QualType Sema::FindCompositePointerType(SourceLocation Loc, |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4484 | Expr *&E1, Expr *&E2, |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4485 | bool *NonStandardCompositeType) { |
| 4486 | if (NonStandardCompositeType) |
| 4487 | *NonStandardCompositeType = false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4488 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4489 | assert(getLangOpts().CPlusPlus && "This function assumes C++"); |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4490 | QualType T1 = E1->getType(), T2 = E2->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4491 | |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4492 | // C++11 5.9p2 |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4493 | // Pointer conversions and qualification conversions are performed on |
| 4494 | // pointer operands to bring them to their composite pointer type. If |
| 4495 | // one operand is a null pointer constant, the composite pointer type is |
Richard Smith | 50d61c8 | 2012-08-08 06:13:49 +0000 | [diff] [blame] | 4496 | // std::nullptr_t if the other operand is also a null pointer constant or, |
| 4497 | // if the other operand is a pointer, the type of the other operand. |
| 4498 | if (!T1->isAnyPointerType() && !T1->isMemberPointerType() && |
| 4499 | !T2->isAnyPointerType() && !T2->isMemberPointerType()) { |
| 4500 | if (T1->isNullPtrType() && |
| 4501 | E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
| 4502 | E2 = ImpCastExprToType(E2, T1, CK_NullToPointer).take(); |
| 4503 | return T1; |
| 4504 | } |
| 4505 | if (T2->isNullPtrType() && |
| 4506 | E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
| 4507 | E1 = ImpCastExprToType(E1, T2, CK_NullToPointer).take(); |
| 4508 | return T2; |
| 4509 | } |
| 4510 | return QualType(); |
| 4511 | } |
| 4512 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4513 | if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4514 | if (T2->isMemberPointerType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4515 | E1 = ImpCastExprToType(E1, T2, CK_NullToMemberPointer).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4516 | else |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4517 | E1 = ImpCastExprToType(E1, T2, CK_NullToPointer).take(); |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4518 | return T2; |
| 4519 | } |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4520 | if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4521 | if (T1->isMemberPointerType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4522 | E2 = ImpCastExprToType(E2, T1, CK_NullToMemberPointer).take(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4523 | else |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4524 | E2 = ImpCastExprToType(E2, T1, CK_NullToPointer).take(); |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4525 | return T1; |
| 4526 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4527 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4528 | // Now both have to be pointers or member pointers. |
Sebastian Redl | a439e6f | 2009-11-16 21:03:45 +0000 | [diff] [blame] | 4529 | if ((!T1->isPointerType() && !T1->isMemberPointerType()) || |
| 4530 | (!T2->isPointerType() && !T2->isMemberPointerType())) |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4531 | return QualType(); |
| 4532 | |
| 4533 | // Otherwise, of one of the operands has type "pointer to cv1 void," then |
| 4534 | // the other has type "pointer to cv2 T" and the composite pointer type is |
| 4535 | // "pointer to cv12 void," where cv12 is the union of cv1 and cv2. |
| 4536 | // Otherwise, the composite pointer type is a pointer type similar to the |
| 4537 | // type of one of the operands, with a cv-qualification signature that is |
| 4538 | // the union of the cv-qualification signatures of the operand types. |
| 4539 | // In practice, the first part here is redundant; it's subsumed by the second. |
| 4540 | // What we do here is, we build the two possible composite types, and try the |
| 4541 | // conversions in both directions. If only one works, or if the two composite |
| 4542 | // types are the same, we have succeeded. |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4543 | // FIXME: extended qualifiers? |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4544 | typedef SmallVector<unsigned, 4> QualifierVector; |
Sebastian Redl | a439e6f | 2009-11-16 21:03:45 +0000 | [diff] [blame] | 4545 | QualifierVector QualifierUnion; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4546 | typedef SmallVector<std::pair<const Type *, const Type *>, 4> |
Sebastian Redl | a439e6f | 2009-11-16 21:03:45 +0000 | [diff] [blame] | 4547 | ContainingClassVector; |
| 4548 | ContainingClassVector MemberOfClass; |
| 4549 | QualType Composite1 = Context.getCanonicalType(T1), |
| 4550 | Composite2 = Context.getCanonicalType(T2); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4551 | unsigned NeedConstBefore = 0; |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4552 | do { |
| 4553 | const PointerType *Ptr1, *Ptr2; |
| 4554 | if ((Ptr1 = Composite1->getAs<PointerType>()) && |
| 4555 | (Ptr2 = Composite2->getAs<PointerType>())) { |
| 4556 | Composite1 = Ptr1->getPointeeType(); |
| 4557 | Composite2 = Ptr2->getPointeeType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4558 | |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4559 | // If we're allowed to create a non-standard composite type, keep track |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4560 | // of where we need to fill in additional 'const' qualifiers. |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4561 | if (NonStandardCompositeType && |
| 4562 | Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers()) |
| 4563 | NeedConstBefore = QualifierUnion.size(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4564 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4565 | QualifierUnion.push_back( |
| 4566 | Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers()); |
| 4567 | MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0)); |
| 4568 | continue; |
| 4569 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4570 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4571 | const MemberPointerType *MemPtr1, *MemPtr2; |
| 4572 | if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) && |
| 4573 | (MemPtr2 = Composite2->getAs<MemberPointerType>())) { |
| 4574 | Composite1 = MemPtr1->getPointeeType(); |
| 4575 | Composite2 = MemPtr2->getPointeeType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4576 | |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4577 | // If we're allowed to create a non-standard composite type, keep track |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4578 | // of where we need to fill in additional 'const' qualifiers. |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4579 | if (NonStandardCompositeType && |
| 4580 | Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers()) |
| 4581 | NeedConstBefore = QualifierUnion.size(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4582 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4583 | QualifierUnion.push_back( |
| 4584 | Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers()); |
| 4585 | MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(), |
| 4586 | MemPtr2->getClass())); |
| 4587 | continue; |
| 4588 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4589 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4590 | // FIXME: block pointer types? |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4591 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4592 | // Cannot unwrap any more types. |
| 4593 | break; |
| 4594 | } while (true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4595 | |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4596 | if (NeedConstBefore && NonStandardCompositeType) { |
| 4597 | // Extension: Add 'const' to qualifiers that come before the first qualifier |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4598 | // mismatch, so that our (non-standard!) composite type meets the |
Douglas Gregor | b2cb1cb | 2010-02-25 22:29:57 +0000 | [diff] [blame] | 4599 | // requirements of C++ [conv.qual]p4 bullet 3. |
| 4600 | for (unsigned I = 0; I != NeedConstBefore; ++I) { |
| 4601 | if ((QualifierUnion[I] & Qualifiers::Const) == 0) { |
| 4602 | QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const; |
| 4603 | *NonStandardCompositeType = true; |
| 4604 | } |
| 4605 | } |
| 4606 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4607 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4608 | // Rewrap the composites as pointers or member pointers with the union CVRs. |
Sebastian Redl | a439e6f | 2009-11-16 21:03:45 +0000 | [diff] [blame] | 4609 | ContainingClassVector::reverse_iterator MOC |
| 4610 | = MemberOfClass.rbegin(); |
| 4611 | for (QualifierVector::reverse_iterator |
| 4612 | I = QualifierUnion.rbegin(), |
| 4613 | E = QualifierUnion.rend(); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4614 | I != E; (void)++I, ++MOC) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4615 | Qualifiers Quals = Qualifiers::fromCVRMask(*I); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4616 | if (MOC->first && MOC->second) { |
| 4617 | // Rebuild member pointer type |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4618 | Composite1 = Context.getMemberPointerType( |
| 4619 | Context.getQualifiedType(Composite1, Quals), |
| 4620 | MOC->first); |
| 4621 | Composite2 = Context.getMemberPointerType( |
| 4622 | Context.getQualifiedType(Composite2, Quals), |
| 4623 | MOC->second); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4624 | } else { |
| 4625 | // Rebuild pointer type |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4626 | Composite1 |
| 4627 | = Context.getPointerType(Context.getQualifiedType(Composite1, Quals)); |
| 4628 | Composite2 |
| 4629 | = Context.getPointerType(Context.getQualifiedType(Composite2, Quals)); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4630 | } |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4631 | } |
| 4632 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4633 | // Try to convert to the first composite pointer type. |
| 4634 | InitializedEntity Entity1 |
| 4635 | = InitializedEntity::InitializeTemporary(Composite1); |
| 4636 | InitializationKind Kind |
| 4637 | = InitializationKind::CreateCopy(Loc, SourceLocation()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4638 | InitializationSequence E1ToC1(*this, Entity1, Kind, E1); |
| 4639 | InitializationSequence E2ToC1(*this, Entity1, Kind, E2); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4640 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4641 | if (E1ToC1 && E2ToC1) { |
| 4642 | // Conversion to Composite1 is viable. |
| 4643 | if (!Context.hasSameType(Composite1, Composite2)) { |
| 4644 | // Composite2 is a different type from Composite1. Check whether |
| 4645 | // Composite2 is also viable. |
| 4646 | InitializedEntity Entity2 |
| 4647 | = InitializedEntity::InitializeTemporary(Composite2); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4648 | InitializationSequence E1ToC2(*this, Entity2, Kind, E1); |
| 4649 | InitializationSequence E2ToC2(*this, Entity2, Kind, E2); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4650 | if (E1ToC2 && E2ToC2) { |
| 4651 | // Both Composite1 and Composite2 are viable and are different; |
| 4652 | // this is an ambiguity. |
| 4653 | return QualType(); |
| 4654 | } |
| 4655 | } |
| 4656 | |
| 4657 | // Convert E1 to Composite1 |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4658 | ExprResult E1Result |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4659 | = E1ToC1.Perform(*this, Entity1, Kind, E1); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4660 | if (E1Result.isInvalid()) |
| 4661 | return QualType(); |
| 4662 | E1 = E1Result.takeAs<Expr>(); |
| 4663 | |
| 4664 | // Convert E2 to Composite1 |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4665 | ExprResult E2Result |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4666 | = E2ToC1.Perform(*this, Entity1, Kind, E2); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4667 | if (E2Result.isInvalid()) |
| 4668 | return QualType(); |
| 4669 | E2 = E2Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4670 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4671 | return Composite1; |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4672 | } |
| 4673 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4674 | // Check whether Composite2 is viable. |
| 4675 | InitializedEntity Entity2 |
| 4676 | = InitializedEntity::InitializeTemporary(Composite2); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4677 | InitializationSequence E1ToC2(*this, Entity2, Kind, E1); |
| 4678 | InitializationSequence E2ToC2(*this, Entity2, Kind, E2); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4679 | if (!E1ToC2 || !E2ToC2) |
| 4680 | return QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4681 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4682 | // Convert E1 to Composite2 |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4683 | ExprResult E1Result |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4684 | = E1ToC2.Perform(*this, Entity2, Kind, E1); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4685 | if (E1Result.isInvalid()) |
| 4686 | return QualType(); |
| 4687 | E1 = E1Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4688 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4689 | // Convert E2 to Composite2 |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4690 | ExprResult E2Result |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4691 | = E2ToC2.Perform(*this, Entity2, Kind, E2); |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4692 | if (E2Result.isInvalid()) |
| 4693 | return QualType(); |
| 4694 | E2 = E2Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4695 | |
Douglas Gregor | 8f00dcf | 2010-04-16 23:20:25 +0000 | [diff] [blame] | 4696 | return Composite2; |
Sebastian Redl | d1bd7fc | 2009-04-19 19:26:31 +0000 | [diff] [blame] | 4697 | } |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 4698 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4699 | ExprResult Sema::MaybeBindToTemporary(Expr *E) { |
Douglas Gregor | 19cc1c7 | 2010-11-01 21:10:29 +0000 | [diff] [blame] | 4700 | if (!E) |
| 4701 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4702 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4703 | assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?"); |
| 4704 | |
| 4705 | // If the result is a glvalue, we shouldn't bind it. |
| 4706 | if (!E->isRValue()) |
Anders Carlsson | 089c260 | 2009-08-15 23:41:35 +0000 | [diff] [blame] | 4707 | return Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4708 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4709 | // In ARC, calls that return a retainable type can return retained, |
| 4710 | // in which case we have to insert a consuming cast. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4711 | if (getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4712 | E->getType()->isObjCRetainableType()) { |
| 4713 | |
| 4714 | bool ReturnsRetained; |
| 4715 | |
| 4716 | // For actual calls, we compute this by examining the type of the |
| 4717 | // called value. |
| 4718 | if (CallExpr *Call = dyn_cast<CallExpr>(E)) { |
| 4719 | Expr *Callee = Call->getCallee()->IgnoreParens(); |
| 4720 | QualType T = Callee->getType(); |
| 4721 | |
| 4722 | if (T == Context.BoundMemberTy) { |
| 4723 | // Handle pointer-to-members. |
| 4724 | if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee)) |
| 4725 | T = BinOp->getRHS()->getType(); |
| 4726 | else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee)) |
| 4727 | T = Mem->getMemberDecl()->getType(); |
| 4728 | } |
| 4729 | |
| 4730 | if (const PointerType *Ptr = T->getAs<PointerType>()) |
| 4731 | T = Ptr->getPointeeType(); |
| 4732 | else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>()) |
| 4733 | T = Ptr->getPointeeType(); |
| 4734 | else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>()) |
| 4735 | T = MemPtr->getPointeeType(); |
| 4736 | |
| 4737 | const FunctionType *FTy = T->getAs<FunctionType>(); |
| 4738 | assert(FTy && "call to value not of function type?"); |
| 4739 | ReturnsRetained = FTy->getExtInfo().getProducesResult(); |
| 4740 | |
| 4741 | // ActOnStmtExpr arranges things so that StmtExprs of retainable |
| 4742 | // type always produce a +1 object. |
| 4743 | } else if (isa<StmtExpr>(E)) { |
| 4744 | ReturnsRetained = true; |
| 4745 | |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4746 | // We hit this case with the lambda conversion-to-block optimization; |
| 4747 | // we don't want any extra casts here. |
| 4748 | } else if (isa<CastExpr>(E) && |
| 4749 | isa<BlockExpr>(cast<CastExpr>(E)->getSubExpr())) { |
| 4750 | return Owned(E); |
| 4751 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4752 | // For message sends and property references, we try to find an |
| 4753 | // actual method. FIXME: we should infer retention by selector in |
| 4754 | // cases where we don't have an actual method. |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4755 | } else { |
| 4756 | ObjCMethodDecl *D = 0; |
| 4757 | if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) { |
| 4758 | D = Send->getMethodDecl(); |
Patrick Beard | eb382ec | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 4759 | } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) { |
| 4760 | D = BoxedExpr->getBoxingMethod(); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4761 | } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) { |
| 4762 | D = ArrayLit->getArrayWithObjectsMethod(); |
| 4763 | } else if (ObjCDictionaryLiteral *DictLit |
| 4764 | = dyn_cast<ObjCDictionaryLiteral>(E)) { |
| 4765 | D = DictLit->getDictWithObjectsMethod(); |
| 4766 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4767 | |
| 4768 | ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>()); |
John McCall | fc4b191 | 2011-08-03 07:02:44 +0000 | [diff] [blame] | 4769 | |
| 4770 | // Don't do reclaims on performSelector calls; despite their |
| 4771 | // return type, the invoked method doesn't necessarily actually |
| 4772 | // return an object. |
| 4773 | if (!ReturnsRetained && |
| 4774 | D && D->getMethodFamily() == OMF_performSelector) |
| 4775 | return Owned(E); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4776 | } |
| 4777 | |
John McCall | 567c586 | 2011-11-14 19:53:16 +0000 | [diff] [blame] | 4778 | // Don't reclaim an object of Class type. |
| 4779 | if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType()) |
| 4780 | return Owned(E); |
| 4781 | |
John McCall | 7e5e5f4 | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 4782 | ExprNeedsCleanups = true; |
| 4783 | |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4784 | CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject |
| 4785 | : CK_ARCReclaimReturnedObject); |
John McCall | 7e5e5f4 | 2011-07-07 06:58:02 +0000 | [diff] [blame] | 4786 | return Owned(ImplicitCastExpr::Create(Context, E->getType(), ck, E, 0, |
| 4787 | VK_RValue)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4788 | } |
| 4789 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4790 | if (!getLangOpts().CPlusPlus) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4791 | return Owned(E); |
Douglas Gregor | 5132655 | 2009-12-24 18:51:59 +0000 | [diff] [blame] | 4792 | |
Peter Collingbourne | b4ab843 | 2012-01-26 03:33:51 +0000 | [diff] [blame] | 4793 | // Search for the base element type (cf. ASTContext::getBaseElementType) with |
| 4794 | // a fast path for the common case that the type is directly a RecordType. |
| 4795 | const Type *T = Context.getCanonicalType(E->getType().getTypePtr()); |
| 4796 | const RecordType *RT = 0; |
| 4797 | while (!RT) { |
| 4798 | switch (T->getTypeClass()) { |
| 4799 | case Type::Record: |
| 4800 | RT = cast<RecordType>(T); |
| 4801 | break; |
| 4802 | case Type::ConstantArray: |
| 4803 | case Type::IncompleteArray: |
| 4804 | case Type::VariableArray: |
| 4805 | case Type::DependentSizedArray: |
| 4806 | T = cast<ArrayType>(T)->getElementType().getTypePtr(); |
| 4807 | break; |
| 4808 | default: |
| 4809 | return Owned(E); |
| 4810 | } |
| 4811 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4812 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4813 | // That should be enough to guarantee that this type is complete, if we're |
| 4814 | // not processing a decltype expression. |
Jeffrey Yasskin | b7ee2e5 | 2011-01-27 19:17:54 +0000 | [diff] [blame] | 4815 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
Richard Smith | 213d70b | 2012-02-18 04:13:32 +0000 | [diff] [blame] | 4816 | if (RD->isInvalidDecl() || RD->isDependentContext()) |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 4817 | return Owned(E); |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4818 | |
| 4819 | bool IsDecltype = ExprEvalContexts.back().IsDecltype; |
| 4820 | CXXDestructorDecl *Destructor = IsDecltype ? 0 : LookupDestructor(RD); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4821 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4822 | if (Destructor) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 4823 | MarkFunctionReferenced(E->getExprLoc(), Destructor); |
John McCall | c91cc66 | 2010-04-07 00:41:46 +0000 | [diff] [blame] | 4824 | CheckDestructorAccess(E->getExprLoc(), Destructor, |
| 4825 | PDiag(diag::err_access_dtor_temp) |
| 4826 | << E->getType()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 4827 | if (DiagnoseUseOfDecl(Destructor, E->getExprLoc())) |
| 4828 | return ExprError(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4829 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4830 | // If destructor is trivial, we can avoid the extra copy. |
| 4831 | if (Destructor->isTrivial()) |
| 4832 | return Owned(E); |
Richard Smith | 213d70b | 2012-02-18 04:13:32 +0000 | [diff] [blame] | 4833 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 4834 | // We need a cleanup, but we don't need to remember the temporary. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4835 | ExprNeedsCleanups = true; |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4836 | } |
Richard Smith | 213d70b | 2012-02-18 04:13:32 +0000 | [diff] [blame] | 4837 | |
| 4838 | CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor); |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4839 | CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E); |
| 4840 | |
| 4841 | if (IsDecltype) |
| 4842 | ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind); |
| 4843 | |
| 4844 | return Owned(Bind); |
Anders Carlsson | def1199 | 2009-05-30 20:36:53 +0000 | [diff] [blame] | 4845 | } |
| 4846 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4847 | ExprResult |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4848 | Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) { |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4849 | if (SubExpr.isInvalid()) |
| 4850 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4851 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4852 | return Owned(MaybeCreateExprWithCleanups(SubExpr.take())); |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4853 | } |
| 4854 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 4855 | Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) { |
| 4856 | assert(SubExpr && "sub expression can't be null!"); |
| 4857 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 4858 | CleanupVarDeclMarking(); |
| 4859 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 4860 | unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects; |
| 4861 | assert(ExprCleanupObjects.size() >= FirstCleanup); |
| 4862 | assert(ExprNeedsCleanups || ExprCleanupObjects.size() == FirstCleanup); |
| 4863 | if (!ExprNeedsCleanups) |
| 4864 | return SubExpr; |
| 4865 | |
| 4866 | ArrayRef<ExprWithCleanups::CleanupObject> Cleanups |
| 4867 | = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup, |
| 4868 | ExprCleanupObjects.size() - FirstCleanup); |
| 4869 | |
| 4870 | Expr *E = ExprWithCleanups::Create(Context, SubExpr, Cleanups); |
| 4871 | DiscardCleanupsInEvaluationContext(); |
| 4872 | |
| 4873 | return E; |
| 4874 | } |
| 4875 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4876 | Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) { |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 4877 | assert(SubStmt && "sub statement can't be null!"); |
| 4878 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 4879 | CleanupVarDeclMarking(); |
| 4880 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4881 | if (!ExprNeedsCleanups) |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 4882 | return SubStmt; |
| 4883 | |
| 4884 | // FIXME: In order to attach the temporaries, wrap the statement into |
| 4885 | // a StmtExpr; currently this is only used for asm statements. |
| 4886 | // This is hacky, either create a new CXXStmtWithTemporaries statement or |
| 4887 | // a new AsmStmtWithTemporaries. |
Nico Weber | d36aa35 | 2012-12-29 20:03:39 +0000 | [diff] [blame] | 4888 | CompoundStmt *CompStmt = new (Context) CompoundStmt(Context, SubStmt, |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 4889 | SourceLocation(), |
| 4890 | SourceLocation()); |
| 4891 | Expr *E = new (Context) StmtExpr(CompStmt, Context.VoidTy, SourceLocation(), |
| 4892 | SourceLocation()); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4893 | return MaybeCreateExprWithCleanups(E); |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 4894 | } |
| 4895 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4896 | /// Process the expression contained within a decltype. For such expressions, |
| 4897 | /// certain semantic checks on temporaries are delayed until this point, and |
| 4898 | /// are omitted for the 'topmost' call in the decltype expression. If the |
| 4899 | /// topmost call bound a temporary, strip that temporary off the expression. |
| 4900 | ExprResult Sema::ActOnDecltypeExpression(Expr *E) { |
Benjamin Kramer | 1b48633 | 2012-11-15 15:18:42 +0000 | [diff] [blame] | 4901 | assert(ExprEvalContexts.back().IsDecltype && "not in a decltype expression"); |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4902 | |
| 4903 | // C++11 [expr.call]p11: |
| 4904 | // If a function call is a prvalue of object type, |
| 4905 | // -- if the function call is either |
| 4906 | // -- the operand of a decltype-specifier, or |
| 4907 | // -- the right operand of a comma operator that is the operand of a |
| 4908 | // decltype-specifier, |
| 4909 | // a temporary object is not introduced for the prvalue. |
| 4910 | |
| 4911 | // Recursively rebuild ParenExprs and comma expressions to strip out the |
| 4912 | // outermost CXXBindTemporaryExpr, if any. |
| 4913 | if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) { |
| 4914 | ExprResult SubExpr = ActOnDecltypeExpression(PE->getSubExpr()); |
| 4915 | if (SubExpr.isInvalid()) |
| 4916 | return ExprError(); |
| 4917 | if (SubExpr.get() == PE->getSubExpr()) |
| 4918 | return Owned(E); |
| 4919 | return ActOnParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.take()); |
| 4920 | } |
| 4921 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
| 4922 | if (BO->getOpcode() == BO_Comma) { |
| 4923 | ExprResult RHS = ActOnDecltypeExpression(BO->getRHS()); |
| 4924 | if (RHS.isInvalid()) |
| 4925 | return ExprError(); |
| 4926 | if (RHS.get() == BO->getRHS()) |
| 4927 | return Owned(E); |
| 4928 | return Owned(new (Context) BinaryOperator(BO->getLHS(), RHS.take(), |
| 4929 | BO_Comma, BO->getType(), |
| 4930 | BO->getValueKind(), |
| 4931 | BO->getObjectKind(), |
Lang Hames | be9af12 | 2012-10-02 04:45:10 +0000 | [diff] [blame] | 4932 | BO->getOperatorLoc(), |
| 4933 | BO->isFPContractable())); |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4934 | } |
| 4935 | } |
| 4936 | |
| 4937 | CXXBindTemporaryExpr *TopBind = dyn_cast<CXXBindTemporaryExpr>(E); |
| 4938 | if (TopBind) |
| 4939 | E = TopBind->getSubExpr(); |
| 4940 | |
| 4941 | // Disable the special decltype handling now. |
Benjamin Kramer | 1b48633 | 2012-11-15 15:18:42 +0000 | [diff] [blame] | 4942 | ExprEvalContexts.back().IsDecltype = false; |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4943 | |
Richard Smith | d22f084 | 2012-07-28 19:54:11 +0000 | [diff] [blame] | 4944 | // In MS mode, don't perform any extra checking of call return types within a |
| 4945 | // decltype expression. |
| 4946 | if (getLangOpts().MicrosoftMode) |
| 4947 | return Owned(E); |
| 4948 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4949 | // Perform the semantic checks we delayed until this point. |
| 4950 | CallExpr *TopCall = dyn_cast<CallExpr>(E); |
Benjamin Kramer | 1b48633 | 2012-11-15 15:18:42 +0000 | [diff] [blame] | 4951 | for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeCalls.size(); |
| 4952 | I != N; ++I) { |
| 4953 | CallExpr *Call = ExprEvalContexts.back().DelayedDecltypeCalls[I]; |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4954 | if (Call == TopCall) |
| 4955 | continue; |
| 4956 | |
| 4957 | if (CheckCallReturnType(Call->getCallReturnType(), |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 4958 | Call->getLocStart(), |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4959 | Call, Call->getDirectCallee())) |
| 4960 | return ExprError(); |
| 4961 | } |
| 4962 | |
| 4963 | // Now all relevant types are complete, check the destructors are accessible |
| 4964 | // and non-deleted, and annotate them on the temporaries. |
Benjamin Kramer | 1b48633 | 2012-11-15 15:18:42 +0000 | [diff] [blame] | 4965 | for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeBinds.size(); |
| 4966 | I != N; ++I) { |
| 4967 | CXXBindTemporaryExpr *Bind = |
| 4968 | ExprEvalContexts.back().DelayedDecltypeBinds[I]; |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4969 | if (Bind == TopBind) |
| 4970 | continue; |
| 4971 | |
| 4972 | CXXTemporary *Temp = Bind->getTemporary(); |
| 4973 | |
| 4974 | CXXRecordDecl *RD = |
| 4975 | Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); |
| 4976 | CXXDestructorDecl *Destructor = LookupDestructor(RD); |
| 4977 | Temp->setDestructor(Destructor); |
| 4978 | |
Richard Smith | 2f68ca0 | 2012-05-11 22:20:10 +0000 | [diff] [blame] | 4979 | MarkFunctionReferenced(Bind->getExprLoc(), Destructor); |
| 4980 | CheckDestructorAccess(Bind->getExprLoc(), Destructor, |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4981 | PDiag(diag::err_access_dtor_temp) |
Richard Smith | 2f68ca0 | 2012-05-11 22:20:10 +0000 | [diff] [blame] | 4982 | << Bind->getType()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 4983 | if (DiagnoseUseOfDecl(Destructor, Bind->getExprLoc())) |
| 4984 | return ExprError(); |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 4985 | |
| 4986 | // We need a cleanup, but we don't need to remember the temporary. |
| 4987 | ExprNeedsCleanups = true; |
| 4988 | } |
| 4989 | |
| 4990 | // Possibly strip off the top CXXBindTemporaryExpr. |
| 4991 | return Owned(E); |
| 4992 | } |
| 4993 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4994 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4995 | Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4996 | tok::TokenKind OpKind, ParsedType &ObjectType, |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 4997 | bool &MayBePseudoDestructor) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 4998 | // Since this might be a postfix expression, get rid of ParenListExprs. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4999 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5000 | if (Result.isInvalid()) return ExprError(); |
| 5001 | Base = Result.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5002 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 5003 | Result = CheckPlaceholderExpr(Base); |
| 5004 | if (Result.isInvalid()) return ExprError(); |
| 5005 | Base = Result.take(); |
| 5006 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5007 | QualType BaseType = Base->getType(); |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 5008 | MayBePseudoDestructor = false; |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5009 | if (BaseType->isDependentType()) { |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 5010 | // If we have a pointer to a dependent type and are using the -> operator, |
| 5011 | // the object type is the type that the pointer points to. We might still |
| 5012 | // have enough information about that type to do something useful. |
| 5013 | if (OpKind == tok::arrow) |
| 5014 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) |
| 5015 | BaseType = Ptr->getPointeeType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5016 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5017 | ObjectType = ParsedType::make(BaseType); |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 5018 | MayBePseudoDestructor = true; |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5019 | return Owned(Base); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5020 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5021 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5022 | // C++ [over.match.oper]p8: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5023 | // [...] When operator->returns, the operator-> is applied to the value |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5024 | // returned, with the original second operand. |
| 5025 | if (OpKind == tok::arrow) { |
John McCall | c4e8321 | 2009-09-30 01:01:30 +0000 | [diff] [blame] | 5026 | // The set of types we've considered so far. |
John McCall | 432887f | 2009-09-30 01:30:54 +0000 | [diff] [blame] | 5027 | llvm::SmallPtrSet<CanQualType,8> CTypes; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5028 | SmallVector<SourceLocation, 8> Locations; |
John McCall | 432887f | 2009-09-30 01:30:54 +0000 | [diff] [blame] | 5029 | CTypes.insert(Context.getCanonicalType(BaseType)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5030 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5031 | while (BaseType->isRecordType()) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5032 | Result = BuildOverloadedArrowExpr(S, Base, OpLoc); |
| 5033 | if (Result.isInvalid()) |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5034 | return ExprError(); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5035 | Base = Result.get(); |
| 5036 | if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base)) |
Anders Carlsson | de699e5 | 2009-10-13 22:55:59 +0000 | [diff] [blame] | 5037 | Locations.push_back(OpCall->getDirectCallee()->getLocation()); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5038 | BaseType = Base->getType(); |
John McCall | c4e8321 | 2009-09-30 01:01:30 +0000 | [diff] [blame] | 5039 | CanQualType CBaseType = Context.getCanonicalType(BaseType); |
John McCall | 432887f | 2009-09-30 01:30:54 +0000 | [diff] [blame] | 5040 | if (!CTypes.insert(CBaseType)) { |
Fariborz Jahanian | 4a4e345 | 2009-09-30 00:19:41 +0000 | [diff] [blame] | 5041 | Diag(OpLoc, diag::err_operator_arrow_circular); |
Fariborz Jahanian | 7a8233a | 2009-09-30 17:46:20 +0000 | [diff] [blame] | 5042 | for (unsigned i = 0; i < Locations.size(); i++) |
| 5043 | Diag(Locations[i], diag::note_declared_at); |
Fariborz Jahanian | 4a4e345 | 2009-09-30 00:19:41 +0000 | [diff] [blame] | 5044 | return ExprError(); |
| 5045 | } |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5046 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5047 | |
Douglas Gregor | 1d7049a | 2012-01-12 16:11:24 +0000 | [diff] [blame] | 5048 | if (BaseType->isPointerType() || BaseType->isObjCObjectPointerType()) |
Douglas Gregor | 31658df | 2009-11-20 19:58:21 +0000 | [diff] [blame] | 5049 | BaseType = BaseType->getPointeeType(); |
| 5050 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5051 | |
Douglas Gregor | 1d7049a | 2012-01-12 16:11:24 +0000 | [diff] [blame] | 5052 | // Objective-C properties allow "." access on Objective-C pointer types, |
| 5053 | // so adjust the base type to the object type itself. |
| 5054 | if (BaseType->isObjCObjectPointerType()) |
| 5055 | BaseType = BaseType->getPointeeType(); |
| 5056 | |
| 5057 | // C++ [basic.lookup.classref]p2: |
| 5058 | // [...] If the type of the object expression is of pointer to scalar |
| 5059 | // type, the unqualified-id is looked up in the context of the complete |
| 5060 | // postfix-expression. |
| 5061 | // |
| 5062 | // This also indicates that we could be parsing a pseudo-destructor-name. |
| 5063 | // Note that Objective-C class and object types can be pseudo-destructor |
| 5064 | // expressions or normal member (ivar or property) access expressions. |
| 5065 | if (BaseType->isObjCObjectOrInterfaceType()) { |
| 5066 | MayBePseudoDestructor = true; |
| 5067 | } else if (!BaseType->isRecordType()) { |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5068 | ObjectType = ParsedType(); |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 5069 | MayBePseudoDestructor = true; |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5070 | return Owned(Base); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 5071 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5072 | |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 5073 | // The object type must be complete (or dependent), or |
| 5074 | // C++11 [expr.prim.general]p3: |
| 5075 | // Unlike the object expression in other contexts, *this is not required to |
| 5076 | // be of complete type for purposes of class member access (5.2.5) outside |
| 5077 | // the member function body. |
Douglas Gregor | 03c5705 | 2009-11-17 05:17:33 +0000 | [diff] [blame] | 5078 | if (!BaseType->isDependentType() && |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 5079 | !isThisOutsideMemberFunctionBody(BaseType) && |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 5080 | RequireCompleteType(OpLoc, BaseType, diag::err_incomplete_member_access)) |
Douglas Gregor | 03c5705 | 2009-11-17 05:17:33 +0000 | [diff] [blame] | 5081 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5082 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 5083 | // C++ [basic.lookup.classref]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5084 | // If the id-expression in a class member access (5.2.5) is an |
Douglas Gregor | 03c5705 | 2009-11-17 05:17:33 +0000 | [diff] [blame] | 5085 | // unqualified-id, and the type of the object expression is of a class |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 5086 | // type C (or of pointer to a class type C), the unqualified-id is looked |
| 5087 | // up in the scope of class C. [...] |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5088 | ObjectType = ParsedType::make(BaseType); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5089 | return Base; |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 5090 | } |
| 5091 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5092 | ExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5093 | Expr *MemExpr) { |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5094 | SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5095 | Diag(MemExpr->getLocStart(), diag::err_dtor_expr_without_call) |
| 5096 | << isa<CXXPseudoDestructorExpr>(MemExpr) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 5097 | << FixItHint::CreateInsertion(ExpectedLParenLoc, "()"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5098 | |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5099 | return ActOnCallExpr(/*Scope*/ 0, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5100 | MemExpr, |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5101 | /*LPLoc*/ ExpectedLParenLoc, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5102 | MultiExprArg(), |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5103 | /*RPLoc*/ ExpectedLParenLoc); |
| 5104 | } |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 5105 | |
Eli Friedman | e0dbedf | 2012-01-25 04:29:24 +0000 | [diff] [blame] | 5106 | static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base, |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5107 | tok::TokenKind& OpKind, SourceLocation OpLoc) { |
Eli Friedman | e0dbedf | 2012-01-25 04:29:24 +0000 | [diff] [blame] | 5108 | if (Base->hasPlaceholderType()) { |
| 5109 | ExprResult result = S.CheckPlaceholderExpr(Base); |
| 5110 | if (result.isInvalid()) return true; |
| 5111 | Base = result.take(); |
| 5112 | } |
| 5113 | ObjectType = Base->getType(); |
| 5114 | |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5115 | // C++ [expr.pseudo]p2: |
| 5116 | // The left-hand side of the dot operator shall be of scalar type. The |
| 5117 | // left-hand side of the arrow operator shall be of pointer to scalar type. |
| 5118 | // This scalar type is the object type. |
Eli Friedman | e0dbedf | 2012-01-25 04:29:24 +0000 | [diff] [blame] | 5119 | // Note that this is rather different from the normal handling for the |
| 5120 | // arrow operator. |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5121 | if (OpKind == tok::arrow) { |
| 5122 | if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) { |
| 5123 | ObjectType = Ptr->getPointeeType(); |
| 5124 | } else if (!Base->isTypeDependent()) { |
| 5125 | // The user wrote "p->" when she probably meant "p."; fix it. |
| 5126 | S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) |
| 5127 | << ObjectType << true |
| 5128 | << FixItHint::CreateReplacement(OpLoc, "."); |
| 5129 | if (S.isSFINAEContext()) |
| 5130 | return true; |
| 5131 | |
| 5132 | OpKind = tok::period; |
| 5133 | } |
| 5134 | } |
| 5135 | |
| 5136 | return false; |
| 5137 | } |
| 5138 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5139 | ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base, |
John McCall | 2d9f5fa | 2011-02-25 05:21:17 +0000 | [diff] [blame] | 5140 | SourceLocation OpLoc, |
| 5141 | tok::TokenKind OpKind, |
| 5142 | const CXXScopeSpec &SS, |
| 5143 | TypeSourceInfo *ScopeTypeInfo, |
| 5144 | SourceLocation CCLoc, |
| 5145 | SourceLocation TildeLoc, |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5146 | PseudoDestructorTypeStorage Destructed, |
John McCall | 2d9f5fa | 2011-02-25 05:21:17 +0000 | [diff] [blame] | 5147 | bool HasTrailingLParen) { |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5148 | TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5149 | |
Eli Friedman | 8c9fe20 | 2012-01-25 04:35:06 +0000 | [diff] [blame] | 5150 | QualType ObjectType; |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5151 | if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) |
| 5152 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5153 | |
Douglas Gregor | 0cb8939 | 2012-09-10 14:57:06 +0000 | [diff] [blame] | 5154 | if (!ObjectType->isDependentType() && !ObjectType->isScalarType() && |
| 5155 | !ObjectType->isVectorType()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5156 | if (getLangOpts().MicrosoftMode && ObjectType->isVoidType()) |
Nico Weber | 2d757ec | 2012-01-23 06:08:16 +0000 | [diff] [blame] | 5157 | Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange(); |
Nico Weber | df1be86 | 2012-01-23 05:50:57 +0000 | [diff] [blame] | 5158 | else |
| 5159 | Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 5160 | << ObjectType << Base->getSourceRange(); |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5161 | return ExprError(); |
| 5162 | } |
| 5163 | |
| 5164 | // C++ [expr.pseudo]p2: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5165 | // [...] The cv-unqualified versions of the object type and of the type |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5166 | // designated by the pseudo-destructor-name shall be the same type. |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5167 | if (DestructedTypeInfo) { |
| 5168 | QualType DestructedType = DestructedTypeInfo->getType(); |
| 5169 | SourceLocation DestructedTypeStart |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 5170 | = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5171 | if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) { |
| 5172 | if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) { |
| 5173 | Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch) |
| 5174 | << ObjectType << DestructedType << Base->getSourceRange() |
| 5175 | << DestructedTypeInfo->getTypeLoc().getLocalSourceRange(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5176 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5177 | // Recover by setting the destructed type to the object type. |
| 5178 | DestructedType = ObjectType; |
| 5179 | DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType, |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5180 | DestructedTypeStart); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5181 | Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); |
| 5182 | } else if (DestructedType.getObjCLifetime() != |
| 5183 | ObjectType.getObjCLifetime()) { |
| 5184 | |
| 5185 | if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) { |
| 5186 | // Okay: just pretend that the user provided the correctly-qualified |
| 5187 | // type. |
| 5188 | } else { |
| 5189 | Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals) |
| 5190 | << ObjectType << DestructedType << Base->getSourceRange() |
| 5191 | << DestructedTypeInfo->getTypeLoc().getLocalSourceRange(); |
| 5192 | } |
| 5193 | |
| 5194 | // Recover by setting the destructed type to the object type. |
| 5195 | DestructedType = ObjectType; |
| 5196 | DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType, |
| 5197 | DestructedTypeStart); |
| 5198 | Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); |
| 5199 | } |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5200 | } |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5201 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5202 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5203 | // C++ [expr.pseudo]p2: |
| 5204 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of the |
| 5205 | // form |
| 5206 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5207 | // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5208 | // |
| 5209 | // shall designate the same scalar type. |
| 5210 | if (ScopeTypeInfo) { |
| 5211 | QualType ScopeType = ScopeTypeInfo->getType(); |
| 5212 | if (!ScopeType->isDependentType() && !ObjectType->isDependentType() && |
John McCall | 81e317a | 2010-06-11 17:36:40 +0000 | [diff] [blame] | 5213 | !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5214 | |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 5215 | Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(), |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5216 | diag::err_pseudo_dtor_type_mismatch) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5217 | << ObjectType << ScopeType << Base->getSourceRange() |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 5218 | << ScopeTypeInfo->getTypeLoc().getLocalSourceRange(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5219 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5220 | ScopeType = QualType(); |
| 5221 | ScopeTypeInfo = 0; |
| 5222 | } |
| 5223 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5224 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5225 | Expr *Result |
| 5226 | = new (Context) CXXPseudoDestructorExpr(Context, Base, |
| 5227 | OpKind == tok::arrow, OpLoc, |
Douglas Gregor | f3db29f | 2011-02-25 18:19:59 +0000 | [diff] [blame] | 5228 | SS.getWithLocInContext(Context), |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5229 | ScopeTypeInfo, |
| 5230 | CCLoc, |
| 5231 | TildeLoc, |
| 5232 | Destructed); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5233 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5234 | if (HasTrailingLParen) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5235 | return Owned(Result); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5236 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5237 | return DiagnoseDtorReference(Destructed.getLocation(), Result); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5238 | } |
| 5239 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5240 | ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base, |
John McCall | 2d9f5fa | 2011-02-25 05:21:17 +0000 | [diff] [blame] | 5241 | SourceLocation OpLoc, |
| 5242 | tok::TokenKind OpKind, |
| 5243 | CXXScopeSpec &SS, |
| 5244 | UnqualifiedId &FirstTypeName, |
| 5245 | SourceLocation CCLoc, |
| 5246 | SourceLocation TildeLoc, |
| 5247 | UnqualifiedId &SecondTypeName, |
| 5248 | bool HasTrailingLParen) { |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5249 | assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId || |
| 5250 | FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) && |
| 5251 | "Invalid first type name in pseudo-destructor"); |
| 5252 | assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId || |
| 5253 | SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) && |
| 5254 | "Invalid second type name in pseudo-destructor"); |
| 5255 | |
Eli Friedman | 8c9fe20 | 2012-01-25 04:35:06 +0000 | [diff] [blame] | 5256 | QualType ObjectType; |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5257 | if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) |
| 5258 | return ExprError(); |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5259 | |
| 5260 | // Compute the object type that we should use for name lookup purposes. Only |
| 5261 | // record types and dependent types matter. |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5262 | ParsedType ObjectTypePtrForLookup; |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5263 | if (!SS.isSet()) { |
John McCall | 2d9f5fa | 2011-02-25 05:21:17 +0000 | [diff] [blame] | 5264 | if (ObjectType->isRecordType()) |
| 5265 | ObjectTypePtrForLookup = ParsedType::make(ObjectType); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5266 | else if (ObjectType->isDependentType()) |
| 5267 | ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy); |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5268 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5269 | |
| 5270 | // Convert the name of the type being destructed (following the ~) into a |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5271 | // type (with source-location information). |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5272 | QualType DestructedType; |
| 5273 | TypeSourceInfo *DestructedTypeInfo = 0; |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5274 | PseudoDestructorTypeStorage Destructed; |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5275 | if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5276 | ParsedType T = getTypeName(*SecondTypeName.Identifier, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5277 | SecondTypeName.StartLocation, |
Fariborz Jahanian | 1e52dfc | 2011-02-08 18:05:59 +0000 | [diff] [blame] | 5278 | S, &SS, true, false, ObjectTypePtrForLookup); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5279 | if (!T && |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5280 | ((SS.isSet() && !computeDeclContext(SS, false)) || |
| 5281 | (!SS.isSet() && ObjectType->isDependentType()))) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5282 | // The name of the type being destroyed is a dependent name, and we |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5283 | // couldn't find anything useful in scope. Just store the identifier and |
| 5284 | // it's location, and we'll perform (qualified) name lookup again at |
| 5285 | // template instantiation time. |
| 5286 | Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier, |
| 5287 | SecondTypeName.StartLocation); |
| 5288 | } else if (!T) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5289 | Diag(SecondTypeName.StartLocation, |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5290 | diag::err_pseudo_dtor_destructor_non_type) |
| 5291 | << SecondTypeName.Identifier << ObjectType; |
| 5292 | if (isSFINAEContext()) |
| 5293 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5294 | |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5295 | // Recover by assuming we had the right type all along. |
| 5296 | DestructedType = ObjectType; |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5297 | } else |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5298 | DestructedType = GetTypeFromParser(T, &DestructedTypeInfo); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5299 | } else { |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5300 | // Resolve the template-id to a type. |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5301 | TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId; |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 5302 | ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5303 | TemplateId->NumArgs); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 5304 | TypeResult T = ActOnTemplateIdType(TemplateId->SS, |
Abramo Bagnara | 55d23c9 | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 5305 | TemplateId->TemplateKWLoc, |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 5306 | TemplateId->Template, |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5307 | TemplateId->TemplateNameLoc, |
| 5308 | TemplateId->LAngleLoc, |
| 5309 | TemplateArgsPtr, |
| 5310 | TemplateId->RAngleLoc); |
| 5311 | if (T.isInvalid() || !T.get()) { |
| 5312 | // Recover by assuming we had the right type all along. |
| 5313 | DestructedType = ObjectType; |
| 5314 | } else |
| 5315 | DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5316 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5317 | |
| 5318 | // If we've performed some kind of recovery, (re-)build the type source |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5319 | // information. |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5320 | if (!DestructedType.isNull()) { |
| 5321 | if (!DestructedTypeInfo) |
| 5322 | DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType, |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5323 | SecondTypeName.StartLocation); |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5324 | Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); |
| 5325 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5326 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5327 | // Convert the name of the scope type (the type prior to '::') into a type. |
| 5328 | TypeSourceInfo *ScopeTypeInfo = 0; |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5329 | QualType ScopeType; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5330 | if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId || |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5331 | FirstTypeName.Identifier) { |
| 5332 | if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5333 | ParsedType T = getTypeName(*FirstTypeName.Identifier, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5334 | FirstTypeName.StartLocation, |
Douglas Gregor | f3db29f | 2011-02-25 18:19:59 +0000 | [diff] [blame] | 5335 | S, &SS, true, false, ObjectTypePtrForLookup); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5336 | if (!T) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5337 | Diag(FirstTypeName.StartLocation, |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5338 | diag::err_pseudo_dtor_destructor_non_type) |
| 5339 | << FirstTypeName.Identifier << ObjectType; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5340 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5341 | if (isSFINAEContext()) |
| 5342 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5343 | |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5344 | // Just drop this type. It's unnecessary anyway. |
| 5345 | ScopeType = QualType(); |
| 5346 | } else |
| 5347 | ScopeType = GetTypeFromParser(T, &ScopeTypeInfo); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5348 | } else { |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5349 | // Resolve the template-id to a type. |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5350 | TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId; |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 5351 | ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5352 | TemplateId->NumArgs); |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 5353 | TypeResult T = ActOnTemplateIdType(TemplateId->SS, |
Abramo Bagnara | 55d23c9 | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 5354 | TemplateId->TemplateKWLoc, |
Douglas Gregor | 059101f | 2011-03-02 00:47:37 +0000 | [diff] [blame] | 5355 | TemplateId->Template, |
Douglas Gregor | b57fb49 | 2010-02-24 22:38:50 +0000 | [diff] [blame] | 5356 | TemplateId->TemplateNameLoc, |
| 5357 | TemplateId->LAngleLoc, |
| 5358 | TemplateArgsPtr, |
| 5359 | TemplateId->RAngleLoc); |
| 5360 | if (T.isInvalid() || !T.get()) { |
| 5361 | // Recover by dropping this type. |
| 5362 | ScopeType = QualType(); |
| 5363 | } else |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5364 | ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo); |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 5365 | } |
| 5366 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5367 | |
Douglas Gregor | b4a418f | 2010-02-24 23:02:30 +0000 | [diff] [blame] | 5368 | if (!ScopeType.isNull() && !ScopeTypeInfo) |
| 5369 | ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType, |
| 5370 | FirstTypeName.StartLocation); |
| 5371 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5372 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 5373 | return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS, |
Douglas Gregor | fce46ee | 2010-02-24 23:50:37 +0000 | [diff] [blame] | 5374 | ScopeTypeInfo, CCLoc, TildeLoc, |
Douglas Gregor | a2e7dd2 | 2010-02-25 01:56:36 +0000 | [diff] [blame] | 5375 | Destructed, HasTrailingLParen); |
Douglas Gregor | d4dca08 | 2010-02-24 18:44:31 +0000 | [diff] [blame] | 5376 | } |
| 5377 | |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5378 | ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base, |
| 5379 | SourceLocation OpLoc, |
| 5380 | tok::TokenKind OpKind, |
| 5381 | SourceLocation TildeLoc, |
| 5382 | const DeclSpec& DS, |
| 5383 | bool HasTrailingLParen) { |
Eli Friedman | 8c9fe20 | 2012-01-25 04:35:06 +0000 | [diff] [blame] | 5384 | QualType ObjectType; |
David Blaikie | 91ec789 | 2011-12-16 16:03:09 +0000 | [diff] [blame] | 5385 | if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) |
| 5386 | return ExprError(); |
| 5387 | |
| 5388 | QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); |
| 5389 | |
| 5390 | TypeLocBuilder TLB; |
| 5391 | DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T); |
| 5392 | DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc()); |
| 5393 | TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T); |
| 5394 | PseudoDestructorTypeStorage Destructed(DestructedTypeInfo); |
| 5395 | |
| 5396 | return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(), |
| 5397 | 0, SourceLocation(), TildeLoc, |
| 5398 | Destructed, HasTrailingLParen); |
| 5399 | } |
| 5400 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5401 | ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl, |
Eli Friedman | 3f01c8a | 2012-03-01 01:30:04 +0000 | [diff] [blame] | 5402 | CXXConversionDecl *Method, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5403 | bool HadMultipleCandidates) { |
Eli Friedman | 23f0267 | 2012-03-01 04:01:32 +0000 | [diff] [blame] | 5404 | if (Method->getParent()->isLambda() && |
| 5405 | Method->getConversionType()->isBlockPointerType()) { |
| 5406 | // This is a lambda coversion to block pointer; check if the argument |
| 5407 | // is a LambdaExpr. |
| 5408 | Expr *SubE = E; |
| 5409 | CastExpr *CE = dyn_cast<CastExpr>(SubE); |
| 5410 | if (CE && CE->getCastKind() == CK_NoOp) |
| 5411 | SubE = CE->getSubExpr(); |
| 5412 | SubE = SubE->IgnoreParens(); |
| 5413 | if (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(SubE)) |
| 5414 | SubE = BE->getSubExpr(); |
| 5415 | if (isa<LambdaExpr>(SubE)) { |
| 5416 | // For the conversion to block pointer on a lambda expression, we |
| 5417 | // construct a special BlockLiteral instead; this doesn't really make |
| 5418 | // a difference in ARC, but outside of ARC the resulting block literal |
| 5419 | // follows the normal lifetime rules for block literals instead of being |
| 5420 | // autoreleased. |
| 5421 | DiagnosticErrorTrap Trap(Diags); |
| 5422 | ExprResult Exp = BuildBlockForLambdaConversion(E->getExprLoc(), |
| 5423 | E->getExprLoc(), |
| 5424 | Method, E); |
| 5425 | if (Exp.isInvalid()) |
| 5426 | Diag(E->getExprLoc(), diag::note_lambda_to_block_conv); |
| 5427 | return Exp; |
| 5428 | } |
| 5429 | } |
| 5430 | |
| 5431 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5432 | ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/0, |
| 5433 | FoundDecl, Method); |
| 5434 | if (Exp.isInvalid()) |
Douglas Gregor | f2ae526 | 2011-01-20 00:18:04 +0000 | [diff] [blame] | 5435 | return true; |
Eli Friedman | 772fffa | 2009-12-09 04:53:56 +0000 | [diff] [blame] | 5436 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5437 | MemberExpr *ME = |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5438 | new (Context) MemberExpr(Exp.take(), /*IsArrow=*/false, Method, |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 5439 | SourceLocation(), Context.BoundMemberTy, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 5440 | VK_RValue, OK_Ordinary); |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5441 | if (HadMultipleCandidates) |
| 5442 | ME->setHadMultipleCandidates(true); |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 5443 | MarkMemberReferenced(ME); |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5444 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 5445 | QualType ResultType = Method->getResultType(); |
| 5446 | ExprValueKind VK = Expr::getValueKindForType(ResultType); |
| 5447 | ResultType = ResultType.getNonLValueExprType(Context); |
| 5448 | |
Douglas Gregor | 7edfb69 | 2009-11-23 12:27:39 +0000 | [diff] [blame] | 5449 | CXXMemberCallExpr *CE = |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 5450 | new (Context) CXXMemberCallExpr(Context, ME, MultiExprArg(), ResultType, VK, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5451 | Exp.get()->getLocEnd()); |
Fariborz Jahanian | b740023 | 2009-09-28 23:23:40 +0000 | [diff] [blame] | 5452 | return CE; |
| 5453 | } |
| 5454 | |
Sebastian Redl | 2e15622 | 2010-09-10 20:55:43 +0000 | [diff] [blame] | 5455 | ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand, |
| 5456 | SourceLocation RParen) { |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 5457 | CanThrowResult CanThrow = canThrow(Operand); |
Sebastian Redl | 2e15622 | 2010-09-10 20:55:43 +0000 | [diff] [blame] | 5458 | return Owned(new (Context) CXXNoexceptExpr(Context.BoolTy, Operand, |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 5459 | CanThrow, KeyLoc, RParen)); |
Sebastian Redl | 2e15622 | 2010-09-10 20:55:43 +0000 | [diff] [blame] | 5460 | } |
| 5461 | |
| 5462 | ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation, |
| 5463 | Expr *Operand, SourceLocation RParen) { |
| 5464 | return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen); |
Sebastian Redl | 02bc21a | 2010-09-10 20:55:37 +0000 | [diff] [blame] | 5465 | } |
| 5466 | |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5467 | static bool IsSpecialDiscardedValue(Expr *E) { |
| 5468 | // In C++11, discarded-value expressions of a certain form are special, |
| 5469 | // according to [expr]p10: |
| 5470 | // The lvalue-to-rvalue conversion (4.1) is applied only if the |
| 5471 | // expression is an lvalue of volatile-qualified type and it has |
| 5472 | // one of the following forms: |
| 5473 | E = E->IgnoreParens(); |
| 5474 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5475 | // - id-expression (5.1.1), |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5476 | if (isa<DeclRefExpr>(E)) |
| 5477 | return true; |
| 5478 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5479 | // - subscripting (5.2.1), |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5480 | if (isa<ArraySubscriptExpr>(E)) |
| 5481 | return true; |
| 5482 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5483 | // - class member access (5.2.5), |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5484 | if (isa<MemberExpr>(E)) |
| 5485 | return true; |
| 5486 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5487 | // - indirection (5.3.1), |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5488 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) |
| 5489 | if (UO->getOpcode() == UO_Deref) |
| 5490 | return true; |
| 5491 | |
| 5492 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5493 | // - pointer-to-member operation (5.5), |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5494 | if (BO->isPtrMemOp()) |
| 5495 | return true; |
| 5496 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5497 | // - comma expression (5.18) where the right operand is one of the above. |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5498 | if (BO->getOpcode() == BO_Comma) |
| 5499 | return IsSpecialDiscardedValue(BO->getRHS()); |
| 5500 | } |
| 5501 | |
Eli Friedman | 0218068 | 2012-05-24 22:36:31 +0000 | [diff] [blame] | 5502 | // - conditional expression (5.16) where both the second and the third |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5503 | // operands are one of the above, or |
| 5504 | if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) |
| 5505 | return IsSpecialDiscardedValue(CO->getTrueExpr()) && |
| 5506 | IsSpecialDiscardedValue(CO->getFalseExpr()); |
| 5507 | // The related edge case of "*x ?: *x". |
| 5508 | if (BinaryConditionalOperator *BCO = |
| 5509 | dyn_cast<BinaryConditionalOperator>(E)) { |
| 5510 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(BCO->getTrueExpr())) |
| 5511 | return IsSpecialDiscardedValue(OVE->getSourceExpr()) && |
| 5512 | IsSpecialDiscardedValue(BCO->getFalseExpr()); |
| 5513 | } |
| 5514 | |
| 5515 | // Objective-C++ extensions to the rule. |
| 5516 | if (isa<PseudoObjectExpr>(E) || isa<ObjCIvarRefExpr>(E)) |
| 5517 | return true; |
| 5518 | |
| 5519 | return false; |
| 5520 | } |
| 5521 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5522 | /// Perform the conversions required for an expression used in a |
| 5523 | /// context that ignores the result. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5524 | ExprResult Sema::IgnoredValueConversions(Expr *E) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 5525 | if (E->hasPlaceholderType()) { |
| 5526 | ExprResult result = CheckPlaceholderExpr(E); |
| 5527 | if (result.isInvalid()) return Owned(E); |
| 5528 | E = result.take(); |
| 5529 | } |
| 5530 | |
John McCall | a878cda | 2010-12-02 02:07:15 +0000 | [diff] [blame] | 5531 | // C99 6.3.2.1: |
| 5532 | // [Except in specific positions,] an lvalue that does not have |
| 5533 | // array type is converted to the value stored in the |
| 5534 | // designated object (and is no longer an lvalue). |
John McCall | e6d134b | 2011-06-27 21:24:11 +0000 | [diff] [blame] | 5535 | if (E->isRValue()) { |
| 5536 | // In C, function designators (i.e. expressions of function type) |
| 5537 | // are r-values, but we still want to do function-to-pointer decay |
| 5538 | // on them. This is both technically correct and convenient for |
| 5539 | // some clients. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5540 | if (!getLangOpts().CPlusPlus && E->getType()->isFunctionType()) |
John McCall | e6d134b | 2011-06-27 21:24:11 +0000 | [diff] [blame] | 5541 | return DefaultFunctionArrayConversion(E); |
| 5542 | |
| 5543 | return Owned(E); |
| 5544 | } |
John McCall | a878cda | 2010-12-02 02:07:15 +0000 | [diff] [blame] | 5545 | |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5546 | if (getLangOpts().CPlusPlus) { |
| 5547 | // The C++11 standard defines the notion of a discarded-value expression; |
| 5548 | // normally, we don't need to do anything to handle it, but if it is a |
| 5549 | // volatile lvalue with a special form, we perform an lvalue-to-rvalue |
| 5550 | // conversion. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5551 | if (getLangOpts().CPlusPlus11 && E->isGLValue() && |
Eli Friedman | e26073c | 2012-05-24 22:04:19 +0000 | [diff] [blame] | 5552 | E->getType().isVolatileQualified() && |
| 5553 | IsSpecialDiscardedValue(E)) { |
| 5554 | ExprResult Res = DefaultLvalueConversion(E); |
| 5555 | if (Res.isInvalid()) |
| 5556 | return Owned(E); |
| 5557 | E = Res.take(); |
| 5558 | } |
| 5559 | return Owned(E); |
| 5560 | } |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5561 | |
| 5562 | // GCC seems to also exclude expressions of incomplete enum type. |
| 5563 | if (const EnumType *T = E->getType()->getAs<EnumType>()) { |
| 5564 | if (!T->getDecl()->isComplete()) { |
| 5565 | // FIXME: stupid workaround for a codegen bug! |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5566 | E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).take(); |
| 5567 | return Owned(E); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5568 | } |
| 5569 | } |
| 5570 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5571 | ExprResult Res = DefaultFunctionArrayLvalueConversion(E); |
| 5572 | if (Res.isInvalid()) |
| 5573 | return Owned(E); |
| 5574 | E = Res.take(); |
| 5575 | |
John McCall | 85515d6 | 2010-12-04 12:29:11 +0000 | [diff] [blame] | 5576 | if (!E->getType()->isVoidType()) |
| 5577 | RequireCompleteType(E->getExprLoc(), E->getType(), |
| 5578 | diag::err_incomplete_type); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5579 | return Owned(E); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5580 | } |
| 5581 | |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 5582 | ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC, |
Fariborz Jahanian | ad48a50 | 2013-01-24 22:11:45 +0000 | [diff] [blame] | 5583 | bool DiscardedValue, |
| 5584 | bool IsConstexpr) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5585 | ExprResult FullExpr = Owned(FE); |
| 5586 | |
| 5587 | if (!FullExpr.get()) |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 5588 | return ExprError(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5589 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5590 | if (DiagnoseUnexpandedParameterPack(FullExpr.get())) |
Douglas Gregor | d093722 | 2010-12-13 22:49:22 +0000 | [diff] [blame] | 5591 | return ExprError(); |
| 5592 | |
Douglas Gregor | 1344e94 | 2013-03-07 22:57:58 +0000 | [diff] [blame] | 5593 | // Top-level expressions default to 'id' when we're in a debugger. |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 5594 | if (DiscardedValue && getLangOpts().DebuggerCastResultToId && |
Douglas Gregor | 1344e94 | 2013-03-07 22:57:58 +0000 | [diff] [blame] | 5595 | FullExpr.get()->getType() == Context.UnknownAnyTy) { |
Douglas Gregor | 5e3a8be | 2011-12-15 00:53:32 +0000 | [diff] [blame] | 5596 | FullExpr = forceUnknownAnyToType(FullExpr.take(), Context.getObjCIdType()); |
| 5597 | if (FullExpr.isInvalid()) |
| 5598 | return ExprError(); |
| 5599 | } |
Douglas Gregor | 353ee24 | 2011-03-07 02:05:23 +0000 | [diff] [blame] | 5600 | |
Richard Smith | 4195637 | 2013-01-14 22:39:08 +0000 | [diff] [blame] | 5601 | if (DiscardedValue) { |
| 5602 | FullExpr = CheckPlaceholderExpr(FullExpr.take()); |
| 5603 | if (FullExpr.isInvalid()) |
| 5604 | return ExprError(); |
| 5605 | |
| 5606 | FullExpr = IgnoredValueConversions(FullExpr.take()); |
| 5607 | if (FullExpr.isInvalid()) |
| 5608 | return ExprError(); |
| 5609 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5610 | |
Fariborz Jahanian | ad48a50 | 2013-01-24 22:11:45 +0000 | [diff] [blame] | 5611 | CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 5612 | return MaybeCreateExprWithCleanups(FullExpr); |
Anders Carlsson | 165a0a0 | 2009-05-17 18:41:29 +0000 | [diff] [blame] | 5613 | } |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 5614 | |
| 5615 | StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) { |
| 5616 | if (!FullStmt) return StmtError(); |
| 5617 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 5618 | return MaybeCreateStmtWithCleanups(FullStmt); |
Argyrios Kyrtzidis | bf8cafa | 2010-11-02 02:33:08 +0000 | [diff] [blame] | 5619 | } |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 5620 | |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5621 | Sema::IfExistsResult |
| 5622 | Sema::CheckMicrosoftIfExistsSymbol(Scope *S, |
| 5623 | CXXScopeSpec &SS, |
| 5624 | const DeclarationNameInfo &TargetNameInfo) { |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 5625 | DeclarationName TargetName = TargetNameInfo.getName(); |
| 5626 | if (!TargetName) |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 5627 | return IER_DoesNotExist; |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5628 | |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 5629 | // If the name itself is dependent, then the result is dependent. |
| 5630 | if (TargetName.isDependentName()) |
| 5631 | return IER_Dependent; |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5632 | |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 5633 | // Do the redeclaration lookup in the current scope. |
| 5634 | LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName, |
| 5635 | Sema::NotForRedeclaration); |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 5636 | LookupParsedName(R, S, &SS); |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 5637 | R.suppressDiagnostics(); |
Douglas Gregor | 3896fc5 | 2011-10-24 22:31:10 +0000 | [diff] [blame] | 5638 | |
| 5639 | switch (R.getResultKind()) { |
| 5640 | case LookupResult::Found: |
| 5641 | case LookupResult::FoundOverloaded: |
| 5642 | case LookupResult::FoundUnresolvedValue: |
| 5643 | case LookupResult::Ambiguous: |
| 5644 | return IER_Exists; |
| 5645 | |
| 5646 | case LookupResult::NotFound: |
| 5647 | return IER_DoesNotExist; |
| 5648 | |
| 5649 | case LookupResult::NotFoundInCurrentInstantiation: |
| 5650 | return IER_Dependent; |
| 5651 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 5652 | |
| 5653 | llvm_unreachable("Invalid LookupResult Kind!"); |
Francois Pichet | 1e86269 | 2011-05-06 20:48:22 +0000 | [diff] [blame] | 5654 | } |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5655 | |
Douglas Gregor | 65019ac | 2011-10-25 03:44:56 +0000 | [diff] [blame] | 5656 | Sema::IfExistsResult |
| 5657 | Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, |
| 5658 | bool IsIfExists, CXXScopeSpec &SS, |
| 5659 | UnqualifiedId &Name) { |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5660 | DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); |
Douglas Gregor | 65019ac | 2011-10-25 03:44:56 +0000 | [diff] [blame] | 5661 | |
| 5662 | // Check for unexpanded parameter packs. |
| 5663 | SmallVector<UnexpandedParameterPack, 4> Unexpanded; |
| 5664 | collectUnexpandedParameterPacks(SS, Unexpanded); |
| 5665 | collectUnexpandedParameterPacks(TargetNameInfo, Unexpanded); |
| 5666 | if (!Unexpanded.empty()) { |
| 5667 | DiagnoseUnexpandedParameterPacks(KeywordLoc, |
| 5668 | IsIfExists? UPPC_IfExists |
| 5669 | : UPPC_IfNotExists, |
| 5670 | Unexpanded); |
| 5671 | return IER_Error; |
| 5672 | } |
| 5673 | |
Douglas Gregor | ba0513d | 2011-10-25 01:33:02 +0000 | [diff] [blame] | 5674 | return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo); |
| 5675 | } |