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 | |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 35 | /// \brief Check whether T is compatible with a wide character type (wchar_t, |
| 36 | /// char16_t or char32_t). |
| 37 | static bool IsWideCharCompatible(QualType T, ASTContext &Context) { |
| 38 | if (Context.typesAreCompatible(Context.getWideCharType(), T)) |
| 39 | return true; |
| 40 | if (Context.getLangOpts().CPlusPlus || Context.getLangOpts().C11) { |
| 41 | return Context.typesAreCompatible(Context.Char16Ty, T) || |
| 42 | Context.typesAreCompatible(Context.Char32Ty, T); |
| 43 | } |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | enum StringInitFailureKind { |
| 48 | SIF_None, |
| 49 | SIF_NarrowStringIntoWideChar, |
| 50 | SIF_WideStringIntoChar, |
| 51 | SIF_IncompatWideStringIntoWideChar, |
| 52 | SIF_Other |
| 53 | }; |
| 54 | |
| 55 | /// \brief Check whether the array of type AT can be initialized by the Init |
| 56 | /// expression by means of string initialization. Returns SIF_None if so, |
| 57 | /// otherwise returns a StringInitFailureKind that describes why the |
| 58 | /// initialization would not work. |
| 59 | static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT, |
| 60 | ASTContext &Context) { |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 61 | if (!isa<ConstantArrayType>(AT) && !isa<IncompleteArrayType>(AT)) |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 62 | return SIF_Other; |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 64 | // See if this is a string literal or @encode. |
| 65 | Init = Init->IgnoreParens(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 66 | |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 67 | // Handle @encode, which is a narrow string. |
| 68 | if (isa<ObjCEncodeExpr>(Init) && AT->getElementType()->isCharType()) |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 69 | return SIF_None; |
Chris Lattner | 8879e3b | 2009-02-26 23:26:43 +0000 | [diff] [blame] | 70 | |
| 71 | // Otherwise we can only handle string literals. |
| 72 | StringLiteral *SL = dyn_cast<StringLiteral>(Init); |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 73 | if (SL == 0) |
| 74 | return SIF_Other; |
Eli Friedman | bb6415c | 2009-05-31 10:54:53 +0000 | [diff] [blame] | 75 | |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 76 | const QualType ElemTy = |
| 77 | Context.getCanonicalType(AT->getElementType()).getUnqualifiedType(); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 78 | |
| 79 | switch (SL->getKind()) { |
| 80 | case StringLiteral::Ascii: |
| 81 | case StringLiteral::UTF8: |
| 82 | // char array can be initialized with a narrow string. |
| 83 | // Only allow char x[] = "foo"; not char x[] = L"foo"; |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 84 | if (ElemTy->isCharType()) |
| 85 | return SIF_None; |
| 86 | if (IsWideCharCompatible(ElemTy, Context)) |
| 87 | return SIF_NarrowStringIntoWideChar; |
| 88 | return SIF_Other; |
| 89 | // C99 6.7.8p15 (with correction from DR343), or C11 6.7.9p15: |
| 90 | // "An array with element type compatible with a qualified or unqualified |
| 91 | // version of wchar_t, char16_t, or char32_t may be initialized by a wide |
| 92 | // string literal with the corresponding encoding prefix (L, u, or U, |
| 93 | // respectively), optionally enclosed in braces. |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 94 | case StringLiteral::UTF16: |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 95 | if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) |
| 96 | return SIF_None; |
| 97 | if (ElemTy->isCharType()) |
| 98 | return SIF_WideStringIntoChar; |
| 99 | if (IsWideCharCompatible(ElemTy, Context)) |
| 100 | return SIF_IncompatWideStringIntoWideChar; |
| 101 | return SIF_Other; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 102 | case StringLiteral::UTF32: |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 103 | if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) |
| 104 | return SIF_None; |
| 105 | if (ElemTy->isCharType()) |
| 106 | return SIF_WideStringIntoChar; |
| 107 | if (IsWideCharCompatible(ElemTy, Context)) |
| 108 | return SIF_IncompatWideStringIntoWideChar; |
| 109 | return SIF_Other; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 110 | case StringLiteral::Wide: |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 111 | if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) |
| 112 | return SIF_None; |
| 113 | if (ElemTy->isCharType()) |
| 114 | return SIF_WideStringIntoChar; |
| 115 | if (IsWideCharCompatible(ElemTy, Context)) |
| 116 | return SIF_IncompatWideStringIntoWideChar; |
| 117 | return SIF_Other; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 118 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 120 | llvm_unreachable("missed a StringLiteral kind?"); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Hans Wennborg | c1fb1e0 | 2013-05-16 09:22:40 +0000 | [diff] [blame] | 123 | static StringInitFailureKind IsStringInit(Expr *init, QualType declType, |
| 124 | ASTContext &Context) { |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 125 | const ArrayType *arrayType = Context.getAsArrayType(declType); |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 126 | if (!arrayType) |
Hans Wennborg | c1fb1e0 | 2013-05-16 09:22:40 +0000 | [diff] [blame] | 127 | return SIF_Other; |
| 128 | return IsStringInit(init, arrayType, Context); |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 131 | /// Update the type of a string literal, including any surrounding parentheses, |
| 132 | /// to match the type of the object which it is initializing. |
| 133 | static void updateStringLiteralType(Expr *E, QualType Ty) { |
Richard Smith | 27f9cf3 | 2013-05-06 00:35:47 +0000 | [diff] [blame] | 134 | while (true) { |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 135 | E->setType(Ty); |
Richard Smith | 27f9cf3 | 2013-05-06 00:35:47 +0000 | [diff] [blame] | 136 | if (isa<StringLiteral>(E) || isa<ObjCEncodeExpr>(E)) |
| 137 | break; |
| 138 | else if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) |
| 139 | E = PE->getSubExpr(); |
| 140 | else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) |
| 141 | E = UO->getSubExpr(); |
| 142 | else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) |
| 143 | E = GSE->getResultExpr(); |
| 144 | else |
| 145 | llvm_unreachable("unexpected expr in string literal init"); |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 146 | } |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 147 | } |
| 148 | |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 149 | static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT, |
| 150 | Sema &S) { |
Chris Lattner | 79e079d | 2009-02-24 23:10:27 +0000 | [diff] [blame] | 151 | // Get the length of the string as parsed. |
| 152 | uint64_t StrLength = |
| 153 | cast<ConstantArrayType>(Str->getType())->getSize().getZExtValue(); |
| 154 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 155 | |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 156 | if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 157 | // 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] | 158 | // being initialized to a string literal. |
Benjamin Kramer | 65263b4 | 2012-08-04 17:00:46 +0000 | [diff] [blame] | 159 | llvm::APInt ConstVal(32, StrLength); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 160 | // Return a new array type (C99 6.7.8p22). |
John McCall | 46a617a | 2009-10-16 00:14:28 +0000 | [diff] [blame] | 161 | DeclT = S.Context.getConstantArrayType(IAT->getElementType(), |
| 162 | ConstVal, |
| 163 | ArrayType::Normal, 0); |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 164 | updateStringLiteralType(Str, DeclT); |
Chris Lattner | 19da8cd | 2009-02-24 23:01:39 +0000 | [diff] [blame] | 165 | return; |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 166 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 167 | |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 168 | const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 169 | |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 170 | // We have an array of character type with known size. However, |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 171 | // the size may be smaller or larger than the string we are initializing. |
| 172 | // FIXME: Avoid truncation for 64-bit length strings. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 173 | if (S.getLangOpts().CPlusPlus) { |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 174 | if (StringLiteral *SL = dyn_cast<StringLiteral>(Str->IgnoreParens())) { |
Anders Carlsson | b8fc45f | 2011-04-14 00:41:11 +0000 | [diff] [blame] | 175 | // For Pascal strings it's OK to strip off the terminating null character, |
| 176 | // so the example below is valid: |
| 177 | // |
| 178 | // unsigned char a[2] = "\pa"; |
| 179 | if (SL->isPascal()) |
| 180 | StrLength--; |
| 181 | } |
| 182 | |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 183 | // [dcl.init.string]p2 |
| 184 | if (StrLength > CAT->getSize().getZExtValue()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 185 | S.Diag(Str->getLocStart(), |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 186 | diag::err_initializer_string_for_char_array_too_long) |
| 187 | << Str->getSourceRange(); |
| 188 | } else { |
| 189 | // C99 6.7.8p14. |
| 190 | if (StrLength-1 > CAT->getSize().getZExtValue()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 191 | S.Diag(Str->getLocStart(), |
Eli Friedman | bc34b1d | 2011-04-11 00:23:45 +0000 | [diff] [blame] | 192 | diag::warn_initializer_string_for_char_array_too_long) |
| 193 | << Str->getSourceRange(); |
| 194 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 195 | |
Eli Friedman | 8718a6a | 2009-05-29 18:22:49 +0000 | [diff] [blame] | 196 | // Set the type to the actual size that we are initializing. If we have |
| 197 | // something like: |
| 198 | // char x[1] = "foo"; |
| 199 | // then this will set the string literal's type to char[1]. |
Richard Smith | 30ae1ed | 2013-05-05 16:40:13 +0000 | [diff] [blame] | 200 | updateStringLiteralType(Str, DeclT); |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Chris Lattner | dd8e006 | 2009-02-24 22:27:37 +0000 | [diff] [blame] | 203 | //===----------------------------------------------------------------------===// |
| 204 | // Semantic checking for initializer lists. |
| 205 | //===----------------------------------------------------------------------===// |
| 206 | |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 207 | /// @brief Semantic checking for initializer lists. |
| 208 | /// |
| 209 | /// The InitListChecker class contains a set of routines that each |
| 210 | /// handle the initialization of a certain kind of entity, e.g., |
| 211 | /// arrays, vectors, struct/union types, scalars, etc. The |
| 212 | /// InitListChecker itself performs a recursive walk of the subobject |
| 213 | /// structure of the type to be initialized, while stepping through |
| 214 | /// the initializer list one element at a time. The IList and Index |
| 215 | /// parameters to each of the Check* routines contain the active |
| 216 | /// (syntactic) initializer list and the index into that initializer |
| 217 | /// list that represents the current initializer. Each routine is |
| 218 | /// responsible for moving that Index forward as it consumes elements. |
| 219 | /// |
| 220 | /// Each Check* routine also has a StructuredList/StructuredIndex |
Abramo Bagnara | 63e7d25 | 2011-01-27 19:55:10 +0000 | [diff] [blame] | 221 | /// arguments, which contains the current "structured" (semantic) |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 222 | /// initializer list and the index into that initializer list where we |
| 223 | /// are copying initializers as we map them over to the semantic |
| 224 | /// list. Once we have completed our recursive walk of the subobject |
| 225 | /// structure, we will have constructed a full semantic initializer |
| 226 | /// list. |
| 227 | /// |
| 228 | /// C99 designators cause changes in the initializer list traversal, |
| 229 | /// because they make the initialization "jump" into a specific |
| 230 | /// subobject and then continue the initialization from that |
| 231 | /// point. CheckDesignatedInitializer() recursively steps into the |
| 232 | /// designated subobject and manages backing out the recursion to |
| 233 | /// initialize the subobjects after the one designated. |
Chris Lattner | 8b419b9 | 2009-02-24 22:48:58 +0000 | [diff] [blame] | 234 | namespace { |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 235 | class InitListChecker { |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 236 | Sema &SemaRef; |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 237 | bool hadError; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 238 | bool VerifyOnly; // no diagnostics, no structure building |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 239 | llvm::DenseMap<InitListExpr *, InitListExpr *> SyntacticToSemantic; |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 240 | InitListExpr *FullyStructuredList; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 242 | void CheckImplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 243 | InitListExpr *ParentIList, QualType T, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 244 | unsigned &Index, InitListExpr *StructuredList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 245 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 246 | void CheckExplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 247 | InitListExpr *IList, QualType &T, |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 248 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 249 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 250 | void CheckListElementTypes(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 251 | InitListExpr *IList, QualType &DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 252 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 253 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 254 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 255 | unsigned &StructuredIndex, |
| 256 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 257 | void CheckSubElementType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 258 | InitListExpr *IList, QualType ElemType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 259 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 260 | InitListExpr *StructuredList, |
| 261 | unsigned &StructuredIndex); |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 262 | void CheckComplexType(const InitializedEntity &Entity, |
| 263 | InitListExpr *IList, QualType DeclType, |
| 264 | unsigned &Index, |
| 265 | InitListExpr *StructuredList, |
| 266 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 267 | void CheckScalarType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 268 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 269 | unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 270 | InitListExpr *StructuredList, |
| 271 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 272 | void CheckReferenceType(const InitializedEntity &Entity, |
| 273 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 274 | unsigned &Index, |
| 275 | InitListExpr *StructuredList, |
| 276 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 277 | void CheckVectorType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 278 | InitListExpr *IList, QualType DeclType, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 279 | InitListExpr *StructuredList, |
| 280 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 281 | void CheckStructUnionTypes(const InitializedEntity &Entity, |
Anders Carlsson | 2bbae5d | 2010-01-23 20:20:40 +0000 | [diff] [blame] | 282 | InitListExpr *IList, QualType DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 283 | RecordDecl::field_iterator Field, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 284 | bool SubobjectIsDesignatorContext, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 285 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 286 | unsigned &StructuredIndex, |
| 287 | bool TopLevelObject = false); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 288 | void CheckArrayType(const InitializedEntity &Entity, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 289 | InitListExpr *IList, QualType &DeclType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 290 | llvm::APSInt elementIndex, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 291 | bool SubobjectIsDesignatorContext, unsigned &Index, |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 292 | InitListExpr *StructuredList, |
| 293 | unsigned &StructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 294 | bool CheckDesignatedInitializer(const InitializedEntity &Entity, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 295 | InitListExpr *IList, DesignatedInitExpr *DIE, |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 296 | unsigned DesigIdx, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 297 | QualType &CurrentObjectType, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 298 | RecordDecl::field_iterator *NextField, |
| 299 | llvm::APSInt *NextElementIndex, |
| 300 | unsigned &Index, |
| 301 | InitListExpr *StructuredList, |
| 302 | unsigned &StructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 303 | bool FinishSubobjectInit, |
| 304 | bool TopLevelObject); |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 305 | InitListExpr *getStructuredSubobjectInit(InitListExpr *IList, unsigned Index, |
| 306 | QualType CurrentObjectType, |
| 307 | InitListExpr *StructuredList, |
| 308 | unsigned StructuredIndex, |
| 309 | SourceRange InitRange); |
Douglas Gregor | 9e80f72 | 2009-01-29 01:05:33 +0000 | [diff] [blame] | 310 | void UpdateStructuredListElement(InitListExpr *StructuredList, |
| 311 | unsigned &StructuredIndex, |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 312 | Expr *expr); |
| 313 | int numArrayElements(QualType DeclType); |
| 314 | int numStructUnionElements(QualType DeclType); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 315 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 316 | void FillInValueInitForField(unsigned Init, FieldDecl *Field, |
| 317 | const InitializedEntity &ParentEntity, |
| 318 | InitListExpr *ILE, bool &RequiresSecondPass); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 319 | void FillInValueInitializations(const InitializedEntity &Entity, |
| 320 | InitListExpr *ILE, bool &RequiresSecondPass); |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 321 | bool CheckFlexibleArrayInit(const InitializedEntity &Entity, |
| 322 | Expr *InitExpr, FieldDecl *Field, |
| 323 | bool TopLevelObject); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 324 | void CheckValueInitializable(const InitializedEntity &Entity); |
| 325 | |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 326 | public: |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 327 | InitListChecker(Sema &S, const InitializedEntity &Entity, |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 328 | InitListExpr *IL, QualType &T, bool VerifyOnly); |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 329 | bool HadError() { return hadError; } |
| 330 | |
| 331 | // @brief Retrieves the fully-structured initializer list used for |
| 332 | // semantic analysis and code generation. |
| 333 | InitListExpr *getFullyStructuredList() const { return FullyStructuredList; } |
| 334 | }; |
Chris Lattner | 8b419b9 | 2009-02-24 22:48:58 +0000 | [diff] [blame] | 335 | } // end anonymous namespace |
Chris Lattner | 68355a5 | 2009-01-29 05:10:57 +0000 | [diff] [blame] | 336 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 337 | void InitListChecker::CheckValueInitializable(const InitializedEntity &Entity) { |
| 338 | assert(VerifyOnly && |
| 339 | "CheckValueInitializable is only inteded for verification mode."); |
| 340 | |
| 341 | SourceLocation Loc; |
| 342 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 343 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 344 | InitializationSequence InitSeq(SemaRef, Entity, Kind, None); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 345 | if (InitSeq.Failed()) |
| 346 | hadError = true; |
| 347 | } |
| 348 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 349 | void InitListChecker::FillInValueInitForField(unsigned Init, FieldDecl *Field, |
| 350 | const InitializedEntity &ParentEntity, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 351 | InitListExpr *ILE, |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 352 | bool &RequiresSecondPass) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 353 | SourceLocation Loc = ILE->getLocStart(); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 354 | unsigned NumInits = ILE->getNumInits(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 355 | InitializedEntity MemberEntity |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 356 | = InitializedEntity::InitializeMember(Field, &ParentEntity); |
| 357 | if (Init >= NumInits || !ILE->getInit(Init)) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 358 | // If there's no explicit initializer but we have a default initializer, use |
| 359 | // that. This only happens in C++1y, since classes with default |
| 360 | // initializers are not aggregates in C++11. |
| 361 | if (Field->hasInClassInitializer()) { |
| 362 | Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context, |
| 363 | ILE->getRBraceLoc(), Field); |
| 364 | if (Init < NumInits) |
| 365 | ILE->setInit(Init, DIE); |
| 366 | else { |
| 367 | ILE->updateInit(SemaRef.Context, Init, DIE); |
| 368 | RequiresSecondPass = true; |
| 369 | } |
| 370 | return; |
| 371 | } |
| 372 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 373 | // FIXME: We probably don't need to handle references |
| 374 | // specially here, since value-initialization of references is |
| 375 | // handled in InitializationSequence. |
| 376 | if (Field->getType()->isReferenceType()) { |
| 377 | // C++ [dcl.init.aggr]p9: |
| 378 | // If an incomplete or empty initializer-list leaves a |
| 379 | // member of reference type uninitialized, the program is |
| 380 | // ill-formed. |
| 381 | SemaRef.Diag(Loc, diag::err_init_reference_member_uninitialized) |
| 382 | << Field->getType() |
| 383 | << ILE->getSyntacticForm()->getSourceRange(); |
| 384 | SemaRef.Diag(Field->getLocation(), |
| 385 | diag::note_uninit_reference_member); |
| 386 | hadError = true; |
| 387 | return; |
| 388 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 389 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 390 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 391 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 392 | InitializationSequence InitSeq(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 393 | if (!InitSeq) { |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 394 | InitSeq.Diagnose(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 395 | hadError = true; |
| 396 | return; |
| 397 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 398 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 399 | ExprResult MemberInit |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 400 | = InitSeq.Perform(SemaRef, MemberEntity, Kind, None); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 401 | if (MemberInit.isInvalid()) { |
| 402 | hadError = true; |
| 403 | return; |
| 404 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 405 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 406 | if (hadError) { |
| 407 | // Do nothing |
| 408 | } else if (Init < NumInits) { |
| 409 | ILE->setInit(Init, MemberInit.takeAs<Expr>()); |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 410 | } else if (InitSeq.isConstructorInitialization()) { |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 411 | // Value-initialization requires a constructor call, so |
| 412 | // extend the initializer list to include the constructor |
| 413 | // call and make a note that we'll need to take another pass |
| 414 | // through the initializer list. |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 415 | ILE->updateInit(SemaRef.Context, Init, MemberInit.takeAs<Expr>()); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 416 | RequiresSecondPass = true; |
| 417 | } |
| 418 | } else if (InitListExpr *InnerILE |
| 419 | = dyn_cast<InitListExpr>(ILE->getInit(Init))) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 420 | FillInValueInitializations(MemberEntity, InnerILE, |
| 421 | RequiresSecondPass); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 424 | /// Recursively replaces NULL values within the given initializer list |
| 425 | /// with expressions that perform value-initialization of the |
| 426 | /// appropriate type. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 427 | void |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 428 | InitListChecker::FillInValueInitializations(const InitializedEntity &Entity, |
| 429 | InitListExpr *ILE, |
| 430 | bool &RequiresSecondPass) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 431 | assert((ILE->getType() != SemaRef.Context.VoidTy) && |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 432 | "Should not have void type"); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 433 | SourceLocation Loc = ILE->getLocStart(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 434 | if (ILE->getSyntacticForm()) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 435 | Loc = ILE->getSyntacticForm()->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 436 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 437 | if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 438 | const RecordDecl *RDecl = RType->getDecl(); |
| 439 | if (RDecl->isUnion() && ILE->getInitializedFieldInUnion()) |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 440 | FillInValueInitForField(0, ILE->getInitializedFieldInUnion(), |
| 441 | Entity, ILE, RequiresSecondPass); |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 442 | else if (RDecl->isUnion() && isa<CXXRecordDecl>(RDecl) && |
| 443 | cast<CXXRecordDecl>(RDecl)->hasInClassInitializer()) { |
| 444 | for (RecordDecl::field_iterator Field = RDecl->field_begin(), |
| 445 | FieldEnd = RDecl->field_end(); |
| 446 | Field != FieldEnd; ++Field) { |
| 447 | if (Field->hasInClassInitializer()) { |
| 448 | FillInValueInitForField(0, *Field, Entity, ILE, RequiresSecondPass); |
| 449 | break; |
| 450 | } |
| 451 | } |
| 452 | } else { |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 453 | unsigned Init = 0; |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 454 | for (RecordDecl::field_iterator Field = RDecl->field_begin(), |
| 455 | FieldEnd = RDecl->field_end(); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 456 | Field != FieldEnd; ++Field) { |
| 457 | if (Field->isUnnamedBitfield()) |
| 458 | continue; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 459 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 460 | if (hadError) |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 461 | return; |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 462 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 463 | FillInValueInitForField(Init, *Field, Entity, ILE, RequiresSecondPass); |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 464 | if (hadError) |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 465 | return; |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 466 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 467 | ++Init; |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 468 | |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 469 | // Only look at the first initialization of a union. |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 470 | if (RDecl->isUnion()) |
Douglas Gregor | d6d37de | 2009-12-22 00:05:34 +0000 | [diff] [blame] | 471 | break; |
| 472 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 476 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 477 | |
| 478 | QualType ElementType; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 479 | |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 480 | InitializedEntity ElementEntity = Entity; |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 481 | unsigned NumInits = ILE->getNumInits(); |
| 482 | unsigned NumElements = NumInits; |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 483 | if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 484 | ElementType = AType->getElementType(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 485 | if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) |
| 486 | NumElements = CAType->getSize().getZExtValue(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 487 | ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 488 | 0, Entity); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 489 | } else if (const VectorType *VType = ILE->getType()->getAs<VectorType>()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 490 | ElementType = VType->getElementType(); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 491 | NumElements = VType->getNumElements(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 492 | ElementEntity = InitializedEntity::InitializeElement(SemaRef.Context, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 493 | 0, Entity); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 494 | } else |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 495 | ElementType = ILE->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 496 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 497 | |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 498 | for (unsigned Init = 0; Init != NumElements; ++Init) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 499 | if (hadError) |
| 500 | return; |
| 501 | |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 502 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement || |
| 503 | ElementEntity.getKind() == InitializedEntity::EK_VectorElement) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 504 | ElementEntity.setElementIndex(Init); |
| 505 | |
Argyrios Kyrtzidis | 21f77cd | 2011-10-21 23:02:22 +0000 | [diff] [blame] | 506 | Expr *InitExpr = (Init < NumInits ? ILE->getInit(Init) : 0); |
| 507 | if (!InitExpr && !ILE->hasArrayFiller()) { |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 508 | InitializationKind Kind = InitializationKind::CreateValue(Loc, Loc, Loc, |
| 509 | true); |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 510 | InitializationSequence InitSeq(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 511 | if (!InitSeq) { |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 512 | InitSeq.Diagnose(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 513 | hadError = true; |
| 514 | return; |
| 515 | } |
| 516 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 517 | ExprResult ElementInit |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 518 | = InitSeq.Perform(SemaRef, ElementEntity, Kind, None); |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 519 | if (ElementInit.isInvalid()) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 520 | hadError = true; |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 521 | return; |
| 522 | } |
| 523 | |
| 524 | if (hadError) { |
| 525 | // Do nothing |
| 526 | } else if (Init < NumInits) { |
Argyrios Kyrtzidis | 3e8dc2a | 2011-04-21 20:03:38 +0000 | [diff] [blame] | 527 | // For arrays, just set the expression used for value-initialization |
| 528 | // of the "holes" in the array. |
| 529 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) |
| 530 | ILE->setArrayFiller(ElementInit.takeAs<Expr>()); |
| 531 | else |
| 532 | ILE->setInit(Init, ElementInit.takeAs<Expr>()); |
Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 533 | } else { |
| 534 | // For arrays, just set the expression used for value-initialization |
| 535 | // of the rest of elements and exit. |
| 536 | if (ElementEntity.getKind() == InitializedEntity::EK_ArrayElement) { |
| 537 | ILE->setArrayFiller(ElementInit.takeAs<Expr>()); |
| 538 | return; |
| 539 | } |
| 540 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 541 | if (InitSeq.isConstructorInitialization()) { |
Argyrios Kyrtzidis | 4423ac0 | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 542 | // Value-initialization requires a constructor call, so |
| 543 | // extend the initializer list to include the constructor |
| 544 | // call and make a note that we'll need to take another pass |
| 545 | // through the initializer list. |
| 546 | ILE->updateInit(SemaRef.Context, Init, ElementInit.takeAs<Expr>()); |
| 547 | RequiresSecondPass = true; |
| 548 | } |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 549 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 550 | } else if (InitListExpr *InnerILE |
Argyrios Kyrtzidis | 21f77cd | 2011-10-21 23:02:22 +0000 | [diff] [blame] | 551 | = dyn_cast_or_null<InitListExpr>(InitExpr)) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 552 | FillInValueInitializations(ElementEntity, InnerILE, RequiresSecondPass); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 553 | } |
| 554 | } |
| 555 | |
Chris Lattner | 68355a5 | 2009-01-29 05:10:57 +0000 | [diff] [blame] | 556 | |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 557 | InitListChecker::InitListChecker(Sema &S, const InitializedEntity &Entity, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 558 | InitListExpr *IL, QualType &T, |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 559 | bool VerifyOnly) |
| 560 | : SemaRef(S), VerifyOnly(VerifyOnly) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 561 | hadError = false; |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 562 | |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 563 | FullyStructuredList = |
| 564 | getStructuredSubobjectInit(IL, 0, T, 0, 0, IL->getSourceRange()); |
| 565 | CheckExplicitInitList(Entity, IL, T, FullyStructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 566 | /*TopLevelObject=*/true); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 567 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 568 | if (!hadError && !VerifyOnly) { |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 569 | bool RequiresSecondPass = false; |
| 570 | FillInValueInitializations(Entity, FullyStructuredList, RequiresSecondPass); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 571 | if (RequiresSecondPass && !hadError) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 572 | FillInValueInitializations(Entity, FullyStructuredList, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 573 | RequiresSecondPass); |
| 574 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | int InitListChecker::numArrayElements(QualType DeclType) { |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 578 | // FIXME: use a proper constant |
| 579 | int maxElements = 0x7FFFFFFF; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 580 | if (const ConstantArrayType *CAT = |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 581 | SemaRef.Context.getAsConstantArrayType(DeclType)) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 582 | maxElements = static_cast<int>(CAT->getSize().getZExtValue()); |
| 583 | } |
| 584 | return maxElements; |
| 585 | } |
| 586 | |
| 587 | int InitListChecker::numStructUnionElements(QualType DeclType) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 588 | RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 589 | int InitializableMembers = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 590 | for (RecordDecl::field_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 591 | Field = structDecl->field_begin(), |
| 592 | FieldEnd = structDecl->field_end(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 593 | Field != FieldEnd; ++Field) { |
Douglas Gregor | d61db33 | 2011-10-10 17:22:13 +0000 | [diff] [blame] | 594 | if (!Field->isUnnamedBitfield()) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 595 | ++InitializableMembers; |
| 596 | } |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 597 | if (structDecl->isUnion()) |
Eli Friedman | f84eda3 | 2008-05-25 14:03:31 +0000 | [diff] [blame] | 598 | return std::min(InitializableMembers, 1); |
| 599 | return InitializableMembers - structDecl->hasFlexibleArrayMember(); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 602 | /// Check whether the range of the initializer \p ParentIList from element |
| 603 | /// \p Index onwards can be used to initialize an object of type \p T. Update |
| 604 | /// \p Index to indicate how many elements of the list were consumed. |
| 605 | /// |
| 606 | /// This also fills in \p StructuredList, from element \p StructuredIndex |
| 607 | /// onwards, with the fully-braced, desugared form of the initialization. |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 608 | void InitListChecker::CheckImplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 609 | InitListExpr *ParentIList, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 610 | QualType T, unsigned &Index, |
| 611 | InitListExpr *StructuredList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 612 | unsigned &StructuredIndex) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 613 | int maxElements = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 614 | |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 615 | if (T->isArrayType()) |
| 616 | maxElements = numArrayElements(T); |
Douglas Gregor | fb87b89 | 2010-04-26 21:31:17 +0000 | [diff] [blame] | 617 | else if (T->isRecordType()) |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 618 | maxElements = numStructUnionElements(T); |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 619 | else if (T->isVectorType()) |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 620 | maxElements = T->getAs<VectorType>()->getNumElements(); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 621 | else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 622 | llvm_unreachable("CheckImplicitInitList(): Illegal type"); |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 623 | |
Eli Friedman | 402256f | 2008-05-25 13:49:22 +0000 | [diff] [blame] | 624 | if (maxElements == 0) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 625 | if (!VerifyOnly) |
| 626 | SemaRef.Diag(ParentIList->getInit(Index)->getLocStart(), |
| 627 | diag::err_implicit_empty_initializer); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 628 | ++Index; |
Eli Friedman | 402256f | 2008-05-25 13:49:22 +0000 | [diff] [blame] | 629 | hadError = true; |
| 630 | return; |
| 631 | } |
| 632 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 633 | // Build a structured initializer list corresponding to this subobject. |
| 634 | InitListExpr *StructuredSubobjectInitList |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 635 | = getStructuredSubobjectInit(ParentIList, Index, T, StructuredList, |
| 636 | StructuredIndex, |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 637 | SourceRange(ParentIList->getInit(Index)->getLocStart(), |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 638 | ParentIList->getSourceRange().getEnd())); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 639 | unsigned StructuredSubobjectInitIndex = 0; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 640 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 641 | // Check the element types and build the structural subobject. |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 642 | unsigned StartIndex = Index; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 643 | CheckListElementTypes(Entity, ParentIList, T, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 644 | /*SubobjectIsDesignatorContext=*/false, Index, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 645 | StructuredSubobjectInitList, |
Eli Friedman | 629f118 | 2011-08-23 20:17:13 +0000 | [diff] [blame] | 646 | StructuredSubobjectInitIndex); |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 647 | |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 648 | if (!VerifyOnly) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 649 | StructuredSubobjectInitList->setType(T); |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 650 | |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 651 | unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 652 | // Update the structured sub-object initializer so that it's ending |
| 653 | // range corresponds with the end of the last initializer it used. |
| 654 | if (EndIndex < ParentIList->getNumInits()) { |
| 655 | SourceLocation EndLoc |
| 656 | = ParentIList->getInit(EndIndex)->getSourceRange().getEnd(); |
| 657 | StructuredSubobjectInitList->setRBraceLoc(EndLoc); |
| 658 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 659 | |
Sebastian Redl | c223518 | 2011-10-16 18:19:28 +0000 | [diff] [blame] | 660 | // Complain about missing braces. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 661 | if (T->isArrayType() || T->isRecordType()) { |
| 662 | SemaRef.Diag(StructuredSubobjectInitList->getLocStart(), |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 663 | diag::warn_missing_braces) |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 664 | << StructuredSubobjectInitList->getSourceRange() |
| 665 | << FixItHint::CreateInsertion( |
| 666 | StructuredSubobjectInitList->getLocStart(), "{") |
| 667 | << FixItHint::CreateInsertion( |
| 668 | SemaRef.PP.getLocForEndOfToken( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 669 | StructuredSubobjectInitList->getLocEnd()), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 670 | "}"); |
| 671 | } |
Tanya Lattner | 1e1d396 | 2010-03-07 04:17:15 +0000 | [diff] [blame] | 672 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 675 | /// Check whether the initializer \p IList (that was written with explicit |
| 676 | /// braces) can be used to initialize an object of type \p T. |
| 677 | /// |
| 678 | /// This also fills in \p StructuredList with the fully-braced, desugared |
| 679 | /// form of the initialization. |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 680 | void InitListChecker::CheckExplicitInitList(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 681 | InitListExpr *IList, QualType &T, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 682 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 683 | bool TopLevelObject) { |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 684 | assert(IList->isExplicit() && "Illegal Implicit InitListExpr"); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 685 | if (!VerifyOnly) { |
| 686 | SyntacticToSemantic[IList] = StructuredList; |
| 687 | StructuredList->setSyntacticForm(IList); |
| 688 | } |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 689 | |
| 690 | unsigned Index = 0, StructuredIndex = 0; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 691 | CheckListElementTypes(Entity, IList, T, /*SubobjectIsDesignatorContext=*/true, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 692 | Index, StructuredList, StructuredIndex, TopLevelObject); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 693 | if (!VerifyOnly) { |
Eli Friedman | 5c89c39 | 2012-02-23 02:25:10 +0000 | [diff] [blame] | 694 | QualType ExprTy = T; |
| 695 | if (!ExprTy->isArrayType()) |
| 696 | ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 697 | IList->setType(ExprTy); |
| 698 | StructuredList->setType(ExprTy); |
| 699 | } |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 700 | if (hadError) |
| 701 | return; |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 702 | |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 703 | if (Index < IList->getNumInits()) { |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 704 | // We have leftover initializers |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 705 | if (VerifyOnly) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 706 | if (SemaRef.getLangOpts().CPlusPlus || |
| 707 | (SemaRef.getLangOpts().OpenCL && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 708 | IList->getType()->isVectorType())) { |
| 709 | hadError = true; |
| 710 | } |
| 711 | return; |
| 712 | } |
| 713 | |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 714 | if (StructuredIndex == 1 && |
Hans Wennborg | c1fb1e0 | 2013-05-16 09:22:40 +0000 | [diff] [blame] | 715 | IsStringInit(StructuredList->getInit(0), T, SemaRef.Context) == |
| 716 | SIF_None) { |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 717 | unsigned DK = diag::warn_excess_initializers_in_char_array_initializer; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 718 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 719 | DK = diag::err_excess_initializers_in_char_array_initializer; |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 720 | hadError = true; |
| 721 | } |
Eli Friedman | bb504d3 | 2008-05-19 20:12:18 +0000 | [diff] [blame] | 722 | // Special-case |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 723 | SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 724 | << IList->getInit(Index)->getSourceRange(); |
Eli Friedman | d8dc210 | 2008-05-20 05:25:56 +0000 | [diff] [blame] | 725 | } else if (!T->isIncompleteType()) { |
Douglas Gregor | b574e56 | 2009-01-30 22:26:29 +0000 | [diff] [blame] | 726 | // Don't complain for incomplete types, since we'll get an error |
| 727 | // elsewhere |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 728 | QualType CurrentObjectType = StructuredList->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 729 | int initKind = |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 730 | CurrentObjectType->isArrayType()? 0 : |
| 731 | CurrentObjectType->isVectorType()? 1 : |
| 732 | CurrentObjectType->isScalarType()? 2 : |
| 733 | CurrentObjectType->isUnionType()? 3 : |
| 734 | 4; |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 735 | |
| 736 | unsigned DK = diag::warn_excess_initializers; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 737 | if (SemaRef.getLangOpts().CPlusPlus) { |
Eli Friedman | e540858 | 2009-05-29 20:20:05 +0000 | [diff] [blame] | 738 | DK = diag::err_excess_initializers; |
| 739 | hadError = true; |
| 740 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 741 | if (SemaRef.getLangOpts().OpenCL && initKind == 1) { |
Nate Begeman | 0863452 | 2009-07-07 21:53:06 +0000 | [diff] [blame] | 742 | DK = diag::err_excess_initializers; |
| 743 | hadError = true; |
| 744 | } |
Douglas Gregor | 7c53ca6 | 2009-02-18 22:23:55 +0000 | [diff] [blame] | 745 | |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 746 | SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 747 | << initKind << IList->getInit(Index)->getSourceRange(); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 748 | } |
| 749 | } |
Eli Friedman | cda25a9 | 2008-05-19 20:20:43 +0000 | [diff] [blame] | 750 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 751 | if (!VerifyOnly && T->isScalarType() && IList->getNumInits() == 1 && |
| 752 | !TopLevelObject) |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 753 | SemaRef.Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init) |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 754 | << IList->getSourceRange() |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 755 | << FixItHint::CreateRemoval(IList->getLocStart()) |
| 756 | << FixItHint::CreateRemoval(IList->getLocEnd()); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 759 | void InitListChecker::CheckListElementTypes(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 760 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 761 | QualType &DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 762 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 763 | unsigned &Index, |
| 764 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 765 | unsigned &StructuredIndex, |
| 766 | bool TopLevelObject) { |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 767 | if (DeclType->isAnyComplexType() && SubobjectIsDesignatorContext) { |
| 768 | // Explicitly braced initializer for complex type can be real+imaginary |
| 769 | // parts. |
| 770 | CheckComplexType(Entity, IList, DeclType, Index, |
| 771 | StructuredList, StructuredIndex); |
| 772 | } else if (DeclType->isScalarType()) { |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 773 | CheckScalarType(Entity, IList, DeclType, Index, |
| 774 | StructuredList, StructuredIndex); |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 775 | } else if (DeclType->isVectorType()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 776 | CheckVectorType(Entity, IList, DeclType, Index, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 777 | StructuredList, StructuredIndex); |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 778 | } else if (DeclType->isRecordType()) { |
| 779 | assert(DeclType->isAggregateType() && |
| 780 | "non-aggregate records should be handed in CheckSubElementType"); |
| 781 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
| 782 | CheckStructUnionTypes(Entity, IList, DeclType, RD->field_begin(), |
| 783 | SubobjectIsDesignatorContext, Index, |
| 784 | StructuredList, StructuredIndex, |
| 785 | TopLevelObject); |
| 786 | } else if (DeclType->isArrayType()) { |
| 787 | llvm::APSInt Zero( |
| 788 | SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()), |
| 789 | false); |
| 790 | CheckArrayType(Entity, IList, DeclType, Zero, |
| 791 | SubobjectIsDesignatorContext, Index, |
| 792 | StructuredList, StructuredIndex); |
Steve Naroff | 6135352 | 2008-08-10 16:05:48 +0000 | [diff] [blame] | 793 | } else if (DeclType->isVoidType() || DeclType->isFunctionType()) { |
| 794 | // This type is invalid, issue a diagnostic. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 795 | ++Index; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 796 | if (!VerifyOnly) |
| 797 | SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type) |
| 798 | << DeclType; |
Eli Friedman | d8dc210 | 2008-05-20 05:25:56 +0000 | [diff] [blame] | 799 | hadError = true; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 800 | } else if (DeclType->isReferenceType()) { |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 801 | CheckReferenceType(Entity, IList, DeclType, Index, |
| 802 | StructuredList, StructuredIndex); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 803 | } else if (DeclType->isObjCObjectType()) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 804 | if (!VerifyOnly) |
| 805 | SemaRef.Diag(IList->getLocStart(), diag::err_init_objc_class) |
| 806 | << DeclType; |
Douglas Gregor | 4d9e738 | 2010-05-03 18:24:37 +0000 | [diff] [blame] | 807 | hadError = true; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 808 | } else { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 809 | if (!VerifyOnly) |
| 810 | SemaRef.Diag(IList->getLocStart(), diag::err_illegal_initializer_type) |
| 811 | << DeclType; |
Douglas Gregor | 4d9e738 | 2010-05-03 18:24:37 +0000 | [diff] [blame] | 812 | hadError = true; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 816 | void InitListChecker::CheckSubElementType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 817 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 818 | QualType ElemType, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 819 | unsigned &Index, |
| 820 | InitListExpr *StructuredList, |
| 821 | unsigned &StructuredIndex) { |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 822 | Expr *expr = IList->getInit(Index); |
Richard Smith | 6242a45 | 2013-05-31 02:56:17 +0000 | [diff] [blame] | 823 | |
| 824 | if (ElemType->isReferenceType()) |
| 825 | return CheckReferenceType(Entity, IList, ElemType, Index, |
| 826 | StructuredList, StructuredIndex); |
| 827 | |
Eli Friedman | c9c0ea6 | 2008-05-19 20:00:43 +0000 | [diff] [blame] | 828 | if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) { |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 829 | if (!ElemType->isRecordType() || ElemType->isAggregateType()) { |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 830 | InitListExpr *InnerStructuredList |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 831 | = getStructuredSubobjectInit(IList, Index, ElemType, |
| 832 | StructuredList, StructuredIndex, |
| 833 | SubInitList->getSourceRange()); |
Richard Smith | b9bf312 | 2013-09-20 20:10:22 +0000 | [diff] [blame] | 834 | CheckExplicitInitList(Entity, SubInitList, ElemType, |
| 835 | InnerStructuredList); |
Richard Smith | 2059939 | 2012-07-07 08:35:56 +0000 | [diff] [blame] | 836 | ++StructuredIndex; |
| 837 | ++Index; |
| 838 | return; |
| 839 | } |
| 840 | assert(SemaRef.getLangOpts().CPlusPlus && |
| 841 | "non-aggregate records are only possible in C++"); |
| 842 | // C++ initialization is handled later. |
| 843 | } |
| 844 | |
Eli Friedman | 48a2a3a | 2013-08-19 22:12:56 +0000 | [diff] [blame] | 845 | // FIXME: Need to handle atomic aggregate types with implicit init lists. |
| 846 | if (ElemType->isScalarType() || ElemType->isAtomicType()) |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 847 | return CheckScalarType(Entity, IList, ElemType, Index, |
| 848 | StructuredList, StructuredIndex); |
Anders Carlsson | d28b428 | 2009-08-27 17:18:13 +0000 | [diff] [blame] | 849 | |
Eli Friedman | 48a2a3a | 2013-08-19 22:12:56 +0000 | [diff] [blame] | 850 | assert((ElemType->isRecordType() || ElemType->isVectorType() || |
| 851 | ElemType->isArrayType()) && "Unexpected type"); |
| 852 | |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 853 | if (const ArrayType *arrayType = SemaRef.Context.getAsArrayType(ElemType)) { |
| 854 | // arrayType can be incomplete if we're initializing a flexible |
| 855 | // array member. There's nothing we can do with the completed |
| 856 | // type here, though. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 857 | |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 858 | if (IsStringInit(expr, arrayType, SemaRef.Context) == SIF_None) { |
Eli Friedman | 8a5d929 | 2011-09-26 19:09:09 +0000 | [diff] [blame] | 859 | if (!VerifyOnly) { |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 860 | CheckStringInit(expr, ElemType, arrayType, SemaRef); |
| 861 | UpdateStructuredListElement(StructuredList, StructuredIndex, expr); |
Eli Friedman | 8a5d929 | 2011-09-26 19:09:09 +0000 | [diff] [blame] | 862 | } |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 863 | ++Index; |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 864 | return; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 865 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 866 | |
| 867 | // Fall through for subaggregate initialization. |
| 868 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 869 | } else if (SemaRef.getLangOpts().CPlusPlus) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 870 | // C++ [dcl.init.aggr]p12: |
| 871 | // All implicit type conversions (clause 4) are considered when |
Sebastian Redl | 5d3d41d | 2011-09-24 17:47:39 +0000 | [diff] [blame] | 872 | // initializing the aggregate member with an initializer from |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 873 | // an initializer-list. If the initializer can initialize a |
| 874 | // member, the member is initialized. [...] |
| 875 | |
| 876 | // FIXME: Better EqualLoc? |
| 877 | InitializationKind Kind = |
| 878 | InitializationKind::CreateCopy(expr->getLocStart(), SourceLocation()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 879 | InitializationSequence Seq(SemaRef, Entity, Kind, expr); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 880 | |
| 881 | if (Seq) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 882 | if (!VerifyOnly) { |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 883 | ExprResult Result = |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 884 | Seq.Perform(SemaRef, Entity, Kind, expr); |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 885 | if (Result.isInvalid()) |
| 886 | hadError = true; |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 887 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 888 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
Richard Smith | b6f8d28 | 2011-12-20 04:00:21 +0000 | [diff] [blame] | 889 | Result.takeAs<Expr>()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 890 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 891 | ++Index; |
| 892 | return; |
| 893 | } |
| 894 | |
| 895 | // Fall through for subaggregate initialization |
| 896 | } else { |
| 897 | // C99 6.7.8p13: |
| 898 | // |
| 899 | // The initializer for a structure or union object that has |
| 900 | // automatic storage duration shall be either an initializer |
| 901 | // list as described below, or a single expression that has |
| 902 | // compatible structure or union type. In the latter case, the |
| 903 | // initial value of the object, including unnamed members, is |
| 904 | // that of the expression. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 905 | ExprResult ExprRes = SemaRef.Owned(expr); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 906 | if ((ElemType->isRecordType() || ElemType->isVectorType()) && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 907 | SemaRef.CheckSingleAssignmentConstraints(ElemType, ExprRes, |
| 908 | !VerifyOnly) |
Eli Friedman | 08f0bbc | 2013-09-17 04:07:04 +0000 | [diff] [blame] | 909 | != Sema::Incompatible) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 910 | if (ExprRes.isInvalid()) |
| 911 | hadError = true; |
| 912 | else { |
| 913 | ExprRes = SemaRef.DefaultFunctionArrayLvalueConversion(ExprRes.take()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 914 | if (ExprRes.isInvalid()) |
| 915 | hadError = true; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 916 | } |
| 917 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
| 918 | ExprRes.takeAs<Expr>()); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 919 | ++Index; |
| 920 | return; |
| 921 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 922 | ExprRes.release(); |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 923 | // Fall through for subaggregate initialization |
| 924 | } |
| 925 | |
| 926 | // C++ [dcl.init.aggr]p12: |
| 927 | // |
| 928 | // [...] Otherwise, if the member is itself a non-empty |
| 929 | // subaggregate, brace elision is assumed and the initializer is |
| 930 | // considered for the initialization of the first member of |
| 931 | // the subaggregate. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 932 | if (!SemaRef.getLangOpts().OpenCL && |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 933 | (ElemType->isAggregateType() || ElemType->isVectorType())) { |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 934 | CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList, |
| 935 | StructuredIndex); |
| 936 | ++StructuredIndex; |
| 937 | } else { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 938 | if (!VerifyOnly) { |
| 939 | // We cannot initialize this element, so let |
| 940 | // PerformCopyInitialization produce the appropriate diagnostic. |
| 941 | SemaRef.PerformCopyInitialization(Entity, SourceLocation(), |
| 942 | SemaRef.Owned(expr), |
| 943 | /*TopLevelOfInitList=*/true); |
| 944 | } |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 945 | hadError = true; |
| 946 | ++Index; |
| 947 | ++StructuredIndex; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 948 | } |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 949 | } |
| 950 | |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 951 | void InitListChecker::CheckComplexType(const InitializedEntity &Entity, |
| 952 | InitListExpr *IList, QualType DeclType, |
| 953 | unsigned &Index, |
| 954 | InitListExpr *StructuredList, |
| 955 | unsigned &StructuredIndex) { |
| 956 | assert(Index == 0 && "Index in explicit init list must be zero"); |
| 957 | |
| 958 | // As an extension, clang supports complex initializers, which initialize |
| 959 | // a complex number component-wise. When an explicit initializer list for |
| 960 | // a complex number contains two two initializers, this extension kicks in: |
| 961 | // it exepcts the initializer list to contain two elements convertible to |
| 962 | // the element type of the complex type. The first element initializes |
| 963 | // the real part, and the second element intitializes the imaginary part. |
| 964 | |
| 965 | if (IList->getNumInits() != 2) |
| 966 | return CheckScalarType(Entity, IList, DeclType, Index, StructuredList, |
| 967 | StructuredIndex); |
| 968 | |
| 969 | // This is an extension in C. (The builtin _Complex type does not exist |
| 970 | // in the C++ standard.) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 971 | if (!SemaRef.getLangOpts().CPlusPlus && !VerifyOnly) |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 972 | SemaRef.Diag(IList->getLocStart(), diag::ext_complex_component_init) |
| 973 | << IList->getSourceRange(); |
| 974 | |
| 975 | // Initialize the complex number. |
| 976 | QualType elementType = DeclType->getAs<ComplexType>()->getElementType(); |
| 977 | InitializedEntity ElementEntity = |
| 978 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
| 979 | |
| 980 | for (unsigned i = 0; i < 2; ++i) { |
| 981 | ElementEntity.setElementIndex(Index); |
| 982 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 983 | StructuredList, StructuredIndex); |
| 984 | } |
| 985 | } |
| 986 | |
| 987 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 988 | void InitListChecker::CheckScalarType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 989 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 990 | unsigned &Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 991 | InitListExpr *StructuredList, |
| 992 | unsigned &StructuredIndex) { |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 993 | if (Index >= IList->getNumInits()) { |
Richard Smith | 6b13022 | 2011-10-18 21:39:00 +0000 | [diff] [blame] | 994 | if (!VerifyOnly) |
| 995 | SemaRef.Diag(IList->getLocStart(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 996 | SemaRef.getLangOpts().CPlusPlus11 ? |
Richard Smith | 6b13022 | 2011-10-18 21:39:00 +0000 | [diff] [blame] | 997 | diag::warn_cxx98_compat_empty_scalar_initializer : |
| 998 | diag::err_empty_scalar_initializer) |
| 999 | << IList->getSourceRange(); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1000 | hadError = !SemaRef.getLangOpts().CPlusPlus11; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1001 | ++Index; |
| 1002 | ++StructuredIndex; |
Eli Friedman | bb504d3 | 2008-05-19 20:12:18 +0000 | [diff] [blame] | 1003 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1004 | } |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1005 | |
| 1006 | Expr *expr = IList->getInit(Index); |
| 1007 | if (InitListExpr *SubIList = dyn_cast<InitListExpr>(expr)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1008 | if (!VerifyOnly) |
| 1009 | SemaRef.Diag(SubIList->getLocStart(), |
| 1010 | diag::warn_many_braces_around_scalar_init) |
| 1011 | << SubIList->getSourceRange(); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1012 | |
| 1013 | CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList, |
| 1014 | StructuredIndex); |
| 1015 | return; |
| 1016 | } else if (isa<DesignatedInitExpr>(expr)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1017 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1018 | SemaRef.Diag(expr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1019 | diag::err_designator_for_scalar_init) |
| 1020 | << DeclType << expr->getSourceRange(); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1021 | hadError = true; |
| 1022 | ++Index; |
| 1023 | ++StructuredIndex; |
| 1024 | return; |
| 1025 | } |
| 1026 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1027 | if (VerifyOnly) { |
| 1028 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr))) |
| 1029 | hadError = true; |
| 1030 | ++Index; |
| 1031 | return; |
| 1032 | } |
| 1033 | |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1034 | ExprResult Result = |
| 1035 | SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(), |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 1036 | SemaRef.Owned(expr), |
| 1037 | /*TopLevelOfInitList=*/true); |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1038 | |
| 1039 | Expr *ResultExpr = 0; |
| 1040 | |
| 1041 | if (Result.isInvalid()) |
| 1042 | hadError = true; // types weren't compatible. |
| 1043 | else { |
| 1044 | ResultExpr = Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1045 | |
John McCall | b934c2d | 2010-11-11 00:46:36 +0000 | [diff] [blame] | 1046 | if (ResultExpr != expr) { |
| 1047 | // The type was promoted, update initializer list. |
| 1048 | IList->setInit(Index, ResultExpr); |
| 1049 | } |
| 1050 | } |
| 1051 | if (hadError) |
| 1052 | ++StructuredIndex; |
| 1053 | else |
| 1054 | UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr); |
| 1055 | ++Index; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1058 | void InitListChecker::CheckReferenceType(const InitializedEntity &Entity, |
| 1059 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1060 | unsigned &Index, |
| 1061 | InitListExpr *StructuredList, |
| 1062 | unsigned &StructuredIndex) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1063 | if (Index >= IList->getNumInits()) { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1064 | // FIXME: It would be wonderful if we could point at the actual member. In |
| 1065 | // general, it would be useful to pass location information down the stack, |
| 1066 | // so that we know the location (or decl) of the "current object" being |
| 1067 | // initialized. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1068 | if (!VerifyOnly) |
| 1069 | SemaRef.Diag(IList->getLocStart(), |
| 1070 | diag::err_init_reference_member_uninitialized) |
| 1071 | << DeclType |
| 1072 | << IList->getSourceRange(); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1073 | hadError = true; |
| 1074 | ++Index; |
| 1075 | ++StructuredIndex; |
| 1076 | return; |
| 1077 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1078 | |
| 1079 | Expr *expr = IList->getInit(Index); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1080 | if (isa<InitListExpr>(expr) && !SemaRef.getLangOpts().CPlusPlus11) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1081 | if (!VerifyOnly) |
| 1082 | SemaRef.Diag(IList->getLocStart(), diag::err_init_non_aggr_init_list) |
| 1083 | << DeclType << IList->getSourceRange(); |
| 1084 | hadError = true; |
| 1085 | ++Index; |
| 1086 | ++StructuredIndex; |
| 1087 | return; |
| 1088 | } |
| 1089 | |
| 1090 | if (VerifyOnly) { |
| 1091 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(expr))) |
| 1092 | hadError = true; |
| 1093 | ++Index; |
| 1094 | return; |
| 1095 | } |
| 1096 | |
| 1097 | ExprResult Result = |
| 1098 | SemaRef.PerformCopyInitialization(Entity, expr->getLocStart(), |
| 1099 | SemaRef.Owned(expr), |
| 1100 | /*TopLevelOfInitList=*/true); |
| 1101 | |
| 1102 | if (Result.isInvalid()) |
| 1103 | hadError = true; |
| 1104 | |
| 1105 | expr = Result.takeAs<Expr>(); |
| 1106 | IList->setInit(Index, expr); |
| 1107 | |
| 1108 | if (hadError) |
| 1109 | ++StructuredIndex; |
| 1110 | else |
| 1111 | UpdateStructuredListElement(StructuredList, StructuredIndex, expr); |
| 1112 | ++Index; |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1113 | } |
| 1114 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1115 | void InitListChecker::CheckVectorType(const InitializedEntity &Entity, |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 1116 | InitListExpr *IList, QualType DeclType, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1117 | unsigned &Index, |
| 1118 | InitListExpr *StructuredList, |
| 1119 | unsigned &StructuredIndex) { |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1120 | const VectorType *VT = DeclType->getAs<VectorType>(); |
| 1121 | unsigned maxElements = VT->getNumElements(); |
| 1122 | unsigned numEltsInit = 0; |
| 1123 | QualType elementType = VT->getElementType(); |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 1124 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1125 | if (Index >= IList->getNumInits()) { |
| 1126 | // Make sure the element type can be value-initialized. |
| 1127 | if (VerifyOnly) |
| 1128 | CheckValueInitializable( |
| 1129 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity)); |
| 1130 | return; |
| 1131 | } |
| 1132 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1133 | if (!SemaRef.getLangOpts().OpenCL) { |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1134 | // If the initializing element is a vector, try to copy-initialize |
| 1135 | // instead of breaking it apart (which is doomed to failure anyway). |
| 1136 | Expr *Init = IList->getInit(Index); |
| 1137 | if (!isa<InitListExpr>(Init) && Init->getType()->isVectorType()) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1138 | if (VerifyOnly) { |
| 1139 | if (!SemaRef.CanPerformCopyInitialization(Entity, SemaRef.Owned(Init))) |
| 1140 | hadError = true; |
| 1141 | ++Index; |
| 1142 | return; |
| 1143 | } |
| 1144 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1145 | ExprResult Result = |
| 1146 | SemaRef.PerformCopyInitialization(Entity, Init->getLocStart(), |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 1147 | SemaRef.Owned(Init), |
| 1148 | /*TopLevelOfInitList=*/true); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1149 | |
| 1150 | Expr *ResultExpr = 0; |
| 1151 | if (Result.isInvalid()) |
| 1152 | hadError = true; // types weren't compatible. |
| 1153 | else { |
| 1154 | ResultExpr = Result.takeAs<Expr>(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1155 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1156 | if (ResultExpr != Init) { |
| 1157 | // The type was promoted, update initializer list. |
| 1158 | IList->setInit(Index, ResultExpr); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1159 | } |
| 1160 | } |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1161 | if (hadError) |
| 1162 | ++StructuredIndex; |
| 1163 | else |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1164 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
| 1165 | ResultExpr); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1166 | ++Index; |
| 1167 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1168 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1169 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1170 | InitializedEntity ElementEntity = |
| 1171 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1172 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1173 | for (unsigned i = 0; i < maxElements; ++i, ++numEltsInit) { |
| 1174 | // Don't attempt to go past the end of the init list |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1175 | if (Index >= IList->getNumInits()) { |
| 1176 | if (VerifyOnly) |
| 1177 | CheckValueInitializable(ElementEntity); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1178 | break; |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1179 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1180 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1181 | ElementEntity.setElementIndex(Index); |
| 1182 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1183 | StructuredList, StructuredIndex); |
| 1184 | } |
| 1185 | return; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1186 | } |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1187 | |
| 1188 | InitializedEntity ElementEntity = |
| 1189 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1190 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1191 | // OpenCL initializers allows vectors to be constructed from vectors. |
| 1192 | for (unsigned i = 0; i < maxElements; ++i) { |
| 1193 | // Don't attempt to go past the end of the init list |
| 1194 | if (Index >= IList->getNumInits()) |
| 1195 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1196 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1197 | ElementEntity.setElementIndex(Index); |
| 1198 | |
| 1199 | QualType IType = IList->getInit(Index)->getType(); |
| 1200 | if (!IType->isVectorType()) { |
| 1201 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1202 | StructuredList, StructuredIndex); |
| 1203 | ++numEltsInit; |
| 1204 | } else { |
| 1205 | QualType VecType; |
| 1206 | const VectorType *IVT = IType->getAs<VectorType>(); |
| 1207 | unsigned numIElts = IVT->getNumElements(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1208 | |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1209 | if (IType->isExtVectorType()) |
| 1210 | VecType = SemaRef.Context.getExtVectorType(elementType, numIElts); |
| 1211 | else |
| 1212 | VecType = SemaRef.Context.getVectorType(elementType, numIElts, |
Bob Wilson | e86d78c | 2010-11-10 21:56:12 +0000 | [diff] [blame] | 1213 | IVT->getVectorKind()); |
John McCall | 20e047a | 2010-10-30 00:11:39 +0000 | [diff] [blame] | 1214 | CheckSubElementType(ElementEntity, IList, VecType, Index, |
| 1215 | StructuredList, StructuredIndex); |
| 1216 | numEltsInit += numIElts; |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | // OpenCL requires all elements to be initialized. |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1221 | if (numEltsInit != maxElements) { |
| 1222 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1223 | SemaRef.Diag(IList->getLocStart(), |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1224 | diag::err_vector_incorrect_num_initializers) |
| 1225 | << (numEltsInit < maxElements) << maxElements << numEltsInit; |
| 1226 | hadError = true; |
| 1227 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1228 | } |
| 1229 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1230 | void InitListChecker::CheckArrayType(const InitializedEntity &Entity, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 1231 | InitListExpr *IList, QualType &DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1232 | llvm::APSInt elementIndex, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1233 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1234 | unsigned &Index, |
| 1235 | InitListExpr *StructuredList, |
| 1236 | unsigned &StructuredIndex) { |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1237 | const ArrayType *arrayType = SemaRef.Context.getAsArrayType(DeclType); |
| 1238 | |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1239 | // Check for the special-case of initializing an array with a string. |
| 1240 | if (Index < IList->getNumInits()) { |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 1241 | if (IsStringInit(IList->getInit(Index), arrayType, SemaRef.Context) == |
| 1242 | SIF_None) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1243 | // We place the string literal directly into the resulting |
| 1244 | // initializer list. This is the only place where the structure |
| 1245 | // of the structured initializer list doesn't match exactly, |
| 1246 | // because doing so would involve allocating one character |
| 1247 | // constant for each string. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1248 | if (!VerifyOnly) { |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 1249 | CheckStringInit(IList->getInit(Index), DeclType, arrayType, SemaRef); |
| 1250 | UpdateStructuredListElement(StructuredList, StructuredIndex, |
| 1251 | IList->getInit(Index)); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1252 | StructuredList->resizeInits(SemaRef.Context, StructuredIndex); |
| 1253 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1254 | ++Index; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1255 | return; |
| 1256 | } |
| 1257 | } |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1258 | if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(arrayType)) { |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1259 | // Check for VLAs; in standard C it would be possible to check this |
| 1260 | // earlier, but I don't know where clang accepts VLAs (gcc accepts |
| 1261 | // them in all sorts of strange places). |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1262 | if (!VerifyOnly) |
| 1263 | SemaRef.Diag(VAT->getSizeExpr()->getLocStart(), |
| 1264 | diag::err_variable_object_no_init) |
| 1265 | << VAT->getSizeExpr()->getSourceRange(); |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1266 | hadError = true; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1267 | ++Index; |
| 1268 | ++StructuredIndex; |
Eli Friedman | 638e144 | 2008-05-25 13:22:35 +0000 | [diff] [blame] | 1269 | return; |
| 1270 | } |
| 1271 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1272 | // We might know the maximum number of elements in advance. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1273 | llvm::APSInt maxElements(elementIndex.getBitWidth(), |
| 1274 | elementIndex.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1275 | bool maxElementsKnown = false; |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1276 | if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1277 | maxElements = CAT->getSize(); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1278 | elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth()); |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1279 | elementIndex.setIsUnsigned(maxElements.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1280 | maxElementsKnown = true; |
| 1281 | } |
| 1282 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 1283 | QualType elementType = arrayType->getElementType(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1284 | while (Index < IList->getNumInits()) { |
| 1285 | Expr *Init = IList->getInit(Index); |
| 1286 | if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1287 | // If we're not the subobject that matches up with the '{' for |
| 1288 | // the designator, we shouldn't be handling the |
| 1289 | // designator. Return immediately. |
| 1290 | if (!SubobjectIsDesignatorContext) |
| 1291 | return; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1292 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1293 | // Handle this designated initializer. elementIndex will be |
| 1294 | // updated to be the next array element we'll initialize. |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1295 | if (CheckDesignatedInitializer(Entity, IList, DIE, 0, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1296 | DeclType, 0, &elementIndex, Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1297 | StructuredList, StructuredIndex, true, |
| 1298 | false)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1299 | hadError = true; |
| 1300 | continue; |
| 1301 | } |
| 1302 | |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1303 | if (elementIndex.getBitWidth() > maxElements.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1304 | maxElements = maxElements.extend(elementIndex.getBitWidth()); |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1305 | else if (elementIndex.getBitWidth() < maxElements.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 1306 | elementIndex = elementIndex.extend(maxElements.getBitWidth()); |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1307 | elementIndex.setIsUnsigned(maxElements.isUnsigned()); |
Douglas Gregor | f6c717c | 2009-01-23 16:54:12 +0000 | [diff] [blame] | 1308 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1309 | // If the array is of incomplete type, keep track of the number of |
| 1310 | // elements in the initializer. |
| 1311 | if (!maxElementsKnown && elementIndex > maxElements) |
| 1312 | maxElements = elementIndex; |
| 1313 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1314 | continue; |
| 1315 | } |
| 1316 | |
| 1317 | // If we know the maximum number of elements, and we've already |
| 1318 | // hit it, stop consuming elements in the initializer list. |
| 1319 | if (maxElementsKnown && elementIndex == maxElements) |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1320 | break; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1321 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1322 | InitializedEntity ElementEntity = |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1323 | InitializedEntity::InitializeElement(SemaRef.Context, StructuredIndex, |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1324 | Entity); |
| 1325 | // Check this element. |
| 1326 | CheckSubElementType(ElementEntity, IList, elementType, Index, |
| 1327 | StructuredList, StructuredIndex); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1328 | ++elementIndex; |
| 1329 | |
| 1330 | // If the array is of incomplete type, keep track of the number of |
| 1331 | // elements in the initializer. |
| 1332 | if (!maxElementsKnown && elementIndex > maxElements) |
| 1333 | maxElements = elementIndex; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1334 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1335 | if (!hadError && DeclType->isIncompleteArrayType() && !VerifyOnly) { |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1336 | // If this is an incomplete array type, the actual type needs to |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1337 | // be calculated here. |
Douglas Gregor | e3fa2de | 2009-01-23 18:58:42 +0000 | [diff] [blame] | 1338 | llvm::APSInt Zero(maxElements.getBitWidth(), maxElements.isUnsigned()); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1339 | if (maxElements == Zero) { |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1340 | // Sizing an array implicitly to zero is not allowed by ISO C, |
| 1341 | // but is supported by GNU. |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 1342 | SemaRef.Diag(IList->getLocStart(), |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1343 | diag::ext_typecheck_zero_array_size); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1344 | } |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1345 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1346 | DeclType = SemaRef.Context.getConstantArrayType(elementType, maxElements, |
Daniel Dunbar | 396f0bf | 2008-08-18 20:28:46 +0000 | [diff] [blame] | 1347 | ArrayType::Normal, 0); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1348 | } |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1349 | if (!hadError && VerifyOnly) { |
| 1350 | // Check if there are any members of the array that get value-initialized. |
| 1351 | // If so, check if doing that is possible. |
| 1352 | // FIXME: This needs to detect holes left by designated initializers too. |
| 1353 | if (maxElementsKnown && elementIndex < maxElements) |
| 1354 | CheckValueInitializable(InitializedEntity::InitializeElement( |
| 1355 | SemaRef.Context, 0, Entity)); |
| 1356 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1357 | } |
| 1358 | |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1359 | bool InitListChecker::CheckFlexibleArrayInit(const InitializedEntity &Entity, |
| 1360 | Expr *InitExpr, |
| 1361 | FieldDecl *Field, |
| 1362 | bool TopLevelObject) { |
| 1363 | // Handle GNU flexible array initializers. |
| 1364 | unsigned FlexArrayDiag; |
| 1365 | if (isa<InitListExpr>(InitExpr) && |
| 1366 | cast<InitListExpr>(InitExpr)->getNumInits() == 0) { |
| 1367 | // Empty flexible array init always allowed as an extension |
| 1368 | FlexArrayDiag = diag::ext_flexible_array_init; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1369 | } else if (SemaRef.getLangOpts().CPlusPlus) { |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1370 | // Disallow flexible array init in C++; it is not required for gcc |
| 1371 | // compatibility, and it needs work to IRGen correctly in general. |
| 1372 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1373 | } else if (!TopLevelObject) { |
| 1374 | // Disallow flexible array init on non-top-level object |
| 1375 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1376 | } else if (Entity.getKind() != InitializedEntity::EK_Variable) { |
| 1377 | // Disallow flexible array init on anything which is not a variable. |
| 1378 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1379 | } else if (cast<VarDecl>(Entity.getDecl())->hasLocalStorage()) { |
| 1380 | // Disallow flexible array init on local variables. |
| 1381 | FlexArrayDiag = diag::err_flexible_array_init; |
| 1382 | } else { |
| 1383 | // Allow other cases. |
| 1384 | FlexArrayDiag = diag::ext_flexible_array_init; |
| 1385 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1386 | |
| 1387 | if (!VerifyOnly) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1388 | SemaRef.Diag(InitExpr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1389 | FlexArrayDiag) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1390 | << InitExpr->getLocStart(); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1391 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
| 1392 | << Field; |
| 1393 | } |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1394 | |
| 1395 | return FlexArrayDiag != diag::ext_flexible_array_init; |
| 1396 | } |
| 1397 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1398 | void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity, |
Anders Carlsson | 2bbae5d | 2010-01-23 20:20:40 +0000 | [diff] [blame] | 1399 | InitListExpr *IList, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1400 | QualType DeclType, |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1401 | RecordDecl::field_iterator Field, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1402 | bool SubobjectIsDesignatorContext, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1403 | unsigned &Index, |
| 1404 | InitListExpr *StructuredList, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1405 | unsigned &StructuredIndex, |
| 1406 | bool TopLevelObject) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1407 | RecordDecl* structDecl = DeclType->getAs<RecordType>()->getDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1408 | |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1409 | // If the record is invalid, some of it's members are invalid. To avoid |
| 1410 | // confusion, we forgo checking the intializer for the entire record. |
| 1411 | if (structDecl->isInvalidDecl()) { |
Richard Smith | 72ab277 | 2012-09-28 21:23:50 +0000 | [diff] [blame] | 1412 | // Assume it was supposed to consume a single initializer. |
| 1413 | ++Index; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1414 | hadError = true; |
| 1415 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1416 | } |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1417 | |
| 1418 | if (DeclType->isUnionType() && IList->getNumInits() == 0) { |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1419 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1420 | |
| 1421 | // If there's a default initializer, use it. |
| 1422 | if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->hasInClassInitializer()) { |
| 1423 | if (VerifyOnly) |
| 1424 | return; |
| 1425 | for (RecordDecl::field_iterator FieldEnd = RD->field_end(); |
| 1426 | Field != FieldEnd; ++Field) { |
| 1427 | if (Field->hasInClassInitializer()) { |
| 1428 | StructuredList->setInitializedFieldInUnion(*Field); |
| 1429 | // FIXME: Actually build a CXXDefaultInitExpr? |
| 1430 | return; |
| 1431 | } |
| 1432 | } |
| 1433 | } |
| 1434 | |
| 1435 | // Value-initialize the first named member of the union. |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1436 | for (RecordDecl::field_iterator FieldEnd = RD->field_end(); |
| 1437 | Field != FieldEnd; ++Field) { |
| 1438 | if (Field->getDeclName()) { |
| 1439 | if (VerifyOnly) |
| 1440 | CheckValueInitializable( |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1441 | InitializedEntity::InitializeMember(*Field, &Entity)); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1442 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1443 | StructuredList->setInitializedFieldInUnion(*Field); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1444 | break; |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 1445 | } |
| 1446 | } |
| 1447 | return; |
| 1448 | } |
| 1449 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1450 | // If structDecl is a forward declaration, this loop won't do |
| 1451 | // anything except look at designated initializers; That's okay, |
| 1452 | // because an error should get printed out elsewhere. It might be |
| 1453 | // worthwhile to skip over the rest of the initializer, though. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1454 | RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl(); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1455 | RecordDecl::field_iterator FieldEnd = RD->field_end(); |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1456 | bool InitializedSomething = false; |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1457 | bool CheckForMissingFields = true; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1458 | while (Index < IList->getNumInits()) { |
| 1459 | Expr *Init = IList->getInit(Index); |
| 1460 | |
| 1461 | if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1462 | // If we're not the subobject that matches up with the '{' for |
| 1463 | // the designator, we shouldn't be handling the |
| 1464 | // designator. Return immediately. |
| 1465 | if (!SubobjectIsDesignatorContext) |
| 1466 | return; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1467 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1468 | // Handle this designated initializer. Field will be updated to |
| 1469 | // the next field that we'll be initializing. |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1470 | if (CheckDesignatedInitializer(Entity, IList, DIE, 0, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1471 | DeclType, &Field, 0, Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1472 | StructuredList, StructuredIndex, |
| 1473 | true, TopLevelObject)) |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1474 | hadError = true; |
| 1475 | |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1476 | InitializedSomething = true; |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1477 | |
| 1478 | // Disable check for missing fields when designators are used. |
| 1479 | // This matches gcc behaviour. |
| 1480 | CheckForMissingFields = false; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1481 | continue; |
| 1482 | } |
| 1483 | |
| 1484 | if (Field == FieldEnd) { |
| 1485 | // We've run out of fields. We're done. |
| 1486 | break; |
| 1487 | } |
| 1488 | |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1489 | // We've already initialized a member of a union. We're done. |
| 1490 | if (InitializedSomething && DeclType->isUnionType()) |
| 1491 | break; |
| 1492 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1493 | // If we've hit the flexible array member at the end, we're done. |
| 1494 | if (Field->getType()->isIncompleteArrayType()) |
| 1495 | break; |
| 1496 | |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1497 | if (Field->isUnnamedBitfield()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1498 | // Don't initialize unnamed bitfields, e.g. "int : 20;" |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1499 | ++Field; |
Eli Friedman | b85f707 | 2008-05-19 19:16:24 +0000 | [diff] [blame] | 1500 | continue; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1501 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1502 | |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1503 | // Make sure we can use this declaration. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1504 | bool InvalidUse; |
| 1505 | if (VerifyOnly) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1506 | InvalidUse = !SemaRef.CanUseDecl(*Field); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1507 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1508 | InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1509 | IList->getInit(Index)->getLocStart()); |
| 1510 | if (InvalidUse) { |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1511 | ++Index; |
| 1512 | ++Field; |
| 1513 | hadError = true; |
| 1514 | continue; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1515 | } |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1516 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1517 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1518 | InitializedEntity::InitializeMember(*Field, &Entity); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1519 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
| 1520 | StructuredList, StructuredIndex); |
Douglas Gregor | dfb5e59 | 2009-02-12 19:00:39 +0000 | [diff] [blame] | 1521 | InitializedSomething = true; |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1522 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1523 | if (DeclType->isUnionType() && !VerifyOnly) { |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1524 | // Initialize the first field within the union. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1525 | StructuredList->setInitializedFieldInUnion(*Field); |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1526 | } |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1527 | |
| 1528 | ++Field; |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1529 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1530 | |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1531 | // Emit warnings for missing struct field initializers. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1532 | if (!VerifyOnly && InitializedSomething && CheckForMissingFields && |
| 1533 | Field != FieldEnd && !Field->getType()->isIncompleteArrayType() && |
| 1534 | !DeclType->isUnionType()) { |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1535 | // It is possible we have one or more unnamed bitfields remaining. |
| 1536 | // Find first (if any) named field and emit warning. |
| 1537 | for (RecordDecl::field_iterator it = Field, end = RD->field_end(); |
| 1538 | it != end; ++it) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1539 | if (!it->isUnnamedBitfield() && !it->hasInClassInitializer()) { |
John McCall | 80639de | 2010-03-11 19:32:38 +0000 | [diff] [blame] | 1540 | SemaRef.Diag(IList->getSourceRange().getEnd(), |
| 1541 | diag::warn_missing_field_initializers) << it->getName(); |
| 1542 | break; |
| 1543 | } |
| 1544 | } |
| 1545 | } |
| 1546 | |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1547 | // Check that any remaining fields can be value-initialized. |
| 1548 | if (VerifyOnly && Field != FieldEnd && !DeclType->isUnionType() && |
| 1549 | !Field->getType()->isIncompleteArrayType()) { |
| 1550 | // FIXME: Should check for holes left by designated initializers too. |
| 1551 | for (; Field != FieldEnd && !hadError; ++Field) { |
Richard Smith | c3bf52c | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1552 | if (!Field->isUnnamedBitfield() && !Field->hasInClassInitializer()) |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1553 | CheckValueInitializable( |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1554 | InitializedEntity::InitializeMember(*Field, &Entity)); |
Sebastian Redl | 3ff5c86 | 2011-10-16 18:19:20 +0000 | [diff] [blame] | 1555 | } |
| 1556 | } |
| 1557 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1558 | if (Field == FieldEnd || !Field->getType()->isIncompleteArrayType() || |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 1559 | Index >= IList->getNumInits()) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1560 | return; |
| 1561 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1562 | if (CheckFlexibleArrayInit(Entity, IList->getInit(Index), *Field, |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1563 | TopLevelObject)) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1564 | hadError = true; |
Douglas Gregor | a645796 | 2009-03-20 00:32:56 +0000 | [diff] [blame] | 1565 | ++Index; |
| 1566 | return; |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1567 | } |
| 1568 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1569 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1570 | InitializedEntity::InitializeMember(*Field, &Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1571 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1572 | if (isa<InitListExpr>(IList->getInit(Index))) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1573 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1574 | StructuredList, StructuredIndex); |
| 1575 | else |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1576 | CheckImplicitInitList(MemberEntity, IList, Field->getType(), Index, |
Anders Carlsson | 987dc6a | 2010-01-23 20:47:59 +0000 | [diff] [blame] | 1577 | StructuredList, StructuredIndex); |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1578 | } |
Steve Naroff | 0cca749 | 2008-05-01 22:18:59 +0000 | [diff] [blame] | 1579 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1580 | /// \brief Expand a field designator that refers to a member of an |
| 1581 | /// anonymous struct or union into a series of field designators that |
| 1582 | /// refers to the field within the appropriate subobject. |
| 1583 | /// |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1584 | static void ExpandAnonymousFieldDesignator(Sema &SemaRef, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1585 | DesignatedInitExpr *DIE, |
| 1586 | unsigned DesigIdx, |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1587 | IndirectFieldDecl *IndirectField) { |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1588 | typedef DesignatedInitExpr::Designator Designator; |
| 1589 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1590 | // Build the replacement designators. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1591 | SmallVector<Designator, 4> Replacements; |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1592 | for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(), |
| 1593 | PE = IndirectField->chain_end(); PI != PE; ++PI) { |
| 1594 | if (PI + 1 == PE) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1595 | Replacements.push_back(Designator((IdentifierInfo *)0, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1596 | DIE->getDesignator(DesigIdx)->getDotLoc(), |
| 1597 | DIE->getDesignator(DesigIdx)->getFieldLoc())); |
| 1598 | else |
| 1599 | Replacements.push_back(Designator((IdentifierInfo *)0, SourceLocation(), |
| 1600 | SourceLocation())); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1601 | assert(isa<FieldDecl>(*PI)); |
| 1602 | Replacements.back().setField(cast<FieldDecl>(*PI)); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
| 1605 | // Expand the current designator into the set of replacement |
| 1606 | // designators, so we have a full subobject path down to where the |
| 1607 | // member of the anonymous struct/union is actually stored. |
Douglas Gregor | 319d57f | 2010-01-06 23:17:19 +0000 | [diff] [blame] | 1608 | DIE->ExpandDesignator(SemaRef.Context, DesigIdx, &Replacements[0], |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1609 | &Replacements[0] + Replacements.size()); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1610 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1611 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1612 | /// \brief Given an implicit anonymous field, search the IndirectField that |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1613 | /// corresponds to FieldName. |
| 1614 | static IndirectFieldDecl *FindIndirectFieldDesignator(FieldDecl *AnonField, |
| 1615 | IdentifierInfo *FieldName) { |
Argyrios Kyrtzidis | b22b0a5 | 2012-09-10 22:04:26 +0000 | [diff] [blame] | 1616 | if (!FieldName) |
| 1617 | return 0; |
| 1618 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1619 | assert(AnonField->isAnonymousStructOrUnion()); |
| 1620 | Decl *NextDecl = AnonField->getNextDeclInContext(); |
Aaron Ballman | 3e78b19 | 2012-02-09 22:16:56 +0000 | [diff] [blame] | 1621 | while (IndirectFieldDecl *IF = |
| 1622 | dyn_cast_or_null<IndirectFieldDecl>(NextDecl)) { |
Argyrios Kyrtzidis | b22b0a5 | 2012-09-10 22:04:26 +0000 | [diff] [blame] | 1623 | if (FieldName == IF->getAnonField()->getIdentifier()) |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1624 | return IF; |
| 1625 | NextDecl = NextDecl->getNextDeclInContext(); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1626 | } |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1627 | return 0; |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1630 | static DesignatedInitExpr *CloneDesignatedInitExpr(Sema &SemaRef, |
| 1631 | DesignatedInitExpr *DIE) { |
| 1632 | unsigned NumIndexExprs = DIE->getNumSubExprs() - 1; |
| 1633 | SmallVector<Expr*, 4> IndexExprs(NumIndexExprs); |
| 1634 | for (unsigned I = 0; I < NumIndexExprs; ++I) |
| 1635 | IndexExprs[I] = DIE->getSubExpr(I + 1); |
| 1636 | return DesignatedInitExpr::Create(SemaRef.Context, DIE->designators_begin(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 1637 | DIE->size(), IndexExprs, |
| 1638 | DIE->getEqualOrColonLoc(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1639 | DIE->usesGNUSyntax(), DIE->getInit()); |
| 1640 | } |
| 1641 | |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1642 | namespace { |
| 1643 | |
| 1644 | // Callback to only accept typo corrections that are for field members of |
| 1645 | // the given struct or union. |
| 1646 | class FieldInitializerValidatorCCC : public CorrectionCandidateCallback { |
| 1647 | public: |
| 1648 | explicit FieldInitializerValidatorCCC(RecordDecl *RD) |
| 1649 | : Record(RD) {} |
| 1650 | |
| 1651 | virtual bool ValidateCandidate(const TypoCorrection &candidate) { |
| 1652 | FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>(); |
| 1653 | return FD && FD->getDeclContext()->getRedeclContext()->Equals(Record); |
| 1654 | } |
| 1655 | |
| 1656 | private: |
| 1657 | RecordDecl *Record; |
| 1658 | }; |
| 1659 | |
| 1660 | } |
| 1661 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1662 | /// @brief Check the well-formedness of a C99 designated initializer. |
| 1663 | /// |
| 1664 | /// Determines whether the designated initializer @p DIE, which |
| 1665 | /// resides at the given @p Index within the initializer list @p |
| 1666 | /// IList, is well-formed for a current object of type @p DeclType |
| 1667 | /// (C99 6.7.8). The actual subobject that this designator refers to |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1668 | /// within the current subobject is returned in either |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1669 | /// @p NextField or @p NextElementIndex (whichever is appropriate). |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1670 | /// |
| 1671 | /// @param IList The initializer list in which this designated |
| 1672 | /// initializer occurs. |
| 1673 | /// |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1674 | /// @param DIE The designated initializer expression. |
| 1675 | /// |
| 1676 | /// @param DesigIdx The index of the current designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1677 | /// |
Dmitri Gribenko | 70517ca | 2012-08-23 17:58:28 +0000 | [diff] [blame] | 1678 | /// @param CurrentObjectType The type of the "current object" (C99 6.7.8p17), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1679 | /// into which the designation in @p DIE should refer. |
| 1680 | /// |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1681 | /// @param NextField If non-NULL and the first designator in @p DIE is |
| 1682 | /// a field, this will be set to the field declaration corresponding |
| 1683 | /// to the field named by the designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1684 | /// |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1685 | /// @param NextElementIndex If non-NULL and the first designator in @p |
| 1686 | /// DIE is an array designator or GNU array-range designator, this |
| 1687 | /// will be set to the last index initialized by this designator. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1688 | /// |
| 1689 | /// @param Index Index into @p IList where the designated initializer |
| 1690 | /// @p DIE occurs. |
| 1691 | /// |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1692 | /// @param StructuredList The initializer list expression that |
| 1693 | /// describes all of the subobject initializers in the order they'll |
| 1694 | /// actually be initialized. |
| 1695 | /// |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1696 | /// @returns true if there was an error, false otherwise. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1697 | bool |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1698 | InitListChecker::CheckDesignatedInitializer(const InitializedEntity &Entity, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1699 | InitListExpr *IList, |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1700 | DesignatedInitExpr *DIE, |
| 1701 | unsigned DesigIdx, |
| 1702 | QualType &CurrentObjectType, |
| 1703 | RecordDecl::field_iterator *NextField, |
| 1704 | llvm::APSInt *NextElementIndex, |
| 1705 | unsigned &Index, |
| 1706 | InitListExpr *StructuredList, |
| 1707 | unsigned &StructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1708 | bool FinishSubobjectInit, |
| 1709 | bool TopLevelObject) { |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1710 | if (DesigIdx == DIE->size()) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1711 | // Check the actual initialization for the designated object type. |
| 1712 | bool prevHadError = hadError; |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 1713 | |
| 1714 | // Temporarily remove the designator expression from the |
| 1715 | // initializer list that the child calls see, so that we don't try |
| 1716 | // to re-process the designator. |
| 1717 | unsigned OldIndex = Index; |
| 1718 | IList->setInit(OldIndex, DIE->getInit()); |
| 1719 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1720 | CheckSubElementType(Entity, IList, CurrentObjectType, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1721 | StructuredList, StructuredIndex); |
Douglas Gregor | 6fbdc6b | 2009-01-29 00:39:20 +0000 | [diff] [blame] | 1722 | |
| 1723 | // Restore the designated initializer expression in the syntactic |
| 1724 | // form of the initializer list. |
| 1725 | if (IList->getInit(OldIndex) != DIE->getInit()) |
| 1726 | DIE->setInit(IList->getInit(OldIndex)); |
| 1727 | IList->setInit(OldIndex, DIE); |
| 1728 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1729 | return hadError && !prevHadError; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1732 | DesignatedInitExpr::Designator *D = DIE->getDesignator(DesigIdx); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1733 | bool IsFirstDesignator = (DesigIdx == 0); |
| 1734 | if (!VerifyOnly) { |
| 1735 | assert((IsFirstDesignator || StructuredList) && |
| 1736 | "Need a non-designated initializer list to start from"); |
| 1737 | |
| 1738 | // Determine the structural initializer list that corresponds to the |
| 1739 | // current subobject. |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 1740 | StructuredList = IsFirstDesignator? SyntacticToSemantic.lookup(IList) |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1741 | : getStructuredSubobjectInit(IList, Index, CurrentObjectType, |
| 1742 | StructuredList, StructuredIndex, |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1743 | SourceRange(D->getLocStart(), |
| 1744 | DIE->getLocEnd())); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1745 | assert(StructuredList && "Expected a structured initializer list"); |
| 1746 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1747 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1748 | if (D->isFieldDesignator()) { |
| 1749 | // C99 6.7.8p7: |
| 1750 | // |
| 1751 | // If a designator has the form |
| 1752 | // |
| 1753 | // . identifier |
| 1754 | // |
| 1755 | // then the current object (defined below) shall have |
| 1756 | // structure or union type and the identifier shall be the |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1757 | // name of a member of that type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1758 | const RecordType *RT = CurrentObjectType->getAs<RecordType>(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1759 | if (!RT) { |
| 1760 | SourceLocation Loc = D->getDotLoc(); |
| 1761 | if (Loc.isInvalid()) |
| 1762 | Loc = D->getFieldLoc(); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1763 | if (!VerifyOnly) |
| 1764 | SemaRef.Diag(Loc, diag::err_field_designator_non_aggr) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1765 | << SemaRef.getLangOpts().CPlusPlus << CurrentObjectType; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1766 | ++Index; |
| 1767 | return true; |
| 1768 | } |
| 1769 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1770 | // Note: we perform a linear search of the fields here, despite |
| 1771 | // the fact that we have a faster lookup method, because we always |
| 1772 | // need to compute the field's index. |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1773 | FieldDecl *KnownField = D->getField(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1774 | IdentifierInfo *FieldName = D->getFieldName(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1775 | unsigned FieldIndex = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1776 | RecordDecl::field_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1777 | Field = RT->getDecl()->field_begin(), |
| 1778 | FieldEnd = RT->getDecl()->field_end(); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1779 | for (; Field != FieldEnd; ++Field) { |
| 1780 | if (Field->isUnnamedBitfield()) |
| 1781 | continue; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1782 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1783 | // If we find a field representing an anonymous field, look in the |
| 1784 | // IndirectFieldDecl that follow for the designated initializer. |
| 1785 | if (!KnownField && Field->isAnonymousStructOrUnion()) { |
| 1786 | if (IndirectFieldDecl *IF = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1787 | FindIndirectFieldDesignator(*Field, FieldName)) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1788 | // In verify mode, don't modify the original. |
| 1789 | if (VerifyOnly) |
| 1790 | DIE = CloneDesignatedInitExpr(SemaRef, DIE); |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1791 | ExpandAnonymousFieldDesignator(SemaRef, DIE, DesigIdx, IF); |
| 1792 | D = DIE->getDesignator(DesigIdx); |
| 1793 | break; |
| 1794 | } |
| 1795 | } |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1796 | if (KnownField && KnownField == *Field) |
Douglas Gregor | 022d13d | 2010-10-08 20:44:28 +0000 | [diff] [blame] | 1797 | break; |
| 1798 | if (FieldName && FieldName == Field->getIdentifier()) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1799 | break; |
| 1800 | |
| 1801 | ++FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1802 | } |
| 1803 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1804 | if (Field == FieldEnd) { |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1805 | if (VerifyOnly) { |
| 1806 | ++Index; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1807 | return true; // No typo correction when just trying this out. |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1808 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1809 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1810 | // There was no normal field in the struct with the designated |
| 1811 | // name. Perform another lookup for this name, which may find |
| 1812 | // something that we can't designate (e.g., a member function), |
| 1813 | // may find nothing, or may find a member of an anonymous |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1814 | // struct/union. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1815 | DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName); |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1816 | FieldDecl *ReplacementField = 0; |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1817 | if (Lookup.empty()) { |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1818 | // Name lookup didn't find anything. Determine whether this |
| 1819 | // was a typo for another field name. |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1820 | FieldInitializerValidatorCCC Validator(RT->getDecl()); |
Richard Smith | 2d67097 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 1821 | if (TypoCorrection Corrected = SemaRef.CorrectTypo( |
| 1822 | DeclarationNameInfo(FieldName, D->getFieldLoc()), |
| 1823 | Sema::LookupMemberName, /*Scope=*/ 0, /*SS=*/ 0, Validator, |
| 1824 | RT->getDecl())) { |
| 1825 | SemaRef.diagnoseTypo( |
| 1826 | Corrected, |
| 1827 | SemaRef.PDiag(diag::err_field_designator_unknown_suggest) |
| 1828 | << FieldName << CurrentObjectType); |
Kaelyn Uhrain | 425d631 | 2012-01-12 19:27:05 +0000 | [diff] [blame] | 1829 | ReplacementField = Corrected.getCorrectionDeclAs<FieldDecl>(); |
Benjamin Kramer | a41ee49 | 2011-09-25 02:41:26 +0000 | [diff] [blame] | 1830 | hadError = true; |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1831 | } else { |
| 1832 | SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_unknown) |
| 1833 | << FieldName << CurrentObjectType; |
| 1834 | ++Index; |
| 1835 | return true; |
| 1836 | } |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1837 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1838 | |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1839 | if (!ReplacementField) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1840 | // Name lookup found something, but it wasn't a field. |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 1841 | SemaRef.Diag(D->getFieldLoc(), diag::err_field_designator_nonfield) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1842 | << FieldName; |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1843 | SemaRef.Diag(Lookup.front()->getLocation(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1844 | diag::note_field_designator_found); |
Eli Friedman | ba79fc2 | 2009-04-16 17:49:48 +0000 | [diff] [blame] | 1845 | ++Index; |
| 1846 | return true; |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 1847 | } |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1848 | |
Francois Pichet | a0e27f0 | 2010-12-22 03:46:10 +0000 | [diff] [blame] | 1849 | if (!KnownField) { |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1850 | // The replacement field comes from typo correction; find it |
| 1851 | // in the list of fields. |
| 1852 | FieldIndex = 0; |
| 1853 | Field = RT->getDecl()->field_begin(); |
| 1854 | for (; Field != FieldEnd; ++Field) { |
| 1855 | if (Field->isUnnamedBitfield()) |
| 1856 | continue; |
| 1857 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1858 | if (ReplacementField == *Field || |
Douglas Gregor | c171e3b | 2010-01-01 00:03:05 +0000 | [diff] [blame] | 1859 | Field->getIdentifier() == ReplacementField->getIdentifier()) |
| 1860 | break; |
| 1861 | |
| 1862 | ++FieldIndex; |
| 1863 | } |
| 1864 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1865 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1866 | |
| 1867 | // All of the fields of a union are located at the same place in |
| 1868 | // the initializer list. |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1869 | if (RT->getDecl()->isUnion()) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1870 | FieldIndex = 0; |
Matthew Curtis | 4e49952 | 2013-10-03 12:14:24 +0000 | [diff] [blame] | 1871 | if (!VerifyOnly) { |
| 1872 | FieldDecl *CurrentField = StructuredList->getInitializedFieldInUnion(); |
| 1873 | if (CurrentField && CurrentField != *Field) { |
| 1874 | assert(StructuredList->getNumInits() == 1 |
| 1875 | && "A union should never have more than one initializer!"); |
| 1876 | |
| 1877 | // we're about to throw away an initializer, emit warning |
| 1878 | SemaRef.Diag(D->getFieldLoc(), |
| 1879 | diag::warn_initializer_overrides) |
| 1880 | << D->getSourceRange(); |
| 1881 | Expr *ExistingInit = StructuredList->getInit(0); |
| 1882 | SemaRef.Diag(ExistingInit->getLocStart(), |
| 1883 | diag::note_previous_initializer) |
| 1884 | << /*FIXME:has side effects=*/0 |
| 1885 | << ExistingInit->getSourceRange(); |
| 1886 | |
| 1887 | // remove existing initializer |
| 1888 | StructuredList->resizeInits(SemaRef.Context, 0); |
| 1889 | StructuredList->setInitializedFieldInUnion(0); |
| 1890 | } |
| 1891 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1892 | StructuredList->setInitializedFieldInUnion(*Field); |
Matthew Curtis | 4e49952 | 2013-10-03 12:14:24 +0000 | [diff] [blame] | 1893 | } |
Douglas Gregor | 0bb7689 | 2009-01-29 16:53:55 +0000 | [diff] [blame] | 1894 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1895 | |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1896 | // Make sure we can use this declaration. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1897 | bool InvalidUse; |
| 1898 | if (VerifyOnly) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1899 | InvalidUse = !SemaRef.CanUseDecl(*Field); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1900 | else |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1901 | InvalidUse = SemaRef.DiagnoseUseOfDecl(*Field, D->getFieldLoc()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1902 | if (InvalidUse) { |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1903 | ++Index; |
| 1904 | return true; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1905 | } |
Douglas Gregor | 54001c1 | 2011-06-29 21:51:31 +0000 | [diff] [blame] | 1906 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1907 | if (!VerifyOnly) { |
| 1908 | // Update the designator with the field declaration. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1909 | D->setField(*Field); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1910 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1911 | // Make sure that our non-designated initializer list has space |
| 1912 | // for a subobject corresponding to this field. |
| 1913 | if (FieldIndex >= StructuredList->getNumInits()) |
| 1914 | StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1); |
| 1915 | } |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1916 | |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1917 | // This designator names a flexible array member. |
| 1918 | if (Field->getType()->isIncompleteArrayType()) { |
| 1919 | bool Invalid = false; |
Douglas Gregor | 7119971 | 2009-04-15 04:56:10 +0000 | [diff] [blame] | 1920 | if ((DesigIdx + 1) != DIE->size()) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1921 | // We can't designate an object within the flexible array |
| 1922 | // member (because GCC doesn't allow it). |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1923 | if (!VerifyOnly) { |
| 1924 | DesignatedInitExpr::Designator *NextD |
| 1925 | = DIE->getDesignator(DesigIdx + 1); |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1926 | SemaRef.Diag(NextD->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1927 | diag::err_designator_into_flexible_array_member) |
Erik Verbruggen | 65d7831 | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 1928 | << SourceRange(NextD->getLocStart(), |
| 1929 | DIE->getLocEnd()); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1930 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1931 | << *Field; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1932 | } |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1933 | Invalid = true; |
| 1934 | } |
| 1935 | |
Chris Lattner | 9046c22 | 2010-10-10 17:49:49 +0000 | [diff] [blame] | 1936 | if (!hadError && !isa<InitListExpr>(DIE->getInit()) && |
| 1937 | !isa<StringLiteral>(DIE->getInit())) { |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1938 | // The initializer is not an initializer list. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1939 | if (!VerifyOnly) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1940 | SemaRef.Diag(DIE->getInit()->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1941 | diag::err_flexible_array_init_needs_braces) |
| 1942 | << DIE->getInit()->getSourceRange(); |
| 1943 | SemaRef.Diag(Field->getLocation(), diag::note_flexible_array_member) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1944 | << *Field; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 1945 | } |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1946 | Invalid = true; |
| 1947 | } |
| 1948 | |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1949 | // Check GNU flexible array initializer. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1950 | if (!Invalid && CheckFlexibleArrayInit(Entity, DIE->getInit(), *Field, |
Eli Friedman | f40fd6b | 2011-08-23 22:24:57 +0000 | [diff] [blame] | 1951 | TopLevelObject)) |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1952 | Invalid = true; |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1953 | |
| 1954 | if (Invalid) { |
| 1955 | ++Index; |
| 1956 | return true; |
| 1957 | } |
| 1958 | |
| 1959 | // Initialize the array. |
| 1960 | bool prevHadError = hadError; |
| 1961 | unsigned newStructuredIndex = FieldIndex; |
| 1962 | unsigned OldIndex = Index; |
| 1963 | IList->setInit(Index, DIE->getInit()); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1964 | |
| 1965 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1966 | InitializedEntity::InitializeMember(*Field, &Entity); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1967 | CheckSubElementType(MemberEntity, IList, Field->getType(), Index, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1968 | StructuredList, newStructuredIndex); |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 1969 | |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1970 | IList->setInit(OldIndex, DIE); |
| 1971 | if (hadError && !prevHadError) { |
| 1972 | ++Field; |
| 1973 | ++FieldIndex; |
| 1974 | if (NextField) |
| 1975 | *NextField = Field; |
| 1976 | StructuredIndex = FieldIndex; |
| 1977 | return true; |
| 1978 | } |
| 1979 | } else { |
| 1980 | // Recurse to check later designated subobjects. |
David Blaikie | 262bc18 | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 1981 | QualType FieldType = Field->getType(); |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1982 | unsigned newStructuredIndex = FieldIndex; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1983 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1984 | InitializedEntity MemberEntity = |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1985 | InitializedEntity::InitializeMember(*Field, &Entity); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1986 | if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1, |
| 1987 | FieldType, 0, 0, Index, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 1988 | StructuredList, newStructuredIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 1989 | true, false)) |
| 1990 | return true; |
| 1991 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1992 | |
| 1993 | // Find the position of the next field to be initialized in this |
| 1994 | // subobject. |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1995 | ++Field; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 1996 | ++FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 1997 | |
| 1998 | // If this the first designator, our caller will continue checking |
| 1999 | // the rest of this struct/class/union subobject. |
| 2000 | if (IsFirstDesignator) { |
| 2001 | if (NextField) |
| 2002 | *NextField = Field; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2003 | StructuredIndex = FieldIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2004 | return false; |
| 2005 | } |
| 2006 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2007 | if (!FinishSubobjectInit) |
| 2008 | return false; |
| 2009 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 2010 | // We've already initialized something in the union; we're done. |
| 2011 | if (RT->getDecl()->isUnion()) |
| 2012 | return hadError; |
| 2013 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2014 | // Check the remaining fields within this class/struct/union subobject. |
| 2015 | bool prevHadError = hadError; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2016 | |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 2017 | CheckStructUnionTypes(Entity, IList, CurrentObjectType, Field, false, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2018 | StructuredList, FieldIndex); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2019 | return hadError && !prevHadError; |
| 2020 | } |
| 2021 | |
| 2022 | // C99 6.7.8p6: |
| 2023 | // |
| 2024 | // If a designator has the form |
| 2025 | // |
| 2026 | // [ constant-expression ] |
| 2027 | // |
| 2028 | // then the current object (defined below) shall have array |
| 2029 | // type and the expression shall be an integer constant |
| 2030 | // expression. If the array is of unknown size, any |
| 2031 | // nonnegative value is valid. |
| 2032 | // |
| 2033 | // Additionally, cope with the GNU extension that permits |
| 2034 | // designators of the form |
| 2035 | // |
| 2036 | // [ constant-expression ... constant-expression ] |
Chris Lattner | 0820254 | 2009-02-24 22:50:46 +0000 | [diff] [blame] | 2037 | const ArrayType *AT = SemaRef.Context.getAsArrayType(CurrentObjectType); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2038 | if (!AT) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2039 | if (!VerifyOnly) |
| 2040 | SemaRef.Diag(D->getLBracketLoc(), diag::err_array_designator_non_array) |
| 2041 | << CurrentObjectType; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2042 | ++Index; |
| 2043 | return true; |
| 2044 | } |
| 2045 | |
| 2046 | Expr *IndexExpr = 0; |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2047 | llvm::APSInt DesignatedStartIndex, DesignatedEndIndex; |
| 2048 | if (D->isArrayDesignator()) { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2049 | IndexExpr = DIE->getArrayIndex(*D); |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 2050 | DesignatedStartIndex = IndexExpr->EvaluateKnownConstInt(SemaRef.Context); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2051 | DesignatedEndIndex = DesignatedStartIndex; |
| 2052 | } else { |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2053 | assert(D->isArrayRangeDesignator() && "Need array-range designator"); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2054 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2055 | DesignatedStartIndex = |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 2056 | DIE->getArrayRangeStart(*D)->EvaluateKnownConstInt(SemaRef.Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2057 | DesignatedEndIndex = |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 2058 | DIE->getArrayRangeEnd(*D)->EvaluateKnownConstInt(SemaRef.Context); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2059 | IndexExpr = DIE->getArrayRangeEnd(*D); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2060 | |
Chris Lattner | e0fd832 | 2011-02-19 22:28:58 +0000 | [diff] [blame] | 2061 | // Codegen can't handle evaluating array range designators that have side |
| 2062 | // effects, because we replicate the AST value for each initialized element. |
| 2063 | // As such, set the sawArrayRangeDesignator() bit if we initialize multiple |
| 2064 | // elements with something that has a side effect, so codegen can emit an |
| 2065 | // "error unsupported" error instead of miscompiling the app. |
| 2066 | if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&& |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2067 | DIE->getInit()->HasSideEffects(SemaRef.Context) && !VerifyOnly) |
Douglas Gregor | a9c8780 | 2009-01-29 19:42:23 +0000 | [diff] [blame] | 2068 | FullyStructuredList->sawArrayRangeDesignator(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2069 | } |
| 2070 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2071 | if (isa<ConstantArrayType>(AT)) { |
| 2072 | llvm::APSInt MaxElements(cast<ConstantArrayType>(AT)->getSize(), false); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2073 | DesignatedStartIndex |
| 2074 | = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2075 | DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned()); |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2076 | DesignatedEndIndex |
| 2077 | = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2078 | DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned()); |
| 2079 | if (DesignatedEndIndex >= MaxElements) { |
Eli Friedman | a4e20e1 | 2011-09-26 18:53:43 +0000 | [diff] [blame] | 2080 | if (!VerifyOnly) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2081 | SemaRef.Diag(IndexExpr->getLocStart(), |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2082 | diag::err_array_designator_too_large) |
| 2083 | << DesignatedEndIndex.toString(10) << MaxElements.toString(10) |
| 2084 | << IndexExpr->getSourceRange(); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2085 | ++Index; |
| 2086 | return true; |
| 2087 | } |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2088 | } else { |
| 2089 | // Make sure the bit-widths and signedness match. |
| 2090 | if (DesignatedStartIndex.getBitWidth() > DesignatedEndIndex.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2091 | DesignatedEndIndex |
| 2092 | = DesignatedEndIndex.extend(DesignatedStartIndex.getBitWidth()); |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2093 | else if (DesignatedStartIndex.getBitWidth() < |
| 2094 | DesignatedEndIndex.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2095 | DesignatedStartIndex |
| 2096 | = DesignatedStartIndex.extend(DesignatedEndIndex.getBitWidth()); |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2097 | DesignatedStartIndex.setIsUnsigned(true); |
| 2098 | DesignatedEndIndex.setIsUnsigned(true); |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2099 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2100 | |
Eli Friedman | 188ddb1 | 2013-06-11 21:48:11 +0000 | [diff] [blame] | 2101 | if (!VerifyOnly && StructuredList->isStringLiteralInit()) { |
| 2102 | // We're modifying a string literal init; we have to decompose the string |
| 2103 | // so we can modify the individual characters. |
| 2104 | ASTContext &Context = SemaRef.Context; |
| 2105 | Expr *SubExpr = StructuredList->getInit(0)->IgnoreParens(); |
| 2106 | |
| 2107 | // Compute the character type |
| 2108 | QualType CharTy = AT->getElementType(); |
| 2109 | |
| 2110 | // Compute the type of the integer literals. |
| 2111 | QualType PromotedCharTy = CharTy; |
| 2112 | if (CharTy->isPromotableIntegerType()) |
| 2113 | PromotedCharTy = Context.getPromotedIntegerType(CharTy); |
| 2114 | unsigned PromotedCharTyWidth = Context.getTypeSize(PromotedCharTy); |
| 2115 | |
| 2116 | if (StringLiteral *SL = dyn_cast<StringLiteral>(SubExpr)) { |
| 2117 | // Get the length of the string. |
| 2118 | uint64_t StrLen = SL->getLength(); |
| 2119 | if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen)) |
| 2120 | StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue(); |
| 2121 | StructuredList->resizeInits(Context, StrLen); |
| 2122 | |
| 2123 | // Build a literal for each character in the string, and put them into |
| 2124 | // the init list. |
| 2125 | for (unsigned i = 0, e = StrLen; i != e; ++i) { |
| 2126 | llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i)); |
| 2127 | Expr *Init = new (Context) IntegerLiteral( |
Eli Friedman | 81359b0 | 2013-06-11 22:26:34 +0000 | [diff] [blame] | 2128 | Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc()); |
Eli Friedman | 188ddb1 | 2013-06-11 21:48:11 +0000 | [diff] [blame] | 2129 | if (CharTy != PromotedCharTy) |
| 2130 | Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast, |
| 2131 | Init, 0, VK_RValue); |
| 2132 | StructuredList->updateInit(Context, i, Init); |
| 2133 | } |
| 2134 | } else { |
| 2135 | ObjCEncodeExpr *E = cast<ObjCEncodeExpr>(SubExpr); |
| 2136 | std::string Str; |
| 2137 | Context.getObjCEncodingForType(E->getEncodedType(), Str); |
| 2138 | |
| 2139 | // Get the length of the string. |
| 2140 | uint64_t StrLen = Str.size(); |
| 2141 | if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen)) |
| 2142 | StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue(); |
| 2143 | StructuredList->resizeInits(Context, StrLen); |
| 2144 | |
| 2145 | // Build a literal for each character in the string, and put them into |
| 2146 | // the init list. |
| 2147 | for (unsigned i = 0, e = StrLen; i != e; ++i) { |
| 2148 | llvm::APInt CodeUnit(PromotedCharTyWidth, Str[i]); |
| 2149 | Expr *Init = new (Context) IntegerLiteral( |
Eli Friedman | 81359b0 | 2013-06-11 22:26:34 +0000 | [diff] [blame] | 2150 | Context, CodeUnit, PromotedCharTy, SubExpr->getExprLoc()); |
Eli Friedman | 188ddb1 | 2013-06-11 21:48:11 +0000 | [diff] [blame] | 2151 | if (CharTy != PromotedCharTy) |
| 2152 | Init = ImplicitCastExpr::Create(Context, CharTy, CK_IntegralCast, |
| 2153 | Init, 0, VK_RValue); |
| 2154 | StructuredList->updateInit(Context, i, Init); |
| 2155 | } |
| 2156 | } |
| 2157 | } |
| 2158 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2159 | // Make sure that our non-designated initializer list has space |
| 2160 | // for a subobject corresponding to this array element. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2161 | if (!VerifyOnly && |
| 2162 | DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2163 | StructuredList->resizeInits(SemaRef.Context, |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2164 | DesignatedEndIndex.getZExtValue() + 1); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2165 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2166 | // Repeatedly perform subobject initializations in the range |
| 2167 | // [DesignatedStartIndex, DesignatedEndIndex]. |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2168 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2169 | // Move to the next designator |
| 2170 | unsigned ElementIndex = DesignatedStartIndex.getZExtValue(); |
| 2171 | unsigned OldIndex = Index; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2172 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2173 | InitializedEntity ElementEntity = |
Anders Carlsson | 8ff9e86 | 2010-01-23 23:23:01 +0000 | [diff] [blame] | 2174 | InitializedEntity::InitializeElement(SemaRef.Context, 0, Entity); |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2175 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2176 | while (DesignatedStartIndex <= DesignatedEndIndex) { |
| 2177 | // Recurse to check later designated subobjects. |
| 2178 | QualType ElementType = AT->getElementType(); |
| 2179 | Index = OldIndex; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2180 | |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2181 | ElementEntity.setElementIndex(ElementIndex); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2182 | if (CheckDesignatedInitializer(ElementEntity, IList, DIE, DesigIdx + 1, |
| 2183 | ElementType, 0, 0, Index, |
Anders Carlsson | 9a8a70e | 2010-01-23 22:49:02 +0000 | [diff] [blame] | 2184 | StructuredList, ElementIndex, |
Douglas Gregor | eeb15d4 | 2009-02-04 22:46:25 +0000 | [diff] [blame] | 2185 | (DesignatedStartIndex == DesignatedEndIndex), |
| 2186 | false)) |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2187 | return true; |
| 2188 | |
| 2189 | // Move to the next index in the array that we'll be initializing. |
| 2190 | ++DesignatedStartIndex; |
| 2191 | ElementIndex = DesignatedStartIndex.getZExtValue(); |
| 2192 | } |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2193 | |
| 2194 | // If this the first designator, our caller will continue checking |
| 2195 | // the rest of this array subobject. |
| 2196 | if (IsFirstDesignator) { |
| 2197 | if (NextElementIndex) |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2198 | *NextElementIndex = DesignatedStartIndex; |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2199 | StructuredIndex = ElementIndex; |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2200 | return false; |
| 2201 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2202 | |
Douglas Gregor | 34e7946 | 2009-01-28 23:36:17 +0000 | [diff] [blame] | 2203 | if (!FinishSubobjectInit) |
| 2204 | return false; |
| 2205 | |
Douglas Gregor | 87f55cf | 2009-01-22 23:26:18 +0000 | [diff] [blame] | 2206 | // Check the remaining elements within this array subobject. |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2207 | bool prevHadError = hadError; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2208 | CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex, |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 2209 | /*SubobjectIsDesignatorContext=*/false, Index, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2210 | StructuredList, ElementIndex); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2211 | return hadError && !prevHadError; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2212 | } |
| 2213 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2214 | // Get the structured initializer list for a subobject of type |
| 2215 | // @p CurrentObjectType. |
| 2216 | InitListExpr * |
| 2217 | InitListChecker::getStructuredSubobjectInit(InitListExpr *IList, unsigned Index, |
| 2218 | QualType CurrentObjectType, |
| 2219 | InitListExpr *StructuredList, |
| 2220 | unsigned StructuredIndex, |
| 2221 | SourceRange InitRange) { |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 2222 | if (VerifyOnly) |
| 2223 | return 0; // No structured list in verification-only mode. |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2224 | Expr *ExistingInit = 0; |
| 2225 | if (!StructuredList) |
Benjamin Kramer | a789416 | 2012-02-23 14:48:40 +0000 | [diff] [blame] | 2226 | ExistingInit = SyntacticToSemantic.lookup(IList); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2227 | else if (StructuredIndex < StructuredList->getNumInits()) |
| 2228 | ExistingInit = StructuredList->getInit(StructuredIndex); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2229 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2230 | if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit)) |
| 2231 | return Result; |
| 2232 | |
| 2233 | if (ExistingInit) { |
| 2234 | // We are creating an initializer list that initializes the |
| 2235 | // subobjects of the current object, but there was already an |
| 2236 | // initialization that completely initialized the current |
| 2237 | // subobject, e.g., by a compound literal: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2238 | // |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2239 | // struct X { int a, b; }; |
| 2240 | // struct X xs[] = { [0] = (struct X) { 1, 2 }, [0].b = 3 }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2241 | // |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2242 | // Here, xs[0].a == 0 and xs[0].b == 3, since the second, |
| 2243 | // designated initializer re-initializes the whole |
| 2244 | // subobject [0], overwriting previous initializers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2245 | SemaRef.Diag(InitRange.getBegin(), |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 2246 | diag::warn_subobject_initializer_overrides) |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2247 | << InitRange; |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2248 | SemaRef.Diag(ExistingInit->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2249 | diag::note_previous_initializer) |
Douglas Gregor | 54f0728 | 2009-01-28 23:43:32 +0000 | [diff] [blame] | 2250 | << /*FIXME:has side effects=*/0 |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2251 | << ExistingInit->getSourceRange(); |
| 2252 | } |
| 2253 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2254 | InitListExpr *Result |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2255 | = new (SemaRef.Context) InitListExpr(SemaRef.Context, |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 2256 | InitRange.getBegin(), None, |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 2257 | InitRange.getEnd()); |
Douglas Gregor | ed8a93d | 2009-03-01 17:12:46 +0000 | [diff] [blame] | 2258 | |
Eli Friedman | 5c89c39 | 2012-02-23 02:25:10 +0000 | [diff] [blame] | 2259 | QualType ResultType = CurrentObjectType; |
| 2260 | if (!ResultType->isArrayType()) |
| 2261 | ResultType = ResultType.getNonLValueExprType(SemaRef.Context); |
| 2262 | Result->setType(ResultType); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2263 | |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2264 | // Pre-allocate storage for the structured initializer list. |
| 2265 | unsigned NumElements = 0; |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2266 | unsigned NumInits = 0; |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2267 | bool GotNumInits = false; |
| 2268 | if (!StructuredList) { |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2269 | NumInits = IList->getNumInits(); |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2270 | GotNumInits = true; |
| 2271 | } else if (Index < IList->getNumInits()) { |
| 2272 | if (InitListExpr *SubList = dyn_cast<InitListExpr>(IList->getInit(Index))) { |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2273 | NumInits = SubList->getNumInits(); |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2274 | GotNumInits = true; |
| 2275 | } |
Douglas Gregor | 0845773 | 2009-03-21 18:13:52 +0000 | [diff] [blame] | 2276 | } |
| 2277 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2278 | if (const ArrayType *AType |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2279 | = SemaRef.Context.getAsArrayType(CurrentObjectType)) { |
| 2280 | if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) { |
| 2281 | NumElements = CAType->getSize().getZExtValue(); |
| 2282 | // Simple heuristic so that we don't allocate a very large |
| 2283 | // initializer with many empty entries at the end. |
Argyrios Kyrtzidis | f8b1771 | 2011-04-28 18:53:55 +0000 | [diff] [blame] | 2284 | if (GotNumInits && NumElements > NumInits) |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2285 | NumElements = 0; |
| 2286 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2287 | } else if (const VectorType *VType = CurrentObjectType->getAs<VectorType>()) |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2288 | NumElements = VType->getNumElements(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2289 | else if (const RecordType *RType = CurrentObjectType->getAs<RecordType>()) { |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2290 | RecordDecl *RDecl = RType->getDecl(); |
| 2291 | if (RDecl->isUnion()) |
| 2292 | NumElements = 1; |
| 2293 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2294 | NumElements = std::distance(RDecl->field_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2295 | RDecl->field_end()); |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2296 | } |
| 2297 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2298 | Result->reserveInits(SemaRef.Context, NumElements); |
Douglas Gregor | fa21920 | 2009-03-20 23:58:33 +0000 | [diff] [blame] | 2299 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2300 | // Link this new initializer list into the structured initializer |
| 2301 | // lists. |
| 2302 | if (StructuredList) |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2303 | StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result); |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2304 | else { |
| 2305 | Result->setSyntacticForm(IList); |
| 2306 | SyntacticToSemantic[IList] = Result; |
| 2307 | } |
| 2308 | |
| 2309 | return Result; |
| 2310 | } |
| 2311 | |
| 2312 | /// Update the initializer at index @p StructuredIndex within the |
| 2313 | /// structured initializer list to the value @p expr. |
| 2314 | void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList, |
| 2315 | unsigned &StructuredIndex, |
| 2316 | Expr *expr) { |
| 2317 | // No structured initializer list to update |
| 2318 | if (!StructuredList) |
| 2319 | return; |
| 2320 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 2321 | if (Expr *PrevInit = StructuredList->updateInit(SemaRef.Context, |
| 2322 | StructuredIndex, expr)) { |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2323 | // This initializer overwrites a previous initializer. Warn. |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2324 | SemaRef.Diag(expr->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2325 | diag::warn_initializer_overrides) |
| 2326 | << expr->getSourceRange(); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2327 | SemaRef.Diag(PrevInit->getLocStart(), |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2328 | diag::note_previous_initializer) |
Douglas Gregor | 54f0728 | 2009-01-28 23:43:32 +0000 | [diff] [blame] | 2329 | << /*FIXME:has side effects=*/0 |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2330 | << PrevInit->getSourceRange(); |
| 2331 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2332 | |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2333 | ++StructuredIndex; |
| 2334 | } |
| 2335 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2336 | /// Check that the given Index expression is a valid array designator |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2337 | /// value. This is essentially just a wrapper around |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2338 | /// VerifyIntegerConstantExpression that also checks for negative values |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2339 | /// and produces a reasonable diagnostic if there is a |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2340 | /// failure. Returns the index expression, possibly with an implicit cast |
| 2341 | /// added, on success. If everything went okay, Value will receive the |
| 2342 | /// value of the constant expression. |
| 2343 | static ExprResult |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2344 | CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 2345 | SourceLocation Loc = Index->getLocStart(); |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2346 | |
| 2347 | // Make sure this is an integer constant expression. |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2348 | ExprResult Result = S.VerifyIntegerConstantExpression(Index, &Value); |
| 2349 | if (Result.isInvalid()) |
| 2350 | return Result; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2351 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 2352 | if (Value.isSigned() && Value.isNegative()) |
| 2353 | return S.Diag(Loc, diag::err_array_designator_negative) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2354 | << Value.toString(10) << Index->getSourceRange(); |
| 2355 | |
Douglas Gregor | 53d3d8e | 2009-01-23 21:04:18 +0000 | [diff] [blame] | 2356 | Value.setIsUnsigned(true); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2357 | return Result; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2358 | } |
| 2359 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2360 | ExprResult Sema::ActOnDesignatedInitializer(Designation &Desig, |
Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 2361 | SourceLocation Loc, |
| 2362 | bool GNUSyntax, |
| 2363 | ExprResult Init) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2364 | typedef DesignatedInitExpr::Designator ASTDesignator; |
| 2365 | |
| 2366 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2367 | SmallVector<ASTDesignator, 32> Designators; |
| 2368 | SmallVector<Expr *, 32> InitExpressions; |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2369 | |
| 2370 | // Build designators and check array designator expressions. |
| 2371 | for (unsigned Idx = 0; Idx < Desig.getNumDesignators(); ++Idx) { |
| 2372 | const Designator &D = Desig.getDesignator(Idx); |
| 2373 | switch (D.getKind()) { |
| 2374 | case Designator::FieldDesignator: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2375 | Designators.push_back(ASTDesignator(D.getField(), D.getDotLoc(), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2376 | D.getFieldLoc())); |
| 2377 | break; |
| 2378 | |
| 2379 | case Designator::ArrayDesignator: { |
| 2380 | Expr *Index = static_cast<Expr *>(D.getArrayIndex()); |
| 2381 | llvm::APSInt IndexValue; |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2382 | if (!Index->isTypeDependent() && !Index->isValueDependent()) |
| 2383 | Index = CheckArrayDesignatorExpr(*this, Index, IndexValue).take(); |
| 2384 | if (!Index) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2385 | Invalid = true; |
| 2386 | else { |
| 2387 | Designators.push_back(ASTDesignator(InitExpressions.size(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2388 | D.getLBracketLoc(), |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2389 | D.getRBracketLoc())); |
| 2390 | InitExpressions.push_back(Index); |
| 2391 | } |
| 2392 | break; |
| 2393 | } |
| 2394 | |
| 2395 | case Designator::ArrayRangeDesignator: { |
| 2396 | Expr *StartIndex = static_cast<Expr *>(D.getArrayRangeStart()); |
| 2397 | Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd()); |
| 2398 | llvm::APSInt StartValue; |
| 2399 | llvm::APSInt EndValue; |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2400 | bool StartDependent = StartIndex->isTypeDependent() || |
| 2401 | StartIndex->isValueDependent(); |
| 2402 | bool EndDependent = EndIndex->isTypeDependent() || |
| 2403 | EndIndex->isValueDependent(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 2404 | if (!StartDependent) |
| 2405 | StartIndex = |
| 2406 | CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take(); |
| 2407 | if (!EndDependent) |
| 2408 | EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).take(); |
| 2409 | |
| 2410 | if (!StartIndex || !EndIndex) |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2411 | Invalid = true; |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2412 | else { |
| 2413 | // Make sure we're comparing values with the same bit width. |
Douglas Gregor | 9ea6276 | 2009-05-21 23:17:49 +0000 | [diff] [blame] | 2414 | if (StartDependent || EndDependent) { |
| 2415 | // Nothing to compute. |
| 2416 | } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2417 | EndValue = EndValue.extend(StartValue.getBitWidth()); |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2418 | else if (StartValue.getBitWidth() < EndValue.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2419 | StartValue = StartValue.extend(EndValue.getBitWidth()); |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2420 | |
Douglas Gregor | c4bb7bf | 2009-05-21 23:30:39 +0000 | [diff] [blame] | 2421 | if (!StartDependent && !EndDependent && EndValue < StartValue) { |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2422 | Diag(D.getEllipsisLoc(), diag::err_array_designator_empty_range) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2423 | << StartValue.toString(10) << EndValue.toString(10) |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2424 | << StartIndex->getSourceRange() << EndIndex->getSourceRange(); |
| 2425 | Invalid = true; |
| 2426 | } else { |
| 2427 | Designators.push_back(ASTDesignator(InitExpressions.size(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2428 | D.getLBracketLoc(), |
Douglas Gregor | d6f584f | 2009-01-23 22:22:29 +0000 | [diff] [blame] | 2429 | D.getEllipsisLoc(), |
| 2430 | D.getRBracketLoc())); |
| 2431 | InitExpressions.push_back(StartIndex); |
| 2432 | InitExpressions.push_back(EndIndex); |
| 2433 | } |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2434 | } |
| 2435 | break; |
| 2436 | } |
| 2437 | } |
| 2438 | } |
| 2439 | |
| 2440 | if (Invalid || Init.isInvalid()) |
| 2441 | return ExprError(); |
| 2442 | |
| 2443 | // Clear out the expressions within the designation. |
| 2444 | Desig.ClearExprs(*this); |
| 2445 | |
| 2446 | DesignatedInitExpr *DIE |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 2447 | = DesignatedInitExpr::Create(Context, |
| 2448 | Designators.data(), Designators.size(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 2449 | InitExpressions, Loc, GNUSyntax, |
| 2450 | Init.takeAs<Expr>()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2451 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2452 | if (!getLangOpts().C99) |
Douglas Gregor | 2d75bbd | 2011-01-16 16:13:16 +0000 | [diff] [blame] | 2453 | Diag(DIE->getLocStart(), diag::ext_designated_init) |
| 2454 | << DIE->getSourceRange(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2455 | |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2456 | return Owned(DIE); |
| 2457 | } |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 2458 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2459 | //===----------------------------------------------------------------------===// |
| 2460 | // Initialization entity |
| 2461 | //===----------------------------------------------------------------------===// |
| 2462 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2463 | InitializedEntity::InitializedEntity(ASTContext &Context, unsigned Index, |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 2464 | const InitializedEntity &Parent) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2465 | : Parent(&Parent), Index(Index) |
Douglas Gregor | cb57fb9 | 2009-12-16 06:35:08 +0000 | [diff] [blame] | 2466 | { |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2467 | if (const ArrayType *AT = Context.getAsArrayType(Parent.getType())) { |
| 2468 | Kind = EK_ArrayElement; |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 2469 | Type = AT->getElementType(); |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2470 | } else if (const VectorType *VT = Parent.getType()->getAs<VectorType>()) { |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2471 | Kind = EK_VectorElement; |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2472 | Type = VT->getElementType(); |
| 2473 | } else { |
| 2474 | const ComplexType *CT = Parent.getType()->getAs<ComplexType>(); |
| 2475 | assert(CT && "Unexpected type"); |
| 2476 | Kind = EK_ComplexElement; |
| 2477 | Type = CT->getElementType(); |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2478 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2479 | } |
| 2480 | |
Benjamin Kramer | 4c7736e | 2013-07-24 15:28:33 +0000 | [diff] [blame] | 2481 | InitializedEntity |
| 2482 | InitializedEntity::InitializeBase(ASTContext &Context, |
| 2483 | const CXXBaseSpecifier *Base, |
| 2484 | bool IsInheritedVirtualBase) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2485 | InitializedEntity Result; |
| 2486 | Result.Kind = EK_Base; |
Richard Smith | a4bb99c | 2013-06-12 21:51:50 +0000 | [diff] [blame] | 2487 | Result.Parent = 0; |
Anders Carlsson | 711f34a | 2010-04-21 19:52:01 +0000 | [diff] [blame] | 2488 | Result.Base = reinterpret_cast<uintptr_t>(Base); |
| 2489 | if (IsInheritedVirtualBase) |
| 2490 | Result.Base |= 0x01; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2491 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 2492 | Result.Type = Base->getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2493 | return Result; |
| 2494 | } |
| 2495 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2496 | DeclarationName InitializedEntity::getName() const { |
| 2497 | switch (getKind()) { |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 2498 | case EK_Parameter: |
| 2499 | case EK_Parameter_CF_Audited: { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2500 | ParmVarDecl *D = reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1); |
| 2501 | return (D ? D->getDeclName() : DeclarationName()); |
| 2502 | } |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 2503 | |
| 2504 | case EK_Variable: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2505 | case EK_Member: |
| 2506 | return VariableOrMember->getDeclName(); |
| 2507 | |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2508 | case EK_LambdaCapture: |
Bill Wendling | 2434dcf | 2013-12-05 05:25:04 +0000 | [diff] [blame^] | 2509 | return DeclarationName(Capture.VarID); |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2510 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2511 | case EK_Result: |
| 2512 | case EK_Exception: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2513 | case EK_New: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2514 | case EK_Temporary: |
| 2515 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2516 | case EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2517 | case EK_ArrayElement: |
| 2518 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2519 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2520 | case EK_BlockElement: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2521 | case EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 2522 | case EK_RelatedResult: |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2523 | return DeclarationName(); |
| 2524 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2525 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2526 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 2527 | } |
| 2528 | |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2529 | DeclaratorDecl *InitializedEntity::getDecl() const { |
| 2530 | switch (getKind()) { |
| 2531 | case EK_Variable: |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2532 | case EK_Member: |
| 2533 | return VariableOrMember; |
| 2534 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2535 | case EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 2536 | case EK_Parameter_CF_Audited: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2537 | return reinterpret_cast<ParmVarDecl*>(Parameter & ~0x1); |
| 2538 | |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2539 | case EK_Result: |
| 2540 | case EK_Exception: |
| 2541 | case EK_New: |
| 2542 | case EK_Temporary: |
| 2543 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2544 | case EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 2545 | case EK_ArrayElement: |
| 2546 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2547 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2548 | case EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2549 | case EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2550 | case EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 2551 | case EK_RelatedResult: |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2552 | return 0; |
| 2553 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2554 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2555 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 2556 | } |
| 2557 | |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2558 | bool InitializedEntity::allowsNRVO() const { |
| 2559 | switch (getKind()) { |
| 2560 | case EK_Result: |
| 2561 | case EK_Exception: |
| 2562 | return LocAndNRVO.NRVO; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2563 | |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2564 | case EK_Variable: |
| 2565 | case EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 2566 | case EK_Parameter_CF_Audited: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2567 | case EK_Member: |
| 2568 | case EK_New: |
| 2569 | case EK_Temporary: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 2570 | case EK_CompoundLiteralInit: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2571 | case EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 2572 | case EK_Delegating: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2573 | case EK_ArrayElement: |
| 2574 | case EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 2575 | case EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 2576 | case EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 2577 | case EK_LambdaCapture: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 2578 | case EK_RelatedResult: |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 2579 | break; |
| 2580 | } |
| 2581 | |
| 2582 | return false; |
| 2583 | } |
| 2584 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2585 | unsigned InitializedEntity::dumpImpl(raw_ostream &OS) const { |
Richard Smith | a4bb99c | 2013-06-12 21:51:50 +0000 | [diff] [blame] | 2586 | assert(getParent() != this); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2587 | unsigned Depth = getParent() ? getParent()->dumpImpl(OS) : 0; |
| 2588 | for (unsigned I = 0; I != Depth; ++I) |
| 2589 | OS << "`-"; |
| 2590 | |
| 2591 | switch (getKind()) { |
| 2592 | case EK_Variable: OS << "Variable"; break; |
| 2593 | case EK_Parameter: OS << "Parameter"; break; |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 2594 | case EK_Parameter_CF_Audited: OS << "CF audited function Parameter"; |
| 2595 | break; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2596 | case EK_Result: OS << "Result"; break; |
| 2597 | case EK_Exception: OS << "Exception"; break; |
| 2598 | case EK_Member: OS << "Member"; break; |
| 2599 | case EK_New: OS << "New"; break; |
| 2600 | case EK_Temporary: OS << "Temporary"; break; |
| 2601 | case EK_CompoundLiteralInit: OS << "CompoundLiteral";break; |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 2602 | case EK_RelatedResult: OS << "RelatedResult"; break; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2603 | case EK_Base: OS << "Base"; break; |
| 2604 | case EK_Delegating: OS << "Delegating"; break; |
| 2605 | case EK_ArrayElement: OS << "ArrayElement " << Index; break; |
| 2606 | case EK_VectorElement: OS << "VectorElement " << Index; break; |
| 2607 | case EK_ComplexElement: OS << "ComplexElement " << Index; break; |
| 2608 | case EK_BlockElement: OS << "Block"; break; |
| 2609 | case EK_LambdaCapture: |
| 2610 | OS << "LambdaCapture "; |
Bill Wendling | 2434dcf | 2013-12-05 05:25:04 +0000 | [diff] [blame^] | 2611 | OS << DeclarationName(Capture.VarID); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2612 | break; |
| 2613 | } |
| 2614 | |
| 2615 | if (Decl *D = getDecl()) { |
| 2616 | OS << " "; |
| 2617 | cast<NamedDecl>(D)->printQualifiedName(OS); |
| 2618 | } |
| 2619 | |
| 2620 | OS << " '" << getType().getAsString() << "'\n"; |
| 2621 | |
| 2622 | return Depth + 1; |
| 2623 | } |
| 2624 | |
| 2625 | void InitializedEntity::dump() const { |
| 2626 | dumpImpl(llvm::errs()); |
| 2627 | } |
| 2628 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2629 | //===----------------------------------------------------------------------===// |
| 2630 | // Initialization sequence |
| 2631 | //===----------------------------------------------------------------------===// |
| 2632 | |
| 2633 | void InitializationSequence::Step::Destroy() { |
| 2634 | switch (Kind) { |
| 2635 | case SK_ResolveAddressOfOverloadedFunction: |
| 2636 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2637 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2638 | case SK_CastDerivedToBaseLValue: |
| 2639 | case SK_BindReference: |
| 2640 | case SK_BindReferenceToTemporary: |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 2641 | case SK_ExtraneousCopyToTemporary: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2642 | case SK_UserConversion: |
| 2643 | case SK_QualificationConversionRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2644 | case SK_QualificationConversionXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2645 | case SK_QualificationConversionLValue: |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 2646 | case SK_LValueToRValue: |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 2647 | case SK_ListInitialization: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 2648 | case SK_ListConstructorCall: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 2649 | case SK_UnwrapInitList: |
| 2650 | case SK_RewrapInitList: |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2651 | case SK_ConstructorInitialization: |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 2652 | case SK_ZeroInitialization: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2653 | case SK_CAssignment: |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 2654 | case SK_StringInit: |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 2655 | case SK_ObjCObjectConversion: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2656 | case SK_ArrayInit: |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 2657 | case SK_ParenthesizedArrayInit: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2658 | case SK_PassByIndirectCopyRestore: |
| 2659 | case SK_PassByIndirectRestore: |
| 2660 | case SK_ProduceObjCObject: |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 2661 | case SK_StdInitializerList: |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 2662 | case SK_OCLSamplerInit: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 2663 | case SK_OCLZeroEvent: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2664 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2665 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2666 | case SK_ConversionSequence: |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 2667 | case SK_ConversionSequenceNoNarrowing: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2668 | delete ICS; |
| 2669 | } |
| 2670 | } |
| 2671 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2672 | bool InitializationSequence::isDirectReferenceBinding() const { |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 2673 | return !Steps.empty() && Steps.back().Kind == SK_BindReference; |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2674 | } |
| 2675 | |
| 2676 | bool InitializationSequence::isAmbiguous() const { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 2677 | if (!Failed()) |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2678 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2679 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2680 | switch (getFailureKind()) { |
| 2681 | case FK_TooManyInitsForReference: |
| 2682 | case FK_ArrayNeedsInitList: |
| 2683 | case FK_ArrayNeedsInitListOrStringLiteral: |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 2684 | case FK_ArrayNeedsInitListOrWideStringLiteral: |
| 2685 | case FK_NarrowStringIntoWideCharArray: |
| 2686 | case FK_WideStringIntoCharArray: |
| 2687 | case FK_IncompatWideStringIntoWideChar: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2688 | case FK_AddressOfOverloadFailed: // FIXME: Could do better |
| 2689 | case FK_NonConstLValueReferenceBindingToTemporary: |
| 2690 | case FK_NonConstLValueReferenceBindingToUnrelated: |
| 2691 | case FK_RValueReferenceBindingToLValue: |
| 2692 | case FK_ReferenceInitDropsQualifiers: |
| 2693 | case FK_ReferenceInitFailed: |
| 2694 | case FK_ConversionFailed: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2695 | case FK_ConversionFromPropertyFailed: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2696 | case FK_TooManyInitsForScalar: |
| 2697 | case FK_ReferenceBindingToInitList: |
| 2698 | case FK_InitListBadDestinationType: |
| 2699 | case FK_DefaultInitOfConst: |
Douglas Gregor | 72a43bb | 2010-05-20 22:12:02 +0000 | [diff] [blame] | 2700 | case FK_Incomplete: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2701 | case FK_ArrayTypeMismatch: |
| 2702 | case FK_NonConstantArrayInit: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 2703 | case FK_ListInitializationFailed: |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 2704 | case FK_VariableLengthArrayHasInitializer: |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2705 | case FK_PlaceholderType: |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 2706 | case FK_ExplicitConstructor: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2707 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2708 | |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2709 | case FK_ReferenceInitOverloadFailed: |
| 2710 | case FK_UserConversionOverloadFailed: |
| 2711 | case FK_ConstructorOverloadFailed: |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 2712 | case FK_ListConstructorOverloadFailed: |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2713 | return FailedOverloadResult == OR_Ambiguous; |
| 2714 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2715 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 2716 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | b70cf44 | 2010-03-26 20:14:36 +0000 | [diff] [blame] | 2717 | } |
| 2718 | |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 2719 | bool InitializationSequence::isConstructorInitialization() const { |
| 2720 | return !Steps.empty() && Steps.back().Kind == SK_ConstructorInitialization; |
| 2721 | } |
| 2722 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2723 | void |
| 2724 | InitializationSequence |
| 2725 | ::AddAddressOverloadResolutionStep(FunctionDecl *Function, |
| 2726 | DeclAccessPair Found, |
| 2727 | bool HadMultipleCandidates) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2728 | Step S; |
| 2729 | S.Kind = SK_ResolveAddressOfOverloadedFunction; |
| 2730 | S.Type = Function->getType(); |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2731 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2732 | S.Function.Function = Function; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2733 | S.Function.FoundDecl = Found; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2734 | Steps.push_back(S); |
| 2735 | } |
| 2736 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2737 | void InitializationSequence::AddDerivedToBaseCastStep(QualType BaseType, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2738 | ExprValueKind VK) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2739 | Step S; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2740 | switch (VK) { |
| 2741 | case VK_RValue: S.Kind = SK_CastDerivedToBaseRValue; break; |
| 2742 | case VK_XValue: S.Kind = SK_CastDerivedToBaseXValue; break; |
| 2743 | case VK_LValue: S.Kind = SK_CastDerivedToBaseLValue; break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2744 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2745 | S.Type = BaseType; |
| 2746 | Steps.push_back(S); |
| 2747 | } |
| 2748 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2749 | void InitializationSequence::AddReferenceBindingStep(QualType T, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2750 | bool BindingTemporary) { |
| 2751 | Step S; |
| 2752 | S.Kind = BindingTemporary? SK_BindReferenceToTemporary : SK_BindReference; |
| 2753 | S.Type = T; |
| 2754 | Steps.push_back(S); |
| 2755 | } |
| 2756 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 2757 | void InitializationSequence::AddExtraneousCopyToTemporary(QualType T) { |
| 2758 | Step S; |
| 2759 | S.Kind = SK_ExtraneousCopyToTemporary; |
| 2760 | S.Type = T; |
| 2761 | Steps.push_back(S); |
| 2762 | } |
| 2763 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2764 | void |
| 2765 | InitializationSequence::AddUserConversionStep(FunctionDecl *Function, |
| 2766 | DeclAccessPair FoundDecl, |
| 2767 | QualType T, |
| 2768 | bool HadMultipleCandidates) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2769 | Step S; |
| 2770 | S.Kind = SK_UserConversion; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 2771 | S.Type = T; |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2772 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2773 | S.Function.Function = Function; |
| 2774 | S.Function.FoundDecl = FoundDecl; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2775 | Steps.push_back(S); |
| 2776 | } |
| 2777 | |
| 2778 | void InitializationSequence::AddQualificationConversionStep(QualType Ty, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2779 | ExprValueKind VK) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2780 | Step S; |
John McCall | 38a4ffe | 2010-08-26 16:36:35 +0000 | [diff] [blame] | 2781 | S.Kind = SK_QualificationConversionRValue; // work around a gcc warning |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2782 | switch (VK) { |
| 2783 | case VK_RValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2784 | S.Kind = SK_QualificationConversionRValue; |
| 2785 | break; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2786 | case VK_XValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2787 | S.Kind = SK_QualificationConversionXValue; |
| 2788 | break; |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2789 | case VK_LValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2790 | S.Kind = SK_QualificationConversionLValue; |
| 2791 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2792 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2793 | S.Type = Ty; |
| 2794 | Steps.push_back(S); |
| 2795 | } |
| 2796 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 2797 | void InitializationSequence::AddLValueToRValueStep(QualType Ty) { |
| 2798 | assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers"); |
| 2799 | |
| 2800 | Step S; |
| 2801 | S.Kind = SK_LValueToRValue; |
| 2802 | S.Type = Ty; |
| 2803 | Steps.push_back(S); |
| 2804 | } |
| 2805 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2806 | void InitializationSequence::AddConversionSequenceStep( |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 2807 | const ImplicitConversionSequence &ICS, QualType T, |
| 2808 | bool TopLevelOfInitList) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2809 | Step S; |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 2810 | S.Kind = TopLevelOfInitList ? SK_ConversionSequenceNoNarrowing |
| 2811 | : SK_ConversionSequence; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2812 | S.Type = T; |
| 2813 | S.ICS = new ImplicitConversionSequence(ICS); |
| 2814 | Steps.push_back(S); |
| 2815 | } |
| 2816 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 2817 | void InitializationSequence::AddListInitializationStep(QualType T) { |
| 2818 | Step S; |
| 2819 | S.Kind = SK_ListInitialization; |
| 2820 | S.Type = T; |
| 2821 | Steps.push_back(S); |
| 2822 | } |
| 2823 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2824 | void |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2825 | InitializationSequence |
| 2826 | ::AddConstructorInitializationStep(CXXConstructorDecl *Constructor, |
| 2827 | AccessSpecifier Access, |
| 2828 | QualType T, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2829 | bool HadMultipleCandidates, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2830 | bool FromInitList, bool AsInitList) { |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2831 | Step S; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 2832 | S.Kind = FromInitList && !AsInitList ? SK_ListConstructorCall |
| 2833 | : SK_ConstructorInitialization; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2834 | S.Type = T; |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 2835 | S.Function.HadMultipleCandidates = HadMultipleCandidates; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 2836 | S.Function.Function = Constructor; |
| 2837 | S.Function.FoundDecl = DeclAccessPair::make(Constructor, Access); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 2838 | Steps.push_back(S); |
| 2839 | } |
| 2840 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 2841 | void InitializationSequence::AddZeroInitializationStep(QualType T) { |
| 2842 | Step S; |
| 2843 | S.Kind = SK_ZeroInitialization; |
| 2844 | S.Type = T; |
| 2845 | Steps.push_back(S); |
| 2846 | } |
| 2847 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 2848 | void InitializationSequence::AddCAssignmentStep(QualType T) { |
| 2849 | Step S; |
| 2850 | S.Kind = SK_CAssignment; |
| 2851 | S.Type = T; |
| 2852 | Steps.push_back(S); |
| 2853 | } |
| 2854 | |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 2855 | void InitializationSequence::AddStringInitStep(QualType T) { |
| 2856 | Step S; |
| 2857 | S.Kind = SK_StringInit; |
| 2858 | S.Type = T; |
| 2859 | Steps.push_back(S); |
| 2860 | } |
| 2861 | |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 2862 | void InitializationSequence::AddObjCObjectConversionStep(QualType T) { |
| 2863 | Step S; |
| 2864 | S.Kind = SK_ObjCObjectConversion; |
| 2865 | S.Type = T; |
| 2866 | Steps.push_back(S); |
| 2867 | } |
| 2868 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 2869 | void InitializationSequence::AddArrayInitStep(QualType T) { |
| 2870 | Step S; |
| 2871 | S.Kind = SK_ArrayInit; |
| 2872 | S.Type = T; |
| 2873 | Steps.push_back(S); |
| 2874 | } |
| 2875 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 2876 | void InitializationSequence::AddParenthesizedArrayInitStep(QualType T) { |
| 2877 | Step S; |
| 2878 | S.Kind = SK_ParenthesizedArrayInit; |
| 2879 | S.Type = T; |
| 2880 | Steps.push_back(S); |
| 2881 | } |
| 2882 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2883 | void InitializationSequence::AddPassByIndirectCopyRestoreStep(QualType type, |
| 2884 | bool shouldCopy) { |
| 2885 | Step s; |
| 2886 | s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore |
| 2887 | : SK_PassByIndirectRestore); |
| 2888 | s.Type = type; |
| 2889 | Steps.push_back(s); |
| 2890 | } |
| 2891 | |
| 2892 | void InitializationSequence::AddProduceObjCObjectStep(QualType T) { |
| 2893 | Step S; |
| 2894 | S.Kind = SK_ProduceObjCObject; |
| 2895 | S.Type = T; |
| 2896 | Steps.push_back(S); |
| 2897 | } |
| 2898 | |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 2899 | void InitializationSequence::AddStdInitializerListConstructionStep(QualType T) { |
| 2900 | Step S; |
| 2901 | S.Kind = SK_StdInitializerList; |
| 2902 | S.Type = T; |
| 2903 | Steps.push_back(S); |
| 2904 | } |
| 2905 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 2906 | void InitializationSequence::AddOCLSamplerInitStep(QualType T) { |
| 2907 | Step S; |
| 2908 | S.Kind = SK_OCLSamplerInit; |
| 2909 | S.Type = T; |
| 2910 | Steps.push_back(S); |
| 2911 | } |
| 2912 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 2913 | void InitializationSequence::AddOCLZeroEventStep(QualType T) { |
| 2914 | Step S; |
| 2915 | S.Kind = SK_OCLZeroEvent; |
| 2916 | S.Type = T; |
| 2917 | Steps.push_back(S); |
| 2918 | } |
| 2919 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 2920 | void InitializationSequence::RewrapReferenceInitList(QualType T, |
| 2921 | InitListExpr *Syntactic) { |
| 2922 | assert(Syntactic->getNumInits() == 1 && |
| 2923 | "Can only rewrap trivial init lists."); |
| 2924 | Step S; |
| 2925 | S.Kind = SK_UnwrapInitList; |
| 2926 | S.Type = Syntactic->getInit(0)->getType(); |
| 2927 | Steps.insert(Steps.begin(), S); |
| 2928 | |
| 2929 | S.Kind = SK_RewrapInitList; |
| 2930 | S.Type = T; |
| 2931 | S.WrappingSyntacticList = Syntactic; |
| 2932 | Steps.push_back(S); |
| 2933 | } |
| 2934 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2935 | void InitializationSequence::SetOverloadFailure(FailureKind Failure, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2936 | OverloadingResult Result) { |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 2937 | setSequenceKind(FailedSequence); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 2938 | this->Failure = Failure; |
| 2939 | this->FailedOverloadResult = Result; |
| 2940 | } |
| 2941 | |
| 2942 | //===----------------------------------------------------------------------===// |
| 2943 | // Attempt initialization |
| 2944 | //===----------------------------------------------------------------------===// |
| 2945 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2946 | static void MaybeProduceObjCObject(Sema &S, |
| 2947 | InitializationSequence &Sequence, |
| 2948 | const InitializedEntity &Entity) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2949 | if (!S.getLangOpts().ObjCAutoRefCount) return; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2950 | |
| 2951 | /// When initializing a parameter, produce the value if it's marked |
| 2952 | /// __attribute__((ns_consumed)). |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 2953 | if (Entity.isParameterKind()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2954 | if (!Entity.isParameterConsumed()) |
| 2955 | return; |
| 2956 | |
| 2957 | assert(Entity.getType()->isObjCRetainableType() && |
| 2958 | "consuming an object of unretainable type?"); |
| 2959 | Sequence.AddProduceObjCObjectStep(Entity.getType()); |
| 2960 | |
| 2961 | /// When initializing a return value, if the return type is a |
| 2962 | /// retainable type, then returns need to immediately retain the |
| 2963 | /// object. If an autorelease is required, it will be done at the |
| 2964 | /// last instant. |
| 2965 | } else if (Entity.getKind() == InitializedEntity::EK_Result) { |
| 2966 | if (!Entity.getType()->isObjCRetainableType()) |
| 2967 | return; |
| 2968 | |
| 2969 | Sequence.AddProduceObjCObjectStep(Entity.getType()); |
| 2970 | } |
| 2971 | } |
| 2972 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 2973 | static void TryListInitialization(Sema &S, |
| 2974 | const InitializedEntity &Entity, |
| 2975 | const InitializationKind &Kind, |
| 2976 | InitListExpr *InitList, |
| 2977 | InitializationSequence &Sequence); |
| 2978 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2979 | /// \brief When initializing from init list via constructor, handle |
| 2980 | /// initialization of an object of type std::initializer_list<T>. |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2981 | /// |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 2982 | /// \return true if we have handled initialization of an object of type |
| 2983 | /// std::initializer_list<T>, false otherwise. |
| 2984 | static bool TryInitializerListConstruction(Sema &S, |
| 2985 | InitListExpr *List, |
| 2986 | QualType DestType, |
| 2987 | InitializationSequence &Sequence) { |
| 2988 | QualType E; |
| 2989 | if (!S.isStdInitializerList(DestType, &E)) |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 2990 | return false; |
| 2991 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 2992 | if (S.RequireCompleteType(List->getExprLoc(), E, 0)) { |
| 2993 | Sequence.setIncompleteTypeFailure(E); |
| 2994 | return true; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 2995 | } |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 2996 | |
| 2997 | // Try initializing a temporary array from the init list. |
| 2998 | QualType ArrayType = S.Context.getConstantArrayType( |
| 2999 | E.withConst(), llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()), |
| 3000 | List->getNumInits()), |
| 3001 | clang::ArrayType::Normal, 0); |
| 3002 | InitializedEntity HiddenArray = |
| 3003 | InitializedEntity::InitializeTemporary(ArrayType); |
| 3004 | InitializationKind Kind = |
| 3005 | InitializationKind::CreateDirectList(List->getExprLoc()); |
| 3006 | TryListInitialization(S, HiddenArray, Kind, List, Sequence); |
| 3007 | if (Sequence) |
| 3008 | Sequence.AddStdInitializerListConstructionStep(DestType); |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3009 | return true; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3010 | } |
| 3011 | |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3012 | static OverloadingResult |
| 3013 | ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3014 | MultiExprArg Args, |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3015 | OverloadCandidateSet &CandidateSet, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3016 | ArrayRef<NamedDecl *> Ctors, |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3017 | OverloadCandidateSet::iterator &Best, |
| 3018 | bool CopyInitializing, bool AllowExplicit, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 3019 | bool OnlyListConstructors, bool InitListSyntax) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3020 | CandidateSet.clear(); |
| 3021 | |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3022 | for (ArrayRef<NamedDecl *>::iterator |
| 3023 | Con = Ctors.begin(), ConEnd = Ctors.end(); Con != ConEnd; ++Con) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3024 | NamedDecl *D = *Con; |
| 3025 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
| 3026 | bool SuppressUserConversions = false; |
| 3027 | |
| 3028 | // Find the constructor (which may be a template). |
| 3029 | CXXConstructorDecl *Constructor = 0; |
| 3030 | FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D); |
| 3031 | if (ConstructorTmpl) |
| 3032 | Constructor = cast<CXXConstructorDecl>( |
| 3033 | ConstructorTmpl->getTemplatedDecl()); |
| 3034 | else { |
| 3035 | Constructor = cast<CXXConstructorDecl>(D); |
| 3036 | |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3037 | // C++11 [over.best.ics]p4: |
| 3038 | // However, when considering the argument of a constructor or |
| 3039 | // user-defined conversion function that is a candidate: |
| 3040 | // -- by 13.3.1.3 when invoked for the copying/moving of a temporary |
| 3041 | // in the second step of a class copy-initialization, |
| 3042 | // -- by 13.3.1.7 when passing the initializer list as a single |
| 3043 | // argument or when the initializer list has exactly one elementand |
| 3044 | // a conversion to some class X or reference to (possibly |
| 3045 | // cv-qualified) X is considered for the first parameter of a |
| 3046 | // constructor of X, or |
| 3047 | // -- by 13.3.1.4, 13.3.1.5, or 13.3.1.6 in all cases, |
| 3048 | // only standard conversion sequences and ellipsis conversion sequences |
| 3049 | // are considered. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3050 | if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) && |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 3051 | Constructor->isCopyOrMoveConstructor()) |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3052 | SuppressUserConversions = true; |
| 3053 | } |
| 3054 | |
| 3055 | if (!Constructor->isInvalidDecl() && |
| 3056 | (AllowExplicit || !Constructor->isExplicit()) && |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3057 | (!OnlyListConstructors || S.isInitListConstructor(Constructor))) { |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3058 | if (ConstructorTmpl) |
| 3059 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3060 | /*ExplicitArgs*/ 0, Args, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 3061 | CandidateSet, SuppressUserConversions); |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3062 | else { |
| 3063 | // C++ [over.match.copy]p1: |
| 3064 | // - When initializing a temporary to be bound to the first parameter |
| 3065 | // of a constructor that takes a reference to possibly cv-qualified |
| 3066 | // T as its first argument, called with a single argument in the |
| 3067 | // context of direct-initialization, explicit conversion functions |
| 3068 | // are also considered. |
| 3069 | bool AllowExplicitConv = AllowExplicit && !CopyInitializing && |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3070 | Args.size() == 1 && |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3071 | Constructor->isCopyOrMoveConstructor(); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3072 | S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3073 | SuppressUserConversions, |
| 3074 | /*PartialOverloading=*/false, |
| 3075 | /*AllowExplicit=*/AllowExplicitConv); |
| 3076 | } |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3077 | } |
| 3078 | } |
| 3079 | |
| 3080 | // Perform overload resolution and return the result. |
| 3081 | return CandidateSet.BestViableFunction(S, DeclLoc, Best); |
| 3082 | } |
| 3083 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3084 | /// \brief Attempt initialization by constructor (C++ [dcl.init]), which |
| 3085 | /// enumerates the constructors of the initialized entity and performs overload |
| 3086 | /// resolution to select the best. |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 3087 | /// If InitListSyntax is true, this is list-initialization of a non-aggregate |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3088 | /// class type. |
| 3089 | static void TryConstructorInitialization(Sema &S, |
| 3090 | const InitializedEntity &Entity, |
| 3091 | const InitializationKind &Kind, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3092 | MultiExprArg Args, QualType DestType, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3093 | InitializationSequence &Sequence, |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 3094 | bool InitListSyntax = false) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3095 | assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) && |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 3096 | "InitListSyntax must come with a single initializer list argument."); |
| 3097 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3098 | // The type we're constructing needs to be complete. |
| 3099 | if (S.RequireCompleteType(Kind.getLocation(), DestType, 0)) { |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 3100 | Sequence.setIncompleteTypeFailure(DestType); |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3101 | return; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3102 | } |
| 3103 | |
| 3104 | const RecordType *DestRecordType = DestType->getAs<RecordType>(); |
| 3105 | assert(DestRecordType && "Constructor initialization requires record type"); |
| 3106 | CXXRecordDecl *DestRecordDecl |
| 3107 | = cast<CXXRecordDecl>(DestRecordType->getDecl()); |
| 3108 | |
Sebastian Redl | 96715b2 | 2012-02-04 21:27:39 +0000 | [diff] [blame] | 3109 | // Build the candidate set directly in the initialization sequence |
| 3110 | // structure, so that it will persist if we fail. |
| 3111 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 3112 | |
| 3113 | // Determine whether we are allowed to call explicit constructors or |
| 3114 | // explicit conversion operators. |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 3115 | bool AllowExplicit = Kind.AllowExplicit() || InitListSyntax; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3116 | bool CopyInitialization = Kind.getKind() == InitializationKind::IK_Copy; |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 3117 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3118 | // - Otherwise, if T is a class type, constructors are considered. The |
| 3119 | // applicable constructors are enumerated, and the best one is chosen |
| 3120 | // through overload resolution. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3121 | DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3122 | // The container holding the constructors can under certain conditions |
| 3123 | // be changed while iterating (e.g. because of deserialization). |
| 3124 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3125 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3126 | |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3127 | OverloadingResult Result = OR_No_Viable_Function; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3128 | OverloadCandidateSet::iterator Best; |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3129 | bool AsInitializerList = false; |
| 3130 | |
| 3131 | // C++11 [over.match.list]p1: |
| 3132 | // When objects of non-aggregate type T are list-initialized, overload |
| 3133 | // resolution selects the constructor in two phases: |
| 3134 | // - Initially, the candidate functions are the initializer-list |
| 3135 | // constructors of the class T and the argument list consists of the |
| 3136 | // initializer list as a single argument. |
| 3137 | if (InitListSyntax) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3138 | InitListExpr *ILE = cast<InitListExpr>(Args[0]); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3139 | AsInitializerList = true; |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3140 | |
| 3141 | // If the initializer list has no elements and T has a default constructor, |
| 3142 | // the first phase is omitted. |
Richard Smith | e5411b7 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 3143 | if (ILE->getNumInits() != 0 || !DestRecordDecl->hasDefaultConstructor()) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3144 | Result = ResolveConstructorOverload(S, Kind.getLocation(), Args, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3145 | CandidateSet, Ctors, Best, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3146 | CopyInitialization, AllowExplicit, |
| 3147 | /*OnlyListConstructor=*/true, |
| 3148 | InitListSyntax); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3149 | |
| 3150 | // Time to unwrap the init list. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3151 | Args = MultiExprArg(ILE->getInits(), ILE->getNumInits()); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3152 | } |
| 3153 | |
| 3154 | // C++11 [over.match.list]p1: |
| 3155 | // - If no viable initializer-list constructor is found, overload resolution |
| 3156 | // is performed again, where the candidate functions are all the |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3157 | // constructors of the class T and the argument list consists of the |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3158 | // elements of the initializer list. |
| 3159 | if (Result == OR_No_Viable_Function) { |
| 3160 | AsInitializerList = false; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3161 | Result = ResolveConstructorOverload(S, Kind.getLocation(), Args, |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3162 | CandidateSet, Ctors, Best, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3163 | CopyInitialization, AllowExplicit, |
Sebastian Redl | 51ad9cd | 2012-02-29 12:47:43 +0000 | [diff] [blame] | 3164 | /*OnlyListConstructors=*/false, |
| 3165 | InitListSyntax); |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3166 | } |
| 3167 | if (Result) { |
Sebastian Redl | 08ae369 | 2012-02-04 21:27:33 +0000 | [diff] [blame] | 3168 | Sequence.SetOverloadFailure(InitListSyntax ? |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 3169 | InitializationSequence::FK_ListConstructorOverloadFailed : |
| 3170 | InitializationSequence::FK_ConstructorOverloadFailed, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3171 | Result); |
| 3172 | return; |
| 3173 | } |
| 3174 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3175 | // C++11 [dcl.init]p6: |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3176 | // If a program calls for the default initialization of an object |
| 3177 | // of a const-qualified type T, T shall be a class type with a |
| 3178 | // user-provided default constructor. |
| 3179 | if (Kind.getKind() == InitializationKind::IK_Default && |
| 3180 | Entity.getType().isConstQualified() && |
Aaron Ballman | 5121781 | 2012-07-31 22:40:31 +0000 | [diff] [blame] | 3181 | !cast<CXXConstructorDecl>(Best->Function)->isUserProvided()) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3182 | Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst); |
| 3183 | return; |
| 3184 | } |
| 3185 | |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 3186 | // C++11 [over.match.list]p1: |
| 3187 | // In copy-list-initialization, if an explicit constructor is chosen, the |
| 3188 | // initializer is ill-formed. |
| 3189 | CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function); |
| 3190 | if (InitListSyntax && !Kind.AllowExplicit() && CtorDecl->isExplicit()) { |
| 3191 | Sequence.SetFailed(InitializationSequence::FK_ExplicitConstructor); |
| 3192 | return; |
| 3193 | } |
| 3194 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3195 | // Add the constructor initialization step. Any cv-qualification conversion is |
| 3196 | // subsumed by the initialization. |
| 3197 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3198 | Sequence.AddConstructorInitializationStep(CtorDecl, |
| 3199 | Best->FoundDecl.getAccess(), |
| 3200 | DestType, HadMultipleCandidates, |
Sebastian Redl | 6cd03db | 2012-02-04 21:27:47 +0000 | [diff] [blame] | 3201 | InitListSyntax, AsInitializerList); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 3202 | } |
| 3203 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3204 | static bool |
| 3205 | ResolveOverloadedFunctionForReferenceBinding(Sema &S, |
| 3206 | Expr *Initializer, |
| 3207 | QualType &SourceType, |
| 3208 | QualType &UnqualifiedSourceType, |
| 3209 | QualType UnqualifiedTargetType, |
| 3210 | InitializationSequence &Sequence) { |
| 3211 | if (S.Context.getCanonicalType(UnqualifiedSourceType) == |
| 3212 | S.Context.OverloadTy) { |
| 3213 | DeclAccessPair Found; |
| 3214 | bool HadMultipleCandidates = false; |
| 3215 | if (FunctionDecl *Fn |
| 3216 | = S.ResolveAddressOfOverloadedFunction(Initializer, |
| 3217 | UnqualifiedTargetType, |
| 3218 | false, Found, |
| 3219 | &HadMultipleCandidates)) { |
| 3220 | Sequence.AddAddressOverloadResolutionStep(Fn, Found, |
| 3221 | HadMultipleCandidates); |
| 3222 | SourceType = Fn->getType(); |
| 3223 | UnqualifiedSourceType = SourceType.getUnqualifiedType(); |
| 3224 | } else if (!UnqualifiedTargetType->isRecordType()) { |
| 3225 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
| 3226 | return true; |
| 3227 | } |
| 3228 | } |
| 3229 | return false; |
| 3230 | } |
| 3231 | |
| 3232 | static void TryReferenceInitializationCore(Sema &S, |
| 3233 | const InitializedEntity &Entity, |
| 3234 | const InitializationKind &Kind, |
| 3235 | Expr *Initializer, |
| 3236 | QualType cv1T1, QualType T1, |
| 3237 | Qualifiers T1Quals, |
| 3238 | QualType cv2T2, QualType T2, |
| 3239 | Qualifiers T2Quals, |
| 3240 | InitializationSequence &Sequence); |
| 3241 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3242 | static void TryValueInitialization(Sema &S, |
| 3243 | const InitializedEntity &Entity, |
| 3244 | const InitializationKind &Kind, |
| 3245 | InitializationSequence &Sequence, |
| 3246 | InitListExpr *InitList = 0); |
| 3247 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3248 | /// \brief Attempt list initialization of a reference. |
| 3249 | static void TryReferenceListInitialization(Sema &S, |
| 3250 | const InitializedEntity &Entity, |
| 3251 | const InitializationKind &Kind, |
| 3252 | InitListExpr *InitList, |
Richard Smith | b6e3808 | 2013-06-08 00:02:08 +0000 | [diff] [blame] | 3253 | InitializationSequence &Sequence) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3254 | // First, catch C++03 where this isn't possible. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3255 | if (!S.getLangOpts().CPlusPlus11) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3256 | Sequence.SetFailed(InitializationSequence::FK_ReferenceBindingToInitList); |
| 3257 | return; |
| 3258 | } |
| 3259 | |
| 3260 | QualType DestType = Entity.getType(); |
| 3261 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
| 3262 | Qualifiers T1Quals; |
| 3263 | QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals); |
| 3264 | |
| 3265 | // Reference initialization via an initializer list works thus: |
| 3266 | // If the initializer list consists of a single element that is |
| 3267 | // reference-related to the referenced type, bind directly to that element |
| 3268 | // (possibly creating temporaries). |
| 3269 | // Otherwise, initialize a temporary with the initializer list and |
| 3270 | // bind to that. |
| 3271 | if (InitList->getNumInits() == 1) { |
| 3272 | Expr *Initializer = InitList->getInit(0); |
| 3273 | QualType cv2T2 = Initializer->getType(); |
| 3274 | Qualifiers T2Quals; |
| 3275 | QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals); |
| 3276 | |
| 3277 | // If this fails, creating a temporary wouldn't work either. |
| 3278 | if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2, |
| 3279 | T1, Sequence)) |
| 3280 | return; |
| 3281 | |
| 3282 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 3283 | bool dummy1, dummy2, dummy3; |
| 3284 | Sema::ReferenceCompareResult RefRelationship |
| 3285 | = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, dummy1, |
| 3286 | dummy2, dummy3); |
| 3287 | if (RefRelationship >= Sema::Ref_Related) { |
| 3288 | // Try to bind the reference here. |
| 3289 | TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1, |
| 3290 | T1Quals, cv2T2, T2, T2Quals, Sequence); |
| 3291 | if (Sequence) |
| 3292 | Sequence.RewrapReferenceInitList(cv1T1, InitList); |
| 3293 | return; |
| 3294 | } |
Richard Smith | 02d65ee | 2013-01-15 07:58:29 +0000 | [diff] [blame] | 3295 | |
| 3296 | // Update the initializer if we've resolved an overloaded function. |
| 3297 | if (Sequence.step_begin() != Sequence.step_end()) |
| 3298 | Sequence.RewrapReferenceInitList(cv1T1, InitList); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3299 | } |
| 3300 | |
| 3301 | // Not reference-related. Create a temporary and bind to that. |
| 3302 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1); |
| 3303 | |
| 3304 | TryListInitialization(S, TempEntity, Kind, InitList, Sequence); |
| 3305 | if (Sequence) { |
| 3306 | if (DestType->isRValueReferenceType() || |
| 3307 | (T1Quals.hasConst() && !T1Quals.hasVolatile())) |
| 3308 | Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true); |
| 3309 | else |
| 3310 | Sequence.SetFailed( |
| 3311 | InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary); |
| 3312 | } |
| 3313 | } |
| 3314 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3315 | /// \brief Attempt list initialization (C++0x [dcl.init.list]) |
| 3316 | static void TryListInitialization(Sema &S, |
| 3317 | const InitializedEntity &Entity, |
| 3318 | const InitializationKind &Kind, |
| 3319 | InitListExpr *InitList, |
| 3320 | InitializationSequence &Sequence) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3321 | QualType DestType = Entity.getType(); |
| 3322 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3323 | // C++ doesn't allow scalar initialization with more than one argument. |
| 3324 | // But C99 complex numbers are scalars and it makes sense there. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3325 | if (S.getLangOpts().CPlusPlus && DestType->isScalarType() && |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3326 | !DestType->isAnyComplexType() && InitList->getNumInits() > 1) { |
| 3327 | Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForScalar); |
| 3328 | return; |
| 3329 | } |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3330 | if (DestType->isReferenceType()) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3331 | TryReferenceListInitialization(S, Entity, Kind, InitList, Sequence); |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3332 | return; |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3333 | } |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3334 | if (DestType->isRecordType()) { |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3335 | if (S.RequireCompleteType(InitList->getLocStart(), DestType, 0)) { |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 3336 | Sequence.setIncompleteTypeFailure(DestType); |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3337 | return; |
| 3338 | } |
| 3339 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3340 | // C++11 [dcl.init.list]p3: |
| 3341 | // - If T is an aggregate, aggregate initialization is performed. |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3342 | if (!DestType->isAggregateType()) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3343 | if (S.getLangOpts().CPlusPlus11) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3344 | // - Otherwise, if the initializer list has no elements and T is a |
| 3345 | // class type with a default constructor, the object is |
| 3346 | // value-initialized. |
| 3347 | if (InitList->getNumInits() == 0) { |
| 3348 | CXXRecordDecl *RD = DestType->getAsCXXRecordDecl(); |
Richard Smith | e5411b7 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 3349 | if (RD->hasDefaultConstructor()) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3350 | TryValueInitialization(S, Entity, Kind, Sequence, InitList); |
| 3351 | return; |
| 3352 | } |
| 3353 | } |
| 3354 | |
| 3355 | // - Otherwise, if T is a specialization of std::initializer_list<E>, |
| 3356 | // an initializer_list object constructed [...] |
| 3357 | if (TryInitializerListConstruction(S, InitList, DestType, Sequence)) |
| 3358 | return; |
| 3359 | |
| 3360 | // - Otherwise, if T is a class type, constructors are considered. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3361 | Expr *InitListAsExpr = InitList; |
| 3362 | TryConstructorInitialization(S, Entity, Kind, InitListAsExpr, DestType, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3363 | Sequence, /*InitListSyntax*/true); |
Sebastian Redl | d2231c9 | 2012-02-19 12:27:43 +0000 | [diff] [blame] | 3364 | } else |
| 3365 | Sequence.SetFailed( |
| 3366 | InitializationSequence::FK_InitListBadDestinationType); |
| 3367 | return; |
| 3368 | } |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3369 | } |
Richard Smith | b390e49 | 2013-09-21 21:55:46 +0000 | [diff] [blame] | 3370 | if (S.getLangOpts().CPlusPlus && !DestType->isAggregateType() && |
| 3371 | InitList->getNumInits() == 1 && |
| 3372 | InitList->getInit(0)->getType()->isRecordType()) { |
| 3373 | // - Otherwise, if the initializer list has a single element of type E |
| 3374 | // [...references are handled above...], the object or reference is |
| 3375 | // initialized from that element; if a narrowing conversion is required |
| 3376 | // to convert the element to T, the program is ill-formed. |
| 3377 | // |
| 3378 | // Per core-24034, this is direct-initialization if we were performing |
| 3379 | // direct-list-initialization and copy-initialization otherwise. |
| 3380 | // We can't use InitListChecker for this, because it always performs |
| 3381 | // copy-initialization. This only matters if we might use an 'explicit' |
| 3382 | // conversion operator, so we only need to handle the cases where the source |
| 3383 | // is of record type. |
| 3384 | InitializationKind SubKind = |
| 3385 | Kind.getKind() == InitializationKind::IK_DirectList |
| 3386 | ? InitializationKind::CreateDirect(Kind.getLocation(), |
| 3387 | InitList->getLBraceLoc(), |
| 3388 | InitList->getRBraceLoc()) |
| 3389 | : Kind; |
| 3390 | Expr *SubInit[1] = { InitList->getInit(0) }; |
| 3391 | Sequence.InitializeFrom(S, Entity, SubKind, SubInit, |
| 3392 | /*TopLevelOfInitList*/true); |
| 3393 | if (Sequence) |
| 3394 | Sequence.RewrapReferenceInitList(Entity.getType(), InitList); |
| 3395 | return; |
| 3396 | } |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3397 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3398 | InitListChecker CheckInitList(S, Entity, InitList, |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 3399 | DestType, /*VerifyOnly=*/true); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 3400 | if (CheckInitList.HadError()) { |
| 3401 | Sequence.SetFailed(InitializationSequence::FK_ListInitializationFailed); |
| 3402 | return; |
| 3403 | } |
| 3404 | |
| 3405 | // Add the list initialization step with the built init list. |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 3406 | Sequence.AddListInitializationStep(DestType); |
| 3407 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3408 | |
| 3409 | /// \brief Try a reference initialization that involves calling a conversion |
| 3410 | /// function. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3411 | static OverloadingResult TryRefInitWithConversionFunction(Sema &S, |
| 3412 | const InitializedEntity &Entity, |
| 3413 | const InitializationKind &Kind, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3414 | Expr *Initializer, |
| 3415 | bool AllowRValues, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3416 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3417 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3418 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
| 3419 | QualType T1 = cv1T1.getUnqualifiedType(); |
| 3420 | QualType cv2T2 = Initializer->getType(); |
| 3421 | QualType T2 = cv2T2.getUnqualifiedType(); |
| 3422 | |
| 3423 | bool DerivedToBase; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3424 | bool ObjCConversion; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3425 | bool ObjCLifetimeConversion; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3426 | assert(!S.CompareReferenceRelationship(Initializer->getLocStart(), |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3427 | T1, T2, DerivedToBase, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3428 | ObjCConversion, |
| 3429 | ObjCLifetimeConversion) && |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3430 | "Must have incompatible references when binding via conversion"); |
Chandler Carruth | 60cfcec | 2009-12-13 01:37:04 +0000 | [diff] [blame] | 3431 | (void)DerivedToBase; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3432 | (void)ObjCConversion; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3433 | (void)ObjCLifetimeConversion; |
| 3434 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3435 | // Build the candidate set directly in the initialization sequence |
| 3436 | // structure, so that it will persist if we fail. |
| 3437 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 3438 | CandidateSet.clear(); |
| 3439 | |
| 3440 | // Determine whether we are allowed to call explicit constructors or |
| 3441 | // explicit conversion operators. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 3442 | bool AllowExplicit = Kind.AllowExplicit(); |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3443 | bool AllowExplicitConvs = Kind.allowExplicitConversionFunctionsInRefBinding(); |
| 3444 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3445 | const RecordType *T1RecordType = 0; |
Douglas Gregor | 6b6d01f | 2010-05-07 19:42:26 +0000 | [diff] [blame] | 3446 | if (AllowRValues && (T1RecordType = T1->getAs<RecordType>()) && |
| 3447 | !S.RequireCompleteType(Kind.getLocation(), T1, 0)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3448 | // The type we're converting to is a class type. Enumerate its constructors |
| 3449 | // to see if there is a suitable conversion. |
| 3450 | CXXRecordDecl *T1RecordDecl = cast<CXXRecordDecl>(T1RecordType->getDecl()); |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3451 | |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3452 | DeclContext::lookup_result R = S.LookupConstructors(T1RecordDecl); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3453 | // The container holding the constructors can under certain conditions |
| 3454 | // be changed while iterating (e.g. because of deserialization). |
| 3455 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3456 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 3457 | for (SmallVectorImpl<NamedDecl *>::iterator |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 3458 | CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) { |
| 3459 | NamedDecl *D = *CI; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3460 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
| 3461 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3462 | // Find the constructor (which may be a template). |
| 3463 | CXXConstructorDecl *Constructor = 0; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3464 | FunctionTemplateDecl *ConstructorTmpl = dyn_cast<FunctionTemplateDecl>(D); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3465 | if (ConstructorTmpl) |
| 3466 | Constructor = cast<CXXConstructorDecl>( |
| 3467 | ConstructorTmpl->getTemplatedDecl()); |
| 3468 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3469 | Constructor = cast<CXXConstructorDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3470 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3471 | if (!Constructor->isInvalidDecl() && |
| 3472 | Constructor->isConvertingConstructor(AllowExplicit)) { |
| 3473 | if (ConstructorTmpl) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3474 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3475 | /*ExplicitArgs*/ 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3476 | Initializer, CandidateSet, |
Argyrios Kyrtzidis | b72db89 | 2010-10-05 03:05:30 +0000 | [diff] [blame] | 3477 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3478 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3479 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3480 | Initializer, CandidateSet, |
Argyrios Kyrtzidis | b72db89 | 2010-10-05 03:05:30 +0000 | [diff] [blame] | 3481 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3482 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3483 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3484 | } |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3485 | if (T1RecordType && T1RecordType->getDecl()->isInvalidDecl()) |
| 3486 | return OR_No_Viable_Function; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3487 | |
Douglas Gregor | 6b6d01f | 2010-05-07 19:42:26 +0000 | [diff] [blame] | 3488 | const RecordType *T2RecordType = 0; |
| 3489 | if ((T2RecordType = T2->getAs<RecordType>()) && |
| 3490 | !S.RequireCompleteType(Kind.getLocation(), T2, 0)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3491 | // The type we're converting from is a class type, enumerate its conversion |
| 3492 | // functions. |
| 3493 | CXXRecordDecl *T2RecordDecl = cast<CXXRecordDecl>(T2RecordType->getDecl()); |
| 3494 | |
Argyrios Kyrtzidis | 9d29543 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 3495 | std::pair<CXXRecordDecl::conversion_iterator, |
| 3496 | CXXRecordDecl::conversion_iterator> |
| 3497 | Conversions = T2RecordDecl->getVisibleConversionFunctions(); |
| 3498 | for (CXXRecordDecl::conversion_iterator |
| 3499 | I = Conversions.first, E = Conversions.second; I != E; ++I) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3500 | NamedDecl *D = *I; |
| 3501 | CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext()); |
| 3502 | if (isa<UsingShadowDecl>(D)) |
| 3503 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3504 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3505 | FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D); |
| 3506 | CXXConversionDecl *Conv; |
| 3507 | if (ConvTemplate) |
| 3508 | Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl()); |
| 3509 | else |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3510 | Conv = cast<CXXConversionDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3511 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3512 | // If the conversion function doesn't return a reference type, |
| 3513 | // it can't be considered for this conversion unless we're allowed to |
| 3514 | // consider rvalues. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3515 | // FIXME: Do we need to make sure that we only consider conversion |
| 3516 | // candidates with reference-compatible results? That might be needed to |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3517 | // break recursion. |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3518 | if ((AllowExplicitConvs || !Conv->isExplicit()) && |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3519 | (AllowRValues || Conv->getConversionType()->isLValueReferenceType())){ |
| 3520 | if (ConvTemplate) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3521 | S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(), |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3522 | ActingDC, Initializer, |
Douglas Gregor | 564cb06 | 2011-01-21 00:27:08 +0000 | [diff] [blame] | 3523 | DestType, CandidateSet); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3524 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3525 | S.AddConversionCandidate(Conv, I.getPair(), ActingDC, |
Douglas Gregor | 564cb06 | 2011-01-21 00:27:08 +0000 | [diff] [blame] | 3526 | Initializer, DestType, CandidateSet); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3527 | } |
| 3528 | } |
| 3529 | } |
John McCall | 572fc62 | 2010-08-17 07:23:57 +0000 | [diff] [blame] | 3530 | if (T2RecordType && T2RecordType->getDecl()->isInvalidDecl()) |
| 3531 | return OR_No_Viable_Function; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3532 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3533 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 3534 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3535 | // Perform overload resolution. If it fails, return the failed result. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3536 | OverloadCandidateSet::iterator Best; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3537 | if (OverloadingResult Result |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 3538 | = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3539 | return Result; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3540 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3541 | FunctionDecl *Function = Best->Function; |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 3542 | // This is the overload that will be used for this initialization step if we |
| 3543 | // use this initialization. Mark it as referenced. |
| 3544 | Function->setReferenced(); |
Chandler Carruth | 25ca421 | 2011-02-25 19:41:05 +0000 | [diff] [blame] | 3545 | |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3546 | // Compute the returned type of the conversion. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3547 | if (isa<CXXConversionDecl>(Function)) |
| 3548 | T2 = Function->getResultType(); |
| 3549 | else |
| 3550 | T2 = cv1T1; |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3551 | |
| 3552 | // Add the user-defined conversion step. |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3553 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 3554 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 3555 | T2.getNonLValueExprType(S.Context), |
| 3556 | HadMultipleCandidates); |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3557 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3558 | // Determine whether we need to perform derived-to-base or |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 3559 | // cv-qualification adjustments. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3560 | ExprValueKind VK = VK_RValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3561 | if (T2->isLValueReferenceType()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3562 | VK = VK_LValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3563 | else if (const RValueReferenceType *RRef = T2->getAs<RValueReferenceType>()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3564 | VK = RRef->getPointeeType()->isFunctionType() ? VK_LValue : VK_XValue; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 3565 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3566 | bool NewDerivedToBase = false; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3567 | bool NewObjCConversion = false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3568 | bool NewObjCLifetimeConversion = false; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3569 | Sema::ReferenceCompareResult NewRefRelationship |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3570 | = S.CompareReferenceRelationship(DeclLoc, T1, |
Douglas Gregor | 6398235 | 2010-07-13 18:40:04 +0000 | [diff] [blame] | 3571 | T2.getNonLValueExprType(S.Context), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3572 | NewDerivedToBase, NewObjCConversion, |
| 3573 | NewObjCLifetimeConversion); |
Douglas Gregor | a1a9f03 | 2010-03-07 23:17:44 +0000 | [diff] [blame] | 3574 | if (NewRefRelationship == Sema::Ref_Incompatible) { |
| 3575 | // If the type we've converted to is not reference-related to the |
| 3576 | // type we're looking for, then there is another conversion step |
| 3577 | // we need to perform to produce a temporary of the right type |
| 3578 | // that we'll be binding to. |
| 3579 | ImplicitConversionSequence ICS; |
| 3580 | ICS.setStandard(); |
| 3581 | ICS.Standard = Best->FinalConversion; |
| 3582 | T2 = ICS.Standard.getToType(2); |
| 3583 | Sequence.AddConversionSequenceStep(ICS, T2); |
| 3584 | } else if (NewDerivedToBase) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3585 | Sequence.AddDerivedToBaseCastStep( |
| 3586 | S.Context.getQualifiedType(T1, |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3587 | T2.getNonReferenceType().getQualifiers()), |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3588 | VK); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3589 | else if (NewObjCConversion) |
| 3590 | Sequence.AddObjCObjectConversionStep( |
| 3591 | S.Context.getQualifiedType(T1, |
| 3592 | T2.getNonReferenceType().getQualifiers())); |
| 3593 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3594 | if (cv1T1.getQualifiers() != T2.getNonReferenceType().getQualifiers()) |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3595 | Sequence.AddQualificationConversionStep(cv1T1, VK); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3596 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3597 | Sequence.AddReferenceBindingStep(cv1T1, !T2->isReferenceType()); |
| 3598 | return OR_Success; |
| 3599 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3600 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 3601 | static void CheckCXX98CompatAccessibleCopy(Sema &S, |
| 3602 | const InitializedEntity &Entity, |
| 3603 | Expr *CurInitExpr); |
| 3604 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3605 | /// \brief Attempt reference initialization (C++0x [dcl.init.ref]) |
| 3606 | static void TryReferenceInitialization(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3607 | const InitializedEntity &Entity, |
| 3608 | const InitializationKind &Kind, |
| 3609 | Expr *Initializer, |
| 3610 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3611 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3612 | QualType cv1T1 = DestType->getAs<ReferenceType>()->getPointeeType(); |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3613 | Qualifiers T1Quals; |
| 3614 | QualType T1 = S.Context.getUnqualifiedArrayType(cv1T1, T1Quals); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3615 | QualType cv2T2 = Initializer->getType(); |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3616 | Qualifiers T2Quals; |
| 3617 | QualType T2 = S.Context.getUnqualifiedArrayType(cv2T2, T2Quals); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3618 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3619 | // If the initializer is the address of an overloaded function, try |
| 3620 | // to resolve the overloaded function. If all goes well, T2 is the |
| 3621 | // type of the resulting function. |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3622 | if (ResolveOverloadedFunctionForReferenceBinding(S, Initializer, cv2T2, T2, |
| 3623 | T1, Sequence)) |
| 3624 | return; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3625 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3626 | // Delegate everything else to a subfunction. |
| 3627 | TryReferenceInitializationCore(S, Entity, Kind, Initializer, cv1T1, T1, |
| 3628 | T1Quals, cv2T2, T2, T2Quals, Sequence); |
| 3629 | } |
| 3630 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3631 | /// Converts the target of reference initialization so that it has the |
| 3632 | /// appropriate qualifiers and value kind. |
| 3633 | /// |
| 3634 | /// In this case, 'x' is an 'int' lvalue, but it needs to be 'const int'. |
| 3635 | /// \code |
| 3636 | /// int x; |
| 3637 | /// const int &r = x; |
| 3638 | /// \endcode |
| 3639 | /// |
| 3640 | /// In this case the reference is binding to a bitfield lvalue, which isn't |
| 3641 | /// valid. Perform a load to create a lifetime-extended temporary instead. |
| 3642 | /// \code |
| 3643 | /// const int &r = someStruct.bitfield; |
| 3644 | /// \endcode |
| 3645 | static ExprValueKind |
| 3646 | convertQualifiersAndValueKindIfNecessary(Sema &S, |
| 3647 | InitializationSequence &Sequence, |
| 3648 | Expr *Initializer, |
| 3649 | QualType cv1T1, |
| 3650 | Qualifiers T1Quals, |
| 3651 | Qualifiers T2Quals, |
| 3652 | bool IsLValueRef) { |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 3653 | bool IsNonAddressableType = Initializer->refersToBitField() || |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3654 | Initializer->refersToVectorElement(); |
| 3655 | |
| 3656 | if (IsNonAddressableType) { |
| 3657 | // C++11 [dcl.init.ref]p5: [...] Otherwise, the reference shall be an |
| 3658 | // lvalue reference to a non-volatile const type, or the reference shall be |
| 3659 | // an rvalue reference. |
| 3660 | // |
| 3661 | // If not, we can't make a temporary and bind to that. Give up and allow the |
| 3662 | // error to be diagnosed later. |
| 3663 | if (IsLValueRef && (!T1Quals.hasConst() || T1Quals.hasVolatile())) { |
| 3664 | assert(Initializer->isGLValue()); |
| 3665 | return Initializer->getValueKind(); |
| 3666 | } |
| 3667 | |
| 3668 | // Force a load so we can materialize a temporary. |
| 3669 | Sequence.AddLValueToRValueStep(cv1T1.getUnqualifiedType()); |
| 3670 | return VK_RValue; |
| 3671 | } |
| 3672 | |
| 3673 | if (T1Quals != T2Quals) { |
| 3674 | Sequence.AddQualificationConversionStep(cv1T1, |
| 3675 | Initializer->getValueKind()); |
| 3676 | } |
| 3677 | |
| 3678 | return Initializer->getValueKind(); |
| 3679 | } |
| 3680 | |
| 3681 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 3682 | /// \brief Reference initialization without resolving overloaded functions. |
| 3683 | static void TryReferenceInitializationCore(Sema &S, |
| 3684 | const InitializedEntity &Entity, |
| 3685 | const InitializationKind &Kind, |
| 3686 | Expr *Initializer, |
| 3687 | QualType cv1T1, QualType T1, |
| 3688 | Qualifiers T1Quals, |
| 3689 | QualType cv2T2, QualType T2, |
| 3690 | Qualifiers T2Quals, |
| 3691 | InitializationSequence &Sequence) { |
| 3692 | QualType DestType = Entity.getType(); |
| 3693 | SourceLocation DeclLoc = Initializer->getLocStart(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3694 | // Compute some basic properties of the types and the initializer. |
| 3695 | bool isLValueRef = DestType->isLValueReferenceType(); |
| 3696 | bool isRValueRef = !isLValueRef; |
| 3697 | bool DerivedToBase = false; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3698 | bool ObjCConversion = false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3699 | bool ObjCLifetimeConversion = false; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3700 | Expr::Classification InitCategory = Initializer->Classify(S.Context); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3701 | Sema::ReferenceCompareResult RefRelationship |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3702 | = S.CompareReferenceRelationship(DeclLoc, cv1T1, cv2T2, DerivedToBase, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3703 | ObjCConversion, ObjCLifetimeConversion); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3704 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3705 | // C++0x [dcl.init.ref]p5: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3706 | // 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] | 3707 | // "cv2 T2" as follows: |
| 3708 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3709 | // - If the reference is an lvalue reference and the initializer |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3710 | // expression |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3711 | // Note the analogous bullet points for rvalue refs to functions. Because |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3712 | // there are no function rvalues in C++, rvalue refs to functions are treated |
| 3713 | // like lvalue refs. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3714 | OverloadingResult ConvOvlResult = OR_Success; |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3715 | bool T1Function = T1->isFunctionType(); |
| 3716 | if (isLValueRef || T1Function) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3717 | if (InitCategory.isLValue() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3718 | (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification || |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3719 | (Kind.isCStyleOrFunctionalCast() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3720 | RefRelationship == Sema::Ref_Related))) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3721 | // - 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] | 3722 | // reference-compatible with "cv2 T2," or |
| 3723 | // |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3724 | // 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] | 3725 | // bit-field when we're determining whether the reference initialization |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 3726 | // can occur. However, we do pay attention to whether it is a bit-field |
| 3727 | // to decide whether we're actually binding to a temporary created from |
| 3728 | // the bit-field. |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3729 | if (DerivedToBase) |
| 3730 | Sequence.AddDerivedToBaseCastStep( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3731 | S.Context.getQualifiedType(T1, T2Quals), |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 3732 | VK_LValue); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 3733 | else if (ObjCConversion) |
| 3734 | Sequence.AddObjCObjectConversionStep( |
| 3735 | S.Context.getQualifiedType(T1, T2Quals)); |
| 3736 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3737 | ExprValueKind ValueKind = |
| 3738 | convertQualifiersAndValueKindIfNecessary(S, Sequence, Initializer, |
| 3739 | cv1T1, T1Quals, T2Quals, |
| 3740 | isLValueRef); |
| 3741 | Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3742 | return; |
| 3743 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3744 | |
| 3745 | // - has a class type (i.e., T2 is a class type), where T1 is not |
| 3746 | // reference-related to T2, and can be implicitly converted to an |
| 3747 | // lvalue of type "cv3 T3," where "cv1 T1" is reference-compatible |
| 3748 | // with "cv3 T3" (this conversion is selected by enumerating the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3749 | // applicable conversion functions (13.3.1.6) and choosing the best |
| 3750 | // one through overload resolution (13.3)), |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3751 | // If we have an rvalue ref to function type here, the rhs must be |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3752 | // an rvalue. DR1287 removed the "implicitly" here. |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3753 | if (RefRelationship == Sema::Ref_Incompatible && T2->isRecordType() && |
| 3754 | (isLValueRef || InitCategory.isRValue())) { |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3755 | ConvOvlResult = TryRefInitWithConversionFunction( |
| 3756 | S, Entity, Kind, Initializer, /*AllowRValues*/isRValueRef, Sequence); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3757 | if (ConvOvlResult == OR_Success) |
| 3758 | return; |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3759 | if (ConvOvlResult != OR_No_Viable_Function) |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 3760 | Sequence.SetOverloadFailure( |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3761 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3762 | ConvOvlResult); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3763 | } |
| 3764 | } |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3765 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3766 | // - Otherwise, the reference shall be an lvalue reference to a |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3767 | // 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] | 3768 | // shall be an rvalue reference. |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3769 | if (isLValueRef && !(T1Quals.hasConst() && !T1Quals.hasVolatile())) { |
Douglas Gregor | 3afb977 | 2010-11-08 15:20:28 +0000 | [diff] [blame] | 3770 | if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) |
| 3771 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
| 3772 | else if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty()) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3773 | Sequence.SetOverloadFailure( |
| 3774 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3775 | ConvOvlResult); |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3776 | else |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3777 | Sequence.SetFailed(InitCategory.isLValue() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3778 | ? (RefRelationship == Sema::Ref_Related |
| 3779 | ? InitializationSequence::FK_ReferenceInitDropsQualifiers |
| 3780 | : InitializationSequence::FK_NonConstLValueReferenceBindingToUnrelated) |
| 3781 | : InitializationSequence::FK_NonConstLValueReferenceBindingToTemporary); |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3782 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3783 | return; |
| 3784 | } |
Sebastian Redl | 4680bf2 | 2010-06-30 18:13:39 +0000 | [diff] [blame] | 3785 | |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3786 | // - If the initializer expression |
| 3787 | // - is an xvalue, class prvalue, array prvalue, or function lvalue and |
| 3788 | // "cv1 T1" is reference-compatible with "cv2 T2" |
| 3789 | // Note: functions are handled below. |
| 3790 | if (!T1Function && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3791 | (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification || |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3792 | (Kind.isCStyleOrFunctionalCast() && |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3793 | RefRelationship == Sema::Ref_Related)) && |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3794 | (InitCategory.isXValue() || |
| 3795 | (InitCategory.isPRValue() && T2->isRecordType()) || |
| 3796 | (InitCategory.isPRValue() && T2->isArrayType()))) { |
| 3797 | ExprValueKind ValueKind = InitCategory.isXValue()? VK_XValue : VK_RValue; |
| 3798 | if (InitCategory.isPRValue() && T2->isRecordType()) { |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 3799 | // The corresponding bullet in C++03 [dcl.init.ref]p5 gives the |
| 3800 | // compiler the freedom to perform a copy here or bind to the |
| 3801 | // object, while C++0x requires that we bind directly to the |
| 3802 | // object. Hence, we always bind to the object without making an |
| 3803 | // extra copy. However, in C++03 requires that we check for the |
| 3804 | // presence of a suitable copy constructor: |
| 3805 | // |
| 3806 | // The constructor that would be used to make the copy shall |
| 3807 | // be callable whether or not the copy is actually done. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3808 | if (!S.getLangOpts().CPlusPlus11 && !S.getLangOpts().MicrosoftExt) |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 3809 | Sequence.AddExtraneousCopyToTemporary(cv2T2); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3810 | else if (S.getLangOpts().CPlusPlus11) |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 3811 | CheckCXX98CompatAccessibleCopy(S, Entity, Initializer); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3812 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3813 | |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3814 | if (DerivedToBase) |
| 3815 | Sequence.AddDerivedToBaseCastStep(S.Context.getQualifiedType(T1, T2Quals), |
| 3816 | ValueKind); |
| 3817 | else if (ObjCConversion) |
| 3818 | Sequence.AddObjCObjectConversionStep( |
| 3819 | S.Context.getQualifiedType(T1, T2Quals)); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3820 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 3821 | ValueKind = convertQualifiersAndValueKindIfNecessary(S, Sequence, |
| 3822 | Initializer, cv1T1, |
| 3823 | T1Quals, T2Quals, |
| 3824 | isLValueRef); |
| 3825 | |
| 3826 | Sequence.AddReferenceBindingStep(cv1T1, ValueKind == VK_RValue); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3827 | return; |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3828 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3829 | |
| 3830 | // - has a class type (i.e., T2 is a class type), where T1 is not |
| 3831 | // reference-related to T2, and can be implicitly converted to an |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3832 | // xvalue, class prvalue, or function lvalue of type "cv3 T3", |
| 3833 | // where "cv1 T1" is reference-compatible with "cv3 T3", |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3834 | // |
| 3835 | // DR1287 removes the "implicitly" here. |
Douglas Gregor | c5db24d | 2011-01-20 16:44:54 +0000 | [diff] [blame] | 3836 | if (T2->isRecordType()) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3837 | if (RefRelationship == Sema::Ref_Incompatible) { |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3838 | ConvOvlResult = TryRefInitWithConversionFunction( |
| 3839 | S, Entity, Kind, Initializer, /*AllowRValues*/true, Sequence); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3840 | if (ConvOvlResult) |
| 3841 | Sequence.SetOverloadFailure( |
Richard Smith | 867521c | 2013-09-21 21:23:47 +0000 | [diff] [blame] | 3842 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3843 | ConvOvlResult); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3844 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3845 | return; |
| 3846 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3847 | |
Douglas Gregor | defa32e | 2013-03-26 23:59:23 +0000 | [diff] [blame] | 3848 | if ((RefRelationship == Sema::Ref_Compatible || |
| 3849 | RefRelationship == Sema::Ref_Compatible_With_Added_Qualification) && |
| 3850 | isRValueRef && InitCategory.isLValue()) { |
| 3851 | Sequence.SetFailed( |
| 3852 | InitializationSequence::FK_RValueReferenceBindingToLValue); |
| 3853 | return; |
| 3854 | } |
| 3855 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3856 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers); |
| 3857 | return; |
| 3858 | } |
NAKAMURA Takumi | 0099530 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 3859 | |
| 3860 | // - Otherwise, a temporary of type "cv1 T1" is created and initialized |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3861 | // from the initializer expression using the rules for a non-reference |
Richard Smith | 4e47ecb | 2013-06-13 00:57:57 +0000 | [diff] [blame] | 3862 | // copy-initialization (8.5). The reference is then bound to the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3863 | // temporary. [...] |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 3864 | |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 3865 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(cv1T1); |
| 3866 | |
Richard Smith | 4e47ecb | 2013-06-13 00:57:57 +0000 | [diff] [blame] | 3867 | // FIXME: Why do we use an implicit conversion here rather than trying |
| 3868 | // copy-initialization? |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3869 | ImplicitConversionSequence ICS |
| 3870 | = S.TryImplicitConversion(Initializer, TempEntity.getType(), |
Richard Smith | 4e47ecb | 2013-06-13 00:57:57 +0000 | [diff] [blame] | 3871 | /*SuppressUserConversions=*/false, |
| 3872 | /*AllowExplicit=*/false, |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 3873 | /*FIXME:InOverloadResolution=*/false, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3874 | /*CStyle=*/Kind.isCStyleOrFunctionalCast(), |
| 3875 | /*AllowObjCWritebackConversion=*/false); |
| 3876 | |
| 3877 | if (ICS.isBad()) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3878 | // FIXME: Use the conversion function set stored in ICS to turn |
| 3879 | // this into an overloading ambiguity diagnostic. However, we need |
| 3880 | // to keep that set as an OverloadCandidateSet rather than as some |
| 3881 | // other kind of set. |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 3882 | if (ConvOvlResult && !Sequence.getFailedCandidateSet().empty()) |
| 3883 | Sequence.SetOverloadFailure( |
| 3884 | InitializationSequence::FK_ReferenceInitOverloadFailed, |
| 3885 | ConvOvlResult); |
Douglas Gregor | 3afb977 | 2010-11-08 15:20:28 +0000 | [diff] [blame] | 3886 | else if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) |
| 3887 | Sequence.SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 3888 | else |
| 3889 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitFailed); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3890 | return; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3891 | } else { |
| 3892 | Sequence.AddConversionSequenceStep(ICS, TempEntity.getType()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3893 | } |
| 3894 | |
| 3895 | // [...] If T1 is reference-related to T2, cv1 must be the |
| 3896 | // same cv-qualification as, or greater cv-qualification |
| 3897 | // than, cv2; otherwise, the program is ill-formed. |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3898 | unsigned T1CVRQuals = T1Quals.getCVRQualifiers(); |
| 3899 | unsigned T2CVRQuals = T2Quals.getCVRQualifiers(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3900 | if (RefRelationship == Sema::Ref_Related && |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 3901 | (T1CVRQuals | T2CVRQuals) != T1CVRQuals) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3902 | Sequence.SetFailed(InitializationSequence::FK_ReferenceInitDropsQualifiers); |
| 3903 | return; |
| 3904 | } |
| 3905 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3906 | // [...] 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] | 3907 | // reference, the initializer expression shall not be an lvalue. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3908 | if (RefRelationship >= Sema::Ref_Related && !isLValueRef && |
Douglas Gregor | b2855ad | 2011-01-21 00:52:42 +0000 | [diff] [blame] | 3909 | InitCategory.isLValue()) { |
| 3910 | Sequence.SetFailed( |
| 3911 | InitializationSequence::FK_RValueReferenceBindingToLValue); |
| 3912 | return; |
| 3913 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3914 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3915 | Sequence.AddReferenceBindingStep(cv1T1, /*bindingTemporary=*/true); |
| 3916 | return; |
| 3917 | } |
| 3918 | |
| 3919 | /// \brief Attempt character array initialization from a string literal |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3920 | /// (C++ [dcl.init.string], C99 6.7.8). |
| 3921 | static void TryStringLiteralInitialization(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3922 | const InitializedEntity &Entity, |
| 3923 | const InitializationKind &Kind, |
| 3924 | Expr *Initializer, |
| 3925 | InitializationSequence &Sequence) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3926 | Sequence.AddStringInitStep(Entity.getType()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 3927 | } |
| 3928 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3929 | /// \brief Attempt value initialization (C++ [dcl.init]p7). |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3930 | static void TryValueInitialization(Sema &S, |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3931 | const InitializedEntity &Entity, |
| 3932 | const InitializationKind &Kind, |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3933 | InitializationSequence &Sequence, |
| 3934 | InitListExpr *InitList) { |
| 3935 | assert((!InitList || InitList->getNumInits() == 0) && |
| 3936 | "Shouldn't use value-init for non-empty init lists"); |
| 3937 | |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3938 | // C++98 [dcl.init]p5, C++11 [dcl.init]p7: |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3939 | // |
| 3940 | // To value-initialize an object of type T means: |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3941 | QualType T = Entity.getType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3942 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3943 | // -- if T is an array type, then each element is value-initialized; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3944 | T = S.Context.getBaseElementType(T); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3945 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 3946 | if (const RecordType *RT = T->getAs<RecordType>()) { |
| 3947 | if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3948 | bool NeedZeroInitialization = true; |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3949 | if (!S.getLangOpts().CPlusPlus11) { |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3950 | // C++98: |
| 3951 | // -- if T is a class type (clause 9) with a user-declared constructor |
| 3952 | // (12.1), then the default constructor for T is called (and the |
| 3953 | // initialization is ill-formed if T has no accessible default |
| 3954 | // constructor); |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3955 | if (ClassDecl->hasUserDeclaredConstructor()) |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3956 | NeedZeroInitialization = false; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3957 | } else { |
| 3958 | // C++11: |
| 3959 | // -- if T is a class type (clause 9) with either no default constructor |
| 3960 | // (12.1 [class.ctor]) or a default constructor that is user-provided |
| 3961 | // or deleted, then the object is default-initialized; |
| 3962 | CXXConstructorDecl *CD = S.LookupDefaultConstructor(ClassDecl); |
| 3963 | if (!CD || !CD->getCanonicalDecl()->isDefaulted() || CD->isDeleted()) |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3964 | NeedZeroInitialization = false; |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3965 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3966 | |
Richard Smith | 1d0c9a8 | 2012-02-14 21:14:13 +0000 | [diff] [blame] | 3967 | // -- if T is a (possibly cv-qualified) non-union class type without a |
| 3968 | // user-provided or deleted default constructor, then the object is |
| 3969 | // zero-initialized and, if T has a non-trivial default constructor, |
| 3970 | // default-initialized; |
Richard Smith | 6678a05 | 2012-10-18 00:44:17 +0000 | [diff] [blame] | 3971 | // The 'non-union' here was removed by DR1502. The 'non-trivial default |
| 3972 | // constructor' part was removed by DR1507. |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3973 | if (NeedZeroInitialization) |
| 3974 | Sequence.AddZeroInitializationStep(Entity.getType()); |
| 3975 | |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 3976 | // C++03: |
| 3977 | // -- if T is a non-union class type without a user-declared constructor, |
| 3978 | // then every non-static data member and base class component of T is |
| 3979 | // value-initialized; |
| 3980 | // [...] A program that calls for [...] value-initialization of an |
| 3981 | // entity of reference type is ill-formed. |
| 3982 | // |
| 3983 | // C++11 doesn't need this handling, because value-initialization does not |
| 3984 | // occur recursively there, and the implicit default constructor is |
| 3985 | // defined as deleted in the problematic cases. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3986 | if (!S.getLangOpts().CPlusPlus11 && |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 3987 | ClassDecl->hasUninitializedReferenceMember()) { |
| 3988 | Sequence.SetFailed(InitializationSequence::FK_TooManyInitsForReference); |
| 3989 | return; |
| 3990 | } |
| 3991 | |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3992 | // If this is list-value-initialization, pass the empty init list on when |
| 3993 | // building the constructor call. This affects the semantics of a few |
| 3994 | // things (such as whether an explicit default constructor can be called). |
| 3995 | Expr *InitListAsExpr = InitList; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3996 | MultiExprArg Args(&InitListAsExpr, InitList ? 1 : 0); |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 3997 | bool InitListSyntax = InitList; |
| 3998 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 3999 | return TryConstructorInitialization(S, Entity, Kind, Args, T, Sequence, |
| 4000 | InitListSyntax); |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 4001 | } |
| 4002 | } |
| 4003 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 4004 | Sequence.AddZeroInitializationStep(Entity.getType()); |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 4005 | } |
| 4006 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4007 | /// \brief Attempt default initialization (C++ [dcl.init]p6). |
| 4008 | static void TryDefaultInitialization(Sema &S, |
| 4009 | const InitializedEntity &Entity, |
| 4010 | const InitializationKind &Kind, |
| 4011 | InitializationSequence &Sequence) { |
| 4012 | assert(Kind.getKind() == InitializationKind::IK_Default); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4013 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4014 | // C++ [dcl.init]p6: |
| 4015 | // To default-initialize an object of type T means: |
| 4016 | // - if T is an array type, each element is default-initialized; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4017 | QualType DestType = S.Context.getBaseElementType(Entity.getType()); |
| 4018 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4019 | // - if T is a (possibly cv-qualified) class type (Clause 9), the default |
| 4020 | // constructor for T is called (and the initialization is ill-formed if |
| 4021 | // T has no accessible default constructor); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4022 | if (DestType->isRecordType() && S.getLangOpts().CPlusPlus) { |
Dmitri Gribenko | 62ed889 | 2013-05-05 20:40:26 +0000 | [diff] [blame] | 4023 | TryConstructorInitialization(S, Entity, Kind, None, DestType, Sequence); |
Chandler Carruth | 4e6fbce | 2010-08-23 07:55:51 +0000 | [diff] [blame] | 4024 | return; |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4025 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4026 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4027 | // - otherwise, no initialization is performed. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4028 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4029 | // If a program calls for the default initialization of an object of |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4030 | // 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] | 4031 | // default constructor. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4032 | if (DestType.isConstQualified() && S.getLangOpts().CPlusPlus) { |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4033 | Sequence.SetFailed(InitializationSequence::FK_DefaultInitOfConst); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4034 | return; |
| 4035 | } |
| 4036 | |
| 4037 | // If the destination type has a lifetime property, zero-initialize it. |
| 4038 | if (DestType.getQualifiers().hasObjCLifetime()) { |
| 4039 | Sequence.AddZeroInitializationStep(Entity.getType()); |
| 4040 | return; |
| 4041 | } |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4042 | } |
| 4043 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4044 | /// \brief Attempt a user-defined conversion between two types (C++ [dcl.init]), |
| 4045 | /// which enumerates all conversion functions and performs overload resolution |
| 4046 | /// to select the best. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4047 | static void TryUserDefinedConversion(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4048 | const InitializedEntity &Entity, |
| 4049 | const InitializationKind &Kind, |
| 4050 | Expr *Initializer, |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4051 | InitializationSequence &Sequence, |
| 4052 | bool TopLevelOfInitList) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 4053 | QualType DestType = Entity.getType(); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4054 | assert(!DestType->isReferenceType() && "References are handled elsewhere"); |
| 4055 | QualType SourceType = Initializer->getType(); |
| 4056 | assert((DestType->isRecordType() || SourceType->isRecordType()) && |
| 4057 | "Must have a class type to perform a user-defined conversion"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4058 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4059 | // Build the candidate set directly in the initialization sequence |
| 4060 | // structure, so that it will persist if we fail. |
| 4061 | OverloadCandidateSet &CandidateSet = Sequence.getFailedCandidateSet(); |
| 4062 | CandidateSet.clear(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4063 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4064 | // Determine whether we are allowed to call explicit constructors or |
| 4065 | // explicit conversion operators. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 4066 | bool AllowExplicit = Kind.AllowExplicit(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4067 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4068 | if (const RecordType *DestRecordType = DestType->getAs<RecordType>()) { |
| 4069 | // The type we're converting to is a class type. Enumerate its constructors |
| 4070 | // to see if there is a suitable conversion. |
| 4071 | CXXRecordDecl *DestRecordDecl |
| 4072 | = cast<CXXRecordDecl>(DestRecordType->getDecl()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4073 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4074 | // Try to complete the type we're converting to. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4075 | if (!S.RequireCompleteType(Kind.getLocation(), DestType, 0)) { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4076 | DeclContext::lookup_result R = S.LookupConstructors(DestRecordDecl); |
David Blaikie | 3d5cf5e | 2012-10-18 16:57:32 +0000 | [diff] [blame] | 4077 | // The container holding the constructors can under certain conditions |
| 4078 | // be changed while iterating. To be safe we copy the lookup results |
| 4079 | // to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4080 | SmallVector<NamedDecl*, 8> CopyOfCon(R.begin(), R.end()); |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 4081 | for (SmallVectorImpl<NamedDecl *>::iterator |
David Blaikie | 3d5cf5e | 2012-10-18 16:57:32 +0000 | [diff] [blame] | 4082 | Con = CopyOfCon.begin(), ConEnd = CopyOfCon.end(); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4083 | Con != ConEnd; ++Con) { |
| 4084 | NamedDecl *D = *Con; |
| 4085 | DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4086 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4087 | // Find the constructor (which may be a template). |
| 4088 | CXXConstructorDecl *Constructor = 0; |
| 4089 | FunctionTemplateDecl *ConstructorTmpl |
| 4090 | = dyn_cast<FunctionTemplateDecl>(D); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4091 | if (ConstructorTmpl) |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4092 | Constructor = cast<CXXConstructorDecl>( |
| 4093 | ConstructorTmpl->getTemplatedDecl()); |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 4094 | else |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4095 | Constructor = cast<CXXConstructorDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4096 | |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4097 | if (!Constructor->isInvalidDecl() && |
| 4098 | Constructor->isConvertingConstructor(AllowExplicit)) { |
| 4099 | if (ConstructorTmpl) |
| 4100 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, |
| 4101 | /*ExplicitArgs*/ 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4102 | Initializer, CandidateSet, |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 4103 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4104 | else |
| 4105 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4106 | Initializer, CandidateSet, |
Douglas Gregor | 4712c02 | 2010-07-01 03:43:00 +0000 | [diff] [blame] | 4107 | /*SuppressUserConversions=*/true); |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4108 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4109 | } |
Douglas Gregor | 087fb7d | 2010-04-26 14:36:57 +0000 | [diff] [blame] | 4110 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4111 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4112 | |
| 4113 | SourceLocation DeclLoc = Initializer->getLocStart(); |
| 4114 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4115 | if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) { |
| 4116 | // The type we're converting from is a class type, enumerate its conversion |
| 4117 | // functions. |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4118 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4119 | // We can only enumerate the conversion functions for a complete type; if |
| 4120 | // the type isn't complete, simply skip this step. |
| 4121 | if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) { |
| 4122 | CXXRecordDecl *SourceRecordDecl |
| 4123 | = cast<CXXRecordDecl>(SourceRecordType->getDecl()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4124 | |
Argyrios Kyrtzidis | 9d29543 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 4125 | std::pair<CXXRecordDecl::conversion_iterator, |
| 4126 | CXXRecordDecl::conversion_iterator> |
| 4127 | Conversions = SourceRecordDecl->getVisibleConversionFunctions(); |
| 4128 | for (CXXRecordDecl::conversion_iterator |
| 4129 | I = Conversions.first, E = Conversions.second; I != E; ++I) { |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4130 | NamedDecl *D = *I; |
| 4131 | CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext()); |
| 4132 | if (isa<UsingShadowDecl>(D)) |
| 4133 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4134 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4135 | FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(D); |
| 4136 | CXXConversionDecl *Conv; |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4137 | if (ConvTemplate) |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4138 | Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl()); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4139 | else |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 4140 | Conv = cast<CXXConversionDecl>(D); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4141 | |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4142 | if (AllowExplicit || !Conv->isExplicit()) { |
| 4143 | if (ConvTemplate) |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 4144 | S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(), |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4145 | ActingDC, Initializer, DestType, |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4146 | CandidateSet); |
| 4147 | else |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 4148 | S.AddConversionCandidate(Conv, I.getPair(), ActingDC, |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4149 | Initializer, DestType, CandidateSet); |
Eli Friedman | 33c2da9 | 2009-12-20 22:12:03 +0000 | [diff] [blame] | 4150 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4151 | } |
| 4152 | } |
| 4153 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4154 | |
| 4155 | // Perform overload resolution. If it fails, return the failed result. |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4156 | OverloadCandidateSet::iterator Best; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4157 | if (OverloadingResult Result |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 4158 | = CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) { |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4159 | Sequence.SetOverloadFailure( |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4160 | InitializationSequence::FK_UserConversionOverloadFailed, |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4161 | Result); |
| 4162 | return; |
| 4163 | } |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4164 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4165 | FunctionDecl *Function = Best->Function; |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 4166 | Function->setReferenced(); |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 4167 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4168 | |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4169 | if (isa<CXXConstructorDecl>(Function)) { |
| 4170 | // Add the user-defined conversion step. Any cv-qualification conversion is |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 4171 | // subsumed by the initialization. Per DR5, the created temporary is of the |
| 4172 | // cv-unqualified type of the destination. |
| 4173 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, |
| 4174 | DestType.getUnqualifiedType(), |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 4175 | HadMultipleCandidates); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4176 | return; |
| 4177 | } |
| 4178 | |
| 4179 | // Add the user-defined conversion step that calls the conversion function. |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 4180 | QualType ConvType = Function->getCallResultType(); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4181 | if (ConvType->getAs<RecordType>()) { |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 4182 | // 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] | 4183 | // the resulting temporary object (possible to create an object of |
| 4184 | // a base class type). That copy is not a separate conversion, so |
| 4185 | // we just make a note of the actual destination type (possibly a |
| 4186 | // base class of the type returned by the conversion function) and |
| 4187 | // let the user-defined conversion step handle the conversion. |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 4188 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, DestType, |
| 4189 | HadMultipleCandidates); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4190 | return; |
| 4191 | } |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4192 | |
Abramo Bagnara | 22c107b | 2011-11-19 11:44:21 +0000 | [diff] [blame] | 4193 | Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType, |
| 4194 | HadMultipleCandidates); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4195 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4196 | // If the conversion following the call to the conversion function |
| 4197 | // is interesting, add it as a separate step. |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4198 | if (Best->FinalConversion.First || Best->FinalConversion.Second || |
| 4199 | Best->FinalConversion.Third) { |
| 4200 | ImplicitConversionSequence ICS; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4201 | ICS.setStandard(); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4202 | ICS.Standard = Best->FinalConversion; |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4203 | Sequence.AddConversionSequenceStep(ICS, DestType, TopLevelOfInitList); |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4204 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4205 | } |
| 4206 | |
Richard Smith | 87c2932 | 2013-06-20 02:18:31 +0000 | [diff] [blame] | 4207 | /// An egregious hack for compatibility with libstdc++-4.2: in <tr1/hashtable>, |
| 4208 | /// a function with a pointer return type contains a 'return false;' statement. |
| 4209 | /// In C++11, 'false' is not a null pointer, so this breaks the build of any |
| 4210 | /// code using that header. |
| 4211 | /// |
| 4212 | /// Work around this by treating 'return false;' as zero-initializing the result |
| 4213 | /// if it's used in a pointer-returning function in a system header. |
| 4214 | static bool isLibstdcxxPointerReturnFalseHack(Sema &S, |
| 4215 | const InitializedEntity &Entity, |
| 4216 | const Expr *Init) { |
| 4217 | return S.getLangOpts().CPlusPlus11 && |
| 4218 | Entity.getKind() == InitializedEntity::EK_Result && |
| 4219 | Entity.getType()->isPointerType() && |
| 4220 | isa<CXXBoolLiteralExpr>(Init) && |
| 4221 | !cast<CXXBoolLiteralExpr>(Init)->getValue() && |
| 4222 | S.getSourceManager().isInSystemHeader(Init->getExprLoc()); |
| 4223 | } |
| 4224 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4225 | /// The non-zero enum values here are indexes into diagnostic alternatives. |
| 4226 | enum InvalidICRKind { IIK_okay, IIK_nonlocal, IIK_nonscalar }; |
| 4227 | |
| 4228 | /// Determines whether this expression is an acceptable ICR source. |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4229 | static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e, |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4230 | bool isAddressOf, bool &isWeakAccess) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4231 | // Skip parens. |
| 4232 | e = e->IgnoreParens(); |
| 4233 | |
| 4234 | // Skip address-of nodes. |
| 4235 | if (UnaryOperator *op = dyn_cast<UnaryOperator>(e)) { |
| 4236 | if (op->getOpcode() == UO_AddrOf) |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4237 | return isInvalidICRSource(C, op->getSubExpr(), /*addressof*/ true, |
| 4238 | isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4239 | |
| 4240 | // Skip certain casts. |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4241 | } else if (CastExpr *ce = dyn_cast<CastExpr>(e)) { |
| 4242 | switch (ce->getCastKind()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4243 | case CK_Dependent: |
| 4244 | case CK_BitCast: |
| 4245 | case CK_LValueBitCast: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4246 | case CK_NoOp: |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4247 | return isInvalidICRSource(C, ce->getSubExpr(), isAddressOf, isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4248 | |
| 4249 | case CK_ArrayToPointerDecay: |
| 4250 | return IIK_nonscalar; |
| 4251 | |
| 4252 | case CK_NullToPointer: |
| 4253 | return IIK_okay; |
| 4254 | |
| 4255 | default: |
| 4256 | break; |
| 4257 | } |
| 4258 | |
| 4259 | // 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] | 4260 | } else if (isa<DeclRefExpr>(e)) { |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4261 | // set isWeakAccess to true, to mean that there will be an implicit |
| 4262 | // load which requires a cleanup. |
| 4263 | if (e->getType().getObjCLifetime() == Qualifiers::OCL_Weak) |
| 4264 | isWeakAccess = true; |
| 4265 | |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4266 | if (!isAddressOf) return IIK_nonlocal; |
| 4267 | |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 4268 | VarDecl *var = dyn_cast<VarDecl>(cast<DeclRefExpr>(e)->getDecl()); |
| 4269 | if (!var) return IIK_nonlocal; |
John McCall | c03fa49 | 2011-06-27 23:59:58 +0000 | [diff] [blame] | 4270 | |
| 4271 | return (var->hasLocalStorage() ? IIK_okay : IIK_nonlocal); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4272 | |
| 4273 | // If we have a conditional operator, check both sides. |
| 4274 | } else if (ConditionalOperator *cond = dyn_cast<ConditionalOperator>(e)) { |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4275 | if (InvalidICRKind iik = isInvalidICRSource(C, cond->getLHS(), isAddressOf, |
| 4276 | isWeakAccess)) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4277 | return iik; |
| 4278 | |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4279 | return isInvalidICRSource(C, cond->getRHS(), isAddressOf, isWeakAccess); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4280 | |
| 4281 | // These are never scalar. |
| 4282 | } else if (isa<ArraySubscriptExpr>(e)) { |
| 4283 | return IIK_nonscalar; |
| 4284 | |
| 4285 | // Otherwise, it needs to be a null pointer constant. |
| 4286 | } else { |
| 4287 | return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull) |
| 4288 | ? IIK_okay : IIK_nonlocal); |
| 4289 | } |
| 4290 | |
| 4291 | return IIK_nonlocal; |
| 4292 | } |
| 4293 | |
| 4294 | /// Check whether the given expression is a valid operand for an |
| 4295 | /// indirect copy/restore. |
| 4296 | static void checkIndirectCopyRestoreSource(Sema &S, Expr *src) { |
| 4297 | assert(src->isRValue()); |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 4298 | bool isWeakAccess = false; |
| 4299 | InvalidICRKind iik = isInvalidICRSource(S.Context, src, false, isWeakAccess); |
| 4300 | // If isWeakAccess to true, there will be an implicit |
| 4301 | // load which requires a cleanup. |
| 4302 | if (S.getLangOpts().ObjCAutoRefCount && isWeakAccess) |
| 4303 | S.ExprNeedsCleanups = true; |
| 4304 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4305 | if (iik == IIK_okay) return; |
| 4306 | |
| 4307 | S.Diag(src->getExprLoc(), diag::err_arc_nonlocal_writeback) |
| 4308 | << ((unsigned) iik - 1) // shift index into diagnostic explanations |
| 4309 | << src->getSourceRange(); |
| 4310 | } |
| 4311 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4312 | /// \brief Determine whether we have compatible array types for the |
| 4313 | /// purposes of GNU by-copy array initialization. |
| 4314 | static bool hasCompatibleArrayTypes(ASTContext &Context, |
| 4315 | const ArrayType *Dest, |
| 4316 | const ArrayType *Source) { |
| 4317 | // If the source and destination array types are equivalent, we're |
| 4318 | // done. |
| 4319 | if (Context.hasSameType(QualType(Dest, 0), QualType(Source, 0))) |
| 4320 | return true; |
| 4321 | |
| 4322 | // Make sure that the element types are the same. |
| 4323 | if (!Context.hasSameType(Dest->getElementType(), Source->getElementType())) |
| 4324 | return false; |
| 4325 | |
| 4326 | // The only mismatch we allow is when the destination is an |
| 4327 | // incomplete array type and the source is a constant array type. |
| 4328 | return Source->isConstantArrayType() && Dest->isIncompleteArrayType(); |
| 4329 | } |
| 4330 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4331 | static bool tryObjCWritebackConversion(Sema &S, |
| 4332 | InitializationSequence &Sequence, |
| 4333 | const InitializedEntity &Entity, |
| 4334 | Expr *Initializer) { |
| 4335 | bool ArrayDecay = false; |
| 4336 | QualType ArgType = Initializer->getType(); |
| 4337 | QualType ArgPointee; |
| 4338 | if (const ArrayType *ArgArrayType = S.Context.getAsArrayType(ArgType)) { |
| 4339 | ArrayDecay = true; |
| 4340 | ArgPointee = ArgArrayType->getElementType(); |
| 4341 | ArgType = S.Context.getPointerType(ArgPointee); |
| 4342 | } |
| 4343 | |
| 4344 | // Handle write-back conversion. |
| 4345 | QualType ConvertedArgType; |
| 4346 | if (!S.isObjCWritebackConversion(ArgType, Entity.getType(), |
| 4347 | ConvertedArgType)) |
| 4348 | return false; |
| 4349 | |
| 4350 | // We should copy unless we're passing to an argument explicitly |
| 4351 | // marked 'out'. |
| 4352 | bool ShouldCopy = true; |
| 4353 | if (ParmVarDecl *param = cast_or_null<ParmVarDecl>(Entity.getDecl())) |
| 4354 | ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out); |
| 4355 | |
| 4356 | // Do we need an lvalue conversion? |
| 4357 | if (ArrayDecay || Initializer->isGLValue()) { |
| 4358 | ImplicitConversionSequence ICS; |
| 4359 | ICS.setStandard(); |
| 4360 | ICS.Standard.setAsIdentityConversion(); |
| 4361 | |
| 4362 | QualType ResultType; |
| 4363 | if (ArrayDecay) { |
| 4364 | ICS.Standard.First = ICK_Array_To_Pointer; |
| 4365 | ResultType = S.Context.getPointerType(ArgPointee); |
| 4366 | } else { |
| 4367 | ICS.Standard.First = ICK_Lvalue_To_Rvalue; |
| 4368 | ResultType = Initializer->getType().getNonLValueExprType(S.Context); |
| 4369 | } |
| 4370 | |
| 4371 | Sequence.AddConversionSequenceStep(ICS, ResultType); |
| 4372 | } |
| 4373 | |
| 4374 | Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy); |
| 4375 | return true; |
| 4376 | } |
| 4377 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 4378 | static bool TryOCLSamplerInitialization(Sema &S, |
| 4379 | InitializationSequence &Sequence, |
| 4380 | QualType DestType, |
| 4381 | Expr *Initializer) { |
| 4382 | if (!S.getLangOpts().OpenCL || !DestType->isSamplerT() || |
| 4383 | !Initializer->isIntegerConstantExpr(S.getASTContext())) |
| 4384 | return false; |
| 4385 | |
| 4386 | Sequence.AddOCLSamplerInitStep(DestType); |
| 4387 | return true; |
| 4388 | } |
| 4389 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 4390 | // |
| 4391 | // OpenCL 1.2 spec, s6.12.10 |
| 4392 | // |
| 4393 | // The event argument can also be used to associate the |
| 4394 | // async_work_group_copy with a previous async copy allowing |
| 4395 | // an event to be shared by multiple async copies; otherwise |
| 4396 | // event should be zero. |
| 4397 | // |
| 4398 | static bool TryOCLZeroEventInitialization(Sema &S, |
| 4399 | InitializationSequence &Sequence, |
| 4400 | QualType DestType, |
| 4401 | Expr *Initializer) { |
| 4402 | if (!S.getLangOpts().OpenCL || !DestType->isEventT() || |
| 4403 | !Initializer->isIntegerConstantExpr(S.getASTContext()) || |
| 4404 | (Initializer->EvaluateKnownConstInt(S.getASTContext()) != 0)) |
| 4405 | return false; |
| 4406 | |
| 4407 | Sequence.AddOCLZeroEventStep(DestType); |
| 4408 | return true; |
| 4409 | } |
| 4410 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4411 | InitializationSequence::InitializationSequence(Sema &S, |
| 4412 | const InitializedEntity &Entity, |
| 4413 | const InitializationKind &Kind, |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4414 | MultiExprArg Args, |
| 4415 | bool TopLevelOfInitList) |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 4416 | : FailedCandidateSet(Kind.getLocation()) { |
Richard Smith | b390e49 | 2013-09-21 21:55:46 +0000 | [diff] [blame] | 4417 | InitializeFrom(S, Entity, Kind, Args, TopLevelOfInitList); |
| 4418 | } |
| 4419 | |
| 4420 | void InitializationSequence::InitializeFrom(Sema &S, |
| 4421 | const InitializedEntity &Entity, |
| 4422 | const InitializationKind &Kind, |
| 4423 | MultiExprArg Args, |
| 4424 | bool TopLevelOfInitList) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4425 | ASTContext &Context = S.Context; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4426 | |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 4427 | // Eliminate non-overload placeholder types in the arguments. We |
| 4428 | // need to do this before checking whether types are dependent |
| 4429 | // because lowering a pseudo-object expression might well give us |
| 4430 | // something of dependent type. |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4431 | for (unsigned I = 0, E = Args.size(); I != E; ++I) |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 4432 | if (Args[I]->getType()->isNonOverloadPlaceholderType()) { |
| 4433 | // FIXME: should we be doing this here? |
| 4434 | ExprResult result = S.CheckPlaceholderExpr(Args[I]); |
| 4435 | if (result.isInvalid()) { |
| 4436 | SetFailed(FK_PlaceholderType); |
| 4437 | return; |
| 4438 | } |
| 4439 | Args[I] = result.take(); |
| 4440 | } |
| 4441 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4442 | // C++0x [dcl.init]p16: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4443 | // The semantics of initializers are as follows. The destination type is |
| 4444 | // the type of the object or reference being initialized and the source |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4445 | // 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] | 4446 | // 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] | 4447 | // parenthesized list of expressions. |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4448 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4449 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4450 | if (DestType->isDependentType() || |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4451 | Expr::hasAnyTypeDependentArguments(Args)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4452 | SequenceKind = DependentSequence; |
| 4453 | return; |
| 4454 | } |
| 4455 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 4456 | // Almost everything is a normal sequence. |
| 4457 | setSequenceKind(NormalSequence); |
| 4458 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4459 | QualType SourceType; |
| 4460 | Expr *Initializer = 0; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4461 | if (Args.size() == 1) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4462 | Initializer = Args[0]; |
| 4463 | if (!isa<InitListExpr>(Initializer)) |
| 4464 | SourceType = Initializer->getType(); |
| 4465 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4466 | |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 4467 | // - If the initializer is a (non-parenthesized) braced-init-list, the |
| 4468 | // object is list-initialized (8.5.4). |
| 4469 | if (Kind.getKind() != InitializationKind::IK_Direct) { |
| 4470 | if (InitListExpr *InitList = dyn_cast_or_null<InitListExpr>(Initializer)) { |
| 4471 | TryListInitialization(S, Entity, Kind, InitList, *this); |
| 4472 | return; |
| 4473 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4474 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4475 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4476 | // - If the destination type is a reference type, see 8.5.3. |
| 4477 | if (DestType->isReferenceType()) { |
| 4478 | // C++0x [dcl.init.ref]p1: |
| 4479 | // A variable declared to be a T& or T&&, that is, "reference to type T" |
| 4480 | // (8.3.2), shall be initialized by an object, or function, of type T or |
| 4481 | // by an object that can be converted into a T. |
| 4482 | // (Therefore, multiple arguments are not permitted.) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4483 | if (Args.size() != 1) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4484 | SetFailed(FK_TooManyInitsForReference); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4485 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4486 | TryReferenceInitialization(S, Entity, Kind, Args[0], *this); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4487 | return; |
| 4488 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4489 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4490 | // - If the initializer is (), the object is value-initialized. |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4491 | if (Kind.getKind() == InitializationKind::IK_Value || |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4492 | (Kind.getKind() == InitializationKind::IK_Direct && Args.empty())) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4493 | TryValueInitialization(S, Entity, Kind, *this); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4494 | return; |
| 4495 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4496 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4497 | // Handle default initialization. |
Nick Lewycky | 7663f39 | 2010-11-20 01:29:55 +0000 | [diff] [blame] | 4498 | if (Kind.getKind() == InitializationKind::IK_Default) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4499 | TryDefaultInitialization(S, Entity, Kind, *this); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4500 | return; |
| 4501 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4502 | |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 4503 | // - If the destination type is an array of characters, an array of |
| 4504 | // char16_t, an array of char32_t, or an array of wchar_t, and the |
| 4505 | // initializer is a string literal, see 8.5.2. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4506 | // - Otherwise, if the destination type is an array, the program is |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4507 | // ill-formed. |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4508 | if (const ArrayType *DestAT = Context.getAsArrayType(DestType)) { |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 4509 | if (Initializer && isa<VariableArrayType>(DestAT)) { |
| 4510 | SetFailed(FK_VariableLengthArrayHasInitializer); |
| 4511 | return; |
| 4512 | } |
| 4513 | |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 4514 | if (Initializer) { |
| 4515 | switch (IsStringInit(Initializer, DestAT, Context)) { |
| 4516 | case SIF_None: |
| 4517 | TryStringLiteralInitialization(S, Entity, Kind, Initializer, *this); |
| 4518 | return; |
| 4519 | case SIF_NarrowStringIntoWideChar: |
| 4520 | SetFailed(FK_NarrowStringIntoWideCharArray); |
| 4521 | return; |
| 4522 | case SIF_WideStringIntoChar: |
| 4523 | SetFailed(FK_WideStringIntoCharArray); |
| 4524 | return; |
| 4525 | case SIF_IncompatWideStringIntoWideChar: |
| 4526 | SetFailed(FK_IncompatWideStringIntoWideChar); |
| 4527 | return; |
| 4528 | case SIF_Other: |
| 4529 | break; |
| 4530 | } |
John McCall | ce6c9b7 | 2011-02-21 07:22:22 +0000 | [diff] [blame] | 4531 | } |
| 4532 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4533 | // Note: as an GNU C extension, we allow initialization of an |
| 4534 | // array from a compound literal that creates an array of the same |
| 4535 | // type, so long as the initializer has no side effects. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4536 | if (!S.getLangOpts().CPlusPlus && Initializer && |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4537 | isa<CompoundLiteralExpr>(Initializer->IgnoreParens()) && |
| 4538 | Initializer->getType()->isArrayType()) { |
| 4539 | const ArrayType *SourceAT |
| 4540 | = Context.getAsArrayType(Initializer->getType()); |
| 4541 | if (!hasCompatibleArrayTypes(S.Context, DestAT, SourceAT)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4542 | SetFailed(FK_ArrayTypeMismatch); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4543 | else if (Initializer->HasSideEffects(S.Context)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4544 | SetFailed(FK_NonConstantArrayInit); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4545 | else { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4546 | AddArrayInitStep(DestType); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 4547 | } |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 4548 | } |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 4549 | // Note: as a GNU C++ extension, we allow list-initialization of a |
| 4550 | // class member of array type from a parenthesized initializer list. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4551 | else if (S.getLangOpts().CPlusPlus && |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 4552 | Entity.getKind() == InitializedEntity::EK_Member && |
| 4553 | Initializer && isa<InitListExpr>(Initializer)) { |
| 4554 | TryListInitialization(S, Entity, Kind, cast<InitListExpr>(Initializer), |
| 4555 | *this); |
| 4556 | AddParenthesizedArrayInitStep(DestType); |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 4557 | } else if (DestAT->getElementType()->isCharType()) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4558 | SetFailed(FK_ArrayNeedsInitListOrStringLiteral); |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 4559 | else if (IsWideCharCompatible(DestAT->getElementType(), Context)) |
| 4560 | SetFailed(FK_ArrayNeedsInitListOrWideStringLiteral); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4561 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4562 | SetFailed(FK_ArrayNeedsInitList); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4563 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4564 | return; |
| 4565 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4566 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4567 | // Determine whether we should consider writeback conversions for |
| 4568 | // Objective-C ARC. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4569 | bool allowObjCWritebackConversion = S.getLangOpts().ObjCAutoRefCount && |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 4570 | Entity.isParameterKind(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4571 | |
| 4572 | // We're at the end of the line for C: it's either a write-back conversion |
| 4573 | // 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] | 4574 | if (!S.getLangOpts().CPlusPlus) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4575 | // If allowed, check whether this is an Objective-C writeback conversion. |
| 4576 | if (allowObjCWritebackConversion && |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4577 | tryObjCWritebackConversion(S, *this, Entity, Initializer)) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4578 | return; |
| 4579 | } |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 4580 | |
| 4581 | if (TryOCLSamplerInitialization(S, *this, DestType, Initializer)) |
| 4582 | return; |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 4583 | |
| 4584 | if (TryOCLZeroEventInitialization(S, *this, DestType, Initializer)) |
| 4585 | return; |
| 4586 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4587 | // Handle initialization in C |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4588 | AddCAssignmentStep(DestType); |
| 4589 | MaybeProduceObjCObject(S, *this, Entity); |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 4590 | return; |
| 4591 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4592 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4593 | assert(S.getLangOpts().CPlusPlus); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4594 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4595 | // - If the destination type is a (possibly cv-qualified) class type: |
| 4596 | if (DestType->isRecordType()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4597 | // - If the initialization is direct-initialization, or if it is |
| 4598 | // copy-initialization where the cv-unqualified version of the |
| 4599 | // 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] | 4600 | // class of the destination, constructors are considered. [...] |
| 4601 | if (Kind.getKind() == InitializationKind::IK_Direct || |
| 4602 | (Kind.getKind() == InitializationKind::IK_Copy && |
| 4603 | (Context.hasSameUnqualifiedType(SourceType, DestType) || |
| 4604 | S.IsDerivedFrom(SourceType, DestType)))) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4605 | TryConstructorInitialization(S, Entity, Kind, Args, |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4606 | Entity.getType(), *this); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4607 | // - Otherwise (i.e., for the remaining copy-initialization cases), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4608 | // user-defined conversion sequences that can convert from the source |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4609 | // type to the destination type or (when a conversion function is |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4610 | // used) to a derived class thereof are enumerated as described in |
| 4611 | // 13.3.1.4, and the best one is chosen through overload resolution |
| 4612 | // (13.3). |
| 4613 | else |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4614 | TryUserDefinedConversion(S, Entity, Kind, Initializer, *this, |
| 4615 | TopLevelOfInitList); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4616 | return; |
| 4617 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4618 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4619 | if (Args.size() > 1) { |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4620 | SetFailed(FK_TooManyInitsForScalar); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4621 | return; |
| 4622 | } |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 4623 | assert(Args.size() == 1 && "Zero-argument case handled above"); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4624 | |
| 4625 | // - Otherwise, if the source type is a (possibly cv-qualified) class |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4626 | // type, conversion functions are considered. |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4627 | if (!SourceType.isNull() && SourceType->isRecordType()) { |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4628 | TryUserDefinedConversion(S, Entity, Kind, Initializer, *this, |
| 4629 | TopLevelOfInitList); |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4630 | MaybeProduceObjCObject(S, *this, Entity); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4631 | return; |
| 4632 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4633 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4634 | // - Otherwise, the initial value of the object being initialized is the |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 4635 | // (possibly converted) value of the initializer expression. Standard |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4636 | // conversions (Clause 4) will be used, if necessary, to convert the |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4637 | // initializer expression to the cv-unqualified version of the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4638 | // destination type; no user-defined conversions are considered. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4639 | |
| 4640 | ImplicitConversionSequence ICS |
| 4641 | = S.TryImplicitConversion(Initializer, Entity.getType(), |
| 4642 | /*SuppressUserConversions*/true, |
John McCall | 369371c | 2010-06-04 02:29:22 +0000 | [diff] [blame] | 4643 | /*AllowExplicitConversions*/ false, |
Douglas Gregor | 14d0aee | 2011-01-27 00:58:17 +0000 | [diff] [blame] | 4644 | /*InOverloadResolution*/ false, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4645 | /*CStyle=*/Kind.isCStyleOrFunctionalCast(), |
| 4646 | allowObjCWritebackConversion); |
| 4647 | |
| 4648 | if (ICS.isStandard() && |
| 4649 | ICS.Standard.Second == ICK_Writeback_Conversion) { |
| 4650 | // Objective-C ARC writeback conversion. |
| 4651 | |
| 4652 | // We should copy unless we're passing to an argument explicitly |
| 4653 | // marked 'out'. |
| 4654 | bool ShouldCopy = true; |
| 4655 | if (ParmVarDecl *Param = cast_or_null<ParmVarDecl>(Entity.getDecl())) |
| 4656 | ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out); |
| 4657 | |
| 4658 | // If there was an lvalue adjustment, add it as a separate conversion. |
| 4659 | if (ICS.Standard.First == ICK_Array_To_Pointer || |
| 4660 | ICS.Standard.First == ICK_Lvalue_To_Rvalue) { |
| 4661 | ImplicitConversionSequence LvalueICS; |
| 4662 | LvalueICS.setStandard(); |
| 4663 | LvalueICS.Standard.setAsIdentityConversion(); |
| 4664 | LvalueICS.Standard.setAllToTypes(ICS.Standard.getToType(0)); |
| 4665 | LvalueICS.Standard.First = ICS.Standard.First; |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4666 | AddConversionSequenceStep(LvalueICS, ICS.Standard.getToType(0)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4667 | } |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4668 | |
| 4669 | AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4670 | } else if (ICS.isBad()) { |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 4671 | DeclAccessPair dap; |
Richard Smith | 87c2932 | 2013-06-20 02:18:31 +0000 | [diff] [blame] | 4672 | if (isLibstdcxxPointerReturnFalseHack(S, Entity, Initializer)) { |
| 4673 | AddZeroInitializationStep(Entity.getType()); |
| 4674 | } else if (Initializer->getType() == Context.OverloadTy && |
| 4675 | !S.ResolveAddressOfOverloadedFunction(Initializer, DestType, |
| 4676 | false, dap)) |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4677 | SetFailed(InitializationSequence::FK_AddressOfOverloadFailed); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 4678 | else |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4679 | SetFailed(InitializationSequence::FK_ConversionFailed); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4680 | } else { |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 4681 | AddConversionSequenceStep(ICS, Entity.getType(), TopLevelOfInitList); |
John McCall | 856d379 | 2011-06-16 23:24:51 +0000 | [diff] [blame] | 4682 | |
Rafael Espindola | 12ce0a0 | 2011-07-14 22:58:04 +0000 | [diff] [blame] | 4683 | MaybeProduceObjCObject(S, *this, Entity); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 4684 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4685 | } |
| 4686 | |
| 4687 | InitializationSequence::~InitializationSequence() { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4688 | for (SmallVectorImpl<Step>::iterator Step = Steps.begin(), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4689 | StepEnd = Steps.end(); |
| 4690 | Step != StepEnd; ++Step) |
| 4691 | Step->Destroy(); |
| 4692 | } |
| 4693 | |
| 4694 | //===----------------------------------------------------------------------===// |
| 4695 | // Perform initialization |
| 4696 | //===----------------------------------------------------------------------===// |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4697 | static Sema::AssignmentAction |
Fariborz Jahanian | 3d672e4 | 2013-07-31 23:19:34 +0000 | [diff] [blame] | 4698 | getAssignmentAction(const InitializedEntity &Entity, bool Diagnose = false) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4699 | switch(Entity.getKind()) { |
| 4700 | case InitializedEntity::EK_Variable: |
| 4701 | case InitializedEntity::EK_New: |
Douglas Gregor | a3998bd | 2010-12-02 21:47:04 +0000 | [diff] [blame] | 4702 | case InitializedEntity::EK_Exception: |
| 4703 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4704 | case InitializedEntity::EK_Delegating: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4705 | return Sema::AA_Initializing; |
| 4706 | |
| 4707 | case InitializedEntity::EK_Parameter: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4708 | if (Entity.getDecl() && |
Douglas Gregor | 688fc9b | 2010-04-21 23:24:10 +0000 | [diff] [blame] | 4709 | isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext())) |
| 4710 | return Sema::AA_Sending; |
| 4711 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4712 | return Sema::AA_Passing; |
| 4713 | |
Fariborz Jahanian | 3d672e4 | 2013-07-31 23:19:34 +0000 | [diff] [blame] | 4714 | case InitializedEntity::EK_Parameter_CF_Audited: |
| 4715 | if (Entity.getDecl() && |
| 4716 | isa<ObjCMethodDecl>(Entity.getDecl()->getDeclContext())) |
| 4717 | return Sema::AA_Sending; |
| 4718 | |
| 4719 | return !Diagnose ? Sema::AA_Passing : Sema::AA_Passing_CFAudited; |
| 4720 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4721 | case InitializedEntity::EK_Result: |
| 4722 | return Sema::AA_Returning; |
| 4723 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4724 | case InitializedEntity::EK_Temporary: |
Fariborz Jahanian | f5200d6 | 2013-07-11 19:13:34 +0000 | [diff] [blame] | 4725 | case InitializedEntity::EK_RelatedResult: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4726 | // FIXME: Can we tell apart casting vs. converting? |
| 4727 | return Sema::AA_Casting; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4728 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4729 | case InitializedEntity::EK_Member: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 4730 | case InitializedEntity::EK_ArrayElement: |
| 4731 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4732 | case InitializedEntity::EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4733 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4734 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4735 | case InitializedEntity::EK_CompoundLiteralInit: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4736 | return Sema::AA_Initializing; |
| 4737 | } |
| 4738 | |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4739 | llvm_unreachable("Invalid EntityKind!"); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4740 | } |
| 4741 | |
Richard Smith | 774d8b4 | 2013-01-08 00:08:23 +0000 | [diff] [blame] | 4742 | /// \brief Whether we should bind a created object as a temporary when |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4743 | /// initializing the given entity. |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4744 | static bool shouldBindAsTemporary(const InitializedEntity &Entity) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4745 | switch (Entity.getKind()) { |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 4746 | case InitializedEntity::EK_ArrayElement: |
| 4747 | case InitializedEntity::EK_Member: |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4748 | case InitializedEntity::EK_Result: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4749 | case InitializedEntity::EK_New: |
| 4750 | case InitializedEntity::EK_Variable: |
| 4751 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4752 | case InitializedEntity::EK_Delegating: |
Anders Carlsson | d3d824d | 2010-01-23 04:34:47 +0000 | [diff] [blame] | 4753 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4754 | case InitializedEntity::EK_ComplexElement: |
Anders Carlsson | a508b7d | 2010-02-06 23:23:06 +0000 | [diff] [blame] | 4755 | case InitializedEntity::EK_Exception: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4756 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4757 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4758 | case InitializedEntity::EK_CompoundLiteralInit: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4759 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4760 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4761 | case InitializedEntity::EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 4762 | case InitializedEntity::EK_Parameter_CF_Audited: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4763 | case InitializedEntity::EK_Temporary: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 4764 | case InitializedEntity::EK_RelatedResult: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4765 | return true; |
| 4766 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4767 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4768 | llvm_unreachable("missed an InitializedEntity kind?"); |
| 4769 | } |
| 4770 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4771 | /// \brief Whether the given entity, when initialized with an object |
| 4772 | /// created for that initialization, requires destruction. |
| 4773 | static bool shouldDestroyTemporary(const InitializedEntity &Entity) { |
| 4774 | switch (Entity.getKind()) { |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4775 | case InitializedEntity::EK_Result: |
| 4776 | case InitializedEntity::EK_New: |
| 4777 | case InitializedEntity::EK_Base: |
Sean Hunt | 059ce0d | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 4778 | case InitializedEntity::EK_Delegating: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4779 | case InitializedEntity::EK_VectorElement: |
Eli Friedman | 0c706c2 | 2011-09-19 23:17:44 +0000 | [diff] [blame] | 4780 | case InitializedEntity::EK_ComplexElement: |
Fariborz Jahanian | 310b1c4 | 2010-06-07 16:14:00 +0000 | [diff] [blame] | 4781 | case InitializedEntity::EK_BlockElement: |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4782 | case InitializedEntity::EK_LambdaCapture: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4783 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4784 | |
Richard Smith | 774d8b4 | 2013-01-08 00:08:23 +0000 | [diff] [blame] | 4785 | case InitializedEntity::EK_Member: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4786 | case InitializedEntity::EK_Variable: |
| 4787 | case InitializedEntity::EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 4788 | case InitializedEntity::EK_Parameter_CF_Audited: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4789 | case InitializedEntity::EK_Temporary: |
| 4790 | case InitializedEntity::EK_ArrayElement: |
| 4791 | case InitializedEntity::EK_Exception: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4792 | case InitializedEntity::EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 4793 | case InitializedEntity::EK_RelatedResult: |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4794 | return true; |
| 4795 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4796 | |
| 4797 | llvm_unreachable("missed an InitializedEntity kind?"); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 4798 | } |
| 4799 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4800 | /// \brief Look for copy and move constructors and constructor templates, for |
| 4801 | /// copying an object via direct-initialization (per C++11 [dcl.init]p16). |
| 4802 | static void LookupCopyAndMoveConstructors(Sema &S, |
| 4803 | OverloadCandidateSet &CandidateSet, |
| 4804 | CXXRecordDecl *Class, |
| 4805 | Expr *CurInitExpr) { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4806 | DeclContext::lookup_result R = S.LookupConstructors(Class); |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4807 | // The container holding the constructors can under certain conditions |
| 4808 | // be changed while iterating (e.g. because of deserialization). |
| 4809 | // To be safe we copy the lookup results to a new container. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 4810 | SmallVector<NamedDecl*, 16> Ctors(R.begin(), R.end()); |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 4811 | for (SmallVectorImpl<NamedDecl *>::iterator |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4812 | CI = Ctors.begin(), CE = Ctors.end(); CI != CE; ++CI) { |
| 4813 | NamedDecl *D = *CI; |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4814 | CXXConstructorDecl *Constructor = 0; |
| 4815 | |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4816 | if ((Constructor = dyn_cast<CXXConstructorDecl>(D))) { |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4817 | // Handle copy/moveconstructors, only. |
| 4818 | if (!Constructor || Constructor->isInvalidDecl() || |
| 4819 | !Constructor->isCopyOrMoveConstructor() || |
| 4820 | !Constructor->isConvertingConstructor(/*AllowExplicit=*/true)) |
| 4821 | continue; |
| 4822 | |
| 4823 | DeclAccessPair FoundDecl |
| 4824 | = DeclAccessPair::make(Constructor, Constructor->getAccess()); |
| 4825 | S.AddOverloadCandidate(Constructor, FoundDecl, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4826 | CurInitExpr, CandidateSet); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4827 | continue; |
| 4828 | } |
| 4829 | |
| 4830 | // Handle constructor templates. |
Argyrios Kyrtzidis | 8682b93 | 2012-11-13 05:07:23 +0000 | [diff] [blame] | 4831 | FunctionTemplateDecl *ConstructorTmpl = cast<FunctionTemplateDecl>(D); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4832 | if (ConstructorTmpl->isInvalidDecl()) |
| 4833 | continue; |
| 4834 | |
| 4835 | Constructor = cast<CXXConstructorDecl>( |
| 4836 | ConstructorTmpl->getTemplatedDecl()); |
| 4837 | if (!Constructor->isConvertingConstructor(/*AllowExplicit=*/true)) |
| 4838 | continue; |
| 4839 | |
| 4840 | // FIXME: Do we need to limit this to copy-constructor-like |
| 4841 | // candidates? |
| 4842 | DeclAccessPair FoundDecl |
| 4843 | = DeclAccessPair::make(ConstructorTmpl, ConstructorTmpl->getAccess()); |
| 4844 | S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl, 0, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4845 | CurInitExpr, CandidateSet, true); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4846 | } |
| 4847 | } |
| 4848 | |
| 4849 | /// \brief Get the location at which initialization diagnostics should appear. |
| 4850 | static SourceLocation getInitializationLoc(const InitializedEntity &Entity, |
| 4851 | Expr *Initializer) { |
| 4852 | switch (Entity.getKind()) { |
| 4853 | case InitializedEntity::EK_Result: |
| 4854 | return Entity.getReturnLoc(); |
| 4855 | |
| 4856 | case InitializedEntity::EK_Exception: |
| 4857 | return Entity.getThrowLoc(); |
| 4858 | |
| 4859 | case InitializedEntity::EK_Variable: |
| 4860 | return Entity.getDecl()->getLocation(); |
| 4861 | |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 4862 | case InitializedEntity::EK_LambdaCapture: |
| 4863 | return Entity.getCaptureLoc(); |
| 4864 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4865 | case InitializedEntity::EK_ArrayElement: |
| 4866 | case InitializedEntity::EK_Member: |
| 4867 | case InitializedEntity::EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 4868 | case InitializedEntity::EK_Parameter_CF_Audited: |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4869 | case InitializedEntity::EK_Temporary: |
| 4870 | case InitializedEntity::EK_New: |
| 4871 | case InitializedEntity::EK_Base: |
| 4872 | case InitializedEntity::EK_Delegating: |
| 4873 | case InitializedEntity::EK_VectorElement: |
| 4874 | case InitializedEntity::EK_ComplexElement: |
| 4875 | case InitializedEntity::EK_BlockElement: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 4876 | case InitializedEntity::EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 4877 | case InitializedEntity::EK_RelatedResult: |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4878 | return Initializer->getLocStart(); |
| 4879 | } |
| 4880 | llvm_unreachable("missed an InitializedEntity kind?"); |
| 4881 | } |
| 4882 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4883 | /// \brief Make a (potentially elidable) temporary copy of the object |
| 4884 | /// provided by the given initializer by calling the appropriate copy |
| 4885 | /// constructor. |
| 4886 | /// |
| 4887 | /// \param S The Sema object used for type-checking. |
| 4888 | /// |
Abramo Bagnara | 63e7d25 | 2011-01-27 19:55:10 +0000 | [diff] [blame] | 4889 | /// \param T The type of the temporary object, which must either be |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4890 | /// the type of the initializer expression or a superclass thereof. |
| 4891 | /// |
James Dennett | 1dfbd92 | 2012-06-14 21:40:34 +0000 | [diff] [blame] | 4892 | /// \param Entity The entity being initialized. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4893 | /// |
| 4894 | /// \param CurInit The initializer expression. |
| 4895 | /// |
| 4896 | /// \param IsExtraneousCopy Whether this is an "extraneous" copy that |
| 4897 | /// is permitted in C++03 (but not C++0x) when binding a reference to |
| 4898 | /// an rvalue. |
| 4899 | /// |
| 4900 | /// \returns An expression that copies the initializer expression into |
| 4901 | /// a temporary object, or an error expression if a copy could not be |
| 4902 | /// created. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4903 | static ExprResult CopyObject(Sema &S, |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 4904 | QualType T, |
| 4905 | const InitializedEntity &Entity, |
| 4906 | ExprResult CurInit, |
| 4907 | bool IsExtraneousCopy) { |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4908 | // Determine which class type we're copying to. |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 4909 | Expr *CurInitExpr = (Expr *)CurInit.get(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4910 | CXXRecordDecl *Class = 0; |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4911 | if (const RecordType *Record = T->getAs<RecordType>()) |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4912 | Class = cast<CXXRecordDecl>(Record->getDecl()); |
| 4913 | if (!Class) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4914 | return CurInit; |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4915 | |
Douglas Gregor | f5d8f46 | 2011-01-21 18:05:27 +0000 | [diff] [blame] | 4916 | // C++0x [class.copy]p32: |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4917 | // When certain criteria are met, an implementation is allowed to |
| 4918 | // omit the copy/move construction of a class object, even if the |
| 4919 | // copy/move constructor and/or destructor for the object have |
| 4920 | // side effects. [...] |
| 4921 | // - when a temporary class object that has not been bound to a |
| 4922 | // reference (12.2) would be copied/moved to a class object |
| 4923 | // with the same cv-unqualified type, the copy/move operation |
| 4924 | // can be omitted by constructing the temporary object |
| 4925 | // directly into the target of the omitted copy/move |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4926 | // |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 4927 | // Note that the other three bullets are handled elsewhere. Copy |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 4928 | // elision for return statements and throw expressions are handled as part |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4929 | // of constructor initialization, while copy elision for exception handlers |
Douglas Gregor | 3c9034c | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 4930 | // is handled by the run-time. |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 4931 | bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4932 | SourceLocation Loc = getInitializationLoc(Entity, CurInit.get()); |
Douglas Gregor | f86fcb3 | 2010-04-24 21:09:25 +0000 | [diff] [blame] | 4933 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4934 | // Make sure that the type we are copying is complete. |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4935 | if (S.RequireCompleteType(Loc, T, diag::err_temp_copy_incomplete)) |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4936 | return CurInit; |
Douglas Gregor | f86fcb3 | 2010-04-24 21:09:25 +0000 | [diff] [blame] | 4937 | |
Douglas Gregor | cc15f01 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 4938 | // Perform overload resolution using the class's copy/move constructors. |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4939 | // Only consider constructors and constructor templates. Per |
| 4940 | // C++0x [dcl.init]p16, second bullet to class types, this initialization |
| 4941 | // is direct-initialization. |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 4942 | OverloadCandidateSet CandidateSet(Loc); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 4943 | LookupCopyAndMoveConstructors(S, CandidateSet, Class, CurInitExpr); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4944 | |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 4945 | bool HadMultipleCandidates = (CandidateSet.size() > 1); |
| 4946 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4947 | OverloadCandidateSet::iterator Best; |
Chandler Carruth | 25ca421 | 2011-02-25 19:41:05 +0000 | [diff] [blame] | 4948 | switch (CandidateSet.BestViableFunction(S, Loc, Best)) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4949 | case OR_Success: |
| 4950 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4951 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4952 | case OR_No_Viable_Function: |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4953 | S.Diag(Loc, IsExtraneousCopy && !S.isSFINAEContext() |
| 4954 | ? diag::ext_rvalue_to_reference_temp_copy_no_viable |
| 4955 | : diag::err_temp_copy_no_viable) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4956 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4957 | << CurInitExpr->getSourceRange(); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4958 | CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr); |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4959 | if (!IsExtraneousCopy || S.isSFINAEContext()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4960 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 4961 | return CurInit; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4962 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4963 | case OR_Ambiguous: |
| 4964 | S.Diag(Loc, diag::err_temp_copy_ambiguous) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4965 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4966 | << CurInitExpr->getSourceRange(); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 4967 | CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4968 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4969 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4970 | case OR_Deleted: |
| 4971 | S.Diag(Loc, diag::err_temp_copy_deleted) |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 4972 | << (int)Entity.getKind() << CurInitExpr->getType() |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4973 | << CurInitExpr->getSourceRange(); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 4974 | S.NoteDeletedFunction(Best->Function); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 4975 | return ExprError(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 4976 | } |
| 4977 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4978 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function); |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 4979 | SmallVector<Expr*, 8> ConstructorArgs; |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 4980 | CurInit.release(); // Ownership transferred into MultiExprArg, below. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4981 | |
Anders Carlsson | 9a68a67 | 2010-04-21 18:47:17 +0000 | [diff] [blame] | 4982 | S.CheckConstructorAccess(Loc, Constructor, Entity, |
Jeffrey Yasskin | 57d12fd | 2010-06-07 15:58:05 +0000 | [diff] [blame] | 4983 | Best->FoundDecl.getAccess(), IsExtraneousCopy); |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4984 | |
| 4985 | if (IsExtraneousCopy) { |
| 4986 | // If this is a totally extraneous copy for C++03 reference |
| 4987 | // binding purposes, just return the original initialization |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 4988 | // expression. We don't generate an (elided) copy operation here |
| 4989 | // because doing so would require us to pass down a flag to avoid |
| 4990 | // infinite recursion, where each step adds another extraneous, |
| 4991 | // elidable copy. |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 4992 | |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 4993 | // Instantiate the default arguments of any extra parameters in |
| 4994 | // the selected copy constructor, as if we were going to create a |
| 4995 | // proper call to the copy constructor. |
| 4996 | for (unsigned I = 1, N = Constructor->getNumParams(); I != N; ++I) { |
| 4997 | ParmVarDecl *Parm = Constructor->getParamDecl(I); |
| 4998 | if (S.RequireCompleteType(Loc, Parm->getType(), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4999 | diag::err_call_incomplete_argument)) |
Douglas Gregor | 2559a70 | 2010-04-18 07:57:34 +0000 | [diff] [blame] | 5000 | break; |
| 5001 | |
| 5002 | // Build the default argument expression; we don't actually care |
| 5003 | // if this succeeds or not, because this routine will complain |
| 5004 | // if there was a problem. |
| 5005 | S.BuildCXXDefaultArgExpr(Loc, Constructor, Parm); |
| 5006 | } |
| 5007 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5008 | return S.Owned(CurInitExpr); |
| 5009 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5010 | |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 5011 | // Determine the arguments required to actually perform the |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5012 | // constructor call (we might have derived-to-base conversions, or |
| 5013 | // the copy constructor may have default arguments). |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5014 | if (S.CompleteConstructorCall(Constructor, CurInitExpr, Loc, ConstructorArgs)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5015 | return ExprError(); |
Douglas Gregor | 3fbaf3e | 2010-04-17 22:01:05 +0000 | [diff] [blame] | 5016 | |
Douglas Gregor | b86cf0c | 2010-04-25 00:55:24 +0000 | [diff] [blame] | 5017 | // Actually perform the constructor call. |
| 5018 | CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5019 | ConstructorArgs, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5020 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5021 | /*ListInit*/ false, |
John McCall | 7a1fad3 | 2010-08-24 07:32:53 +0000 | [diff] [blame] | 5022 | /*ZeroInit*/ false, |
Chandler Carruth | 428edaf | 2010-10-25 08:47:36 +0000 | [diff] [blame] | 5023 | CXXConstructExpr::CK_Complete, |
| 5024 | SourceRange()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5025 | |
Douglas Gregor | b86cf0c | 2010-04-25 00:55:24 +0000 | [diff] [blame] | 5026 | // If we're supposed to bind temporaries, do so. |
| 5027 | if (!CurInit.isInvalid() && shouldBindAsTemporary(Entity)) |
| 5028 | CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>()); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5029 | return CurInit; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5030 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5031 | |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5032 | /// \brief Check whether elidable copy construction for binding a reference to |
| 5033 | /// a temporary would have succeeded if we were building in C++98 mode, for |
| 5034 | /// -Wc++98-compat. |
| 5035 | static void CheckCXX98CompatAccessibleCopy(Sema &S, |
| 5036 | const InitializedEntity &Entity, |
| 5037 | Expr *CurInitExpr) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5038 | assert(S.getLangOpts().CPlusPlus11); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5039 | |
| 5040 | const RecordType *Record = CurInitExpr->getType()->getAs<RecordType>(); |
| 5041 | if (!Record) |
| 5042 | return; |
| 5043 | |
| 5044 | SourceLocation Loc = getInitializationLoc(Entity, CurInitExpr); |
| 5045 | if (S.Diags.getDiagnosticLevel(diag::warn_cxx98_compat_temp_copy, Loc) |
| 5046 | == DiagnosticsEngine::Ignored) |
| 5047 | return; |
| 5048 | |
| 5049 | // Find constructors which would have been considered. |
| 5050 | OverloadCandidateSet CandidateSet(Loc); |
| 5051 | LookupCopyAndMoveConstructors( |
| 5052 | S, CandidateSet, cast<CXXRecordDecl>(Record->getDecl()), CurInitExpr); |
| 5053 | |
| 5054 | // Perform overload resolution. |
| 5055 | OverloadCandidateSet::iterator Best; |
| 5056 | OverloadingResult OR = CandidateSet.BestViableFunction(S, Loc, Best); |
| 5057 | |
| 5058 | PartialDiagnostic Diag = S.PDiag(diag::warn_cxx98_compat_temp_copy) |
| 5059 | << OR << (int)Entity.getKind() << CurInitExpr->getType() |
| 5060 | << CurInitExpr->getSourceRange(); |
| 5061 | |
| 5062 | switch (OR) { |
| 5063 | case OR_Success: |
| 5064 | S.CheckConstructorAccess(Loc, cast<CXXConstructorDecl>(Best->Function), |
John McCall | b9abd872 | 2012-04-07 03:04:20 +0000 | [diff] [blame] | 5065 | Entity, Best->FoundDecl.getAccess(), Diag); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5066 | // FIXME: Check default arguments as far as that's possible. |
| 5067 | break; |
| 5068 | |
| 5069 | case OR_No_Viable_Function: |
| 5070 | S.Diag(Loc, Diag); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5071 | CandidateSet.NoteCandidates(S, OCD_AllCandidates, CurInitExpr); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5072 | break; |
| 5073 | |
| 5074 | case OR_Ambiguous: |
| 5075 | S.Diag(Loc, Diag); |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5076 | CandidateSet.NoteCandidates(S, OCD_ViableCandidates, CurInitExpr); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5077 | break; |
| 5078 | |
| 5079 | case OR_Deleted: |
| 5080 | S.Diag(Loc, Diag); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 5081 | S.NoteDeletedFunction(Best->Function); |
Richard Smith | 83da2e7 | 2011-10-19 16:55:56 +0000 | [diff] [blame] | 5082 | break; |
| 5083 | } |
| 5084 | } |
| 5085 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5086 | void InitializationSequence::PrintInitLocationNote(Sema &S, |
| 5087 | const InitializedEntity &Entity) { |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 5088 | if (Entity.isParameterKind() && Entity.getDecl()) { |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5089 | if (Entity.getDecl()->getLocation().isInvalid()) |
| 5090 | return; |
| 5091 | |
| 5092 | if (Entity.getDecl()->getDeclName()) |
| 5093 | S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_named_here) |
| 5094 | << Entity.getDecl()->getDeclName(); |
| 5095 | else |
| 5096 | S.Diag(Entity.getDecl()->getLocation(), diag::note_parameter_here); |
| 5097 | } |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 5098 | else if (Entity.getKind() == InitializedEntity::EK_RelatedResult && |
| 5099 | Entity.getMethodDecl()) |
| 5100 | S.Diag(Entity.getMethodDecl()->getLocation(), |
| 5101 | diag::note_method_return_type_change) |
| 5102 | << Entity.getMethodDecl()->getDeclName(); |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5103 | } |
| 5104 | |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 5105 | static bool isReferenceBinding(const InitializationSequence::Step &s) { |
| 5106 | return s.Kind == InitializationSequence::SK_BindReference || |
| 5107 | s.Kind == InitializationSequence::SK_BindReferenceToTemporary; |
| 5108 | } |
| 5109 | |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 5110 | /// Returns true if the parameters describe a constructor initialization of |
| 5111 | /// an explicit temporary object, e.g. "Point(x, y)". |
| 5112 | static bool isExplicitTemporary(const InitializedEntity &Entity, |
| 5113 | const InitializationKind &Kind, |
| 5114 | unsigned NumArgs) { |
| 5115 | switch (Entity.getKind()) { |
| 5116 | case InitializedEntity::EK_Temporary: |
| 5117 | case InitializedEntity::EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 5118 | case InitializedEntity::EK_RelatedResult: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 5119 | break; |
| 5120 | default: |
| 5121 | return false; |
| 5122 | } |
| 5123 | |
| 5124 | switch (Kind.getKind()) { |
| 5125 | case InitializationKind::IK_DirectList: |
| 5126 | return true; |
| 5127 | // FIXME: Hack to work around cast weirdness. |
| 5128 | case InitializationKind::IK_Direct: |
| 5129 | case InitializationKind::IK_Value: |
| 5130 | return NumArgs != 1; |
| 5131 | default: |
| 5132 | return false; |
| 5133 | } |
| 5134 | } |
| 5135 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5136 | static ExprResult |
| 5137 | PerformConstructorInitialization(Sema &S, |
| 5138 | const InitializedEntity &Entity, |
| 5139 | const InitializationKind &Kind, |
| 5140 | MultiExprArg Args, |
| 5141 | const InitializationSequence::Step& Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5142 | bool &ConstructorInitRequiresZeroInit, |
Enea Zaffanella | 1245a54 | 2013-09-07 05:49:53 +0000 | [diff] [blame] | 5143 | bool IsListInitialization, |
| 5144 | SourceLocation LBraceLoc, |
| 5145 | SourceLocation RBraceLoc) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5146 | unsigned NumArgs = Args.size(); |
| 5147 | CXXConstructorDecl *Constructor |
| 5148 | = cast<CXXConstructorDecl>(Step.Function.Function); |
| 5149 | bool HadMultipleCandidates = Step.Function.HadMultipleCandidates; |
| 5150 | |
| 5151 | // Build a call to the selected constructor. |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 5152 | SmallVector<Expr*, 8> ConstructorArgs; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5153 | SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid()) |
| 5154 | ? Kind.getEqualLoc() |
| 5155 | : Kind.getLocation(); |
| 5156 | |
| 5157 | if (Kind.getKind() == InitializationKind::IK_Default) { |
| 5158 | // Force even a trivial, implicit default constructor to be |
| 5159 | // semantically checked. We do this explicitly because we don't build |
| 5160 | // the definition for completely trivial constructors. |
Matt Beaumont-Gay | 28e4702 | 2012-02-24 08:37:56 +0000 | [diff] [blame] | 5161 | assert(Constructor->getParent() && "No parent class for constructor."); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5162 | if (Constructor->isDefaulted() && Constructor->isDefaultConstructor() && |
Douglas Gregor | 5d86f61 | 2012-02-24 07:48:37 +0000 | [diff] [blame] | 5163 | Constructor->isTrivial() && !Constructor->isUsed(false)) |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5164 | S.DefineImplicitDefaultConstructor(Loc, Constructor); |
| 5165 | } |
| 5166 | |
| 5167 | ExprResult CurInit = S.Owned((Expr *)0); |
| 5168 | |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 5169 | // C++ [over.match.copy]p1: |
| 5170 | // - When initializing a temporary to be bound to the first parameter |
| 5171 | // of a constructor that takes a reference to possibly cv-qualified |
| 5172 | // T as its first argument, called with a single argument in the |
| 5173 | // context of direct-initialization, explicit conversion functions |
| 5174 | // are also considered. |
| 5175 | bool AllowExplicitConv = Kind.AllowExplicit() && !Kind.isCopyInit() && |
| 5176 | Args.size() == 1 && |
| 5177 | Constructor->isCopyOrMoveConstructor(); |
| 5178 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5179 | // Determine the arguments required to actually perform the constructor |
| 5180 | // call. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5181 | if (S.CompleteConstructorCall(Constructor, Args, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 5182 | Loc, ConstructorArgs, |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 5183 | AllowExplicitConv, |
| 5184 | IsListInitialization)) |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5185 | return ExprError(); |
| 5186 | |
| 5187 | |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 5188 | if (isExplicitTemporary(Entity, Kind, NumArgs)) { |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5189 | // An explicitly-constructed temporary, e.g., X(1, 2). |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 5190 | S.MarkFunctionReferenced(Loc, Constructor); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5191 | if (S.DiagnoseUseOfDecl(Constructor, Loc)) |
| 5192 | return ExprError(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5193 | |
| 5194 | TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); |
| 5195 | if (!TSInfo) |
| 5196 | TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc); |
Enea Zaffanella | 1245a54 | 2013-09-07 05:49:53 +0000 | [diff] [blame] | 5197 | SourceRange ParenOrBraceRange = |
| 5198 | (Kind.getKind() == InitializationKind::IK_DirectList) |
| 5199 | ? SourceRange(LBraceLoc, RBraceLoc) |
| 5200 | : Kind.getParenRange(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5201 | |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5202 | CurInit = S.Owned( |
| 5203 | new (S.Context) CXXTemporaryObjectExpr(S.Context, Constructor, |
| 5204 | TSInfo, ConstructorArgs, |
Enea Zaffanella | 1245a54 | 2013-09-07 05:49:53 +0000 | [diff] [blame] | 5205 | ParenOrBraceRange, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5206 | HadMultipleCandidates, |
Enea Zaffanella | 14dcaa9 | 2013-09-07 11:22:02 +0000 | [diff] [blame] | 5207 | IsListInitialization, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5208 | ConstructorInitRequiresZeroInit)); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5209 | } else { |
| 5210 | CXXConstructExpr::ConstructionKind ConstructKind = |
| 5211 | CXXConstructExpr::CK_Complete; |
| 5212 | |
| 5213 | if (Entity.getKind() == InitializedEntity::EK_Base) { |
| 5214 | ConstructKind = Entity.getBaseSpecifier()->isVirtual() ? |
| 5215 | CXXConstructExpr::CK_VirtualBase : |
| 5216 | CXXConstructExpr::CK_NonVirtualBase; |
| 5217 | } else if (Entity.getKind() == InitializedEntity::EK_Delegating) { |
| 5218 | ConstructKind = CXXConstructExpr::CK_Delegating; |
| 5219 | } |
| 5220 | |
| 5221 | // Only get the parenthesis range if it is a direct construction. |
| 5222 | SourceRange parenRange = |
| 5223 | Kind.getKind() == InitializationKind::IK_Direct ? |
| 5224 | Kind.getParenRange() : SourceRange(); |
| 5225 | |
| 5226 | // If the entity allows NRVO, mark the construction as elidable |
| 5227 | // unconditionally. |
| 5228 | if (Entity.allowsNRVO()) |
| 5229 | CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(), |
| 5230 | Constructor, /*Elidable=*/true, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5231 | ConstructorArgs, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5232 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5233 | IsListInitialization, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5234 | ConstructorInitRequiresZeroInit, |
| 5235 | ConstructKind, |
| 5236 | parenRange); |
| 5237 | else |
| 5238 | CurInit = S.BuildCXXConstructExpr(Loc, Entity.getType(), |
| 5239 | Constructor, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5240 | ConstructorArgs, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5241 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5242 | IsListInitialization, |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5243 | ConstructorInitRequiresZeroInit, |
| 5244 | ConstructKind, |
| 5245 | parenRange); |
| 5246 | } |
| 5247 | if (CurInit.isInvalid()) |
| 5248 | return ExprError(); |
| 5249 | |
| 5250 | // Only check access if all of that succeeded. |
| 5251 | S.CheckConstructorAccess(Loc, Constructor, Entity, |
| 5252 | Step.Function.FoundDecl.getAccess()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5253 | if (S.DiagnoseUseOfDecl(Step.Function.FoundDecl, Loc)) |
| 5254 | return ExprError(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5255 | |
| 5256 | if (shouldBindAsTemporary(Entity)) |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5257 | CurInit = S.MaybeBindToTemporary(CurInit.take()); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5258 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5259 | return CurInit; |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5260 | } |
| 5261 | |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5262 | /// Determine whether the specified InitializedEntity definitely has a lifetime |
| 5263 | /// longer than the current full-expression. Conservatively returns false if |
| 5264 | /// it's unclear. |
| 5265 | static bool |
| 5266 | InitializedEntityOutlivesFullExpression(const InitializedEntity &Entity) { |
| 5267 | const InitializedEntity *Top = &Entity; |
| 5268 | while (Top->getParent()) |
| 5269 | Top = Top->getParent(); |
| 5270 | |
| 5271 | switch (Top->getKind()) { |
| 5272 | case InitializedEntity::EK_Variable: |
| 5273 | case InitializedEntity::EK_Result: |
| 5274 | case InitializedEntity::EK_Exception: |
| 5275 | case InitializedEntity::EK_Member: |
| 5276 | case InitializedEntity::EK_New: |
| 5277 | case InitializedEntity::EK_Base: |
| 5278 | case InitializedEntity::EK_Delegating: |
| 5279 | return true; |
| 5280 | |
| 5281 | case InitializedEntity::EK_ArrayElement: |
| 5282 | case InitializedEntity::EK_VectorElement: |
| 5283 | case InitializedEntity::EK_BlockElement: |
| 5284 | case InitializedEntity::EK_ComplexElement: |
| 5285 | // Could not determine what the full initialization is. Assume it might not |
| 5286 | // outlive the full-expression. |
| 5287 | return false; |
| 5288 | |
| 5289 | case InitializedEntity::EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 5290 | case InitializedEntity::EK_Parameter_CF_Audited: |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5291 | case InitializedEntity::EK_Temporary: |
| 5292 | case InitializedEntity::EK_LambdaCapture: |
Jordan Rose | 2624b81 | 2013-05-06 16:48:12 +0000 | [diff] [blame] | 5293 | case InitializedEntity::EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 5294 | case InitializedEntity::EK_RelatedResult: |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5295 | // The entity being initialized might not outlive the full-expression. |
| 5296 | return false; |
| 5297 | } |
| 5298 | |
| 5299 | llvm_unreachable("unknown entity kind"); |
| 5300 | } |
| 5301 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5302 | /// Determine the declaration which an initialized entity ultimately refers to, |
| 5303 | /// for the purpose of lifetime-extending a temporary bound to a reference in |
| 5304 | /// the initialization of \p Entity. |
| 5305 | static const ValueDecl * |
| 5306 | getDeclForTemporaryLifetimeExtension(const InitializedEntity &Entity, |
| 5307 | const ValueDecl *FallbackDecl = 0) { |
| 5308 | // C++11 [class.temporary]p5: |
| 5309 | switch (Entity.getKind()) { |
| 5310 | case InitializedEntity::EK_Variable: |
| 5311 | // The temporary [...] persists for the lifetime of the reference |
| 5312 | return Entity.getDecl(); |
| 5313 | |
| 5314 | case InitializedEntity::EK_Member: |
| 5315 | // For subobjects, we look at the complete object. |
| 5316 | if (Entity.getParent()) |
| 5317 | return getDeclForTemporaryLifetimeExtension(*Entity.getParent(), |
| 5318 | Entity.getDecl()); |
| 5319 | |
| 5320 | // except: |
| 5321 | // -- A temporary bound to a reference member in a constructor's |
| 5322 | // ctor-initializer persists until the constructor exits. |
| 5323 | return Entity.getDecl(); |
| 5324 | |
| 5325 | case InitializedEntity::EK_Parameter: |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 5326 | case InitializedEntity::EK_Parameter_CF_Audited: |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5327 | // -- A temporary bound to a reference parameter in a function call |
| 5328 | // persists until the completion of the full-expression containing |
| 5329 | // the call. |
| 5330 | case InitializedEntity::EK_Result: |
| 5331 | // -- The lifetime of a temporary bound to the returned value in a |
| 5332 | // function return statement is not extended; the temporary is |
| 5333 | // destroyed at the end of the full-expression in the return statement. |
| 5334 | case InitializedEntity::EK_New: |
| 5335 | // -- A temporary bound to a reference in a new-initializer persists |
| 5336 | // until the completion of the full-expression containing the |
| 5337 | // new-initializer. |
| 5338 | return 0; |
| 5339 | |
| 5340 | case InitializedEntity::EK_Temporary: |
| 5341 | case InitializedEntity::EK_CompoundLiteralInit: |
Fariborz Jahanian | f92a509 | 2013-07-11 16:48:06 +0000 | [diff] [blame] | 5342 | case InitializedEntity::EK_RelatedResult: |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5343 | // We don't yet know the storage duration of the surrounding temporary. |
| 5344 | // Assume it's got full-expression duration for now, it will patch up our |
| 5345 | // storage duration if that's not correct. |
| 5346 | return 0; |
| 5347 | |
| 5348 | case InitializedEntity::EK_ArrayElement: |
| 5349 | // For subobjects, we look at the complete object. |
| 5350 | return getDeclForTemporaryLifetimeExtension(*Entity.getParent(), |
| 5351 | FallbackDecl); |
| 5352 | |
| 5353 | case InitializedEntity::EK_Base: |
| 5354 | case InitializedEntity::EK_Delegating: |
| 5355 | // We can reach this case for aggregate initialization in a constructor: |
| 5356 | // struct A { int &&r; }; |
| 5357 | // struct B : A { B() : A{0} {} }; |
| 5358 | // In this case, use the innermost field decl as the context. |
| 5359 | return FallbackDecl; |
| 5360 | |
| 5361 | case InitializedEntity::EK_BlockElement: |
| 5362 | case InitializedEntity::EK_LambdaCapture: |
| 5363 | case InitializedEntity::EK_Exception: |
| 5364 | case InitializedEntity::EK_VectorElement: |
| 5365 | case InitializedEntity::EK_ComplexElement: |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5366 | return 0; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5367 | } |
Benjamin Kramer | 6f773e8 | 2013-06-05 15:37:50 +0000 | [diff] [blame] | 5368 | llvm_unreachable("unknown entity kind"); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5369 | } |
| 5370 | |
| 5371 | static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD); |
| 5372 | |
| 5373 | /// Update a glvalue expression that is used as the initializer of a reference |
| 5374 | /// to note that its lifetime is extended. |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5375 | /// \return \c true if any temporary had its lifetime extended. |
| 5376 | static bool performReferenceExtension(Expr *Init, const ValueDecl *ExtendingD) { |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5377 | if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) { |
| 5378 | if (ILE->getNumInits() == 1 && ILE->isGLValue()) { |
| 5379 | // This is just redundant braces around an initializer. Step over it. |
| 5380 | Init = ILE->getInit(0); |
| 5381 | } |
| 5382 | } |
| 5383 | |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5384 | // Walk past any constructs which we can lifetime-extend across. |
| 5385 | Expr *Old; |
| 5386 | do { |
| 5387 | Old = Init; |
| 5388 | |
| 5389 | // Step over any subobject adjustments; we may have a materialized |
| 5390 | // temporary inside them. |
| 5391 | SmallVector<const Expr *, 2> CommaLHSs; |
| 5392 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 5393 | Init = const_cast<Expr *>( |
| 5394 | Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 5395 | |
| 5396 | // Per current approach for DR1376, look through casts to reference type |
| 5397 | // when performing lifetime extension. |
| 5398 | if (CastExpr *CE = dyn_cast<CastExpr>(Init)) |
| 5399 | if (CE->getSubExpr()->isGLValue()) |
| 5400 | Init = CE->getSubExpr(); |
| 5401 | |
| 5402 | // FIXME: Per DR1213, subscripting on an array temporary produces an xvalue. |
| 5403 | // It's unclear if binding a reference to that xvalue extends the array |
| 5404 | // temporary. |
| 5405 | } while (Init != Old); |
| 5406 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5407 | if (MaterializeTemporaryExpr *ME = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 5408 | // Update the storage duration of the materialized temporary. |
| 5409 | // FIXME: Rebuild the expression instead of mutating it. |
| 5410 | ME->setExtendingDecl(ExtendingD); |
| 5411 | performLifetimeExtension(ME->GetTemporaryExpr(), ExtendingD); |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5412 | return true; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5413 | } |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5414 | |
| 5415 | return false; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5416 | } |
| 5417 | |
| 5418 | /// Update a prvalue expression that is going to be materialized as a |
| 5419 | /// lifetime-extended temporary. |
| 5420 | static void performLifetimeExtension(Expr *Init, const ValueDecl *ExtendingD) { |
| 5421 | // Dig out the expression which constructs the extended temporary. |
| 5422 | SmallVector<const Expr *, 2> CommaLHSs; |
| 5423 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 5424 | Init = const_cast<Expr *>( |
| 5425 | Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 5426 | |
Richard Smith | 8a07cd3 | 2013-06-12 20:42:33 +0000 | [diff] [blame] | 5427 | if (CXXBindTemporaryExpr *BTE = dyn_cast<CXXBindTemporaryExpr>(Init)) |
| 5428 | Init = BTE->getSubExpr(); |
| 5429 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5430 | if (CXXStdInitializerListExpr *ILE = |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5431 | dyn_cast<CXXStdInitializerListExpr>(Init)) { |
| 5432 | performReferenceExtension(ILE->getSubExpr(), ExtendingD); |
| 5433 | return; |
| 5434 | } |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5435 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5436 | if (InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) { |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5437 | if (ILE->getType()->isArrayType()) { |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5438 | for (unsigned I = 0, N = ILE->getNumInits(); I != N; ++I) |
| 5439 | performLifetimeExtension(ILE->getInit(I), ExtendingD); |
| 5440 | return; |
| 5441 | } |
| 5442 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5443 | if (CXXRecordDecl *RD = ILE->getType()->getAsCXXRecordDecl()) { |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5444 | assert(RD->isAggregate() && "aggregate init on non-aggregate"); |
| 5445 | |
| 5446 | // If we lifetime-extend a braced initializer which is initializing an |
| 5447 | // aggregate, and that aggregate contains reference members which are |
| 5448 | // bound to temporaries, those temporaries are also lifetime-extended. |
| 5449 | if (RD->isUnion() && ILE->getInitializedFieldInUnion() && |
| 5450 | ILE->getInitializedFieldInUnion()->getType()->isReferenceType()) |
| 5451 | performReferenceExtension(ILE->getInit(0), ExtendingD); |
| 5452 | else { |
| 5453 | unsigned Index = 0; |
| 5454 | for (RecordDecl::field_iterator I = RD->field_begin(), |
| 5455 | E = RD->field_end(); |
| 5456 | I != E; ++I) { |
Richard Smith | 3c3af14 | 2013-07-01 06:08:20 +0000 | [diff] [blame] | 5457 | if (Index >= ILE->getNumInits()) |
| 5458 | break; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5459 | if (I->isUnnamedBitfield()) |
| 5460 | continue; |
Richard Smith | 5771aab | 2013-06-27 22:54:33 +0000 | [diff] [blame] | 5461 | Expr *SubInit = ILE->getInit(Index); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5462 | if (I->getType()->isReferenceType()) |
Richard Smith | 5771aab | 2013-06-27 22:54:33 +0000 | [diff] [blame] | 5463 | performReferenceExtension(SubInit, ExtendingD); |
| 5464 | else if (isa<InitListExpr>(SubInit) || |
| 5465 | isa<CXXStdInitializerListExpr>(SubInit)) |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5466 | // This may be either aggregate-initialization of a member or |
| 5467 | // initialization of a std::initializer_list object. Either way, |
| 5468 | // we should recursively lifetime-extend that initializer. |
Richard Smith | 5771aab | 2013-06-27 22:54:33 +0000 | [diff] [blame] | 5469 | performLifetimeExtension(SubInit, ExtendingD); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5470 | ++Index; |
| 5471 | } |
| 5472 | } |
| 5473 | } |
| 5474 | } |
| 5475 | } |
| 5476 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5477 | static void warnOnLifetimeExtension(Sema &S, const InitializedEntity &Entity, |
| 5478 | const Expr *Init, bool IsInitializerList, |
| 5479 | const ValueDecl *ExtendingDecl) { |
| 5480 | // Warn if a field lifetime-extends a temporary. |
| 5481 | if (isa<FieldDecl>(ExtendingDecl)) { |
| 5482 | if (IsInitializerList) { |
| 5483 | S.Diag(Init->getExprLoc(), diag::warn_dangling_std_initializer_list) |
| 5484 | << /*at end of constructor*/true; |
| 5485 | return; |
| 5486 | } |
| 5487 | |
| 5488 | bool IsSubobjectMember = false; |
| 5489 | for (const InitializedEntity *Ent = Entity.getParent(); Ent; |
| 5490 | Ent = Ent->getParent()) { |
| 5491 | if (Ent->getKind() != InitializedEntity::EK_Base) { |
| 5492 | IsSubobjectMember = true; |
| 5493 | break; |
| 5494 | } |
| 5495 | } |
| 5496 | S.Diag(Init->getExprLoc(), |
| 5497 | diag::warn_bind_ref_member_to_temporary) |
| 5498 | << ExtendingDecl << Init->getSourceRange() |
| 5499 | << IsSubobjectMember << IsInitializerList; |
| 5500 | if (IsSubobjectMember) |
| 5501 | S.Diag(ExtendingDecl->getLocation(), |
| 5502 | diag::note_ref_subobject_of_member_declared_here); |
| 5503 | else |
| 5504 | S.Diag(ExtendingDecl->getLocation(), |
| 5505 | diag::note_ref_or_ptr_member_declared_here) |
| 5506 | << /*is pointer*/false; |
| 5507 | } |
| 5508 | } |
| 5509 | |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 5510 | static void DiagnoseNarrowingInInitList(Sema &S, |
| 5511 | const ImplicitConversionSequence &ICS, |
| 5512 | QualType PreNarrowingType, |
| 5513 | QualType EntityType, |
| 5514 | const Expr *PostInit); |
| 5515 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5516 | ExprResult |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5517 | InitializationSequence::Perform(Sema &S, |
| 5518 | const InitializedEntity &Entity, |
| 5519 | const InitializationKind &Kind, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5520 | MultiExprArg Args, |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5521 | QualType *ResultType) { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 5522 | if (Failed()) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 5523 | Diagnose(S, Entity, Kind, Args); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5524 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5525 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5526 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 5527 | if (getKind() == DependentSequence) { |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5528 | // If the declaration is a non-dependent, incomplete array type |
| 5529 | // that has an initializer, then its type will be completed once |
| 5530 | // the initializer is instantiated. |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5531 | if (ResultType && !Entity.getType()->isDependentType() && |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5532 | Args.size() == 1) { |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5533 | QualType DeclType = Entity.getType(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5534 | if (const IncompleteArrayType *ArrayT |
| 5535 | = S.Context.getAsIncompleteArrayType(DeclType)) { |
| 5536 | // FIXME: We don't currently have the ability to accurately |
| 5537 | // compute the length of an initializer list without |
| 5538 | // performing full type-checking of the initializer list |
| 5539 | // (since we have to determine where braces are implicitly |
| 5540 | // introduced and such). So, we fall back to making the array |
| 5541 | // type a dependently-sized array type with no specified |
| 5542 | // bound. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5543 | if (isa<InitListExpr>((Expr *)Args[0])) { |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5544 | SourceRange Brackets; |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5545 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5546 | // Scavange the location of the brackets from the entity, if we can. |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5547 | if (DeclaratorDecl *DD = Entity.getDecl()) { |
| 5548 | if (TypeSourceInfo *TInfo = DD->getTypeSourceInfo()) { |
| 5549 | TypeLoc TL = TInfo->getTypeLoc(); |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 5550 | if (IncompleteArrayTypeLoc ArrayLoc = |
| 5551 | TL.getAs<IncompleteArrayTypeLoc>()) |
| 5552 | Brackets = ArrayLoc.getBracketsRange(); |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5553 | } |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5554 | } |
| 5555 | |
| 5556 | *ResultType |
| 5557 | = S.Context.getDependentSizedArrayType(ArrayT->getElementType(), |
| 5558 | /*NumElts=*/0, |
| 5559 | ArrayT->getSizeModifier(), |
| 5560 | ArrayT->getIndexTypeCVRQualifiers(), |
| 5561 | Brackets); |
| 5562 | } |
| 5563 | |
| 5564 | } |
| 5565 | } |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 5566 | if (Kind.getKind() == InitializationKind::IK_Direct && |
| 5567 | !Kind.isExplicitCast()) { |
| 5568 | // Rebuild the ParenListExpr. |
| 5569 | SourceRange ParenRange = Kind.getParenRange(); |
| 5570 | return S.ActOnParenListExpr(ParenRange.getBegin(), ParenRange.getEnd(), |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5571 | Args); |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 5572 | } |
Manuel Klimek | 0d9106f | 2011-06-22 20:02:16 +0000 | [diff] [blame] | 5573 | assert(Kind.getKind() == InitializationKind::IK_Copy || |
Douglas Gregor | a9b55a4 | 2012-04-04 04:06:51 +0000 | [diff] [blame] | 5574 | Kind.isExplicitCast() || |
| 5575 | Kind.getKind() == InitializationKind::IK_DirectList); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5576 | return ExprResult(Args[0]); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5577 | } |
| 5578 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 5579 | // No steps means no initialization. |
| 5580 | if (Steps.empty()) |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5581 | return S.Owned((Expr *)0); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5582 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5583 | if (S.getLangOpts().CPlusPlus11 && Entity.getType()->isReferenceType() && |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5584 | Args.size() == 1 && isa<InitListExpr>(Args[0]) && |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 5585 | !Entity.isParameterKind()) { |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5586 | // Produce a C++98 compatibility warning if we are initializing a reference |
| 5587 | // from an initializer list. For parameters, we produce a better warning |
| 5588 | // elsewhere. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5589 | Expr *Init = Args[0]; |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 5590 | S.Diag(Init->getLocStart(), diag::warn_cxx98_compat_reference_list_init) |
| 5591 | << Init->getSourceRange(); |
| 5592 | } |
| 5593 | |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5594 | // Diagnose cases where we initialize a pointer to an array temporary, and the |
| 5595 | // pointer obviously outlives the temporary. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5596 | if (Args.size() == 1 && Args[0]->getType()->isArrayType() && |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5597 | Entity.getType()->isPointerType() && |
| 5598 | InitializedEntityOutlivesFullExpression(Entity)) { |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5599 | Expr *Init = Args[0]; |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 5600 | Expr::LValueClassification Kind = Init->ClassifyLValue(S.Context); |
| 5601 | if (Kind == Expr::LV_ClassTemporary || Kind == Expr::LV_ArrayTemporary) |
| 5602 | S.Diag(Init->getLocStart(), diag::warn_temporary_array_to_pointer_decay) |
| 5603 | << Init->getSourceRange(); |
| 5604 | } |
| 5605 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5606 | QualType DestType = Entity.getType().getNonReferenceType(); |
| 5607 | // FIXME: Ugly hack around the fact that Entity.getType() is not |
Eli Friedman | a91eb54 | 2009-12-22 02:10:53 +0000 | [diff] [blame] | 5608 | // the same as Entity.getDecl()->getType() in cases involving type merging, |
| 5609 | // and we want latter when it makes sense. |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5610 | if (ResultType) |
Eli Friedman | a91eb54 | 2009-12-22 02:10:53 +0000 | [diff] [blame] | 5611 | *ResultType = Entity.getDecl() ? Entity.getDecl()->getType() : |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5612 | Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5613 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5614 | ExprResult CurInit = S.Owned((Expr *)0); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5615 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5616 | // For initialization steps that start with a single initializer, |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 5617 | // grab the only argument out the Args and place it into the "current" |
| 5618 | // initializer. |
| 5619 | switch (Steps.front().Kind) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5620 | case SK_ResolveAddressOfOverloadedFunction: |
| 5621 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5622 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5623 | case SK_CastDerivedToBaseLValue: |
| 5624 | case SK_BindReference: |
| 5625 | case SK_BindReferenceToTemporary: |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5626 | case SK_ExtraneousCopyToTemporary: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5627 | case SK_UserConversion: |
| 5628 | case SK_QualificationConversionLValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5629 | case SK_QualificationConversionXValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5630 | case SK_QualificationConversionRValue: |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5631 | case SK_LValueToRValue: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5632 | case SK_ConversionSequence: |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 5633 | case SK_ConversionSequenceNoNarrowing: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5634 | case SK_ListInitialization: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5635 | case SK_UnwrapInitList: |
| 5636 | case SK_RewrapInitList: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5637 | case SK_CAssignment: |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 5638 | case SK_StringInit: |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 5639 | case SK_ObjCObjectConversion: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5640 | case SK_ArrayInit: |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 5641 | case SK_ParenthesizedArrayInit: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5642 | case SK_PassByIndirectCopyRestore: |
| 5643 | case SK_PassByIndirectRestore: |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 5644 | case SK_ProduceObjCObject: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 5645 | case SK_StdInitializerList: |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 5646 | case SK_OCLSamplerInit: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 5647 | case SK_OCLZeroEvent: { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5648 | assert(Args.size() == 1); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5649 | CurInit = Args[0]; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5650 | if (!CurInit.get()) return ExprError(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5651 | break; |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 5652 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5653 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5654 | case SK_ConstructorInitialization: |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 5655 | case SK_ListConstructorCall: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5656 | case SK_ZeroInitialization: |
| 5657 | break; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5658 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5659 | |
| 5660 | // Walk through the computed steps for the initialization sequence, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5661 | // performing the specified conversions along the way. |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 5662 | bool ConstructorInitRequiresZeroInit = false; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5663 | for (step_iterator Step = step_begin(), StepEnd = step_end(); |
| 5664 | Step != StepEnd; ++Step) { |
| 5665 | if (CurInit.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5666 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5667 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5668 | QualType SourceType = CurInit.get() ? CurInit.get()->getType() : QualType(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5669 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5670 | switch (Step->Kind) { |
| 5671 | case SK_ResolveAddressOfOverloadedFunction: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5672 | // Overload resolution determined which function invoke; update the |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5673 | // initializer to reflect that choice. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5674 | S.CheckAddressOfMemberAccess(CurInit.get(), Step->Function.FoundDecl); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5675 | if (S.DiagnoseUseOfDecl(Step->Function.FoundDecl, Kind.getLocation())) |
| 5676 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5677 | CurInit = S.FixOverloadedFunctionReference(CurInit, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 5678 | Step->Function.FoundDecl, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5679 | Step->Function.Function); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5680 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5681 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5682 | case SK_CastDerivedToBaseRValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5683 | case SK_CastDerivedToBaseXValue: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5684 | case SK_CastDerivedToBaseLValue: { |
| 5685 | // We have a derived-to-base cast that produces either an rvalue or an |
| 5686 | // lvalue. Perform that cast. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5687 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5688 | CXXCastPath BasePath; |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 5689 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5690 | // Casts to inaccessible base classes are allowed with C-style casts. |
| 5691 | bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast(); |
| 5692 | if (S.CheckDerivedToBaseConversion(SourceType, Step->Type, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5693 | CurInit.get()->getLocStart(), |
| 5694 | CurInit.get()->getSourceRange(), |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 5695 | &BasePath, IgnoreBaseAccess)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5696 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5697 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 5698 | if (S.BasePathInvolvesVirtualBase(BasePath)) { |
| 5699 | QualType T = SourceType; |
| 5700 | if (const PointerType *Pointer = T->getAs<PointerType>()) |
| 5701 | T = Pointer->getPointeeType(); |
| 5702 | if (const RecordType *RecordTy = T->getAs<RecordType>()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5703 | S.MarkVTableUsed(CurInit.get()->getLocStart(), |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 5704 | cast<CXXRecordDecl>(RecordTy->getDecl())); |
| 5705 | } |
| 5706 | |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5707 | ExprValueKind VK = |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5708 | Step->Kind == SK_CastDerivedToBaseLValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5709 | VK_LValue : |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5710 | (Step->Kind == SK_CastDerivedToBaseXValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5711 | VK_XValue : |
| 5712 | VK_RValue); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5713 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, |
| 5714 | Step->Type, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5715 | CK_DerivedToBase, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5716 | CurInit.get(), |
| 5717 | &BasePath, VK)); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5718 | break; |
| 5719 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5720 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5721 | case SK_BindReference: |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5722 | // References cannot bind to bit-fields (C++ [dcl.init.ref]p5). |
| 5723 | if (CurInit.get()->refersToBitField()) { |
| 5724 | // We don't necessarily have an unambiguous source bit-field. |
| 5725 | FieldDecl *BitField = CurInit.get()->getSourceBitField(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5726 | S.Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield) |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 5727 | << Entity.getType().isVolatileQualified() |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5728 | << (BitField ? BitField->getDeclName() : DeclarationName()) |
| 5729 | << (BitField != NULL) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5730 | << CurInit.get()->getSourceRange(); |
John McCall | 993f43f | 2013-05-06 21:39:12 +0000 | [diff] [blame] | 5731 | if (BitField) |
| 5732 | S.Diag(BitField->getLocation(), diag::note_bitfield_decl); |
| 5733 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5734 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5735 | } |
Anders Carlsson | a6fe0bf | 2010-01-29 02:47:33 +0000 | [diff] [blame] | 5736 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5737 | if (CurInit.get()->refersToVectorElement()) { |
John McCall | 41593e3 | 2010-02-02 19:02:38 +0000 | [diff] [blame] | 5738 | // References cannot bind to vector elements. |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 5739 | S.Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element) |
| 5740 | << Entity.getType().isVolatileQualified() |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5741 | << CurInit.get()->getSourceRange(); |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 5742 | PrintInitLocationNote(S, Entity); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5743 | return ExprError(); |
Anders Carlsson | 0938026 | 2010-01-31 17:18:49 +0000 | [diff] [blame] | 5744 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5745 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5746 | // Reference binding does not have any corresponding ASTs. |
| 5747 | |
| 5748 | // Check exception specifications |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5749 | if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5750 | return ExprError(); |
Anders Carlsson | 3aba093 | 2010-01-31 18:34:51 +0000 | [diff] [blame] | 5751 | |
Richard Smith | d6b6987 | 2013-06-15 00:30:29 +0000 | [diff] [blame] | 5752 | // Even though we didn't materialize a temporary, the binding may still |
| 5753 | // extend the lifetime of a temporary. This happens if we bind a reference |
| 5754 | // to the result of a cast to reference type. |
| 5755 | if (const ValueDecl *ExtendingDecl = |
| 5756 | getDeclForTemporaryLifetimeExtension(Entity)) { |
| 5757 | if (performReferenceExtension(CurInit.get(), ExtendingDecl)) |
| 5758 | warnOnLifetimeExtension(S, Entity, CurInit.get(), false, |
| 5759 | ExtendingDecl); |
| 5760 | } |
| 5761 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5762 | break; |
Anders Carlsson | 3aba093 | 2010-01-31 18:34:51 +0000 | [diff] [blame] | 5763 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5764 | case SK_BindReferenceToTemporary: { |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5765 | // Make sure the "temporary" is actually an rvalue. |
| 5766 | assert(CurInit.get()->isRValue() && "not a temporary"); |
| 5767 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5768 | // Check exception specifications |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5769 | if (S.CheckExceptionSpecCompatibility(CurInit.get(), DestType)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5770 | return ExprError(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5771 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5772 | // Maybe lifetime-extend the temporary's subobjects to match the |
| 5773 | // entity's lifetime. |
| 5774 | const ValueDecl *ExtendingDecl = |
| 5775 | getDeclForTemporaryLifetimeExtension(Entity); |
Richard Smith | a4bb99c | 2013-06-12 21:51:50 +0000 | [diff] [blame] | 5776 | if (ExtendingDecl) { |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5777 | performLifetimeExtension(CurInit.get(), ExtendingDecl); |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5778 | warnOnLifetimeExtension(S, Entity, CurInit.get(), false, ExtendingDecl); |
Richard Smith | a4bb99c | 2013-06-12 21:51:50 +0000 | [diff] [blame] | 5779 | } |
| 5780 | |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 5781 | // Materialize the temporary into memory. |
Richard Smith | 8a07cd3 | 2013-06-12 20:42:33 +0000 | [diff] [blame] | 5782 | MaterializeTemporaryExpr *MTE = new (S.Context) MaterializeTemporaryExpr( |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5783 | Entity.getType().getNonReferenceType(), CurInit.get(), |
| 5784 | Entity.getType()->isLValueReferenceType(), ExtendingDecl); |
Douglas Gregor | d7b2316 | 2011-06-22 16:12:01 +0000 | [diff] [blame] | 5785 | |
| 5786 | // If we're binding to an Objective-C object that has lifetime, we |
Richard Smith | 8a07cd3 | 2013-06-12 20:42:33 +0000 | [diff] [blame] | 5787 | // need cleanups. Likewise if we're extending this temporary to automatic |
| 5788 | // storage duration -- we need to register its cleanup during the |
| 5789 | // full-expression's cleanups. |
| 5790 | if ((S.getLangOpts().ObjCAutoRefCount && |
| 5791 | MTE->getType()->isObjCLifetimeType()) || |
| 5792 | (MTE->getStorageDuration() == SD_Automatic && |
| 5793 | MTE->getType().isDestructedType())) |
Douglas Gregor | d7b2316 | 2011-06-22 16:12:01 +0000 | [diff] [blame] | 5794 | S.ExprNeedsCleanups = true; |
Richard Smith | 8a07cd3 | 2013-06-12 20:42:33 +0000 | [diff] [blame] | 5795 | |
| 5796 | CurInit = S.Owned(MTE); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5797 | break; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 5798 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5799 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5800 | case SK_ExtraneousCopyToTemporary: |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5801 | CurInit = CopyObject(S, Step->Type, Entity, CurInit, |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5802 | /*IsExtraneousCopy=*/true); |
| 5803 | break; |
| 5804 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5805 | case SK_UserConversion: { |
| 5806 | // We have a user-defined conversion that invokes either a constructor |
| 5807 | // or a conversion function. |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5808 | CastKind CastKind; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5809 | bool IsCopy = false; |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5810 | FunctionDecl *Fn = Step->Function.Function; |
| 5811 | DeclAccessPair FoundFn = Step->Function.FoundDecl; |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5812 | bool HadMultipleCandidates = Step->Function.HadMultipleCandidates; |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5813 | bool CreatedObject = false; |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5814 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Fn)) { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5815 | // Build a call to the selected constructor. |
Benjamin Kramer | 4e28d9e | 2012-08-23 22:51:59 +0000 | [diff] [blame] | 5816 | SmallVector<Expr*, 8> ConstructorArgs; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5817 | SourceLocation Loc = CurInit.get()->getLocStart(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5818 | CurInit.release(); // Ownership transferred into MultiExprArg, below. |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5819 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5820 | // Determine the arguments required to actually perform the constructor |
| 5821 | // call. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5822 | Expr *Arg = CurInit.get(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5823 | if (S.CompleteConstructorCall(Constructor, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5824 | MultiExprArg(&Arg, 1), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5825 | Loc, ConstructorArgs)) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5826 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5827 | |
Richard Smith | f2e4dfc | 2012-02-11 19:22:50 +0000 | [diff] [blame] | 5828 | // Build an expression that constructs a temporary. |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5829 | CurInit = S.BuildCXXConstructExpr(Loc, Step->Type, Constructor, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5830 | ConstructorArgs, |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5831 | HadMultipleCandidates, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 5832 | /*ListInit*/ false, |
John McCall | 7a1fad3 | 2010-08-24 07:32:53 +0000 | [diff] [blame] | 5833 | /*ZeroInit*/ false, |
Chandler Carruth | 428edaf | 2010-10-25 08:47:36 +0000 | [diff] [blame] | 5834 | CXXConstructExpr::CK_Complete, |
| 5835 | SourceRange()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5836 | if (CurInit.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5837 | return ExprError(); |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5838 | |
Anders Carlsson | 9a68a67 | 2010-04-21 18:47:17 +0000 | [diff] [blame] | 5839 | S.CheckConstructorAccess(Kind.getLocation(), Constructor, Entity, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5840 | FoundFn.getAccess()); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5841 | if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation())) |
| 5842 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5843 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5844 | CastKind = CK_ConstructorConversion; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 5845 | QualType Class = S.Context.getTypeDeclType(Constructor->getParent()); |
| 5846 | if (S.Context.hasSameUnqualifiedType(SourceType, Class) || |
| 5847 | S.IsDerivedFrom(SourceType, Class)) |
| 5848 | IsCopy = true; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5849 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5850 | CreatedObject = true; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5851 | } else { |
| 5852 | // Build a call to the conversion function. |
John McCall | b13b737 | 2010-02-01 03:16:54 +0000 | [diff] [blame] | 5853 | CXXConversionDecl *Conversion = cast<CXXConversionDecl>(Fn); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5854 | S.CheckMemberOperatorAccess(Kind.getLocation(), CurInit.get(), 0, |
John McCall | 9aa472c | 2010-03-19 07:35:19 +0000 | [diff] [blame] | 5855 | FoundFn); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5856 | if (S.DiagnoseUseOfDecl(FoundFn, Kind.getLocation())) |
| 5857 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5858 | |
| 5859 | // FIXME: Should we move this initialization into a separate |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5860 | // derived-to-base conversion? I believe the answer is "no", because |
| 5861 | // 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] | 5862 | ExprResult CurInitExprRes = |
| 5863 | S.PerformObjectArgumentInitialization(CurInit.take(), /*Qualifier=*/0, |
| 5864 | FoundFn, Conversion); |
| 5865 | if(CurInitExprRes.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5866 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5867 | CurInit = CurInitExprRes; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5868 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5869 | // Build the actual call to the conversion function. |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 5870 | CurInit = S.BuildCXXMemberCallExpr(CurInit.get(), FoundFn, Conversion, |
| 5871 | HadMultipleCandidates); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5872 | if (CurInit.isInvalid() || !CurInit.get()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5873 | return ExprError(); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5874 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5875 | CastKind = CK_UserDefinedConversion; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5876 | |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5877 | CreatedObject = Conversion->getResultType()->isRecordType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5878 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5879 | |
Sebastian Redl | 3b80232 | 2011-07-14 19:07:55 +0000 | [diff] [blame] | 5880 | bool RequiresCopy = !IsCopy && !isReferenceBinding(Steps.back()); |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 5881 | bool MaybeBindToTemp = RequiresCopy || shouldBindAsTemporary(Entity); |
| 5882 | |
| 5883 | if (!MaybeBindToTemp && CreatedObject && shouldDestroyTemporary(Entity)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5884 | QualType T = CurInit.get()->getType(); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5885 | if (const RecordType *Record = T->getAs<RecordType>()) { |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5886 | CXXDestructorDecl *Destructor |
Douglas Gregor | db89f28 | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 5887 | = S.LookupDestructor(cast<CXXRecordDecl>(Record->getDecl())); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5888 | S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor, |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5889 | S.PDiag(diag::err_access_dtor_temp) << T); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 5890 | S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor); |
Richard Smith | 82f145d | 2013-05-04 06:44:46 +0000 | [diff] [blame] | 5891 | if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart())) |
| 5892 | return ExprError(); |
Douglas Gregor | 4154e0b | 2010-04-24 23:45:46 +0000 | [diff] [blame] | 5893 | } |
| 5894 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5895 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 5896 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5897 | CurInit.get()->getType(), |
| 5898 | CastKind, CurInit.get(), 0, |
Eli Friedman | 104be6f | 2011-09-27 01:11:35 +0000 | [diff] [blame] | 5899 | CurInit.get()->getValueKind())); |
Abramo Bagnara | 960809e | 2011-11-16 22:46:05 +0000 | [diff] [blame] | 5900 | if (MaybeBindToTemp) |
| 5901 | CurInit = S.MaybeBindToTemporary(CurInit.takeAs<Expr>()); |
Douglas Gregor | 2f59979 | 2010-04-02 18:24:57 +0000 | [diff] [blame] | 5902 | if (RequiresCopy) |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 5903 | CurInit = CopyObject(S, Entity.getType().getNonReferenceType(), Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5904 | CurInit, /*IsExtraneousCopy=*/false); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5905 | break; |
| 5906 | } |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5907 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5908 | case SK_QualificationConversionLValue: |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5909 | case SK_QualificationConversionXValue: |
| 5910 | case SK_QualificationConversionRValue: { |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5911 | // Perform a qualification conversion; these can never go wrong. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5912 | ExprValueKind VK = |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5913 | Step->Kind == SK_QualificationConversionLValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5914 | VK_LValue : |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5915 | (Step->Kind == SK_QualificationConversionXValue ? |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 5916 | VK_XValue : |
| 5917 | VK_RValue); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5918 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, CK_NoOp, VK); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5919 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 5920 | } |
| 5921 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 5922 | case SK_LValueToRValue: { |
| 5923 | assert(CurInit.get()->isGLValue() && "cannot load from a prvalue"); |
| 5924 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type, |
| 5925 | CK_LValueToRValue, |
| 5926 | CurInit.take(), |
| 5927 | /*BasePath=*/0, |
| 5928 | VK_RValue)); |
| 5929 | break; |
| 5930 | } |
| 5931 | |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 5932 | case SK_ConversionSequence: |
| 5933 | case SK_ConversionSequenceNoNarrowing: { |
| 5934 | Sema::CheckedConversionKind CCK |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5935 | = Kind.isCStyleCast()? Sema::CCK_CStyleCast |
| 5936 | : Kind.isFunctionalCast()? Sema::CCK_FunctionalCast |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 5937 | : Kind.isExplicitCast()? Sema::CCK_OtherCast |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5938 | : Sema::CCK_ImplicitConversion; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5939 | ExprResult CurInitExprRes = |
| 5940 | S.PerformImplicitConversion(CurInit.get(), Step->Type, *Step->ICS, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5941 | getAssignmentAction(Entity), CCK); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5942 | if (CurInitExprRes.isInvalid()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5943 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5944 | CurInit = CurInitExprRes; |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 5945 | |
| 5946 | if (Step->Kind == SK_ConversionSequenceNoNarrowing && |
| 5947 | S.getLangOpts().CPlusPlus && !CurInit.get()->isValueDependent()) |
| 5948 | DiagnoseNarrowingInInitList(S, *Step->ICS, SourceType, Entity.getType(), |
| 5949 | CurInit.get()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 5950 | break; |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 5951 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 5952 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5953 | case SK_ListInitialization: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5954 | InitListExpr *InitList = cast<InitListExpr>(CurInit.get()); |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5955 | // If we're not initializing the top-level entity, we need to create an |
| 5956 | // InitializeTemporary entity for our target type. |
| 5957 | QualType Ty = Step->Type; |
| 5958 | bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5959 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty); |
Richard Smith | 802e226 | 2013-02-02 01:13:06 +0000 | [diff] [blame] | 5960 | InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; |
| 5961 | InitListChecker PerformInitList(S, InitEntity, |
Richard Smith | 40cba90 | 2013-06-06 11:41:05 +0000 | [diff] [blame] | 5962 | InitList, Ty, /*VerifyOnly=*/false); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 5963 | if (PerformInitList.HadError()) |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 5964 | return ExprError(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5965 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 5966 | // Hack: We must update *ResultType if available in order to set the |
| 5967 | // bounds of arrays, e.g. in 'int ar[] = {1, 2, 3};'. |
| 5968 | // Worst case: 'const int (&arref)[] = {1, 2, 3};'. |
| 5969 | if (ResultType && |
| 5970 | ResultType->getNonReferenceType()->isIncompleteArrayType()) { |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 5971 | if ((*ResultType)->isRValueReferenceType()) |
| 5972 | Ty = S.Context.getRValueReferenceType(Ty); |
| 5973 | else if ((*ResultType)->isLValueReferenceType()) |
| 5974 | Ty = S.Context.getLValueReferenceType(Ty, |
| 5975 | (*ResultType)->getAs<LValueReferenceType>()->isSpelledAsLValue()); |
| 5976 | *ResultType = Ty; |
| 5977 | } |
| 5978 | |
| 5979 | InitListExpr *StructuredInitList = |
| 5980 | PerformInitList.getFullyStructuredList(); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5981 | CurInit.release(); |
Richard Smith | 802e226 | 2013-02-02 01:13:06 +0000 | [diff] [blame] | 5982 | CurInit = shouldBindAsTemporary(InitEntity) |
| 5983 | ? S.MaybeBindToTemporary(StructuredInitList) |
| 5984 | : S.Owned(StructuredInitList); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 5985 | break; |
| 5986 | } |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 5987 | |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 5988 | case SK_ListConstructorCall: { |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5989 | // When an initializer list is passed for a parameter of type "reference |
| 5990 | // to object", we don't get an EK_Temporary entity, but instead an |
| 5991 | // EK_Parameter entity with reference type. |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 5992 | // FIXME: This is a hack. What we really should do is create a user |
| 5993 | // conversion step for this case, but this makes it considerably more |
| 5994 | // complicated. For now, this will do. |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 5995 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary( |
| 5996 | Entity.getType().getNonReferenceType()); |
| 5997 | bool UseTemporary = Entity.getType()->isReferenceType(); |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 5998 | assert(Args.size() == 1 && "expected a single argument for list init"); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5999 | InitListExpr *InitList = cast<InitListExpr>(Args[0]); |
Richard Smith | 03544fc | 2012-04-19 06:58:00 +0000 | [diff] [blame] | 6000 | S.Diag(InitList->getExprLoc(), diag::warn_cxx98_compat_ctor_list_init) |
| 6001 | << InitList->getSourceRange(); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 6002 | MultiExprArg Arg(InitList->getInits(), InitList->getNumInits()); |
Sebastian Redl | 168319c | 2012-02-12 16:37:24 +0000 | [diff] [blame] | 6003 | CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity : |
| 6004 | Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6005 | Kind, Arg, *Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 6006 | ConstructorInitRequiresZeroInit, |
Enea Zaffanella | 1245a54 | 2013-09-07 05:49:53 +0000 | [diff] [blame] | 6007 | /*IsListInitialization*/ true, |
| 6008 | InitList->getLBraceLoc(), |
| 6009 | InitList->getRBraceLoc()); |
Sebastian Redl | 10f04a6 | 2011-12-22 14:44:04 +0000 | [diff] [blame] | 6010 | break; |
| 6011 | } |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6012 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6013 | case SK_UnwrapInitList: |
| 6014 | CurInit = S.Owned(cast<InitListExpr>(CurInit.take())->getInit(0)); |
| 6015 | break; |
| 6016 | |
| 6017 | case SK_RewrapInitList: { |
| 6018 | Expr *E = CurInit.take(); |
| 6019 | InitListExpr *Syntactic = Step->WrappingSyntacticList; |
| 6020 | InitListExpr *ILE = new (S.Context) InitListExpr(S.Context, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 6021 | Syntactic->getLBraceLoc(), E, Syntactic->getRBraceLoc()); |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6022 | ILE->setSyntacticForm(Syntactic); |
| 6023 | ILE->setType(E->getType()); |
| 6024 | ILE->setValueKind(E->getValueKind()); |
| 6025 | CurInit = S.Owned(ILE); |
| 6026 | break; |
| 6027 | } |
| 6028 | |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 6029 | case SK_ConstructorInitialization: { |
| 6030 | // When an initializer list is passed for a parameter of type "reference |
| 6031 | // to object", we don't get an EK_Temporary entity, but instead an |
| 6032 | // EK_Parameter entity with reference type. |
| 6033 | // FIXME: This is a hack. What we really should do is create a user |
| 6034 | // conversion step for this case, but this makes it considerably more |
| 6035 | // complicated. For now, this will do. |
| 6036 | InitializedEntity TempEntity = InitializedEntity::InitializeTemporary( |
| 6037 | Entity.getType().getNonReferenceType()); |
| 6038 | bool UseTemporary = Entity.getType()->isReferenceType(); |
| 6039 | CurInit = PerformConstructorInitialization(S, UseTemporary ? TempEntity |
| 6040 | : Entity, |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6041 | Kind, Args, *Step, |
Richard Smith | c83c230 | 2012-12-19 01:39:02 +0000 | [diff] [blame] | 6042 | ConstructorInitRequiresZeroInit, |
Enea Zaffanella | 1245a54 | 2013-09-07 05:49:53 +0000 | [diff] [blame] | 6043 | /*IsListInitialization*/ false, |
| 6044 | /*LBraceLoc*/ SourceLocation(), |
| 6045 | /*RBraceLoc*/ SourceLocation()); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6046 | break; |
Sebastian Redl | bac5cf4 | 2012-02-19 12:27:56 +0000 | [diff] [blame] | 6047 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6048 | |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 6049 | case SK_ZeroInitialization: { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 6050 | step_iterator NextStep = Step; |
| 6051 | ++NextStep; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6052 | if (NextStep != StepEnd && |
Richard Smith | f4bb8d0 | 2012-07-05 08:39:21 +0000 | [diff] [blame] | 6053 | (NextStep->Kind == SK_ConstructorInitialization || |
| 6054 | NextStep->Kind == SK_ListConstructorCall)) { |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 6055 | // The need for zero-initialization is recorded directly into |
| 6056 | // the call to the object's constructor within the next step. |
| 6057 | ConstructorInitRequiresZeroInit = true; |
| 6058 | } else if (Kind.getKind() == InitializationKind::IK_Value && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6059 | S.getLangOpts().CPlusPlus && |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 6060 | !Kind.isImplicitValueInit()) { |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 6061 | TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); |
| 6062 | if (!TSInfo) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6063 | TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type, |
Douglas Gregor | ab6677e | 2010-09-08 00:15:04 +0000 | [diff] [blame] | 6064 | Kind.getRange().getBegin()); |
| 6065 | |
| 6066 | CurInit = S.Owned(new (S.Context) CXXScalarValueInitExpr( |
| 6067 | TSInfo->getType().getNonLValueExprType(S.Context), |
| 6068 | TSInfo, |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 6069 | Kind.getRange().getEnd())); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 6070 | } else { |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 6071 | CurInit = S.Owned(new (S.Context) ImplicitValueInitExpr(Step->Type)); |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 6072 | } |
Douglas Gregor | 71d1740 | 2009-12-15 00:01:57 +0000 | [diff] [blame] | 6073 | break; |
| 6074 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6075 | |
| 6076 | case SK_CAssignment: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6077 | QualType SourceType = CurInit.get()->getType(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6078 | ExprResult Result = CurInit; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6079 | Sema::AssignConvertType ConvTy = |
Fariborz Jahanian | 01ad048 | 2013-07-31 21:40:51 +0000 | [diff] [blame] | 6080 | S.CheckSingleAssignmentConstraints(Step->Type, Result, true, |
| 6081 | Entity.getKind() == InitializedEntity::EK_Parameter_CF_Audited); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6082 | if (Result.isInvalid()) |
| 6083 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6084 | CurInit = Result; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 6085 | |
| 6086 | // If this is a call, allow conversion to a transparent union. |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6087 | ExprResult CurInitExprRes = CurInit; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 6088 | if (ConvTy != Sema::Compatible && |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 6089 | Entity.isParameterKind() && |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6090 | S.CheckTransparentUnionArgumentConstraints(Step->Type, CurInitExprRes) |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 6091 | == Sema::Compatible) |
| 6092 | ConvTy = Sema::Compatible; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6093 | if (CurInitExprRes.isInvalid()) |
| 6094 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6095 | CurInit = CurInitExprRes; |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 6096 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 6097 | bool Complained; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6098 | if (S.DiagnoseAssignmentResult(ConvTy, Kind.getLocation(), |
| 6099 | Step->Type, SourceType, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6100 | CurInit.get(), |
Fariborz Jahanian | 3d672e4 | 2013-07-31 23:19:34 +0000 | [diff] [blame] | 6101 | getAssignmentAction(Entity, true), |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 6102 | &Complained)) { |
| 6103 | PrintInitLocationNote(S, Entity); |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 6104 | return ExprError(); |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 6105 | } else if (Complained) |
| 6106 | PrintInitLocationNote(S, Entity); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6107 | break; |
| 6108 | } |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 6109 | |
| 6110 | case SK_StringInit: { |
| 6111 | QualType Ty = Step->Type; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6112 | CheckStringInit(CurInit.get(), ResultType ? *ResultType : Ty, |
John McCall | fef8b34 | 2011-02-21 07:57:55 +0000 | [diff] [blame] | 6113 | S.Context.getAsArrayType(Ty), S); |
Eli Friedman | cfdc81a | 2009-12-19 08:11:05 +0000 | [diff] [blame] | 6114 | break; |
| 6115 | } |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 6116 | |
| 6117 | case SK_ObjCObjectConversion: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6118 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6119 | CK_ObjCObjectLValueCast, |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 6120 | CurInit.get()->getValueKind()); |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 6121 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6122 | |
| 6123 | case SK_ArrayInit: |
| 6124 | // Okay: we checked everything before creating this step. Note that |
| 6125 | // this is a GNU extension. |
| 6126 | S.Diag(Kind.getLocation(), diag::ext_array_init_copy) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6127 | << Step->Type << CurInit.get()->getType() |
| 6128 | << CurInit.get()->getSourceRange(); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6129 | |
| 6130 | // If the destination type is an incomplete array type, update the |
| 6131 | // type accordingly. |
| 6132 | if (ResultType) { |
| 6133 | if (const IncompleteArrayType *IncompleteDest |
| 6134 | = S.Context.getAsIncompleteArrayType(Step->Type)) { |
| 6135 | if (const ConstantArrayType *ConstantSource |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6136 | = S.Context.getAsConstantArrayType(CurInit.get()->getType())) { |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6137 | *ResultType = S.Context.getConstantArrayType( |
| 6138 | IncompleteDest->getElementType(), |
| 6139 | ConstantSource->getSize(), |
| 6140 | ArrayType::Normal, 0); |
| 6141 | } |
| 6142 | } |
| 6143 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6144 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6145 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 6146 | case SK_ParenthesizedArrayInit: |
| 6147 | // Okay: we checked everything before creating this step. Note that |
| 6148 | // this is a GNU extension. |
| 6149 | S.Diag(Kind.getLocation(), diag::ext_array_init_parens) |
| 6150 | << CurInit.get()->getSourceRange(); |
| 6151 | break; |
| 6152 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6153 | case SK_PassByIndirectCopyRestore: |
| 6154 | case SK_PassByIndirectRestore: |
| 6155 | checkIndirectCopyRestoreSource(S, CurInit.get()); |
| 6156 | CurInit = S.Owned(new (S.Context) |
| 6157 | ObjCIndirectCopyRestoreExpr(CurInit.take(), Step->Type, |
| 6158 | Step->Kind == SK_PassByIndirectCopyRestore)); |
| 6159 | break; |
| 6160 | |
| 6161 | case SK_ProduceObjCObject: |
| 6162 | CurInit = S.Owned(ImplicitCastExpr::Create(S.Context, Step->Type, |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 6163 | CK_ARCProduceObject, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6164 | CurInit.take(), 0, VK_RValue)); |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6165 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6166 | |
| 6167 | case SK_StdInitializerList: { |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 6168 | S.Diag(CurInit.get()->getExprLoc(), |
| 6169 | diag::warn_cxx98_compat_initializer_list_init) |
| 6170 | << CurInit.get()->getSourceRange(); |
Sebastian Redl | 2835745 | 2012-03-05 19:35:43 +0000 | [diff] [blame] | 6171 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 6172 | // Maybe lifetime-extend the array temporary's subobjects to match the |
| 6173 | // entity's lifetime. |
| 6174 | const ValueDecl *ExtendingDecl = |
| 6175 | getDeclForTemporaryLifetimeExtension(Entity); |
| 6176 | if (ExtendingDecl) { |
| 6177 | performLifetimeExtension(CurInit.get(), ExtendingDecl); |
| 6178 | warnOnLifetimeExtension(S, Entity, CurInit.get(), true, ExtendingDecl); |
Sebastian Redl | 2835745 | 2012-03-05 19:35:43 +0000 | [diff] [blame] | 6179 | } |
| 6180 | |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 6181 | // Materialize the temporary into memory. |
| 6182 | MaterializeTemporaryExpr *MTE = new (S.Context) |
| 6183 | MaterializeTemporaryExpr(CurInit.get()->getType(), CurInit.get(), |
| 6184 | /*lvalue reference*/ false, ExtendingDecl); |
| 6185 | |
| 6186 | // Wrap it in a construction of a std::initializer_list<T>. |
| 6187 | CurInit = S.Owned( |
| 6188 | new (S.Context) CXXStdInitializerListExpr(Step->Type, MTE)); |
| 6189 | |
| 6190 | // Bind the result, in case the library has given initializer_list a |
| 6191 | // non-trivial destructor. |
| 6192 | if (shouldBindAsTemporary(Entity)) |
| 6193 | CurInit = S.MaybeBindToTemporary(CurInit.take()); |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6194 | break; |
| 6195 | } |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 6196 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6197 | case SK_OCLSamplerInit: { |
| 6198 | assert(Step->Type->isSamplerT() && |
| 6199 | "Sampler initialization on non sampler type."); |
| 6200 | |
| 6201 | QualType SourceType = CurInit.get()->getType(); |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6202 | |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 6203 | if (Entity.isParameterKind()) { |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6204 | if (!SourceType->isSamplerT()) |
| 6205 | S.Diag(Kind.getLocation(), diag::err_sampler_argument_required) |
| 6206 | << SourceType; |
Fariborz Jahanian | 2651b7a | 2013-07-31 18:21:45 +0000 | [diff] [blame] | 6207 | } else if (Entity.getKind() != InitializedEntity::EK_Variable) { |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6208 | llvm_unreachable("Invalid EntityKind!"); |
| 6209 | } |
| 6210 | |
| 6211 | break; |
| 6212 | } |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 6213 | case SK_OCLZeroEvent: { |
| 6214 | assert(Step->Type->isEventT() && |
| 6215 | "Event initialization on non event type."); |
| 6216 | |
| 6217 | CurInit = S.ImpCastExprToType(CurInit.take(), Step->Type, |
| 6218 | CK_ZeroToOCLEvent, |
| 6219 | CurInit.get()->getValueKind()); |
| 6220 | break; |
| 6221 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6222 | } |
| 6223 | } |
John McCall | 15d7d12 | 2010-11-11 03:21:53 +0000 | [diff] [blame] | 6224 | |
| 6225 | // Diagnose non-fatal problems with the completed initialization. |
| 6226 | if (Entity.getKind() == InitializedEntity::EK_Member && |
| 6227 | cast<FieldDecl>(Entity.getDecl())->isBitField()) |
| 6228 | S.CheckBitFieldInitialization(Kind.getLocation(), |
| 6229 | cast<FieldDecl>(Entity.getDecl()), |
| 6230 | CurInit.get()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6231 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6232 | return CurInit; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6233 | } |
| 6234 | |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 6235 | /// Somewhere within T there is an uninitialized reference subobject. |
| 6236 | /// Dig it out and diagnose it. |
Benjamin Kramer | a574c89 | 2013-02-15 12:30:38 +0000 | [diff] [blame] | 6237 | static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc, |
| 6238 | QualType T) { |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 6239 | if (T->isReferenceType()) { |
| 6240 | S.Diag(Loc, diag::err_reference_without_init) |
| 6241 | << T.getNonReferenceType(); |
| 6242 | return true; |
| 6243 | } |
| 6244 | |
| 6245 | CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); |
| 6246 | if (!RD || !RD->hasUninitializedReferenceMember()) |
| 6247 | return false; |
| 6248 | |
| 6249 | for (CXXRecordDecl::field_iterator FI = RD->field_begin(), |
| 6250 | FE = RD->field_end(); FI != FE; ++FI) { |
| 6251 | if (FI->isUnnamedBitfield()) |
| 6252 | continue; |
| 6253 | |
| 6254 | if (DiagnoseUninitializedReference(S, FI->getLocation(), FI->getType())) { |
| 6255 | S.Diag(Loc, diag::note_value_initialization_here) << RD; |
| 6256 | return true; |
| 6257 | } |
| 6258 | } |
| 6259 | |
| 6260 | for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(), |
| 6261 | BE = RD->bases_end(); |
| 6262 | BI != BE; ++BI) { |
| 6263 | if (DiagnoseUninitializedReference(S, BI->getLocStart(), BI->getType())) { |
| 6264 | S.Diag(Loc, diag::note_value_initialization_here) << RD; |
| 6265 | return true; |
| 6266 | } |
| 6267 | } |
| 6268 | |
| 6269 | return false; |
| 6270 | } |
| 6271 | |
| 6272 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6273 | //===----------------------------------------------------------------------===// |
| 6274 | // Diagnose initialization failures |
| 6275 | //===----------------------------------------------------------------------===// |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 6276 | |
| 6277 | /// Emit notes associated with an initialization that failed due to a |
| 6278 | /// "simple" conversion failure. |
| 6279 | static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity, |
| 6280 | Expr *op) { |
| 6281 | QualType destType = entity.getType(); |
| 6282 | if (destType.getNonReferenceType()->isObjCObjectPointerType() && |
| 6283 | op->getType()->isObjCObjectPointerType()) { |
| 6284 | |
| 6285 | // Emit a possible note about the conversion failing because the |
| 6286 | // operand is a message send with a related result type. |
| 6287 | S.EmitRelatedResultTypeNote(op); |
| 6288 | |
| 6289 | // Emit a possible note about a return failing because we're |
| 6290 | // expecting a related result type. |
| 6291 | if (entity.getKind() == InitializedEntity::EK_Result) |
| 6292 | S.EmitRelatedResultTypeNoteForReturn(destType); |
| 6293 | } |
| 6294 | } |
| 6295 | |
Bill Wendling | 2ca3db4 | 2013-11-22 00:01:44 +0000 | [diff] [blame] | 6296 | static void diagnoseListInit(Sema &S, const InitializedEntity &Entity, |
| 6297 | InitListExpr *InitList) { |
| 6298 | QualType DestType = Entity.getType(); |
| 6299 | |
| 6300 | QualType E; |
| 6301 | if (S.getLangOpts().CPlusPlus11 && S.isStdInitializerList(DestType, &E)) { |
| 6302 | QualType ArrayType = S.Context.getConstantArrayType( |
| 6303 | E.withConst(), |
| 6304 | llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()), |
| 6305 | InitList->getNumInits()), |
| 6306 | clang::ArrayType::Normal, 0); |
| 6307 | InitializedEntity HiddenArray = |
| 6308 | InitializedEntity::InitializeTemporary(ArrayType); |
| 6309 | return diagnoseListInit(S, HiddenArray, InitList); |
| 6310 | } |
| 6311 | |
| 6312 | InitListChecker DiagnoseInitList(S, Entity, InitList, DestType, |
| 6313 | /*VerifyOnly=*/false); |
| 6314 | assert(DiagnoseInitList.HadError() && |
| 6315 | "Inconsistent init list check result."); |
| 6316 | } |
| 6317 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6318 | bool InitializationSequence::Diagnose(Sema &S, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6319 | const InitializedEntity &Entity, |
| 6320 | const InitializationKind &Kind, |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6321 | ArrayRef<Expr *> Args) { |
Sebastian Redl | d695d6b | 2011-06-05 13:59:05 +0000 | [diff] [blame] | 6322 | if (!Failed()) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6323 | return false; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6324 | |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 6325 | QualType DestType = Entity.getType(); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6326 | switch (Failure) { |
| 6327 | case FK_TooManyInitsForReference: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6328 | // FIXME: Customize for the initialized entity? |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6329 | if (Args.empty()) { |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 6330 | // Dig out the reference subobject which is uninitialized and diagnose it. |
| 6331 | // If this is value-initialization, this could be nested some way within |
| 6332 | // the target type. |
| 6333 | assert(Kind.getKind() == InitializationKind::IK_Value || |
| 6334 | DestType->isReferenceType()); |
| 6335 | bool Diagnosed = |
| 6336 | DiagnoseUninitializedReference(S, Kind.getLocation(), DestType); |
| 6337 | assert(Diagnosed && "couldn't find uninitialized reference to diagnose"); |
| 6338 | (void)Diagnosed; |
| 6339 | } else // FIXME: diagnostic below could be better! |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6340 | S.Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits) |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6341 | << SourceRange(Args.front()->getLocStart(), Args.back()->getLocEnd()); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6342 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6343 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6344 | case FK_ArrayNeedsInitList: |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 6345 | S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 0; |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6346 | break; |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 6347 | case FK_ArrayNeedsInitListOrStringLiteral: |
| 6348 | S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 1; |
| 6349 | break; |
| 6350 | case FK_ArrayNeedsInitListOrWideStringLiteral: |
| 6351 | S.Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 2; |
| 6352 | break; |
| 6353 | case FK_NarrowStringIntoWideCharArray: |
| 6354 | S.Diag(Kind.getLocation(), diag::err_array_init_narrow_string_into_wchar); |
| 6355 | break; |
| 6356 | case FK_WideStringIntoCharArray: |
| 6357 | S.Diag(Kind.getLocation(), diag::err_array_init_wide_string_into_char); |
| 6358 | break; |
| 6359 | case FK_IncompatWideStringIntoWideChar: |
| 6360 | S.Diag(Kind.getLocation(), |
| 6361 | diag::err_array_init_incompat_wide_string_into_wchar); |
| 6362 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6363 | case FK_ArrayTypeMismatch: |
| 6364 | case FK_NonConstantArrayInit: |
Bill Wendling | 2ca3db4 | 2013-11-22 00:01:44 +0000 | [diff] [blame] | 6365 | S.Diag(Kind.getLocation(), |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6366 | (Failure == FK_ArrayTypeMismatch |
| 6367 | ? diag::err_array_init_different_type |
| 6368 | : diag::err_array_init_non_constant_array)) |
| 6369 | << DestType.getNonReferenceType() |
| 6370 | << Args[0]->getType() |
| 6371 | << Args[0]->getSourceRange(); |
| 6372 | break; |
| 6373 | |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 6374 | case FK_VariableLengthArrayHasInitializer: |
| 6375 | S.Diag(Kind.getLocation(), diag::err_variable_object_no_init) |
| 6376 | << Args[0]->getSourceRange(); |
| 6377 | break; |
| 6378 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 6379 | case FK_AddressOfOverloadFailed: { |
| 6380 | DeclAccessPair Found; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6381 | S.ResolveAddressOfOverloadedFunction(Args[0], |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6382 | DestType.getNonReferenceType(), |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 6383 | true, |
| 6384 | Found); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6385 | break; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 6386 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6387 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6388 | case FK_ReferenceInitOverloadFailed: |
Douglas Gregor | 4a520a2 | 2009-12-14 17:27:33 +0000 | [diff] [blame] | 6389 | case FK_UserConversionOverloadFailed: |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6390 | switch (FailedOverloadResult) { |
| 6391 | case OR_Ambiguous: |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6392 | if (Failure == FK_UserConversionOverloadFailed) |
| 6393 | S.Diag(Kind.getLocation(), diag::err_typecheck_ambiguous_condition) |
| 6394 | << Args[0]->getType() << DestType |
| 6395 | << Args[0]->getSourceRange(); |
| 6396 | else |
| 6397 | S.Diag(Kind.getLocation(), diag::err_ref_init_ambiguous) |
| 6398 | << DestType << Args[0]->getType() |
| 6399 | << Args[0]->getSourceRange(); |
| 6400 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6401 | FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6402 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6403 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6404 | case OR_No_Viable_Function: |
Larisse Voufo | 288f76a | 2013-06-27 03:36:30 +0000 | [diff] [blame] | 6405 | if (!S.RequireCompleteType(Kind.getLocation(), |
Larisse Voufo | 7419d01 | 2013-06-27 01:50:25 +0000 | [diff] [blame] | 6406 | DestType.getNonReferenceType(), |
| 6407 | diag::err_typecheck_nonviable_condition_incomplete, |
| 6408 | Args[0]->getType(), Args[0]->getSourceRange())) |
| 6409 | S.Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition) |
| 6410 | << Args[0]->getType() << Args[0]->getSourceRange() |
| 6411 | << DestType.getNonReferenceType(); |
| 6412 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6413 | FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6414 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6415 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6416 | case OR_Deleted: { |
| 6417 | S.Diag(Kind.getLocation(), diag::err_typecheck_deleted_function) |
| 6418 | << Args[0]->getType() << DestType.getNonReferenceType() |
| 6419 | << Args[0]->getSourceRange(); |
| 6420 | OverloadCandidateSet::iterator Best; |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 6421 | OverloadingResult Ovl |
Douglas Gregor | 8fcc516 | 2010-09-12 08:07:23 +0000 | [diff] [blame] | 6422 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best, |
| 6423 | true); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6424 | if (Ovl == OR_Deleted) { |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6425 | S.NoteDeletedFunction(Best->Function); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6426 | } else { |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 6427 | llvm_unreachable("Inconsistent overload resolution?"); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6428 | } |
| 6429 | break; |
| 6430 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6431 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6432 | case OR_Success: |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 6433 | llvm_unreachable("Conversion did not fail!"); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6434 | } |
| 6435 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6436 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6437 | case FK_NonConstLValueReferenceBindingToTemporary: |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6438 | if (isa<InitListExpr>(Args[0])) { |
| 6439 | S.Diag(Kind.getLocation(), |
| 6440 | diag::err_lvalue_reference_bind_to_initlist) |
| 6441 | << DestType.getNonReferenceType().isVolatileQualified() |
| 6442 | << DestType.getNonReferenceType() |
| 6443 | << Args[0]->getSourceRange(); |
| 6444 | break; |
| 6445 | } |
| 6446 | // Intentional fallthrough |
| 6447 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6448 | case FK_NonConstLValueReferenceBindingToUnrelated: |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6449 | S.Diag(Kind.getLocation(), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6450 | Failure == FK_NonConstLValueReferenceBindingToTemporary |
| 6451 | ? diag::err_lvalue_reference_bind_to_temporary |
| 6452 | : diag::err_lvalue_reference_bind_to_unrelated) |
Douglas Gregor | ef06e24 | 2010-01-29 19:39:15 +0000 | [diff] [blame] | 6453 | << DestType.getNonReferenceType().isVolatileQualified() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6454 | << DestType.getNonReferenceType() |
| 6455 | << Args[0]->getType() |
| 6456 | << Args[0]->getSourceRange(); |
| 6457 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6458 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6459 | case FK_RValueReferenceBindingToLValue: |
| 6460 | S.Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref) |
Douglas Gregor | fb5d7ef | 2011-01-21 01:04:33 +0000 | [diff] [blame] | 6461 | << DestType.getNonReferenceType() << Args[0]->getType() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6462 | << Args[0]->getSourceRange(); |
| 6463 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6464 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6465 | case FK_ReferenceInitDropsQualifiers: |
| 6466 | S.Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals) |
| 6467 | << DestType.getNonReferenceType() |
| 6468 | << Args[0]->getType() |
| 6469 | << Args[0]->getSourceRange(); |
| 6470 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6471 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6472 | case FK_ReferenceInitFailed: |
| 6473 | S.Diag(Kind.getLocation(), diag::err_reference_bind_failed) |
| 6474 | << DestType.getNonReferenceType() |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 6475 | << Args[0]->isLValue() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6476 | << Args[0]->getType() |
| 6477 | << Args[0]->getSourceRange(); |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 6478 | emitBadConversionNotes(S, Entity, Args[0]); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6479 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6480 | |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 6481 | case FK_ConversionFailed: { |
| 6482 | QualType FromType = Args[0]->getType(); |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 6483 | PartialDiagnostic PDiag = S.PDiag(diag::err_init_conversion_failed) |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6484 | << (int)Entity.getKind() |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6485 | << DestType |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 6486 | << Args[0]->isLValue() |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 6487 | << FromType |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6488 | << Args[0]->getSourceRange(); |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 6489 | S.HandleFunctionTypeMismatch(PDiag, FromType, DestType); |
| 6490 | S.Diag(Kind.getLocation(), PDiag); |
John McCall | 7cca821 | 2013-03-19 07:04:25 +0000 | [diff] [blame] | 6491 | emitBadConversionNotes(S, Entity, Args[0]); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 6492 | break; |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 6493 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6494 | |
| 6495 | case FK_ConversionFromPropertyFailed: |
| 6496 | // No-op. This error has already been reported. |
| 6497 | break; |
| 6498 | |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 6499 | case FK_TooManyInitsForScalar: { |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6500 | SourceRange R; |
| 6501 | |
| 6502 | if (InitListExpr *InitList = dyn_cast<InitListExpr>(Args[0])) |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 6503 | R = SourceRange(InitList->getInit(0)->getLocEnd(), |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6504 | InitList->getLocEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6505 | else |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6506 | R = SourceRange(Args.front()->getLocEnd(), Args.back()->getLocEnd()); |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 6507 | |
Douglas Gregor | 19311e7 | 2010-09-08 21:40:08 +0000 | [diff] [blame] | 6508 | R.setBegin(S.PP.getLocForEndOfToken(R.getBegin())); |
| 6509 | if (Kind.isCStyleOrFunctionalCast()) |
| 6510 | S.Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg) |
| 6511 | << R; |
| 6512 | else |
| 6513 | S.Diag(Kind.getLocation(), diag::err_excess_initializers) |
| 6514 | << /*scalar=*/2 << R; |
Douglas Gregor | d87b61f | 2009-12-10 17:56:55 +0000 | [diff] [blame] | 6515 | break; |
| 6516 | } |
| 6517 | |
| 6518 | case FK_ReferenceBindingToInitList: |
| 6519 | S.Diag(Kind.getLocation(), diag::err_reference_bind_init_list) |
| 6520 | << DestType.getNonReferenceType() << Args[0]->getSourceRange(); |
| 6521 | break; |
| 6522 | |
| 6523 | case FK_InitListBadDestinationType: |
| 6524 | S.Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type) |
| 6525 | << (DestType->isRecordType()) << DestType << Args[0]->getSourceRange(); |
| 6526 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6527 | |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 6528 | case FK_ListConstructorOverloadFailed: |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6529 | case FK_ConstructorOverloadFailed: { |
| 6530 | SourceRange ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6531 | if (Args.size()) |
| 6532 | ArgsRange = SourceRange(Args.front()->getLocStart(), |
| 6533 | Args.back()->getLocEnd()); |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6534 | |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 6535 | if (Failure == FK_ListConstructorOverloadFailed) { |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6536 | assert(Args.size() == 1 && "List construction from other than 1 argument."); |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 6537 | InitListExpr *InitList = cast<InitListExpr>(Args[0]); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6538 | Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); |
Sebastian Redl | cf15cef | 2011-12-22 18:58:38 +0000 | [diff] [blame] | 6539 | } |
| 6540 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6541 | // FIXME: Using "DestType" for the entity we're printing is probably |
| 6542 | // bad. |
| 6543 | switch (FailedOverloadResult) { |
| 6544 | case OR_Ambiguous: |
| 6545 | S.Diag(Kind.getLocation(), diag::err_ovl_ambiguous_init) |
| 6546 | << DestType << ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6547 | FailedCandidateSet.NoteCandidates(S, OCD_ViableCandidates, Args); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6548 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6549 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6550 | case OR_No_Viable_Function: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6551 | if (Kind.getKind() == InitializationKind::IK_Default && |
| 6552 | (Entity.getKind() == InitializedEntity::EK_Base || |
| 6553 | Entity.getKind() == InitializedEntity::EK_Member) && |
| 6554 | isa<CXXConstructorDecl>(S.CurContext)) { |
| 6555 | // This is implicit default initialization of a member or |
| 6556 | // base within a constructor. If no viable function was |
| 6557 | // found, notify the user that she needs to explicitly |
| 6558 | // initialize this base/member. |
| 6559 | CXXConstructorDecl *Constructor |
| 6560 | = cast<CXXConstructorDecl>(S.CurContext); |
| 6561 | if (Entity.getKind() == InitializedEntity::EK_Base) { |
| 6562 | S.Diag(Kind.getLocation(), diag::err_missing_default_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6563 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6564 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6565 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6566 | << /*base=*/0 |
| 6567 | << Entity.getType(); |
| 6568 | |
| 6569 | RecordDecl *BaseDecl |
| 6570 | = Entity.getBaseSpecifier()->getType()->getAs<RecordType>() |
| 6571 | ->getDecl(); |
| 6572 | S.Diag(BaseDecl->getLocation(), diag::note_previous_decl) |
| 6573 | << S.Context.getTagDeclType(BaseDecl); |
| 6574 | } else { |
| 6575 | S.Diag(Kind.getLocation(), diag::err_missing_default_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6576 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6577 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6578 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6579 | << /*member=*/1 |
| 6580 | << Entity.getName(); |
| 6581 | S.Diag(Entity.getDecl()->getLocation(), diag::note_field_decl); |
| 6582 | |
| 6583 | if (const RecordType *Record |
| 6584 | = Entity.getType()->getAs<RecordType>()) |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6585 | S.Diag(Record->getDecl()->getLocation(), |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6586 | diag::note_previous_decl) |
| 6587 | << S.Context.getTagDeclType(Record->getDecl()); |
| 6588 | } |
| 6589 | break; |
| 6590 | } |
| 6591 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6592 | S.Diag(Kind.getLocation(), diag::err_ovl_no_viable_function_in_init) |
| 6593 | << DestType << ArgsRange; |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 6594 | FailedCandidateSet.NoteCandidates(S, OCD_AllCandidates, Args); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6595 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6596 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6597 | case OR_Deleted: { |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6598 | OverloadCandidateSet::iterator Best; |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 6599 | OverloadingResult Ovl |
| 6600 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best); |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6601 | if (Ovl != OR_Deleted) { |
| 6602 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init) |
| 6603 | << true << DestType << ArgsRange; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6604 | llvm_unreachable("Inconsistent overload resolution?"); |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6605 | break; |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6606 | } |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6607 | |
| 6608 | // If this is a defaulted or implicitly-declared function, then |
| 6609 | // it was implicitly deleted. Make it clear that the deletion was |
| 6610 | // implicit. |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6611 | if (S.isImplicitlyDeleted(Best->Function)) |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6612 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init) |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6613 | << S.getSpecialMember(cast<CXXMethodDecl>(Best->Function)) |
Douglas Gregor | e4e68d4 | 2012-02-15 19:33:52 +0000 | [diff] [blame] | 6614 | << DestType << ArgsRange; |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 6615 | else |
| 6616 | S.Diag(Kind.getLocation(), diag::err_ovl_deleted_init) |
| 6617 | << true << DestType << ArgsRange; |
| 6618 | |
| 6619 | S.NoteDeletedFunction(Best->Function); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6620 | break; |
| 6621 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6622 | |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6623 | case OR_Success: |
| 6624 | llvm_unreachable("Conversion did not fail!"); |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6625 | } |
Douglas Gregor | 51c56d6 | 2009-12-14 20:49:26 +0000 | [diff] [blame] | 6626 | } |
David Blaikie | 9fdefb3 | 2012-01-17 08:24:58 +0000 | [diff] [blame] | 6627 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6628 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6629 | case FK_DefaultInitOfConst: |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6630 | if (Entity.getKind() == InitializedEntity::EK_Member && |
| 6631 | isa<CXXConstructorDecl>(S.CurContext)) { |
| 6632 | // This is implicit default-initialization of a const member in |
| 6633 | // a constructor. Complain that it needs to be explicitly |
| 6634 | // initialized. |
| 6635 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(S.CurContext); |
| 6636 | S.Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor) |
Richard Smith | 07b0fdc | 2013-03-18 21:12:30 +0000 | [diff] [blame] | 6637 | << (Constructor->getInheritedConstructor() ? 2 : |
| 6638 | Constructor->isImplicit() ? 1 : 0) |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 6639 | << S.Context.getTypeDeclType(Constructor->getParent()) |
| 6640 | << /*const=*/1 |
| 6641 | << Entity.getName(); |
| 6642 | S.Diag(Entity.getDecl()->getLocation(), diag::note_previous_decl) |
| 6643 | << Entity.getName(); |
| 6644 | } else { |
| 6645 | S.Diag(Kind.getLocation(), diag::err_default_init_const) |
| 6646 | << DestType << (bool)DestType->getAs<RecordType>(); |
| 6647 | } |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 6648 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6649 | |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6650 | case FK_Incomplete: |
Douglas Gregor | 69a30b8 | 2012-04-10 20:43:46 +0000 | [diff] [blame] | 6651 | S.RequireCompleteType(Kind.getLocation(), FailedIncompleteType, |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6652 | diag::err_init_incomplete_type); |
| 6653 | break; |
| 6654 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6655 | case FK_ListInitializationFailed: { |
| 6656 | // Run the init list checker again to emit diagnostics. |
Bill Wendling | 2ca3db4 | 2013-11-22 00:01:44 +0000 | [diff] [blame] | 6657 | InitListExpr *InitList = cast<InitListExpr>(Args[0]); |
| 6658 | diagnoseListInit(S, Entity, InitList); |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6659 | break; |
| 6660 | } |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6661 | |
| 6662 | case FK_PlaceholderType: { |
| 6663 | // FIXME: Already diagnosed! |
| 6664 | break; |
| 6665 | } |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6666 | |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6667 | case FK_ExplicitConstructor: { |
| 6668 | S.Diag(Kind.getLocation(), diag::err_selected_explicit_constructor) |
| 6669 | << Args[0]->getSourceRange(); |
| 6670 | OverloadCandidateSet::iterator Best; |
| 6671 | OverloadingResult Ovl |
| 6672 | = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best); |
Matt Beaumont-Gay | e7d0bbf | 2012-04-02 19:05:35 +0000 | [diff] [blame] | 6673 | (void)Ovl; |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6674 | assert(Ovl == OR_Success && "Inconsistent overload resolution"); |
| 6675 | CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function); |
| 6676 | S.Diag(CtorDecl->getLocation(), diag::note_constructor_declared_here); |
| 6677 | break; |
| 6678 | } |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6679 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6680 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 6681 | PrintInitLocationNote(S, Entity); |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 6682 | return true; |
| 6683 | } |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 6684 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6685 | void InitializationSequence::dump(raw_ostream &OS) const { |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6686 | switch (SequenceKind) { |
| 6687 | case FailedSequence: { |
| 6688 | OS << "Failed sequence: "; |
| 6689 | switch (Failure) { |
| 6690 | case FK_TooManyInitsForReference: |
| 6691 | OS << "too many initializers for reference"; |
| 6692 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6693 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6694 | case FK_ArrayNeedsInitList: |
| 6695 | OS << "array requires initializer list"; |
| 6696 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6697 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6698 | case FK_ArrayNeedsInitListOrStringLiteral: |
| 6699 | OS << "array requires initializer list or string literal"; |
| 6700 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6701 | |
Hans Wennborg | 0ff5074 | 2013-05-15 11:03:04 +0000 | [diff] [blame] | 6702 | case FK_ArrayNeedsInitListOrWideStringLiteral: |
| 6703 | OS << "array requires initializer list or wide string literal"; |
| 6704 | break; |
| 6705 | |
| 6706 | case FK_NarrowStringIntoWideCharArray: |
| 6707 | OS << "narrow string into wide char array"; |
| 6708 | break; |
| 6709 | |
| 6710 | case FK_WideStringIntoCharArray: |
| 6711 | OS << "wide string into char array"; |
| 6712 | break; |
| 6713 | |
| 6714 | case FK_IncompatWideStringIntoWideChar: |
| 6715 | OS << "incompatible wide string into wide char array"; |
| 6716 | break; |
| 6717 | |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6718 | case FK_ArrayTypeMismatch: |
| 6719 | OS << "array type mismatch"; |
| 6720 | break; |
| 6721 | |
| 6722 | case FK_NonConstantArrayInit: |
| 6723 | OS << "non-constant array initializer"; |
| 6724 | break; |
| 6725 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6726 | case FK_AddressOfOverloadFailed: |
| 6727 | OS << "address of overloaded function failed"; |
| 6728 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6729 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6730 | case FK_ReferenceInitOverloadFailed: |
| 6731 | OS << "overload resolution for reference initialization failed"; |
| 6732 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6733 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6734 | case FK_NonConstLValueReferenceBindingToTemporary: |
| 6735 | OS << "non-const lvalue reference bound to temporary"; |
| 6736 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6737 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6738 | case FK_NonConstLValueReferenceBindingToUnrelated: |
| 6739 | OS << "non-const lvalue reference bound to unrelated type"; |
| 6740 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6741 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6742 | case FK_RValueReferenceBindingToLValue: |
| 6743 | OS << "rvalue reference bound to an lvalue"; |
| 6744 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6745 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6746 | case FK_ReferenceInitDropsQualifiers: |
| 6747 | OS << "reference initialization drops qualifiers"; |
| 6748 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6749 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6750 | case FK_ReferenceInitFailed: |
| 6751 | OS << "reference initialization failed"; |
| 6752 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6753 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6754 | case FK_ConversionFailed: |
| 6755 | OS << "conversion failed"; |
| 6756 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6757 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6758 | case FK_ConversionFromPropertyFailed: |
| 6759 | OS << "conversion from property failed"; |
| 6760 | break; |
| 6761 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6762 | case FK_TooManyInitsForScalar: |
| 6763 | OS << "too many initializers for scalar"; |
| 6764 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6765 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6766 | case FK_ReferenceBindingToInitList: |
| 6767 | OS << "referencing binding to initializer list"; |
| 6768 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6769 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6770 | case FK_InitListBadDestinationType: |
| 6771 | OS << "initializer list for non-aggregate, non-scalar type"; |
| 6772 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6773 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6774 | case FK_UserConversionOverloadFailed: |
| 6775 | OS << "overloading failed for user-defined conversion"; |
| 6776 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6777 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6778 | case FK_ConstructorOverloadFailed: |
| 6779 | OS << "constructor overloading failed"; |
| 6780 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6781 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6782 | case FK_DefaultInitOfConst: |
| 6783 | OS << "default initialization of a const variable"; |
| 6784 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6785 | |
Douglas Gregor | 72a43bb | 2010-05-20 22:12:02 +0000 | [diff] [blame] | 6786 | case FK_Incomplete: |
| 6787 | OS << "initialization of incomplete type"; |
| 6788 | break; |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6789 | |
| 6790 | case FK_ListInitializationFailed: |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6791 | OS << "list initialization checker failure"; |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6792 | break; |
| 6793 | |
John McCall | 7307643 | 2012-01-05 00:13:19 +0000 | [diff] [blame] | 6794 | case FK_VariableLengthArrayHasInitializer: |
| 6795 | OS << "variable length array has an initializer"; |
| 6796 | break; |
| 6797 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 6798 | case FK_PlaceholderType: |
| 6799 | OS << "initializer expression isn't contextually valid"; |
| 6800 | break; |
Nick Lewycky | b0c6c33 | 2011-12-22 20:21:32 +0000 | [diff] [blame] | 6801 | |
| 6802 | case FK_ListConstructorOverloadFailed: |
| 6803 | OS << "list constructor overloading failed"; |
| 6804 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6805 | |
Sebastian Redl | 70e24fc | 2012-04-01 19:54:59 +0000 | [diff] [blame] | 6806 | case FK_ExplicitConstructor: |
| 6807 | OS << "list copy initialization chose explicit constructor"; |
| 6808 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6809 | } |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6810 | OS << '\n'; |
| 6811 | return; |
| 6812 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6813 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6814 | case DependentSequence: |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 6815 | OS << "Dependent sequence\n"; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6816 | return; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6817 | |
Sebastian Redl | 7491c49 | 2011-06-05 13:59:11 +0000 | [diff] [blame] | 6818 | case NormalSequence: |
| 6819 | OS << "Normal sequence: "; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6820 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6821 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6822 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6823 | for (step_iterator S = step_begin(), SEnd = step_end(); S != SEnd; ++S) { |
| 6824 | if (S != step_begin()) { |
| 6825 | OS << " -> "; |
| 6826 | } |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6827 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6828 | switch (S->Kind) { |
| 6829 | case SK_ResolveAddressOfOverloadedFunction: |
| 6830 | OS << "resolve address of overloaded function"; |
| 6831 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6832 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6833 | case SK_CastDerivedToBaseRValue: |
| 6834 | OS << "derived-to-base case (rvalue" << S->Type.getAsString() << ")"; |
| 6835 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6836 | |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6837 | case SK_CastDerivedToBaseXValue: |
| 6838 | OS << "derived-to-base case (xvalue" << S->Type.getAsString() << ")"; |
| 6839 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6840 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6841 | case SK_CastDerivedToBaseLValue: |
| 6842 | OS << "derived-to-base case (lvalue" << S->Type.getAsString() << ")"; |
| 6843 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6844 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6845 | case SK_BindReference: |
| 6846 | OS << "bind reference to lvalue"; |
| 6847 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6848 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6849 | case SK_BindReferenceToTemporary: |
| 6850 | OS << "bind reference to a temporary"; |
| 6851 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6852 | |
Douglas Gregor | 523d46a | 2010-04-18 07:40:54 +0000 | [diff] [blame] | 6853 | case SK_ExtraneousCopyToTemporary: |
| 6854 | OS << "extraneous C++03 copy to temporary"; |
| 6855 | break; |
| 6856 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6857 | case SK_UserConversion: |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 6858 | OS << "user-defined conversion via " << *S->Function.Function; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6859 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6860 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6861 | case SK_QualificationConversionRValue: |
| 6862 | OS << "qualification conversion (rvalue)"; |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6863 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6864 | |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6865 | case SK_QualificationConversionXValue: |
| 6866 | OS << "qualification conversion (xvalue)"; |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6867 | break; |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 6868 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6869 | case SK_QualificationConversionLValue: |
| 6870 | OS << "qualification conversion (lvalue)"; |
| 6871 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6872 | |
Jordan Rose | 1fd1e28 | 2013-04-11 00:58:58 +0000 | [diff] [blame] | 6873 | case SK_LValueToRValue: |
| 6874 | OS << "load (lvalue to rvalue)"; |
| 6875 | break; |
| 6876 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6877 | case SK_ConversionSequence: |
| 6878 | OS << "implicit conversion sequence ("; |
Douglas Gregor | 2f8b0cc | 2013-11-08 02:16:10 +0000 | [diff] [blame] | 6879 | S->ICS->dump(); // FIXME: use OS |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6880 | OS << ")"; |
| 6881 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6882 | |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 6883 | case SK_ConversionSequenceNoNarrowing: |
| 6884 | OS << "implicit conversion sequence with narrowing prohibited ("; |
Douglas Gregor | 2f8b0cc | 2013-11-08 02:16:10 +0000 | [diff] [blame] | 6885 | S->ICS->dump(); // FIXME: use OS |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 6886 | OS << ")"; |
| 6887 | break; |
| 6888 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6889 | case SK_ListInitialization: |
Sebastian Redl | 8713d4e | 2011-09-24 17:47:52 +0000 | [diff] [blame] | 6890 | OS << "list aggregate initialization"; |
| 6891 | break; |
| 6892 | |
| 6893 | case SK_ListConstructorCall: |
| 6894 | OS << "list initialization via constructor"; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6895 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6896 | |
Sebastian Redl | 13dc8f9 | 2011-11-27 16:50:07 +0000 | [diff] [blame] | 6897 | case SK_UnwrapInitList: |
| 6898 | OS << "unwrap reference initializer list"; |
| 6899 | break; |
| 6900 | |
| 6901 | case SK_RewrapInitList: |
| 6902 | OS << "rewrap reference initializer list"; |
| 6903 | break; |
| 6904 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6905 | case SK_ConstructorInitialization: |
| 6906 | OS << "constructor initialization"; |
| 6907 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6908 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6909 | case SK_ZeroInitialization: |
| 6910 | OS << "zero initialization"; |
| 6911 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6912 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6913 | case SK_CAssignment: |
| 6914 | OS << "C assignment"; |
| 6915 | break; |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 6916 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6917 | case SK_StringInit: |
| 6918 | OS << "string initialization"; |
| 6919 | break; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 6920 | |
| 6921 | case SK_ObjCObjectConversion: |
| 6922 | OS << "Objective-C object conversion"; |
| 6923 | break; |
Douglas Gregor | cd9ec3b | 2011-02-22 18:29:51 +0000 | [diff] [blame] | 6924 | |
| 6925 | case SK_ArrayInit: |
| 6926 | OS << "array initialization"; |
| 6927 | break; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6928 | |
Richard Smith | 0f163e9 | 2012-02-15 22:38:09 +0000 | [diff] [blame] | 6929 | case SK_ParenthesizedArrayInit: |
| 6930 | OS << "parenthesized array initialization"; |
| 6931 | break; |
| 6932 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6933 | case SK_PassByIndirectCopyRestore: |
| 6934 | OS << "pass by indirect copy and restore"; |
| 6935 | break; |
| 6936 | |
| 6937 | case SK_PassByIndirectRestore: |
| 6938 | OS << "pass by indirect restore"; |
| 6939 | break; |
| 6940 | |
| 6941 | case SK_ProduceObjCObject: |
| 6942 | OS << "Objective-C object retension"; |
| 6943 | break; |
Sebastian Redl | 2b916b8 | 2012-01-17 22:49:42 +0000 | [diff] [blame] | 6944 | |
| 6945 | case SK_StdInitializerList: |
| 6946 | OS << "std::initializer_list from initializer list"; |
| 6947 | break; |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 6948 | |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 6949 | case SK_OCLSamplerInit: |
| 6950 | OS << "OpenCL sampler_t from integer constant"; |
| 6951 | break; |
| 6952 | |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 6953 | case SK_OCLZeroEvent: |
| 6954 | OS << "OpenCL event_t from zero"; |
| 6955 | break; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6956 | } |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 6957 | |
| 6958 | OS << " [" << S->Type.getAsString() << ']'; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6959 | } |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 6960 | |
| 6961 | OS << '\n'; |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 6962 | } |
| 6963 | |
| 6964 | void InitializationSequence::dump() const { |
| 6965 | dump(llvm::errs()); |
| 6966 | } |
| 6967 | |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 6968 | static void DiagnoseNarrowingInInitList(Sema &S, |
| 6969 | const ImplicitConversionSequence &ICS, |
| 6970 | QualType PreNarrowingType, |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6971 | QualType EntityType, |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6972 | const Expr *PostInit) { |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6973 | const StandardConversionSequence *SCS = 0; |
| 6974 | switch (ICS.getKind()) { |
| 6975 | case ImplicitConversionSequence::StandardConversion: |
| 6976 | SCS = &ICS.Standard; |
| 6977 | break; |
| 6978 | case ImplicitConversionSequence::UserDefinedConversion: |
| 6979 | SCS = &ICS.UserDefined.After; |
| 6980 | break; |
| 6981 | case ImplicitConversionSequence::AmbiguousConversion: |
| 6982 | case ImplicitConversionSequence::EllipsisConversion: |
| 6983 | case ImplicitConversionSequence::BadConversion: |
| 6984 | return; |
| 6985 | } |
| 6986 | |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6987 | // C++11 [dcl.init.list]p7: Check whether this is a narrowing conversion. |
| 6988 | APValue ConstantValue; |
Richard Smith | f602806 | 2012-03-23 23:55:39 +0000 | [diff] [blame] | 6989 | QualType ConstantType; |
| 6990 | switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue, |
| 6991 | ConstantType)) { |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 6992 | case NK_Not_Narrowing: |
| 6993 | // No narrowing occurred. |
| 6994 | return; |
| 6995 | |
| 6996 | case NK_Type_Narrowing: |
| 6997 | // This was a floating-to-integer conversion, which is always considered a |
| 6998 | // narrowing conversion even if the value is a constant and can be |
| 6999 | // represented exactly as an integer. |
| 7000 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 3347b49 | 2013-11-12 02:41:45 +0000 | [diff] [blame] | 7001 | (S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11) |
| 7002 | ? diag::warn_init_list_type_narrowing |
| 7003 | : diag::ext_init_list_type_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7004 | << PostInit->getSourceRange() |
| 7005 | << PreNarrowingType.getLocalUnqualifiedType() |
| 7006 | << EntityType.getLocalUnqualifiedType(); |
| 7007 | break; |
| 7008 | |
| 7009 | case NK_Constant_Narrowing: |
| 7010 | // A constant value was narrowed. |
| 7011 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 3347b49 | 2013-11-12 02:41:45 +0000 | [diff] [blame] | 7012 | (S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11) |
| 7013 | ? diag::warn_init_list_constant_narrowing |
| 7014 | : diag::ext_init_list_constant_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7015 | << PostInit->getSourceRange() |
Richard Smith | f602806 | 2012-03-23 23:55:39 +0000 | [diff] [blame] | 7016 | << ConstantValue.getAsString(S.getASTContext(), ConstantType) |
Jeffrey Yasskin | 9906149 | 2011-08-29 15:59:37 +0000 | [diff] [blame] | 7017 | << EntityType.getLocalUnqualifiedType(); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7018 | break; |
| 7019 | |
| 7020 | case NK_Variable_Narrowing: |
| 7021 | // A variable's value may have been narrowed. |
| 7022 | S.Diag(PostInit->getLocStart(), |
Richard Smith | 3347b49 | 2013-11-12 02:41:45 +0000 | [diff] [blame] | 7023 | (S.getLangOpts().MicrosoftExt || !S.getLangOpts().CPlusPlus11) |
| 7024 | ? diag::warn_init_list_variable_narrowing |
| 7025 | : diag::ext_init_list_variable_narrowing) |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7026 | << PostInit->getSourceRange() |
| 7027 | << PreNarrowingType.getLocalUnqualifiedType() |
Jeffrey Yasskin | 9906149 | 2011-08-29 15:59:37 +0000 | [diff] [blame] | 7028 | << EntityType.getLocalUnqualifiedType(); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7029 | break; |
| 7030 | } |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7031 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 7032 | SmallString<128> StaticCast; |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7033 | llvm::raw_svector_ostream OS(StaticCast); |
| 7034 | OS << "static_cast<"; |
| 7035 | if (const TypedefType *TT = EntityType->getAs<TypedefType>()) { |
| 7036 | // It's important to use the typedef's name if there is one so that the |
| 7037 | // fixit doesn't break code using types like int64_t. |
| 7038 | // |
| 7039 | // FIXME: This will break if the typedef requires qualification. But |
| 7040 | // getQualifiedNameAsString() includes non-machine-parsable components. |
Benjamin Kramer | b8989f2 | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 7041 | OS << *TT->getDecl(); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7042 | } else if (const BuiltinType *BT = EntityType->getAs<BuiltinType>()) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7043 | OS << BT->getName(S.getLangOpts()); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7044 | else { |
| 7045 | // Oops, we didn't find the actual type of the variable. Don't emit a fixit |
| 7046 | // with a broken cast. |
| 7047 | return; |
| 7048 | } |
| 7049 | OS << ">("; |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7050 | S.Diag(PostInit->getLocStart(), diag::note_init_list_narrowing_override) |
| 7051 | << PostInit->getSourceRange() |
| 7052 | << FixItHint::CreateInsertion(PostInit->getLocStart(), OS.str()) |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7053 | << FixItHint::CreateInsertion( |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7054 | S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")"); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7055 | } |
| 7056 | |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7057 | //===----------------------------------------------------------------------===// |
| 7058 | // Initialization helper functions |
| 7059 | //===----------------------------------------------------------------------===// |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 7060 | bool |
| 7061 | Sema::CanPerformCopyInitialization(const InitializedEntity &Entity, |
| 7062 | ExprResult Init) { |
| 7063 | if (Init.isInvalid()) |
| 7064 | return false; |
| 7065 | |
| 7066 | Expr *InitE = Init.get(); |
| 7067 | assert(InitE && "No initialization expression"); |
| 7068 | |
Douglas Gregor | 3c394c5 | 2012-07-31 22:15:04 +0000 | [diff] [blame] | 7069 | InitializationKind Kind |
| 7070 | = InitializationKind::CreateCopy(InitE->getLocStart(), SourceLocation()); |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 7071 | InitializationSequence Seq(*this, Entity, Kind, InitE); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 7072 | return !Seq.Failed(); |
Sean Hunt | 2be7e90 | 2011-05-12 22:46:29 +0000 | [diff] [blame] | 7073 | } |
| 7074 | |
NAKAMURA Takumi | dfbb02a | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 7075 | ExprResult |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7076 | Sema::PerformCopyInitialization(const InitializedEntity &Entity, |
| 7077 | SourceLocation EqualLoc, |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7078 | ExprResult Init, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 7079 | bool TopLevelOfInitList, |
| 7080 | bool AllowExplicit) { |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7081 | if (Init.isInvalid()) |
| 7082 | return ExprError(); |
| 7083 | |
John McCall | 15d7d12 | 2010-11-11 03:21:53 +0000 | [diff] [blame] | 7084 | Expr *InitE = Init.get(); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7085 | assert(InitE && "No initialization expression?"); |
| 7086 | |
| 7087 | if (EqualLoc.isInvalid()) |
| 7088 | EqualLoc = InitE->getLocStart(); |
| 7089 | |
| 7090 | InitializationKind Kind = InitializationKind::CreateCopy(InitE->getLocStart(), |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 7091 | EqualLoc, |
| 7092 | AllowExplicit); |
Richard Smith | 13b228d | 2013-09-21 21:19:19 +0000 | [diff] [blame] | 7093 | InitializationSequence Seq(*this, Entity, Kind, InitE, TopLevelOfInitList); |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7094 | Init.release(); |
Jeffrey Yasskin | 1915913 | 2011-07-26 23:20:30 +0000 | [diff] [blame] | 7095 | |
Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 7096 | ExprResult Result = Seq.Perform(*this, Entity, Kind, InitE); |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7097 | |
Richard Smith | 4c3fc9b | 2012-01-18 05:21:49 +0000 | [diff] [blame] | 7098 | return Result; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 7099 | } |