Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1 | //===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Sebastian Redl | 5d3d41d | 2011-09-24 17:47:39 +0000 | [diff] [blame] | 10 | // This file implements semantic analysis for initializers. |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 11 | // |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 14 | #include "clang/Sema/Initialization.h" |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | 2078bb9 | 2009-05-27 16:10:08 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprCXX.h" |
Chris Lattner | 79e079d | 2009-02-24 23:10:27 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 19 | #include "clang/AST/TypeLoc.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Sema/Designator.h" |
| 22 | #include "clang/Sema/Lookup.h" |
| 23 | #include "clang/Sema/SemaInternal.h" |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/APInt.h" |
Benjamin Kramer | 8fe83e1 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 28 | #include <map> |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 29 | using namespace clang; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 30 | |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 31 | //===----------------------------------------------------------------------===// |
| 32 | // Sema Initialization Checking |
| 33 | //===----------------------------------------------------------------------===// |
| 34 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 35 | static Expr *IsStringInit(Expr *Init, const ArrayType *AT, |
| 36 | ASTContext &Context) { |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 37 | if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT)) |
| 38 | return 0; |
| 39 | |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 40 | // See if this is a string literal or @encode. |
| 41 | Init = Init->IgnoreParens(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 42 | |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 43 | // Handle @encode, which is a narrow string. |
| 44 | if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType()) |
| 45 | return Init; |
| 46 | |
| 47 | // Otherwise we can only handle string literals. |
| 48 | StringLiteral *SL = dyn_cast<StringLiteral>(Init); |
Chris Lattner | 220b636 | 2009-02-26 23:42:47 +0000 | [diff] [blame] | 49 | if (SL == 0) return 0; |
Eli Friedman | bb6415c | 2009-05-31 10:54:53 +0000 | [diff] [blame] | 50 | |
| 51 | QualType ElemTy = Context.getCanonicalType(AT->getElementType()); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 52 | |
| 53 | switch (SL->getKind()) { |
| 54 | case StringLiteral::Ascii: |
| 55 | case StringLiteral::UTF8: |
| 56 | // char array can be initialized with a narrow string. |
| 57 | // Only allow char x[] = "foo"; not char x[] = L"foo"; |
Eli Friedman | bb6415c | 2009-05-31 10:54:53 +0000 | [diff] [blame] | 58 | return ElemTy->isCharType() ? Init : 0; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 59 | case StringLiteral::UTF16: |
| 60 | return ElemTy->isChar16Type() ? Init : 0; |
| 61 | case StringLiteral::UTF32: |
| 62 | return ElemTy->isChar32Type() ? Init : 0; |
| 63 | case StringLiteral::Wide: |
| 64 | // wchar_t array can be initialized with a wide string: C99 6.7.8p15 (with |
| 65 | // correction from DR343): "An array with element type compatible with a |
| 66 | // qualified or unqualified version of wchar_t may be initialized by a wide |
| 67 | // string literal, optionally enclosed in braces." |
Hans Wennborg | 15f92ba | 2013-05-10 10:08:40 +0000 | [diff] [blame] | 68 | if (Context.typesAreCompatible(Context.getWideCharType(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 69 | ElemTy.getUnqualifiedType())) |
| 70 | return Init; |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 71 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 72 | return 0; |
| 73 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 74 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 75 | llvm_unreachable("missed a StringLiteral kind?"); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 76 | } |
| 77 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 78 | static Expr *IsStringInit(Expr *init, QualType declType, ASTContext &Context) { |
| 79 | const ArrayType *arrayType = Context.getAsArrayType(declType); |
| 80 | if (!arrayType) return 0; |
| 81 | |
| 82 | return IsStringInit(init, arrayType, Context); |
| 83 | } |
| 84 | |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 85 | /// Update the type of a string literal, including any surrounding parentheses, |
| 86 | /// to match the type of the object which it is initializing. |
| 87 | static void updateStringLiteralType(Expr *E, QualType Ty) { |
Richard Smith | 27f9cf3 | 2013-05-06 00:35:47 +0000 | [diff] [blame] | 88 | while (true) { |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 89 | E->setType(Ty); |
Richard Smith | 27f9cf3 | 2013-05-06 00:35:47 +0000 | [diff] [blame] | 90 | if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E)) |
| 91 | break; |
| 92 | else if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) |
| 93 | E = PE->getSubExpr(); |
| 94 | else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) |
| 95 | E = UO->getSubExpr(); |
| 96 | else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) |
| 97 | E = GSE->getResultExpr(); |
| 98 | else |
| 99 | llvm_unreachable("unexpected expr in string literal init"); |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 100 | } |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 101 | } |
| 102 | |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 103 | static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT, |
| 104 | Sema &S) { |
Chris Lattner | 79e079d | 2009-02-24 23:10:27 +0000 | [diff] [blame] | 105 | // Get the length of the string as parsed. |
| 106 | uint64_t StrLength = |
| 107 | cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue(); |
| 108 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 109 | |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 110 | if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 111 | // C99 6.7.8p14. We have an array of character type with unknown size |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 112 | // being initialized to a string literal. |
Benjamin Kramer | 65263b4 | 2012-08-04 17:00:46 +0000 | [diff] [blame] | 113 | llvm::APInt ConstVal(32, StrLength); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 114 | // Return a new array type (C99 6.7.8p22). |
John McCall | 46a617a | 2009-10-16 00:14:28 +0000 | [diff] [blame] | 115 | DeclT = S.Context.getConstantArrayType(IAT->getElementType(), |
| 116 | ConstVal, |
| 117 | ArrayType::Normal, 0); |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 118 | updateStringLiteralType(Str, DeclT); |
Chris Lattner | 19da8cd | 2009-02-24 23:01:39 +0000 | [diff] [blame] | 119 | return; |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 120 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 121 | |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 122 | const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 123 | |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 124 | // We have an array of character type with known size. However, |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 125 | // the size may be smaller or larger than the string we are initializing. |
| 126 | // FIXME: Avoid truncation for 64-bit length strings. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 127 | if (S.getLangOpts().CPlusPlus) { |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 128 | if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) { |
Anders Carlsson | b8fc45f | 2011-04-14 00:41:11 +0000 | [diff] [blame] | 129 | // For Pascal strings it's OK to strip off the terminating null character, |
| 130 | // so the example below is valid: |
| 131 | // |
| 132 | // unsigned char a[2] = "\pa"; |
| 133 | if (SL->isPascal()) |
| 134 | StrLength--; |
| 135 | } |
| 136 | |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 137 | // [dcl.init.string]p2 |
| 138 | if (StrLength > CAT->getSize().getZExtValue()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 139 | S.Diag(Str->getLocStart(), |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 140 | diag::err_initializer_string_for_char_array_too_long) |
| 141 | << Str->getSourceRange(); |
| 142 | } else { |
| 143 | // C99 6.7.8p14. |
| 144 | if (StrLength-1 > CAT->getSize().getZExtValue()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 145 | S.Diag(Str->getLocStart(), |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 146 | diag::warn_initializer_string_for_char_array_too_long) |
| 147 | << Str->getSourceRange(); |
| 148 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 149 | |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 150 | // Set the type to the actual size that we are initializing. If we have |
| 151 | // something like: |
| 152 | // char x[1] = "foo"; |
| 153 | // then this will set the string literal's type to char[1]. |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 154 | updateStringLiteralType(Str, DeclT); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 157 | //===----------------------------------------------------------------------===// |
| 158 | // Semantic checking for initializer lists. |
| 159 | //===----------------------------------------------------------------------===// |
| 160 | |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 161 | /// @brief Semantic checking for initializer lists. |
| 162 | /// |
| 163 | /// The InitListChecker class contains a set of routines that each |
| 164 | /// handle the initialization of a certain kind of entity, e.g., |
| 165 | /// arrays, vectors, struct/union types, scalars, etc. The |
| 166 | /// InitListChecker itself performs a recursive walk of the subobject |
| 167 | /// structure of the type to be initialized, while stepping through |
| 168 | /// the initializer list one element at a time. The IList and Index |
| 169 | /// parameters to each of the Check* routines contain the active |
| 170 | /// (syntactic) initializer list and the index into that initializer |
| 171 | /// list that represents the current initializer. Each routine is |
| 172 | /// responsible for moving that Index forward as it consumes elements. |
| 173 | /// |
| 174 | /// Each Check* routine also has a StructuredList/StructuredIndex |
Abramo Bagnara | 63e7d25 | 2011-01-27 19:55:10 +0000 | [diff] [blame] | 175 | /// arguments, which contains the current "structured" (semantic) |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 176 | /// initializer list and the index into that initializer list where we |
| 177 | /// are copying initializers as we map them over to the semantic |
| 178 | /// list. Once we have completed our recursive walk of the subobject |
| 179 | /// structure, we will have constructed a full semantic initializer |
| 180 | /// list. |
| 181 | /// |
| 182 | /// C99 designators cause changes in the initializer list traversal, |
| 183 | /// because they make the initialization "jump" into a specific |
| 184 | /// subobject and then continue the initialization from that |
| 185 | /// point. CheckDesignatedInitializer() recursively steps into the |
| 186 | /// designated subobject and manages backing out the recursion to |
| 187 | /// initialize the subobjects after the one designated. |
Chris Lattner | 8b419b9 | 2009-02-24 22:48:58 +0000 | [diff] [blame] | 188 | namespace { |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 189 | class InitListChecker { |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 190 | Sema &SemaRef; |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 191 | bool hadError; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 192 | bool VerifyOnly; // no diagnostics, no structure building |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 193 | bool AllowBraceElision; |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 194 | llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic; |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 195 | InitListExpr *FullyStructuredList; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 196 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 197 | void CheckImplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 198 | InitListExpr *ParentIList, QualType T, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 199 | unsigned &Index, InitListExpr *StructuredList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 200 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 201 | void CheckExplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 202 | InitListExpr *IList, QualType &T, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 203 | unsigned &Index, InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 204 | unsigned &StructuredIndex, |
| 205 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 206 | void CheckListElementTypes(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 207 | InitListExpr *IList, QualType &DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 208 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 209 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 210 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 211 | unsigned &StructuredIndex, |
| 212 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 213 | void CheckSubElementType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 214 | InitListExpr *IList, QualType ElemType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 215 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 216 | InitListExpr *StructuredList, |
| 217 | unsigned &StructuredIndex); |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 218 | void CheckComplexType(const InitializedEntity &Entity, |
| 219 | InitListExpr *IList, QualType DeclType, |
| 220 | unsigned &Index, |
| 221 | InitListExpr *StructuredList, |
| 222 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 223 | void CheckScalarType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 224 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 225 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 226 | InitListExpr *StructuredList, |
| 227 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 228 | void CheckReferenceType(const InitializedEntity &Entity, |
| 229 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 230 | unsigned &Index, |
| 231 | InitListExpr *StructuredList, |
| 232 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 233 | void CheckVectorType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 234 | InitListExpr *IList, QualType DeclType, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 235 | InitListExpr *StructuredList, |
| 236 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 237 | void CheckStructUnionTypes(const InitializedEntity &Entity, |
Anders Carlsson | 2bbae5d | 2010-01-23 20:20:40 +0000 | [diff] [blame] | 238 | InitListExpr *IList, QualType DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 239 | RecordDecl::field_iterator Field, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 240 | bool SubobjectIsDesignatorContext, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 241 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 242 | unsigned &StructuredIndex, |
| 243 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 244 | void CheckArrayType(const InitializedEntity &Entity, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 245 | InitListExpr *IList, QualType &DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 246 | llvm::APSInt elementIndex, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 247 | bool SubobjectIsDesignatorContext, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 248 | InitListExpr *StructuredList, |
| 249 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 250 | bool CheckDesignatedInitializer(const InitializedEntity &Entity, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 251 | InitListExpr *IList, DesignatedInitExpr *DIE, |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 252 | unsigned DesigIdx, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 253 | QualType &CurrentObjectType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 254 | RecordDecl::field_iterator *NextField, |
| 255 | llvm::APSInt *NextElementIndex, |
| 256 | unsigned &Index, |
| 257 | InitListExpr *StructuredList, |
| 258 | unsigned &StructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 259 | bool FinishSubobjectInit, |
| 260 | bool TopLevelObject); |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 261 | InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index, |
| 262 | QualType CurrentObjectType, |
| 263 | InitListExpr *StructuredList, |
| 264 | unsigned StructuredIndex, |
| 265 | SourceRange InitRange); |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 266 | void UpdateStructuredListElement(InitListExpr *StructuredList, |
| 267 | unsigned &StructuredIndex, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 268 | Expr *expr); |
| 269 | int numArrayElements(QualType DeclType); |
| 270 | int numStructUnionElements(QualType DeclType); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 271 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 272 | void FillInValueInitForField(unsigned Init, FieldDecl *Field, |
| 273 | const InitializedEntity &ParentEntity, |
| 274 | InitListExpr *ILE, bool &RequiresSecondPass); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 275 | void FillInValueInitializations(const InitializedEntity &Entity, |
| 276 | InitListExpr *ILE, bool &RequiresSecondPass); |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 277 | bool CheckFlexibleArrayInit(const InitializedEntity &Entity, |
| 278 | Expr *InitExpr, FieldDecl *Field, |
| 279 | bool TopLevelObject); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 280 | void CheckValueInitializable(const InitializedEntity &Entity); |
| 281 | |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 282 | public: |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 283 | InitListChecker(Sema &S, const InitializedEntity &Entity, |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 284 | InitListExpr *IL, QualType &T, bool VerifyOnly, |
| 285 | bool AllowBraceElision); |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 286 | bool HadError() { return hadError; } |
| 287 | |
| 288 | // @brief Retrieves the fully-structured initializer list used for |
| 289 | // semantic analysis and code generation. |
| 290 | InitListExpr *getFullyStructuredList() const { return FullyStructuredList; } |
| 291 | }; |
Chris Lattner | 8b419b9 | 2009-02-24 22:48:58 +0000 | [diff] [blame] | 292 | } // end anonymous namespace |
Chris Lattner | 68355a5 | 2009-01-29 05:10:57 +0000 | [diff] [blame] | 293 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 294 | void InitListChecker::CheckValueInitializable(const InitializedEntity &Entity) { |
| 295 | assert(VerifyOnly && |
| 296 | "CheckValueInitializable is only inteded for verification mode."); |
| 297 | |
| 298 | SourceLocation Loc; |
| 299 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 300 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 301 | InitializationSequence InitSeq(SemaRef, Entity, Kind, None); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 302 | if (InitSeq.Failed()) |
| 303 | hadError = true; |
| 304 | } |
| 305 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 306 | void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field, |
| 307 | const InitializedEntity &ParentEntity, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 308 | InitListExpr *ILE, |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 309 | bool &RequiresSecondPass) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 310 | SourceLocation Loc = ILE->getLocStart(); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 311 | unsigned NumInits = ILE->getNumInits(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 312 | InitializedEntity MemberEntity |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 313 | = InitializedEntity::InitializeMember(Field, &ParentEntity); |
| 314 | if (Init >= NumInits || !ILE->getInit(Init)) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 315 | // If there's no explicit initializer but we have a default initializer, use |
| 316 | // that. This only happens in C++1y, since classes with default |
| 317 | // initializers are not aggregates in C++11. |
| 318 | if (Field->hasInClassInitializer()) { |
| 319 | Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context, |
| 320 | ILE->getRBraceLoc(), Field); |
| 321 | if (Init < NumInits) |
| 322 | ILE->setInit(Init, DIE); |
| 323 | else { |
| 324 | ILE->updateInit(SemaRef.Context, Init, DIE); |
| 325 | RequiresSecondPass = true; |
| 326 | } |
| 327 | return; |
| 328 | } |
| 329 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 330 | // FIXME: We probably don't need to handle references |
| 331 | // specially here, since value-initialization of references is |
| 332 | // handled in InitializationSequence. |
| 333 | if (Field->getType()->isReferenceType()) { |
| 334 | // C++ [dcl.init.aggr]p9: |
| 335 | // If an incomplete or empty initializer-list leaves a |
| 336 | // member of reference type uninitialized, the program is |
| 337 | // ill-formed. |
| 338 | SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized) |
| 339 | << Field->getType() |
| 340 | << ILE->getSyntacticForm()->getSourceRange(); |
| 341 | SemaRef.Diag(Field->getLocation(), |
| 342 | diag::note_uninit_reference_member); |
| 343 | hadError = true; |
| 344 | return; |
| 345 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 346 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 347 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 348 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 349 | InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 350 | if (!InitSeq) { |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 351 | InitSeq.Diagnose(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 352 | hadError = true; |
| 353 | return; |
| 354 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 355 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 356 | ExprResult MemberInit |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 357 | = InitSeq.Perform(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 358 | if (MemberInit.isInvalid()) { |
| 359 | hadError = true; |
| 360 | return; |
| 361 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 362 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 363 | if (hadError) { |
| 364 | // Do nothing |
| 365 | } else if (Init < NumInits) { |
| 366 | ILE->setInit(Init, MemberInit.takeAs<Expr>()); |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 367 | } else if (InitSeq.isConstructorInitialization()) { |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 368 | // Value-initialization requires a constructor call, so |
| 369 | // extend the initializer list to include the constructor |
| 370 | // call and make a note that we'll need to take another pass |
| 371 | // through the initializer list. |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 372 | ILE->updateInit(SemaRef.Context, Init, MemberInit.takeAs<Expr>()); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 373 | RequiresSecondPass = true; |
| 374 | } |
| 375 | } else if (InitListExpr *InnerILE |
| 376 | = dyn_cast<InitListExpr>(ILE->getInit(Init))) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 377 | FillInValueInitializations(MemberEntity, InnerILE, |
| 378 | RequiresSecondPass); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 379 | } |
| 380 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 381 | /// Recursively replaces NULL values within the given initializer list |
| 382 | /// with expressions that perform value-initialization of the |
| 383 | /// appropriate type. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 384 | void |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 385 | InitListChecker::FillInValueInitializations(const InitializedEntity &Entity, |
| 386 | InitListExpr *ILE, |
| 387 | bool &RequiresSecondPass) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 388 | assert((ILE->getType() != SemaRef.Context.VoidTy) && |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 389 | "Should not have void type"); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 390 | SourceLocation Loc = ILE->getLocStart(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 391 | if (ILE->getSyntacticForm()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 392 | Loc = ILE->getSyntacticForm()->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 393 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 394 | if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 395 | const RecordDecl *RDecl = RType->getDecl(); |
| 396 | if (RDecl->isUnion() && ILE->getInitializedFieldInUnion()) |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 397 | FillInValueInitForField(0, ILE->getInitializedFieldInUnion(), |
| 398 | Entity, ILE, RequiresSecondPass); |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 399 | else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) && |
| 400 | cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) { |
| 401 | for (RecordDecl::field_iterator Field = RDecl->field_begin(), |
| 402 | FieldEnd = RDecl->field_end(); |
| 403 | Field != FieldEnd; ++Field) { |
| 404 | if (Field->hasInClassInitializer()) { |
| 405 | FillInValueInitForField(0, *Field, Entity, ILE, RequiresSecondPass); |
| 406 | break; |
| 407 | } |
| 408 | } |
| 409 | } else { |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 410 | unsigned Init = 0; |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 411 | for (RecordDecl::field_iterator Field = RDecl->field_begin(), |
| 412 | FieldEnd = RDecl->field_end(); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 413 | Field != FieldEnd; ++Field) { |
| 414 | if (Field->isUnnamedBitfield()) |
| 415 | continue; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 416 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 417 | if (hadError) |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 418 | return; |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 419 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 420 | FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 421 | if (hadError) |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 422 | return; |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 423 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 424 | ++Init; |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 425 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 426 | // Only look at the first initialization of a union. |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 427 | if (RDecl->isUnion()) |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 428 | break; |
| 429 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 434 | |
| 435 | QualType ElementType; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 436 | |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 437 | InitializedEntity ElementEntity = Entity; |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 438 | unsigned NumInits = ILE->getNumInits(); |
| 439 | unsigned NumElements = NumInits; |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 440 | if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 441 | ElementType = AType->getElementType(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 442 | if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) |
| 443 | NumElements = CAType->getSize().getZExtValue(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 444 | ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 445 | 0, Entity); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 446 | } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 447 | ElementType = VType->getElementType(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 448 | NumElements = VType->getNumElements(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 449 | ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 450 | 0, Entity); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 451 | } else |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 452 | ElementType = ILE->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 454 | |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 455 | for (unsigned Init = 0; Init != NumElements; ++Init) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 456 | if (hadError) |
| 457 | return; |
| 458 | |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 459 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement || |
| 460 | ElementEntity.getKind() == InitializedEntity::EK_VectorElement) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 461 | ElementEntity.setElementIndex(Init); |
| 462 | |
Argyrios Kyrtzidis | 21f77cd | 2011-10-21 23:02:22 +0000 | [diff] [blame] | 463 | Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : 0); |
| 464 | if (!InitExpr && !ILE->hasArrayFiller()) { |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 465 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 466 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 467 | InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 468 | if (!InitSeq) { |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 469 | InitSeq.Diagnose(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 470 | hadError = true; |
| 471 | return; |
| 472 | } |
| 473 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 474 | ExprResult ElementInit |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 475 | = InitSeq.Perform(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 476 | if (ElementInit.isInvalid()) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 477 | hadError = true; |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 478 | return; |
| 479 | } |
| 480 | |
| 481 | if (hadError) { |
| 482 | // Do nothing |
| 483 | } else if (Init < NumInits) { |
Argyrios Kyrtzidis | 3e8dc2a | 2011-04-21 20:03:38 +0000 | [diff] [blame] | 484 | // For arrays, just set the expression used for value-initialization |
| 485 | // of the "holes" in the array. |
| 486 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) |
| 487 | ILE->setArrayFiller(ElementInit.takeAs<Expr>()); |
| 488 | else |
| 489 | ILE->setInit(Init, ElementInit.takeAs<Expr>()); |
Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 490 | } else { |
| 491 | // For arrays, just set the expression used for value-initialization |
| 492 | // of the rest of elements and exit. |
| 493 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) { |
| 494 | ILE->setArrayFiller(ElementInit.takeAs<Expr>()); |
| 495 | return; |
| 496 | } |
| 497 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 498 | if (InitSeq.isConstructorInitialization()) { |
Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 499 | // Value-initialization requires a constructor call, so |
| 500 | // extend the initializer list to include the constructor |
| 501 | // call and make a note that we'll need to take another pass |
| 502 | // through the initializer list. |
| 503 | ILE->updateInit(SemaRef.Context, Init, ElementInit.takeAs<Expr>()); |
| 504 | RequiresSecondPass = true; |
| 505 | } |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 506 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 507 | } else if (InitListExpr *InnerILE |
Argyrios Kyrtzidis | 21f77cd | 2011-10-21 23:02:22 +0000 | [diff] [blame] | 508 | = dyn_cast_or_null<InitListExpr>(InitExpr)) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 509 | FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | |
Chris Lattner | 68355a5 | 2009-01-29 05:10:57 +0000 | [diff] [blame] | 513 | |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 514 | InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 515 | InitListExpr *IL, QualType &T, |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 516 | bool VerifyOnly, bool AllowBraceElision) |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 517 | : SemaRef(S), VerifyOnly(VerifyOnly), AllowBraceElision(AllowBraceElision) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 518 | hadError = false; |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 519 | |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 520 | unsigned newIndex = 0; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 521 | unsigned newStructuredIndex = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 522 | FullyStructuredList |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 523 | = getStructuredSubobjectInit(IL, newIndex, T, 0, 0, IL->getSourceRange()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 524 | CheckExplicitInitList(Entity, IL, T, newIndex, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 525 | FullyStructuredList, newStructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 526 | /*TopLevelObject=*/true); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 527 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 528 | if (!hadError && !VerifyOnly) { |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 529 | bool RequiresSecondPass = false; |
| 530 | FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 531 | if (RequiresSecondPass && !hadError) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 532 | FillInValueInitializations(Entity, FullyStructuredList, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 533 | RequiresSecondPass); |
| 534 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | int InitListChecker::numArrayElements(QualType DeclType) { |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 538 | // FIXME: use a proper constant |
| 539 | int maxElements = 0x7FFFFFFF; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 540 | if (const ConstantArrayType *CAT = |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 541 | SemaRef.Context.getAsConstantArrayType(DeclType)) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 542 | maxElements = static_cast<int>(CAT->getSize().getZExtValue()); |
| 543 | } |
| 544 | return maxElements; |
| 545 | } |
| 546 | |
| 547 | int InitListChecker::numStructUnionElements(QualType DeclType) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 548 | RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 549 | int InitializableMembers = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 550 | for (RecordDecl::field_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 551 | Field = structDecl->field_begin(), |
| 552 | FieldEnd = structDecl->field_end(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 553 | Field != FieldEnd; ++Field) { |
Douglas Gregor | d61db33 | 2011-10-10 17:22:13 +0000 | [diff] [blame] | 554 | if (!Field->isUnnamedBitfield()) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 555 | ++InitializableMembers; |
| 556 | } |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 557 | if (structDecl->isUnion()) |
Eli Friedman | f84eda3 | 2008-05-25 14:03:31 +0000 | [diff] [blame] | 558 | return std::min(InitializableMembers, 1); |
| 559 | return InitializableMembers - structDecl->hasFlexibleArrayMember(); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 562 | void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 563 | InitListExpr *ParentIList, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 564 | QualType T, unsigned &Index, |
| 565 | InitListExpr *StructuredList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 566 | unsigned &StructuredIndex) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 567 | int maxElements = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 568 | |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 569 | if (T->isArrayType()) |
| 570 | maxElements = numArrayElements(T); |
Douglas Gregor | fb87b89 | 2010-04-26 21:31:17 +0000 | [diff] [blame] | 571 | else if (T->isRecordType()) |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 572 | maxElements = numStructUnionElements(T); |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 573 | else if (T->isVectorType()) |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 574 | maxElements = T->getAs<VectorType>()->getNumElements(); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 575 | else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 576 | llvm_unreachable("CheckImplicitInitList(): Illegal type"); |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 577 | |
Eli Friedman | 402256f | 2008-05-25 13:49:22 +0000 | [diff] [blame] | 578 | if (maxElements == 0) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 579 | if (!VerifyOnly) |
| 580 | SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(), |
| 581 | diag::err_implicit_empty_initializer); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 582 | ++Index; |
Eli Friedman | 402256f | 2008-05-25 13:49:22 +0000 | [diff] [blame] | 583 | hadError = true; |
| 584 | return; |
| 585 | } |
| 586 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 587 | // Build a structured initializer list corresponding to this subobject. |
| 588 | InitListExpr *StructuredSubobjectInitList |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 589 | = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList, |
| 590 | StructuredIndex, |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 591 | SourceRange(ParentIList->getInit(Index)->getLocStart(), |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 592 | ParentIList->getSourceRange().getEnd())); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 593 | unsigned StructuredSubobjectInitIndex = 0; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 594 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 595 | // Check the element types and build the structural subobject. |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 596 | unsigned StartIndex = Index; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 597 | CheckListElementTypes(Entity, ParentIList, T, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 598 | /*SubobjectIsDesignatorContext=*/false, Index, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 599 | StructuredSubobjectInitList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 600 | StructuredSubobjectInitIndex); |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 601 | |
| 602 | if (VerifyOnly) { |
| 603 | if (!AllowBraceElision && (T->isArrayType() || T->isRecordType())) |
| 604 | hadError = true; |
| 605 | } else { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 606 | StructuredSubobjectInitList->setType(T); |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 607 | |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 608 | unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 609 | // Update the structured sub-object initializer so that it's ending |
| 610 | // range corresponds with the end of the last initializer it used. |
| 611 | if (EndIndex < ParentIList->getNumInits()) { |
| 612 | SourceLocation EndLoc |
| 613 | = ParentIList->getInit(EndIndex)->getSourceRange().getEnd(); |
| 614 | StructuredSubobjectInitList->setRBraceLoc(EndLoc); |
| 615 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 616 | |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 617 | // Complain about missing braces. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 618 | if (T->isArrayType() || T->isRecordType()) { |
| 619 | SemaRef.Diag(StructuredSubobjectInitList->getLocStart(), |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 620 | AllowBraceElision ? diag::warn_missing_braces : |
| 621 | diag::err_missing_braces) |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 622 | << StructuredSubobjectInitList->getSourceRange() |
| 623 | << FixItHint::CreateInsertion( |
| 624 | StructuredSubobjectInitList->getLocStart(), "{") |
| 625 | << FixItHint::CreateInsertion( |
| 626 | SemaRef.PP.getLocForEndOfToken( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 627 | StructuredSubobjectInitList->getLocEnd()), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 628 | "}"); |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 629 | if (!AllowBraceElision) |
| 630 | hadError = true; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 631 | } |
Tanya Lattner | 1e1d396 | 2010-03-07 04:17:15 +0000 | [diff] [blame] | 632 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 635 | void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 636 | InitListExpr *IList, QualType &T, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 637 | unsigned &Index, |
| 638 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 639 | unsigned &StructuredIndex, |
| 640 | bool TopLevelObject) { |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 641 | assert(IList->isExplicit() && "Illegal Implicit InitListExpr"); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 642 | if (!VerifyOnly) { |
| 643 | SyntacticToSemantic[IList] = StructuredList; |
| 644 | StructuredList->setSyntacticForm(IList); |
| 645 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 646 | CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 647 | Index, StructuredList, StructuredIndex, TopLevelObject); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 648 | if (!VerifyOnly) { |
Eli Friedman | 5c89c39 | 2012-02-23 02:25:10 +0000 | [diff] [blame] | 649 | QualType ExprTy = T; |
| 650 | if (!ExprTy->isArrayType()) |
| 651 | ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 652 | IList->setType(ExprTy); |
| 653 | StructuredList->setType(ExprTy); |
| 654 | } |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 655 | if (hadError) |
| 656 | return; |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 657 | |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 658 | if (Index < IList->getNumInits()) { |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 659 | // We have leftover initializers |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 660 | if (VerifyOnly) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 661 | if (SemaRef.getLangOpts().CPlusPlus || |
| 662 | (SemaRef.getLangOpts().OpenCL && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 663 | IList->getType()->isVectorType())) { |
| 664 | hadError = true; |
| 665 | } |
| 666 | return; |
| 667 | } |
| 668 | |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 669 | if (StructuredIndex == 1 && |
| 670 | IsStringInit(StructuredList->getInit(0), T, SemaRef.Context)) { |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 671 | unsigned DK = diag::warn_excess_initializers_in_char_array_initializer; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 672 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 673 | DK = diag::err_excess_initializers_in_char_array_initializer; |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 674 | hadError = true; |
| 675 | } |
Eli Friedman | bb504d3 | 2008-05-19 20:12:18 +0000 | [diff] [blame] | 676 | // Special-case |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 677 | SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 678 | << IList->getInit(Index)->getSourceRange(); |
Eli Friedman | d8dc210 | 2008-05-20 05:25:56 +0000 | [diff] [blame] | 679 | } else if (!T->isIncompleteType()) { |
Douglas Gregor | b574e56 | 2009-01-30 22:26:29 +0000 | [diff] [blame] | 680 | // Don't complain for incomplete types, since we'll get an error |
| 681 | // elsewhere |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 682 | QualType CurrentObjectType = StructuredList->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 683 | int initKind = |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 684 | CurrentObjectType->isArrayType()? 0 : |
| 685 | CurrentObjectType->isVectorType()? 1 : |
| 686 | CurrentObjectType->isScalarType()? 2 : |
| 687 | CurrentObjectType->isUnionType()? 3 : |
| 688 | 4; |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 689 | |
| 690 | unsigned DK = diag::warn_excess_initializers; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 691 | if (SemaRef.getLangOpts().CPlusPlus) { |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 692 | DK = diag::err_excess_initializers; |
| 693 | hadError = true; |
| 694 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 695 | if (SemaRef.getLangOpts().OpenCL && initKind == 1) { |
Nate Begeman | 0863452 | 2009-07-07 21:53:06 +0000 | [diff] [blame] | 696 | DK = diag::err_excess_initializers; |
| 697 | hadError = true; |
| 698 | } |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 699 | |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 700 | SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 701 | << initKind << IList->getInit(Index)->getSourceRange(); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 702 | } |
| 703 | } |
Eli Friedman | cda25a9 | 2008-05-19 20:20:43 +0000 | [diff] [blame] | 704 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 705 | if (!VerifyOnly && T->isScalarType() && IList->getNumInits() == 1 && |
| 706 | !TopLevelObject) |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 707 | SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init) |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 708 | << IList->getSourceRange() |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 709 | << FixItHint::CreateRemoval(IList->getLocStart()) |
| 710 | << FixItHint::CreateRemoval(IList->getLocEnd()); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 711 | } |
| 712 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 713 | void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 714 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 715 | QualType &DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 716 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 717 | unsigned &Index, |
| 718 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 719 | unsigned &StructuredIndex, |
| 720 | bool TopLevelObject) { |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 721 | if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) { |
| 722 | // Explicitly braced initializer for complex type can be real+imaginary |
| 723 | // parts. |
| 724 | CheckComplexType(Entity, IList, DeclType, Index, |
| 725 | StructuredList, StructuredIndex); |
| 726 | } else if (DeclType->isScalarType()) { |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 727 | CheckScalarType(Entity, IList, DeclType, Index, |
| 728 | StructuredList, StructuredIndex); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 729 | } else if (DeclType->isVectorType()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 730 | CheckVectorType(Entity, IList, DeclType, Index, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 731 | StructuredList, StructuredIndex); |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 732 | } else if (DeclType->isRecordType()) { |
| 733 | assert(DeclType->isAggregateType() && |
| 734 | "non-aggregate records should be handed in CheckSubElementType"); |
| 735 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
| 736 | CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(), |
| 737 | SubobjectIsDesignatorContext, Index, |
| 738 | StructuredList, StructuredIndex, |
| 739 | TopLevelObject); |
| 740 | } else if (DeclType->isArrayType()) { |
| 741 | llvm::APSInt Zero( |
| 742 | SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()), |
| 743 | false); |
| 744 | CheckArrayType(Entity, IList, DeclType, Zero, |
| 745 | SubobjectIsDesignatorContext, Index, |
| 746 | StructuredList, StructuredIndex); |
Steve Naroff | 6135352 | 2008-08-10 16:05:48 +0000 | [diff] [blame] | 747 | } else if (DeclType->isVoidType() || DeclType->isFunctionType()) { |
| 748 | // This type is invalid, issue a diagnostic. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 749 | ++Index; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 750 | if (!VerifyOnly) |
| 751 | SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type) |
| 752 | << DeclType; |
Eli Friedman | d8dc210 | 2008-05-20 05:25:56 +0000 | [diff] [blame] | 753 | hadError = true; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 754 | } else if (DeclType->isReferenceType()) { |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 755 | CheckReferenceType(Entity, IList, DeclType, Index, |
| 756 | StructuredList, StructuredIndex); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 757 | } else if (DeclType->isObjCObjectType()) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 758 | if (!VerifyOnly) |
| 759 | SemaRef.Diag(IList->getLocStart(), diag::err_init_objc_class) |
| 760 | << DeclType; |
Douglas Gregor | 4d9e738 | 2010-05-03 18:24:37 +0000 | [diff] [blame] | 761 | hadError = true; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 762 | } else { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 763 | if (!VerifyOnly) |
| 764 | SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type) |
| 765 | << DeclType; |
Douglas Gregor | 4d9e738 | 2010-05-03 18:24:37 +0000 | [diff] [blame] | 766 | hadError = true; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 770 | void InitListChecker::CheckSubElementType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 771 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 772 | QualType ElemType, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 773 | unsigned &Index, |
| 774 | InitListExpr *StructuredList, |
| 775 | unsigned &StructuredIndex) { |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 776 | Expr *expr = IList->getInit(Index); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 777 | if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) { |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 778 | if (!ElemType->isRecordType() || ElemType->isAggregateType()) { |
| 779 | unsigned newIndex = 0; |
| 780 | unsigned newStructuredIndex = 0; |
| 781 | InitListExpr *newStructuredList |
| 782 | = getStructuredSubobjectInit(IList, Index, ElemType, |
| 783 | StructuredList, StructuredIndex, |
| 784 | SubInitList->getSourceRange()); |
| 785 | CheckExplicitInitList(Entity, SubInitList, ElemType, newIndex, |
| 786 | newStructuredList, newStructuredIndex); |
| 787 | ++StructuredIndex; |
| 788 | ++Index; |
| 789 | return; |
| 790 | } |
| 791 | assert(SemaRef.getLangOpts().CPlusPlus && |
| 792 | "non-aggregate records are only possible in C++"); |
| 793 | // C++ initialization is handled later. |
| 794 | } |
| 795 | |
| 796 | if (ElemType->isScalarType()) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 797 | return CheckScalarType(Entity, IList, ElemType, Index, |
| 798 | StructuredList, StructuredIndex); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 799 | } else if (ElemType->isReferenceType()) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 800 | return CheckReferenceType(Entity, IList, ElemType, Index, |
| 801 | StructuredList, StructuredIndex); |
| 802 | } |
Anders Carlsson | d28b428 | 2009-08-27 17:18:13 +0000 | [diff] [blame] | 803 | |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 804 | if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) { |
| 805 | // arrayType can be incomplete if we're initializing a flexible |
| 806 | // array member. There's nothing we can do with the completed |
| 807 | // type here, though. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 808 | |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 809 | if (Expr *Str = IsStringInit(expr, arrayType, SemaRef.Context)) { |
Eli Friedman | 8a5d929 | 2011-09-26 19:09:09 +0000 | [diff] [blame] | 810 | if (!VerifyOnly) { |
| 811 | CheckStringInit(Str, ElemType, arrayType, SemaRef); |
| 812 | UpdateStructuredListElement(StructuredList, StructuredIndex, Str); |
| 813 | } |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 814 | ++Index; |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 815 | return; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 816 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 817 | |
| 818 | // Fall through for subaggregate initialization. |
| 819 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 820 | } else if (SemaRef.getLangOpts().CPlusPlus) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 821 | // C++ [dcl.init.aggr]p12: |
| 822 | // All implicit type conversions (clause 4) are considered when |
Sebastian Redl | 5d3d41d | 2011-09-24 17:47:39 +0000 | [diff] [blame] | 823 | // initializing the aggregate member with an initializer from |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 824 | // an initializer-list. If the initializer can initialize a |
| 825 | // member, the member is initialized. [...] |
| 826 | |
| 827 | // FIXME: Better EqualLoc? |
| 828 | InitializationKind Kind = |
| 829 | InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 830 | InitializationSequence Seq(SemaRef, Entity, Kind, expr); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 831 | |
| 832 | if (Seq) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 833 | if (!VerifyOnly) { |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 834 | ExprResult Result = |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 835 | Seq.Perform(SemaRef, Entity, Kind, expr); |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 836 | if (Result.isInvalid()) |
| 837 | hadError = true; |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 838 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 839 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 840 | Result.takeAs<Expr>()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 841 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 842 | ++Index; |
| 843 | return; |
| 844 | } |
| 845 | |
| 846 | // Fall through for subaggregate initialization |
| 847 | } else { |
| 848 | // C99 6.7.8p13: |
| 849 | // |
| 850 | // The initializer for a structure or union object that has |
| 851 | // automatic storage duration shall be either an initializer |
| 852 | // list as described below, or a single expression that has |
| 853 | // compatible structure or union type. In the latter case, the |
| 854 | // initial value of the object, including unnamed members, is |
| 855 | // that of the expression. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 856 | ExprResult ExprRes = SemaRef.Owned(expr); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 857 | if ((ElemType->isRecordType() || ElemType->isVectorType()) && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 858 | SemaRef.CheckSingleAssignmentConstraints(ElemType, ExprRes, |
| 859 | !VerifyOnly) |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 860 | == Sema::Compatible) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 861 | if (ExprRes.isInvalid()) |
| 862 | hadError = true; |
| 863 | else { |
| 864 | ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.take()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 865 | if (ExprRes.isInvalid()) |
| 866 | hadError = true; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 867 | } |
| 868 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
| 869 | ExprRes.takeAs<Expr>()); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 870 | ++Index; |
| 871 | return; |
| 872 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 873 | ExprRes.release(); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 874 | // Fall through for subaggregate initialization |
| 875 | } |
| 876 | |
| 877 | // C++ [dcl.init.aggr]p12: |
| 878 | // |
| 879 | // [...] Otherwise, if the member is itself a non-empty |
| 880 | // subaggregate, brace elision is assumed and the initializer is |
| 881 | // considered for the initialization of the first member of |
| 882 | // the subaggregate. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 883 | if (!SemaRef.getLangOpts().OpenCL && |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 884 | (ElemType->isAggregateType() || ElemType->isVectorType())) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 885 | CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList, |
| 886 | StructuredIndex); |
| 887 | ++StructuredIndex; |
| 888 | } else { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 889 | if (!VerifyOnly) { |
| 890 | // We cannot initialize this element, so let |
| 891 | // PerformCopyInitialization produce the appropriate diagnostic. |
| 892 | SemaRef.PerformCopyInitialization(Entity, SourceLocation(), |
| 893 | SemaRef.Owned(expr), |
| 894 | /*TopLevelOfInitList=*/true); |
| 895 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 896 | hadError = true; |
| 897 | ++Index; |
| 898 | ++StructuredIndex; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 899 | } |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 900 | } |
| 901 | |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 902 | void InitListChecker::CheckComplexType(const InitializedEntity &Entity, |
| 903 | InitListExpr *IList, QualType DeclType, |
| 904 | unsigned &Index, |
| 905 | InitListExpr *StructuredList, |
| 906 | unsigned &StructuredIndex) { |
| 907 | assert(Index == 0 && "Index in explicit init list must be zero"); |
| 908 | |
| 909 | // As an extension, clang supports complex initializers, which initialize |
| 910 | // a complex number component-wise. When an explicit initializer list for |
| 911 | // a complex number contains two two initializers, this extension kicks in: |
| 912 | // it exepcts the initializer list to contain two elements convertible to |
| 913 | // the element type of the complex type. The first element initializes |
| 914 | // the real part, and the second element intitializes the imaginary part. |
| 915 | |
| 916 | if (IList->getNumInits() != 2) |
| 917 | return CheckScalarType(Entity, IList, DeclType, Index, StructuredList, |
| 918 | StructuredIndex); |
| 919 | |
| 920 | // This is an extension in C. (The builtin _Complex type does not exist |
| 921 | // in the C++ standard.) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 922 | if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly) |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 923 | SemaRef.Diag(IList->getLocStart(), diag::ext_complex_component_init) |
| 924 | << IList->getSourceRange(); |
| 925 | |
| 926 | // Initialize the complex number. |
| 927 | QualType elementType = DeclType->getAs<ComplexType>()->getElementType(); |
| 928 | InitializedEntity ElementEntity = |
| 929 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
| 930 | |
| 931 | for (unsigned i = 0; i < 2; ++i) { |
| 932 | ElementEntity.setElementIndex(Index); |
| 933 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 934 | StructuredList, StructuredIndex); |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 939 | void InitListChecker::CheckScalarType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 940 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 941 | unsigned &Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 942 | InitListExpr *StructuredList, |
| 943 | unsigned &StructuredIndex) { |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 944 | if (Index >= IList->getNumInits()) { |
Richard Smith | 6b13022 | 2011-10-18 21:39:00 +0000 | [diff] [blame] | 945 | if (!VerifyOnly) |
| 946 | SemaRef.Diag(IList->getLocStart(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 947 | SemaRef.getLangOpts().CPlusPlus11 ? |
Richard Smith | 6b13022 | 2011-10-18 21:39:00 +0000 | [diff] [blame] | 948 | diag::warn_cxx98_compat_empty_scalar_initializer : |
| 949 | diag::err_empty_scalar_initializer) |
| 950 | << IList->getSourceRange(); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 951 | hadError = !SemaRef.getLangOpts().CPlusPlus11; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 952 | ++Index; |
| 953 | ++StructuredIndex; |
Eli Friedman | bb504d3 | 2008-05-19 20:12:18 +0000 | [diff] [blame] | 954 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 955 | } |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 956 | |
| 957 | Expr *expr = IList->getInit(Index); |
| 958 | if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 959 | if (!VerifyOnly) |
| 960 | SemaRef.Diag(SubIList->getLocStart(), |
| 961 | diag::warn_many_braces_around_scalar_init) |
| 962 | << SubIList->getSourceRange(); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 963 | |
| 964 | CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList, |
| 965 | StructuredIndex); |
| 966 | return; |
| 967 | } else if (isa<DesignatedInitExpr>(expr)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 968 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 969 | SemaRef.Diag(expr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 970 | diag::err_designator_for_scalar_init) |
| 971 | << DeclType << expr->getSourceRange(); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 972 | hadError = true; |
| 973 | ++Index; |
| 974 | ++StructuredIndex; |
| 975 | return; |
| 976 | } |
| 977 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 978 | if (VerifyOnly) { |
| 979 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr))) |
| 980 | hadError = true; |
| 981 | ++Index; |
| 982 | return; |
| 983 | } |
| 984 | |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 985 | ExprResult Result = |
| 986 | SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(), |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 987 | SemaRef.Owned(expr), |
| 988 | /*TopLevelOfInitList=*/true); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 989 | |
| 990 | Expr *ResultExpr = 0; |
| 991 | |
| 992 | if (Result.isInvalid()) |
| 993 | hadError = true; // types weren't compatible. |
| 994 | else { |
| 995 | ResultExpr = Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 996 | |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 997 | if (ResultExpr != expr) { |
| 998 | // The type was promoted, update initializer list. |
| 999 | IList->setInit(Index, ResultExpr); |
| 1000 | } |
| 1001 | } |
| 1002 | if (hadError) |
| 1003 | ++StructuredIndex; |
| 1004 | else |
| 1005 | UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr); |
| 1006 | ++Index; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1009 | void InitListChecker::CheckReferenceType(const InitializedEntity &Entity, |
| 1010 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1011 | unsigned &Index, |
| 1012 | InitListExpr *StructuredList, |
| 1013 | unsigned &StructuredIndex) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1014 | if (Index >= IList->getNumInits()) { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1015 | // FIXME: It would be wonderful if we could point at the actual member. In |
| 1016 | // general, it would be useful to pass location information down the stack, |
| 1017 | // so that we know the location (or decl) of the "current object" being |
| 1018 | // initialized. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1019 | if (!VerifyOnly) |
| 1020 | SemaRef.Diag(IList->getLocStart(), |
| 1021 | diag::err_init_reference_member_uninitialized) |
| 1022 | << DeclType |
| 1023 | << IList->getSourceRange(); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1024 | hadError = true; |
| 1025 | ++Index; |
| 1026 | ++StructuredIndex; |
| 1027 | return; |
| 1028 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1029 | |
| 1030 | Expr *expr = IList->getInit(Index); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1031 | if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1032 | if (!VerifyOnly) |
| 1033 | SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list) |
| 1034 | << DeclType << IList->getSourceRange(); |
| 1035 | hadError = true; |
| 1036 | ++Index; |
| 1037 | ++StructuredIndex; |
| 1038 | return; |
| 1039 | } |
| 1040 | |
| 1041 | if (VerifyOnly) { |
| 1042 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr))) |
| 1043 | hadError = true; |
| 1044 | ++Index; |
| 1045 | return; |
| 1046 | } |
| 1047 | |
| 1048 | ExprResult Result = |
| 1049 | SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(), |
| 1050 | SemaRef.Owned(expr), |
| 1051 | /*TopLevelOfInitList=*/true); |
| 1052 | |
| 1053 | if (Result.isInvalid()) |
| 1054 | hadError = true; |
| 1055 | |
| 1056 | expr = Result.takeAs<Expr>(); |
| 1057 | IList->setInit(Index, expr); |
| 1058 | |
| 1059 | if (hadError) |
| 1060 | ++StructuredIndex; |
| 1061 | else |
| 1062 | UpdateStructuredListElement(StructuredList, StructuredIndex, expr); |
| 1063 | ++Index; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1064 | } |
| 1065 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1066 | void InitListChecker::CheckVectorType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 1067 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1068 | unsigned &Index, |
| 1069 | InitListExpr *StructuredList, |
| 1070 | unsigned &StructuredIndex) { |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1071 | const VectorType *VT = DeclType->getAs<VectorType>(); |
| 1072 | unsigned maxElements = VT->getNumElements(); |
| 1073 | unsigned numEltsInit = 0; |
| 1074 | QualType elementType = VT->getElementType(); |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 1075 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1076 | if (Index >= IList->getNumInits()) { |
| 1077 | // Make sure the element type can be value-initialized. |
| 1078 | if (VerifyOnly) |
| 1079 | CheckValueInitializable( |
| 1080 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity)); |
| 1081 | return; |
| 1082 | } |
| 1083 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1084 | if (!SemaRef.getLangOpts().OpenCL) { |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1085 | // If the initializing element is a vector, try to copy-initialize |
| 1086 | // instead of breaking it apart (which is doomed to failure anyway). |
| 1087 | Expr *Init = IList->getInit(Index); |
| 1088 | if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1089 | if (VerifyOnly) { |
| 1090 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(Init))) |
| 1091 | hadError = true; |
| 1092 | ++Index; |
| 1093 | return; |
| 1094 | } |
| 1095 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1096 | ExprResult Result = |
| 1097 | SemaRef.PerformCopyInitialization(Entity, Init->getLocStart(), |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 1098 | SemaRef.Owned(Init), |
| 1099 | /*TopLevelOfInitList=*/true); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1100 | |
| 1101 | Expr *ResultExpr = 0; |
| 1102 | if (Result.isInvalid()) |
| 1103 | hadError = true; // types weren't compatible. |
| 1104 | else { |
| 1105 | ResultExpr = Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1106 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1107 | if (ResultExpr != Init) { |
| 1108 | // The type was promoted, update initializer list. |
| 1109 | IList->setInit(Index, ResultExpr); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1110 | } |
| 1111 | } |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1112 | if (hadError) |
| 1113 | ++StructuredIndex; |
| 1114 | else |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1115 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
| 1116 | ResultExpr); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1117 | ++Index; |
| 1118 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1119 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1120 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1121 | InitializedEntity ElementEntity = |
| 1122 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1123 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1124 | for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) { |
| 1125 | // Don't attempt to go past the end of the init list |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1126 | if (Index >= IList->getNumInits()) { |
| 1127 | if (VerifyOnly) |
| 1128 | CheckValueInitializable(ElementEntity); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1129 | break; |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1130 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1131 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1132 | ElementEntity.setElementIndex(Index); |
| 1133 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1134 | StructuredList, StructuredIndex); |
| 1135 | } |
| 1136 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1137 | } |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1138 | |
| 1139 | InitializedEntity ElementEntity = |
| 1140 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1141 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1142 | // OpenCL initializers allows vectors to be constructed from vectors. |
| 1143 | for (unsigned i = 0; i < maxElements; ++i) { |
| 1144 | // Don't attempt to go past the end of the init list |
| 1145 | if (Index >= IList->getNumInits()) |
| 1146 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1147 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1148 | ElementEntity.setElementIndex(Index); |
| 1149 | |
| 1150 | QualType IType = IList->getInit(Index)->getType(); |
| 1151 | if (!IType->isVectorType()) { |
| 1152 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1153 | StructuredList, StructuredIndex); |
| 1154 | ++numEltsInit; |
| 1155 | } else { |
| 1156 | QualType VecType; |
| 1157 | const VectorType *IVT = IType->getAs<VectorType>(); |
| 1158 | unsigned numIElts = IVT->getNumElements(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1159 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1160 | if (IType->isExtVectorType()) |
| 1161 | VecType = SemaRef.Context.getExtVectorType(elementType, numIElts); |
| 1162 | else |
| 1163 | VecType = SemaRef.Context.getVectorType(elementType, numIElts, |
Bob Wilson | e86d78c | 2010-11-10 21:56:12 +0000 | [diff] [blame] | 1164 | IVT->getVectorKind()); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1165 | CheckSubElementType(ElementEntity, IList, VecType, Index, |
| 1166 | StructuredList, StructuredIndex); |
| 1167 | numEltsInit += numIElts; |
| 1168 | } |
| 1169 | } |
| 1170 | |
| 1171 | // OpenCL requires all elements to be initialized. |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1172 | if (numEltsInit != maxElements) { |
| 1173 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1174 | SemaRef.Diag(IList->getLocStart(), |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1175 | diag::err_vector_incorrect_num_initializers) |
| 1176 | << (numEltsInit < maxElements) << maxElements << numEltsInit; |
| 1177 | hadError = true; |
| 1178 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1179 | } |
| 1180 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1181 | void InitListChecker::CheckArrayType(const InitializedEntity &Entity, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 1182 | InitListExpr *IList, QualType &DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1183 | llvm::APSInt elementIndex, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1184 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1185 | unsigned &Index, |
| 1186 | InitListExpr *StructuredList, |
| 1187 | unsigned &StructuredIndex) { |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1188 | const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType); |
| 1189 | |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1190 | // Check for the special-case of initializing an array with a string. |
| 1191 | if (Index < IList->getNumInits()) { |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1192 | if (Expr *Str = IsStringInit(IList->getInit(Index), arrayType, |
Chris Lattner | 79e079d | 2009-02-24 23:10:27 +0000 | [diff] [blame] | 1193 | SemaRef.Context)) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1194 | // We place the string literal directly into the resulting |
| 1195 | // initializer list. This is the only place where the structure |
| 1196 | // of the structured initializer list doesn't match exactly, |
| 1197 | // because doing so would involve allocating one character |
| 1198 | // constant for each string. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1199 | if (!VerifyOnly) { |
Eli Friedman | 8a5d929 | 2011-09-26 19:09:09 +0000 | [diff] [blame] | 1200 | CheckStringInit(Str, DeclType, arrayType, SemaRef); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1201 | UpdateStructuredListElement(StructuredList, StructuredIndex, Str); |
| 1202 | StructuredList->resizeInits(SemaRef.Context, StructuredIndex); |
| 1203 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1204 | ++Index; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1205 | return; |
| 1206 | } |
| 1207 | } |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1208 | if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) { |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1209 | // Check for VLAs; in standard C it would be possible to check this |
| 1210 | // earlier, but I don't know where clang accepts VLAs (gcc accepts |
| 1211 | // them in all sorts of strange places). |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1212 | if (!VerifyOnly) |
| 1213 | SemaRef.Diag(VAT->getSizeExpr()->getLocStart(), |
| 1214 | diag::err_variable_object_no_init) |
| 1215 | << VAT->getSizeExpr()->getSourceRange(); |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1216 | hadError = true; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1217 | ++Index; |
| 1218 | ++StructuredIndex; |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1219 | return; |
| 1220 | } |
| 1221 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1222 | // We might know the maximum number of elements in advance. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1223 | llvm::APSInt maxElements(elementIndex.getBitWidth(), |
| 1224 | elementIndex.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1225 | bool maxElementsKnown = false; |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1226 | if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1227 | maxElements = CAT->getSize(); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1228 | elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth()); |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1229 | elementIndex.setIsUnsigned(maxElements.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1230 | maxElementsKnown = true; |
| 1231 | } |
| 1232 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1233 | QualType elementType = arrayType->getElementType(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1234 | while (Index < IList->getNumInits()) { |
| 1235 | Expr *Init = IList->getInit(Index); |
| 1236 | if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1237 | // If we're not the subobject that matches up with the '{' for |
| 1238 | // the designator, we shouldn't be handling the |
| 1239 | // designator. Return immediately. |
| 1240 | if (!SubobjectIsDesignatorContext) |
| 1241 | return; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1242 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1243 | // Handle this designated initializer. elementIndex will be |
| 1244 | // updated to be the next array element we'll initialize. |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1245 | if (CheckDesignatedInitializer(Entity, IList, DIE, 0, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1246 | DeclType, 0, &elementIndex, Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1247 | StructuredList, StructuredIndex, true, |
| 1248 | false)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1249 | hadError = true; |
| 1250 | continue; |
| 1251 | } |
| 1252 | |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1253 | if (elementIndex.getBitWidth() > maxElements.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1254 | maxElements = maxElements.extend(elementIndex.getBitWidth()); |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1255 | else if (elementIndex.getBitWidth() < maxElements.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1256 | elementIndex = elementIndex.extend(maxElements.getBitWidth()); |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1257 | elementIndex.setIsUnsigned(maxElements.isUnsigned()); |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1258 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1259 | // If the array is of incomplete type, keep track of the number of |
| 1260 | // elements in the initializer. |
| 1261 | if (!maxElementsKnown && elementIndex > maxElements) |
| 1262 | maxElements = elementIndex; |
| 1263 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1264 | continue; |
| 1265 | } |
| 1266 | |
| 1267 | // If we know the maximum number of elements, and we've already |
| 1268 | // hit it, stop consuming elements in the initializer list. |
| 1269 | if (maxElementsKnown && elementIndex == maxElements) |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1270 | break; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1271 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1272 | InitializedEntity ElementEntity = |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1273 | InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex, |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1274 | Entity); |
| 1275 | // Check this element. |
| 1276 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1277 | StructuredList, StructuredIndex); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1278 | ++elementIndex; |
| 1279 | |
| 1280 | // If the array is of incomplete type, keep track of the number of |
| 1281 | // elements in the initializer. |
| 1282 | if (!maxElementsKnown && elementIndex > maxElements) |
| 1283 | maxElements = elementIndex; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1284 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1285 | if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1286 | // If this is an incomplete array type, the actual type needs to |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1287 | // be calculated here. |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1288 | llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1289 | if (maxElements == Zero) { |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1290 | // Sizing an array implicitly to zero is not allowed by ISO C, |
| 1291 | // but is supported by GNU. |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 1292 | SemaRef.Diag(IList->getLocStart(), |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1293 | diag::ext_typecheck_zero_array_size); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1294 | } |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1295 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1296 | DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements, |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1297 | ArrayType::Normal, 0); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1298 | } |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1299 | if (!hadError && VerifyOnly) { |
| 1300 | // Check if there are any members of the array that get value-initialized. |
| 1301 | // If so, check if doing that is possible. |
| 1302 | // FIXME: This needs to detect holes left by designated initializers too. |
| 1303 | if (maxElementsKnown && elementIndex < maxElements) |
| 1304 | CheckValueInitializable(InitializedEntity::InitializeElement( |
| 1305 | SemaRef.Context, 0, Entity)); |
| 1306 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1307 | } |
| 1308 | |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1309 | bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity, |
| 1310 | Expr *InitExpr, |
| 1311 | FieldDecl *Field, |
| 1312 | bool TopLevelObject) { |
| 1313 | // Handle GNU flexible array initializers. |
| 1314 | unsigned FlexArrayDiag; |
| 1315 | if (isa<InitListExpr>(InitExpr) && |
| 1316 | cast<InitListExpr>(InitExpr)->getNumInits() == 0) { |
| 1317 | // Empty flexible array init always allowed as an extension |
| 1318 | FlexArrayDiag = diag::ext_flexible_array_init; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1319 | } else if (SemaRef.getLangOpts().CPlusPlus) { |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1320 | // Disallow flexible array init in C++; it is not required for gcc |
| 1321 | // compatibility, and it needs work to IRGen correctly in general. |
| 1322 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1323 | } else if (!TopLevelObject) { |
| 1324 | // Disallow flexible array init on non-top-level object |
| 1325 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1326 | } else if (Entity.getKind() != InitializedEntity::EK_Variable) { |
| 1327 | // Disallow flexible array init on anything which is not a variable. |
| 1328 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1329 | } else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) { |
| 1330 | // Disallow flexible array init on local variables. |
| 1331 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1332 | } else { |
| 1333 | // Allow other cases. |
| 1334 | FlexArrayDiag = diag::ext_flexible_array_init; |
| 1335 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1336 | |
| 1337 | if (!VerifyOnly) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1338 | SemaRef.Diag(InitExpr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1339 | FlexArrayDiag) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1340 | << InitExpr->getLocStart(); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1341 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
| 1342 | << Field; |
| 1343 | } |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1344 | |
| 1345 | return FlexArrayDiag != diag::ext_flexible_array_init; |
| 1346 | } |
| 1347 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1348 | void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity, |
Anders Carlsson | 2bbae5d | 2010-01-23 20:20:40 +0000 | [diff] [blame] | 1349 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1350 | QualType DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1351 | RecordDecl::field_iterator Field, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1352 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1353 | unsigned &Index, |
| 1354 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1355 | unsigned &StructuredIndex, |
| 1356 | bool TopLevelObject) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1357 | RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1358 | |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1359 | // If the record is invalid, some of it's members are invalid. To avoid |
| 1360 | // confusion, we forgo checking the intializer for the entire record. |
| 1361 | if (structDecl->isInvalidDecl()) { |
Richard Smith | 72ab277 | 2012-09-28 21:23:50 +0000 | [diff] [blame] | 1362 | // Assume it was supposed to consume a single initializer. |
| 1363 | ++Index; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1364 | hadError = true; |
| 1365 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1366 | } |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1367 | |
| 1368 | if (DeclType->isUnionType() && IList->getNumInits() == 0) { |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1369 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1370 | |
| 1371 | // If there's a default initializer, use it. |
| 1372 | if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) { |
| 1373 | if (VerifyOnly) |
| 1374 | return; |
| 1375 | for (RecordDecl::field_iterator FieldEnd = RD->field_end(); |
| 1376 | Field != FieldEnd; ++Field) { |
| 1377 | if (Field->hasInClassInitializer()) { |
| 1378 | StructuredList->setInitializedFieldInUnion(*Field); |
| 1379 | // FIXME: Actually build a CXXDefaultInitExpr? |
| 1380 | return; |
| 1381 | } |
| 1382 | } |
| 1383 | } |
| 1384 | |
| 1385 | // Value-initialize the first named member of the union. |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1386 | for (RecordDecl::field_iterator FieldEnd = RD->field_end(); |
| 1387 | Field != FieldEnd; ++Field) { |
| 1388 | if (Field->getDeclName()) { |
| 1389 | if (VerifyOnly) |
| 1390 | CheckValueInitializable( |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1391 | InitializedEntity::InitializeMember(*Field, &Entity)); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1392 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1393 | StructuredList->setInitializedFieldInUnion(*Field); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1394 | break; |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1395 | } |
| 1396 | } |
| 1397 | return; |
| 1398 | } |
| 1399 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1400 | // If structDecl is a forward declaration, this loop won't do |
| 1401 | // anything except look at designated initializers; That's okay, |
| 1402 | // because an error should get printed out elsewhere. It might be |
| 1403 | // worthwhile to skip over the rest of the initializer, though. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1404 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1405 | RecordDecl::field_iterator FieldEnd = RD->field_end(); |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1406 | bool InitializedSomething = false; |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1407 | bool CheckForMissingFields = true; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1408 | while (Index < IList->getNumInits()) { |
| 1409 | Expr *Init = IList->getInit(Index); |
| 1410 | |
| 1411 | if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1412 | // If we're not the subobject that matches up with the '{' for |
| 1413 | // the designator, we shouldn't be handling the |
| 1414 | // designator. Return immediately. |
| 1415 | if (!SubobjectIsDesignatorContext) |
| 1416 | return; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1417 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1418 | // Handle this designated initializer. Field will be updated to |
| 1419 | // the next field that we'll be initializing. |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1420 | if (CheckDesignatedInitializer(Entity, IList, DIE, 0, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1421 | DeclType, &Field, 0, Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1422 | StructuredList, StructuredIndex, |
| 1423 | true, TopLevelObject)) |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1424 | hadError = true; |
| 1425 | |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1426 | InitializedSomething = true; |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1427 | |
| 1428 | // Disable check for missing fields when designators are used. |
| 1429 | // This matches gcc behaviour. |
| 1430 | CheckForMissingFields = false; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1431 | continue; |
| 1432 | } |
| 1433 | |
| 1434 | if (Field == FieldEnd) { |
| 1435 | // We've run out of fields. We're done. |
| 1436 | break; |
| 1437 | } |
| 1438 | |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1439 | // We've already initialized a member of a union. We're done. |
| 1440 | if (InitializedSomething && DeclType->isUnionType()) |
| 1441 | break; |
| 1442 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1443 | // If we've hit the flexible array member at the end, we're done. |
| 1444 | if (Field->getType()->isIncompleteArrayType()) |
| 1445 | break; |
| 1446 | |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1447 | if (Field->isUnnamedBitfield()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1448 | // Don't initialize unnamed bitfields, e.g. "int : 20;" |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1449 | ++Field; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1450 | continue; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1451 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1452 | |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1453 | // Make sure we can use this declaration. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1454 | bool InvalidUse; |
| 1455 | if (VerifyOnly) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1456 | InvalidUse = !SemaRef.CanUseDecl(*Field); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1457 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1458 | InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1459 | IList->getInit(Index)->getLocStart()); |
| 1460 | if (InvalidUse) { |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1461 | ++Index; |
| 1462 | ++Field; |
| 1463 | hadError = true; |
| 1464 | continue; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1465 | } |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1466 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1467 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1468 | InitializedEntity::InitializeMember(*Field, &Entity); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1469 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
| 1470 | StructuredList, StructuredIndex); |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1471 | InitializedSomething = true; |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1472 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1473 | if (DeclType->isUnionType() && !VerifyOnly) { |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1474 | // Initialize the first field within the union. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1475 | StructuredList->setInitializedFieldInUnion(*Field); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1476 | } |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1477 | |
| 1478 | ++Field; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1479 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1480 | |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1481 | // Emit warnings for missing struct field initializers. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1482 | if (!VerifyOnly && InitializedSomething && CheckForMissingFields && |
| 1483 | Field != FieldEnd && !Field->getType()->isIncompleteArrayType() && |
| 1484 | !DeclType->isUnionType()) { |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1485 | // It is possible we have one or more unnamed bitfields remaining. |
| 1486 | // Find first (if any) named field and emit warning. |
| 1487 | for (RecordDecl::field_iterator it = Field, end = RD->field_end(); |
| 1488 | it != end; ++it) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1489 | if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) { |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1490 | SemaRef.Diag(IList->getSourceRange().getEnd(), |
| 1491 | diag::warn_missing_field_initializers) << it->getName(); |
| 1492 | break; |
| 1493 | } |
| 1494 | } |
| 1495 | } |
| 1496 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1497 | // Check that any remaining fields can be value-initialized. |
| 1498 | if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() && |
| 1499 | !Field->getType()->isIncompleteArrayType()) { |
| 1500 | // FIXME: Should check for holes left by designated initializers too. |
| 1501 | for (; Field != FieldEnd && !hadError; ++Field) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1502 | if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer()) |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1503 | CheckValueInitializable( |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1504 | InitializedEntity::InitializeMember(*Field, &Entity)); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1505 | } |
| 1506 | } |
| 1507 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1508 | if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() || |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 1509 | Index >= IList->getNumInits()) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1510 | return; |
| 1511 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1512 | if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field, |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1513 | TopLevelObject)) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1514 | hadError = true; |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 1515 | ++Index; |
| 1516 | return; |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1517 | } |
| 1518 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1519 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1520 | InitializedEntity::InitializeMember(*Field, &Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1521 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1522 | if (isa<InitListExpr>(IList->getInit(Index))) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1523 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1524 | StructuredList, StructuredIndex); |
| 1525 | else |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1526 | CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 1527 | StructuredList, StructuredIndex); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1528 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1529 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1530 | /// \brief Expand a field designator that refers to a member of an |
| 1531 | /// anonymous struct or union into a series of field designators that |
| 1532 | /// refers to the field within the appropriate subobject. |
| 1533 | /// |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1534 | static void ExpandAnonymousFieldDesignator(Sema &SemaRef, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1535 | DesignatedInitExpr *DIE, |
| 1536 | unsigned DesigIdx, |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1537 | IndirectFieldDecl *IndirectField) { |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1538 | typedef DesignatedInitExpr::Designator Designator; |
| 1539 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1540 | // Build the replacement designators. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1541 | SmallVector<Designator, 4> Replacements; |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1542 | for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(), |
| 1543 | PE = IndirectField->chain_end(); PI != PE; ++PI) { |
| 1544 | if (PI + 1 == PE) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1545 | Replacements.push_back(Designator((IdentifierInfo *)0, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1546 | DIE->getDesignator(DesigIdx)->getDotLoc(), |
| 1547 | DIE->getDesignator(DesigIdx)->getFieldLoc())); |
| 1548 | else |
| 1549 | Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(), |
| 1550 | SourceLocation())); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1551 | assert(isa<FieldDecl>(*PI)); |
| 1552 | Replacements.back().setField(cast<FieldDecl>(*PI)); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | // Expand the current designator into the set of replacement |
| 1556 | // designators, so we have a full subobject path down to where the |
| 1557 | // member of the anonymous struct/union is actually stored. |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 1558 | DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0], |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1559 | &Replacements[0] + Replacements.size()); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1560 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1561 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1562 | /// \brief Given an implicit anonymous field, search the IndirectField that |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1563 | /// corresponds to FieldName. |
| 1564 | static IndirectFieldDecl *FindIndirectFieldDesignator(FieldDecl *AnonField, |
| 1565 | IdentifierInfo *FieldName) { |
Argyrios Kyrtzidis | b22b0a5 | 2012-09-10 22:04:26 +0000 | [diff] [blame] | 1566 | if (!FieldName) |
| 1567 | return 0; |
| 1568 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1569 | assert(AnonField->isAnonymousStructOrUnion()); |
| 1570 | Decl *NextDecl = AnonField->getNextDeclInContext(); |
Aaron Ballman | 3e78b19 | 2012-02-09 22:16:56 +0000 | [diff] [blame] | 1571 | while (IndirectFieldDecl *IF = |
| 1572 | dyn_cast_or_null<IndirectFieldDecl>(NextDecl)) { |
Argyrios Kyrtzidis | b22b0a5 | 2012-09-10 22:04:26 +0000 | [diff] [blame] | 1573 | if (FieldName == IF->getAnonField()->getIdentifier()) |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1574 | return IF; |
| 1575 | NextDecl = NextDecl->getNextDeclInContext(); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1576 | } |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1577 | return 0; |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1578 | } |
| 1579 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1580 | static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef, |
| 1581 | DesignatedInitExpr *DIE) { |
| 1582 | unsigned NumIndexExprs = DIE->getNumSubExprs() - 1; |
| 1583 | SmallVector<Expr*, 4> IndexExprs(NumIndexExprs); |
| 1584 | for (unsigned I = 0; I < NumIndexExprs; ++I) |
| 1585 | IndexExprs[I] = DIE->getSubExpr(I + 1); |
| 1586 | return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators_begin(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 1587 | DIE->size(), IndexExprs, |
| 1588 | DIE->getEqualOrColonLoc(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1589 | DIE->usesGNUSyntax(), DIE->getInit()); |
| 1590 | } |
| 1591 | |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1592 | namespace { |
| 1593 | |
| 1594 | // Callback to only accept typo corrections that are for field members of |
| 1595 | // the given struct or union. |
| 1596 | class FieldInitializerValidatorCCC : public CorrectionCandidateCallback { |
| 1597 | public: |
| 1598 | explicit FieldInitializerValidatorCCC(RecordDecl *RD) |
| 1599 | : Record(RD) {} |
| 1600 | |
| 1601 | virtual bool ValidateCandidate(const TypoCorrection &candidate) { |
| 1602 | FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>(); |
| 1603 | return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record); |
| 1604 | } |
| 1605 | |
| 1606 | private: |
| 1607 | RecordDecl *Record; |
| 1608 | }; |
| 1609 | |
| 1610 | } |
| 1611 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1612 | /// @brief Check the well-formedness of a C99 designated initializer. |
| 1613 | /// |
| 1614 | /// Determines whether the designated initializer @p DIE, which |
| 1615 | /// resides at the given @p Index within the initializer list @p |
| 1616 | /// IList, is well-formed for a current object of type @p DeclType |
| 1617 | /// (C99 6.7.8). The actual subobject that this designator refers to |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1618 | /// within the current subobject is returned in either |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1619 | /// @p NextField or @p NextElementIndex (whichever is appropriate). |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1620 | /// |
| 1621 | /// @param IList The initializer list in which this designated |
| 1622 | /// initializer occurs. |
| 1623 | /// |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1624 | /// @param DIE The designated initializer expression. |
| 1625 | /// |
| 1626 | /// @param DesigIdx The index of the current designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1627 | /// |
Dmitri Gribenko | 70517ca | 2012-08-23 17:58:28 +0000 | [diff] [blame] | 1628 | /// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1629 | /// into which the designation in @p DIE should refer. |
| 1630 | /// |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1631 | /// @param NextField If non-NULL and the first designator in @p DIE is |
| 1632 | /// a field, this will be set to the field declaration corresponding |
| 1633 | /// to the field named by the designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1634 | /// |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1635 | /// @param NextElementIndex If non-NULL and the first designator in @p |
| 1636 | /// DIE is an array designator or GNU array-range designator, this |
| 1637 | /// will be set to the last index initialized by this designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1638 | /// |
| 1639 | /// @param Index Index into @p IList where the designated initializer |
| 1640 | /// @p DIE occurs. |
| 1641 | /// |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1642 | /// @param StructuredList The initializer list expression that |
| 1643 | /// describes all of the subobject initializers in the order they'll |
| 1644 | /// actually be initialized. |
| 1645 | /// |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1646 | /// @returns true if there was an error, false otherwise. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1647 | bool |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1648 | InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1649 | InitListExpr *IList, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1650 | DesignatedInitExpr *DIE, |
| 1651 | unsigned DesigIdx, |
| 1652 | QualType &CurrentObjectType, |
| 1653 | RecordDecl::field_iterator *NextField, |
| 1654 | llvm::APSInt *NextElementIndex, |
| 1655 | unsigned &Index, |
| 1656 | InitListExpr *StructuredList, |
| 1657 | unsigned &StructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1658 | bool FinishSubobjectInit, |
| 1659 | bool TopLevelObject) { |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1660 | if (DesigIdx == DIE->size()) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1661 | // Check the actual initialization for the designated object type. |
| 1662 | bool prevHadError = hadError; |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 1663 | |
| 1664 | // Temporarily remove the designator expression from the |
| 1665 | // initializer list that the child calls see, so that we don't try |
| 1666 | // to re-process the designator. |
| 1667 | unsigned OldIndex = Index; |
| 1668 | IList->setInit(OldIndex, DIE->getInit()); |
| 1669 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1670 | CheckSubElementType(Entity, IList, CurrentObjectType, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1671 | StructuredList, StructuredIndex); |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 1672 | |
| 1673 | // Restore the designated initializer expression in the syntactic |
| 1674 | // form of the initializer list. |
| 1675 | if (IList->getInit(OldIndex) != DIE->getInit()) |
| 1676 | DIE->setInit(IList->getInit(OldIndex)); |
| 1677 | IList->setInit(OldIndex, DIE); |
| 1678 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1679 | return hadError && !prevHadError; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1680 | } |
| 1681 | |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1682 | DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1683 | bool IsFirstDesignator = (DesigIdx == 0); |
| 1684 | if (!VerifyOnly) { |
| 1685 | assert((IsFirstDesignator || StructuredList) && |
| 1686 | "Need a non-designated initializer list to start from"); |
| 1687 | |
| 1688 | // Determine the structural initializer list that corresponds to the |
| 1689 | // current subobject. |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 1690 | StructuredList = IsFirstDesignator? SyntacticToSemantic.lookup(IList) |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1691 | : getStructuredSubobjectInit(IList, Index, CurrentObjectType, |
| 1692 | StructuredList, StructuredIndex, |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1693 | SourceRange(D->getLocStart(), |
| 1694 | DIE->getLocEnd())); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1695 | assert(StructuredList && "Expected a structured initializer list"); |
| 1696 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1697 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1698 | if (D->isFieldDesignator()) { |
| 1699 | // C99 6.7.8p7: |
| 1700 | // |
| 1701 | // If a designator has the form |
| 1702 | // |
| 1703 | // . identifier |
| 1704 | // |
| 1705 | // then the current object (defined below) shall have |
| 1706 | // structure or union type and the identifier shall be the |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1707 | // name of a member of that type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1708 | const RecordType *RT = CurrentObjectType->getAs<RecordType>(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1709 | if (!RT) { |
| 1710 | SourceLocation Loc = D->getDotLoc(); |
| 1711 | if (Loc.isInvalid()) |
| 1712 | Loc = D->getFieldLoc(); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1713 | if (!VerifyOnly) |
| 1714 | SemaRef.Diag(Loc, diag::err_field_designator_non_aggr) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1715 | << SemaRef.getLangOpts().CPlusPlus << CurrentObjectType; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1716 | ++Index; |
| 1717 | return true; |
| 1718 | } |
| 1719 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1720 | // Note: we perform a linear search of the fields here, despite |
| 1721 | // the fact that we have a faster lookup method, because we always |
| 1722 | // need to compute the field's index. |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1723 | FieldDecl *KnownField = D->getField(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1724 | IdentifierInfo *FieldName = D->getFieldName(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1725 | unsigned FieldIndex = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | RecordDecl::field_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1727 | Field = RT->getDecl()->field_begin(), |
| 1728 | FieldEnd = RT->getDecl()->field_end(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1729 | for (; Field != FieldEnd; ++Field) { |
| 1730 | if (Field->isUnnamedBitfield()) |
| 1731 | continue; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1732 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1733 | // If we find a field representing an anonymous field, look in the |
| 1734 | // IndirectFieldDecl that follow for the designated initializer. |
| 1735 | if (!KnownField && Field->isAnonymousStructOrUnion()) { |
| 1736 | if (IndirectFieldDecl *IF = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1737 | FindIndirectFieldDesignator(*Field, FieldName)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1738 | // In verify mode, don't modify the original. |
| 1739 | if (VerifyOnly) |
| 1740 | DIE = CloneDesignatedInitExpr(SemaRef, DIE); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1741 | ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IF); |
| 1742 | D = DIE->getDesignator(DesigIdx); |
| 1743 | break; |
| 1744 | } |
| 1745 | } |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1746 | if (KnownField && KnownField == *Field) |
Douglas Gregor | 022d13d | 2010-10-08 20:44:28 +0000 | [diff] [blame] | 1747 | break; |
| 1748 | if (FieldName && FieldName == Field->getIdentifier()) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1749 | break; |
| 1750 | |
| 1751 | ++FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1752 | } |
| 1753 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1754 | if (Field == FieldEnd) { |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1755 | if (VerifyOnly) { |
| 1756 | ++Index; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1757 | return true; // No typo correction when just trying this out. |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1758 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1759 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1760 | // There was no normal field in the struct with the designated |
| 1761 | // name. Perform another lookup for this name, which may find |
| 1762 | // something that we can't designate (e.g., a member function), |
| 1763 | // may find nothing, or may find a member of an anonymous |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1764 | // struct/union. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1765 | DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName); |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1766 | FieldDecl *ReplacementField = 0; |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1767 | if (Lookup.empty()) { |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1768 | // Name lookup didn't find anything. Determine whether this |
| 1769 | // was a typo for another field name. |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1770 | FieldInitializerValidatorCCC Validator(RT->getDecl()); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1771 | TypoCorrection Corrected = SemaRef.CorrectTypo( |
| 1772 | DeclarationNameInfo(FieldName, D->getFieldLoc()), |
Kaelyn Uhrain | 16e46dd | 2012-01-31 23:49:25 +0000 | [diff] [blame] | 1773 | Sema::LookupMemberName, /*Scope=*/0, /*SS=*/0, Validator, |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1774 | RT->getDecl()); |
| 1775 | if (Corrected) { |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1776 | std::string CorrectedStr( |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1777 | Corrected.getAsString(SemaRef.getLangOpts())); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1778 | std::string CorrectedQuotedStr( |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1779 | Corrected.getQuoted(SemaRef.getLangOpts())); |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1780 | ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1781 | SemaRef.Diag(D->getFieldLoc(), |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1782 | diag::err_field_designator_unknown_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1783 | << FieldName << CurrentObjectType << CorrectedQuotedStr |
| 1784 | << FixItHint::CreateReplacement(D->getFieldLoc(), CorrectedStr); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1785 | SemaRef.Diag(ReplacementField->getLocation(), |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1786 | diag::note_previous_decl) << CorrectedQuotedStr; |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1787 | hadError = true; |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1788 | } else { |
| 1789 | SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown) |
| 1790 | << FieldName << CurrentObjectType; |
| 1791 | ++Index; |
| 1792 | return true; |
| 1793 | } |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1794 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1795 | |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1796 | if (!ReplacementField) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1797 | // Name lookup found something, but it wasn't a field. |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 1798 | SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1799 | << FieldName; |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1800 | SemaRef.Diag(Lookup.front()->getLocation(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1801 | diag::note_field_designator_found); |
Eli Friedman | ba79fc2 | 2009-04-16 17:49:48 +0000 | [diff] [blame] | 1802 | ++Index; |
| 1803 | return true; |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1804 | } |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1805 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1806 | if (!KnownField) { |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1807 | // The replacement field comes from typo correction; find it |
| 1808 | // in the list of fields. |
| 1809 | FieldIndex = 0; |
| 1810 | Field = RT->getDecl()->field_begin(); |
| 1811 | for (; Field != FieldEnd; ++Field) { |
| 1812 | if (Field->isUnnamedBitfield()) |
| 1813 | continue; |
| 1814 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1815 | if (ReplacementField == *Field || |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1816 | Field->getIdentifier() == ReplacementField->getIdentifier()) |
| 1817 | break; |
| 1818 | |
| 1819 | ++FieldIndex; |
| 1820 | } |
| 1821 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1822 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1823 | |
| 1824 | // All of the fields of a union are located at the same place in |
| 1825 | // the initializer list. |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1826 | if (RT->getDecl()->isUnion()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1827 | FieldIndex = 0; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1828 | if (!VerifyOnly) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1829 | StructuredList->setInitializedFieldInUnion(*Field); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1830 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1831 | |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1832 | // Make sure we can use this declaration. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1833 | bool InvalidUse; |
| 1834 | if (VerifyOnly) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1835 | InvalidUse = !SemaRef.CanUseDecl(*Field); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1836 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1837 | InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1838 | if (InvalidUse) { |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1839 | ++Index; |
| 1840 | return true; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1841 | } |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1842 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1843 | if (!VerifyOnly) { |
| 1844 | // Update the designator with the field declaration. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1845 | D->setField(*Field); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1846 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1847 | // Make sure that our non-designated initializer list has space |
| 1848 | // for a subobject corresponding to this field. |
| 1849 | if (FieldIndex >= StructuredList->getNumInits()) |
| 1850 | StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1); |
| 1851 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1852 | |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1853 | // This designator names a flexible array member. |
| 1854 | if (Field->getType()->isIncompleteArrayType()) { |
| 1855 | bool Invalid = false; |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1856 | if ((DesigIdx + 1) != DIE->size()) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1857 | // We can't designate an object within the flexible array |
| 1858 | // member (because GCC doesn't allow it). |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1859 | if (!VerifyOnly) { |
| 1860 | DesignatedInitExpr::Designator *NextD |
| 1861 | = DIE->getDesignator(DesigIdx + 1); |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1862 | SemaRef.Diag(NextD->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1863 | diag::err_designator_into_flexible_array_member) |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1864 | << SourceRange(NextD->getLocStart(), |
| 1865 | DIE->getLocEnd()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1866 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1867 | << *Field; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1868 | } |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1869 | Invalid = true; |
| 1870 | } |
| 1871 | |
Chris Lattner | 9046c22 | 2010-10-10 17:49:49 +0000 | [diff] [blame] | 1872 | if (!hadError && !isa<InitListExpr>(DIE->getInit()) && |
| 1873 | !isa<StringLiteral>(DIE->getInit())) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1874 | // The initializer is not an initializer list. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1875 | if (!VerifyOnly) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1876 | SemaRef.Diag(DIE->getInit()->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1877 | diag::err_flexible_array_init_needs_braces) |
| 1878 | << DIE->getInit()->getSourceRange(); |
| 1879 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1880 | << *Field; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1881 | } |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1882 | Invalid = true; |
| 1883 | } |
| 1884 | |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1885 | // Check GNU flexible array initializer. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1886 | if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field, |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1887 | TopLevelObject)) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1888 | Invalid = true; |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1889 | |
| 1890 | if (Invalid) { |
| 1891 | ++Index; |
| 1892 | return true; |
| 1893 | } |
| 1894 | |
| 1895 | // Initialize the array. |
| 1896 | bool prevHadError = hadError; |
| 1897 | unsigned newStructuredIndex = FieldIndex; |
| 1898 | unsigned OldIndex = Index; |
| 1899 | IList->setInit(Index, DIE->getInit()); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1900 | |
| 1901 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1902 | InitializedEntity::InitializeMember(*Field, &Entity); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1903 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1904 | StructuredList, newStructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1905 | |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1906 | IList->setInit(OldIndex, DIE); |
| 1907 | if (hadError && !prevHadError) { |
| 1908 | ++Field; |
| 1909 | ++FieldIndex; |
| 1910 | if (NextField) |
| 1911 | *NextField = Field; |
| 1912 | StructuredIndex = FieldIndex; |
| 1913 | return true; |
| 1914 | } |
| 1915 | } else { |
| 1916 | // Recurse to check later designated subobjects. |
David Blaikie | 262bc18 | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 1917 | QualType FieldType = Field->getType(); |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1918 | unsigned newStructuredIndex = FieldIndex; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1919 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1920 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1921 | InitializedEntity::InitializeMember(*Field, &Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1922 | if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1, |
| 1923 | FieldType, 0, 0, Index, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1924 | StructuredList, newStructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1925 | true, false)) |
| 1926 | return true; |
| 1927 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1928 | |
| 1929 | // Find the position of the next field to be initialized in this |
| 1930 | // subobject. |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1931 | ++Field; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1932 | ++FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1933 | |
| 1934 | // If this the first designator, our caller will continue checking |
| 1935 | // the rest of this struct/class/union subobject. |
| 1936 | if (IsFirstDesignator) { |
| 1937 | if (NextField) |
| 1938 | *NextField = Field; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1939 | StructuredIndex = FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1940 | return false; |
| 1941 | } |
| 1942 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1943 | if (!FinishSubobjectInit) |
| 1944 | return false; |
| 1945 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1946 | // We've already initialized something in the union; we're done. |
| 1947 | if (RT->getDecl()->isUnion()) |
| 1948 | return hadError; |
| 1949 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1950 | // Check the remaining fields within this class/struct/union subobject. |
| 1951 | bool prevHadError = hadError; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1952 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1953 | CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1954 | StructuredList, FieldIndex); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1955 | return hadError && !prevHadError; |
| 1956 | } |
| 1957 | |
| 1958 | // C99 6.7.8p6: |
| 1959 | // |
| 1960 | // If a designator has the form |
| 1961 | // |
| 1962 | // [ constant-expression ] |
| 1963 | // |
| 1964 | // then the current object (defined below) shall have array |
| 1965 | // type and the expression shall be an integer constant |
| 1966 | // expression. If the array is of unknown size, any |
| 1967 | // nonnegative value is valid. |
| 1968 | // |
| 1969 | // Additionally, cope with the GNU extension that permits |
| 1970 | // designators of the form |
| 1971 | // |
| 1972 | // [ constant-expression ... constant-expression ] |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 1973 | const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1974 | if (!AT) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1975 | if (!VerifyOnly) |
| 1976 | SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array) |
| 1977 | << CurrentObjectType; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1978 | ++Index; |
| 1979 | return true; |
| 1980 | } |
| 1981 | |
| 1982 | Expr *IndexExpr = 0; |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1983 | llvm::APSInt DesignatedStartIndex, DesignatedEndIndex; |
| 1984 | if (D->isArrayDesignator()) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1985 | IndexExpr = DIE->getArrayIndex(*D); |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 1986 | DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1987 | DesignatedEndIndex = DesignatedStartIndex; |
| 1988 | } else { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1989 | assert(D->isArrayRangeDesignator() && "Need array-range designator"); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1990 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1991 | DesignatedStartIndex = |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 1992 | DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1993 | DesignatedEndIndex = |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 1994 | DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1995 | IndexExpr = DIE->getArrayRangeEnd(*D); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 1996 | |
Chris Lattner | e0fd832 | 2011-02-19 22:28:58 +0000 | [diff] [blame] | 1997 | // Codegen can't handle evaluating array range designators that have side |
| 1998 | // effects, because we replicate the AST value for each initialized element. |
| 1999 | // As such, set the sawArrayRangeDesignator() bit if we initialize multiple |
| 2000 | // elements with something that has a side effect, so codegen can emit an |
| 2001 | // "error unsupported" error instead of miscompiling the app. |
| 2002 | if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&& |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2003 | DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly) |
Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 2004 | FullyStructuredList->sawArrayRangeDesignator(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2005 | } |
| 2006 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2007 | if (isa<ConstantArrayType>(AT)) { |
| 2008 | llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2009 | DesignatedStartIndex |
| 2010 | = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2011 | DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned()); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2012 | DesignatedEndIndex |
| 2013 | = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2014 | DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned()); |
| 2015 | if (DesignatedEndIndex >= MaxElements) { |
Eli Friedman | a4e20e1 | 2011-09-26 18:53:43 +0000 | [diff] [blame] | 2016 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2017 | SemaRef.Diag(IndexExpr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2018 | diag::err_array_designator_too_large) |
| 2019 | << DesignatedEndIndex.toString(10) << MaxElements.toString(10) |
| 2020 | << IndexExpr->getSourceRange(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2021 | ++Index; |
| 2022 | return true; |
| 2023 | } |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2024 | } else { |
| 2025 | // Make sure the bit-widths and signedness match. |
| 2026 | if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2027 | DesignatedEndIndex |
| 2028 | = DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth()); |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2029 | else if (DesignatedStartIndex.getBitWidth() < |
| 2030 | DesignatedEndIndex.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2031 | DesignatedStartIndex |
| 2032 | = DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2033 | DesignatedStartIndex.setIsUnsigned(true); |
| 2034 | DesignatedEndIndex.setIsUnsigned(true); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2035 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2036 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2037 | // Make sure that our non-designated initializer list has space |
| 2038 | // for a subobject corresponding to this array element. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2039 | if (!VerifyOnly && |
| 2040 | DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2041 | StructuredList->resizeInits(SemaRef.Context, |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2042 | DesignatedEndIndex.getZExtValue() + 1); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2043 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2044 | // Repeatedly perform subobject initializations in the range |
| 2045 | // [DesignatedStartIndex, DesignatedEndIndex]. |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2046 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2047 | // Move to the next designator |
| 2048 | unsigned ElementIndex = DesignatedStartIndex.getZExtValue(); |
| 2049 | unsigned OldIndex = Index; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2050 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2051 | InitializedEntity ElementEntity = |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 2052 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2053 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2054 | while (DesignatedStartIndex <= DesignatedEndIndex) { |
| 2055 | // Recurse to check later designated subobjects. |
| 2056 | QualType ElementType = AT->getElementType(); |
| 2057 | Index = OldIndex; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2058 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2059 | ElementEntity.setElementIndex(ElementIndex); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2060 | if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1, |
| 2061 | ElementType, 0, 0, Index, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2062 | StructuredList, ElementIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 2063 | (DesignatedStartIndex == DesignatedEndIndex), |
| 2064 | false)) |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2065 | return true; |
| 2066 | |
| 2067 | // Move to the next index in the array that we'll be initializing. |
| 2068 | ++DesignatedStartIndex; |
| 2069 | ElementIndex = DesignatedStartIndex.getZExtValue(); |
| 2070 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2071 | |
| 2072 | // If this the first designator, our caller will continue checking |
| 2073 | // the rest of this array subobject. |
| 2074 | if (IsFirstDesignator) { |
| 2075 | if (NextElementIndex) |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2076 | *NextElementIndex = DesignatedStartIndex; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2077 | StructuredIndex = ElementIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2078 | return false; |
| 2079 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2080 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2081 | if (!FinishSubobjectInit) |
| 2082 | return false; |
| 2083 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2084 | // Check the remaining elements within this array subobject. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2085 | bool prevHadError = hadError; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2086 | CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 2087 | /*SubobjectIsDesignatorContext=*/false, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2088 | StructuredList, ElementIndex); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2089 | return hadError && !prevHadError; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2090 | } |
| 2091 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2092 | // Get the structured initializer list for a subobject of type |
| 2093 | // @p CurrentObjectType. |
| 2094 | InitListExpr * |
| 2095 | InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index, |
| 2096 | QualType CurrentObjectType, |
| 2097 | InitListExpr *StructuredList, |
| 2098 | unsigned StructuredIndex, |
| 2099 | SourceRange InitRange) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2100 | if (VerifyOnly) |
| 2101 | return 0; // No structured list in verification-only mode. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2102 | Expr *ExistingInit = 0; |
| 2103 | if (!StructuredList) |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 2104 | ExistingInit = SyntacticToSemantic.lookup(IList); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2105 | else if (StructuredIndex < StructuredList->getNumInits()) |
| 2106 | ExistingInit = StructuredList->getInit(StructuredIndex); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2107 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2108 | if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit)) |
| 2109 | return Result; |
| 2110 | |
| 2111 | if (ExistingInit) { |
| 2112 | // We are creating an initializer list that initializes the |
| 2113 | // subobjects of the current object, but there was already an |
| 2114 | // initialization that completely initialized the current |
| 2115 | // subobject, e.g., by a compound literal: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2116 | // |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2117 | // struct X { int a, b; }; |
| 2118 | // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2119 | // |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2120 | // Here, xs[0].a == 0 and xs[0].b == 3, since the second, |
| 2121 | // designated initializer re-initializes the whole |
| 2122 | // subobject [0], overwriting previous initializers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2123 | SemaRef.Diag(InitRange.getBegin(), |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 2124 | diag::warn_subobject_initializer_overrides) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2125 | << InitRange; |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2126 | SemaRef.Diag(ExistingInit->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2127 | diag::note_previous_initializer) |
Douglas Gregor | 54f0728 | 2009-01-28 23:43:32 +0000 | [diff] [blame] | 2128 | << /*FIXME:has side effects=*/0 |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2129 | << ExistingInit->getSourceRange(); |
| 2130 | } |
| 2131 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2132 | InitListExpr *Result |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2133 | = new (SemaRef.Context) InitListExpr(SemaRef.Context, |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 2134 | InitRange.getBegin(), None, |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 2135 | InitRange.getEnd()); |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 2136 | |
Eli Friedman | 5c89c39 | 2012-02-23 02:25:10 +0000 | [diff] [blame] | 2137 | QualType ResultType = CurrentObjectType; |
| 2138 | if (!ResultType->isArrayType()) |
| 2139 | ResultType = ResultType.getNonLValueExprType(SemaRef.Context); |
| 2140 | Result->setType(ResultType); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2141 | |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2142 | // Pre-allocate storage for the structured initializer list. |
| 2143 | unsigned NumElements = 0; |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2144 | unsigned NumInits = 0; |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2145 | bool GotNumInits = false; |
| 2146 | if (!StructuredList) { |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2147 | NumInits = IList->getNumInits(); |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2148 | GotNumInits = true; |
| 2149 | } else if (Index < IList->getNumInits()) { |
| 2150 | if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) { |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2151 | NumInits = SubList->getNumInits(); |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2152 | GotNumInits = true; |
| 2153 | } |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2154 | } |
| 2155 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2156 | if (const ArrayType *AType |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2157 | = SemaRef.Context.getAsArrayType(CurrentObjectType)) { |
| 2158 | if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) { |
| 2159 | NumElements = CAType->getSize().getZExtValue(); |
| 2160 | // Simple heuristic so that we don't allocate a very large |
| 2161 | // initializer with many empty entries at the end. |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2162 | if (GotNumInits && NumElements > NumInits) |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2163 | NumElements = 0; |
| 2164 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2165 | } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>()) |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2166 | NumElements = VType->getNumElements(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2167 | else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) { |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2168 | RecordDecl *RDecl = RType->getDecl(); |
| 2169 | if (RDecl->isUnion()) |
| 2170 | NumElements = 1; |
| 2171 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2172 | NumElements = std::distance(RDecl->field_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2173 | RDecl->field_end()); |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2176 | Result->reserveInits(SemaRef.Context, NumElements); |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2177 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2178 | // Link this new initializer list into the structured initializer |
| 2179 | // lists. |
| 2180 | if (StructuredList) |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2181 | StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2182 | else { |
| 2183 | Result->setSyntacticForm(IList); |
| 2184 | SyntacticToSemantic[IList] = Result; |
| 2185 | } |
| 2186 | |
| 2187 | return Result; |
| 2188 | } |
| 2189 | |
| 2190 | /// Update the initializer at index @p StructuredIndex within the |
| 2191 | /// structured initializer list to the value @p expr. |
| 2192 | void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList, |
| 2193 | unsigned &StructuredIndex, |
| 2194 | Expr *expr) { |
| 2195 | // No structured initializer list to update |
| 2196 | if (!StructuredList) |
| 2197 | return; |
| 2198 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2199 | if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context, |
| 2200 | StructuredIndex, expr)) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2201 | // This initializer overwrites a previous initializer. Warn. |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2202 | SemaRef.Diag(expr->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2203 | diag::warn_initializer_overrides) |
| 2204 | << expr->getSourceRange(); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2205 | SemaRef.Diag(PrevInit->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2206 | diag::note_previous_initializer) |
Douglas Gregor | 54f0728 | 2009-01-28 23:43:32 +0000 | [diff] [blame] | 2207 | << /*FIXME:has side effects=*/0 |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2208 | << PrevInit->getSourceRange(); |
| 2209 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2210 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2211 | ++StructuredIndex; |
| 2212 | } |
| 2213 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2214 | /// Check that the given Index expression is a valid array designator |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2215 | /// value. This is essentially just a wrapper around |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2216 | /// VerifyIntegerConstantExpression that also checks for negative values |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2217 | /// and produces a reasonable diagnostic if there is a |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2218 | /// failure. Returns the index expression, possibly with an implicit cast |
| 2219 | /// added, on success. If everything went okay, Value will receive the |
| 2220 | /// value of the constant expression. |
| 2221 | static ExprResult |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2222 | CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2223 | SourceLocation Loc = Index->getLocStart(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2224 | |
| 2225 | // Make sure this is an integer constant expression. |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2226 | ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value); |
| 2227 | if (Result.isInvalid()) |
| 2228 | return Result; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2229 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2230 | if (Value.isSigned() && Value.isNegative()) |
| 2231 | return S.Diag(Loc, diag::err_array_designator_negative) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2232 | << Value.toString(10) << Index->getSourceRange(); |
| 2233 | |
Douglas Gregor | 53d3d8e | 2009-01-23 21:04:18 +0000 | [diff] [blame] | 2234 | Value.setIsUnsigned(true); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2235 | return Result; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2238 | ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig, |
Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 2239 | SourceLocation Loc, |
| 2240 | bool GNUSyntax, |
| 2241 | ExprResult Init) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2242 | typedef DesignatedInitExpr::Designator ASTDesignator; |
| 2243 | |
| 2244 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2245 | SmallVector<ASTDesignator, 32> Designators; |
| 2246 | SmallVector<Expr *, 32> InitExpressions; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2247 | |
| 2248 | // Build designators and check array designator expressions. |
| 2249 | for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) { |
| 2250 | const Designator &D = Desig.getDesignator(Idx); |
| 2251 | switch (D.getKind()) { |
| 2252 | case Designator::FieldDesignator: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2253 | Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2254 | D.getFieldLoc())); |
| 2255 | break; |
| 2256 | |
| 2257 | case Designator::ArrayDesignator: { |
| 2258 | Expr *Index = static_cast<Expr *>(D.getArrayIndex()); |
| 2259 | llvm::APSInt IndexValue; |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2260 | if (!Index->isTypeDependent() && !Index->isValueDependent()) |
| 2261 | Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).take(); |
| 2262 | if (!Index) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2263 | Invalid = true; |
| 2264 | else { |
| 2265 | Designators.push_back(ASTDesignator(InitExpressions.size(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2266 | D.getLBracketLoc(), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2267 | D.getRBracketLoc())); |
| 2268 | InitExpressions.push_back(Index); |
| 2269 | } |
| 2270 | break; |
| 2271 | } |
| 2272 | |
| 2273 | case Designator::ArrayRangeDesignator: { |
| 2274 | Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart()); |
| 2275 | Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd()); |
| 2276 | llvm::APSInt StartValue; |
| 2277 | llvm::APSInt EndValue; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2278 | bool StartDependent = StartIndex->isTypeDependent() || |
| 2279 | StartIndex->isValueDependent(); |
| 2280 | bool EndDependent = EndIndex->isTypeDependent() || |
| 2281 | EndIndex->isValueDependent(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2282 | if (!StartDependent) |
| 2283 | StartIndex = |
| 2284 | CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take(); |
| 2285 | if (!EndDependent) |
| 2286 | EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).take(); |
| 2287 | |
| 2288 | if (!StartIndex || !EndIndex) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2289 | Invalid = true; |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2290 | else { |
| 2291 | // Make sure we're comparing values with the same bit width. |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2292 | if (StartDependent || EndDependent) { |
| 2293 | // Nothing to compute. |
| 2294 | } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2295 | EndValue = EndValue.extend(StartValue.getBitWidth()); |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2296 | else if (StartValue.getBitWidth() < EndValue.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2297 | StartValue = StartValue.extend(EndValue.getBitWidth()); |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2298 | |
Douglas Gregor | c4bb7bf | 2009-05-21 23:30:39 +0000 | [diff] [blame] | 2299 | if (!StartDependent && !EndDependent && EndValue < StartValue) { |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2300 | Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2301 | << StartValue.toString(10) << EndValue.toString(10) |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2302 | << StartIndex->getSourceRange() << EndIndex->getSourceRange(); |
| 2303 | Invalid = true; |
| 2304 | } else { |
| 2305 | Designators.push_back(ASTDesignator(InitExpressions.size(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2306 | D.getLBracketLoc(), |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2307 | D.getEllipsisLoc(), |
| 2308 | D.getRBracketLoc())); |
| 2309 | InitExpressions.push_back(StartIndex); |
| 2310 | InitExpressions.push_back(EndIndex); |
| 2311 | } |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2312 | } |
| 2313 | break; |
| 2314 | } |
| 2315 | } |
| 2316 | } |
| 2317 | |
| 2318 | if (Invalid || Init.isInvalid()) |
| 2319 | return ExprError(); |
| 2320 | |
| 2321 | // Clear out the expressions within the designation. |
| 2322 | Desig.ClearExprs(*this); |
| 2323 | |
| 2324 | DesignatedInitExpr *DIE |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 2325 | = DesignatedInitExpr::Create(Context, |
| 2326 | Designators.data(), Designators.size(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 2327 | InitExpressions, Loc, GNUSyntax, |
| 2328 | Init.takeAs<Expr>()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2329 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2330 | if (!getLangOpts().C99) |
Douglas Gregor | 2d75bbd | 2011-01-16 16:13:16 +0000 | [diff] [blame] | 2331 | Diag(DIE->getLocStart(), diag::ext_designated_init) |
| 2332 | << DIE->getSourceRange(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2333 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2334 | return Owned(DIE); |
| 2335 | } |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 2336 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2337 | //===----------------------------------------------------------------------===// |
| 2338 | // Initialization entity |
| 2339 | //===----------------------------------------------------------------------===// |
| 2340 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2341 | InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 2342 | const InitializedEntity &Parent) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2343 | : Parent(&Parent), Index(Index) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 2344 | { |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2345 | if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) { |
| 2346 | Kind = EK_ArrayElement; |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 2347 | Type = AT->getElementType(); |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2348 | } else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) { |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2349 | Kind = EK_VectorElement; |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2350 | Type = VT->getElementType(); |
| 2351 | } else { |
| 2352 | const ComplexType *CT = Parent.getType()->getAs<ComplexType>(); |
| 2353 | assert(CT && "Unexpected type"); |
| 2354 | Kind = EK_ComplexElement; |
| 2355 | Type = CT->getElementType(); |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2356 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2357 | } |
| 2358 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2359 | InitializedEntity InitializedEntity::InitializeBase(ASTContext &Context, |
Anders Carlsson | 711f34a | 2010-04-21 19:52:01 +0000 | [diff] [blame] | 2360 | CXXBaseSpecifier *Base, |
| 2361 | bool IsInheritedVirtualBase) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2362 | { |
| 2363 | InitializedEntity Result; |
| 2364 | Result.Kind = EK_Base; |
Anders Carlsson | 711f34a | 2010-04-21 19:52:01 +0000 | [diff] [blame] | 2365 | Result.Base = reinterpret_cast<uintptr_t>(Base); |
| 2366 | if (IsInheritedVirtualBase) |
| 2367 | Result.Base |= 0x01; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2368 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 2369 | Result.Type = Base->getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2370 | return Result; |
| 2371 | } |
| 2372 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2373 | DeclarationName InitializedEntity::getName() const { |
| 2374 | switch (getKind()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2375 | case EK_Parameter: { |
| 2376 | ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1); |
| 2377 | return (D ? D->getDeclName() : DeclarationName()); |
| 2378 | } |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 2379 | |
| 2380 | case EK_Variable: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2381 | case EK_Member: |
| 2382 | return VariableOrMember->getDeclName(); |
| 2383 | |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2384 | case EK_LambdaCapture: |
| 2385 | return Capture.Var->getDeclName(); |
| 2386 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2387 | case EK_Result: |
| 2388 | case EK_Exception: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2389 | case EK_New: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2390 | case EK_Temporary: |
| 2391 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2392 | case EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2393 | case EK_ArrayElement: |
| 2394 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2395 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2396 | case EK_BlockElement: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2397 | case EK_CompoundLiteralInit: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2398 | return DeclarationName(); |
| 2399 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2400 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2401 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2402 | } |
| 2403 | |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2404 | DeclaratorDecl *InitializedEntity::getDecl() const { |
| 2405 | switch (getKind()) { |
| 2406 | case EK_Variable: |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2407 | case EK_Member: |
| 2408 | return VariableOrMember; |
| 2409 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2410 | case EK_Parameter: |
| 2411 | return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1); |
| 2412 | |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2413 | case EK_Result: |
| 2414 | case EK_Exception: |
| 2415 | case EK_New: |
| 2416 | case EK_Temporary: |
| 2417 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2418 | case EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2419 | case EK_ArrayElement: |
| 2420 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2421 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2422 | case EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2423 | case EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2424 | case EK_CompoundLiteralInit: |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2425 | return 0; |
| 2426 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2427 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2428 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2429 | } |
| 2430 | |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2431 | bool InitializedEntity::allowsNRVO() const { |
| 2432 | switch (getKind()) { |
| 2433 | case EK_Result: |
| 2434 | case EK_Exception: |
| 2435 | return LocAndNRVO.NRVO; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2436 | |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2437 | case EK_Variable: |
| 2438 | case EK_Parameter: |
| 2439 | case EK_Member: |
| 2440 | case EK_New: |
| 2441 | case EK_Temporary: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2442 | case EK_CompoundLiteralInit: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2443 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2444 | case EK_Delegating: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2445 | case EK_ArrayElement: |
| 2446 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2447 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2448 | case EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2449 | case EK_LambdaCapture: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2450 | break; |
| 2451 | } |
| 2452 | |
| 2453 | return false; |
| 2454 | } |
| 2455 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2456 | //===----------------------------------------------------------------------===// |
| 2457 | // Initialization sequence |
| 2458 | //===----------------------------------------------------------------------===// |
| 2459 | |
| 2460 | void InitializationSequence::Step::Destroy() { |
| 2461 | switch (Kind) { |
| 2462 | case SK_ResolveAddressOfOverloadedFunction: |
| 2463 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2464 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2465 | case SK_CastDerivedToBaseLValue: |
| 2466 | case SK_BindReference: |
| 2467 | case SK_BindReferenceToTemporary: |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 2468 | case SK_ExtraneousCopyToTemporary: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2469 | case SK_UserConversion: |
| 2470 | case SK_QualificationConversionRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2471 | case SK_QualificationConversionXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2472 | case SK_QualificationConversionLValue: |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 2473 | case SK_LValueToRValue: |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 2474 | case SK_ListInitialization: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 2475 | case SK_ListConstructorCall: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 2476 | case SK_UnwrapInitList: |
| 2477 | case SK_RewrapInitList: |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2478 | case SK_ConstructorInitialization: |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 2479 | case SK_ZeroInitialization: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2480 | case SK_CAssignment: |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 2481 | case SK_StringInit: |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 2482 | case SK_ObjCObjectConversion: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2483 | case SK_ArrayInit: |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 2484 | case SK_ParenthesizedArrayInit: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2485 | case SK_PassByIndirectCopyRestore: |
| 2486 | case SK_PassByIndirectRestore: |
| 2487 | case SK_ProduceObjCObject: |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 2488 | case SK_StdInitializerList: |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 2489 | case SK_OCLSamplerInit: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 2490 | case SK_OCLZeroEvent: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2491 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2492 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2493 | case SK_ConversionSequence: |
| 2494 | delete ICS; |
| 2495 | } |
| 2496 | } |
| 2497 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2498 | bool InitializationSequence::isDirectReferenceBinding() const { |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 2499 | return !Steps.empty() && Steps.back().Kind == SK_BindReference; |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2500 | } |
| 2501 | |
| 2502 | bool InitializationSequence::isAmbiguous() const { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 2503 | if (!Failed()) |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2504 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2505 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2506 | switch (getFailureKind()) { |
| 2507 | case FK_TooManyInitsForReference: |
| 2508 | case FK_ArrayNeedsInitList: |
| 2509 | case FK_ArrayNeedsInitListOrStringLiteral: |
| 2510 | case FK_AddressOfOverloadFailed: // FIXME: Could do better |
| 2511 | case FK_NonConstLValueReferenceBindingToTemporary: |
| 2512 | case FK_NonConstLValueReferenceBindingToUnrelated: |
| 2513 | case FK_RValueReferenceBindingToLValue: |
| 2514 | case FK_ReferenceInitDropsQualifiers: |
| 2515 | case FK_ReferenceInitFailed: |
| 2516 | case FK_ConversionFailed: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2517 | case FK_ConversionFromPropertyFailed: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2518 | case FK_TooManyInitsForScalar: |
| 2519 | case FK_ReferenceBindingToInitList: |
| 2520 | case FK_InitListBadDestinationType: |
| 2521 | case FK_DefaultInitOfConst: |
Douglas Gregor | 72a43bb | 2010-05-20 22:12:02 +0000 | [diff] [blame] | 2522 | case FK_Incomplete: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2523 | case FK_ArrayTypeMismatch: |
| 2524 | case FK_NonConstantArrayInit: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 2525 | case FK_ListInitializationFailed: |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 2526 | case FK_VariableLengthArrayHasInitializer: |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2527 | case FK_PlaceholderType: |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 2528 | case FK_InitListElementCopyFailure: |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 2529 | case FK_ExplicitConstructor: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2530 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2531 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2532 | case FK_ReferenceInitOverloadFailed: |
| 2533 | case FK_UserConversionOverloadFailed: |
| 2534 | case FK_ConstructorOverloadFailed: |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 2535 | case FK_ListConstructorOverloadFailed: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2536 | return FailedOverloadResult == OR_Ambiguous; |
| 2537 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2538 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2539 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2540 | } |
| 2541 | |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 2542 | bool InitializationSequence::isConstructorInitialization() const { |
| 2543 | return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization; |
| 2544 | } |
| 2545 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2546 | void |
| 2547 | InitializationSequence |
| 2548 | ::AddAddressOverloadResolutionStep(FunctionDecl *Function, |
| 2549 | DeclAccessPair Found, |
| 2550 | bool HadMultipleCandidates) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2551 | Step S; |
| 2552 | S.Kind = SK_ResolveAddressOfOverloadedFunction; |
| 2553 | S.Type = Function->getType(); |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2554 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2555 | S.Function.Function = Function; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2556 | S.Function.FoundDecl = Found; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2557 | Steps.push_back(S); |
| 2558 | } |
| 2559 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2560 | void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2561 | ExprValueKind VK) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2562 | Step S; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2563 | switch (VK) { |
| 2564 | case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break; |
| 2565 | case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break; |
| 2566 | case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2567 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2568 | S.Type = BaseType; |
| 2569 | Steps.push_back(S); |
| 2570 | } |
| 2571 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2572 | void InitializationSequence::AddReferenceBindingStep(QualType T, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2573 | bool BindingTemporary) { |
| 2574 | Step S; |
| 2575 | S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference; |
| 2576 | S.Type = T; |
| 2577 | Steps.push_back(S); |
| 2578 | } |
| 2579 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 2580 | void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) { |
| 2581 | Step S; |
| 2582 | S.Kind = SK_ExtraneousCopyToTemporary; |
| 2583 | S.Type = T; |
| 2584 | Steps.push_back(S); |
| 2585 | } |
| 2586 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2587 | void |
| 2588 | InitializationSequence::AddUserConversionStep(FunctionDecl *Function, |
| 2589 | DeclAccessPair FoundDecl, |
| 2590 | QualType T, |
| 2591 | bool HadMultipleCandidates) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2592 | Step S; |
| 2593 | S.Kind = SK_UserConversion; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 2594 | S.Type = T; |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2595 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2596 | S.Function.Function = Function; |
| 2597 | S.Function.FoundDecl = FoundDecl; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2598 | Steps.push_back(S); |
| 2599 | } |
| 2600 | |
| 2601 | void InitializationSequence::AddQualificationConversionStep(QualType Ty, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2602 | ExprValueKind VK) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2603 | Step S; |
John McCall | 38a4ffe | 2010-08-26 16:36:35 +0000 | [diff] [blame] | 2604 | S.Kind = SK_QualificationConversionRValue; // work around a gcc warning |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2605 | switch (VK) { |
| 2606 | case VK_RValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2607 | S.Kind = SK_QualificationConversionRValue; |
| 2608 | break; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2609 | case VK_XValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2610 | S.Kind = SK_QualificationConversionXValue; |
| 2611 | break; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2612 | case VK_LValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2613 | S.Kind = SK_QualificationConversionLValue; |
| 2614 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2615 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2616 | S.Type = Ty; |
| 2617 | Steps.push_back(S); |
| 2618 | } |
| 2619 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 2620 | void InitializationSequence::AddLValueToRValueStep(QualType Ty) { |
| 2621 | assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers"); |
| 2622 | |
| 2623 | Step S; |
| 2624 | S.Kind = SK_LValueToRValue; |
| 2625 | S.Type = Ty; |
| 2626 | Steps.push_back(S); |
| 2627 | } |
| 2628 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2629 | void InitializationSequence::AddConversionSequenceStep( |
| 2630 | const ImplicitConversionSequence &ICS, |
| 2631 | QualType T) { |
| 2632 | Step S; |
| 2633 | S.Kind = SK_ConversionSequence; |
| 2634 | S.Type = T; |
| 2635 | S.ICS = new ImplicitConversionSequence(ICS); |
| 2636 | Steps.push_back(S); |
| 2637 | } |
| 2638 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 2639 | void InitializationSequence::AddListInitializationStep(QualType T) { |
| 2640 | Step S; |
| 2641 | S.Kind = SK_ListInitialization; |
| 2642 | S.Type = T; |
| 2643 | Steps.push_back(S); |
| 2644 | } |
| 2645 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2646 | void |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2647 | InitializationSequence |
| 2648 | ::AddConstructorInitializationStep(CXXConstructorDecl *Constructor, |
| 2649 | AccessSpecifier Access, |
| 2650 | QualType T, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2651 | bool HadMultipleCandidates, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2652 | bool FromInitList, bool AsInitList) { |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2653 | Step S; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2654 | S.Kind = FromInitList && !AsInitList ? SK_ListConstructorCall |
| 2655 | : SK_ConstructorInitialization; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2656 | S.Type = T; |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2657 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2658 | S.Function.Function = Constructor; |
| 2659 | S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2660 | Steps.push_back(S); |
| 2661 | } |
| 2662 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 2663 | void InitializationSequence::AddZeroInitializationStep(QualType T) { |
| 2664 | Step S; |
| 2665 | S.Kind = SK_ZeroInitialization; |
| 2666 | S.Type = T; |
| 2667 | Steps.push_back(S); |
| 2668 | } |
| 2669 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2670 | void InitializationSequence::AddCAssignmentStep(QualType T) { |
| 2671 | Step S; |
| 2672 | S.Kind = SK_CAssignment; |
| 2673 | S.Type = T; |
| 2674 | Steps.push_back(S); |
| 2675 | } |
| 2676 | |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 2677 | void InitializationSequence::AddStringInitStep(QualType T) { |
| 2678 | Step S; |
| 2679 | S.Kind = SK_StringInit; |
| 2680 | S.Type = T; |
| 2681 | Steps.push_back(S); |
| 2682 | } |
| 2683 | |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 2684 | void InitializationSequence::AddObjCObjectConversionStep(QualType T) { |
| 2685 | Step S; |
| 2686 | S.Kind = SK_ObjCObjectConversion; |
| 2687 | S.Type = T; |
| 2688 | Steps.push_back(S); |
| 2689 | } |
| 2690 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2691 | void InitializationSequence::AddArrayInitStep(QualType T) { |
| 2692 | Step S; |
| 2693 | S.Kind = SK_ArrayInit; |
| 2694 | S.Type = T; |
| 2695 | Steps.push_back(S); |
| 2696 | } |
| 2697 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 2698 | void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) { |
| 2699 | Step S; |
| 2700 | S.Kind = SK_ParenthesizedArrayInit; |
| 2701 | S.Type = T; |
| 2702 | Steps.push_back(S); |
| 2703 | } |
| 2704 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2705 | void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type, |
| 2706 | bool shouldCopy) { |
| 2707 | Step s; |
| 2708 | s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore |
| 2709 | : SK_PassByIndirectRestore); |
| 2710 | s.Type = type; |
| 2711 | Steps.push_back(s); |
| 2712 | } |
| 2713 | |
| 2714 | void InitializationSequence::AddProduceObjCObjectStep(QualType T) { |
| 2715 | Step S; |
| 2716 | S.Kind = SK_ProduceObjCObject; |
| 2717 | S.Type = T; |
| 2718 | Steps.push_back(S); |
| 2719 | } |
| 2720 | |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 2721 | void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) { |
| 2722 | Step S; |
| 2723 | S.Kind = SK_StdInitializerList; |
| 2724 | S.Type = T; |
| 2725 | Steps.push_back(S); |
| 2726 | } |
| 2727 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 2728 | void InitializationSequence::AddOCLSamplerInitStep(QualType T) { |
| 2729 | Step S; |
| 2730 | S.Kind = SK_OCLSamplerInit; |
| 2731 | S.Type = T; |
| 2732 | Steps.push_back(S); |
| 2733 | } |
| 2734 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 2735 | void InitializationSequence::AddOCLZeroEventStep(QualType T) { |
| 2736 | Step S; |
| 2737 | S.Kind = SK_OCLZeroEvent; |
| 2738 | S.Type = T; |
| 2739 | Steps.push_back(S); |
| 2740 | } |
| 2741 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 2742 | void InitializationSequence::RewrapReferenceInitList(QualType T, |
| 2743 | InitListExpr *Syntactic) { |
| 2744 | assert(Syntactic->getNumInits() == 1 && |
| 2745 | "Can only rewrap trivial init lists."); |
| 2746 | Step S; |
| 2747 | S.Kind = SK_UnwrapInitList; |
| 2748 | S.Type = Syntactic->getInit(0)->getType(); |
| 2749 | Steps.insert(Steps.begin(), S); |
| 2750 | |
| 2751 | S.Kind = SK_RewrapInitList; |
| 2752 | S.Type = T; |
| 2753 | S.WrappingSyntacticList = Syntactic; |
| 2754 | Steps.push_back(S); |
| 2755 | } |
| 2756 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2757 | void InitializationSequence::SetOverloadFailure(FailureKind Failure, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2758 | OverloadingResult Result) { |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 2759 | setSequenceKind(FailedSequence); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2760 | this->Failure = Failure; |
| 2761 | this->FailedOverloadResult = Result; |
| 2762 | } |
| 2763 | |
| 2764 | //===----------------------------------------------------------------------===// |
| 2765 | // Attempt initialization |
| 2766 | //===----------------------------------------------------------------------===// |
| 2767 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2768 | static void MaybeProduceObjCObject(Sema &S, |
| 2769 | InitializationSequence &Sequence, |
| 2770 | const InitializedEntity &Entity) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2771 | if (!S.getLangOpts().ObjCAutoRefCount) return; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2772 | |
| 2773 | /// When initializing a parameter, produce the value if it's marked |
| 2774 | /// __attribute__((ns_consumed)). |
| 2775 | if (Entity.getKind() == InitializedEntity::EK_Parameter) { |
| 2776 | if (!Entity.isParameterConsumed()) |
| 2777 | return; |
| 2778 | |
| 2779 | assert(Entity.getType()->isObjCRetainableType() && |
| 2780 | "consuming an object of unretainable type?"); |
| 2781 | Sequence.AddProduceObjCObjectStep(Entity.getType()); |
| 2782 | |
| 2783 | /// When initializing a return value, if the return type is a |
| 2784 | /// retainable type, then returns need to immediately retain the |
| 2785 | /// object. If an autorelease is required, it will be done at the |
| 2786 | /// last instant. |
| 2787 | } else if (Entity.getKind() == InitializedEntity::EK_Result) { |
| 2788 | if (!Entity.getType()->isObjCRetainableType()) |
| 2789 | return; |
| 2790 | |
| 2791 | Sequence.AddProduceObjCObjectStep(Entity.getType()); |
| 2792 | } |
| 2793 | } |
| 2794 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2795 | /// \brief When initializing from init list via constructor, handle |
| 2796 | /// initialization of an object of type std::initializer_list<T>. |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2797 | /// |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2798 | /// \return true if we have handled initialization of an object of type |
| 2799 | /// std::initializer_list<T>, false otherwise. |
| 2800 | static bool TryInitializerListConstruction(Sema &S, |
| 2801 | InitListExpr *List, |
| 2802 | QualType DestType, |
| 2803 | InitializationSequence &Sequence) { |
| 2804 | QualType E; |
| 2805 | if (!S.isStdInitializerList(DestType, &E)) |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 2806 | return false; |
| 2807 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2808 | // Check that each individual element can be copy-constructed. But since we |
| 2809 | // have no place to store further information, we'll recalculate everything |
| 2810 | // later. |
| 2811 | InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary( |
| 2812 | S.Context.getConstantArrayType(E, |
| 2813 | llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()), |
| 2814 | List->getNumInits()), |
| 2815 | ArrayType::Normal, 0)); |
| 2816 | InitializedEntity Element = InitializedEntity::InitializeElement(S.Context, |
| 2817 | 0, HiddenArray); |
| 2818 | for (unsigned i = 0, n = List->getNumInits(); i < n; ++i) { |
| 2819 | Element.setElementIndex(i); |
| 2820 | if (!S.CanPerformCopyInitialization(Element, List->getInit(i))) { |
| 2821 | Sequence.SetFailed( |
| 2822 | InitializationSequence::FK_InitListElementCopyFailure); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2823 | return true; |
| 2824 | } |
| 2825 | } |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2826 | Sequence.AddStdInitializerListConstructionStep(DestType); |
| 2827 | return true; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2828 | } |
| 2829 | |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2830 | static OverloadingResult |
| 2831 | ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2832 | MultiExprArg Args, |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2833 | OverloadCandidateSet &CandidateSet, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 2834 | ArrayRef<NamedDecl *> Ctors, |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2835 | OverloadCandidateSet::iterator &Best, |
| 2836 | bool CopyInitializing, bool AllowExplicit, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 2837 | bool OnlyListConstructors, bool InitListSyntax) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2838 | CandidateSet.clear(); |
| 2839 | |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 2840 | for (ArrayRef<NamedDecl *>::iterator |
| 2841 | Con = Ctors.begin(), ConEnd = Ctors.end(); Con != ConEnd; ++Con) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2842 | NamedDecl *D = *Con; |
| 2843 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
| 2844 | bool SuppressUserConversions = false; |
| 2845 | |
| 2846 | // Find the constructor (which may be a template). |
| 2847 | CXXConstructorDecl *Constructor = 0; |
| 2848 | FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D); |
| 2849 | if (ConstructorTmpl) |
| 2850 | Constructor = cast<CXXConstructorDecl>( |
| 2851 | ConstructorTmpl->getTemplatedDecl()); |
| 2852 | else { |
| 2853 | Constructor = cast<CXXConstructorDecl>(D); |
| 2854 | |
| 2855 | // If we're performing copy initialization using a copy constructor, we |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 2856 | // suppress user-defined conversions on the arguments. We do the same for |
| 2857 | // move constructors. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2858 | if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) && |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 2859 | Constructor->isCopyOrMoveConstructor()) |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2860 | SuppressUserConversions = true; |
| 2861 | } |
| 2862 | |
| 2863 | if (!Constructor->isInvalidDecl() && |
| 2864 | (AllowExplicit || !Constructor->isExplicit()) && |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2865 | (!OnlyListConstructors || S.isInitListConstructor(Constructor))) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2866 | if (ConstructorTmpl) |
| 2867 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2868 | /*ExplicitArgs*/ 0, Args, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 2869 | CandidateSet, SuppressUserConversions); |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 2870 | else { |
| 2871 | // C++ [over.match.copy]p1: |
| 2872 | // - When initializing a temporary to be bound to the first parameter |
| 2873 | // of a constructor that takes a reference to possibly cv-qualified |
| 2874 | // T as its first argument, called with a single argument in the |
| 2875 | // context of direct-initialization, explicit conversion functions |
| 2876 | // are also considered. |
| 2877 | bool AllowExplicitConv = AllowExplicit && !CopyInitializing && |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2878 | Args.size() == 1 && |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 2879 | Constructor->isCopyOrMoveConstructor(); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2880 | S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 2881 | SuppressUserConversions, |
| 2882 | /*PartialOverloading=*/false, |
| 2883 | /*AllowExplicit=*/AllowExplicitConv); |
| 2884 | } |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2885 | } |
| 2886 | } |
| 2887 | |
| 2888 | // Perform overload resolution and return the result. |
| 2889 | return CandidateSet.BestViableFunction(S, DeclLoc, Best); |
| 2890 | } |
| 2891 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2892 | /// \brief Attempt initialization by constructor (C++ [dcl.init]), which |
| 2893 | /// enumerates the constructors of the initialized entity and performs overload |
| 2894 | /// resolution to select the best. |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 2895 | /// If InitListSyntax is true, this is list-initialization of a non-aggregate |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2896 | /// class type. |
| 2897 | static void TryConstructorInitialization(Sema &S, |
| 2898 | const InitializedEntity &Entity, |
| 2899 | const InitializationKind &Kind, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2900 | MultiExprArg Args, QualType DestType, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2901 | InitializationSequence &Sequence, |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 2902 | bool InitListSyntax = false) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2903 | assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) && |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 2904 | "InitListSyntax must come with a single initializer list argument."); |
| 2905 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2906 | // The type we're constructing needs to be complete. |
| 2907 | if (S.RequireCompleteType(Kind.getLocation(), DestType, 0)) { |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 2908 | Sequence.setIncompleteTypeFailure(DestType); |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2909 | return; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2910 | } |
| 2911 | |
| 2912 | const RecordType *DestRecordType = DestType->getAs<RecordType>(); |
| 2913 | assert(DestRecordType && "Constructor initialization requires record type"); |
| 2914 | CXXRecordDecl *DestRecordDecl |
| 2915 | = cast<CXXRecordDecl>(DestRecordType->getDecl()); |
| 2916 | |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 2917 | // Build the candidate set directly in the initialization sequence |
| 2918 | // structure, so that it will persist if we fail. |
| 2919 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 2920 | |
| 2921 | // Determine whether we are allowed to call explicit constructors or |
| 2922 | // explicit conversion operators. |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 2923 | bool AllowExplicit = Kind.AllowExplicit() || InitListSyntax; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2924 | bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy; |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 2925 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2926 | // - Otherwise, if T is a class type, constructors are considered. The |
| 2927 | // applicable constructors are enumerated, and the best one is chosen |
| 2928 | // through overload resolution. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2929 | DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 2930 | // The container holding the constructors can under certain conditions |
| 2931 | // be changed while iterating (e.g. because of deserialization). |
| 2932 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2933 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2934 | |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2935 | OverloadingResult Result = OR_No_Viable_Function; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2936 | OverloadCandidateSet::iterator Best; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2937 | bool AsInitializerList = false; |
| 2938 | |
| 2939 | // C++11 [over.match.list]p1: |
| 2940 | // When objects of non-aggregate type T are list-initialized, overload |
| 2941 | // resolution selects the constructor in two phases: |
| 2942 | // - Initially, the candidate functions are the initializer-list |
| 2943 | // constructors of the class T and the argument list consists of the |
| 2944 | // initializer list as a single argument. |
| 2945 | if (InitListSyntax) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2946 | InitListExpr *ILE = cast<InitListExpr>(Args[0]); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2947 | AsInitializerList = true; |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2948 | |
| 2949 | // If the initializer list has no elements and T has a default constructor, |
| 2950 | // the first phase is omitted. |
Richard Smith | e5411b7 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2951 | if (ILE->getNumInits() != 0 || !DestRecordDecl->hasDefaultConstructor()) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2952 | Result = ResolveConstructorOverload(S, Kind.getLocation(), Args, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 2953 | CandidateSet, Ctors, Best, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2954 | CopyInitialization, AllowExplicit, |
| 2955 | /*OnlyListConstructor=*/true, |
| 2956 | InitListSyntax); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2957 | |
| 2958 | // Time to unwrap the init list. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2959 | Args = MultiExprArg(ILE->getInits(), ILE->getNumInits()); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2960 | } |
| 2961 | |
| 2962 | // C++11 [over.match.list]p1: |
| 2963 | // - If no viable initializer-list constructor is found, overload resolution |
| 2964 | // is performed again, where the candidate functions are all the |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2965 | // constructors of the class T and the argument list consists of the |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2966 | // elements of the initializer list. |
| 2967 | if (Result == OR_No_Viable_Function) { |
| 2968 | AsInitializerList = false; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 2969 | Result = ResolveConstructorOverload(S, Kind.getLocation(), Args, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 2970 | CandidateSet, Ctors, Best, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2971 | CopyInitialization, AllowExplicit, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 2972 | /*OnlyListConstructors=*/false, |
| 2973 | InitListSyntax); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2974 | } |
| 2975 | if (Result) { |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 2976 | Sequence.SetOverloadFailure(InitListSyntax ? |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 2977 | InitializationSequence::FK_ListConstructorOverloadFailed : |
| 2978 | InitializationSequence::FK_ConstructorOverloadFailed, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2979 | Result); |
| 2980 | return; |
| 2981 | } |
| 2982 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2983 | // C++11 [dcl.init]p6: |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2984 | // If a program calls for the default initialization of an object |
| 2985 | // of a const-qualified type T, T shall be a class type with a |
| 2986 | // user-provided default constructor. |
| 2987 | if (Kind.getKind() == InitializationKind::IK_Default && |
| 2988 | Entity.getType().isConstQualified() && |
Aaron Ballman | 5121781 | 2012-07-31 22:40:31 +0000 | [diff] [blame] | 2989 | !cast<CXXConstructorDecl>(Best->Function)->isUserProvided()) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2990 | Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst); |
| 2991 | return; |
| 2992 | } |
| 2993 | |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 2994 | // C++11 [over.match.list]p1: |
| 2995 | // In copy-list-initialization, if an explicit constructor is chosen, the |
| 2996 | // initializer is ill-formed. |
| 2997 | CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function); |
| 2998 | if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) { |
| 2999 | Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor); |
| 3000 | return; |
| 3001 | } |
| 3002 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3003 | // Add the constructor initialization step. Any cv-qualification conversion is |
| 3004 | // subsumed by the initialization. |
| 3005 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3006 | Sequence.AddConstructorInitializationStep(CtorDecl, |
| 3007 | Best->FoundDecl.getAccess(), |
| 3008 | DestType, HadMultipleCandidates, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3009 | InitListSyntax, AsInitializerList); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3010 | } |
| 3011 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3012 | static bool |
| 3013 | ResolveOverloadedFunctionForReferenceBinding(Sema &S, |
| 3014 | Expr *Initializer, |
| 3015 | QualType &SourceType, |
| 3016 | QualType &UnqualifiedSourceType, |
| 3017 | QualType UnqualifiedTargetType, |
| 3018 | InitializationSequence &Sequence) { |
| 3019 | if (S.Context.getCanonicalType(UnqualifiedSourceType) == |
| 3020 | S.Context.OverloadTy) { |
| 3021 | DeclAccessPair Found; |
| 3022 | bool HadMultipleCandidates = false; |
| 3023 | if (FunctionDecl *Fn |
| 3024 | = S.ResolveAddressOfOverloadedFunction(Initializer, |
| 3025 | UnqualifiedTargetType, |
| 3026 | false, Found, |
| 3027 | &HadMultipleCandidates)) { |
| 3028 | Sequence.AddAddressOverloadResolutionStep(Fn, Found, |
| 3029 | HadMultipleCandidates); |
| 3030 | SourceType = Fn->getType(); |
| 3031 | UnqualifiedSourceType = SourceType.getUnqualifiedType(); |
| 3032 | } else if (!UnqualifiedTargetType->isRecordType()) { |
| 3033 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
| 3034 | return true; |
| 3035 | } |
| 3036 | } |
| 3037 | return false; |
| 3038 | } |
| 3039 | |
| 3040 | static void TryReferenceInitializationCore(Sema &S, |
| 3041 | const InitializedEntity &Entity, |
| 3042 | const InitializationKind &Kind, |
| 3043 | Expr *Initializer, |
| 3044 | QualType cv1T1, QualType T1, |
| 3045 | Qualifiers T1Quals, |
| 3046 | QualType cv2T2, QualType T2, |
| 3047 | Qualifiers T2Quals, |
| 3048 | InitializationSequence &Sequence); |
| 3049 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3050 | static void TryValueInitialization(Sema &S, |
| 3051 | const InitializedEntity &Entity, |
| 3052 | const InitializationKind &Kind, |
| 3053 | InitializationSequence &Sequence, |
| 3054 | InitListExpr *InitList = 0); |
| 3055 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3056 | static void TryListInitialization(Sema &S, |
| 3057 | const InitializedEntity &Entity, |
| 3058 | const InitializationKind &Kind, |
| 3059 | InitListExpr *InitList, |
| 3060 | InitializationSequence &Sequence); |
| 3061 | |
| 3062 | /// \brief Attempt list initialization of a reference. |
| 3063 | static void TryReferenceListInitialization(Sema &S, |
| 3064 | const InitializedEntity &Entity, |
| 3065 | const InitializationKind &Kind, |
| 3066 | InitListExpr *InitList, |
| 3067 | InitializationSequence &Sequence) |
| 3068 | { |
| 3069 | // First, catch C++03 where this isn't possible. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3070 | if (!S.getLangOpts().CPlusPlus11) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3071 | Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList); |
| 3072 | return; |
| 3073 | } |
| 3074 | |
| 3075 | QualType DestType = Entity.getType(); |
| 3076 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
| 3077 | Qualifiers T1Quals; |
| 3078 | QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals); |
| 3079 | |
| 3080 | // Reference initialization via an initializer list works thus: |
| 3081 | // If the initializer list consists of a single element that is |
| 3082 | // reference-related to the referenced type, bind directly to that element |
| 3083 | // (possibly creating temporaries). |
| 3084 | // Otherwise, initialize a temporary with the initializer list and |
| 3085 | // bind to that. |
| 3086 | if (InitList->getNumInits() == 1) { |
| 3087 | Expr *Initializer = InitList->getInit(0); |
| 3088 | QualType cv2T2 = Initializer->getType(); |
| 3089 | Qualifiers T2Quals; |
| 3090 | QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals); |
| 3091 | |
| 3092 | // If this fails, creating a temporary wouldn't work either. |
| 3093 | if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2, |
| 3094 | T1, Sequence)) |
| 3095 | return; |
| 3096 | |
| 3097 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 3098 | bool dummy1, dummy2, dummy3; |
| 3099 | Sema::ReferenceCompareResult RefRelationship |
| 3100 | = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1, |
| 3101 | dummy2, dummy3); |
| 3102 | if (RefRelationship >= Sema::Ref_Related) { |
| 3103 | // Try to bind the reference here. |
| 3104 | TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1, |
| 3105 | T1Quals, cv2T2, T2, T2Quals, Sequence); |
| 3106 | if (Sequence) |
| 3107 | Sequence.RewrapReferenceInitList(cv1T1, InitList); |
| 3108 | return; |
| 3109 | } |
Richard Smith | 02d65ee | 2013-01-15 07:58:29 +0000 | [diff] [blame] | 3110 | |
| 3111 | // Update the initializer if we've resolved an overloaded function. |
| 3112 | if (Sequence.step_begin() != Sequence.step_end()) |
| 3113 | Sequence.RewrapReferenceInitList(cv1T1, InitList); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3114 | } |
| 3115 | |
| 3116 | // Not reference-related. Create a temporary and bind to that. |
| 3117 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1); |
| 3118 | |
| 3119 | TryListInitialization(S, TempEntity, Kind, InitList, Sequence); |
| 3120 | if (Sequence) { |
| 3121 | if (DestType->isRValueReferenceType() || |
| 3122 | (T1Quals.hasConst() && !T1Quals.hasVolatile())) |
| 3123 | Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true); |
| 3124 | else |
| 3125 | Sequence.SetFailed( |
| 3126 | InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary); |
| 3127 | } |
| 3128 | } |
| 3129 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3130 | /// \brief Attempt list initialization (C++0x [dcl.init.list]) |
| 3131 | static void TryListInitialization(Sema &S, |
| 3132 | const InitializedEntity &Entity, |
| 3133 | const InitializationKind &Kind, |
| 3134 | InitListExpr *InitList, |
| 3135 | InitializationSequence &Sequence) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3136 | QualType DestType = Entity.getType(); |
| 3137 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3138 | // C++ doesn't allow scalar initialization with more than one argument. |
| 3139 | // But C99 complex numbers are scalars and it makes sense there. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3140 | if (S.getLangOpts().CPlusPlus && DestType->isScalarType() && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3141 | !DestType->isAnyComplexType() && InitList->getNumInits() > 1) { |
| 3142 | Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar); |
| 3143 | return; |
| 3144 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3145 | if (DestType->isReferenceType()) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3146 | TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence); |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3147 | return; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3148 | } |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3149 | if (DestType->isRecordType()) { |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3150 | if (S.RequireCompleteType(InitList->getLocStart(), DestType, 0)) { |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 3151 | Sequence.setIncompleteTypeFailure(DestType); |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3152 | return; |
| 3153 | } |
| 3154 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3155 | // C++11 [dcl.init.list]p3: |
| 3156 | // - If T is an aggregate, aggregate initialization is performed. |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3157 | if (!DestType->isAggregateType()) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3158 | if (S.getLangOpts().CPlusPlus11) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3159 | // - Otherwise, if the initializer list has no elements and T is a |
| 3160 | // class type with a default constructor, the object is |
| 3161 | // value-initialized. |
| 3162 | if (InitList->getNumInits() == 0) { |
| 3163 | CXXRecordDecl *RD = DestType->getAsCXXRecordDecl(); |
Richard Smith | e5411b7 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 3164 | if (RD->hasDefaultConstructor()) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3165 | TryValueInitialization(S, Entity, Kind, Sequence, InitList); |
| 3166 | return; |
| 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | // - Otherwise, if T is a specialization of std::initializer_list<E>, |
| 3171 | // an initializer_list object constructed [...] |
| 3172 | if (TryInitializerListConstruction(S, InitList, DestType, Sequence)) |
| 3173 | return; |
| 3174 | |
| 3175 | // - Otherwise, if T is a class type, constructors are considered. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3176 | Expr *InitListAsExpr = InitList; |
| 3177 | TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3178 | Sequence, /*InitListSyntax*/true); |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3179 | } else |
| 3180 | Sequence.SetFailed( |
| 3181 | InitializationSequence::FK_InitListBadDestinationType); |
| 3182 | return; |
| 3183 | } |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3184 | } |
| 3185 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3186 | InitListChecker CheckInitList(S, Entity, InitList, |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 3187 | DestType, /*VerifyOnly=*/true, |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 3188 | Kind.getKind() != InitializationKind::IK_DirectList || |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3189 | !S.getLangOpts().CPlusPlus11); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3190 | if (CheckInitList.HadError()) { |
| 3191 | Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed); |
| 3192 | return; |
| 3193 | } |
| 3194 | |
| 3195 | // Add the list initialization step with the built init list. |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3196 | Sequence.AddListInitializationStep(DestType); |
| 3197 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3198 | |
| 3199 | /// \brief Try a reference initialization that involves calling a conversion |
| 3200 | /// function. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3201 | static OverloadingResult TryRefInitWithConversionFunction(Sema &S, |
| 3202 | const InitializedEntity &Entity, |
| 3203 | const InitializationKind &Kind, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3204 | Expr *Initializer, |
| 3205 | bool AllowRValues, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3206 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3207 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3208 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
| 3209 | QualType T1 = cv1T1.getUnqualifiedType(); |
| 3210 | QualType cv2T2 = Initializer->getType(); |
| 3211 | QualType T2 = cv2T2.getUnqualifiedType(); |
| 3212 | |
| 3213 | bool DerivedToBase; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3214 | bool ObjCConversion; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3215 | bool ObjCLifetimeConversion; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3216 | assert(!S.CompareReferenceRelationship(Initializer->getLocStart(), |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3217 | T1, T2, DerivedToBase, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3218 | ObjCConversion, |
| 3219 | ObjCLifetimeConversion) && |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3220 | "Must have incompatible references when binding via conversion"); |
Chandler Carruth | 60cfcec | 2009-12-13 01:37:04 +0000 | [diff] [blame] | 3221 | (void)DerivedToBase; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3222 | (void)ObjCConversion; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3223 | (void)ObjCLifetimeConversion; |
| 3224 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3225 | // Build the candidate set directly in the initialization sequence |
| 3226 | // structure, so that it will persist if we fail. |
| 3227 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 3228 | CandidateSet.clear(); |
| 3229 | |
| 3230 | // Determine whether we are allowed to call explicit constructors or |
| 3231 | // explicit conversion operators. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 3232 | bool AllowExplicit = Kind.AllowExplicit(); |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3233 | bool AllowExplicitConvs = Kind.allowExplicitConversionFunctions(); |
| 3234 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3235 | const RecordType *T1RecordType = 0; |
Douglas Gregor | 6b6d01f | 2010-05-07 19:42:26 +0000 | [diff] [blame] | 3236 | if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) && |
| 3237 | !S.RequireCompleteType(Kind.getLocation(), T1, 0)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3238 | // The type we're converting to is a class type. Enumerate its constructors |
| 3239 | // to see if there is a suitable conversion. |
| 3240 | CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl()); |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3241 | |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3242 | DeclContext::lookup_result R = S.LookupConstructors(T1RecordDecl); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3243 | // The container holding the constructors can under certain conditions |
| 3244 | // be changed while iterating (e.g. because of deserialization). |
| 3245 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3246 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3247 | for (SmallVector<NamedDecl*, 16>::iterator |
| 3248 | CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) { |
| 3249 | NamedDecl *D = *CI; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3250 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
| 3251 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3252 | // Find the constructor (which may be a template). |
| 3253 | CXXConstructorDecl *Constructor = 0; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3254 | FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3255 | if (ConstructorTmpl) |
| 3256 | Constructor = cast<CXXConstructorDecl>( |
| 3257 | ConstructorTmpl->getTemplatedDecl()); |
| 3258 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3259 | Constructor = cast<CXXConstructorDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3260 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3261 | if (!Constructor->isInvalidDecl() && |
| 3262 | Constructor->isConvertingConstructor(AllowExplicit)) { |
| 3263 | if (ConstructorTmpl) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3264 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3265 | /*ExplicitArgs*/ 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3266 | Initializer, CandidateSet, |
Argyrios Kyrtzidis | b72db89 | 2010-10-05 03:05:30 +0000 | [diff] [blame] | 3267 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3268 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3269 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3270 | Initializer, CandidateSet, |
Argyrios Kyrtzidis | b72db89 | 2010-10-05 03:05:30 +0000 | [diff] [blame] | 3271 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3272 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3273 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3274 | } |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3275 | if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl()) |
| 3276 | return OR_No_Viable_Function; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3277 | |
Douglas Gregor | 6b6d01f | 2010-05-07 19:42:26 +0000 | [diff] [blame] | 3278 | const RecordType *T2RecordType = 0; |
| 3279 | if ((T2RecordType = T2->getAs<RecordType>()) && |
| 3280 | !S.RequireCompleteType(Kind.getLocation(), T2, 0)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3281 | // The type we're converting from is a class type, enumerate its conversion |
| 3282 | // functions. |
| 3283 | CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl()); |
| 3284 | |
Argyrios Kyrtzidis | 9d29543 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 3285 | std::pair<CXXRecordDecl::conversion_iterator, |
| 3286 | CXXRecordDecl::conversion_iterator> |
| 3287 | Conversions = T2RecordDecl->getVisibleConversionFunctions(); |
| 3288 | for (CXXRecordDecl::conversion_iterator |
| 3289 | I = Conversions.first, E = Conversions.second; I != E; ++I) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3290 | NamedDecl *D = *I; |
| 3291 | CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext()); |
| 3292 | if (isa<UsingShadowDecl>(D)) |
| 3293 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3294 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3295 | FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D); |
| 3296 | CXXConversionDecl *Conv; |
| 3297 | if (ConvTemplate) |
| 3298 | Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl()); |
| 3299 | else |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3300 | Conv = cast<CXXConversionDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3301 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3302 | // If the conversion function doesn't return a reference type, |
| 3303 | // it can't be considered for this conversion unless we're allowed to |
| 3304 | // consider rvalues. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3305 | // FIXME: Do we need to make sure that we only consider conversion |
| 3306 | // candidates with reference-compatible results? That might be needed to |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3307 | // break recursion. |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3308 | if ((AllowExplicitConvs || !Conv->isExplicit()) && |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3309 | (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){ |
| 3310 | if (ConvTemplate) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3311 | S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(), |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3312 | ActingDC, Initializer, |
Douglas Gregor | 564cb06 | 2011-01-21 00:27:08 +0000 | [diff] [blame] | 3313 | DestType, CandidateSet); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3314 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3315 | S.AddConversionCandidate(Conv, I.getPair(), ActingDC, |
Douglas Gregor | 564cb06 | 2011-01-21 00:27:08 +0000 | [diff] [blame] | 3316 | Initializer, DestType, CandidateSet); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3317 | } |
| 3318 | } |
| 3319 | } |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3320 | if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl()) |
| 3321 | return OR_No_Viable_Function; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3322 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3323 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 3324 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3325 | // Perform overload resolution. If it fails, return the failed result. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3326 | OverloadCandidateSet::iterator Best; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3327 | if (OverloadingResult Result |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 3328 | = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3329 | return Result; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3330 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3331 | FunctionDecl *Function = Best->Function; |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 3332 | // This is the overload that will be used for this initialization step if we |
| 3333 | // use this initialization. Mark it as referenced. |
| 3334 | Function->setReferenced(); |
Chandler Carruth | 25ca421 | 2011-02-25 19:41:05 +0000 | [diff] [blame] | 3335 | |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3336 | // Compute the returned type of the conversion. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3337 | if (isa<CXXConversionDecl>(Function)) |
| 3338 | T2 = Function->getResultType(); |
| 3339 | else |
| 3340 | T2 = cv1T1; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3341 | |
| 3342 | // Add the user-defined conversion step. |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3343 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3344 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3345 | T2.getNonLValueExprType(S.Context), |
| 3346 | HadMultipleCandidates); |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3347 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3348 | // Determine whether we need to perform derived-to-base or |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3349 | // cv-qualification adjustments. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3350 | ExprValueKind VK = VK_RValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3351 | if (T2->isLValueReferenceType()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3352 | VK = VK_LValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3353 | else if (const RValueReferenceType *RRef = T2->getAs<RValueReferenceType>()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3354 | VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3355 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3356 | bool NewDerivedToBase = false; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3357 | bool NewObjCConversion = false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3358 | bool NewObjCLifetimeConversion = false; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3359 | Sema::ReferenceCompareResult NewRefRelationship |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3360 | = S.CompareReferenceRelationship(DeclLoc, T1, |
Douglas Gregor | 6398235 | 2010-07-13 18:40:04 +0000 | [diff] [blame] | 3361 | T2.getNonLValueExprType(S.Context), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3362 | NewDerivedToBase, NewObjCConversion, |
| 3363 | NewObjCLifetimeConversion); |
Douglas Gregor | a1a9f03 | 2010-03-07 23:17:44 +0000 | [diff] [blame] | 3364 | if (NewRefRelationship == Sema::Ref_Incompatible) { |
| 3365 | // If the type we've converted to is not reference-related to the |
| 3366 | // type we're looking for, then there is another conversion step |
| 3367 | // we need to perform to produce a temporary of the right type |
| 3368 | // that we'll be binding to. |
| 3369 | ImplicitConversionSequence ICS; |
| 3370 | ICS.setStandard(); |
| 3371 | ICS.Standard = Best->FinalConversion; |
| 3372 | T2 = ICS.Standard.getToType(2); |
| 3373 | Sequence.AddConversionSequenceStep(ICS, T2); |
| 3374 | } else if (NewDerivedToBase) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3375 | Sequence.AddDerivedToBaseCastStep( |
| 3376 | S.Context.getQualifiedType(T1, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3377 | T2.getNonReferenceType().getQualifiers()), |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3378 | VK); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3379 | else if (NewObjCConversion) |
| 3380 | Sequence.AddObjCObjectConversionStep( |
| 3381 | S.Context.getQualifiedType(T1, |
| 3382 | T2.getNonReferenceType().getQualifiers())); |
| 3383 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3384 | if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3385 | Sequence.AddQualificationConversionStep(cv1T1, VK); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3386 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3387 | Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType()); |
| 3388 | return OR_Success; |
| 3389 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3390 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 3391 | static void CheckCXX98CompatAccessibleCopy(Sema &S, |
| 3392 | const InitializedEntity &Entity, |
| 3393 | Expr *CurInitExpr); |
| 3394 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3395 | /// \brief Attempt reference initialization (C++0x [dcl.init.ref]) |
| 3396 | static void TryReferenceInitialization(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3397 | const InitializedEntity &Entity, |
| 3398 | const InitializationKind &Kind, |
| 3399 | Expr *Initializer, |
| 3400 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3401 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3402 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3403 | Qualifiers T1Quals; |
| 3404 | QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3405 | QualType cv2T2 = Initializer->getType(); |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3406 | Qualifiers T2Quals; |
| 3407 | QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3408 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3409 | // If the initializer is the address of an overloaded function, try |
| 3410 | // to resolve the overloaded function. If all goes well, T2 is the |
| 3411 | // type of the resulting function. |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3412 | if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2, |
| 3413 | T1, Sequence)) |
| 3414 | return; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3415 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3416 | // Delegate everything else to a subfunction. |
| 3417 | TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1, |
| 3418 | T1Quals, cv2T2, T2, T2Quals, Sequence); |
| 3419 | } |
| 3420 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3421 | /// Converts the target of reference initialization so that it has the |
| 3422 | /// appropriate qualifiers and value kind. |
| 3423 | /// |
| 3424 | /// In this case, 'x' is an 'int' lvalue, but it needs to be 'const int'. |
| 3425 | /// \code |
| 3426 | /// int x; |
| 3427 | /// const int &r = x; |
| 3428 | /// \endcode |
| 3429 | /// |
| 3430 | /// In this case the reference is binding to a bitfield lvalue, which isn't |
| 3431 | /// valid. Perform a load to create a lifetime-extended temporary instead. |
| 3432 | /// \code |
| 3433 | /// const int &r = someStruct.bitfield; |
| 3434 | /// \endcode |
| 3435 | static ExprValueKind |
| 3436 | convertQualifiersAndValueKindIfNecessary(Sema &S, |
| 3437 | InitializationSequence &Sequence, |
| 3438 | Expr *Initializer, |
| 3439 | QualType cv1T1, |
| 3440 | Qualifiers T1Quals, |
| 3441 | Qualifiers T2Quals, |
| 3442 | bool IsLValueRef) { |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 3443 | bool IsNonAddressableType = Initializer->refersToBitField() || |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3444 | Initializer->refersToVectorElement(); |
| 3445 | |
| 3446 | if (IsNonAddressableType) { |
| 3447 | // C++11 [dcl.init.ref]p5: [...] Otherwise, the reference shall be an |
| 3448 | // lvalue reference to a non-volatile const type, or the reference shall be |
| 3449 | // an rvalue reference. |
| 3450 | // |
| 3451 | // If not, we can't make a temporary and bind to that. Give up and allow the |
| 3452 | // error to be diagnosed later. |
| 3453 | if (IsLValueRef && (!T1Quals.hasConst() || T1Quals.hasVolatile())) { |
| 3454 | assert(Initializer->isGLValue()); |
| 3455 | return Initializer->getValueKind(); |
| 3456 | } |
| 3457 | |
| 3458 | // Force a load so we can materialize a temporary. |
| 3459 | Sequence.AddLValueToRValueStep(cv1T1.getUnqualifiedType()); |
| 3460 | return VK_RValue; |
| 3461 | } |
| 3462 | |
| 3463 | if (T1Quals != T2Quals) { |
| 3464 | Sequence.AddQualificationConversionStep(cv1T1, |
| 3465 | Initializer->getValueKind()); |
| 3466 | } |
| 3467 | |
| 3468 | return Initializer->getValueKind(); |
| 3469 | } |
| 3470 | |
| 3471 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3472 | /// \brief Reference initialization without resolving overloaded functions. |
| 3473 | static void TryReferenceInitializationCore(Sema &S, |
| 3474 | const InitializedEntity &Entity, |
| 3475 | const InitializationKind &Kind, |
| 3476 | Expr *Initializer, |
| 3477 | QualType cv1T1, QualType T1, |
| 3478 | Qualifiers T1Quals, |
| 3479 | QualType cv2T2, QualType T2, |
| 3480 | Qualifiers T2Quals, |
| 3481 | InitializationSequence &Sequence) { |
| 3482 | QualType DestType = Entity.getType(); |
| 3483 | SourceLocation DeclLoc = Initializer->getLocStart(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3484 | // Compute some basic properties of the types and the initializer. |
| 3485 | bool isLValueRef = DestType->isLValueReferenceType(); |
| 3486 | bool isRValueRef = !isLValueRef; |
| 3487 | bool DerivedToBase = false; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3488 | bool ObjCConversion = false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3489 | bool ObjCLifetimeConversion = false; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3490 | Expr::Classification InitCategory = Initializer->Classify(S.Context); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3491 | Sema::ReferenceCompareResult RefRelationship |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3492 | = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3493 | ObjCConversion, ObjCLifetimeConversion); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3494 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3495 | // C++0x [dcl.init.ref]p5: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3496 | // A reference to type "cv1 T1" is initialized by an expression of type |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3497 | // "cv2 T2" as follows: |
| 3498 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3499 | // - If the reference is an lvalue reference and the initializer |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3500 | // expression |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3501 | // Note the analogous bullet points for rvlaue refs to functions. Because |
| 3502 | // there are no function rvalues in C++, rvalue refs to functions are treated |
| 3503 | // like lvalue refs. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3504 | OverloadingResult ConvOvlResult = OR_Success; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3505 | bool T1Function = T1->isFunctionType(); |
| 3506 | if (isLValueRef || T1Function) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3507 | if (InitCategory.isLValue() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3508 | (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification || |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3509 | (Kind.isCStyleOrFunctionalCast() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3510 | RefRelationship == Sema::Ref_Related))) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3511 | // - is an lvalue (but is not a bit-field), and "cv1 T1" is |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3512 | // reference-compatible with "cv2 T2," or |
| 3513 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3514 | // Per C++ [over.best.ics]p2, we don't diagnose whether the lvalue is a |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3515 | // bit-field when we're determining whether the reference initialization |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 3516 | // can occur. However, we do pay attention to whether it is a bit-field |
| 3517 | // to decide whether we're actually binding to a temporary created from |
| 3518 | // the bit-field. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3519 | if (DerivedToBase) |
| 3520 | Sequence.AddDerivedToBaseCastStep( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3521 | S.Context.getQualifiedType(T1, T2Quals), |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3522 | VK_LValue); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3523 | else if (ObjCConversion) |
| 3524 | Sequence.AddObjCObjectConversionStep( |
| 3525 | S.Context.getQualifiedType(T1, T2Quals)); |
| 3526 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3527 | ExprValueKind ValueKind = |
| 3528 | convertQualifiersAndValueKindIfNecessary(S, Sequence, Initializer, |
| 3529 | cv1T1, T1Quals, T2Quals, |
| 3530 | isLValueRef); |
| 3531 | Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3532 | return; |
| 3533 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3534 | |
| 3535 | // - has a class type (i.e., T2 is a class type), where T1 is not |
| 3536 | // reference-related to T2, and can be implicitly converted to an |
| 3537 | // lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible |
| 3538 | // with "cv3 T3" (this conversion is selected by enumerating the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3539 | // applicable conversion functions (13.3.1.6) and choosing the best |
| 3540 | // one through overload resolution (13.3)), |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3541 | // If we have an rvalue ref to function type here, the rhs must be |
| 3542 | // an rvalue. |
| 3543 | if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() && |
| 3544 | (isLValueRef || InitCategory.isRValue())) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3545 | ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, Kind, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3546 | Initializer, |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3547 | /*AllowRValues=*/isRValueRef, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3548 | Sequence); |
| 3549 | if (ConvOvlResult == OR_Success) |
| 3550 | return; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 3551 | if (ConvOvlResult != OR_No_Viable_Function) { |
| 3552 | Sequence.SetOverloadFailure( |
| 3553 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3554 | ConvOvlResult); |
| 3555 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3556 | } |
| 3557 | } |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3558 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3559 | // - Otherwise, the reference shall be an lvalue reference to a |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3560 | // non-volatile const type (i.e., cv1 shall be const), or the reference |
Douglas Gregor | 69d8316 | 2011-01-20 16:08:06 +0000 | [diff] [blame] | 3561 | // shall be an rvalue reference. |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3562 | if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) { |
Douglas Gregor | 3afb977 | 2010-11-08 15:20:28 +0000 | [diff] [blame] | 3563 | if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) |
| 3564 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
| 3565 | else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty()) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3566 | Sequence.SetOverloadFailure( |
| 3567 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3568 | ConvOvlResult); |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3569 | else |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3570 | Sequence.SetFailed(InitCategory.isLValue() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3571 | ? (RefRelationship == Sema::Ref_Related |
| 3572 | ? InitializationSequence::FK_ReferenceInitDropsQualifiers |
| 3573 | : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated) |
| 3574 | : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3575 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3576 | return; |
| 3577 | } |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3578 | |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3579 | // - If the initializer expression |
| 3580 | // - is an xvalue, class prvalue, array prvalue, or function lvalue and |
| 3581 | // "cv1 T1" is reference-compatible with "cv2 T2" |
| 3582 | // Note: functions are handled below. |
| 3583 | if (!T1Function && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3584 | (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification || |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3585 | (Kind.isCStyleOrFunctionalCast() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3586 | RefRelationship == Sema::Ref_Related)) && |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3587 | (InitCategory.isXValue() || |
| 3588 | (InitCategory.isPRValue() && T2->isRecordType()) || |
| 3589 | (InitCategory.isPRValue() && T2->isArrayType()))) { |
| 3590 | ExprValueKind ValueKind = InitCategory.isXValue()? VK_XValue : VK_RValue; |
| 3591 | if (InitCategory.isPRValue() && T2->isRecordType()) { |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 3592 | // The corresponding bullet in C++03 [dcl.init.ref]p5 gives the |
| 3593 | // compiler the freedom to perform a copy here or bind to the |
| 3594 | // object, while C++0x requires that we bind directly to the |
| 3595 | // object. Hence, we always bind to the object without making an |
| 3596 | // extra copy. However, in C++03 requires that we check for the |
| 3597 | // presence of a suitable copy constructor: |
| 3598 | // |
| 3599 | // The constructor that would be used to make the copy shall |
| 3600 | // be callable whether or not the copy is actually done. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3601 | if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt) |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 3602 | Sequence.AddExtraneousCopyToTemporary(cv2T2); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3603 | else if (S.getLangOpts().CPlusPlus11) |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 3604 | CheckCXX98CompatAccessibleCopy(S, Entity, Initializer); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3605 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3606 | |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3607 | if (DerivedToBase) |
| 3608 | Sequence.AddDerivedToBaseCastStep(S.Context.getQualifiedType(T1, T2Quals), |
| 3609 | ValueKind); |
| 3610 | else if (ObjCConversion) |
| 3611 | Sequence.AddObjCObjectConversionStep( |
| 3612 | S.Context.getQualifiedType(T1, T2Quals)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3613 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3614 | ValueKind = convertQualifiersAndValueKindIfNecessary(S, Sequence, |
| 3615 | Initializer, cv1T1, |
| 3616 | T1Quals, T2Quals, |
| 3617 | isLValueRef); |
| 3618 | |
| 3619 | Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3620 | return; |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3621 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3622 | |
| 3623 | // - has a class type (i.e., T2 is a class type), where T1 is not |
| 3624 | // reference-related to T2, and can be implicitly converted to an |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3625 | // xvalue, class prvalue, or function lvalue of type "cv3 T3", |
| 3626 | // where "cv1 T1" is reference-compatible with "cv3 T3", |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3627 | if (T2->isRecordType()) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3628 | if (RefRelationship == Sema::Ref_Incompatible) { |
| 3629 | ConvOvlResult = TryRefInitWithConversionFunction(S, Entity, |
| 3630 | Kind, Initializer, |
| 3631 | /*AllowRValues=*/true, |
| 3632 | Sequence); |
| 3633 | if (ConvOvlResult) |
| 3634 | Sequence.SetOverloadFailure( |
| 3635 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3636 | ConvOvlResult); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3637 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3638 | return; |
| 3639 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3640 | |
Douglas Gregor | defa32e | 2013-03-26 23:59:23 +0000 | [diff] [blame] | 3641 | if ((RefRelationship == Sema::Ref_Compatible || |
| 3642 | RefRelationship == Sema::Ref_Compatible_With_Added_Qualification) && |
| 3643 | isRValueRef && InitCategory.isLValue()) { |
| 3644 | Sequence.SetFailed( |
| 3645 | InitializationSequence::FK_RValueReferenceBindingToLValue); |
| 3646 | return; |
| 3647 | } |
| 3648 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3649 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers); |
| 3650 | return; |
| 3651 | } |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 3652 | |
| 3653 | // - Otherwise, a temporary of type "cv1 T1" is created and initialized |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3654 | // from the initializer expression using the rules for a non-reference |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3655 | // copy initialization (8.5). The reference is then bound to the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3656 | // temporary. [...] |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 3657 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3658 | // Determine whether we are allowed to call explicit constructors or |
| 3659 | // explicit conversion operators. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 3660 | bool AllowExplicit = Kind.AllowExplicit(); |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 3661 | |
| 3662 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1); |
| 3663 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3664 | ImplicitConversionSequence ICS |
| 3665 | = S.TryImplicitConversion(Initializer, TempEntity.getType(), |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 3666 | /*SuppressUserConversions*/ false, |
| 3667 | AllowExplicit, |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3668 | /*FIXME:InOverloadResolution=*/false, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3669 | /*CStyle=*/Kind.isCStyleOrFunctionalCast(), |
| 3670 | /*AllowObjCWritebackConversion=*/false); |
| 3671 | |
| 3672 | if (ICS.isBad()) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3673 | // FIXME: Use the conversion function set stored in ICS to turn |
| 3674 | // this into an overloading ambiguity diagnostic. However, we need |
| 3675 | // to keep that set as an OverloadCandidateSet rather than as some |
| 3676 | // other kind of set. |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 3677 | if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty()) |
| 3678 | Sequence.SetOverloadFailure( |
| 3679 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3680 | ConvOvlResult); |
Douglas Gregor | 3afb977 | 2010-11-08 15:20:28 +0000 | [diff] [blame] | 3681 | else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) |
| 3682 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 3683 | else |
| 3684 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3685 | return; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3686 | } else { |
| 3687 | Sequence.AddConversionSequenceStep(ICS, TempEntity.getType()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3688 | } |
| 3689 | |
| 3690 | // [...] If T1 is reference-related to T2, cv1 must be the |
| 3691 | // same cv-qualification as, or greater cv-qualification |
| 3692 | // than, cv2; otherwise, the program is ill-formed. |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3693 | unsigned T1CVRQuals = T1Quals.getCVRQualifiers(); |
| 3694 | unsigned T2CVRQuals = T2Quals.getCVRQualifiers(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3695 | if (RefRelationship == Sema::Ref_Related && |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3696 | (T1CVRQuals | T2CVRQuals) != T1CVRQuals) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3697 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers); |
| 3698 | return; |
| 3699 | } |
| 3700 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3701 | // [...] If T1 is reference-related to T2 and the reference is an rvalue |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3702 | // reference, the initializer expression shall not be an lvalue. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3703 | if (RefRelationship >= Sema::Ref_Related && !isLValueRef && |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3704 | InitCategory.isLValue()) { |
| 3705 | Sequence.SetFailed( |
| 3706 | InitializationSequence::FK_RValueReferenceBindingToLValue); |
| 3707 | return; |
| 3708 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3709 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3710 | Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true); |
| 3711 | return; |
| 3712 | } |
| 3713 | |
| 3714 | /// \brief Attempt character array initialization from a string literal |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3715 | /// (C++ [dcl.init.string], C99 6.7.8). |
| 3716 | static void TryStringLiteralInitialization(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3717 | const InitializedEntity &Entity, |
| 3718 | const InitializationKind &Kind, |
| 3719 | Expr *Initializer, |
| 3720 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3721 | Sequence.AddStringInitStep(Entity.getType()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3722 | } |
| 3723 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3724 | /// \brief Attempt value initialization (C++ [dcl.init]p7). |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3725 | static void TryValueInitialization(Sema &S, |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3726 | const InitializedEntity &Entity, |
| 3727 | const InitializationKind &Kind, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3728 | InitializationSequence &Sequence, |
| 3729 | InitListExpr *InitList) { |
| 3730 | assert((!InitList || InitList->getNumInits() == 0) && |
| 3731 | "Shouldn't use value-init for non-empty init lists"); |
| 3732 | |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3733 | // C++98 [dcl.init]p5, C++11 [dcl.init]p7: |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3734 | // |
| 3735 | // To value-initialize an object of type T means: |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3736 | QualType T = Entity.getType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3737 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3738 | // -- if T is an array type, then each element is value-initialized; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3739 | T = S.Context.getBaseElementType(T); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3740 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3741 | if (const RecordType *RT = T->getAs<RecordType>()) { |
| 3742 | if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3743 | bool NeedZeroInitialization = true; |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3744 | if (!S.getLangOpts().CPlusPlus11) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3745 | // C++98: |
| 3746 | // -- if T is a class type (clause 9) with a user-declared constructor |
| 3747 | // (12.1), then the default constructor for T is called (and the |
| 3748 | // initialization is ill-formed if T has no accessible default |
| 3749 | // constructor); |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3750 | if (ClassDecl->hasUserDeclaredConstructor()) |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3751 | NeedZeroInitialization = false; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3752 | } else { |
| 3753 | // C++11: |
| 3754 | // -- if T is a class type (clause 9) with either no default constructor |
| 3755 | // (12.1 [class.ctor]) or a default constructor that is user-provided |
| 3756 | // or deleted, then the object is default-initialized; |
| 3757 | CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl); |
| 3758 | if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted()) |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3759 | NeedZeroInitialization = false; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3760 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3761 | |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3762 | // -- if T is a (possibly cv-qualified) non-union class type without a |
| 3763 | // user-provided or deleted default constructor, then the object is |
| 3764 | // zero-initialized and, if T has a non-trivial default constructor, |
| 3765 | // default-initialized; |
Richard Smith | 6678a05 | 2012-10-18 00:44:17 +0000 | [diff] [blame] | 3766 | // The 'non-union' here was removed by DR1502. The 'non-trivial default |
| 3767 | // constructor' part was removed by DR1507. |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3768 | if (NeedZeroInitialization) |
| 3769 | Sequence.AddZeroInitializationStep(Entity.getType()); |
| 3770 | |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 3771 | // C++03: |
| 3772 | // -- if T is a non-union class type without a user-declared constructor, |
| 3773 | // then every non-static data member and base class component of T is |
| 3774 | // value-initialized; |
| 3775 | // [...] A program that calls for [...] value-initialization of an |
| 3776 | // entity of reference type is ill-formed. |
| 3777 | // |
| 3778 | // C++11 doesn't need this handling, because value-initialization does not |
| 3779 | // occur recursively there, and the implicit default constructor is |
| 3780 | // defined as deleted in the problematic cases. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3781 | if (!S.getLangOpts().CPlusPlus11 && |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 3782 | ClassDecl->hasUninitializedReferenceMember()) { |
| 3783 | Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference); |
| 3784 | return; |
| 3785 | } |
| 3786 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3787 | // If this is list-value-initialization, pass the empty init list on when |
| 3788 | // building the constructor call. This affects the semantics of a few |
| 3789 | // things (such as whether an explicit default constructor can be called). |
| 3790 | Expr *InitListAsExpr = InitList; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3791 | MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0); |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3792 | bool InitListSyntax = InitList; |
| 3793 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3794 | return TryConstructorInitialization(S, Entity, Kind, Args, T, Sequence, |
| 3795 | InitListSyntax); |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3796 | } |
| 3797 | } |
| 3798 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3799 | Sequence.AddZeroInitializationStep(Entity.getType()); |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3800 | } |
| 3801 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3802 | /// \brief Attempt default initialization (C++ [dcl.init]p6). |
| 3803 | static void TryDefaultInitialization(Sema &S, |
| 3804 | const InitializedEntity &Entity, |
| 3805 | const InitializationKind &Kind, |
| 3806 | InitializationSequence &Sequence) { |
| 3807 | assert(Kind.getKind() == InitializationKind::IK_Default); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3808 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3809 | // C++ [dcl.init]p6: |
| 3810 | // To default-initialize an object of type T means: |
| 3811 | // - if T is an array type, each element is default-initialized; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3812 | QualType DestType = S.Context.getBaseElementType(Entity.getType()); |
| 3813 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3814 | // - if T is a (possibly cv-qualified) class type (Clause 9), the default |
| 3815 | // constructor for T is called (and the initialization is ill-formed if |
| 3816 | // T has no accessible default constructor); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3817 | if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) { |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 3818 | TryConstructorInitialization(S, Entity, Kind, None, DestType, Sequence); |
Chandler Carruth | 4e6fbce | 2010-08-23 07:55:51 +0000 | [diff] [blame] | 3819 | return; |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3820 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3821 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3822 | // - otherwise, no initialization is performed. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3823 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3824 | // If a program calls for the default initialization of an object of |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3825 | // a const-qualified type T, T shall be a class type with a user-provided |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3826 | // default constructor. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3827 | if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) { |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3828 | Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3829 | return; |
| 3830 | } |
| 3831 | |
| 3832 | // If the destination type has a lifetime property, zero-initialize it. |
| 3833 | if (DestType.getQualifiers().hasObjCLifetime()) { |
| 3834 | Sequence.AddZeroInitializationStep(Entity.getType()); |
| 3835 | return; |
| 3836 | } |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3837 | } |
| 3838 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3839 | /// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]), |
| 3840 | /// which enumerates all conversion functions and performs overload resolution |
| 3841 | /// to select the best. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3842 | static void TryUserDefinedConversion(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3843 | const InitializedEntity &Entity, |
| 3844 | const InitializationKind &Kind, |
| 3845 | Expr *Initializer, |
| 3846 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3847 | QualType DestType = Entity.getType(); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3848 | assert(!DestType->isReferenceType() && "References are handled elsewhere"); |
| 3849 | QualType SourceType = Initializer->getType(); |
| 3850 | assert((DestType->isRecordType() || SourceType->isRecordType()) && |
| 3851 | "Must have a class type to perform a user-defined conversion"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3852 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3853 | // Build the candidate set directly in the initialization sequence |
| 3854 | // structure, so that it will persist if we fail. |
| 3855 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 3856 | CandidateSet.clear(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3857 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3858 | // Determine whether we are allowed to call explicit constructors or |
| 3859 | // explicit conversion operators. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 3860 | bool AllowExplicit = Kind.AllowExplicit(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3861 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3862 | if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) { |
| 3863 | // The type we're converting to is a class type. Enumerate its constructors |
| 3864 | // to see if there is a suitable conversion. |
| 3865 | CXXRecordDecl *DestRecordDecl |
| 3866 | = cast<CXXRecordDecl>(DestRecordType->getDecl()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3867 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3868 | // Try to complete the type we're converting to. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3869 | if (!S.RequireCompleteType(Kind.getLocation(), DestType, 0)) { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3870 | DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl); |
David Blaikie | 3d5cf5e | 2012-10-18 16:57:32 +0000 | [diff] [blame] | 3871 | // The container holding the constructors can under certain conditions |
| 3872 | // be changed while iterating. To be safe we copy the lookup results |
| 3873 | // to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3874 | SmallVector<NamedDecl*, 8> CopyOfCon(R.begin(), R.end()); |
David Blaikie | 3d5cf5e | 2012-10-18 16:57:32 +0000 | [diff] [blame] | 3875 | for (SmallVector<NamedDecl*, 8>::iterator |
| 3876 | Con = CopyOfCon.begin(), ConEnd = CopyOfCon.end(); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3877 | Con != ConEnd; ++Con) { |
| 3878 | NamedDecl *D = *Con; |
| 3879 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3880 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3881 | // Find the constructor (which may be a template). |
| 3882 | CXXConstructorDecl *Constructor = 0; |
| 3883 | FunctionTemplateDecl *ConstructorTmpl |
| 3884 | = dyn_cast<FunctionTemplateDecl>(D); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3885 | if (ConstructorTmpl) |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3886 | Constructor = cast<CXXConstructorDecl>( |
| 3887 | ConstructorTmpl->getTemplatedDecl()); |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 3888 | else |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3889 | Constructor = cast<CXXConstructorDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3890 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3891 | if (!Constructor->isInvalidDecl() && |
| 3892 | Constructor->isConvertingConstructor(AllowExplicit)) { |
| 3893 | if (ConstructorTmpl) |
| 3894 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
| 3895 | /*ExplicitArgs*/ 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3896 | Initializer, CandidateSet, |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 3897 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3898 | else |
| 3899 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3900 | Initializer, CandidateSet, |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 3901 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3902 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3903 | } |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 3904 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3905 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 3906 | |
| 3907 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 3908 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3909 | if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) { |
| 3910 | // The type we're converting from is a class type, enumerate its conversion |
| 3911 | // functions. |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 3912 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3913 | // We can only enumerate the conversion functions for a complete type; if |
| 3914 | // the type isn't complete, simply skip this step. |
| 3915 | if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) { |
| 3916 | CXXRecordDecl *SourceRecordDecl |
| 3917 | = cast<CXXRecordDecl>(SourceRecordType->getDecl()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3918 | |
Argyrios Kyrtzidis | 9d29543 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 3919 | std::pair<CXXRecordDecl::conversion_iterator, |
| 3920 | CXXRecordDecl::conversion_iterator> |
| 3921 | Conversions = SourceRecordDecl->getVisibleConversionFunctions(); |
| 3922 | for (CXXRecordDecl::conversion_iterator |
| 3923 | I = Conversions.first, E = Conversions.second; I != E; ++I) { |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3924 | NamedDecl *D = *I; |
| 3925 | CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext()); |
| 3926 | if (isa<UsingShadowDecl>(D)) |
| 3927 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3928 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3929 | FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D); |
| 3930 | CXXConversionDecl *Conv; |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3931 | if (ConvTemplate) |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3932 | Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl()); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3933 | else |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 3934 | Conv = cast<CXXConversionDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3935 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3936 | if (AllowExplicit || !Conv->isExplicit()) { |
| 3937 | if (ConvTemplate) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3938 | S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(), |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3939 | ActingDC, Initializer, DestType, |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3940 | CandidateSet); |
| 3941 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3942 | S.AddConversionCandidate(Conv, I.getPair(), ActingDC, |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3943 | Initializer, DestType, CandidateSet); |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 3944 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3945 | } |
| 3946 | } |
| 3947 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3948 | |
| 3949 | // Perform overload resolution. If it fails, return the failed result. |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3950 | OverloadCandidateSet::iterator Best; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 3951 | if (OverloadingResult Result |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 3952 | = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) { |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3953 | Sequence.SetOverloadFailure( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3954 | InitializationSequence::FK_UserConversionOverloadFailed, |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3955 | Result); |
| 3956 | return; |
| 3957 | } |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 3958 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3959 | FunctionDecl *Function = Best->Function; |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 3960 | Function->setReferenced(); |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3961 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3962 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3963 | if (isa<CXXConstructorDecl>(Function)) { |
| 3964 | // Add the user-defined conversion step. Any cv-qualification conversion is |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 3965 | // subsumed by the initialization. Per DR5, the created temporary is of the |
| 3966 | // cv-unqualified type of the destination. |
| 3967 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, |
| 3968 | DestType.getUnqualifiedType(), |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3969 | HadMultipleCandidates); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3970 | return; |
| 3971 | } |
| 3972 | |
| 3973 | // Add the user-defined conversion step that calls the conversion function. |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 3974 | QualType ConvType = Function->getCallResultType(); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 3975 | if (ConvType->getAs<RecordType>()) { |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 3976 | // If we're converting to a class type, there may be an copy of |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 3977 | // the resulting temporary object (possible to create an object of |
| 3978 | // a base class type). That copy is not a separate conversion, so |
| 3979 | // we just make a note of the actual destination type (possibly a |
| 3980 | // base class of the type returned by the conversion function) and |
| 3981 | // let the user-defined conversion step handle the conversion. |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3982 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType, |
| 3983 | HadMultipleCandidates); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 3984 | return; |
| 3985 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3986 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3987 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType, |
| 3988 | HadMultipleCandidates); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3989 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 3990 | // If the conversion following the call to the conversion function |
| 3991 | // is interesting, add it as a separate step. |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3992 | if (Best->FinalConversion.First || Best->FinalConversion.Second || |
| 3993 | Best->FinalConversion.Third) { |
| 3994 | ImplicitConversionSequence ICS; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 3995 | ICS.setStandard(); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 3996 | ICS.Standard = Best->FinalConversion; |
| 3997 | Sequence.AddConversionSequenceStep(ICS, DestType); |
| 3998 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3999 | } |
| 4000 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4001 | /// The non-zero enum values here are indexes into diagnostic alternatives. |
| 4002 | enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar }; |
| 4003 | |
| 4004 | /// Determines whether this expression is an acceptable ICR source. |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4005 | static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e, |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4006 | bool isAddressOf, bool &isWeakAccess) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4007 | // Skip parens. |
| 4008 | e = e->IgnoreParens(); |
| 4009 | |
| 4010 | // Skip address-of nodes. |
| 4011 | if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) { |
| 4012 | if (op->getOpcode() == UO_AddrOf) |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4013 | return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true, |
| 4014 | isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4015 | |
| 4016 | // Skip certain casts. |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4017 | } else if (CastExpr *ce = dyn_cast<CastExpr>(e)) { |
| 4018 | switch (ce->getCastKind()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4019 | case CK_Dependent: |
| 4020 | case CK_BitCast: |
| 4021 | case CK_LValueBitCast: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4022 | case CK_NoOp: |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4023 | return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4024 | |
| 4025 | case CK_ArrayToPointerDecay: |
| 4026 | return IIK_nonscalar; |
| 4027 | |
| 4028 | case CK_NullToPointer: |
| 4029 | return IIK_okay; |
| 4030 | |
| 4031 | default: |
| 4032 | break; |
| 4033 | } |
| 4034 | |
| 4035 | // If we have a declaration reference, it had better be a local variable. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 4036 | } else if (isa<DeclRefExpr>(e)) { |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4037 | // set isWeakAccess to true, to mean that there will be an implicit |
| 4038 | // load which requires a cleanup. |
| 4039 | if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak) |
| 4040 | isWeakAccess = true; |
| 4041 | |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4042 | if (!isAddressOf) return IIK_nonlocal; |
| 4043 | |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 4044 | VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl()); |
| 4045 | if (!var) return IIK_nonlocal; |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4046 | |
| 4047 | return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4048 | |
| 4049 | // If we have a conditional operator, check both sides. |
| 4050 | } else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) { |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4051 | if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf, |
| 4052 | isWeakAccess)) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4053 | return iik; |
| 4054 | |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4055 | return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4056 | |
| 4057 | // These are never scalar. |
| 4058 | } else if (isa<ArraySubscriptExpr>(e)) { |
| 4059 | return IIK_nonscalar; |
| 4060 | |
| 4061 | // Otherwise, it needs to be a null pointer constant. |
| 4062 | } else { |
| 4063 | return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull) |
| 4064 | ? IIK_okay : IIK_nonlocal); |
| 4065 | } |
| 4066 | |
| 4067 | return IIK_nonlocal; |
| 4068 | } |
| 4069 | |
| 4070 | /// Check whether the given expression is a valid operand for an |
| 4071 | /// indirect copy/restore. |
| 4072 | static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) { |
| 4073 | assert(src->isRValue()); |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4074 | bool isWeakAccess = false; |
| 4075 | InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess); |
| 4076 | // If isWeakAccess to true, there will be an implicit |
| 4077 | // load which requires a cleanup. |
| 4078 | if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess) |
| 4079 | S.ExprNeedsCleanups = true; |
| 4080 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4081 | if (iik == IIK_okay) return; |
| 4082 | |
| 4083 | S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback) |
| 4084 | << ((unsigned) iik - 1) // shift index into diagnostic explanations |
| 4085 | << src->getSourceRange(); |
| 4086 | } |
| 4087 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4088 | /// \brief Determine whether we have compatible array types for the |
| 4089 | /// purposes of GNU by-copy array initialization. |
| 4090 | static bool hasCompatibleArrayTypes(ASTContext &Context, |
| 4091 | const ArrayType *Dest, |
| 4092 | const ArrayType *Source) { |
| 4093 | // If the source and destination array types are equivalent, we're |
| 4094 | // done. |
| 4095 | if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0))) |
| 4096 | return true; |
| 4097 | |
| 4098 | // Make sure that the element types are the same. |
| 4099 | if (!Context.hasSameType(Dest->getElementType(), Source->getElementType())) |
| 4100 | return false; |
| 4101 | |
| 4102 | // The only mismatch we allow is when the destination is an |
| 4103 | // incomplete array type and the source is a constant array type. |
| 4104 | return Source->isConstantArrayType() && Dest->isIncompleteArrayType(); |
| 4105 | } |
| 4106 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4107 | static bool tryObjCWritebackConversion(Sema &S, |
| 4108 | InitializationSequence &Sequence, |
| 4109 | const InitializedEntity &Entity, |
| 4110 | Expr *Initializer) { |
| 4111 | bool ArrayDecay = false; |
| 4112 | QualType ArgType = Initializer->getType(); |
| 4113 | QualType ArgPointee; |
| 4114 | if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) { |
| 4115 | ArrayDecay = true; |
| 4116 | ArgPointee = ArgArrayType->getElementType(); |
| 4117 | ArgType = S.Context.getPointerType(ArgPointee); |
| 4118 | } |
| 4119 | |
| 4120 | // Handle write-back conversion. |
| 4121 | QualType ConvertedArgType; |
| 4122 | if (!S.isObjCWritebackConversion(ArgType, Entity.getType(), |
| 4123 | ConvertedArgType)) |
| 4124 | return false; |
| 4125 | |
| 4126 | // We should copy unless we're passing to an argument explicitly |
| 4127 | // marked 'out'. |
| 4128 | bool ShouldCopy = true; |
| 4129 | if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl())) |
| 4130 | ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out); |
| 4131 | |
| 4132 | // Do we need an lvalue conversion? |
| 4133 | if (ArrayDecay || Initializer->isGLValue()) { |
| 4134 | ImplicitConversionSequence ICS; |
| 4135 | ICS.setStandard(); |
| 4136 | ICS.Standard.setAsIdentityConversion(); |
| 4137 | |
| 4138 | QualType ResultType; |
| 4139 | if (ArrayDecay) { |
| 4140 | ICS.Standard.First = ICK_Array_To_Pointer; |
| 4141 | ResultType = S.Context.getPointerType(ArgPointee); |
| 4142 | } else { |
| 4143 | ICS.Standard.First = ICK_Lvalue_To_Rvalue; |
| 4144 | ResultType = Initializer->getType().getNonLValueExprType(S.Context); |
| 4145 | } |
| 4146 | |
| 4147 | Sequence.AddConversionSequenceStep(ICS, ResultType); |
| 4148 | } |
| 4149 | |
| 4150 | Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy); |
| 4151 | return true; |
| 4152 | } |
| 4153 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 4154 | static bool TryOCLSamplerInitialization(Sema &S, |
| 4155 | InitializationSequence &Sequence, |
| 4156 | QualType DestType, |
| 4157 | Expr *Initializer) { |
| 4158 | if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() || |
| 4159 | !Initializer->isIntegerConstantExpr(S.getASTContext())) |
| 4160 | return false; |
| 4161 | |
| 4162 | Sequence.AddOCLSamplerInitStep(DestType); |
| 4163 | return true; |
| 4164 | } |
| 4165 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 4166 | // |
| 4167 | // OpenCL 1.2 spec, s6.12.10 |
| 4168 | // |
| 4169 | // The event argument can also be used to associate the |
| 4170 | // async_work_group_copy with a previous async copy allowing |
| 4171 | // an event to be shared by multiple async copies; otherwise |
| 4172 | // event should be zero. |
| 4173 | // |
| 4174 | static bool TryOCLZeroEventInitialization(Sema &S, |
| 4175 | InitializationSequence &Sequence, |
| 4176 | QualType DestType, |
| 4177 | Expr *Initializer) { |
| 4178 | if (!S.getLangOpts().OpenCL || !DestType->isEventT() || |
| 4179 | !Initializer->isIntegerConstantExpr(S.getASTContext()) || |
| 4180 | (Initializer->EvaluateKnownConstInt(S.getASTContext()) != 0)) |
| 4181 | return false; |
| 4182 | |
| 4183 | Sequence.AddOCLZeroEventStep(DestType); |
| 4184 | return true; |
| 4185 | } |
| 4186 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4187 | InitializationSequence::InitializationSequence(Sema &S, |
| 4188 | const InitializedEntity &Entity, |
| 4189 | const InitializationKind &Kind, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4190 | MultiExprArg Args) |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 4191 | : FailedCandidateSet(Kind.getLocation()) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4192 | ASTContext &Context = S.Context; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4193 | |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 4194 | // Eliminate non-overload placeholder types in the arguments. We |
| 4195 | // need to do this before checking whether types are dependent |
| 4196 | // because lowering a pseudo-object expression might well give us |
| 4197 | // something of dependent type. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4198 | for (unsigned I = 0, E = Args.size(); I != E; ++I) |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 4199 | if (Args[I]->getType()->isNonOverloadPlaceholderType()) { |
| 4200 | // FIXME: should we be doing this here? |
| 4201 | ExprResult result = S.CheckPlaceholderExpr(Args[I]); |
| 4202 | if (result.isInvalid()) { |
| 4203 | SetFailed(FK_PlaceholderType); |
| 4204 | return; |
| 4205 | } |
| 4206 | Args[I] = result.take(); |
| 4207 | } |
| 4208 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4209 | // C++0x [dcl.init]p16: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4210 | // The semantics of initializers are as follows. The destination type is |
| 4211 | // the type of the object or reference being initialized and the source |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4212 | // type is the type of the initializer expression. The source type is not |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4213 | // defined when the initializer is a braced-init-list or when it is a |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4214 | // parenthesized list of expressions. |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4215 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4216 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4217 | if (DestType->isDependentType() || |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4218 | Expr::hasAnyTypeDependentArguments(Args)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4219 | SequenceKind = DependentSequence; |
| 4220 | return; |
| 4221 | } |
| 4222 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 4223 | // Almost everything is a normal sequence. |
| 4224 | setSequenceKind(NormalSequence); |
| 4225 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4226 | QualType SourceType; |
| 4227 | Expr *Initializer = 0; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4228 | if (Args.size() == 1) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4229 | Initializer = Args[0]; |
| 4230 | if (!isa<InitListExpr>(Initializer)) |
| 4231 | SourceType = Initializer->getType(); |
| 4232 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4233 | |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 4234 | // - If the initializer is a (non-parenthesized) braced-init-list, the |
| 4235 | // object is list-initialized (8.5.4). |
| 4236 | if (Kind.getKind() != InitializationKind::IK_Direct) { |
| 4237 | if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) { |
| 4238 | TryListInitialization(S, Entity, Kind, InitList, *this); |
| 4239 | return; |
| 4240 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4241 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4242 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4243 | // - If the destination type is a reference type, see 8.5.3. |
| 4244 | if (DestType->isReferenceType()) { |
| 4245 | // C++0x [dcl.init.ref]p1: |
| 4246 | // A variable declared to be a T& or T&&, that is, "reference to type T" |
| 4247 | // (8.3.2), shall be initialized by an object, or function, of type T or |
| 4248 | // by an object that can be converted into a T. |
| 4249 | // (Therefore, multiple arguments are not permitted.) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4250 | if (Args.size() != 1) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4251 | SetFailed(FK_TooManyInitsForReference); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4252 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4253 | TryReferenceInitialization(S, Entity, Kind, Args[0], *this); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4254 | return; |
| 4255 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4256 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4257 | // - If the initializer is (), the object is value-initialized. |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4258 | if (Kind.getKind() == InitializationKind::IK_Value || |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4259 | (Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4260 | TryValueInitialization(S, Entity, Kind, *this); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4261 | return; |
| 4262 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4263 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4264 | // Handle default initialization. |
Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 4265 | if (Kind.getKind() == InitializationKind::IK_Default) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4266 | TryDefaultInitialization(S, Entity, Kind, *this); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4267 | return; |
| 4268 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4269 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 4270 | // - If the destination type is an array of characters, an array of |
| 4271 | // char16_t, an array of char32_t, or an array of wchar_t, and the |
| 4272 | // initializer is a string literal, see 8.5.2. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4273 | // - Otherwise, if the destination type is an array, the program is |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4274 | // ill-formed. |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4275 | if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) { |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 4276 | if (Initializer && isa<VariableArrayType>(DestAT)) { |
| 4277 | SetFailed(FK_VariableLengthArrayHasInitializer); |
| 4278 | return; |
| 4279 | } |
| 4280 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4281 | if (Initializer && IsStringInit(Initializer, DestAT, Context)) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4282 | TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this); |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 4283 | return; |
| 4284 | } |
| 4285 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4286 | // Note: as an GNU C extension, we allow initialization of an |
| 4287 | // array from a compound literal that creates an array of the same |
| 4288 | // type, so long as the initializer has no side effects. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4289 | if (!S.getLangOpts().CPlusPlus && Initializer && |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4290 | isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) && |
| 4291 | Initializer->getType()->isArrayType()) { |
| 4292 | const ArrayType *SourceAT |
| 4293 | = Context.getAsArrayType(Initializer->getType()); |
| 4294 | if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4295 | SetFailed(FK_ArrayTypeMismatch); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4296 | else if (Initializer->HasSideEffects(S.Context)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4297 | SetFailed(FK_NonConstantArrayInit); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4298 | else { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4299 | AddArrayInitStep(DestType); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4300 | } |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 4301 | } |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 4302 | // Note: as a GNU C++ extension, we allow list-initialization of a |
| 4303 | // class member of array type from a parenthesized initializer list. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4304 | else if (S.getLangOpts().CPlusPlus && |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 4305 | Entity.getKind() == InitializedEntity::EK_Member && |
| 4306 | Initializer && isa<InitListExpr>(Initializer)) { |
| 4307 | TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer), |
| 4308 | *this); |
| 4309 | AddParenthesizedArrayInitStep(DestType); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4310 | } else if (DestAT->getElementType()->isAnyCharacterType()) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4311 | SetFailed(FK_ArrayNeedsInitListOrStringLiteral); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4312 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4313 | SetFailed(FK_ArrayNeedsInitList); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4314 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4315 | return; |
| 4316 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4317 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4318 | // Determine whether we should consider writeback conversions for |
| 4319 | // Objective-C ARC. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4320 | bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4321 | Entity.getKind() == InitializedEntity::EK_Parameter; |
| 4322 | |
| 4323 | // We're at the end of the line for C: it's either a write-back conversion |
| 4324 | // or it's a C assignment. There's no need to check anything else. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4325 | if (!S.getLangOpts().CPlusPlus) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4326 | // If allowed, check whether this is an Objective-C writeback conversion. |
| 4327 | if (allowObjCWritebackConversion && |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4328 | tryObjCWritebackConversion(S, *this, Entity, Initializer)) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4329 | return; |
| 4330 | } |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 4331 | |
| 4332 | if (TryOCLSamplerInitialization(S, *this, DestType, Initializer)) |
| 4333 | return; |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 4334 | |
| 4335 | if (TryOCLZeroEventInitialization(S, *this, DestType, Initializer)) |
| 4336 | return; |
| 4337 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4338 | // Handle initialization in C |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4339 | AddCAssignmentStep(DestType); |
| 4340 | MaybeProduceObjCObject(S, *this, Entity); |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4341 | return; |
| 4342 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4343 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4344 | assert(S.getLangOpts().CPlusPlus); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4345 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4346 | // - If the destination type is a (possibly cv-qualified) class type: |
| 4347 | if (DestType->isRecordType()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4348 | // - If the initialization is direct-initialization, or if it is |
| 4349 | // copy-initialization where the cv-unqualified version of the |
| 4350 | // source type is the same class as, or a derived class of, the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4351 | // class of the destination, constructors are considered. [...] |
| 4352 | if (Kind.getKind() == InitializationKind::IK_Direct || |
| 4353 | (Kind.getKind() == InitializationKind::IK_Copy && |
| 4354 | (Context.hasSameUnqualifiedType(SourceType, DestType) || |
| 4355 | S.IsDerivedFrom(SourceType, DestType)))) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4356 | TryConstructorInitialization(S, Entity, Kind, Args, |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4357 | Entity.getType(), *this); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4358 | // - Otherwise (i.e., for the remaining copy-initialization cases), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4359 | // user-defined conversion sequences that can convert from the source |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4360 | // type to the destination type or (when a conversion function is |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4361 | // used) to a derived class thereof are enumerated as described in |
| 4362 | // 13.3.1.4, and the best one is chosen through overload resolution |
| 4363 | // (13.3). |
| 4364 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4365 | TryUserDefinedConversion(S, Entity, Kind, Initializer, *this); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4366 | return; |
| 4367 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4368 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4369 | if (Args.size() > 1) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4370 | SetFailed(FK_TooManyInitsForScalar); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4371 | return; |
| 4372 | } |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4373 | assert(Args.size() == 1 && "Zero-argument case handled above"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4374 | |
| 4375 | // - Otherwise, if the source type is a (possibly cv-qualified) class |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4376 | // type, conversion functions are considered. |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4377 | if (!SourceType.isNull() && SourceType->isRecordType()) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4378 | TryUserDefinedConversion(S, Entity, Kind, Initializer, *this); |
| 4379 | MaybeProduceObjCObject(S, *this, Entity); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4380 | return; |
| 4381 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4382 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4383 | // - Otherwise, the initial value of the object being initialized is the |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4384 | // (possibly converted) value of the initializer expression. Standard |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4385 | // conversions (Clause 4) will be used, if necessary, to convert the |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4386 | // initializer expression to the cv-unqualified version of the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4387 | // destination type; no user-defined conversions are considered. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4388 | |
| 4389 | ImplicitConversionSequence ICS |
| 4390 | = S.TryImplicitConversion(Initializer, Entity.getType(), |
| 4391 | /*SuppressUserConversions*/true, |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 4392 | /*AllowExplicitConversions*/ false, |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 4393 | /*InOverloadResolution*/ false, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4394 | /*CStyle=*/Kind.isCStyleOrFunctionalCast(), |
| 4395 | allowObjCWritebackConversion); |
| 4396 | |
| 4397 | if (ICS.isStandard() && |
| 4398 | ICS.Standard.Second == ICK_Writeback_Conversion) { |
| 4399 | // Objective-C ARC writeback conversion. |
| 4400 | |
| 4401 | // We should copy unless we're passing to an argument explicitly |
| 4402 | // marked 'out'. |
| 4403 | bool ShouldCopy = true; |
| 4404 | if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl())) |
| 4405 | ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out); |
| 4406 | |
| 4407 | // If there was an lvalue adjustment, add it as a separate conversion. |
| 4408 | if (ICS.Standard.First == ICK_Array_To_Pointer || |
| 4409 | ICS.Standard.First == ICK_Lvalue_To_Rvalue) { |
| 4410 | ImplicitConversionSequence LvalueICS; |
| 4411 | LvalueICS.setStandard(); |
| 4412 | LvalueICS.Standard.setAsIdentityConversion(); |
| 4413 | LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0)); |
| 4414 | LvalueICS.Standard.First = ICS.Standard.First; |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4415 | AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4416 | } |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4417 | |
| 4418 | AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4419 | } else if (ICS.isBad()) { |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 4420 | DeclAccessPair dap; |
| 4421 | if (Initializer->getType() == Context.OverloadTy && |
| 4422 | !S.ResolveAddressOfOverloadedFunction(Initializer |
| 4423 | , DestType, false, dap)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4424 | SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 4425 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4426 | SetFailed(InitializationSequence::FK_ConversionFailed); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4427 | } else { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4428 | AddConversionSequenceStep(ICS, Entity.getType()); |
John McCall | 856d379 | 2011-06-16 23:24:51 +0000 | [diff] [blame] | 4429 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4430 | MaybeProduceObjCObject(S, *this, Entity); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 4431 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4432 | } |
| 4433 | |
| 4434 | InitializationSequence::~InitializationSequence() { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4435 | for (SmallVectorImpl<Step>::iterator Step = Steps.begin(), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4436 | StepEnd = Steps.end(); |
| 4437 | Step != StepEnd; ++Step) |
| 4438 | Step->Destroy(); |
| 4439 | } |
| 4440 | |
| 4441 | //===----------------------------------------------------------------------===// |
| 4442 | // Perform initialization |
| 4443 | //===----------------------------------------------------------------------===// |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4444 | static Sema::AssignmentAction |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4445 | getAssignmentAction(const InitializedEntity &Entity) { |
| 4446 | switch(Entity.getKind()) { |
| 4447 | case InitializedEntity::EK_Variable: |
| 4448 | case InitializedEntity::EK_New: |
Douglas Gregor | a3998bd | 2010-12-02 21:47:04 +0000 | [diff] [blame] | 4449 | case InitializedEntity::EK_Exception: |
| 4450 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4451 | case InitializedEntity::EK_Delegating: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4452 | return Sema::AA_Initializing; |
| 4453 | |
| 4454 | case InitializedEntity::EK_Parameter: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4455 | if (Entity.getDecl() && |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 4456 | isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext())) |
| 4457 | return Sema::AA_Sending; |
| 4458 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4459 | return Sema::AA_Passing; |
| 4460 | |
| 4461 | case InitializedEntity::EK_Result: |
| 4462 | return Sema::AA_Returning; |
| 4463 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4464 | case InitializedEntity::EK_Temporary: |
| 4465 | // FIXME: Can we tell apart casting vs. converting? |
| 4466 | return Sema::AA_Casting; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4467 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4468 | case InitializedEntity::EK_Member: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 4469 | case InitializedEntity::EK_ArrayElement: |
| 4470 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4471 | case InitializedEntity::EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4472 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4473 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4474 | case InitializedEntity::EK_CompoundLiteralInit: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4475 | return Sema::AA_Initializing; |
| 4476 | } |
| 4477 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4478 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4479 | } |
| 4480 | |
Richard Smith | 774d8b4 | 2013-01-08 00:08:23 +0000 | [diff] [blame] | 4481 | /// \brief Whether we should bind a created object as a temporary when |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4482 | /// initializing the given entity. |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4483 | static bool shouldBindAsTemporary(const InitializedEntity &Entity) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4484 | switch (Entity.getKind()) { |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 4485 | case InitializedEntity::EK_ArrayElement: |
| 4486 | case InitializedEntity::EK_Member: |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4487 | case InitializedEntity::EK_Result: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4488 | case InitializedEntity::EK_New: |
| 4489 | case InitializedEntity::EK_Variable: |
| 4490 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4491 | case InitializedEntity::EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 4492 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4493 | case InitializedEntity::EK_ComplexElement: |
Anders Carlsson | a508b7d | 2010-02-06 23:23:06 +0000 | [diff] [blame] | 4494 | case InitializedEntity::EK_Exception: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4495 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4496 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4497 | case InitializedEntity::EK_CompoundLiteralInit: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4498 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4499 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4500 | case InitializedEntity::EK_Parameter: |
| 4501 | case InitializedEntity::EK_Temporary: |
| 4502 | return true; |
| 4503 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4504 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4505 | llvm_unreachable("missed an InitializedEntity kind?"); |
| 4506 | } |
| 4507 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4508 | /// \brief Whether the given entity, when initialized with an object |
| 4509 | /// created for that initialization, requires destruction. |
| 4510 | static bool shouldDestroyTemporary(const InitializedEntity &Entity) { |
| 4511 | switch (Entity.getKind()) { |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4512 | case InitializedEntity::EK_Result: |
| 4513 | case InitializedEntity::EK_New: |
| 4514 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4515 | case InitializedEntity::EK_Delegating: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4516 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4517 | case InitializedEntity::EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4518 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4519 | case InitializedEntity::EK_LambdaCapture: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4520 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4521 | |
Richard Smith | 774d8b4 | 2013-01-08 00:08:23 +0000 | [diff] [blame] | 4522 | case InitializedEntity::EK_Member: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4523 | case InitializedEntity::EK_Variable: |
| 4524 | case InitializedEntity::EK_Parameter: |
| 4525 | case InitializedEntity::EK_Temporary: |
| 4526 | case InitializedEntity::EK_ArrayElement: |
| 4527 | case InitializedEntity::EK_Exception: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4528 | case InitializedEntity::EK_CompoundLiteralInit: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4529 | return true; |
| 4530 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4531 | |
| 4532 | llvm_unreachable("missed an InitializedEntity kind?"); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4533 | } |
| 4534 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4535 | /// \brief Look for copy and move constructors and constructor templates, for |
| 4536 | /// copying an object via direct-initialization (per C++11 [dcl.init]p16). |
| 4537 | static void LookupCopyAndMoveConstructors(Sema &S, |
| 4538 | OverloadCandidateSet &CandidateSet, |
| 4539 | CXXRecordDecl *Class, |
| 4540 | Expr *CurInitExpr) { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4541 | DeclContext::lookup_result R = S.LookupConstructors(Class); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4542 | // The container holding the constructors can under certain conditions |
| 4543 | // be changed while iterating (e.g. because of deserialization). |
| 4544 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4545 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4546 | for (SmallVector<NamedDecl*, 16>::iterator |
| 4547 | CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) { |
| 4548 | NamedDecl *D = *CI; |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4549 | CXXConstructorDecl *Constructor = 0; |
| 4550 | |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4551 | if ((Constructor = dyn_cast<CXXConstructorDecl>(D))) { |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4552 | // Handle copy/moveconstructors, only. |
| 4553 | if (!Constructor || Constructor->isInvalidDecl() || |
| 4554 | !Constructor->isCopyOrMoveConstructor() || |
| 4555 | !Constructor->isConvertingConstructor(/*AllowExplicit=*/true)) |
| 4556 | continue; |
| 4557 | |
| 4558 | DeclAccessPair FoundDecl |
| 4559 | = DeclAccessPair::make(Constructor, Constructor->getAccess()); |
| 4560 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4561 | CurInitExpr, CandidateSet); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4562 | continue; |
| 4563 | } |
| 4564 | |
| 4565 | // Handle constructor templates. |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4566 | FunctionTemplateDecl *ConstructorTmpl = cast<FunctionTemplateDecl>(D); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4567 | if (ConstructorTmpl->isInvalidDecl()) |
| 4568 | continue; |
| 4569 | |
| 4570 | Constructor = cast<CXXConstructorDecl>( |
| 4571 | ConstructorTmpl->getTemplatedDecl()); |
| 4572 | if (!Constructor->isConvertingConstructor(/*AllowExplicit=*/true)) |
| 4573 | continue; |
| 4574 | |
| 4575 | // FIXME: Do we need to limit this to copy-constructor-like |
| 4576 | // candidates? |
| 4577 | DeclAccessPair FoundDecl |
| 4578 | = DeclAccessPair::make(ConstructorTmpl, ConstructorTmpl->getAccess()); |
| 4579 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4580 | CurInitExpr, CandidateSet, true); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4581 | } |
| 4582 | } |
| 4583 | |
| 4584 | /// \brief Get the location at which initialization diagnostics should appear. |
| 4585 | static SourceLocation getInitializationLoc(const InitializedEntity &Entity, |
| 4586 | Expr *Initializer) { |
| 4587 | switch (Entity.getKind()) { |
| 4588 | case InitializedEntity::EK_Result: |
| 4589 | return Entity.getReturnLoc(); |
| 4590 | |
| 4591 | case InitializedEntity::EK_Exception: |
| 4592 | return Entity.getThrowLoc(); |
| 4593 | |
| 4594 | case InitializedEntity::EK_Variable: |
| 4595 | return Entity.getDecl()->getLocation(); |
| 4596 | |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4597 | case InitializedEntity::EK_LambdaCapture: |
| 4598 | return Entity.getCaptureLoc(); |
| 4599 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4600 | case InitializedEntity::EK_ArrayElement: |
| 4601 | case InitializedEntity::EK_Member: |
| 4602 | case InitializedEntity::EK_Parameter: |
| 4603 | case InitializedEntity::EK_Temporary: |
| 4604 | case InitializedEntity::EK_New: |
| 4605 | case InitializedEntity::EK_Base: |
| 4606 | case InitializedEntity::EK_Delegating: |
| 4607 | case InitializedEntity::EK_VectorElement: |
| 4608 | case InitializedEntity::EK_ComplexElement: |
| 4609 | case InitializedEntity::EK_BlockElement: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4610 | case InitializedEntity::EK_CompoundLiteralInit: |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4611 | return Initializer->getLocStart(); |
| 4612 | } |
| 4613 | llvm_unreachable("missed an InitializedEntity kind?"); |
| 4614 | } |
| 4615 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4616 | /// \brief Make a (potentially elidable) temporary copy of the object |
| 4617 | /// provided by the given initializer by calling the appropriate copy |
| 4618 | /// constructor. |
| 4619 | /// |
| 4620 | /// \param S The Sema object used for type-checking. |
| 4621 | /// |
Abramo Bagnara | 63e7d25 | 2011-01-27 19:55:10 +0000 | [diff] [blame] | 4622 | /// \param T The type of the temporary object, which must either be |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4623 | /// the type of the initializer expression or a superclass thereof. |
| 4624 | /// |
James Dennett | 1dfbd92 | 2012-06-14 21:40:34 +0000 | [diff] [blame] | 4625 | /// \param Entity The entity being initialized. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4626 | /// |
| 4627 | /// \param CurInit The initializer expression. |
| 4628 | /// |
| 4629 | /// \param IsExtraneousCopy Whether this is an "extraneous" copy that |
| 4630 | /// is permitted in C++03 (but not C++0x) when binding a reference to |
| 4631 | /// an rvalue. |
| 4632 | /// |
| 4633 | /// \returns An expression that copies the initializer expression into |
| 4634 | /// a temporary object, or an error expression if a copy could not be |
| 4635 | /// created. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4636 | static ExprResult CopyObject(Sema &S, |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 4637 | QualType T, |
| 4638 | const InitializedEntity &Entity, |
| 4639 | ExprResult CurInit, |
| 4640 | bool IsExtraneousCopy) { |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4641 | // Determine which class type we're copying to. |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 4642 | Expr *CurInitExpr = (Expr *)CurInit.get(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4643 | CXXRecordDecl *Class = 0; |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4644 | if (const RecordType *Record = T->getAs<RecordType>()) |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4645 | Class = cast<CXXRecordDecl>(Record->getDecl()); |
| 4646 | if (!Class) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4647 | return CurInit; |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4648 | |
Douglas Gregor | f5d8f46 | 2011-01-21 18:05:27 +0000 | [diff] [blame] | 4649 | // C++0x [class.copy]p32: |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4650 | // When certain criteria are met, an implementation is allowed to |
| 4651 | // omit the copy/move construction of a class object, even if the |
| 4652 | // copy/move constructor and/or destructor for the object have |
| 4653 | // side effects. [...] |
| 4654 | // - when a temporary class object that has not been bound to a |
| 4655 | // reference (12.2) would be copied/moved to a class object |
| 4656 | // with the same cv-unqualified type, the copy/move operation |
| 4657 | // can be omitted by constructing the temporary object |
| 4658 | // directly into the target of the omitted copy/move |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4659 | // |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4660 | // Note that the other three bullets are handled elsewhere. Copy |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 4661 | // elision for return statements and throw expressions are handled as part |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4662 | // of constructor initialization, while copy elision for exception handlers |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 4663 | // is handled by the run-time. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 4664 | bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4665 | SourceLocation Loc = getInitializationLoc(Entity, CurInit.get()); |
Douglas Gregor | f86fcb3 | 2010-04-24 21:09:25 +0000 | [diff] [blame] | 4666 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4667 | // Make sure that the type we are copying is complete. |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4668 | if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete)) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4669 | return CurInit; |
Douglas Gregor | f86fcb3 | 2010-04-24 21:09:25 +0000 | [diff] [blame] | 4670 | |
Douglas Gregor | cc15f01 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 4671 | // Perform overload resolution using the class's copy/move constructors. |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4672 | // Only consider constructors and constructor templates. Per |
| 4673 | // C++0x [dcl.init]p16, second bullet to class types, this initialization |
| 4674 | // is direct-initialization. |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 4675 | OverloadCandidateSet CandidateSet(Loc); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4676 | LookupCopyAndMoveConstructors(S, CandidateSet, Class, CurInitExpr); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4677 | |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 4678 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
| 4679 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4680 | OverloadCandidateSet::iterator Best; |
Chandler Carruth | 25ca421 | 2011-02-25 19:41:05 +0000 | [diff] [blame] | 4681 | switch (CandidateSet.BestViableFunction(S, Loc, Best)) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4682 | case OR_Success: |
| 4683 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4684 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4685 | case OR_No_Viable_Function: |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4686 | S.Diag(Loc, IsExtraneousCopy && !S.isSFINAEContext() |
| 4687 | ? diag::ext_rvalue_to_reference_temp_copy_no_viable |
| 4688 | : diag::err_temp_copy_no_viable) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4689 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4690 | << CurInitExpr->getSourceRange(); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4691 | CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr); |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4692 | if (!IsExtraneousCopy || S.isSFINAEContext()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4693 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4694 | return CurInit; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4695 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4696 | case OR_Ambiguous: |
| 4697 | S.Diag(Loc, diag::err_temp_copy_ambiguous) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4698 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4699 | << CurInitExpr->getSourceRange(); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4700 | CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4701 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4702 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4703 | case OR_Deleted: |
| 4704 | S.Diag(Loc, diag::err_temp_copy_deleted) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4705 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4706 | << CurInitExpr->getSourceRange(); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 4707 | S.NoteDeletedFunction(Best->Function); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4708 | return ExprError(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4709 | } |
| 4710 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4711 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function); |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 4712 | SmallVector<Expr*, 8> ConstructorArgs; |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4713 | CurInit.release(); // Ownership transferred into MultiExprArg, below. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4714 | |
Anders Carlsson | 9a68a67 | 2010-04-21 18:47:17 +0000 | [diff] [blame] | 4715 | S.CheckConstructorAccess(Loc, Constructor, Entity, |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4716 | Best->FoundDecl.getAccess(), IsExtraneousCopy); |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4717 | |
| 4718 | if (IsExtraneousCopy) { |
| 4719 | // If this is a totally extraneous copy for C++03 reference |
| 4720 | // binding purposes, just return the original initialization |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 4721 | // expression. We don't generate an (elided) copy operation here |
| 4722 | // because doing so would require us to pass down a flag to avoid |
| 4723 | // infinite recursion, where each step adds another extraneous, |
| 4724 | // elidable copy. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4725 | |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 4726 | // Instantiate the default arguments of any extra parameters in |
| 4727 | // the selected copy constructor, as if we were going to create a |
| 4728 | // proper call to the copy constructor. |
| 4729 | for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) { |
| 4730 | ParmVarDecl *Parm = Constructor->getParamDecl(I); |
| 4731 | if (S.RequireCompleteType(Loc, Parm->getType(), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4732 | diag::err_call_incomplete_argument)) |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 4733 | break; |
| 4734 | |
| 4735 | // Build the default argument expression; we don't actually care |
| 4736 | // if this succeeds or not, because this routine will complain |
| 4737 | // if there was a problem. |
| 4738 | S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm); |
| 4739 | } |
| 4740 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4741 | return S.Owned(CurInitExpr); |
| 4742 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4743 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4744 | // Determine the arguments required to actually perform the |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4745 | // constructor call (we might have derived-to-base conversions, or |
| 4746 | // the copy constructor may have default arguments). |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4747 | if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4748 | return ExprError(); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4749 | |
Douglas Gregor | b86cf0c | 2010-04-25 00:55:24 +0000 | [diff] [blame] | 4750 | // Actually perform the constructor call. |
| 4751 | CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4752 | ConstructorArgs, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 4753 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 4754 | /*ListInit*/ false, |
John McCall | 7a1fad3 | 2010-08-24 07:32:53 +0000 | [diff] [blame] | 4755 | /*ZeroInit*/ false, |
Chandler Carruth | 428edaf | 2010-10-25 08:47:36 +0000 | [diff] [blame] | 4756 | CXXConstructExpr::CK_Complete, |
| 4757 | SourceRange()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4758 | |
Douglas Gregor | b86cf0c | 2010-04-25 00:55:24 +0000 | [diff] [blame] | 4759 | // If we're supposed to bind temporaries, do so. |
| 4760 | if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity)) |
| 4761 | CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>()); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4762 | return CurInit; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4763 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4764 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4765 | /// \brief Check whether elidable copy construction for binding a reference to |
| 4766 | /// a temporary would have succeeded if we were building in C++98 mode, for |
| 4767 | /// -Wc++98-compat. |
| 4768 | static void CheckCXX98CompatAccessibleCopy(Sema &S, |
| 4769 | const InitializedEntity &Entity, |
| 4770 | Expr *CurInitExpr) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4771 | assert(S.getLangOpts().CPlusPlus11); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4772 | |
| 4773 | const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>(); |
| 4774 | if (!Record) |
| 4775 | return; |
| 4776 | |
| 4777 | SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr); |
| 4778 | if (S.Diags.getDiagnosticLevel(diag::warn_cxx98_compat_temp_copy, Loc) |
| 4779 | == DiagnosticsEngine::Ignored) |
| 4780 | return; |
| 4781 | |
| 4782 | // Find constructors which would have been considered. |
| 4783 | OverloadCandidateSet CandidateSet(Loc); |
| 4784 | LookupCopyAndMoveConstructors( |
| 4785 | S, CandidateSet, cast<CXXRecordDecl>(Record->getDecl()), CurInitExpr); |
| 4786 | |
| 4787 | // Perform overload resolution. |
| 4788 | OverloadCandidateSet::iterator Best; |
| 4789 | OverloadingResult OR = CandidateSet.BestViableFunction(S, Loc, Best); |
| 4790 | |
| 4791 | PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy) |
| 4792 | << OR << (int)Entity.getKind() << CurInitExpr->getType() |
| 4793 | << CurInitExpr->getSourceRange(); |
| 4794 | |
| 4795 | switch (OR) { |
| 4796 | case OR_Success: |
| 4797 | S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function), |
John McCall | b9abd872 | 2012-04-07 03:04:20 +0000 | [diff] [blame] | 4798 | Entity, Best->FoundDecl.getAccess(), Diag); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4799 | // FIXME: Check default arguments as far as that's possible. |
| 4800 | break; |
| 4801 | |
| 4802 | case OR_No_Viable_Function: |
| 4803 | S.Diag(Loc, Diag); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4804 | CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4805 | break; |
| 4806 | |
| 4807 | case OR_Ambiguous: |
| 4808 | S.Diag(Loc, Diag); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4809 | CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4810 | break; |
| 4811 | |
| 4812 | case OR_Deleted: |
| 4813 | S.Diag(Loc, Diag); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 4814 | S.NoteDeletedFunction(Best->Function); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4815 | break; |
| 4816 | } |
| 4817 | } |
| 4818 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 4819 | void InitializationSequence::PrintInitLocationNote(Sema &S, |
| 4820 | const InitializedEntity &Entity) { |
| 4821 | if (Entity.getKind() == InitializedEntity::EK_Parameter && Entity.getDecl()) { |
| 4822 | if (Entity.getDecl()->getLocation().isInvalid()) |
| 4823 | return; |
| 4824 | |
| 4825 | if (Entity.getDecl()->getDeclName()) |
| 4826 | S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here) |
| 4827 | << Entity.getDecl()->getDeclName(); |
| 4828 | else |
| 4829 | S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here); |
| 4830 | } |
| 4831 | } |
| 4832 | |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 4833 | static bool isReferenceBinding(const InitializationSequence::Step &s) { |
| 4834 | return s.Kind == InitializationSequence::SK_BindReference || |
| 4835 | s.Kind == InitializationSequence::SK_BindReferenceToTemporary; |
| 4836 | } |
| 4837 | |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4838 | /// Returns true if the parameters describe a constructor initialization of |
| 4839 | /// an explicit temporary object, e.g. "Point(x, y)". |
| 4840 | static bool isExplicitTemporary(const InitializedEntity &Entity, |
| 4841 | const InitializationKind &Kind, |
| 4842 | unsigned NumArgs) { |
| 4843 | switch (Entity.getKind()) { |
| 4844 | case InitializedEntity::EK_Temporary: |
| 4845 | case InitializedEntity::EK_CompoundLiteralInit: |
| 4846 | break; |
| 4847 | default: |
| 4848 | return false; |
| 4849 | } |
| 4850 | |
| 4851 | switch (Kind.getKind()) { |
| 4852 | case InitializationKind::IK_DirectList: |
| 4853 | return true; |
| 4854 | // FIXME: Hack to work around cast weirdness. |
| 4855 | case InitializationKind::IK_Direct: |
| 4856 | case InitializationKind::IK_Value: |
| 4857 | return NumArgs != 1; |
| 4858 | default: |
| 4859 | return false; |
| 4860 | } |
| 4861 | } |
| 4862 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4863 | static ExprResult |
| 4864 | PerformConstructorInitialization(Sema &S, |
| 4865 | const InitializedEntity &Entity, |
| 4866 | const InitializationKind &Kind, |
| 4867 | MultiExprArg Args, |
| 4868 | const InitializationSequence::Step& Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 4869 | bool &ConstructorInitRequiresZeroInit, |
| 4870 | bool IsListInitialization) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4871 | unsigned NumArgs = Args.size(); |
| 4872 | CXXConstructorDecl *Constructor |
| 4873 | = cast<CXXConstructorDecl>(Step.Function.Function); |
| 4874 | bool HadMultipleCandidates = Step.Function.HadMultipleCandidates; |
| 4875 | |
| 4876 | // Build a call to the selected constructor. |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 4877 | SmallVector<Expr*, 8> ConstructorArgs; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4878 | SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid()) |
| 4879 | ? Kind.getEqualLoc() |
| 4880 | : Kind.getLocation(); |
| 4881 | |
| 4882 | if (Kind.getKind() == InitializationKind::IK_Default) { |
| 4883 | // Force even a trivial, implicit default constructor to be |
| 4884 | // semantically checked. We do this explicitly because we don't build |
| 4885 | // the definition for completely trivial constructors. |
Matt Beaumont-Gay | 28e4702 | 2012-02-24 08:37:56 +0000 | [diff] [blame] | 4886 | assert(Constructor->getParent() && "No parent class for constructor."); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4887 | if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() && |
Douglas Gregor | 5d86f61 | 2012-02-24 07:48:37 +0000 | [diff] [blame] | 4888 | Constructor->isTrivial() && !Constructor->isUsed(false)) |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4889 | S.DefineImplicitDefaultConstructor(Loc, Constructor); |
| 4890 | } |
| 4891 | |
| 4892 | ExprResult CurInit = S.Owned((Expr *)0); |
| 4893 | |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 4894 | // C++ [over.match.copy]p1: |
| 4895 | // - When initializing a temporary to be bound to the first parameter |
| 4896 | // of a constructor that takes a reference to possibly cv-qualified |
| 4897 | // T as its first argument, called with a single argument in the |
| 4898 | // context of direct-initialization, explicit conversion functions |
| 4899 | // are also considered. |
| 4900 | bool AllowExplicitConv = Kind.AllowExplicit() && !Kind.isCopyInit() && |
| 4901 | Args.size() == 1 && |
| 4902 | Constructor->isCopyOrMoveConstructor(); |
| 4903 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4904 | // Determine the arguments required to actually perform the constructor |
| 4905 | // call. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4906 | if (S.CompleteConstructorCall(Constructor, Args, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 4907 | Loc, ConstructorArgs, |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 4908 | AllowExplicitConv, |
| 4909 | IsListInitialization)) |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4910 | return ExprError(); |
| 4911 | |
| 4912 | |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4913 | if (isExplicitTemporary(Entity, Kind, NumArgs)) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4914 | // An explicitly-constructed temporary, e.g., X(1, 2). |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 4915 | S.MarkFunctionReferenced(Loc, Constructor); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 4916 | if (S.DiagnoseUseOfDecl(Constructor, Loc)) |
| 4917 | return ExprError(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4918 | |
| 4919 | TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); |
| 4920 | if (!TSInfo) |
| 4921 | TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc); |
Sebastian Redl | 188158d | 2012-03-08 21:05:45 +0000 | [diff] [blame] | 4922 | SourceRange ParenRange; |
| 4923 | if (Kind.getKind() != InitializationKind::IK_DirectList) |
| 4924 | ParenRange = Kind.getParenRange(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4925 | |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 4926 | CurInit = S.Owned( |
| 4927 | new (S.Context) CXXTemporaryObjectExpr(S.Context, Constructor, |
| 4928 | TSInfo, ConstructorArgs, |
| 4929 | ParenRange, IsListInitialization, |
| 4930 | HadMultipleCandidates, |
| 4931 | ConstructorInitRequiresZeroInit)); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4932 | } else { |
| 4933 | CXXConstructExpr::ConstructionKind ConstructKind = |
| 4934 | CXXConstructExpr::CK_Complete; |
| 4935 | |
| 4936 | if (Entity.getKind() == InitializedEntity::EK_Base) { |
| 4937 | ConstructKind = Entity.getBaseSpecifier()->isVirtual() ? |
| 4938 | CXXConstructExpr::CK_VirtualBase : |
| 4939 | CXXConstructExpr::CK_NonVirtualBase; |
| 4940 | } else if (Entity.getKind() == InitializedEntity::EK_Delegating) { |
| 4941 | ConstructKind = CXXConstructExpr::CK_Delegating; |
| 4942 | } |
| 4943 | |
| 4944 | // Only get the parenthesis range if it is a direct construction. |
| 4945 | SourceRange parenRange = |
| 4946 | Kind.getKind() == InitializationKind::IK_Direct ? |
| 4947 | Kind.getParenRange() : SourceRange(); |
| 4948 | |
| 4949 | // If the entity allows NRVO, mark the construction as elidable |
| 4950 | // unconditionally. |
| 4951 | if (Entity.allowsNRVO()) |
| 4952 | CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(), |
| 4953 | Constructor, /*Elidable=*/true, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4954 | ConstructorArgs, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4955 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 4956 | IsListInitialization, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4957 | ConstructorInitRequiresZeroInit, |
| 4958 | ConstructKind, |
| 4959 | parenRange); |
| 4960 | else |
| 4961 | CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(), |
| 4962 | Constructor, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4963 | ConstructorArgs, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4964 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 4965 | IsListInitialization, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4966 | ConstructorInitRequiresZeroInit, |
| 4967 | ConstructKind, |
| 4968 | parenRange); |
| 4969 | } |
| 4970 | if (CurInit.isInvalid()) |
| 4971 | return ExprError(); |
| 4972 | |
| 4973 | // Only check access if all of that succeeded. |
| 4974 | S.CheckConstructorAccess(Loc, Constructor, Entity, |
| 4975 | Step.Function.FoundDecl.getAccess()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 4976 | if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc)) |
| 4977 | return ExprError(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4978 | |
| 4979 | if (shouldBindAsTemporary(Entity)) |
| 4980 | CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>()); |
| 4981 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4982 | return CurInit; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 4983 | } |
| 4984 | |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 4985 | /// Determine whether the specified InitializedEntity definitely has a lifetime |
| 4986 | /// longer than the current full-expression. Conservatively returns false if |
| 4987 | /// it's unclear. |
| 4988 | static bool |
| 4989 | InitializedEntityOutlivesFullExpression(const InitializedEntity &Entity) { |
| 4990 | const InitializedEntity *Top = &Entity; |
| 4991 | while (Top->getParent()) |
| 4992 | Top = Top->getParent(); |
| 4993 | |
| 4994 | switch (Top->getKind()) { |
| 4995 | case InitializedEntity::EK_Variable: |
| 4996 | case InitializedEntity::EK_Result: |
| 4997 | case InitializedEntity::EK_Exception: |
| 4998 | case InitializedEntity::EK_Member: |
| 4999 | case InitializedEntity::EK_New: |
| 5000 | case InitializedEntity::EK_Base: |
| 5001 | case InitializedEntity::EK_Delegating: |
| 5002 | return true; |
| 5003 | |
| 5004 | case InitializedEntity::EK_ArrayElement: |
| 5005 | case InitializedEntity::EK_VectorElement: |
| 5006 | case InitializedEntity::EK_BlockElement: |
| 5007 | case InitializedEntity::EK_ComplexElement: |
| 5008 | // Could not determine what the full initialization is. Assume it might not |
| 5009 | // outlive the full-expression. |
| 5010 | return false; |
| 5011 | |
| 5012 | case InitializedEntity::EK_Parameter: |
| 5013 | case InitializedEntity::EK_Temporary: |
| 5014 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 5015 | case InitializedEntity::EK_CompoundLiteralInit: |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5016 | // The entity being initialized might not outlive the full-expression. |
| 5017 | return false; |
| 5018 | } |
| 5019 | |
| 5020 | llvm_unreachable("unknown entity kind"); |
| 5021 | } |
| 5022 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5023 | ExprResult |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5024 | InitializationSequence::Perform(Sema &S, |
| 5025 | const InitializedEntity &Entity, |
| 5026 | const InitializationKind &Kind, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5027 | MultiExprArg Args, |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5028 | QualType *ResultType) { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 5029 | if (Failed()) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5030 | Diagnose(S, Entity, Kind, Args); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5031 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5032 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5033 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 5034 | if (getKind() == DependentSequence) { |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5035 | // If the declaration is a non-dependent, incomplete array type |
| 5036 | // that has an initializer, then its type will be completed once |
| 5037 | // the initializer is instantiated. |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5038 | if (ResultType && !Entity.getType()->isDependentType() && |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5039 | Args.size() == 1) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5040 | QualType DeclType = Entity.getType(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5041 | if (const IncompleteArrayType *ArrayT |
| 5042 | = S.Context.getAsIncompleteArrayType(DeclType)) { |
| 5043 | // FIXME: We don't currently have the ability to accurately |
| 5044 | // compute the length of an initializer list without |
| 5045 | // performing full type-checking of the initializer list |
| 5046 | // (since we have to determine where braces are implicitly |
| 5047 | // introduced and such). So, we fall back to making the array |
| 5048 | // type a dependently-sized array type with no specified |
| 5049 | // bound. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5050 | if (isa<InitListExpr>((Expr *)Args[0])) { |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5051 | SourceRange Brackets; |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5052 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5053 | // Scavange the location of the brackets from the entity, if we can. |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5054 | if (DeclaratorDecl *DD = Entity.getDecl()) { |
| 5055 | if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) { |
| 5056 | TypeLoc TL = TInfo->getTypeLoc(); |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 5057 | if (IncompleteArrayTypeLoc ArrayLoc = |
| 5058 | TL.getAs<IncompleteArrayTypeLoc>()) |
| 5059 | Brackets = ArrayLoc.getBracketsRange(); |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5060 | } |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5061 | } |
| 5062 | |
| 5063 | *ResultType |
| 5064 | = S.Context.getDependentSizedArrayType(ArrayT->getElementType(), |
| 5065 | /*NumElts=*/0, |
| 5066 | ArrayT->getSizeModifier(), |
| 5067 | ArrayT->getIndexTypeCVRQualifiers(), |
| 5068 | Brackets); |
| 5069 | } |
| 5070 | |
| 5071 | } |
| 5072 | } |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 5073 | if (Kind.getKind() == InitializationKind::IK_Direct && |
| 5074 | !Kind.isExplicitCast()) { |
| 5075 | // Rebuild the ParenListExpr. |
| 5076 | SourceRange ParenRange = Kind.getParenRange(); |
| 5077 | return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(), |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5078 | Args); |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 5079 | } |
Manuel Klimek | 0d9106f | 2011-06-22 20:02:16 +0000 | [diff] [blame] | 5080 | assert(Kind.getKind() == InitializationKind::IK_Copy || |
Douglas Gregor | a9b55a4 | 2012-04-04 04:06:51 +0000 | [diff] [blame] | 5081 | Kind.isExplicitCast() || |
| 5082 | Kind.getKind() == InitializationKind::IK_DirectList); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5083 | return ExprResult(Args[0]); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5084 | } |
| 5085 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 5086 | // No steps means no initialization. |
| 5087 | if (Steps.empty()) |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5088 | return S.Owned((Expr *)0); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5089 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5090 | if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() && |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5091 | Args.size() == 1 && isa<InitListExpr>(Args[0]) && |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5092 | Entity.getKind() != InitializedEntity::EK_Parameter) { |
| 5093 | // Produce a C++98 compatibility warning if we are initializing a reference |
| 5094 | // from an initializer list. For parameters, we produce a better warning |
| 5095 | // elsewhere. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5096 | Expr *Init = Args[0]; |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5097 | S.Diag(Init->getLocStart(), diag::warn_cxx98_compat_reference_list_init) |
| 5098 | << Init->getSourceRange(); |
| 5099 | } |
| 5100 | |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5101 | // Diagnose cases where we initialize a pointer to an array temporary, and the |
| 5102 | // pointer obviously outlives the temporary. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5103 | if (Args.size() == 1 && Args[0]->getType()->isArrayType() && |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5104 | Entity.getType()->isPointerType() && |
| 5105 | InitializedEntityOutlivesFullExpression(Entity)) { |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5106 | Expr *Init = Args[0]; |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5107 | Expr::LValueClassification Kind = Init->ClassifyLValue(S.Context); |
| 5108 | if (Kind == Expr::LV_ClassTemporary || Kind == Expr::LV_ArrayTemporary) |
| 5109 | S.Diag(Init->getLocStart(), diag::warn_temporary_array_to_pointer_decay) |
| 5110 | << Init->getSourceRange(); |
| 5111 | } |
| 5112 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5113 | QualType DestType = Entity.getType().getNonReferenceType(); |
| 5114 | // FIXME: Ugly hack around the fact that Entity.getType() is not |
Eli Friedman | a91eb54 | 2009-12-22 02:10:53 +0000 | [diff] [blame] | 5115 | // the same as Entity.getDecl()->getType() in cases involving type merging, |
| 5116 | // and we want latter when it makes sense. |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5117 | if (ResultType) |
Eli Friedman | a91eb54 | 2009-12-22 02:10:53 +0000 | [diff] [blame] | 5118 | *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() : |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5119 | Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5120 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5121 | ExprResult CurInit = S.Owned((Expr *)0); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5122 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5123 | // For initialization steps that start with a single initializer, |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5124 | // grab the only argument out the Args and place it into the "current" |
| 5125 | // initializer. |
| 5126 | switch (Steps.front().Kind) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5127 | case SK_ResolveAddressOfOverloadedFunction: |
| 5128 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5129 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5130 | case SK_CastDerivedToBaseLValue: |
| 5131 | case SK_BindReference: |
| 5132 | case SK_BindReferenceToTemporary: |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5133 | case SK_ExtraneousCopyToTemporary: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5134 | case SK_UserConversion: |
| 5135 | case SK_QualificationConversionLValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5136 | case SK_QualificationConversionXValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5137 | case SK_QualificationConversionRValue: |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5138 | case SK_LValueToRValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5139 | case SK_ConversionSequence: |
| 5140 | case SK_ListInitialization: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5141 | case SK_UnwrapInitList: |
| 5142 | case SK_RewrapInitList: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5143 | case SK_CAssignment: |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 5144 | case SK_StringInit: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5145 | case SK_ObjCObjectConversion: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5146 | case SK_ArrayInit: |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 5147 | case SK_ParenthesizedArrayInit: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5148 | case SK_PassByIndirectCopyRestore: |
| 5149 | case SK_PassByIndirectRestore: |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5150 | case SK_ProduceObjCObject: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 5151 | case SK_StdInitializerList: |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 5152 | case SK_OCLSamplerInit: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 5153 | case SK_OCLZeroEvent: { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5154 | assert(Args.size() == 1); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5155 | CurInit = Args[0]; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5156 | if (!CurInit.get()) return ExprError(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5157 | break; |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5158 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5159 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5160 | case SK_ConstructorInitialization: |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 5161 | case SK_ListConstructorCall: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5162 | case SK_ZeroInitialization: |
| 5163 | break; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5164 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5165 | |
| 5166 | // Walk through the computed steps for the initialization sequence, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5167 | // performing the specified conversions along the way. |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5168 | bool ConstructorInitRequiresZeroInit = false; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5169 | for (step_iterator Step = step_begin(), StepEnd = step_end(); |
| 5170 | Step != StepEnd; ++Step) { |
| 5171 | if (CurInit.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5172 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5173 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5174 | QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5175 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5176 | switch (Step->Kind) { |
| 5177 | case SK_ResolveAddressOfOverloadedFunction: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5178 | // Overload resolution determined which function invoke; update the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5179 | // initializer to reflect that choice. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5180 | S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5181 | if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation())) |
| 5182 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5183 | CurInit = S.FixOverloadedFunctionReference(CurInit, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 5184 | Step->Function.FoundDecl, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5185 | Step->Function.Function); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5186 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5187 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5188 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5189 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5190 | case SK_CastDerivedToBaseLValue: { |
| 5191 | // We have a derived-to-base cast that produces either an rvalue or an |
| 5192 | // lvalue. Perform that cast. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5193 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5194 | CXXCastPath BasePath; |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 5195 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5196 | // Casts to inaccessible base classes are allowed with C-style casts. |
| 5197 | bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast(); |
| 5198 | if (S.CheckDerivedToBaseConversion(SourceType, Step->Type, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5199 | CurInit.get()->getLocStart(), |
| 5200 | CurInit.get()->getSourceRange(), |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 5201 | &BasePath, IgnoreBaseAccess)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5202 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5203 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 5204 | if (S.BasePathInvolvesVirtualBase(BasePath)) { |
| 5205 | QualType T = SourceType; |
| 5206 | if (const PointerType *Pointer = T->getAs<PointerType>()) |
| 5207 | T = Pointer->getPointeeType(); |
| 5208 | if (const RecordType *RecordTy = T->getAs<RecordType>()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5209 | S.MarkVTableUsed(CurInit.get()->getLocStart(), |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 5210 | cast<CXXRecordDecl>(RecordTy->getDecl())); |
| 5211 | } |
| 5212 | |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5213 | ExprValueKind VK = |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5214 | Step->Kind == SK_CastDerivedToBaseLValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5215 | VK_LValue : |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5216 | (Step->Kind == SK_CastDerivedToBaseXValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5217 | VK_XValue : |
| 5218 | VK_RValue); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5219 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, |
| 5220 | Step->Type, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5221 | CK_DerivedToBase, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5222 | CurInit.get(), |
| 5223 | &BasePath, VK)); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5224 | break; |
| 5225 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5226 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5227 | case SK_BindReference: |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5228 | // References cannot bind to bit-fields (C++ [dcl.init.ref]p5). |
| 5229 | if (CurInit.get()->refersToBitField()) { |
| 5230 | // We don't necessarily have an unambiguous source bit-field. |
| 5231 | FieldDecl *BitField = CurInit.get()->getSourceBitField(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5232 | S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield) |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5233 | << Entity.getType().isVolatileQualified() |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5234 | << (BitField ? BitField->getDeclName() : DeclarationName()) |
| 5235 | << (BitField != NULL) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5236 | << CurInit.get()->getSourceRange(); |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5237 | if (BitField) |
| 5238 | S.Diag(BitField->getLocation(), diag::note_bitfield_decl); |
| 5239 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5240 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5241 | } |
Anders Carlsson | a6fe0bf | 2010-01-29 02:47:33 +0000 | [diff] [blame] | 5242 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5243 | if (CurInit.get()->refersToVectorElement()) { |
John McCall | 41593e3 | 2010-02-02 19:02:38 +0000 | [diff] [blame] | 5244 | // References cannot bind to vector elements. |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 5245 | S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element) |
| 5246 | << Entity.getType().isVolatileQualified() |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5247 | << CurInit.get()->getSourceRange(); |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5248 | PrintInitLocationNote(S, Entity); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5249 | return ExprError(); |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 5250 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5251 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5252 | // Reference binding does not have any corresponding ASTs. |
| 5253 | |
| 5254 | // Check exception specifications |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5255 | if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5256 | return ExprError(); |
Anders Carlsson | 3aba093 | 2010-01-31 18:34:51 +0000 | [diff] [blame] | 5257 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5258 | break; |
Anders Carlsson | 3aba093 | 2010-01-31 18:34:51 +0000 | [diff] [blame] | 5259 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5260 | case SK_BindReferenceToTemporary: |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5261 | // Make sure the "temporary" is actually an rvalue. |
| 5262 | assert(CurInit.get()->isRValue() && "not a temporary"); |
| 5263 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5264 | // Check exception specifications |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5265 | if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5266 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5267 | |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 5268 | // Materialize the temporary into memory. |
Douglas Gregor | b4b7b50 | 2011-06-22 15:05:02 +0000 | [diff] [blame] | 5269 | CurInit = new (S.Context) MaterializeTemporaryExpr( |
| 5270 | Entity.getType().getNonReferenceType(), |
| 5271 | CurInit.get(), |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 5272 | Entity.getType()->isLValueReferenceType()); |
Douglas Gregor | d7b2316 | 2011-06-22 16:12:01 +0000 | [diff] [blame] | 5273 | |
| 5274 | // If we're binding to an Objective-C object that has lifetime, we |
| 5275 | // need cleanups. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5276 | if (S.getLangOpts().ObjCAutoRefCount && |
Douglas Gregor | d7b2316 | 2011-06-22 16:12:01 +0000 | [diff] [blame] | 5277 | CurInit.get()->getType()->isObjCLifetimeType()) |
| 5278 | S.ExprNeedsCleanups = true; |
| 5279 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5280 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5281 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5282 | case SK_ExtraneousCopyToTemporary: |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5283 | CurInit = CopyObject(S, Step->Type, Entity, CurInit, |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5284 | /*IsExtraneousCopy=*/true); |
| 5285 | break; |
| 5286 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5287 | case SK_UserConversion: { |
| 5288 | // We have a user-defined conversion that invokes either a constructor |
| 5289 | // or a conversion function. |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5290 | CastKind CastKind; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5291 | bool IsCopy = false; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5292 | FunctionDecl *Fn = Step->Function.Function; |
| 5293 | DeclAccessPair FoundFn = Step->Function.FoundDecl; |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5294 | bool HadMultipleCandidates = Step->Function.HadMultipleCandidates; |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5295 | bool CreatedObject = false; |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5296 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5297 | // Build a call to the selected constructor. |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 5298 | SmallVector<Expr*, 8> ConstructorArgs; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5299 | SourceLocation Loc = CurInit.get()->getLocStart(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5300 | CurInit.release(); // Ownership transferred into MultiExprArg, below. |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5301 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5302 | // Determine the arguments required to actually perform the constructor |
| 5303 | // call. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5304 | Expr *Arg = CurInit.get(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5305 | if (S.CompleteConstructorCall(Constructor, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5306 | MultiExprArg(&Arg, 1), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5307 | Loc, ConstructorArgs)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5308 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5309 | |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 5310 | // Build an expression that constructs a temporary. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5311 | CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5312 | ConstructorArgs, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5313 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5314 | /*ListInit*/ false, |
John McCall | 7a1fad3 | 2010-08-24 07:32:53 +0000 | [diff] [blame] | 5315 | /*ZeroInit*/ false, |
Chandler Carruth | 428edaf | 2010-10-25 08:47:36 +0000 | [diff] [blame] | 5316 | CXXConstructExpr::CK_Complete, |
| 5317 | SourceRange()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5318 | if (CurInit.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5319 | return ExprError(); |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5320 | |
Anders Carlsson | 9a68a67 | 2010-04-21 18:47:17 +0000 | [diff] [blame] | 5321 | S.CheckConstructorAccess(Kind.getLocation(), Constructor, Entity, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5322 | FoundFn.getAccess()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5323 | if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation())) |
| 5324 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5325 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5326 | CastKind = CK_ConstructorConversion; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5327 | QualType Class = S.Context.getTypeDeclType(Constructor->getParent()); |
| 5328 | if (S.Context.hasSameUnqualifiedType(SourceType, Class) || |
| 5329 | S.IsDerivedFrom(SourceType, Class)) |
| 5330 | IsCopy = true; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5331 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5332 | CreatedObject = true; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5333 | } else { |
| 5334 | // Build a call to the conversion function. |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5335 | CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5336 | S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), 0, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5337 | FoundFn); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5338 | if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation())) |
| 5339 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5340 | |
| 5341 | // FIXME: Should we move this initialization into a separate |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5342 | // derived-to-base conversion? I believe the answer is "no", because |
| 5343 | // we don't want to turn off access control here for c-style casts. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5344 | ExprResult CurInitExprRes = |
| 5345 | S.PerformObjectArgumentInitialization(CurInit.take(), /*Qualifier=*/0, |
| 5346 | FoundFn, Conversion); |
| 5347 | if(CurInitExprRes.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5348 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5349 | CurInit = CurInitExprRes; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5350 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5351 | // Build the actual call to the conversion function. |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5352 | CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion, |
| 5353 | HadMultipleCandidates); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5354 | if (CurInit.isInvalid() || !CurInit.get()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5355 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5356 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5357 | CastKind = CK_UserDefinedConversion; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5358 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5359 | CreatedObject = Conversion->getResultType()->isRecordType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5360 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5361 | |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 5362 | bool RequiresCopy = !IsCopy && !isReferenceBinding(Steps.back()); |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 5363 | bool MaybeBindToTemp = RequiresCopy || shouldBindAsTemporary(Entity); |
| 5364 | |
| 5365 | if (!MaybeBindToTemp && CreatedObject && shouldDestroyTemporary(Entity)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5366 | QualType T = CurInit.get()->getType(); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5367 | if (const RecordType *Record = T->getAs<RecordType>()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5368 | CXXDestructorDecl *Destructor |
Douglas Gregor | db89f28 | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 5369 | = S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl())); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5370 | S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor, |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5371 | S.PDiag(diag::err_access_dtor_temp) << T); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 5372 | S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5373 | if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart())) |
| 5374 | return ExprError(); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5375 | } |
| 5376 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5377 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5378 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5379 | CurInit.get()->getType(), |
| 5380 | CastKind, CurInit.get(), 0, |
Eli Friedman | 104be6f | 2011-09-27 01:11:35 +0000 | [diff] [blame] | 5381 | CurInit.get()->getValueKind())); |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 5382 | if (MaybeBindToTemp) |
| 5383 | CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>()); |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 5384 | if (RequiresCopy) |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5385 | CurInit = CopyObject(S, Entity.getType().getNonReferenceType(), Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5386 | CurInit, /*IsExtraneousCopy=*/false); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5387 | break; |
| 5388 | } |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5389 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5390 | case SK_QualificationConversionLValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5391 | case SK_QualificationConversionXValue: |
| 5392 | case SK_QualificationConversionRValue: { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5393 | // Perform a qualification conversion; these can never go wrong. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5394 | ExprValueKind VK = |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5395 | Step->Kind == SK_QualificationConversionLValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5396 | VK_LValue : |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5397 | (Step->Kind == SK_QualificationConversionXValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5398 | VK_XValue : |
| 5399 | VK_RValue); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5400 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, CK_NoOp, VK); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5401 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5402 | } |
| 5403 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5404 | case SK_LValueToRValue: { |
| 5405 | assert(CurInit.get()->isGLValue() && "cannot load from a prvalue"); |
| 5406 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type, |
| 5407 | CK_LValueToRValue, |
| 5408 | CurInit.take(), |
| 5409 | /*BasePath=*/0, |
| 5410 | VK_RValue)); |
| 5411 | break; |
| 5412 | } |
| 5413 | |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 5414 | case SK_ConversionSequence: { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5415 | Sema::CheckedConversionKind CCK |
| 5416 | = Kind.isCStyleCast()? Sema::CCK_CStyleCast |
| 5417 | : Kind.isFunctionalCast()? Sema::CCK_FunctionalCast |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 5418 | : Kind.isExplicitCast()? Sema::CCK_OtherCast |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5419 | : Sema::CCK_ImplicitConversion; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5420 | ExprResult CurInitExprRes = |
| 5421 | S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5422 | getAssignmentAction(Entity), CCK); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5423 | if (CurInitExprRes.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5424 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5425 | CurInit = CurInitExprRes; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5426 | break; |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 5427 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5428 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5429 | case SK_ListInitialization: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5430 | InitListExpr *InitList = cast<InitListExpr>(CurInit.get()); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5431 | // Hack: We must pass *ResultType if available in order to set the type |
| 5432 | // of arrays, e.g. in 'int ar[] = {1, 2, 3};'. |
| 5433 | // But in 'const X &x = {1, 2, 3};' we're supposed to initialize a |
| 5434 | // temporary, not a reference, so we should pass Ty. |
| 5435 | // Worst case: 'const int (&arref)[] = {1, 2, 3};'. |
| 5436 | // Since this step is never used for a reference directly, we explicitly |
| 5437 | // unwrap references here and rewrap them afterwards. |
| 5438 | // We also need to create a InitializeTemporary entity for this. |
| 5439 | QualType Ty = ResultType ? ResultType->getNonReferenceType() : Step->Type; |
Sebastian Redl | cbf8209 | 2012-03-07 16:10:45 +0000 | [diff] [blame] | 5440 | bool IsTemporary = Entity.getType()->isReferenceType(); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5441 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty); |
Richard Smith | 802e226 | 2013-02-02 01:13:06 +0000 | [diff] [blame] | 5442 | InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; |
| 5443 | InitListChecker PerformInitList(S, InitEntity, |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5444 | InitList, Ty, /*VerifyOnly=*/false, |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5445 | Kind.getKind() != InitializationKind::IK_DirectList || |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5446 | !S.getLangOpts().CPlusPlus11); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 5447 | if (PerformInitList.HadError()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5448 | return ExprError(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5449 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5450 | if (ResultType) { |
| 5451 | if ((*ResultType)->isRValueReferenceType()) |
| 5452 | Ty = S.Context.getRValueReferenceType(Ty); |
| 5453 | else if ((*ResultType)->isLValueReferenceType()) |
| 5454 | Ty = S.Context.getLValueReferenceType(Ty, |
| 5455 | (*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue()); |
| 5456 | *ResultType = Ty; |
| 5457 | } |
| 5458 | |
| 5459 | InitListExpr *StructuredInitList = |
| 5460 | PerformInitList.getFullyStructuredList(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5461 | CurInit.release(); |
Richard Smith | 802e226 | 2013-02-02 01:13:06 +0000 | [diff] [blame] | 5462 | CurInit = shouldBindAsTemporary(InitEntity) |
| 5463 | ? S.MaybeBindToTemporary(StructuredInitList) |
| 5464 | : S.Owned(StructuredInitList); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5465 | break; |
| 5466 | } |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 5467 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5468 | case SK_ListConstructorCall: { |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5469 | // When an initializer list is passed for a parameter of type "reference |
| 5470 | // to object", we don't get an EK_Temporary entity, but instead an |
| 5471 | // EK_Parameter entity with reference type. |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 5472 | // FIXME: This is a hack. What we really should do is create a user |
| 5473 | // conversion step for this case, but this makes it considerably more |
| 5474 | // complicated. For now, this will do. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5475 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary( |
| 5476 | Entity.getType().getNonReferenceType()); |
| 5477 | bool UseTemporary = Entity.getType()->isReferenceType(); |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 5478 | assert(Args.size() == 1 && "expected a single argument for list init"); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5479 | InitListExpr *InitList = cast<InitListExpr>(Args[0]); |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5480 | S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init) |
| 5481 | << InitList->getSourceRange(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5482 | MultiExprArg Arg(InitList->getInits(), InitList->getNumInits()); |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5483 | CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity : |
| 5484 | Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5485 | Kind, Arg, *Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5486 | ConstructorInitRequiresZeroInit, |
| 5487 | /*IsListInitialization*/ true); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5488 | break; |
| 5489 | } |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 5490 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5491 | case SK_UnwrapInitList: |
| 5492 | CurInit = S.Owned(cast<InitListExpr>(CurInit.take())->getInit(0)); |
| 5493 | break; |
| 5494 | |
| 5495 | case SK_RewrapInitList: { |
| 5496 | Expr *E = CurInit.take(); |
| 5497 | InitListExpr *Syntactic = Step->WrappingSyntacticList; |
| 5498 | InitListExpr *ILE = new (S.Context) InitListExpr(S.Context, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 5499 | Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc()); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5500 | ILE->setSyntacticForm(Syntactic); |
| 5501 | ILE->setType(E->getType()); |
| 5502 | ILE->setValueKind(E->getValueKind()); |
| 5503 | CurInit = S.Owned(ILE); |
| 5504 | break; |
| 5505 | } |
| 5506 | |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 5507 | case SK_ConstructorInitialization: { |
| 5508 | // When an initializer list is passed for a parameter of type "reference |
| 5509 | // to object", we don't get an EK_Temporary entity, but instead an |
| 5510 | // EK_Parameter entity with reference type. |
| 5511 | // FIXME: This is a hack. What we really should do is create a user |
| 5512 | // conversion step for this case, but this makes it considerably more |
| 5513 | // complicated. For now, this will do. |
| 5514 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary( |
| 5515 | Entity.getType().getNonReferenceType()); |
| 5516 | bool UseTemporary = Entity.getType()->isReferenceType(); |
| 5517 | CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity |
| 5518 | : Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5519 | Kind, Args, *Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5520 | ConstructorInitRequiresZeroInit, |
| 5521 | /*IsListInitialization*/ false); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 5522 | break; |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 5523 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5524 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 5525 | case SK_ZeroInitialization: { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5526 | step_iterator NextStep = Step; |
| 5527 | ++NextStep; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5528 | if (NextStep != StepEnd && |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 5529 | (NextStep->Kind == SK_ConstructorInitialization || |
| 5530 | NextStep->Kind == SK_ListConstructorCall)) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5531 | // The need for zero-initialization is recorded directly into |
| 5532 | // the call to the object's constructor within the next step. |
| 5533 | ConstructorInitRequiresZeroInit = true; |
| 5534 | } else if (Kind.getKind() == InitializationKind::IK_Value && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5535 | S.getLangOpts().CPlusPlus && |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5536 | !Kind.isImplicitValueInit()) { |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 5537 | TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); |
| 5538 | if (!TSInfo) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5539 | TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type, |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 5540 | Kind.getRange().getBegin()); |
| 5541 | |
| 5542 | CurInit = S.Owned(new (S.Context) CXXScalarValueInitExpr( |
| 5543 | TSInfo->getType().getNonLValueExprType(S.Context), |
| 5544 | TSInfo, |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 5545 | Kind.getRange().getEnd())); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5546 | } else { |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 5547 | CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type)); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5548 | } |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 5549 | break; |
| 5550 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5551 | |
| 5552 | case SK_CAssignment: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5553 | QualType SourceType = CurInit.get()->getType(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5554 | ExprResult Result = CurInit; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5555 | Sema::AssignConvertType ConvTy = |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5556 | S.CheckSingleAssignmentConstraints(Step->Type, Result); |
| 5557 | if (Result.isInvalid()) |
| 5558 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5559 | CurInit = Result; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 5560 | |
| 5561 | // If this is a call, allow conversion to a transparent union. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5562 | ExprResult CurInitExprRes = CurInit; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 5563 | if (ConvTy != Sema::Compatible && |
| 5564 | Entity.getKind() == InitializedEntity::EK_Parameter && |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5565 | S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes) |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 5566 | == Sema::Compatible) |
| 5567 | ConvTy = Sema::Compatible; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5568 | if (CurInitExprRes.isInvalid()) |
| 5569 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5570 | CurInit = CurInitExprRes; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 5571 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5572 | bool Complained; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5573 | if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(), |
| 5574 | Step->Type, SourceType, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5575 | CurInit.get(), |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5576 | getAssignmentAction(Entity), |
| 5577 | &Complained)) { |
| 5578 | PrintInitLocationNote(S, Entity); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5579 | return ExprError(); |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5580 | } else if (Complained) |
| 5581 | PrintInitLocationNote(S, Entity); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5582 | break; |
| 5583 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 5584 | |
| 5585 | case SK_StringInit: { |
| 5586 | QualType Ty = Step->Type; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5587 | CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty, |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 5588 | S.Context.getAsArrayType(Ty), S); |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 5589 | break; |
| 5590 | } |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 5591 | |
| 5592 | case SK_ObjCObjectConversion: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5593 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5594 | CK_ObjCObjectLValueCast, |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 5595 | CurInit.get()->getValueKind()); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 5596 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5597 | |
| 5598 | case SK_ArrayInit: |
| 5599 | // Okay: we checked everything before creating this step. Note that |
| 5600 | // this is a GNU extension. |
| 5601 | S.Diag(Kind.getLocation(), diag::ext_array_init_copy) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5602 | << Step->Type << CurInit.get()->getType() |
| 5603 | << CurInit.get()->getSourceRange(); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5604 | |
| 5605 | // If the destination type is an incomplete array type, update the |
| 5606 | // type accordingly. |
| 5607 | if (ResultType) { |
| 5608 | if (const IncompleteArrayType *IncompleteDest |
| 5609 | = S.Context.getAsIncompleteArrayType(Step->Type)) { |
| 5610 | if (const ConstantArrayType *ConstantSource |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5611 | = S.Context.getAsConstantArrayType(CurInit.get()->getType())) { |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5612 | *ResultType = S.Context.getConstantArrayType( |
| 5613 | IncompleteDest->getElementType(), |
| 5614 | ConstantSource->getSize(), |
| 5615 | ArrayType::Normal, 0); |
| 5616 | } |
| 5617 | } |
| 5618 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5619 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5620 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 5621 | case SK_ParenthesizedArrayInit: |
| 5622 | // Okay: we checked everything before creating this step. Note that |
| 5623 | // this is a GNU extension. |
| 5624 | S.Diag(Kind.getLocation(), diag::ext_array_init_parens) |
| 5625 | << CurInit.get()->getSourceRange(); |
| 5626 | break; |
| 5627 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5628 | case SK_PassByIndirectCopyRestore: |
| 5629 | case SK_PassByIndirectRestore: |
| 5630 | checkIndirectCopyRestoreSource(S, CurInit.get()); |
| 5631 | CurInit = S.Owned(new (S.Context) |
| 5632 | ObjCIndirectCopyRestoreExpr(CurInit.take(), Step->Type, |
| 5633 | Step->Kind == SK_PassByIndirectCopyRestore)); |
| 5634 | break; |
| 5635 | |
| 5636 | case SK_ProduceObjCObject: |
| 5637 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type, |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 5638 | CK_ARCProduceObject, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5639 | CurInit.take(), 0, VK_RValue)); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5640 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5641 | |
| 5642 | case SK_StdInitializerList: { |
| 5643 | QualType Dest = Step->Type; |
| 5644 | QualType E; |
Douglas Gregor | 6c5aaed | 2013-03-25 23:47:01 +0000 | [diff] [blame] | 5645 | bool Success = S.isStdInitializerList(Dest.getNonReferenceType(), &E); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5646 | (void)Success; |
| 5647 | assert(Success && "Destination type changed?"); |
Sebastian Redl | 2835745 | 2012-03-05 19:35:43 +0000 | [diff] [blame] | 5648 | |
| 5649 | // If the element type has a destructor, check it. |
| 5650 | if (CXXRecordDecl *RD = E->getAsCXXRecordDecl()) { |
| 5651 | if (!RD->hasIrrelevantDestructor()) { |
| 5652 | if (CXXDestructorDecl *Destructor = S.LookupDestructor(RD)) { |
| 5653 | S.MarkFunctionReferenced(Kind.getLocation(), Destructor); |
| 5654 | S.CheckDestructorAccess(Kind.getLocation(), Destructor, |
| 5655 | S.PDiag(diag::err_access_dtor_temp) << E); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5656 | if (S.DiagnoseUseOfDecl(Destructor, Kind.getLocation())) |
| 5657 | return ExprError(); |
Sebastian Redl | 2835745 | 2012-03-05 19:35:43 +0000 | [diff] [blame] | 5658 | } |
| 5659 | } |
| 5660 | } |
| 5661 | |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5662 | InitListExpr *ILE = cast<InitListExpr>(CurInit.take()); |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5663 | S.Diag(ILE->getExprLoc(), diag::warn_cxx98_compat_initializer_list_init) |
| 5664 | << ILE->getSourceRange(); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5665 | unsigned NumInits = ILE->getNumInits(); |
| 5666 | SmallVector<Expr*, 16> Converted(NumInits); |
| 5667 | InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary( |
| 5668 | S.Context.getConstantArrayType(E, |
| 5669 | llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()), |
| 5670 | NumInits), |
| 5671 | ArrayType::Normal, 0)); |
| 5672 | InitializedEntity Element =InitializedEntity::InitializeElement(S.Context, |
| 5673 | 0, HiddenArray); |
| 5674 | for (unsigned i = 0; i < NumInits; ++i) { |
| 5675 | Element.setElementIndex(i); |
| 5676 | ExprResult Init = S.Owned(ILE->getInit(i)); |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 5677 | ExprResult Res = S.PerformCopyInitialization( |
| 5678 | Element, Init.get()->getExprLoc(), Init, |
| 5679 | /*TopLevelOfInitList=*/ true); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5680 | assert(!Res.isInvalid() && "Result changed since try phase."); |
| 5681 | Converted[i] = Res.take(); |
| 5682 | } |
| 5683 | InitListExpr *Semantic = new (S.Context) |
| 5684 | InitListExpr(S.Context, ILE->getLBraceLoc(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 5685 | Converted, ILE->getRBraceLoc()); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5686 | Semantic->setSyntacticForm(ILE); |
| 5687 | Semantic->setType(Dest); |
Sebastian Redl | 32cf1f2 | 2012-02-17 08:42:25 +0000 | [diff] [blame] | 5688 | Semantic->setInitializesStdInitializerList(); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5689 | CurInit = S.Owned(Semantic); |
| 5690 | break; |
| 5691 | } |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 5692 | case SK_OCLSamplerInit: { |
| 5693 | assert(Step->Type->isSamplerT() && |
| 5694 | "Sampler initialization on non sampler type."); |
| 5695 | |
| 5696 | QualType SourceType = CurInit.get()->getType(); |
| 5697 | InitializedEntity::EntityKind EntityKind = Entity.getKind(); |
| 5698 | |
| 5699 | if (EntityKind == InitializedEntity::EK_Parameter) { |
| 5700 | if (!SourceType->isSamplerT()) |
| 5701 | S.Diag(Kind.getLocation(), diag::err_sampler_argument_required) |
| 5702 | << SourceType; |
| 5703 | } else if (EntityKind != InitializedEntity::EK_Variable) { |
| 5704 | llvm_unreachable("Invalid EntityKind!"); |
| 5705 | } |
| 5706 | |
| 5707 | break; |
| 5708 | } |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 5709 | case SK_OCLZeroEvent: { |
| 5710 | assert(Step->Type->isEventT() && |
| 5711 | "Event initialization on non event type."); |
| 5712 | |
| 5713 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, |
| 5714 | CK_ZeroToOCLEvent, |
| 5715 | CurInit.get()->getValueKind()); |
| 5716 | break; |
| 5717 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5718 | } |
| 5719 | } |
John McCall | 15d7d12 | 2010-11-11 03:21:53 +0000 | [diff] [blame] | 5720 | |
| 5721 | // Diagnose non-fatal problems with the completed initialization. |
| 5722 | if (Entity.getKind() == InitializedEntity::EK_Member && |
| 5723 | cast<FieldDecl>(Entity.getDecl())->isBitField()) |
| 5724 | S.CheckBitFieldInitialization(Kind.getLocation(), |
| 5725 | cast<FieldDecl>(Entity.getDecl()), |
| 5726 | CurInit.get()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5727 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5728 | return CurInit; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5729 | } |
| 5730 | |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 5731 | /// Somewhere within T there is an uninitialized reference subobject. |
| 5732 | /// Dig it out and diagnose it. |
Benjamin Kramer | a574c89 | 2013-02-15 12:30:38 +0000 | [diff] [blame] | 5733 | static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc, |
| 5734 | QualType T) { |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 5735 | if (T->isReferenceType()) { |
| 5736 | S.Diag(Loc, diag::err_reference_without_init) |
| 5737 | << T.getNonReferenceType(); |
| 5738 | return true; |
| 5739 | } |
| 5740 | |
| 5741 | CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); |
| 5742 | if (!RD || !RD->hasUninitializedReferenceMember()) |
| 5743 | return false; |
| 5744 | |
| 5745 | for (CXXRecordDecl::field_iterator FI = RD->field_begin(), |
| 5746 | FE = RD->field_end(); FI != FE; ++FI) { |
| 5747 | if (FI->isUnnamedBitfield()) |
| 5748 | continue; |
| 5749 | |
| 5750 | if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) { |
| 5751 | S.Diag(Loc, diag::note_value_initialization_here) << RD; |
| 5752 | return true; |
| 5753 | } |
| 5754 | } |
| 5755 | |
| 5756 | for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(), |
| 5757 | BE = RD->bases_end(); |
| 5758 | BI != BE; ++BI) { |
| 5759 | if (DiagnoseUninitializedReference(S, BI->getLocStart(), BI->getType())) { |
| 5760 | S.Diag(Loc, diag::note_value_initialization_here) << RD; |
| 5761 | return true; |
| 5762 | } |
| 5763 | } |
| 5764 | |
| 5765 | return false; |
| 5766 | } |
| 5767 | |
| 5768 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5769 | //===----------------------------------------------------------------------===// |
| 5770 | // Diagnose initialization failures |
| 5771 | //===----------------------------------------------------------------------===// |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 5772 | |
| 5773 | /// Emit notes associated with an initialization that failed due to a |
| 5774 | /// "simple" conversion failure. |
| 5775 | static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity, |
| 5776 | Expr *op) { |
| 5777 | QualType destType = entity.getType(); |
| 5778 | if (destType.getNonReferenceType()->isObjCObjectPointerType() && |
| 5779 | op->getType()->isObjCObjectPointerType()) { |
| 5780 | |
| 5781 | // Emit a possible note about the conversion failing because the |
| 5782 | // operand is a message send with a related result type. |
| 5783 | S.EmitRelatedResultTypeNote(op); |
| 5784 | |
| 5785 | // Emit a possible note about a return failing because we're |
| 5786 | // expecting a related result type. |
| 5787 | if (entity.getKind() == InitializedEntity::EK_Result) |
| 5788 | S.EmitRelatedResultTypeNoteForReturn(destType); |
| 5789 | } |
| 5790 | } |
| 5791 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5792 | bool InitializationSequence::Diagnose(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5793 | const InitializedEntity &Entity, |
| 5794 | const InitializationKind &Kind, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5795 | ArrayRef<Expr *> Args) { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 5796 | if (!Failed()) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5797 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5798 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5799 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5800 | switch (Failure) { |
| 5801 | case FK_TooManyInitsForReference: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 5802 | // FIXME: Customize for the initialized entity? |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5803 | if (Args.empty()) { |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 5804 | // Dig out the reference subobject which is uninitialized and diagnose it. |
| 5805 | // If this is value-initialization, this could be nested some way within |
| 5806 | // the target type. |
| 5807 | assert(Kind.getKind() == InitializationKind::IK_Value || |
| 5808 | DestType->isReferenceType()); |
| 5809 | bool Diagnosed = |
| 5810 | DiagnoseUninitializedReference(S, Kind.getLocation(), DestType); |
| 5811 | assert(Diagnosed && "couldn't find uninitialized reference to diagnose"); |
| 5812 | (void)Diagnosed; |
| 5813 | } else // FIXME: diagnostic below could be better! |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 5814 | S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5815 | << SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5816 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5817 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5818 | case FK_ArrayNeedsInitList: |
| 5819 | case FK_ArrayNeedsInitListOrStringLiteral: |
| 5820 | S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) |
| 5821 | << (Failure == FK_ArrayNeedsInitListOrStringLiteral); |
| 5822 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5823 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5824 | case FK_ArrayTypeMismatch: |
| 5825 | case FK_NonConstantArrayInit: |
| 5826 | S.Diag(Kind.getLocation(), |
| 5827 | (Failure == FK_ArrayTypeMismatch |
| 5828 | ? diag::err_array_init_different_type |
| 5829 | : diag::err_array_init_non_constant_array)) |
| 5830 | << DestType.getNonReferenceType() |
| 5831 | << Args[0]->getType() |
| 5832 | << Args[0]->getSourceRange(); |
| 5833 | break; |
| 5834 | |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 5835 | case FK_VariableLengthArrayHasInitializer: |
| 5836 | S.Diag(Kind.getLocation(), diag::err_variable_object_no_init) |
| 5837 | << Args[0]->getSourceRange(); |
| 5838 | break; |
| 5839 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 5840 | case FK_AddressOfOverloadFailed: { |
| 5841 | DeclAccessPair Found; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5842 | S.ResolveAddressOfOverloadedFunction(Args[0], |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5843 | DestType.getNonReferenceType(), |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 5844 | true, |
| 5845 | Found); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5846 | break; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 5847 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5848 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5849 | case FK_ReferenceInitOverloadFailed: |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 5850 | case FK_UserConversionOverloadFailed: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5851 | switch (FailedOverloadResult) { |
| 5852 | case OR_Ambiguous: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5853 | if (Failure == FK_UserConversionOverloadFailed) |
| 5854 | S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition) |
| 5855 | << Args[0]->getType() << DestType |
| 5856 | << Args[0]->getSourceRange(); |
| 5857 | else |
| 5858 | S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous) |
| 5859 | << DestType << Args[0]->getType() |
| 5860 | << Args[0]->getSourceRange(); |
| 5861 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5862 | FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5863 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5864 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5865 | case OR_No_Viable_Function: |
| 5866 | S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition) |
| 5867 | << Args[0]->getType() << DestType.getNonReferenceType() |
| 5868 | << Args[0]->getSourceRange(); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5869 | FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5870 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5871 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5872 | case OR_Deleted: { |
| 5873 | S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function) |
| 5874 | << Args[0]->getType() << DestType.getNonReferenceType() |
| 5875 | << Args[0]->getSourceRange(); |
| 5876 | OverloadCandidateSet::iterator Best; |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 5877 | OverloadingResult Ovl |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 5878 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best, |
| 5879 | true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5880 | if (Ovl == OR_Deleted) { |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 5881 | S.NoteDeletedFunction(Best->Function); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5882 | } else { |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 5883 | llvm_unreachable("Inconsistent overload resolution?"); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5884 | } |
| 5885 | break; |
| 5886 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5887 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5888 | case OR_Success: |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 5889 | llvm_unreachable("Conversion did not fail!"); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5890 | } |
| 5891 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5892 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5893 | case FK_NonConstLValueReferenceBindingToTemporary: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5894 | if (isa<InitListExpr>(Args[0])) { |
| 5895 | S.Diag(Kind.getLocation(), |
| 5896 | diag::err_lvalue_reference_bind_to_initlist) |
| 5897 | << DestType.getNonReferenceType().isVolatileQualified() |
| 5898 | << DestType.getNonReferenceType() |
| 5899 | << Args[0]->getSourceRange(); |
| 5900 | break; |
| 5901 | } |
| 5902 | // Intentional fallthrough |
| 5903 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5904 | case FK_NonConstLValueReferenceBindingToUnrelated: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5905 | S.Diag(Kind.getLocation(), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5906 | Failure == FK_NonConstLValueReferenceBindingToTemporary |
| 5907 | ? diag::err_lvalue_reference_bind_to_temporary |
| 5908 | : diag::err_lvalue_reference_bind_to_unrelated) |
Douglas Gregor | ef06e24 | 2010-01-29 19:39:15 +0000 | [diff] [blame] | 5909 | << DestType.getNonReferenceType().isVolatileQualified() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5910 | << DestType.getNonReferenceType() |
| 5911 | << Args[0]->getType() |
| 5912 | << Args[0]->getSourceRange(); |
| 5913 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5914 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5915 | case FK_RValueReferenceBindingToLValue: |
| 5916 | S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref) |
Douglas Gregor | fb5d7ef | 2011-01-21 01:04:33 +0000 | [diff] [blame] | 5917 | << DestType.getNonReferenceType() << Args[0]->getType() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5918 | << Args[0]->getSourceRange(); |
| 5919 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5920 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5921 | case FK_ReferenceInitDropsQualifiers: |
| 5922 | S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals) |
| 5923 | << DestType.getNonReferenceType() |
| 5924 | << Args[0]->getType() |
| 5925 | << Args[0]->getSourceRange(); |
| 5926 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5927 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5928 | case FK_ReferenceInitFailed: |
| 5929 | S.Diag(Kind.getLocation(), diag::err_reference_bind_failed) |
| 5930 | << DestType.getNonReferenceType() |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 5931 | << Args[0]->isLValue() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5932 | << Args[0]->getType() |
| 5933 | << Args[0]->getSourceRange(); |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 5934 | emitBadConversionNotes(S, Entity, Args[0]); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5935 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5936 | |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 5937 | case FK_ConversionFailed: { |
| 5938 | QualType FromType = Args[0]->getType(); |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 5939 | PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed) |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5940 | << (int)Entity.getKind() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5941 | << DestType |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 5942 | << Args[0]->isLValue() |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 5943 | << FromType |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5944 | << Args[0]->getSourceRange(); |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 5945 | S.HandleFunctionTypeMismatch(PDiag, FromType, DestType); |
| 5946 | S.Diag(Kind.getLocation(), PDiag); |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 5947 | emitBadConversionNotes(S, Entity, Args[0]); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5948 | break; |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 5949 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5950 | |
| 5951 | case FK_ConversionFromPropertyFailed: |
| 5952 | // No-op. This error has already been reported. |
| 5953 | break; |
| 5954 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5955 | case FK_TooManyInitsForScalar: { |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5956 | SourceRange R; |
| 5957 | |
| 5958 | if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0])) |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 5959 | R = SourceRange(InitList->getInit(0)->getLocEnd(), |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5960 | InitList->getLocEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5961 | else |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5962 | R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd()); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5963 | |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 5964 | R.setBegin(S.PP.getLocForEndOfToken(R.getBegin())); |
| 5965 | if (Kind.isCStyleOrFunctionalCast()) |
| 5966 | S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg) |
| 5967 | << R; |
| 5968 | else |
| 5969 | S.Diag(Kind.getLocation(), diag::err_excess_initializers) |
| 5970 | << /*scalar=*/2 << R; |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5971 | break; |
| 5972 | } |
| 5973 | |
| 5974 | case FK_ReferenceBindingToInitList: |
| 5975 | S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list) |
| 5976 | << DestType.getNonReferenceType() << Args[0]->getSourceRange(); |
| 5977 | break; |
| 5978 | |
| 5979 | case FK_InitListBadDestinationType: |
| 5980 | S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type) |
| 5981 | << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange(); |
| 5982 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5983 | |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 5984 | case FK_ListConstructorOverloadFailed: |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 5985 | case FK_ConstructorOverloadFailed: { |
| 5986 | SourceRange ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5987 | if (Args.size()) |
| 5988 | ArgsRange = SourceRange(Args.front()->getLocStart(), |
| 5989 | Args.back()->getLocEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5990 | |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 5991 | if (Failure == FK_ListConstructorOverloadFailed) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5992 | assert(Args.size() == 1 && "List construction from other than 1 argument."); |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 5993 | InitListExpr *InitList = cast<InitListExpr>(Args[0]); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5994 | Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 5995 | } |
| 5996 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 5997 | // FIXME: Using "DestType" for the entity we're printing is probably |
| 5998 | // bad. |
| 5999 | switch (FailedOverloadResult) { |
| 6000 | case OR_Ambiguous: |
| 6001 | S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init) |
| 6002 | << DestType << ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6003 | FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6004 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6005 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6006 | case OR_No_Viable_Function: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6007 | if (Kind.getKind() == InitializationKind::IK_Default && |
| 6008 | (Entity.getKind() == InitializedEntity::EK_Base || |
| 6009 | Entity.getKind() == InitializedEntity::EK_Member) && |
| 6010 | isa<CXXConstructorDecl>(S.CurContext)) { |
| 6011 | // This is implicit default initialization of a member or |
| 6012 | // base within a constructor. If no viable function was |
| 6013 | // found, notify the user that she needs to explicitly |
| 6014 | // initialize this base/member. |
| 6015 | CXXConstructorDecl *Constructor |
| 6016 | = cast<CXXConstructorDecl>(S.CurContext); |
| 6017 | if (Entity.getKind() == InitializedEntity::EK_Base) { |
| 6018 | S.Diag(Kind.getLocation(), diag::err_missing_default_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6019 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6020 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6021 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6022 | << /*base=*/0 |
| 6023 | << Entity.getType(); |
| 6024 | |
| 6025 | RecordDecl *BaseDecl |
| 6026 | = Entity.getBaseSpecifier()->getType()->getAs<RecordType>() |
| 6027 | ->getDecl(); |
| 6028 | S.Diag(BaseDecl->getLocation(), diag::note_previous_decl) |
| 6029 | << S.Context.getTagDeclType(BaseDecl); |
| 6030 | } else { |
| 6031 | S.Diag(Kind.getLocation(), diag::err_missing_default_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6032 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6033 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6034 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6035 | << /*member=*/1 |
| 6036 | << Entity.getName(); |
| 6037 | S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl); |
| 6038 | |
| 6039 | if (const RecordType *Record |
| 6040 | = Entity.getType()->getAs<RecordType>()) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6041 | S.Diag(Record->getDecl()->getLocation(), |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6042 | diag::note_previous_decl) |
| 6043 | << S.Context.getTagDeclType(Record->getDecl()); |
| 6044 | } |
| 6045 | break; |
| 6046 | } |
| 6047 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6048 | S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init) |
| 6049 | << DestType << ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6050 | FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6051 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6052 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6053 | case OR_Deleted: { |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6054 | OverloadCandidateSet::iterator Best; |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 6055 | OverloadingResult Ovl |
| 6056 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best); |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6057 | if (Ovl != OR_Deleted) { |
| 6058 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init) |
| 6059 | << true << DestType << ArgsRange; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6060 | llvm_unreachable("Inconsistent overload resolution?"); |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6061 | break; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6062 | } |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6063 | |
| 6064 | // If this is a defaulted or implicitly-declared function, then |
| 6065 | // it was implicitly deleted. Make it clear that the deletion was |
| 6066 | // implicit. |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6067 | if (S.isImplicitlyDeleted(Best->Function)) |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6068 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init) |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6069 | << S.getSpecialMember(cast<CXXMethodDecl>(Best->Function)) |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6070 | << DestType << ArgsRange; |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6071 | else |
| 6072 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init) |
| 6073 | << true << DestType << ArgsRange; |
| 6074 | |
| 6075 | S.NoteDeletedFunction(Best->Function); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6076 | break; |
| 6077 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6078 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6079 | case OR_Success: |
| 6080 | llvm_unreachable("Conversion did not fail!"); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6081 | } |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6082 | } |
David Blaikie | 9fdefb3 | 2012-01-17 08:24:58 +0000 | [diff] [blame] | 6083 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6084 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6085 | case FK_DefaultInitOfConst: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6086 | if (Entity.getKind() == InitializedEntity::EK_Member && |
| 6087 | isa<CXXConstructorDecl>(S.CurContext)) { |
| 6088 | // This is implicit default-initialization of a const member in |
| 6089 | // a constructor. Complain that it needs to be explicitly |
| 6090 | // initialized. |
| 6091 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext); |
| 6092 | S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6093 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6094 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6095 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6096 | << /*const=*/1 |
| 6097 | << Entity.getName(); |
| 6098 | S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl) |
| 6099 | << Entity.getName(); |
| 6100 | } else { |
| 6101 | S.Diag(Kind.getLocation(), diag::err_default_init_const) |
| 6102 | << DestType << (bool)DestType->getAs<RecordType>(); |
| 6103 | } |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6104 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6105 | |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6106 | case FK_Incomplete: |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 6107 | S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType, |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6108 | diag::err_init_incomplete_type); |
| 6109 | break; |
| 6110 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6111 | case FK_ListInitializationFailed: { |
| 6112 | // Run the init list checker again to emit diagnostics. |
| 6113 | InitListExpr* InitList = cast<InitListExpr>(Args[0]); |
| 6114 | QualType DestType = Entity.getType(); |
| 6115 | InitListChecker DiagnoseInitList(S, Entity, InitList, |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 6116 | DestType, /*VerifyOnly=*/false, |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 6117 | Kind.getKind() != InitializationKind::IK_DirectList || |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6118 | !S.getLangOpts().CPlusPlus11); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6119 | assert(DiagnoseInitList.HadError() && |
| 6120 | "Inconsistent init list check result."); |
| 6121 | break; |
| 6122 | } |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6123 | |
| 6124 | case FK_PlaceholderType: { |
| 6125 | // FIXME: Already diagnosed! |
| 6126 | break; |
| 6127 | } |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6128 | |
| 6129 | case FK_InitListElementCopyFailure: { |
| 6130 | // Try to perform all copies again. |
| 6131 | InitListExpr* InitList = cast<InitListExpr>(Args[0]); |
| 6132 | unsigned NumInits = InitList->getNumInits(); |
| 6133 | QualType DestType = Entity.getType(); |
| 6134 | QualType E; |
Douglas Gregor | 6c5aaed | 2013-03-25 23:47:01 +0000 | [diff] [blame] | 6135 | bool Success = S.isStdInitializerList(DestType.getNonReferenceType(), &E); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6136 | (void)Success; |
| 6137 | assert(Success && "Where did the std::initializer_list go?"); |
| 6138 | InitializedEntity HiddenArray = InitializedEntity::InitializeTemporary( |
| 6139 | S.Context.getConstantArrayType(E, |
| 6140 | llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()), |
| 6141 | NumInits), |
| 6142 | ArrayType::Normal, 0)); |
| 6143 | InitializedEntity Element = InitializedEntity::InitializeElement(S.Context, |
| 6144 | 0, HiddenArray); |
| 6145 | // Show at most 3 errors. Otherwise, you'd get a lot of errors for errors |
| 6146 | // where the init list type is wrong, e.g. |
| 6147 | // std::initializer_list<void*> list = { 1, 2, 3, 4, 5, 6, 7, 8 }; |
| 6148 | // FIXME: Emit a note if we hit the limit? |
| 6149 | int ErrorCount = 0; |
| 6150 | for (unsigned i = 0; i < NumInits && ErrorCount < 3; ++i) { |
| 6151 | Element.setElementIndex(i); |
| 6152 | ExprResult Init = S.Owned(InitList->getInit(i)); |
| 6153 | if (S.PerformCopyInitialization(Element, Init.get()->getExprLoc(), Init) |
| 6154 | .isInvalid()) |
| 6155 | ++ErrorCount; |
| 6156 | } |
| 6157 | break; |
| 6158 | } |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6159 | |
| 6160 | case FK_ExplicitConstructor: { |
| 6161 | S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor) |
| 6162 | << Args[0]->getSourceRange(); |
| 6163 | OverloadCandidateSet::iterator Best; |
| 6164 | OverloadingResult Ovl |
| 6165 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best); |
Matt Beaumont-Gay | e7d0bbf | 2012-04-02 19:05:35 +0000 | [diff] [blame] | 6166 | (void)Ovl; |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6167 | assert(Ovl == OR_Success && "Inconsistent overload resolution"); |
| 6168 | CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function); |
| 6169 | S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here); |
| 6170 | break; |
| 6171 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6172 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6173 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 6174 | PrintInitLocationNote(S, Entity); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6175 | return true; |
| 6176 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6177 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6178 | void InitializationSequence::dump(raw_ostream &OS) const { |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6179 | switch (SequenceKind) { |
| 6180 | case FailedSequence: { |
| 6181 | OS << "Failed sequence: "; |
| 6182 | switch (Failure) { |
| 6183 | case FK_TooManyInitsForReference: |
| 6184 | OS << "too many initializers for reference"; |
| 6185 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6186 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6187 | case FK_ArrayNeedsInitList: |
| 6188 | OS << "array requires initializer list"; |
| 6189 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6190 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6191 | case FK_ArrayNeedsInitListOrStringLiteral: |
| 6192 | OS << "array requires initializer list or string literal"; |
| 6193 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6194 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6195 | case FK_ArrayTypeMismatch: |
| 6196 | OS << "array type mismatch"; |
| 6197 | break; |
| 6198 | |
| 6199 | case FK_NonConstantArrayInit: |
| 6200 | OS << "non-constant array initializer"; |
| 6201 | break; |
| 6202 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6203 | case FK_AddressOfOverloadFailed: |
| 6204 | OS << "address of overloaded function failed"; |
| 6205 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6206 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6207 | case FK_ReferenceInitOverloadFailed: |
| 6208 | OS << "overload resolution for reference initialization failed"; |
| 6209 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6210 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6211 | case FK_NonConstLValueReferenceBindingToTemporary: |
| 6212 | OS << "non-const lvalue reference bound to temporary"; |
| 6213 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6214 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6215 | case FK_NonConstLValueReferenceBindingToUnrelated: |
| 6216 | OS << "non-const lvalue reference bound to unrelated type"; |
| 6217 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6218 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6219 | case FK_RValueReferenceBindingToLValue: |
| 6220 | OS << "rvalue reference bound to an lvalue"; |
| 6221 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6222 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6223 | case FK_ReferenceInitDropsQualifiers: |
| 6224 | OS << "reference initialization drops qualifiers"; |
| 6225 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6226 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6227 | case FK_ReferenceInitFailed: |
| 6228 | OS << "reference initialization failed"; |
| 6229 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6230 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6231 | case FK_ConversionFailed: |
| 6232 | OS << "conversion failed"; |
| 6233 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6234 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6235 | case FK_ConversionFromPropertyFailed: |
| 6236 | OS << "conversion from property failed"; |
| 6237 | break; |
| 6238 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6239 | case FK_TooManyInitsForScalar: |
| 6240 | OS << "too many initializers for scalar"; |
| 6241 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6242 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6243 | case FK_ReferenceBindingToInitList: |
| 6244 | OS << "referencing binding to initializer list"; |
| 6245 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6246 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6247 | case FK_InitListBadDestinationType: |
| 6248 | OS << "initializer list for non-aggregate, non-scalar type"; |
| 6249 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6250 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6251 | case FK_UserConversionOverloadFailed: |
| 6252 | OS << "overloading failed for user-defined conversion"; |
| 6253 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6254 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6255 | case FK_ConstructorOverloadFailed: |
| 6256 | OS << "constructor overloading failed"; |
| 6257 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6258 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6259 | case FK_DefaultInitOfConst: |
| 6260 | OS << "default initialization of a const variable"; |
| 6261 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6262 | |
Douglas Gregor | 72a43bb | 2010-05-20 22:12:02 +0000 | [diff] [blame] | 6263 | case FK_Incomplete: |
| 6264 | OS << "initialization of incomplete type"; |
| 6265 | break; |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6266 | |
| 6267 | case FK_ListInitializationFailed: |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6268 | OS << "list initialization checker failure"; |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6269 | break; |
| 6270 | |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 6271 | case FK_VariableLengthArrayHasInitializer: |
| 6272 | OS << "variable length array has an initializer"; |
| 6273 | break; |
| 6274 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6275 | case FK_PlaceholderType: |
| 6276 | OS << "initializer expression isn't contextually valid"; |
| 6277 | break; |
Nick Lewycky | b0c6c33 | 2011-12-22 20:21:32 +0000 | [diff] [blame] | 6278 | |
| 6279 | case FK_ListConstructorOverloadFailed: |
| 6280 | OS << "list constructor overloading failed"; |
| 6281 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6282 | |
| 6283 | case FK_InitListElementCopyFailure: |
| 6284 | OS << "copy construction of initializer list element failed"; |
| 6285 | break; |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6286 | |
| 6287 | case FK_ExplicitConstructor: |
| 6288 | OS << "list copy initialization chose explicit constructor"; |
| 6289 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6290 | } |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6291 | OS << '\n'; |
| 6292 | return; |
| 6293 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6294 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6295 | case DependentSequence: |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 6296 | OS << "Dependent sequence\n"; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6297 | return; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6298 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 6299 | case NormalSequence: |
| 6300 | OS << "Normal sequence: "; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6301 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6302 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6303 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6304 | for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) { |
| 6305 | if (S != step_begin()) { |
| 6306 | OS << " -> "; |
| 6307 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6308 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6309 | switch (S->Kind) { |
| 6310 | case SK_ResolveAddressOfOverloadedFunction: |
| 6311 | OS << "resolve address of overloaded function"; |
| 6312 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6313 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6314 | case SK_CastDerivedToBaseRValue: |
| 6315 | OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")"; |
| 6316 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6317 | |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6318 | case SK_CastDerivedToBaseXValue: |
| 6319 | OS << "derived-to-base case (xvalue" << S->Type.getAsString() << ")"; |
| 6320 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6321 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6322 | case SK_CastDerivedToBaseLValue: |
| 6323 | OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")"; |
| 6324 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6325 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6326 | case SK_BindReference: |
| 6327 | OS << "bind reference to lvalue"; |
| 6328 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6329 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6330 | case SK_BindReferenceToTemporary: |
| 6331 | OS << "bind reference to a temporary"; |
| 6332 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6333 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 6334 | case SK_ExtraneousCopyToTemporary: |
| 6335 | OS << "extraneous C++03 copy to temporary"; |
| 6336 | break; |
| 6337 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6338 | case SK_UserConversion: |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 6339 | OS << "user-defined conversion via " << *S->Function.Function; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6340 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6341 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6342 | case SK_QualificationConversionRValue: |
| 6343 | OS << "qualification conversion (rvalue)"; |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6344 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6345 | |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6346 | case SK_QualificationConversionXValue: |
| 6347 | OS << "qualification conversion (xvalue)"; |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6348 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6349 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6350 | case SK_QualificationConversionLValue: |
| 6351 | OS << "qualification conversion (lvalue)"; |
| 6352 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6353 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 6354 | case SK_LValueToRValue: |
| 6355 | OS << "load (lvalue to rvalue)"; |
| 6356 | break; |
| 6357 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6358 | case SK_ConversionSequence: |
| 6359 | OS << "implicit conversion sequence ("; |
| 6360 | S->ICS->DebugPrint(); // FIXME: use OS |
| 6361 | OS << ")"; |
| 6362 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6363 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6364 | case SK_ListInitialization: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6365 | OS << "list aggregate initialization"; |
| 6366 | break; |
| 6367 | |
| 6368 | case SK_ListConstructorCall: |
| 6369 | OS << "list initialization via constructor"; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6370 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6371 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6372 | case SK_UnwrapInitList: |
| 6373 | OS << "unwrap reference initializer list"; |
| 6374 | break; |
| 6375 | |
| 6376 | case SK_RewrapInitList: |
| 6377 | OS << "rewrap reference initializer list"; |
| 6378 | break; |
| 6379 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6380 | case SK_ConstructorInitialization: |
| 6381 | OS << "constructor initialization"; |
| 6382 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6383 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6384 | case SK_ZeroInitialization: |
| 6385 | OS << "zero initialization"; |
| 6386 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6387 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6388 | case SK_CAssignment: |
| 6389 | OS << "C assignment"; |
| 6390 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6391 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6392 | case SK_StringInit: |
| 6393 | OS << "string initialization"; |
| 6394 | break; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 6395 | |
| 6396 | case SK_ObjCObjectConversion: |
| 6397 | OS << "Objective-C object conversion"; |
| 6398 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6399 | |
| 6400 | case SK_ArrayInit: |
| 6401 | OS << "array initialization"; |
| 6402 | break; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6403 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 6404 | case SK_ParenthesizedArrayInit: |
| 6405 | OS << "parenthesized array initialization"; |
| 6406 | break; |
| 6407 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6408 | case SK_PassByIndirectCopyRestore: |
| 6409 | OS << "pass by indirect copy and restore"; |
| 6410 | break; |
| 6411 | |
| 6412 | case SK_PassByIndirectRestore: |
| 6413 | OS << "pass by indirect restore"; |
| 6414 | break; |
| 6415 | |
| 6416 | case SK_ProduceObjCObject: |
| 6417 | OS << "Objective-C object retension"; |
| 6418 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6419 | |
| 6420 | case SK_StdInitializerList: |
| 6421 | OS << "std::initializer_list from initializer list"; |
| 6422 | break; |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 6423 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6424 | case SK_OCLSamplerInit: |
| 6425 | OS << "OpenCL sampler_t from integer constant"; |
| 6426 | break; |
| 6427 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 6428 | case SK_OCLZeroEvent: |
| 6429 | OS << "OpenCL event_t from zero"; |
| 6430 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6431 | } |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 6432 | |
| 6433 | OS << " [" << S->Type.getAsString() << ']'; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6434 | } |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 6435 | |
| 6436 | OS << '\n'; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6437 | } |
| 6438 | |
| 6439 | void InitializationSequence::dump() const { |
| 6440 | dump(llvm::errs()); |
| 6441 | } |
| 6442 | |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6443 | static void DiagnoseNarrowingInInitList(Sema &S, InitializationSequence &Seq, |
| 6444 | QualType EntityType, |
| 6445 | const Expr *PreInit, |
| 6446 | const Expr *PostInit) { |
| 6447 | if (Seq.step_begin() == Seq.step_end() || PreInit->isValueDependent()) |
| 6448 | return; |
| 6449 | |
| 6450 | // A narrowing conversion can only appear as the final implicit conversion in |
| 6451 | // an initialization sequence. |
| 6452 | const InitializationSequence::Step &LastStep = Seq.step_end()[-1]; |
| 6453 | if (LastStep.Kind != InitializationSequence::SK_ConversionSequence) |
| 6454 | return; |
| 6455 | |
| 6456 | const ImplicitConversionSequence &ICS = *LastStep.ICS; |
| 6457 | const StandardConversionSequence *SCS = 0; |
| 6458 | switch (ICS.getKind()) { |
| 6459 | case ImplicitConversionSequence::StandardConversion: |
| 6460 | SCS = &ICS.Standard; |
| 6461 | break; |
| 6462 | case ImplicitConversionSequence::UserDefinedConversion: |
| 6463 | SCS = &ICS.UserDefined.After; |
| 6464 | break; |
| 6465 | case ImplicitConversionSequence::AmbiguousConversion: |
| 6466 | case ImplicitConversionSequence::EllipsisConversion: |
| 6467 | case ImplicitConversionSequence::BadConversion: |
| 6468 | return; |
| 6469 | } |
| 6470 | |
| 6471 | // Determine the type prior to the narrowing conversion. If a conversion |
| 6472 | // operator was used, this may be different from both the type of the entity |
| 6473 | // and of the pre-initialization expression. |
| 6474 | QualType PreNarrowingType = PreInit->getType(); |
| 6475 | if (Seq.step_begin() + 1 != Seq.step_end()) |
| 6476 | PreNarrowingType = Seq.step_end()[-2].Type; |
| 6477 | |
| 6478 | // C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion. |
| 6479 | APValue ConstantValue; |
Richard Smith | f602806 | 2012-03-23 23:55:39 +0000 | [diff] [blame] | 6480 | QualType ConstantType; |
| 6481 | switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue, |
| 6482 | ConstantType)) { |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6483 | case NK_Not_Narrowing: |
| 6484 | // No narrowing occurred. |
| 6485 | return; |
| 6486 | |
| 6487 | case NK_Type_Narrowing: |
| 6488 | // This was a floating-to-integer conversion, which is always considered a |
| 6489 | // narrowing conversion even if the value is a constant and can be |
| 6490 | // represented exactly as an integer. |
| 6491 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6492 | S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11? |
Douglas Gregor | f3c82c5 | 2012-01-23 15:29:33 +0000 | [diff] [blame] | 6493 | diag::warn_init_list_type_narrowing |
| 6494 | : S.isSFINAEContext()? |
| 6495 | diag::err_init_list_type_narrowing_sfinae |
| 6496 | : diag::err_init_list_type_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6497 | << PostInit->getSourceRange() |
| 6498 | << PreNarrowingType.getLocalUnqualifiedType() |
| 6499 | << EntityType.getLocalUnqualifiedType(); |
| 6500 | break; |
| 6501 | |
| 6502 | case NK_Constant_Narrowing: |
| 6503 | // A constant value was narrowed. |
| 6504 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6505 | S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11? |
Douglas Gregor | f3c82c5 | 2012-01-23 15:29:33 +0000 | [diff] [blame] | 6506 | diag::warn_init_list_constant_narrowing |
| 6507 | : S.isSFINAEContext()? |
| 6508 | diag::err_init_list_constant_narrowing_sfinae |
| 6509 | : diag::err_init_list_constant_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6510 | << PostInit->getSourceRange() |
Richard Smith | f602806 | 2012-03-23 23:55:39 +0000 | [diff] [blame] | 6511 | << ConstantValue.getAsString(S.getASTContext(), ConstantType) |
Jeffrey Yasskin | 9906149 | 2011-08-29 15:59:37 +0000 | [diff] [blame] | 6512 | << EntityType.getLocalUnqualifiedType(); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6513 | break; |
| 6514 | |
| 6515 | case NK_Variable_Narrowing: |
| 6516 | // A variable's value may have been narrowed. |
| 6517 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6518 | S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11? |
Douglas Gregor | f3c82c5 | 2012-01-23 15:29:33 +0000 | [diff] [blame] | 6519 | diag::warn_init_list_variable_narrowing |
| 6520 | : S.isSFINAEContext()? |
| 6521 | diag::err_init_list_variable_narrowing_sfinae |
| 6522 | : diag::err_init_list_variable_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6523 | << PostInit->getSourceRange() |
| 6524 | << PreNarrowingType.getLocalUnqualifiedType() |
Jeffrey Yasskin | 9906149 | 2011-08-29 15:59:37 +0000 | [diff] [blame] | 6525 | << EntityType.getLocalUnqualifiedType(); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6526 | break; |
| 6527 | } |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6528 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 6529 | SmallString<128> StaticCast; |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6530 | llvm::raw_svector_ostream OS(StaticCast); |
| 6531 | OS << "static_cast<"; |
| 6532 | if (const TypedefType *TT = EntityType->getAs<TypedefType>()) { |
| 6533 | // It's important to use the typedef's name if there is one so that the |
| 6534 | // fixit doesn't break code using types like int64_t. |
| 6535 | // |
| 6536 | // FIXME: This will break if the typedef requires qualification. But |
| 6537 | // getQualifiedNameAsString() includes non-machine-parsable components. |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 6538 | OS << *TT->getDecl(); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6539 | } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>()) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6540 | OS << BT->getName(S.getLangOpts()); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6541 | else { |
| 6542 | // Oops, we didn't find the actual type of the variable. Don't emit a fixit |
| 6543 | // with a broken cast. |
| 6544 | return; |
| 6545 | } |
| 6546 | OS << ">("; |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6547 | S.Diag(PostInit->getLocStart(), diag::note_init_list_narrowing_override) |
| 6548 | << PostInit->getSourceRange() |
| 6549 | << FixItHint::CreateInsertion(PostInit->getLocStart(), OS.str()) |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6550 | << FixItHint::CreateInsertion( |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6551 | S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")"); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6552 | } |
| 6553 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6554 | //===----------------------------------------------------------------------===// |
| 6555 | // Initialization helper functions |
| 6556 | //===----------------------------------------------------------------------===// |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 6557 | bool |
| 6558 | Sema::CanPerformCopyInitialization(const InitializedEntity &Entity, |
| 6559 | ExprResult Init) { |
| 6560 | if (Init.isInvalid()) |
| 6561 | return false; |
| 6562 | |
| 6563 | Expr *InitE = Init.get(); |
| 6564 | assert(InitE && "No initialization expression"); |
| 6565 | |
Douglas Gregor | 3c394c5 | 2012-07-31 22:15:04 +0000 | [diff] [blame] | 6566 | InitializationKind Kind |
| 6567 | = InitializationKind::CreateCopy(InitE->getLocStart(), SourceLocation()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6568 | InitializationSequence Seq(*this, Entity, Kind, InitE); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 6569 | return !Seq.Failed(); |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 6570 | } |
| 6571 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6572 | ExprResult |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6573 | Sema::PerformCopyInitialization(const InitializedEntity &Entity, |
| 6574 | SourceLocation EqualLoc, |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6575 | ExprResult Init, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 6576 | bool TopLevelOfInitList, |
| 6577 | bool AllowExplicit) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6578 | if (Init.isInvalid()) |
| 6579 | return ExprError(); |
| 6580 | |
John McCall | 15d7d12 | 2010-11-11 03:21:53 +0000 | [diff] [blame] | 6581 | Expr *InitE = Init.get(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6582 | assert(InitE && "No initialization expression?"); |
| 6583 | |
| 6584 | if (EqualLoc.isInvalid()) |
| 6585 | EqualLoc = InitE->getLocStart(); |
| 6586 | |
| 6587 | InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(), |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 6588 | EqualLoc, |
| 6589 | AllowExplicit); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6590 | InitializationSequence Seq(*this, Entity, Kind, InitE); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6591 | Init.release(); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 6592 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6593 | ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6594 | |
| 6595 | if (!Result.isInvalid() && TopLevelOfInitList) |
| 6596 | DiagnoseNarrowingInInitList(*this, Seq, Entity.getType(), |
| 6597 | InitE, Result.get()); |
| 6598 | |
| 6599 | return Result; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6600 | } |