Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 14 | #include "clang/Sema/SemaInternal.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "TreeTransform.h" |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTConsumer.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Sebastian Redl | f79a719 | 2011-04-29 08:19:30 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTMutationListener.h" |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 19 | #include "clang/AST/CXXInheritance.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 22 | #include "clang/AST/EvaluatedExprVisitor.h" |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 23 | #include "clang/AST/Expr.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 24 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 25 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 26 | #include "clang/AST/RecursiveASTVisitor.h" |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 27 | #include "clang/AST/TypeLoc.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 28 | #include "clang/Basic/PartialDiagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 29 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 30 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 31 | #include "clang/Lex/LiteralSupport.h" |
| 32 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 33 | #include "clang/Sema/AnalysisBasedWarnings.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 34 | #include "clang/Sema/DeclSpec.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 35 | #include "clang/Sema/DelayedDiagnostic.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 36 | #include "clang/Sema/Designator.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 37 | #include "clang/Sema/Initialization.h" |
| 38 | #include "clang/Sema/Lookup.h" |
| 39 | #include "clang/Sema/ParsedTemplate.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 40 | #include "clang/Sema/Scope.h" |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 41 | #include "clang/Sema/ScopeInfo.h" |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 42 | #include "clang/Sema/SemaFixItUtils.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 43 | #include "clang/Sema/Template.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 44 | using namespace clang; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 45 | using namespace sema; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 46 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 47 | /// \brief Determine whether the use of this declaration is valid, without |
| 48 | /// emitting diagnostics. |
| 49 | bool Sema::CanUseDecl(NamedDecl *D) { |
| 50 | // See if this is an auto-typed variable whose initializer we are parsing. |
| 51 | if (ParsingInitForAutoVars.count(D)) |
| 52 | return false; |
| 53 | |
| 54 | // See if this is a deleted function. |
| 55 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 56 | if (FD->isDeleted()) |
| 57 | return false; |
| 58 | } |
Sebastian Redl | 28bdb14 | 2011-10-16 18:19:16 +0000 | [diff] [blame] | 59 | |
| 60 | // See if this function is unavailable. |
| 61 | if (D->getAvailability() == AR_Unavailable && |
| 62 | cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) |
| 63 | return false; |
| 64 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 65 | return true; |
| 66 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 67 | |
Fariborz Jahanian | 2d40d9e | 2012-09-06 16:43:18 +0000 | [diff] [blame] | 68 | static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) { |
| 69 | // Warn if this is used but marked unused. |
| 70 | if (D->hasAttr<UnusedAttr>()) { |
Fariborz Jahanian | 3359fa3 | 2012-09-06 18:38:58 +0000 | [diff] [blame] | 71 | const Decl *DC = cast<Decl>(S.getCurObjCLexicalContext()); |
Fariborz Jahanian | 2d40d9e | 2012-09-06 16:43:18 +0000 | [diff] [blame] | 72 | if (!DC->hasAttr<UnusedAttr>()) |
| 73 | S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); |
| 74 | } |
| 75 | } |
| 76 | |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 77 | static AvailabilityResult DiagnoseAvailabilityOfDecl(Sema &S, |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 78 | NamedDecl *D, SourceLocation Loc, |
| 79 | const ObjCInterfaceDecl *UnknownObjCClass) { |
| 80 | // See if this declaration is unavailable or deprecated. |
| 81 | std::string Message; |
| 82 | AvailabilityResult Result = D->getAvailability(&Message); |
Fariborz Jahanian | 39b4fc8 | 2011-11-28 19:45:58 +0000 | [diff] [blame] | 83 | if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) |
| 84 | if (Result == AR_Available) { |
| 85 | const DeclContext *DC = ECD->getDeclContext(); |
| 86 | if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC)) |
| 87 | Result = TheEnumDecl->getAvailability(&Message); |
| 88 | } |
Jordan Rose | 04bec39 | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 89 | |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 90 | const ObjCPropertyDecl *ObjCPDecl = 0; |
Jordan Rose | 04bec39 | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 91 | if (Result == AR_Deprecated || Result == AR_Unavailable) { |
| 92 | if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 93 | if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) { |
| 94 | AvailabilityResult PDeclResult = PD->getAvailability(0); |
| 95 | if (PDeclResult == Result) |
| 96 | ObjCPDecl = PD; |
| 97 | } |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 98 | } |
Jordan Rose | 04bec39 | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 99 | } |
Fariborz Jahanian | 39b4fc8 | 2011-11-28 19:45:58 +0000 | [diff] [blame] | 100 | |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 101 | switch (Result) { |
| 102 | case AR_Available: |
| 103 | case AR_NotYetIntroduced: |
| 104 | break; |
| 105 | |
| 106 | case AR_Deprecated: |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 107 | S.EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass, ObjCPDecl); |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 108 | break; |
| 109 | |
| 110 | case AR_Unavailable: |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 111 | if (S.getCurContextAvailability() != AR_Unavailable) { |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 112 | if (Message.empty()) { |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 113 | if (!UnknownObjCClass) { |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 114 | S.Diag(Loc, diag::err_unavailable) << D->getDeclName(); |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 115 | if (ObjCPDecl) |
| 116 | S.Diag(ObjCPDecl->getLocation(), diag::note_property_attribute) |
| 117 | << ObjCPDecl->getDeclName() << 1; |
| 118 | } |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 119 | else |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 120 | S.Diag(Loc, diag::warn_unavailable_fwdclass_message) |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 121 | << D->getDeclName(); |
| 122 | } |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 123 | else |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 124 | S.Diag(Loc, diag::err_unavailable_message) |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 125 | << D->getDeclName() << Message; |
Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 126 | S.Diag(D->getLocation(), diag::note_unavailable_here) |
| 127 | << isa<FunctionDecl>(D) << false; |
| 128 | if (ObjCPDecl) |
| 129 | S.Diag(ObjCPDecl->getLocation(), diag::note_property_attribute) |
| 130 | << ObjCPDecl->getDeclName() << 1; |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 131 | } |
| 132 | break; |
| 133 | } |
| 134 | return Result; |
| 135 | } |
| 136 | |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 137 | /// \brief Emit a note explaining that this function is deleted or unavailable. |
| 138 | void Sema::NoteDeletedFunction(FunctionDecl *Decl) { |
| 139 | CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); |
| 140 | |
Richard Smith | 5bdaac5 | 2012-04-02 20:59:25 +0000 | [diff] [blame] | 141 | if (Method && Method->isDeleted() && !Method->isDeletedAsWritten()) { |
| 142 | // If the method was explicitly defaulted, point at that declaration. |
| 143 | if (!Method->isImplicit()) |
| 144 | Diag(Decl->getLocation(), diag::note_implicitly_deleted); |
| 145 | |
| 146 | // Try to diagnose why this special member function was implicitly |
| 147 | // deleted. This might fail, if that reason no longer applies. |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 148 | CXXSpecialMember CSM = getSpecialMember(Method); |
Richard Smith | 5bdaac5 | 2012-04-02 20:59:25 +0000 | [diff] [blame] | 149 | if (CSM != CXXInvalid) |
| 150 | ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true); |
| 151 | |
| 152 | return; |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | Diag(Decl->getLocation(), diag::note_unavailable_here) |
| 156 | << 1 << Decl->isDeleted(); |
| 157 | } |
| 158 | |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 159 | /// \brief Determine whether a FunctionDecl was ever declared with an |
| 160 | /// explicit storage class. |
| 161 | static bool hasAnyExplicitStorageClass(const FunctionDecl *D) { |
| 162 | for (FunctionDecl::redecl_iterator I = D->redecls_begin(), |
| 163 | E = D->redecls_end(); |
| 164 | I != E; ++I) { |
| 165 | if (I->getStorageClassAsWritten() != SC_None) |
| 166 | return true; |
| 167 | } |
| 168 | return false; |
| 169 | } |
| 170 | |
| 171 | /// \brief Check whether we're in an extern inline function and referring to a |
Jordan Rose | 33c0f37 | 2012-06-20 18:50:06 +0000 | [diff] [blame] | 172 | /// variable or function with internal linkage (C11 6.7.4p3). |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 173 | /// |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 174 | /// This is only a warning because we used to silently accept this code, but |
Jordan Rose | 33c0f37 | 2012-06-20 18:50:06 +0000 | [diff] [blame] | 175 | /// in many cases it will not behave correctly. This is not enabled in C++ mode |
| 176 | /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6) |
| 177 | /// and so while there may still be user mistakes, most of the time we can't |
| 178 | /// prove that there are errors. |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 179 | static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S, |
| 180 | const NamedDecl *D, |
| 181 | SourceLocation Loc) { |
Jordan Rose | 33c0f37 | 2012-06-20 18:50:06 +0000 | [diff] [blame] | 182 | // This is disabled under C++; there are too many ways for this to fire in |
| 183 | // contexts where the warning is a false positive, or where it is technically |
| 184 | // correct but benign. |
| 185 | if (S.getLangOpts().CPlusPlus) |
| 186 | return; |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 187 | |
| 188 | // Check if this is an inlined function or method. |
| 189 | FunctionDecl *Current = S.getCurFunctionDecl(); |
| 190 | if (!Current) |
| 191 | return; |
| 192 | if (!Current->isInlined()) |
| 193 | return; |
| 194 | if (Current->getLinkage() != ExternalLinkage) |
| 195 | return; |
| 196 | |
| 197 | // Check if the decl has internal linkage. |
Jordan Rose | 33c0f37 | 2012-06-20 18:50:06 +0000 | [diff] [blame] | 198 | if (D->getLinkage() != InternalLinkage) |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 199 | return; |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 200 | |
Jordan Rose | 0523327 | 2012-06-21 05:54:50 +0000 | [diff] [blame] | 201 | // Downgrade from ExtWarn to Extension if |
| 202 | // (1) the supposedly external inline function is in the main file, |
| 203 | // and probably won't be included anywhere else. |
| 204 | // (2) the thing we're referencing is a pure function. |
| 205 | // (3) the thing we're referencing is another inline function. |
| 206 | // This last can give us false negatives, but it's better than warning on |
| 207 | // wrappers for simple C library functions. |
| 208 | const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D); |
| 209 | bool DowngradeWarning = S.getSourceManager().isFromMainFile(Loc); |
| 210 | if (!DowngradeWarning && UsedFn) |
| 211 | DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>(); |
| 212 | |
| 213 | S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline |
| 214 | : diag::warn_internal_in_extern_inline) |
| 215 | << /*IsVar=*/!UsedFn << D; |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 216 | |
| 217 | // Suggest "static" on the inline function, if possible. |
Jordan Rose | 33c0f37 | 2012-06-20 18:50:06 +0000 | [diff] [blame] | 218 | if (!hasAnyExplicitStorageClass(Current)) { |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 219 | const FunctionDecl *FirstDecl = Current->getCanonicalDecl(); |
| 220 | SourceLocation DeclBegin = FirstDecl->getSourceRange().getBegin(); |
| 221 | S.Diag(DeclBegin, diag::note_convert_inline_to_static) |
| 222 | << Current << FixItHint::CreateInsertion(DeclBegin, "static "); |
| 223 | } |
| 224 | |
| 225 | S.Diag(D->getCanonicalDecl()->getLocation(), |
| 226 | diag::note_internal_decl_declared_here) |
| 227 | << D; |
| 228 | } |
| 229 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 230 | /// \brief Determine whether the use of this declaration is valid, and |
| 231 | /// emit any corresponding diagnostics. |
| 232 | /// |
| 233 | /// This routine diagnoses various problems with referencing |
| 234 | /// declarations that can occur when using a declaration. For example, |
| 235 | /// it might warn if a deprecated or unavailable declaration is being |
| 236 | /// used, or produce an error (and return true) if a C++0x deleted |
| 237 | /// function is being used. |
| 238 | /// |
| 239 | /// \returns true if there was an error (this declaration cannot be |
| 240 | /// referenced), false otherwise. |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 241 | /// |
Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 242 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 243 | const ObjCInterfaceDecl *UnknownObjCClass) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 244 | if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 245 | // If there were any diagnostics suppressed by template argument deduction, |
| 246 | // emit them now. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 247 | llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >::iterator |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 248 | Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); |
| 249 | if (Pos != SuppressedDiagnostics.end()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 250 | SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 251 | for (unsigned I = 0, N = Suppressed.size(); I != N; ++I) |
| 252 | Diag(Suppressed[I].first, Suppressed[I].second); |
| 253 | |
| 254 | // Clear out the list of suppressed diagnostics, so that we don't emit |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 255 | // them again for this specialization. However, we don't obsolete this |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 256 | // entry from the table, because we want to avoid ever emitting these |
| 257 | // diagnostics again. |
| 258 | Suppressed.clear(); |
| 259 | } |
| 260 | } |
| 261 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 262 | // See if this is an auto-typed variable whose initializer we are parsing. |
Richard Smith | 483b9f3 | 2011-02-21 20:05:19 +0000 | [diff] [blame] | 263 | if (ParsingInitForAutoVars.count(D)) { |
| 264 | Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) |
| 265 | << D->getDeclName(); |
| 266 | return true; |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 269 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 270 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 271 | if (FD->isDeleted()) { |
| 272 | Diag(Loc, diag::err_deleted_function_use); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 273 | NoteDeletedFunction(FD); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 274 | return true; |
| 275 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 276 | } |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 277 | DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 278 | |
Fariborz Jahanian | 2d40d9e | 2012-09-06 16:43:18 +0000 | [diff] [blame] | 279 | DiagnoseUnusedOfDecl(*this, D, Loc); |
Jordan Rose | 106af9e | 2012-06-15 18:19:48 +0000 | [diff] [blame] | 280 | |
Jordan Rose | 0eb3f45 | 2012-06-18 22:09:19 +0000 | [diff] [blame] | 281 | diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc); |
Jordan Rose | 106af9e | 2012-06-15 18:19:48 +0000 | [diff] [blame] | 282 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 283 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 286 | /// \brief Retrieve the message suffix that should be added to a |
| 287 | /// diagnostic complaining about the given function being deleted or |
| 288 | /// unavailable. |
| 289 | std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) { |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 290 | std::string Message; |
| 291 | if (FD->getAvailability(&Message)) |
| 292 | return ": " + Message; |
| 293 | |
| 294 | return std::string(); |
| 295 | } |
| 296 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 297 | /// DiagnoseSentinelCalls - This routine checks whether a call or |
| 298 | /// message-send is to a declaration with the sentinel attribute, and |
| 299 | /// if so, it checks that the requirements of the sentinel are |
| 300 | /// satisfied. |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 301 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 302 | Expr **args, unsigned numArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 303 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 304 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 305 | return; |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 306 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 307 | // The number of formal parameters of the declaration. |
| 308 | unsigned numFormalParams; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 309 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 310 | // The kind of declaration. This is also an index into a %select in |
| 311 | // the diagnostic. |
| 312 | enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; |
| 313 | |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 314 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 315 | numFormalParams = MD->param_size(); |
| 316 | calleeType = CT_Method; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 317 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 318 | numFormalParams = FD->param_size(); |
| 319 | calleeType = CT_Function; |
| 320 | } else if (isa<VarDecl>(D)) { |
| 321 | QualType type = cast<ValueDecl>(D)->getType(); |
| 322 | const FunctionType *fn = 0; |
| 323 | if (const PointerType *ptr = type->getAs<PointerType>()) { |
| 324 | fn = ptr->getPointeeType()->getAs<FunctionType>(); |
| 325 | if (!fn) return; |
| 326 | calleeType = CT_Function; |
| 327 | } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { |
| 328 | fn = ptr->getPointeeType()->castAs<FunctionType>(); |
| 329 | calleeType = CT_Block; |
| 330 | } else { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 331 | return; |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 332 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 333 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 334 | if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { |
| 335 | numFormalParams = proto->getNumArgs(); |
| 336 | } else { |
| 337 | numFormalParams = 0; |
| 338 | } |
| 339 | } else { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 340 | return; |
| 341 | } |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 342 | |
| 343 | // "nullPos" is the number of formal parameters at the end which |
| 344 | // effectively count as part of the variadic arguments. This is |
| 345 | // useful if you would prefer to not have *any* formal parameters, |
| 346 | // but the language forces you to have at least one. |
| 347 | unsigned nullPos = attr->getNullPos(); |
| 348 | assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); |
| 349 | numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); |
| 350 | |
| 351 | // The number of arguments which should follow the sentinel. |
| 352 | unsigned numArgsAfterSentinel = attr->getSentinel(); |
| 353 | |
| 354 | // If there aren't enough arguments for all the formal parameters, |
| 355 | // the sentinel, and the args after the sentinel, complain. |
| 356 | if (numArgs < numFormalParams + numArgsAfterSentinel + 1) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 357 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 358 | Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 359 | return; |
| 360 | } |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 361 | |
| 362 | // Otherwise, find the sentinel expression. |
| 363 | Expr *sentinelExpr = args[numArgs - numArgsAfterSentinel - 1]; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 364 | if (!sentinelExpr) return; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 365 | if (sentinelExpr->isValueDependent()) return; |
Argyrios Kyrtzidis | 8deabc1 | 2012-02-03 05:58:16 +0000 | [diff] [blame] | 366 | if (Context.isSentinelNullExpr(sentinelExpr)) return; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 367 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 368 | // Pick a reasonable string to insert. Optimistically use 'nil' or |
| 369 | // 'NULL' if those are actually defined in the context. Only use |
| 370 | // 'nil' for ObjC methods, where it's much more likely that the |
| 371 | // variadic arguments form a list of object pointers. |
| 372 | SourceLocation MissingNilLoc |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 373 | = PP.getLocForEndOfToken(sentinelExpr->getLocEnd()); |
| 374 | std::string NullValue; |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 375 | if (calleeType == CT_Method && |
| 376 | PP.getIdentifierInfo("nil")->hasMacroDefinition()) |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 377 | NullValue = "nil"; |
| 378 | else if (PP.getIdentifierInfo("NULL")->hasMacroDefinition()) |
| 379 | NullValue = "NULL"; |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 380 | else |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 381 | NullValue = "(void*) 0"; |
Eli Friedman | 39834ba | 2011-09-27 23:46:37 +0000 | [diff] [blame] | 382 | |
| 383 | if (MissingNilLoc.isInvalid()) |
| 384 | Diag(Loc, diag::warn_missing_sentinel) << calleeType; |
| 385 | else |
| 386 | Diag(MissingNilLoc, diag::warn_missing_sentinel) |
| 387 | << calleeType |
| 388 | << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 389 | Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 392 | SourceRange Sema::getExprRange(Expr *E) const { |
| 393 | return E ? E->getSourceRange() : SourceRange(); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 396 | //===----------------------------------------------------------------------===// |
| 397 | // Standard Promotions and Conversions |
| 398 | //===----------------------------------------------------------------------===// |
| 399 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 400 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 401 | ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 402 | // Handle any placeholder expressions which made it here. |
| 403 | if (E->getType()->isPlaceholderType()) { |
| 404 | ExprResult result = CheckPlaceholderExpr(E); |
| 405 | if (result.isInvalid()) return ExprError(); |
| 406 | E = result.take(); |
| 407 | } |
| 408 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 409 | QualType Ty = E->getType(); |
| 410 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 411 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 412 | if (Ty->isFunctionType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 413 | E = ImpCastExprToType(E, Context.getPointerType(Ty), |
| 414 | CK_FunctionToPointerDecay).take(); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 415 | else if (Ty->isArrayType()) { |
| 416 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 417 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 418 | // type 'array of type' is converted to an expression that has type 'pointer |
| 419 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 420 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 421 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 422 | // |
| 423 | // C++ 4.2p1: |
| 424 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 425 | // T" can be converted to an rvalue of type "pointer to T". |
| 426 | // |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 427 | if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 428 | E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 429 | CK_ArrayToPointerDecay).take(); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 430 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 431 | return Owned(E); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Argyrios Kyrtzidis | 8a285ae | 2011-04-26 17:41:22 +0000 | [diff] [blame] | 434 | static void CheckForNullPointerDereference(Sema &S, Expr *E) { |
| 435 | // Check to see if we are dereferencing a null pointer. If so, |
| 436 | // and if not volatile-qualified, this is undefined behavior that the |
| 437 | // optimizer will delete, so warn about it. People sometimes try to use this |
| 438 | // to get a deterministic trap and are surprised by clang's behavior. This |
| 439 | // only handles the pattern "*null", which is a very syntactic check. |
| 440 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts())) |
| 441 | if (UO->getOpcode() == UO_Deref && |
| 442 | UO->getSubExpr()->IgnoreParenCasts()-> |
| 443 | isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) && |
| 444 | !UO->getType().isVolatileQualified()) { |
| 445 | S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, |
| 446 | S.PDiag(diag::warn_indirection_through_null) |
| 447 | << UO->getSubExpr()->getSourceRange()); |
| 448 | S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, |
| 449 | S.PDiag(diag::note_indirection_through_null)); |
| 450 | } |
| 451 | } |
| 452 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 453 | ExprResult Sema::DefaultLvalueConversion(Expr *E) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 454 | // Handle any placeholder expressions which made it here. |
| 455 | if (E->getType()->isPlaceholderType()) { |
| 456 | ExprResult result = CheckPlaceholderExpr(E); |
| 457 | if (result.isInvalid()) return ExprError(); |
| 458 | E = result.take(); |
| 459 | } |
| 460 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 461 | // C++ [conv.lval]p1: |
| 462 | // A glvalue of a non-function, non-array type T can be |
| 463 | // converted to a prvalue. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 464 | if (!E->isGLValue()) return Owned(E); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 465 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 466 | QualType T = E->getType(); |
| 467 | assert(!T.isNull() && "r-value conversion on typeless expression?"); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 468 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 469 | // We don't want to throw lvalue-to-rvalue casts on top of |
| 470 | // expressions of certain types in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 471 | if (getLangOpts().CPlusPlus && |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 472 | (E->getType() == Context.OverloadTy || |
| 473 | T->isDependentType() || |
| 474 | T->isRecordType())) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 475 | return Owned(E); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 476 | |
| 477 | // The C standard is actually really unclear on this point, and |
| 478 | // DR106 tells us what the result should be but not why. It's |
| 479 | // generally best to say that void types just doesn't undergo |
| 480 | // lvalue-to-rvalue at all. Note that expressions of unqualified |
| 481 | // 'void' type are never l-values, but qualified void can be. |
| 482 | if (T->isVoidType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 483 | return Owned(E); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 484 | |
John McCall | 9dd74c5 | 2013-02-12 01:29:43 +0000 | [diff] [blame] | 485 | // OpenCL usually rejects direct accesses to values of 'half' type. |
| 486 | if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 && |
| 487 | T->isHalfType()) { |
| 488 | Diag(E->getExprLoc(), diag::err_opencl_half_load_store) |
| 489 | << 0 << T; |
| 490 | return ExprError(); |
| 491 | } |
| 492 | |
Argyrios Kyrtzidis | 8a285ae | 2011-04-26 17:41:22 +0000 | [diff] [blame] | 493 | CheckForNullPointerDereference(*this, E); |
| 494 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 495 | // C++ [conv.lval]p1: |
| 496 | // [...] If T is a non-class type, the type of the prvalue is the |
| 497 | // cv-unqualified version of T. Otherwise, the type of the |
| 498 | // rvalue is T. |
| 499 | // |
| 500 | // C99 6.3.2.1p2: |
| 501 | // If the lvalue has qualified type, the value has the unqualified |
| 502 | // version of the type of the lvalue; otherwise, the value has the |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 503 | // type of the lvalue. |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 504 | if (T.hasQualifiers()) |
| 505 | T = T.getUnqualifiedType(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 506 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 507 | UpdateMarkingForLValueToRValue(E); |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 508 | |
| 509 | // Loading a __weak object implicitly retains the value, so we need a cleanup to |
| 510 | // balance that. |
| 511 | if (getLangOpts().ObjCAutoRefCount && |
| 512 | E->getType().getObjCLifetime() == Qualifiers::OCL_Weak) |
| 513 | ExprNeedsCleanups = true; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 514 | |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 515 | ExprResult Res = Owned(ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, |
| 516 | E, 0, VK_RValue)); |
| 517 | |
Douglas Gregor | f7ecc30 | 2012-04-12 17:51:55 +0000 | [diff] [blame] | 518 | // C11 6.3.2.1p2: |
| 519 | // ... if the lvalue has atomic type, the value has the non-atomic version |
| 520 | // of the type of the lvalue ... |
| 521 | if (const AtomicType *Atomic = T->getAs<AtomicType>()) { |
| 522 | T = Atomic->getValueType().getUnqualifiedType(); |
| 523 | Res = Owned(ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, |
| 524 | Res.get(), 0, VK_RValue)); |
| 525 | } |
| 526 | |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 527 | return Res; |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 528 | } |
| 529 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 530 | ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) { |
| 531 | ExprResult Res = DefaultFunctionArrayConversion(E); |
| 532 | if (Res.isInvalid()) |
| 533 | return ExprError(); |
| 534 | Res = DefaultLvalueConversion(Res.take()); |
| 535 | if (Res.isInvalid()) |
| 536 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 537 | return Res; |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 541 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 542 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 543 | /// sometimes suppressed. For example, the array->pointer conversion doesn't |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 544 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 545 | /// In these instances, this routine should *not* be called. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 546 | ExprResult Sema::UsualUnaryConversions(Expr *E) { |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 547 | // First, convert to an r-value. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 548 | ExprResult Res = DefaultFunctionArrayLvalueConversion(E); |
| 549 | if (Res.isInvalid()) |
| 550 | return Owned(E); |
| 551 | E = Res.take(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 552 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 553 | QualType Ty = E->getType(); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 554 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 555 | |
Joey Gouly | 19dbb20 | 2013-01-23 11:56:20 +0000 | [diff] [blame] | 556 | // Half FP have to be promoted to float unless it is natively supported |
| 557 | if (Ty->isHalfType() && !getLangOpts().NativeHalfType) |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 558 | return ImpCastExprToType(Res.take(), Context.FloatTy, CK_FloatingCast); |
| 559 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 560 | // Try to perform integral promotions if the object has a theoretically |
| 561 | // promotable type. |
| 562 | if (Ty->isIntegralOrUnscopedEnumerationType()) { |
| 563 | // C99 6.3.1.1p2: |
| 564 | // |
| 565 | // The following may be used in an expression wherever an int or |
| 566 | // unsigned int may be used: |
| 567 | // - an object or expression with an integer type whose integer |
| 568 | // conversion rank is less than or equal to the rank of int |
| 569 | // and unsigned int. |
| 570 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 571 | // |
| 572 | // If an int can represent all values of the original type, the |
| 573 | // value is converted to an int; otherwise, it is converted to an |
| 574 | // unsigned int. These are called the integer promotions. All |
| 575 | // other types are unchanged by the integer promotions. |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 576 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 577 | QualType PTy = Context.isPromotableBitField(E); |
| 578 | if (!PTy.isNull()) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 579 | E = ImpCastExprToType(E, PTy, CK_IntegralCast).take(); |
| 580 | return Owned(E); |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 581 | } |
| 582 | if (Ty->isPromotableIntegerType()) { |
| 583 | QualType PT = Context.getPromotedIntegerType(Ty); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 584 | E = ImpCastExprToType(E, PT, CK_IntegralCast).take(); |
| 585 | return Owned(E); |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 586 | } |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 587 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 588 | return Owned(E); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 591 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Tim Northover | e1ac4ae | 2013-01-30 09:46:55 +0000 | [diff] [blame] | 592 | /// do not have a prototype. Arguments that have type float or __fp16 |
| 593 | /// are promoted to double. All other argument types are converted by |
| 594 | /// UsualUnaryConversions(). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 595 | ExprResult Sema::DefaultArgumentPromotion(Expr *E) { |
| 596 | QualType Ty = E->getType(); |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 597 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 598 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 599 | ExprResult Res = UsualUnaryConversions(E); |
| 600 | if (Res.isInvalid()) |
| 601 | return Owned(E); |
| 602 | E = Res.take(); |
John McCall | 40c2913 | 2010-12-06 18:36:11 +0000 | [diff] [blame] | 603 | |
Tim Northover | e1ac4ae | 2013-01-30 09:46:55 +0000 | [diff] [blame] | 604 | // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to |
| 605 | // double. |
| 606 | const BuiltinType *BTy = Ty->getAs<BuiltinType>(); |
| 607 | if (BTy && (BTy->getKind() == BuiltinType::Half || |
| 608 | BTy->getKind() == BuiltinType::Float)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 609 | E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).take(); |
| 610 | |
John McCall | 96a914a | 2011-08-27 22:06:17 +0000 | [diff] [blame] | 611 | // C++ performs lvalue-to-rvalue conversion as a default argument |
John McCall | 709bca8 | 2011-08-29 23:55:37 +0000 | [diff] [blame] | 612 | // promotion, even on class types, but note: |
| 613 | // C++11 [conv.lval]p2: |
| 614 | // When an lvalue-to-rvalue conversion occurs in an unevaluated |
| 615 | // operand or a subexpression thereof the value contained in the |
| 616 | // referenced object is not accessed. Otherwise, if the glvalue |
| 617 | // has a class type, the conversion copy-initializes a temporary |
| 618 | // of type T from the glvalue and the result of the conversion |
| 619 | // is a prvalue for the temporary. |
Eli Friedman | 55693fb | 2012-01-17 02:13:45 +0000 | [diff] [blame] | 620 | // FIXME: add some way to gate this entire thing for correctness in |
| 621 | // potentially potentially evaluated contexts. |
David Blaikie | 71f55f7 | 2012-08-06 22:47:24 +0000 | [diff] [blame] | 622 | if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) { |
Eli Friedman | 55693fb | 2012-01-17 02:13:45 +0000 | [diff] [blame] | 623 | ExprResult Temp = PerformCopyInitialization( |
| 624 | InitializedEntity::InitializeTemporary(E->getType()), |
| 625 | E->getExprLoc(), |
| 626 | Owned(E)); |
| 627 | if (Temp.isInvalid()) |
| 628 | return ExprError(); |
| 629 | E = Temp.get(); |
John McCall | 5f8d604 | 2011-08-27 01:09:30 +0000 | [diff] [blame] | 630 | } |
| 631 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 632 | return Owned(E); |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 635 | /// Determine the degree of POD-ness for an expression. |
| 636 | /// Incomplete types are considered POD, since this check can be performed |
| 637 | /// when we're in an unevaluated context. |
| 638 | Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) { |
Jordan Rose | ddcfbc9 | 2012-07-19 18:10:23 +0000 | [diff] [blame] | 639 | if (Ty->isIncompleteType()) { |
| 640 | if (Ty->isObjCObjectType()) |
| 641 | return VAK_Invalid; |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 642 | return VAK_Valid; |
Jordan Rose | ddcfbc9 | 2012-07-19 18:10:23 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | if (Ty.isCXX98PODType(Context)) |
| 646 | return VAK_Valid; |
| 647 | |
Richard Smith | 426391c | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 648 | // C++11 [expr.call]p7: |
| 649 | // Passing a potentially-evaluated argument of class type (Clause 9) |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 650 | // having a non-trivial copy constructor, a non-trivial move constructor, |
Richard Smith | 426391c | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 651 | // or a non-trivial destructor, with no corresponding parameter, |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 652 | // is conditionally-supported with implementation-defined semantics. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 653 | if (getLangOpts().CPlusPlus11 && !Ty->isDependentType()) |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 654 | if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl()) |
Richard Smith | 426391c | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 655 | if (!Record->hasNonTrivialCopyConstructor() && |
| 656 | !Record->hasNonTrivialMoveConstructor() && |
| 657 | !Record->hasNonTrivialDestructor()) |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 658 | return VAK_ValidInCXX11; |
| 659 | |
| 660 | if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType()) |
| 661 | return VAK_Valid; |
| 662 | return VAK_Invalid; |
| 663 | } |
| 664 | |
| 665 | bool Sema::variadicArgumentPODCheck(const Expr *E, VariadicCallType CT) { |
| 666 | // Don't allow one to pass an Objective-C interface to a vararg. |
| 667 | const QualType & Ty = E->getType(); |
| 668 | |
| 669 | // Complain about passing non-POD types through varargs. |
| 670 | switch (isValidVarArgType(Ty)) { |
| 671 | case VAK_Valid: |
| 672 | break; |
| 673 | case VAK_ValidInCXX11: |
| 674 | DiagRuntimeBehavior(E->getLocStart(), 0, |
| 675 | PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) |
| 676 | << E->getType() << CT); |
| 677 | break; |
Jordan Rose | ddcfbc9 | 2012-07-19 18:10:23 +0000 | [diff] [blame] | 678 | case VAK_Invalid: { |
| 679 | if (Ty->isObjCObjectType()) |
| 680 | return DiagRuntimeBehavior(E->getLocStart(), 0, |
| 681 | PDiag(diag::err_cannot_pass_objc_interface_to_vararg) |
| 682 | << Ty << CT); |
| 683 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 684 | return DiagRuntimeBehavior(E->getLocStart(), 0, |
| 685 | PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 686 | << getLangOpts().CPlusPlus11 << Ty << CT); |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 687 | } |
Jordan Rose | ddcfbc9 | 2012-07-19 18:10:23 +0000 | [diff] [blame] | 688 | } |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 689 | // c++ rules are enforced elsewhere. |
| 690 | return false; |
| 691 | } |
| 692 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 693 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
Jordan Rose | ddcfbc9 | 2012-07-19 18:10:23 +0000 | [diff] [blame] | 694 | /// will create a trap if the resulting type is not a POD type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 695 | ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 696 | FunctionDecl *FDecl) { |
Richard Smith | e1971a1 | 2012-06-27 20:29:39 +0000 | [diff] [blame] | 697 | if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 698 | // Strip the unbridged-cast placeholder expression off, if applicable. |
| 699 | if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && |
| 700 | (CT == VariadicMethod || |
| 701 | (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { |
| 702 | E = stripARCUnbridgedCast(E); |
| 703 | |
| 704 | // Otherwise, do normal placeholder checking. |
| 705 | } else { |
| 706 | ExprResult ExprRes = CheckPlaceholderExpr(E); |
| 707 | if (ExprRes.isInvalid()) |
| 708 | return ExprError(); |
| 709 | E = ExprRes.take(); |
| 710 | } |
| 711 | } |
Douglas Gregor | 8d5e18c | 2011-06-17 00:15:10 +0000 | [diff] [blame] | 712 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 713 | ExprResult ExprRes = DefaultArgumentPromotion(E); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 714 | if (ExprRes.isInvalid()) |
| 715 | return ExprError(); |
| 716 | E = ExprRes.take(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 717 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 718 | // Diagnostics regarding non-POD argument types are |
| 719 | // emitted along with format string checking in Sema::CheckFunctionCall(). |
Richard Smith | 83ea530 | 2012-06-27 20:23:58 +0000 | [diff] [blame] | 720 | if (isValidVarArgType(E->getType()) == VAK_Invalid) { |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 721 | // Turn this into a trap. |
| 722 | CXXScopeSpec SS; |
| 723 | SourceLocation TemplateKWLoc; |
| 724 | UnqualifiedId Name; |
| 725 | Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), |
| 726 | E->getLocStart()); |
| 727 | ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, |
| 728 | Name, true, false); |
| 729 | if (TrapFn.isInvalid()) |
| 730 | return ExprError(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 731 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 732 | ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), |
| 733 | E->getLocStart(), MultiExprArg(), |
| 734 | E->getLocEnd()); |
| 735 | if (Call.isInvalid()) |
| 736 | return ExprError(); |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 737 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 738 | ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma, |
| 739 | Call.get(), E); |
| 740 | if (Comma.isInvalid()) |
| 741 | return ExprError(); |
| 742 | return Comma.get(); |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 743 | } |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 744 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 745 | if (!getLangOpts().CPlusPlus && |
Fariborz Jahanian | e853bb3 | 2012-03-01 23:42:00 +0000 | [diff] [blame] | 746 | RequireCompleteType(E->getExprLoc(), E->getType(), |
Fariborz Jahanian | a0e005b | 2012-03-02 17:05:03 +0000 | [diff] [blame] | 747 | diag::err_call_incomplete_argument)) |
Fariborz Jahanian | e853bb3 | 2012-03-01 23:42:00 +0000 | [diff] [blame] | 748 | return ExprError(); |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 749 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 750 | return Owned(E); |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 753 | /// \brief Converts an integer to complex float type. Helper function of |
| 754 | /// UsualArithmeticConversions() |
| 755 | /// |
| 756 | /// \return false if the integer expression is an integer type and is |
| 757 | /// successfully converted to the complex type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 758 | static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, |
| 759 | ExprResult &ComplexExpr, |
| 760 | QualType IntTy, |
| 761 | QualType ComplexTy, |
| 762 | bool SkipCast) { |
| 763 | if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; |
| 764 | if (SkipCast) return false; |
| 765 | if (IntTy->isIntegerType()) { |
| 766 | QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); |
| 767 | IntExpr = S.ImpCastExprToType(IntExpr.take(), fpTy, CK_IntegralToFloating); |
| 768 | IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 769 | CK_FloatingRealToComplex); |
| 770 | } else { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 771 | assert(IntTy->isComplexIntegerType()); |
| 772 | IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 773 | CK_IntegralComplexToFloatingComplex); |
| 774 | } |
| 775 | return false; |
| 776 | } |
| 777 | |
| 778 | /// \brief Takes two complex float types and converts them to the same type. |
| 779 | /// Helper function of UsualArithmeticConversions() |
| 780 | static QualType |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 781 | handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, |
| 782 | ExprResult &RHS, QualType LHSType, |
| 783 | QualType RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 784 | bool IsCompAssign) { |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 785 | int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 786 | |
| 787 | if (order < 0) { |
| 788 | // _Complex float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 789 | if (!IsCompAssign) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 790 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingComplexCast); |
| 791 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 792 | } |
| 793 | if (order > 0) |
| 794 | // _Complex float -> _Complex double |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 795 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast); |
| 796 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | /// \brief Converts otherExpr to complex float and promotes complexExpr if |
| 800 | /// necessary. Helper function of UsualArithmeticConversions() |
| 801 | static QualType handleOtherComplexFloatConversion(Sema &S, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 802 | ExprResult &ComplexExpr, |
| 803 | ExprResult &OtherExpr, |
| 804 | QualType ComplexTy, |
| 805 | QualType OtherTy, |
| 806 | bool ConvertComplexExpr, |
| 807 | bool ConvertOtherExpr) { |
| 808 | int order = S.Context.getFloatingTypeOrder(ComplexTy, OtherTy); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 809 | |
| 810 | // If just the complexExpr is complex, the otherExpr needs to be converted, |
| 811 | // and the complexExpr might need to be promoted. |
| 812 | if (order > 0) { // complexExpr is wider |
| 813 | // float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 814 | if (ConvertOtherExpr) { |
| 815 | QualType fp = cast<ComplexType>(ComplexTy)->getElementType(); |
| 816 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), fp, CK_FloatingCast); |
| 817 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 818 | CK_FloatingRealToComplex); |
| 819 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 820 | return ComplexTy; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | // otherTy is at least as wide. Find its corresponding complex type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 824 | QualType result = (order == 0 ? ComplexTy : |
| 825 | S.Context.getComplexType(OtherTy)); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 826 | |
| 827 | // double -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 828 | if (ConvertOtherExpr) |
| 829 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 830 | CK_FloatingRealToComplex); |
| 831 | |
| 832 | // _Complex float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 833 | if (ConvertComplexExpr && order < 0) |
| 834 | ComplexExpr = S.ImpCastExprToType(ComplexExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 835 | CK_FloatingComplexCast); |
| 836 | |
| 837 | return result; |
| 838 | } |
| 839 | |
| 840 | /// \brief Handle arithmetic conversion with complex types. Helper function of |
| 841 | /// UsualArithmeticConversions() |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 842 | static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, |
| 843 | ExprResult &RHS, QualType LHSType, |
| 844 | QualType RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 845 | bool IsCompAssign) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 846 | // if we have an integer operand, the result is the complex type. |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 847 | if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 848 | /*skipCast*/false)) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 849 | return LHSType; |
| 850 | if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 851 | /*skipCast*/IsCompAssign)) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 852 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 853 | |
| 854 | // This handles complex/complex, complex/float, or float/complex. |
| 855 | // When both operands are complex, the shorter operand is converted to the |
| 856 | // type of the longer, and that is the type of the result. This corresponds |
| 857 | // to what is done when combining two real floating-point operands. |
| 858 | // The fun begins when size promotion occur across type domains. |
| 859 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 860 | // floating-point type, the less precise type is converted, within it's |
| 861 | // real or complex domain, to the precision of the other type. For example, |
| 862 | // when combining a "long double" with a "double _Complex", the |
| 863 | // "double _Complex" is promoted to "long double _Complex". |
| 864 | |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 865 | bool LHSComplexFloat = LHSType->isComplexType(); |
| 866 | bool RHSComplexFloat = RHSType->isComplexType(); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 867 | |
| 868 | // If both are complex, just cast to the more precise type. |
| 869 | if (LHSComplexFloat && RHSComplexFloat) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 870 | return handleComplexFloatToComplexFloatConverstion(S, LHS, RHS, |
| 871 | LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 872 | IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 873 | |
| 874 | // If only one operand is complex, promote it if necessary and convert the |
| 875 | // other operand to complex. |
| 876 | if (LHSComplexFloat) |
| 877 | return handleOtherComplexFloatConversion( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 878 | S, LHS, RHS, LHSType, RHSType, /*convertComplexExpr*/!IsCompAssign, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 879 | /*convertOtherExpr*/ true); |
| 880 | |
| 881 | assert(RHSComplexFloat); |
| 882 | return handleOtherComplexFloatConversion( |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 883 | S, RHS, LHS, RHSType, LHSType, /*convertComplexExpr*/true, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 884 | /*convertOtherExpr*/ !IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | /// \brief Hande arithmetic conversion from integer to float. Helper function |
| 888 | /// of UsualArithmeticConversions() |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 889 | static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, |
| 890 | ExprResult &IntExpr, |
| 891 | QualType FloatTy, QualType IntTy, |
| 892 | bool ConvertFloat, bool ConvertInt) { |
| 893 | if (IntTy->isIntegerType()) { |
| 894 | if (ConvertInt) |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 895 | // Convert intExpr to the lhs floating point type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 896 | IntExpr = S.ImpCastExprToType(IntExpr.take(), FloatTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 897 | CK_IntegralToFloating); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 898 | return FloatTy; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | // Convert both sides to the appropriate complex float. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 902 | assert(IntTy->isComplexIntegerType()); |
| 903 | QualType result = S.Context.getComplexType(FloatTy); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 904 | |
| 905 | // _Complex int -> _Complex float |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 906 | if (ConvertInt) |
| 907 | IntExpr = S.ImpCastExprToType(IntExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 908 | CK_IntegralComplexToFloatingComplex); |
| 909 | |
| 910 | // float -> _Complex float |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 911 | if (ConvertFloat) |
| 912 | FloatExpr = S.ImpCastExprToType(FloatExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 913 | CK_FloatingRealToComplex); |
| 914 | |
| 915 | return result; |
| 916 | } |
| 917 | |
| 918 | /// \brief Handle arithmethic conversion with floating point types. Helper |
| 919 | /// function of UsualArithmeticConversions() |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 920 | static QualType handleFloatConversion(Sema &S, ExprResult &LHS, |
| 921 | ExprResult &RHS, QualType LHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 922 | QualType RHSType, bool IsCompAssign) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 923 | bool LHSFloat = LHSType->isRealFloatingType(); |
| 924 | bool RHSFloat = RHSType->isRealFloatingType(); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 925 | |
| 926 | // If we have two real floating types, convert the smaller operand |
| 927 | // to the bigger result. |
| 928 | if (LHSFloat && RHSFloat) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 929 | int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 930 | if (order > 0) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 931 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingCast); |
| 932 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | assert(order < 0 && "illegal float comparison"); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 936 | if (!IsCompAssign) |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 937 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingCast); |
| 938 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | if (LHSFloat) |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 942 | return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 943 | /*convertFloat=*/!IsCompAssign, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 944 | /*convertInt=*/ true); |
| 945 | assert(RHSFloat); |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 946 | return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 947 | /*convertInt=*/ true, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 948 | /*convertFloat=*/!IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 949 | } |
| 950 | |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 951 | typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 952 | |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 953 | namespace { |
| 954 | /// These helper callbacks are placed in an anonymous namespace to |
| 955 | /// permit their use as function template parameters. |
| 956 | ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) { |
| 957 | return S.ImpCastExprToType(op, toType, CK_IntegralCast); |
| 958 | } |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 959 | |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 960 | ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) { |
| 961 | return S.ImpCastExprToType(op, S.Context.getComplexType(toType), |
| 962 | CK_IntegralComplexCast); |
| 963 | } |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | /// \brief Handle integer arithmetic conversions. Helper function of |
| 967 | /// UsualArithmeticConversions() |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 968 | template <PerformCastFn doLHSCast, PerformCastFn doRHSCast> |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 969 | static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, |
| 970 | ExprResult &RHS, QualType LHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 971 | QualType RHSType, bool IsCompAssign) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 972 | // The rules for this case are in C99 6.3.1.8 |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 973 | int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); |
| 974 | bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); |
| 975 | bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); |
| 976 | if (LHSSigned == RHSSigned) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 977 | // Same signedness; use the higher-ranked type |
| 978 | if (order >= 0) { |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 979 | RHS = (*doRHSCast)(S, RHS.take(), LHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 980 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 981 | } else if (!IsCompAssign) |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 982 | LHS = (*doLHSCast)(S, LHS.take(), RHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 983 | return RHSType; |
| 984 | } else if (order != (LHSSigned ? 1 : -1)) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 985 | // The unsigned type has greater than or equal rank to the |
| 986 | // signed type, so use the unsigned type |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 987 | if (RHSSigned) { |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 988 | RHS = (*doRHSCast)(S, RHS.take(), LHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 989 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 990 | } else if (!IsCompAssign) |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 991 | LHS = (*doLHSCast)(S, LHS.take(), RHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 992 | return RHSType; |
| 993 | } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 994 | // The two types are different widths; if we are here, that |
| 995 | // means the signed type is larger than the unsigned type, so |
| 996 | // use the signed type. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 997 | if (LHSSigned) { |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 998 | RHS = (*doRHSCast)(S, RHS.take(), LHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 999 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1000 | } else if (!IsCompAssign) |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1001 | LHS = (*doLHSCast)(S, LHS.take(), RHSType); |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1002 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 1003 | } else { |
| 1004 | // The signed type is higher-ranked than the unsigned type, |
| 1005 | // but isn't actually any bigger (like unsigned int and long |
| 1006 | // on most 32-bit systems). Use the unsigned type corresponding |
| 1007 | // to the signed type. |
| 1008 | QualType result = |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1009 | S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1010 | RHS = (*doRHSCast)(S, RHS.take(), result); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1011 | if (!IsCompAssign) |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1012 | LHS = (*doLHSCast)(S, LHS.take(), result); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 1013 | return result; |
| 1014 | } |
| 1015 | } |
| 1016 | |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1017 | /// \brief Handle conversions with GCC complex int extension. Helper function |
| 1018 | /// of UsualArithmeticConversions() |
| 1019 | static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, |
| 1020 | ExprResult &RHS, QualType LHSType, |
| 1021 | QualType RHSType, |
| 1022 | bool IsCompAssign) { |
| 1023 | const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); |
| 1024 | const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); |
| 1025 | |
| 1026 | if (LHSComplexInt && RHSComplexInt) { |
| 1027 | QualType LHSEltType = LHSComplexInt->getElementType(); |
| 1028 | QualType RHSEltType = RHSComplexInt->getElementType(); |
| 1029 | QualType ScalarType = |
| 1030 | handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast> |
| 1031 | (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign); |
| 1032 | |
| 1033 | return S.Context.getComplexType(ScalarType); |
| 1034 | } |
| 1035 | |
| 1036 | if (LHSComplexInt) { |
| 1037 | QualType LHSEltType = LHSComplexInt->getElementType(); |
| 1038 | QualType ScalarType = |
| 1039 | handleIntegerConversion<doComplexIntegralCast, doIntegralCast> |
| 1040 | (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign); |
| 1041 | QualType ComplexType = S.Context.getComplexType(ScalarType); |
| 1042 | RHS = S.ImpCastExprToType(RHS.take(), ComplexType, |
| 1043 | CK_IntegralRealToComplex); |
| 1044 | |
| 1045 | return ComplexType; |
| 1046 | } |
| 1047 | |
| 1048 | assert(RHSComplexInt); |
| 1049 | |
| 1050 | QualType RHSEltType = RHSComplexInt->getElementType(); |
| 1051 | QualType ScalarType = |
| 1052 | handleIntegerConversion<doIntegralCast, doComplexIntegralCast> |
| 1053 | (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign); |
| 1054 | QualType ComplexType = S.Context.getComplexType(ScalarType); |
| 1055 | |
| 1056 | if (!IsCompAssign) |
| 1057 | LHS = S.ImpCastExprToType(LHS.take(), ComplexType, |
| 1058 | CK_IntegralRealToComplex); |
| 1059 | return ComplexType; |
| 1060 | } |
| 1061 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 1062 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 1063 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1064 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 1065 | /// responsible for emitting appropriate error diagnostics. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1066 | QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1067 | bool IsCompAssign) { |
| 1068 | if (!IsCompAssign) { |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1069 | LHS = UsualUnaryConversions(LHS.take()); |
| 1070 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1071 | return QualType(); |
| 1072 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1073 | |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1074 | RHS = UsualUnaryConversions(RHS.take()); |
| 1075 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1076 | return QualType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1077 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1078 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 1079 | // For example, "const float" and "float" are equivalent. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1080 | QualType LHSType = |
| 1081 | Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); |
| 1082 | QualType RHSType = |
| 1083 | Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1084 | |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 1085 | // For conversion purposes, we ignore any atomic qualifier on the LHS. |
| 1086 | if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>()) |
| 1087 | LHSType = AtomicLHS->getValueType(); |
| 1088 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1089 | // If both types are identical, no conversion is needed. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1090 | if (LHSType == RHSType) |
| 1091 | return LHSType; |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1092 | |
| 1093 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 1094 | // The caller can deal with this (e.g. pointer + int). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1095 | if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 1096 | return QualType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1097 | |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1098 | // Apply unary and bitfield promotions to the LHS's type. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1099 | QualType LHSUnpromotedType = LHSType; |
| 1100 | if (LHSType->isPromotableIntegerType()) |
| 1101 | LHSType = Context.getPromotedIntegerType(LHSType); |
| 1102 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 1103 | if (!LHSBitfieldPromoteTy.isNull()) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1104 | LHSType = LHSBitfieldPromoteTy; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1105 | if (LHSType != LHSUnpromotedType && !IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1106 | LHS = ImpCastExprToType(LHS.take(), LHSType, CK_IntegralCast); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 1107 | |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1108 | // If both types are identical, no conversion is needed. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1109 | if (LHSType == RHSType) |
| 1110 | return LHSType; |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1111 | |
| 1112 | // At this point, we have two different arithmetic types. |
| 1113 | |
| 1114 | // Handle complex types first (C99 6.3.1.8p1). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1115 | if (LHSType->isComplexType() || RHSType->isComplexType()) |
| 1116 | return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1117 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1118 | |
| 1119 | // Now handle "real" floating types (i.e. float, double, long double). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1120 | if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) |
| 1121 | return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1122 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1123 | |
| 1124 | // Handle GCC complex int extension. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 1125 | if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) |
Benjamin Kramer | 5cc8680 | 2011-09-06 19:57:14 +0000 | [diff] [blame] | 1126 | return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1127 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 1128 | |
| 1129 | // Finally, we have two differing integer types. |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1130 | return handleIntegerConversion<doIntegralCast, doIntegralCast> |
| 1131 | (*this, LHS, RHS, LHSType, RHSType, IsCompAssign); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
Bill Schmidt | 57dab71 | 2013-02-01 15:34:29 +0000 | [diff] [blame] | 1134 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 1135 | //===----------------------------------------------------------------------===// |
| 1136 | // Semantic Analysis for various Expression Types |
| 1137 | //===----------------------------------------------------------------------===// |
| 1138 | |
| 1139 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1140 | ExprResult |
| 1141 | Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, |
| 1142 | SourceLocation DefaultLoc, |
| 1143 | SourceLocation RParenLoc, |
| 1144 | Expr *ControllingExpr, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1145 | MultiTypeArg ArgTypes, |
| 1146 | MultiExprArg ArgExprs) { |
| 1147 | unsigned NumAssocs = ArgTypes.size(); |
| 1148 | assert(NumAssocs == ArgExprs.size()); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1149 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 1150 | ParsedType *ParsedTypes = ArgTypes.data(); |
| 1151 | Expr **Exprs = ArgExprs.data(); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1152 | |
| 1153 | TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; |
| 1154 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1155 | if (ParsedTypes[i]) |
| 1156 | (void) GetTypeFromParser(ParsedTypes[i], &Types[i]); |
| 1157 | else |
| 1158 | Types[i] = 0; |
| 1159 | } |
| 1160 | |
| 1161 | ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, |
| 1162 | ControllingExpr, Types, Exprs, |
| 1163 | NumAssocs); |
Benjamin Kramer | 5bf47f7 | 2011-04-15 11:21:57 +0000 | [diff] [blame] | 1164 | delete [] Types; |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1165 | return ER; |
| 1166 | } |
| 1167 | |
| 1168 | ExprResult |
| 1169 | Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, |
| 1170 | SourceLocation DefaultLoc, |
| 1171 | SourceLocation RParenLoc, |
| 1172 | Expr *ControllingExpr, |
| 1173 | TypeSourceInfo **Types, |
| 1174 | Expr **Exprs, |
| 1175 | unsigned NumAssocs) { |
John McCall | a2905ea | 2013-02-12 02:08:12 +0000 | [diff] [blame] | 1176 | if (ControllingExpr->getType()->isPlaceholderType()) { |
| 1177 | ExprResult result = CheckPlaceholderExpr(ControllingExpr); |
| 1178 | if (result.isInvalid()) return ExprError(); |
| 1179 | ControllingExpr = result.take(); |
| 1180 | } |
| 1181 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1182 | bool TypeErrorFound = false, |
| 1183 | IsResultDependent = ControllingExpr->isTypeDependent(), |
| 1184 | ContainsUnexpandedParameterPack |
| 1185 | = ControllingExpr->containsUnexpandedParameterPack(); |
| 1186 | |
| 1187 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1188 | if (Exprs[i]->containsUnexpandedParameterPack()) |
| 1189 | ContainsUnexpandedParameterPack = true; |
| 1190 | |
| 1191 | if (Types[i]) { |
| 1192 | if (Types[i]->getType()->containsUnexpandedParameterPack()) |
| 1193 | ContainsUnexpandedParameterPack = true; |
| 1194 | |
| 1195 | if (Types[i]->getType()->isDependentType()) { |
| 1196 | IsResultDependent = true; |
| 1197 | } else { |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1198 | // C11 6.5.1.1p2 "The type name in a generic association shall specify a |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1199 | // complete object type other than a variably modified type." |
| 1200 | unsigned D = 0; |
| 1201 | if (Types[i]->getType()->isIncompleteType()) |
| 1202 | D = diag::err_assoc_type_incomplete; |
| 1203 | else if (!Types[i]->getType()->isObjectType()) |
| 1204 | D = diag::err_assoc_type_nonobject; |
| 1205 | else if (Types[i]->getType()->isVariablyModifiedType()) |
| 1206 | D = diag::err_assoc_type_variably_modified; |
| 1207 | |
| 1208 | if (D != 0) { |
| 1209 | Diag(Types[i]->getTypeLoc().getBeginLoc(), D) |
| 1210 | << Types[i]->getTypeLoc().getSourceRange() |
| 1211 | << Types[i]->getType(); |
| 1212 | TypeErrorFound = true; |
| 1213 | } |
| 1214 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1215 | // C11 6.5.1.1p2 "No two generic associations in the same generic |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1216 | // selection shall specify compatible types." |
| 1217 | for (unsigned j = i+1; j < NumAssocs; ++j) |
| 1218 | if (Types[j] && !Types[j]->getType()->isDependentType() && |
| 1219 | Context.typesAreCompatible(Types[i]->getType(), |
| 1220 | Types[j]->getType())) { |
| 1221 | Diag(Types[j]->getTypeLoc().getBeginLoc(), |
| 1222 | diag::err_assoc_compatible_types) |
| 1223 | << Types[j]->getTypeLoc().getSourceRange() |
| 1224 | << Types[j]->getType() |
| 1225 | << Types[i]->getType(); |
| 1226 | Diag(Types[i]->getTypeLoc().getBeginLoc(), |
| 1227 | diag::note_compat_assoc) |
| 1228 | << Types[i]->getTypeLoc().getSourceRange() |
| 1229 | << Types[i]->getType(); |
| 1230 | TypeErrorFound = true; |
| 1231 | } |
| 1232 | } |
| 1233 | } |
| 1234 | } |
| 1235 | if (TypeErrorFound) |
| 1236 | return ExprError(); |
| 1237 | |
| 1238 | // If we determined that the generic selection is result-dependent, don't |
| 1239 | // try to compute the result expression. |
| 1240 | if (IsResultDependent) |
| 1241 | return Owned(new (Context) GenericSelectionExpr( |
| 1242 | Context, KeyLoc, ControllingExpr, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 1243 | llvm::makeArrayRef(Types, NumAssocs), |
| 1244 | llvm::makeArrayRef(Exprs, NumAssocs), |
| 1245 | DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack)); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1246 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1247 | SmallVector<unsigned, 1> CompatIndices; |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1248 | unsigned DefaultIndex = -1U; |
| 1249 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1250 | if (!Types[i]) |
| 1251 | DefaultIndex = i; |
| 1252 | else if (Context.typesAreCompatible(ControllingExpr->getType(), |
| 1253 | Types[i]->getType())) |
| 1254 | CompatIndices.push_back(i); |
| 1255 | } |
| 1256 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1257 | // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1258 | // type compatible with at most one of the types named in its generic |
| 1259 | // association list." |
| 1260 | if (CompatIndices.size() > 1) { |
| 1261 | // We strip parens here because the controlling expression is typically |
| 1262 | // parenthesized in macro definitions. |
| 1263 | ControllingExpr = ControllingExpr->IgnoreParens(); |
| 1264 | Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match) |
| 1265 | << ControllingExpr->getSourceRange() << ControllingExpr->getType() |
| 1266 | << (unsigned) CompatIndices.size(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1267 | for (SmallVector<unsigned, 1>::iterator I = CompatIndices.begin(), |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1268 | E = CompatIndices.end(); I != E; ++I) { |
| 1269 | Diag(Types[*I]->getTypeLoc().getBeginLoc(), |
| 1270 | diag::note_compat_assoc) |
| 1271 | << Types[*I]->getTypeLoc().getSourceRange() |
| 1272 | << Types[*I]->getType(); |
| 1273 | } |
| 1274 | return ExprError(); |
| 1275 | } |
| 1276 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1277 | // C11 6.5.1.1p2 "If a generic selection has no default generic association, |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1278 | // its controlling expression shall have type compatible with exactly one of |
| 1279 | // the types named in its generic association list." |
| 1280 | if (DefaultIndex == -1U && CompatIndices.size() == 0) { |
| 1281 | // We strip parens here because the controlling expression is typically |
| 1282 | // parenthesized in macro definitions. |
| 1283 | ControllingExpr = ControllingExpr->IgnoreParens(); |
| 1284 | Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match) |
| 1285 | << ControllingExpr->getSourceRange() << ControllingExpr->getType(); |
| 1286 | return ExprError(); |
| 1287 | } |
| 1288 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1289 | // C11 6.5.1.1p3 "If a generic selection has a generic association with a |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1290 | // type name that is compatible with the type of the controlling expression, |
| 1291 | // then the result expression of the generic selection is the expression |
| 1292 | // in that generic association. Otherwise, the result expression of the |
| 1293 | // generic selection is the expression in the default generic association." |
| 1294 | unsigned ResultIndex = |
| 1295 | CompatIndices.size() ? CompatIndices[0] : DefaultIndex; |
| 1296 | |
| 1297 | return Owned(new (Context) GenericSelectionExpr( |
| 1298 | Context, KeyLoc, ControllingExpr, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 1299 | llvm::makeArrayRef(Types, NumAssocs), |
| 1300 | llvm::makeArrayRef(Exprs, NumAssocs), |
| 1301 | DefaultLoc, RParenLoc, ContainsUnexpandedParameterPack, |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1302 | ResultIndex)); |
| 1303 | } |
| 1304 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1305 | /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the |
| 1306 | /// location of the token and the offset of the ud-suffix within it. |
| 1307 | static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc, |
| 1308 | unsigned Offset) { |
| 1309 | return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1310 | S.getLangOpts()); |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1311 | } |
| 1312 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1313 | /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up |
| 1314 | /// the corresponding cooked (non-raw) literal operator, and build a call to it. |
| 1315 | static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, |
| 1316 | IdentifierInfo *UDSuffix, |
| 1317 | SourceLocation UDSuffixLoc, |
| 1318 | ArrayRef<Expr*> Args, |
| 1319 | SourceLocation LitEndLoc) { |
| 1320 | assert(Args.size() <= 2 && "too many arguments for literal operator"); |
| 1321 | |
| 1322 | QualType ArgTy[2]; |
| 1323 | for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { |
| 1324 | ArgTy[ArgIdx] = Args[ArgIdx]->getType(); |
| 1325 | if (ArgTy[ArgIdx]->isArrayType()) |
| 1326 | ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]); |
| 1327 | } |
| 1328 | |
| 1329 | DeclarationName OpName = |
| 1330 | S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); |
| 1331 | DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); |
| 1332 | OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); |
| 1333 | |
| 1334 | LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName); |
| 1335 | if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()), |
| 1336 | /*AllowRawAndTemplate*/false) == Sema::LOLR_Error) |
| 1337 | return ExprError(); |
| 1338 | |
| 1339 | return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc); |
| 1340 | } |
| 1341 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1342 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1343 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 1344 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 1345 | /// multiple tokens. However, the common case is that StringToks points to one |
| 1346 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1347 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1348 | ExprResult |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1349 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks, |
| 1350 | Scope *UDLScope) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1351 | assert(NumStringToks && "Must have at least one string!"); |
| 1352 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 1353 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1354 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1355 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1356 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1357 | SmallVector<SourceLocation, 4> StringTokLocs; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1358 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 1359 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1360 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1361 | QualType StrTy = Context.CharTy; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1362 | if (Literal.isWide()) |
Anders Carlsson | 96b4adc | 2011-04-06 18:42:48 +0000 | [diff] [blame] | 1363 | StrTy = Context.getWCharType(); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1364 | else if (Literal.isUTF16()) |
| 1365 | StrTy = Context.Char16Ty; |
| 1366 | else if (Literal.isUTF32()) |
| 1367 | StrTy = Context.Char32Ty; |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 1368 | else if (Literal.isPascal()) |
Anders Carlsson | 96b4adc | 2011-04-06 18:42:48 +0000 | [diff] [blame] | 1369 | StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1370 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1371 | StringLiteral::StringKind Kind = StringLiteral::Ascii; |
| 1372 | if (Literal.isWide()) |
| 1373 | Kind = StringLiteral::Wide; |
| 1374 | else if (Literal.isUTF8()) |
| 1375 | Kind = StringLiteral::UTF8; |
| 1376 | else if (Literal.isUTF16()) |
| 1377 | Kind = StringLiteral::UTF16; |
| 1378 | else if (Literal.isUTF32()) |
| 1379 | Kind = StringLiteral::UTF32; |
| 1380 | |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1381 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1382 | if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1383 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1384 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1385 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 1386 | // the nul terminator character as well as the string length for pascal |
| 1387 | // strings. |
| 1388 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 1389 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1390 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1391 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1392 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1393 | StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), |
| 1394 | Kind, Literal.Pascal, StrTy, |
| 1395 | &StringTokLocs[0], |
| 1396 | StringTokLocs.size()); |
| 1397 | if (Literal.getUDSuffix().empty()) |
| 1398 | return Owned(Lit); |
| 1399 | |
| 1400 | // We're building a user-defined literal. |
| 1401 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1402 | SourceLocation UDSuffixLoc = |
| 1403 | getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()], |
| 1404 | Literal.getUDSuffixOffset()); |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1405 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1406 | // Make sure we're allowed user-defined literals here. |
| 1407 | if (!UDLScope) |
| 1408 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl)); |
| 1409 | |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1410 | // C++11 [lex.ext]p5: The literal L is treated as a call of the form |
| 1411 | // operator "" X (str, len) |
| 1412 | QualType SizeType = Context.getSizeType(); |
| 1413 | llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars()); |
| 1414 | IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType, |
| 1415 | StringTokLocs[0]); |
| 1416 | Expr *Args[] = { Lit, LenArg }; |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1417 | return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, |
| 1418 | Args, StringTokLocs.back()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1421 | ExprResult |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1422 | Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1423 | SourceLocation Loc, |
| 1424 | const CXXScopeSpec *SS) { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1425 | DeclarationNameInfo NameInfo(D->getDeclName(), Loc); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1426 | return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1429 | /// BuildDeclRefExpr - Build an expression that references a |
| 1430 | /// declaration that does not require a closure capture. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1431 | ExprResult |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1432 | Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1433 | const DeclarationNameInfo &NameInfo, |
| 1434 | const CXXScopeSpec *SS) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1435 | if (getLangOpts().CUDA) |
Peter Collingbourne | 78dd67e | 2011-10-02 23:49:40 +0000 | [diff] [blame] | 1436 | if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext)) |
| 1437 | if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) { |
| 1438 | CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller), |
| 1439 | CalleeTarget = IdentifyCUDATarget(Callee); |
| 1440 | if (CheckCUDATarget(CallerTarget, CalleeTarget)) { |
| 1441 | Diag(NameInfo.getLoc(), diag::err_ref_bad_target) |
| 1442 | << CalleeTarget << D->getIdentifier() << CallerTarget; |
| 1443 | Diag(D->getLocation(), diag::note_previous_decl) |
| 1444 | << D->getIdentifier(); |
| 1445 | return ExprError(); |
| 1446 | } |
| 1447 | } |
| 1448 | |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 1449 | bool refersToEnclosingScope = |
| 1450 | (CurContext != D->getDeclContext() && |
| 1451 | D->getDeclContext()->isFunctionOrMethod()); |
| 1452 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1453 | DeclRefExpr *E = DeclRefExpr::Create(Context, |
| 1454 | SS ? SS->getWithLocInContext(Context) |
| 1455 | : NestedNameSpecifierLoc(), |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 1456 | SourceLocation(), |
| 1457 | D, refersToEnclosingScope, |
| 1458 | NameInfo, Ty, VK); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1459 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1460 | MarkDeclRefReferenced(E); |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1461 | |
Jordan Rose | 7a27048 | 2012-09-28 22:21:35 +0000 | [diff] [blame] | 1462 | if (getLangOpts().ObjCARCWeak && isa<VarDecl>(D) && |
| 1463 | Ty.getObjCLifetime() == Qualifiers::OCL_Weak) { |
| 1464 | DiagnosticsEngine::Level Level = |
| 1465 | Diags.getDiagnosticLevel(diag::warn_arc_repeated_use_of_weak, |
| 1466 | E->getLocStart()); |
| 1467 | if (Level != DiagnosticsEngine::Ignored) |
| 1468 | getCurFunction()->recordUseOfWeak(E); |
| 1469 | } |
| 1470 | |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1471 | // Just in case we're building an illegal pointer-to-member. |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 1472 | FieldDecl *FD = dyn_cast<FieldDecl>(D); |
| 1473 | if (FD && FD->isBitField()) |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1474 | E->setObjectKind(OK_BitField); |
| 1475 | |
| 1476 | return Owned(E); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1479 | /// Decomposes the given name into a DeclarationNameInfo, its location, and |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1480 | /// possibly a list of template arguments. |
| 1481 | /// |
| 1482 | /// If this produces template arguments, it is permitted to call |
| 1483 | /// DecomposeTemplateName. |
| 1484 | /// |
| 1485 | /// This actually loses a lot of source location information for |
| 1486 | /// non-standard name kinds; we should consider preserving that in |
| 1487 | /// some way. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 1488 | void |
| 1489 | Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, |
| 1490 | TemplateArgumentListInfo &Buffer, |
| 1491 | DeclarationNameInfo &NameInfo, |
| 1492 | const TemplateArgumentListInfo *&TemplateArgs) { |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1493 | if (Id.getKind() == UnqualifiedId::IK_TemplateId) { |
| 1494 | Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); |
| 1495 | Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); |
| 1496 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 1497 | ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(), |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1498 | Id.TemplateId->NumArgs); |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1499 | translateTemplateArguments(TemplateArgsPtr, Buffer); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1500 | |
John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 1501 | TemplateName TName = Id.TemplateId->Template.get(); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1502 | SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1503 | NameInfo = Context.getNameForTemplate(TName, TNameLoc); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1504 | TemplateArgs = &Buffer; |
| 1505 | } else { |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1506 | NameInfo = GetNameFromUnqualifiedId(Id); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1507 | TemplateArgs = 0; |
| 1508 | } |
| 1509 | } |
| 1510 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1511 | /// Diagnose an empty lookup. |
| 1512 | /// |
| 1513 | /// \return false if new lookup candidates were found |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1514 | bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, |
Kaelyn Uhrain | 4798f8d | 2012-01-18 05:58:54 +0000 | [diff] [blame] | 1515 | CorrectionCandidateCallback &CCC, |
Kaelyn Uhrain | ace5e76 | 2011-08-05 00:09:52 +0000 | [diff] [blame] | 1516 | TemplateArgumentListInfo *ExplicitTemplateArgs, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1517 | llvm::ArrayRef<Expr *> Args) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1518 | DeclarationName Name = R.getLookupName(); |
| 1519 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1520 | unsigned diagnostic = diag::err_undeclared_var_use; |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1521 | unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1522 | if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 1523 | Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1524 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1525 | diagnostic = diag::err_undeclared_use; |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1526 | diagnostic_suggest = diag::err_undeclared_use_suggest; |
| 1527 | } |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1528 | |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1529 | // If the original lookup was an unqualified lookup, fake an |
| 1530 | // unqualified lookup. This is useful when (for example) the |
| 1531 | // original lookup would not have found something because it was a |
| 1532 | // dependent name. |
David Blaikie | 4872e10 | 2012-05-28 01:26:45 +0000 | [diff] [blame] | 1533 | DeclContext *DC = (SS.isEmpty() && !CallsUndergoingInstantiation.empty()) |
| 1534 | ? CurContext : 0; |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1535 | while (DC) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1536 | if (isa<CXXRecordDecl>(DC)) { |
| 1537 | LookupQualifiedName(R, DC); |
| 1538 | |
| 1539 | if (!R.empty()) { |
| 1540 | // Don't give errors about ambiguities in this lookup. |
| 1541 | R.suppressDiagnostics(); |
| 1542 | |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1543 | // During a default argument instantiation the CurContext points |
| 1544 | // to a CXXMethodDecl; but we can't apply a this-> fixit inside a |
| 1545 | // function parameter list, hence add an explicit check. |
| 1546 | bool isDefaultArgument = !ActiveTemplateInstantiations.empty() && |
| 1547 | ActiveTemplateInstantiations.back().Kind == |
| 1548 | ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1549 | CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); |
| 1550 | bool isInstance = CurMethod && |
| 1551 | CurMethod->isInstance() && |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1552 | DC == CurMethod->getParent() && !isDefaultArgument; |
| 1553 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1554 | |
| 1555 | // Give a code modification hint to insert 'this->'. |
| 1556 | // TODO: fixit for inserting 'Base<T>::' in the other cases. |
| 1557 | // Actually quite difficult! |
Nico Weber | 4b554f4 | 2012-06-20 20:21:42 +0000 | [diff] [blame] | 1558 | if (getLangOpts().MicrosoftMode) |
| 1559 | diagnostic = diag::warn_found_via_dependent_bases_lookup; |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1560 | if (isInstance) { |
Nico Weber | 94c4d61 | 2012-06-22 16:39:39 +0000 | [diff] [blame] | 1561 | Diag(R.getNameLoc(), diagnostic) << Name |
| 1562 | << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1563 | UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( |
| 1564 | CallsUndergoingInstantiation.back()->getCallee()); |
Nico Weber | 94c4d61 | 2012-06-22 16:39:39 +0000 | [diff] [blame] | 1565 | |
| 1566 | |
| 1567 | CXXMethodDecl *DepMethod; |
| 1568 | if (CurMethod->getTemplatedKind() == |
| 1569 | FunctionDecl::TK_FunctionTemplateSpecialization) |
| 1570 | DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()-> |
| 1571 | getInstantiatedFromMemberTemplate()->getTemplatedDecl()); |
| 1572 | else |
| 1573 | DepMethod = cast<CXXMethodDecl>( |
| 1574 | CurMethod->getInstantiatedFromMemberFunction()); |
| 1575 | assert(DepMethod && "No template pattern found"); |
| 1576 | |
| 1577 | QualType DepThisType = DepMethod->getThisType(Context); |
| 1578 | CheckCXXThisCapture(R.getNameLoc()); |
| 1579 | CXXThisExpr *DepThis = new (Context) CXXThisExpr( |
| 1580 | R.getNameLoc(), DepThisType, false); |
| 1581 | TemplateArgumentListInfo TList; |
| 1582 | if (ULE->hasExplicitTemplateArgs()) |
| 1583 | ULE->copyTemplateArgumentsInto(TList); |
| 1584 | |
| 1585 | CXXScopeSpec SS; |
| 1586 | SS.Adopt(ULE->getQualifierLoc()); |
| 1587 | CXXDependentScopeMemberExpr *DepExpr = |
| 1588 | CXXDependentScopeMemberExpr::Create( |
| 1589 | Context, DepThis, DepThisType, true, SourceLocation(), |
| 1590 | SS.getWithLocInContext(Context), |
| 1591 | ULE->getTemplateKeywordLoc(), 0, |
| 1592 | R.getLookupNameInfo(), |
| 1593 | ULE->hasExplicitTemplateArgs() ? &TList : 0); |
| 1594 | CallsUndergoingInstantiation.back()->setCallee(DepExpr); |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1595 | } else { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1596 | Diag(R.getNameLoc(), diagnostic) << Name; |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1597 | } |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1598 | |
| 1599 | // Do we really want to note all of these? |
| 1600 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 1601 | Diag((*I)->getLocation(), diag::note_dependent_var_use); |
| 1602 | |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1603 | // Return true if we are inside a default argument instantiation |
| 1604 | // and the found name refers to an instance member function, otherwise |
| 1605 | // the function calling DiagnoseEmptyLookup will try to create an |
| 1606 | // implicit member call and this is wrong for default argument. |
| 1607 | if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) { |
| 1608 | Diag(R.getNameLoc(), diag::err_member_call_without_object); |
| 1609 | return true; |
| 1610 | } |
| 1611 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1612 | // Tell the callee to try to recover. |
| 1613 | return false; |
| 1614 | } |
Douglas Gregor | e26f043 | 2010-08-09 22:38:14 +0000 | [diff] [blame] | 1615 | |
| 1616 | R.clear(); |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1617 | } |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1618 | |
| 1619 | // In Microsoft mode, if we are performing lookup from within a friend |
| 1620 | // function definition declared at class scope then we must set |
| 1621 | // DC to the lexical parent to be able to search into the parent |
| 1622 | // class. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1623 | if (getLangOpts().MicrosoftMode && isa<FunctionDecl>(DC) && |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1624 | cast<FunctionDecl>(DC)->getFriendObjectKind() && |
| 1625 | DC->getLexicalParent()->isRecord()) |
| 1626 | DC = DC->getLexicalParent(); |
| 1627 | else |
| 1628 | DC = DC->getParent(); |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1629 | } |
| 1630 | |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1631 | // We didn't find anything, so try to correct for a typo. |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1632 | TypoCorrection Corrected; |
| 1633 | if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), |
Kaelyn Uhrain | 16e46dd | 2012-01-31 23:49:25 +0000 | [diff] [blame] | 1634 | S, &SS, CCC))) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1635 | std::string CorrectedStr(Corrected.getAsString(getLangOpts())); |
| 1636 | std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1637 | R.setLookupName(Corrected.getCorrection()); |
| 1638 | |
Hans Wennborg | 701d1e7 | 2011-07-12 08:45:31 +0000 | [diff] [blame] | 1639 | if (NamedDecl *ND = Corrected.getCorrectionDecl()) { |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1640 | if (Corrected.isOverloaded()) { |
| 1641 | OverloadCandidateSet OCS(R.getNameLoc()); |
| 1642 | OverloadCandidateSet::iterator Best; |
| 1643 | for (TypoCorrection::decl_iterator CD = Corrected.begin(), |
| 1644 | CDEnd = Corrected.end(); |
| 1645 | CD != CDEnd; ++CD) { |
Kaelyn Uhrain | adc7a73 | 2011-08-08 17:35:31 +0000 | [diff] [blame] | 1646 | if (FunctionTemplateDecl *FTD = |
Kaelyn Uhrain | ace5e76 | 2011-08-05 00:09:52 +0000 | [diff] [blame] | 1647 | dyn_cast<FunctionTemplateDecl>(*CD)) |
| 1648 | AddTemplateOverloadCandidate( |
| 1649 | FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1650 | Args, OCS); |
Kaelyn Uhrain | adc7a73 | 2011-08-08 17:35:31 +0000 | [diff] [blame] | 1651 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) |
| 1652 | if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) |
| 1653 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1654 | Args, OCS); |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1655 | } |
| 1656 | switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { |
| 1657 | case OR_Success: |
| 1658 | ND = Best->Function; |
| 1659 | break; |
| 1660 | default: |
Kaelyn Uhrain | 844d572 | 2011-08-04 23:30:54 +0000 | [diff] [blame] | 1661 | break; |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1662 | } |
| 1663 | } |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1664 | R.addDecl(ND); |
| 1665 | if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1666 | if (SS.isEmpty()) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1667 | Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr |
| 1668 | << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr); |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1669 | else |
| 1670 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1671 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1672 | << SS.getRange() |
David Blaikie | 6952c01 | 2012-10-12 20:00:44 +0000 | [diff] [blame] | 1673 | << FixItHint::CreateReplacement(Corrected.getCorrectionRange(), |
| 1674 | CorrectedStr); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1675 | if (ND) |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1676 | Diag(ND->getLocation(), diag::note_previous_decl) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1677 | << CorrectedQuotedStr; |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1678 | |
| 1679 | // Tell the callee to try to recover. |
| 1680 | return false; |
| 1681 | } |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1682 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1683 | if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) { |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1684 | // FIXME: If we ended up with a typo for a type name or |
| 1685 | // Objective-C class name, we're in trouble because the parser |
| 1686 | // is in the wrong place to recover. Suggest the typo |
| 1687 | // correction, but don't make it a fix-it since we're not going |
| 1688 | // to recover well anyway. |
| 1689 | if (SS.isEmpty()) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 1690 | Diag(R.getNameLoc(), diagnostic_suggest) |
| 1691 | << Name << CorrectedQuotedStr; |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1692 | else |
| 1693 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1694 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1695 | << SS.getRange(); |
| 1696 | |
| 1697 | // Don't try to recover; it won't work. |
| 1698 | return true; |
| 1699 | } |
| 1700 | } else { |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1701 | // FIXME: We found a keyword. Suggest it, but don't provide a fix-it |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1702 | // because we aren't able to recover. |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1703 | if (SS.isEmpty()) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1704 | Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1705 | else |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1706 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1707 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1708 | << SS.getRange(); |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1709 | return true; |
| 1710 | } |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1711 | } |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1712 | R.clear(); |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1713 | |
| 1714 | // Emit a special diagnostic for failed member lookups. |
| 1715 | // FIXME: computing the declaration context might fail here (?) |
| 1716 | if (!SS.isEmpty()) { |
| 1717 | Diag(R.getNameLoc(), diag::err_no_member) |
| 1718 | << Name << computeDeclContext(SS, false) |
| 1719 | << SS.getRange(); |
| 1720 | return true; |
| 1721 | } |
| 1722 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1723 | // Give up, we can't recover. |
| 1724 | Diag(R.getNameLoc(), diagnostic) << Name; |
| 1725 | return true; |
| 1726 | } |
| 1727 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1728 | ExprResult Sema::ActOnIdExpression(Scope *S, |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1729 | CXXScopeSpec &SS, |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1730 | SourceLocation TemplateKWLoc, |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1731 | UnqualifiedId &Id, |
| 1732 | bool HasTrailingLParen, |
Kaelyn Uhrain | cd78e61 | 2012-01-25 20:49:08 +0000 | [diff] [blame] | 1733 | bool IsAddressOfOperand, |
| 1734 | CorrectionCandidateCallback *CCC) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1735 | assert(!(IsAddressOfOperand && HasTrailingLParen) && |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1736 | "cannot be direct & operand and have a trailing lparen"); |
| 1737 | |
| 1738 | if (SS.isInvalid()) |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1739 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1740 | |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1741 | TemplateArgumentListInfo TemplateArgsBuffer; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1742 | |
| 1743 | // Decompose the UnqualifiedId into the following data. |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1744 | DeclarationNameInfo NameInfo; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1745 | const TemplateArgumentListInfo *TemplateArgs; |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1746 | DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1747 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1748 | DeclarationName Name = NameInfo.getName(); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 1749 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1750 | SourceLocation NameLoc = NameInfo.getLoc(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1751 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1752 | // C++ [temp.dep.expr]p3: |
| 1753 | // An id-expression is type-dependent if it contains: |
Douglas Gregor | 48026d2 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 1754 | // -- an identifier that was declared with a dependent type, |
| 1755 | // (note: handled after lookup) |
| 1756 | // -- a template-id that is dependent, |
| 1757 | // (note: handled in BuildTemplateIdExpr) |
| 1758 | // -- a conversion-function-id that specifies a dependent type, |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1759 | // -- a nested-name-specifier that contains a class-name that |
| 1760 | // names a dependent type. |
| 1761 | // Determine whether this is a member of an unknown specialization; |
| 1762 | // we need to handle these differently. |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1763 | bool DependentID = false; |
| 1764 | if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1765 | Name.getCXXNameType()->isDependentType()) { |
| 1766 | DependentID = true; |
| 1767 | } else if (SS.isSet()) { |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1768 | if (DeclContext *DC = computeDeclContext(SS, false)) { |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1769 | if (RequireCompleteDeclContext(SS, DC)) |
| 1770 | return ExprError(); |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1771 | } else { |
| 1772 | DependentID = true; |
| 1773 | } |
| 1774 | } |
| 1775 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1776 | if (DependentID) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1777 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1778 | IsAddressOfOperand, TemplateArgs); |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1779 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1780 | // Perform the required lookup. |
Fariborz Jahanian | 98a5403 | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 1781 | LookupResult R(*this, NameInfo, |
| 1782 | (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam) |
| 1783 | ? LookupObjCImplicitSelfParam : LookupOrdinaryName); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1784 | if (TemplateArgs) { |
Douglas Gregor | d2235f6 | 2010-05-20 20:58:56 +0000 | [diff] [blame] | 1785 | // Lookup the template name again to correctly establish the context in |
| 1786 | // which it was found. This is really unfortunate as we already did the |
| 1787 | // lookup to determine that it was a template name in the first place. If |
| 1788 | // this becomes a performance hit, we can work harder to preserve those |
| 1789 | // results until we get here but it's likely not worth it. |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1790 | bool MemberOfUnknownSpecialization; |
| 1791 | LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, |
| 1792 | MemberOfUnknownSpecialization); |
Douglas Gregor | 2f9f89c | 2011-02-04 13:35:07 +0000 | [diff] [blame] | 1793 | |
| 1794 | if (MemberOfUnknownSpecialization || |
| 1795 | (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1796 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1797 | IsAddressOfOperand, TemplateArgs); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1798 | } else { |
Benjamin Kramer | b7ff74a | 2012-01-20 14:57:34 +0000 | [diff] [blame] | 1799 | bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl(); |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1800 | LookupParsedName(R, S, &SS, !IvarLookupFollowUp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1801 | |
Douglas Gregor | 2f9f89c | 2011-02-04 13:35:07 +0000 | [diff] [blame] | 1802 | // If the result might be in a dependent base class, this is a dependent |
| 1803 | // id-expression. |
| 1804 | if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1805 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1806 | IsAddressOfOperand, TemplateArgs); |
| 1807 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1808 | // If this reference is in an Objective-C method, then we need to do |
| 1809 | // some special Objective-C lookup, too. |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1810 | if (IvarLookupFollowUp) { |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1811 | ExprResult E(LookupInObjCMethod(R, S, II, true)); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1812 | if (E.isInvalid()) |
| 1813 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1814 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1815 | if (Expr *Ex = E.takeAs<Expr>()) |
| 1816 | return Owned(Ex); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1817 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 1818 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 1819 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1820 | if (R.isAmbiguous()) |
| 1821 | return ExprError(); |
| 1822 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1823 | // Determine whether this name might be a candidate for |
| 1824 | // argument-dependent lookup. |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1825 | bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1826 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1827 | if (R.empty() && !ADL) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1828 | // Otherwise, this could be an implicitly declared function reference (legal |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1829 | // in C90, extension in C99, forbidden in C++). |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1830 | if (HasTrailingLParen && II && !getLangOpts().CPlusPlus) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1831 | NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); |
| 1832 | if (D) R.addDecl(D); |
| 1833 | } |
| 1834 | |
| 1835 | // If this name wasn't predeclared and if this is not a function |
| 1836 | // call, diagnose the problem. |
| 1837 | if (R.empty()) { |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1838 | |
| 1839 | // In Microsoft mode, if we are inside a template class member function |
| 1840 | // and we can't resolve an identifier then assume the identifier is type |
| 1841 | // dependent. The goal is to postpone name lookup to instantiation time |
| 1842 | // to be able to search into type dependent base classes. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1843 | if (getLangOpts().MicrosoftMode && CurContext->isDependentContext() && |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1844 | isa<CXXMethodDecl>(CurContext)) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1845 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1846 | IsAddressOfOperand, TemplateArgs); |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1847 | |
Kaelyn Uhrain | 4798f8d | 2012-01-18 05:58:54 +0000 | [diff] [blame] | 1848 | CorrectionCandidateCallback DefaultValidator; |
Kaelyn Uhrain | cd78e61 | 2012-01-25 20:49:08 +0000 | [diff] [blame] | 1849 | if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator)) |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1850 | return ExprError(); |
| 1851 | |
| 1852 | assert(!R.empty() && |
| 1853 | "DiagnoseEmptyLookup returned false but added no results"); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1854 | |
| 1855 | // If we found an Objective-C instance variable, let |
| 1856 | // LookupInObjCMethod build the appropriate expression to |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1857 | // reference the ivar. |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1858 | if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { |
| 1859 | R.clear(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1860 | ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); |
Fariborz Jahanian | bc2b91a | 2011-09-23 23:11:38 +0000 | [diff] [blame] | 1861 | // In a hopelessly buggy code, Objective-C instance variable |
| 1862 | // lookup fails and no expression will be built to reference it. |
| 1863 | if (!E.isInvalid() && !E.get()) |
| 1864 | return ExprError(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1865 | return E; |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1866 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1867 | } |
| 1868 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1869 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1870 | // This is guaranteed from this point on. |
| 1871 | assert(!R.empty() || ADL); |
| 1872 | |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1873 | // Check whether this might be a C++ implicit instance member access. |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1874 | // C++ [class.mfct.non-static]p3: |
| 1875 | // When an id-expression that is not part of a class member access |
| 1876 | // syntax and not used to form a pointer to member is used in the |
| 1877 | // body of a non-static member function of class X, if name lookup |
| 1878 | // resolves the name in the id-expression to a non-static non-type |
| 1879 | // member of some class C, the id-expression is transformed into a |
| 1880 | // class member access expression using (*this) as the |
| 1881 | // postfix-expression to the left of the . operator. |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1882 | // |
| 1883 | // But we don't actually need to do this for '&' operands if R |
| 1884 | // resolved to a function or overloaded function set, because the |
| 1885 | // expression is ill-formed if it actually works out to be a |
| 1886 | // non-static member function: |
| 1887 | // |
| 1888 | // C++ [expr.ref]p4: |
| 1889 | // Otherwise, if E1.E2 refers to a non-static member function. . . |
| 1890 | // [t]he expression can be used only as the left-hand operand of a |
| 1891 | // member function call. |
| 1892 | // |
| 1893 | // There are other safeguards against such uses, but it's important |
| 1894 | // to get this right here so that we don't end up making a |
| 1895 | // spuriously dependent expression if we're inside a dependent |
| 1896 | // instance method. |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1897 | if (!R.empty() && (*R.begin())->isCXXClassMember()) { |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1898 | bool MightBeImplicitMember; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1899 | if (!IsAddressOfOperand) |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1900 | MightBeImplicitMember = true; |
| 1901 | else if (!SS.isEmpty()) |
| 1902 | MightBeImplicitMember = false; |
| 1903 | else if (R.isOverloadedResult()) |
| 1904 | MightBeImplicitMember = false; |
Douglas Gregor | e2248be | 2010-08-30 16:00:47 +0000 | [diff] [blame] | 1905 | else if (R.isUnresolvableResult()) |
| 1906 | MightBeImplicitMember = true; |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1907 | else |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 1908 | MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || |
| 1909 | isa<IndirectFieldDecl>(R.getFoundDecl()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1910 | |
| 1911 | if (MightBeImplicitMember) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1912 | return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc, |
| 1913 | R, TemplateArgs); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1914 | } |
| 1915 | |
Abramo Bagnara | 9d9922a | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 1916 | if (TemplateArgs || TemplateKWLoc.isValid()) |
| 1917 | return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1918 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1919 | return BuildDeclarationNameExpr(SS, R, ADL); |
| 1920 | } |
| 1921 | |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1922 | /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified |
| 1923 | /// declaration name, generally during template instantiation. |
| 1924 | /// There's a large number of things which don't need to be done along |
| 1925 | /// this path. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1926 | ExprResult |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 1927 | Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS, |
Richard Smith | efeeccf | 2012-10-21 03:28:35 +0000 | [diff] [blame] | 1928 | const DeclarationNameInfo &NameInfo, |
| 1929 | bool IsAddressOfOperand) { |
Richard Smith | 713c287 | 2012-10-23 19:56:01 +0000 | [diff] [blame] | 1930 | DeclContext *DC = computeDeclContext(SS, false); |
| 1931 | if (!DC) |
Abramo Bagnara | 9d9922a | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 1932 | return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), |
| 1933 | NameInfo, /*TemplateArgs=*/0); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1934 | |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 1935 | if (RequireCompleteDeclContext(SS, DC)) |
Douglas Gregor | e6ec5c4 | 2010-04-28 07:04:26 +0000 | [diff] [blame] | 1936 | return ExprError(); |
| 1937 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1938 | LookupResult R(*this, NameInfo, LookupOrdinaryName); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1939 | LookupQualifiedName(R, DC); |
| 1940 | |
| 1941 | if (R.isAmbiguous()) |
| 1942 | return ExprError(); |
| 1943 | |
Richard Smith | 713c287 | 2012-10-23 19:56:01 +0000 | [diff] [blame] | 1944 | if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) |
| 1945 | return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), |
| 1946 | NameInfo, /*TemplateArgs=*/0); |
| 1947 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1948 | if (R.empty()) { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1949 | Diag(NameInfo.getLoc(), diag::err_no_member) |
| 1950 | << NameInfo.getName() << DC << SS.getRange(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1951 | return ExprError(); |
| 1952 | } |
| 1953 | |
Richard Smith | efeeccf | 2012-10-21 03:28:35 +0000 | [diff] [blame] | 1954 | // Defend against this resolving to an implicit member access. We usually |
| 1955 | // won't get here if this might be a legitimate a class member (we end up in |
| 1956 | // BuildMemberReferenceExpr instead), but this can be valid if we're forming |
| 1957 | // a pointer-to-member or in an unevaluated context in C++11. |
| 1958 | if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand) |
| 1959 | return BuildPossibleImplicitMemberExpr(SS, |
| 1960 | /*TemplateKWLoc=*/SourceLocation(), |
| 1961 | R, /*TemplateArgs=*/0); |
| 1962 | |
| 1963 | return BuildDeclarationNameExpr(SS, R, /* ADL */ false); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1964 | } |
| 1965 | |
| 1966 | /// LookupInObjCMethod - The parser has read a name in, and Sema has |
| 1967 | /// detected that we're currently inside an ObjC method. Perform some |
| 1968 | /// additional lookup. |
| 1969 | /// |
| 1970 | /// Ideally, most of this would be done by lookup, but there's |
| 1971 | /// actually quite a lot of extra work involved. |
| 1972 | /// |
| 1973 | /// Returns a null sentinel to indicate trivial success. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1974 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1975 | Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1976 | IdentifierInfo *II, bool AllowBuiltinCreation) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1977 | SourceLocation Loc = Lookup.getNameLoc(); |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1978 | ObjCMethodDecl *CurMethod = getCurMethodDecl(); |
Fariborz Jahanian | 0dc4ff2 | 2013-02-18 17:22:23 +0000 | [diff] [blame] | 1979 | |
| 1980 | // Check for error condition which is already reported. |
| 1981 | if (!CurMethod) |
| 1982 | return ExprError(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1983 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1984 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 1985 | // in which case we should look for an ivar. 2) scoped lookup could have |
| 1986 | // found a decl, but that decl is outside the current instance method (i.e. |
| 1987 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 1988 | // this name, if the lookup sucedes, we replace it our current decl. |
| 1989 | |
| 1990 | // If we're in a class method, we don't normally want to look for |
| 1991 | // ivars. But if we don't find anything else, and there's an |
| 1992 | // ivar, that's an error. |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1993 | bool IsClassMethod = CurMethod->isClassMethod(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1994 | |
| 1995 | bool LookForIvars; |
| 1996 | if (Lookup.empty()) |
| 1997 | LookForIvars = true; |
| 1998 | else if (IsClassMethod) |
| 1999 | LookForIvars = false; |
| 2000 | else |
| 2001 | LookForIvars = (Lookup.isSingleResult() && |
| 2002 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); |
Fariborz Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 2003 | ObjCInterfaceDecl *IFace = 0; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2004 | if (LookForIvars) { |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 2005 | IFace = CurMethod->getClassInterface(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2006 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 7c81c2a | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 2007 | ObjCIvarDecl *IV = 0; |
| 2008 | if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2009 | // Diagnose using an ivar in a class method. |
| 2010 | if (IsClassMethod) |
| 2011 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 2012 | << IV->getDeclName()); |
| 2013 | |
| 2014 | // If we're referencing an invalid decl, just return this as a silent |
| 2015 | // error node. The error diagnostic was already emitted on the decl. |
| 2016 | if (IV->isInvalidDecl()) |
| 2017 | return ExprError(); |
| 2018 | |
| 2019 | // Check if referencing a field with __attribute__((deprecated)). |
| 2020 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 2021 | return ExprError(); |
| 2022 | |
| 2023 | // Diagnose the use of an ivar outside of the declaring class. |
| 2024 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
Fariborz Jahanian | 458a7fb | 2012-03-07 00:58:41 +0000 | [diff] [blame] | 2025 | !declaresSameEntity(ClassDeclared, IFace) && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2026 | !getLangOpts().DebuggerSupport) |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2027 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 2028 | |
| 2029 | // FIXME: This should use a new expr for a direct reference, don't |
| 2030 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
| 2031 | IdentifierInfo &II = Context.Idents.get("self"); |
| 2032 | UnqualifiedId SelfName; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2033 | SelfName.setIdentifier(&II, SourceLocation()); |
Fariborz Jahanian | 98a5403 | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 2034 | SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2035 | CXXScopeSpec SelfScopeSpec; |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 2036 | SourceLocation TemplateKWLoc; |
| 2037 | ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, |
Douglas Gregor | e45bb6a | 2010-09-22 16:33:13 +0000 | [diff] [blame] | 2038 | SelfName, false, false); |
| 2039 | if (SelfExpr.isInvalid()) |
| 2040 | return ExprError(); |
| 2041 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2042 | SelfExpr = DefaultLvalueConversion(SelfExpr.take()); |
| 2043 | if (SelfExpr.isInvalid()) |
| 2044 | return ExprError(); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 2045 | |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 2046 | MarkAnyDeclReferenced(Loc, IV, true); |
Fariborz Jahanian | ed6662d | 2012-08-08 16:41:04 +0000 | [diff] [blame] | 2047 | |
| 2048 | ObjCMethodFamily MF = CurMethod->getMethodFamily(); |
Fariborz Jahanian | 2620229 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 2049 | if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize && |
| 2050 | !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV)) |
Fariborz Jahanian | ed6662d | 2012-08-08 16:41:04 +0000 | [diff] [blame] | 2051 | Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName(); |
Jordan Rose | 7a27048 | 2012-09-28 22:21:35 +0000 | [diff] [blame] | 2052 | |
| 2053 | ObjCIvarRefExpr *Result = new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2054 | Loc, |
| 2055 | SelfExpr.take(), |
| 2056 | true, true); |
| 2057 | |
| 2058 | if (getLangOpts().ObjCAutoRefCount) { |
| 2059 | if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) { |
| 2060 | DiagnosticsEngine::Level Level = |
| 2061 | Diags.getDiagnosticLevel(diag::warn_arc_repeated_use_of_weak, Loc); |
| 2062 | if (Level != DiagnosticsEngine::Ignored) |
| 2063 | getCurFunction()->recordUseOfWeak(Result); |
| 2064 | } |
Fariborz Jahanian | 3f001ff | 2012-10-03 17:55:29 +0000 | [diff] [blame] | 2065 | if (CurContext->isClosure()) |
| 2066 | Diag(Loc, diag::warn_implicitly_retains_self) |
| 2067 | << FixItHint::CreateInsertion(Loc, "self->"); |
Jordan Rose | 7a27048 | 2012-09-28 22:21:35 +0000 | [diff] [blame] | 2068 | } |
| 2069 | |
| 2070 | return Owned(Result); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2071 | } |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 2072 | } else if (CurMethod->isInstanceMethod()) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2073 | // We should warn if a local variable hides an ivar. |
Fariborz Jahanian | 90f7b62 | 2011-11-08 22:51:27 +0000 | [diff] [blame] | 2074 | if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { |
| 2075 | ObjCInterfaceDecl *ClassDeclared; |
| 2076 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 2077 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
Douglas Gregor | 60ef308 | 2011-12-15 00:29:59 +0000 | [diff] [blame] | 2078 | declaresSameEntity(IFace, ClassDeclared)) |
Fariborz Jahanian | 90f7b62 | 2011-11-08 22:51:27 +0000 | [diff] [blame] | 2079 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
| 2080 | } |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2081 | } |
Fariborz Jahanian | b5ea9db | 2011-12-20 22:21:08 +0000 | [diff] [blame] | 2082 | } else if (Lookup.isSingleResult() && |
| 2083 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) { |
| 2084 | // If accessing a stand-alone ivar in a class method, this is an error. |
| 2085 | if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) |
| 2086 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 2087 | << IV->getDeclName()); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 2090 | if (Lookup.empty() && II && AllowBuiltinCreation) { |
| 2091 | // FIXME. Consolidate this with similar code in LookupName. |
| 2092 | if (unsigned BuiltinID = II->getBuiltinID()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2093 | if (!(getLangOpts().CPlusPlus && |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 2094 | Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) { |
| 2095 | NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, |
| 2096 | S, Lookup.isForRedeclaration(), |
| 2097 | Lookup.getNameLoc()); |
| 2098 | if (D) Lookup.addDecl(D); |
| 2099 | } |
| 2100 | } |
| 2101 | } |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2102 | // Sentinel value saying that we didn't do anything special. |
| 2103 | return Owned((Expr*) 0); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 2104 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2105 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2106 | /// \brief Cast a base object to a member's actual type. |
| 2107 | /// |
| 2108 | /// Logically this happens in three phases: |
| 2109 | /// |
| 2110 | /// * First we cast from the base type to the naming class. |
| 2111 | /// The naming class is the class into which we were looking |
| 2112 | /// when we found the member; it's the qualifier type if a |
| 2113 | /// qualifier was provided, and otherwise it's the base type. |
| 2114 | /// |
| 2115 | /// * Next we cast from the naming class to the declaring class. |
| 2116 | /// If the member we found was brought into a class's scope by |
| 2117 | /// a using declaration, this is that class; otherwise it's |
| 2118 | /// the class declaring the member. |
| 2119 | /// |
| 2120 | /// * Finally we cast from the declaring class to the "true" |
| 2121 | /// declaring class of the member. This conversion does not |
| 2122 | /// obey access control. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2123 | ExprResult |
| 2124 | Sema::PerformObjectMemberConversion(Expr *From, |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2125 | NestedNameSpecifier *Qualifier, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2126 | NamedDecl *FoundDecl, |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2127 | NamedDecl *Member) { |
| 2128 | CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); |
| 2129 | if (!RD) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2130 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2131 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2132 | QualType DestRecordType; |
| 2133 | QualType DestType; |
| 2134 | QualType FromRecordType; |
| 2135 | QualType FromType = From->getType(); |
| 2136 | bool PointerConversions = false; |
| 2137 | if (isa<FieldDecl>(Member)) { |
| 2138 | DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2139 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2140 | if (FromType->getAs<PointerType>()) { |
| 2141 | DestType = Context.getPointerType(DestRecordType); |
| 2142 | FromRecordType = FromType->getPointeeType(); |
| 2143 | PointerConversions = true; |
| 2144 | } else { |
| 2145 | DestType = DestRecordType; |
| 2146 | FromRecordType = FromType; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 2147 | } |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2148 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { |
| 2149 | if (Method->isStatic()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2150 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2151 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2152 | DestType = Method->getThisType(Context); |
| 2153 | DestRecordType = DestType->getPointeeType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2154 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2155 | if (FromType->getAs<PointerType>()) { |
| 2156 | FromRecordType = FromType->getPointeeType(); |
| 2157 | PointerConversions = true; |
| 2158 | } else { |
| 2159 | FromRecordType = FromType; |
| 2160 | DestType = DestRecordType; |
| 2161 | } |
| 2162 | } else { |
| 2163 | // No conversion necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2164 | return Owned(From); |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2165 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2166 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2167 | if (DestType->isDependentType() || FromType->isDependentType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2168 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2169 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2170 | // If the unqualified types are the same, no conversion is necessary. |
| 2171 | if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2172 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2173 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2174 | SourceRange FromRange = From->getSourceRange(); |
| 2175 | SourceLocation FromLoc = FromRange.getBegin(); |
| 2176 | |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 2177 | ExprValueKind VK = From->getValueKind(); |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 2178 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2179 | // C++ [class.member.lookup]p8: |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2180 | // [...] Ambiguities can often be resolved by qualifying a name with its |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2181 | // class name. |
| 2182 | // |
| 2183 | // If the member was a qualified name and the qualified referred to a |
| 2184 | // specific base subobject type, we'll cast to that intermediate type |
| 2185 | // first and then to the object in which the member is declared. That allows |
| 2186 | // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: |
| 2187 | // |
| 2188 | // class Base { public: int x; }; |
| 2189 | // class Derived1 : public Base { }; |
| 2190 | // class Derived2 : public Base { }; |
| 2191 | // class VeryDerived : public Derived1, public Derived2 { void f(); }; |
| 2192 | // |
| 2193 | // void VeryDerived::f() { |
| 2194 | // x = 17; // error: ambiguous base subobjects |
| 2195 | // Derived1::x = 17; // okay, pick the Base subobject of Derived1 |
| 2196 | // } |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2197 | if (Qualifier) { |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2198 | QualType QType = QualType(Qualifier->getAsType(), 0); |
| 2199 | assert(!QType.isNull() && "lookup done with dependent qualifier?"); |
| 2200 | assert(QType->isRecordType() && "lookup done with non-record type"); |
| 2201 | |
| 2202 | QualType QRecordType = QualType(QType->getAs<RecordType>(), 0); |
| 2203 | |
| 2204 | // In C++98, the qualifier type doesn't actually have to be a base |
| 2205 | // type of the object type, in which case we just ignore it. |
| 2206 | // Otherwise build the appropriate casts. |
| 2207 | if (IsDerivedFrom(FromRecordType, QRecordType)) { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2208 | CXXCastPath BasePath; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2209 | if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2210 | FromLoc, FromRange, &BasePath)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2211 | return ExprError(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2212 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2213 | if (PointerConversions) |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2214 | QType = Context.getPointerType(QType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2215 | From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, |
| 2216 | VK, &BasePath).take(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2217 | |
| 2218 | FromType = QType; |
| 2219 | FromRecordType = QRecordType; |
| 2220 | |
| 2221 | // If the qualifier type was the same as the destination type, |
| 2222 | // we're done. |
| 2223 | if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2224 | return Owned(From); |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2225 | } |
| 2226 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2227 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2228 | bool IgnoreAccess = false; |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2229 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2230 | // If we actually found the member through a using declaration, cast |
| 2231 | // down to the using declaration's type. |
| 2232 | // |
| 2233 | // Pointer equality is fine here because only one declaration of a |
| 2234 | // class ever has member declarations. |
| 2235 | if (FoundDecl->getDeclContext() != Member->getDeclContext()) { |
| 2236 | assert(isa<UsingShadowDecl>(FoundDecl)); |
| 2237 | QualType URecordType = Context.getTypeDeclType( |
| 2238 | cast<CXXRecordDecl>(FoundDecl->getDeclContext())); |
| 2239 | |
| 2240 | // We only need to do this if the naming-class to declaring-class |
| 2241 | // conversion is non-trivial. |
| 2242 | if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) { |
| 2243 | assert(IsDerivedFrom(FromRecordType, URecordType)); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2244 | CXXCastPath BasePath; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2245 | if (CheckDerivedToBaseConversion(FromRecordType, URecordType, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2246 | FromLoc, FromRange, &BasePath)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2247 | return ExprError(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 2248 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2249 | QualType UType = URecordType; |
| 2250 | if (PointerConversions) |
| 2251 | UType = Context.getPointerType(UType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2252 | From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase, |
| 2253 | VK, &BasePath).take(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2254 | FromType = UType; |
| 2255 | FromRecordType = URecordType; |
| 2256 | } |
| 2257 | |
| 2258 | // We don't do access control for the conversion from the |
| 2259 | // declaring class to the true declaring class. |
| 2260 | IgnoreAccess = true; |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2261 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2262 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2263 | CXXCastPath BasePath; |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2264 | if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, |
| 2265 | FromLoc, FromRange, &BasePath, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2266 | IgnoreAccess)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2267 | return ExprError(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2268 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2269 | return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, |
| 2270 | VK, &BasePath); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 2271 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 2272 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2273 | bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2274 | const LookupResult &R, |
| 2275 | bool HasTrailingLParen) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2276 | // Only when used directly as the postfix-expression of a call. |
| 2277 | if (!HasTrailingLParen) |
| 2278 | return false; |
| 2279 | |
| 2280 | // Never if a scope specifier was provided. |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2281 | if (SS.isSet()) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2282 | return false; |
| 2283 | |
| 2284 | // Only in C++ or ObjC++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2285 | if (!getLangOpts().CPlusPlus) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2286 | return false; |
| 2287 | |
| 2288 | // Turn off ADL when we find certain kinds of declarations during |
| 2289 | // normal lookup: |
| 2290 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 2291 | NamedDecl *D = *I; |
| 2292 | |
| 2293 | // C++0x [basic.lookup.argdep]p3: |
| 2294 | // -- a declaration of a class member |
| 2295 | // Since using decls preserve this property, we check this on the |
| 2296 | // original decl. |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 2297 | if (D->isCXXClassMember()) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2298 | return false; |
| 2299 | |
| 2300 | // C++0x [basic.lookup.argdep]p3: |
| 2301 | // -- a block-scope function declaration that is not a |
| 2302 | // using-declaration |
| 2303 | // NOTE: we also trigger this for function templates (in fact, we |
| 2304 | // don't check the decl type at all, since all other decl types |
| 2305 | // turn off ADL anyway). |
| 2306 | if (isa<UsingShadowDecl>(D)) |
| 2307 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 2308 | else if (D->getDeclContext()->isFunctionOrMethod()) |
| 2309 | return false; |
| 2310 | |
| 2311 | // C++0x [basic.lookup.argdep]p3: |
| 2312 | // -- a declaration that is neither a function or a function |
| 2313 | // template |
| 2314 | // And also for builtin functions. |
| 2315 | if (isa<FunctionDecl>(D)) { |
| 2316 | FunctionDecl *FDecl = cast<FunctionDecl>(D); |
| 2317 | |
| 2318 | // But also builtin functions. |
| 2319 | if (FDecl->getBuiltinID() && FDecl->isImplicit()) |
| 2320 | return false; |
| 2321 | } else if (!isa<FunctionTemplateDecl>(D)) |
| 2322 | return false; |
| 2323 | } |
| 2324 | |
| 2325 | return true; |
| 2326 | } |
| 2327 | |
| 2328 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2329 | /// Diagnoses obvious problems with the use of the given declaration |
| 2330 | /// as an expression. This is only actually called for lookups that |
| 2331 | /// were not overloaded, and it doesn't promise that the declaration |
| 2332 | /// will in fact be used. |
| 2333 | static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2334 | if (isa<TypedefNameDecl>(D)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2335 | S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); |
| 2336 | return true; |
| 2337 | } |
| 2338 | |
| 2339 | if (isa<ObjCInterfaceDecl>(D)) { |
| 2340 | S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); |
| 2341 | return true; |
| 2342 | } |
| 2343 | |
| 2344 | if (isa<NamespaceDecl>(D)) { |
| 2345 | S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); |
| 2346 | return true; |
| 2347 | } |
| 2348 | |
| 2349 | return false; |
| 2350 | } |
| 2351 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2352 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2353 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2354 | LookupResult &R, |
| 2355 | bool NeedsADL) { |
John McCall | fead20c | 2009-12-08 22:45:53 +0000 | [diff] [blame] | 2356 | // If this is a single, fully-resolved result and we don't need ADL, |
| 2357 | // just build an ordinary singleton decl ref. |
Douglas Gregor | 86b8e09 | 2010-01-29 17:15:43 +0000 | [diff] [blame] | 2358 | if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>()) |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2359 | return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), |
| 2360 | R.getFoundDecl()); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2361 | |
| 2362 | // We only need to check the declaration if there's exactly one |
| 2363 | // result, because in the overloaded case the results can only be |
| 2364 | // functions and function templates. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2365 | if (R.isSingleResult() && |
| 2366 | CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2367 | return ExprError(); |
| 2368 | |
John McCall | c373d48 | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 2369 | // Otherwise, just build an unresolved lookup expression. Suppress |
| 2370 | // any lookup-related diagnostics; we'll hash these out later, when |
| 2371 | // we've picked a target. |
| 2372 | R.suppressDiagnostics(); |
| 2373 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2374 | UnresolvedLookupExpr *ULE |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2375 | = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), |
Douglas Gregor | 4c9be89 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 2376 | SS.getWithLocInContext(Context), |
| 2377 | R.getLookupNameInfo(), |
Douglas Gregor | 5a84dec | 2010-05-23 18:57:34 +0000 | [diff] [blame] | 2378 | NeedsADL, R.isOverloadedResult(), |
| 2379 | R.begin(), R.end()); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2380 | |
| 2381 | return Owned(ULE); |
| 2382 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2383 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2384 | /// \brief Complete semantic analysis for a reference to the given declaration. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2385 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2386 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2387 | const DeclarationNameInfo &NameInfo, |
| 2388 | NamedDecl *D) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2389 | assert(D && "Cannot refer to a NULL declaration"); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2390 | assert(!isa<FunctionTemplateDecl>(D) && |
| 2391 | "Cannot refer unambiguously to a function template"); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2392 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2393 | SourceLocation Loc = NameInfo.getLoc(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2394 | if (CheckDeclInExpr(*this, Loc, D)) |
| 2395 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2396 | |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2397 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { |
| 2398 | // Specifically diagnose references to class templates that are missing |
| 2399 | // a template argument list. |
| 2400 | Diag(Loc, diag::err_template_decl_ref) |
| 2401 | << Template << SS.getRange(); |
| 2402 | Diag(Template->getLocation(), diag::note_template_decl_here); |
| 2403 | return ExprError(); |
| 2404 | } |
| 2405 | |
| 2406 | // Make sure that we're referring to a value. |
| 2407 | ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 2408 | if (!VD) { |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2409 | Diag(Loc, diag::err_ref_non_value) |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2410 | << D << SS.getRange(); |
John McCall | 87cf670 | 2009-12-18 18:35:10 +0000 | [diff] [blame] | 2411 | Diag(D->getLocation(), diag::note_declared_at); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2412 | return ExprError(); |
| 2413 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2414 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2415 | // Check whether this declaration can be used. Note that we suppress |
| 2416 | // this check when we're going to perform argument-dependent lookup |
| 2417 | // on this function name, because this might not be the function |
| 2418 | // that overload resolution actually selects. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2419 | if (DiagnoseUseOfDecl(VD, Loc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2420 | return ExprError(); |
| 2421 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2422 | // Only create DeclRefExpr's for valid Decl's. |
| 2423 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2424 | return ExprError(); |
| 2425 | |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 2426 | // Handle members of anonymous structs and unions. If we got here, |
| 2427 | // and the reference is to a class member indirect field, then this |
| 2428 | // must be the subject of a pointer-to-member expression. |
| 2429 | if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) |
| 2430 | if (!indirectField->isCXXClassMember()) |
| 2431 | return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), |
| 2432 | indirectField); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 2433 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 2434 | { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2435 | QualType type = VD->getType(); |
Daniel Dunbar | b20de81 | 2011-02-10 18:29:28 +0000 | [diff] [blame] | 2436 | ExprValueKind valueKind = VK_RValue; |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2437 | |
| 2438 | switch (D->getKind()) { |
| 2439 | // Ignore all the non-ValueDecl kinds. |
| 2440 | #define ABSTRACT_DECL(kind) |
| 2441 | #define VALUE(type, base) |
| 2442 | #define DECL(type, base) \ |
| 2443 | case Decl::type: |
| 2444 | #include "clang/AST/DeclNodes.inc" |
| 2445 | llvm_unreachable("invalid value decl kind"); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2446 | |
| 2447 | // These shouldn't make it here. |
| 2448 | case Decl::ObjCAtDefsField: |
| 2449 | case Decl::ObjCIvar: |
| 2450 | llvm_unreachable("forming non-member reference to ivar?"); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2451 | |
| 2452 | // Enum constants are always r-values and never references. |
| 2453 | // Unresolved using declarations are dependent. |
| 2454 | case Decl::EnumConstant: |
| 2455 | case Decl::UnresolvedUsingValue: |
| 2456 | valueKind = VK_RValue; |
| 2457 | break; |
| 2458 | |
| 2459 | // Fields and indirect fields that got here must be for |
| 2460 | // pointer-to-member expressions; we just call them l-values for |
| 2461 | // internal consistency, because this subexpression doesn't really |
| 2462 | // exist in the high-level semantics. |
| 2463 | case Decl::Field: |
| 2464 | case Decl::IndirectField: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2465 | assert(getLangOpts().CPlusPlus && |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2466 | "building reference to field in C?"); |
| 2467 | |
| 2468 | // These can't have reference type in well-formed programs, but |
| 2469 | // for internal consistency we do this anyway. |
| 2470 | type = type.getNonReferenceType(); |
| 2471 | valueKind = VK_LValue; |
| 2472 | break; |
| 2473 | |
| 2474 | // Non-type template parameters are either l-values or r-values |
| 2475 | // depending on the type. |
| 2476 | case Decl::NonTypeTemplateParm: { |
| 2477 | if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { |
| 2478 | type = reftype->getPointeeType(); |
| 2479 | valueKind = VK_LValue; // even if the parameter is an r-value reference |
| 2480 | break; |
| 2481 | } |
| 2482 | |
| 2483 | // For non-references, we need to strip qualifiers just in case |
| 2484 | // the template parameter was declared as 'const int' or whatever. |
| 2485 | valueKind = VK_RValue; |
| 2486 | type = type.getUnqualifiedType(); |
| 2487 | break; |
| 2488 | } |
| 2489 | |
| 2490 | case Decl::Var: |
| 2491 | // In C, "extern void blah;" is valid and is an r-value. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2492 | if (!getLangOpts().CPlusPlus && |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2493 | !type.hasQualifiers() && |
| 2494 | type->isVoidType()) { |
| 2495 | valueKind = VK_RValue; |
| 2496 | break; |
| 2497 | } |
| 2498 | // fallthrough |
| 2499 | |
| 2500 | case Decl::ImplicitParam: |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2501 | case Decl::ParmVar: { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2502 | // These are always l-values. |
| 2503 | valueKind = VK_LValue; |
| 2504 | type = type.getNonReferenceType(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 2505 | |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2506 | // FIXME: Does the addition of const really only apply in |
| 2507 | // potentially-evaluated contexts? Since the variable isn't actually |
| 2508 | // captured in an unevaluated context, it seems that the answer is no. |
David Blaikie | 71f55f7 | 2012-08-06 22:47:24 +0000 | [diff] [blame] | 2509 | if (!isUnevaluatedContext()) { |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2510 | QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc); |
| 2511 | if (!CapturedType.isNull()) |
| 2512 | type = CapturedType; |
| 2513 | } |
| 2514 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2515 | break; |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2516 | } |
| 2517 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2518 | case Decl::Function: { |
Eli Friedman | a6c66ce | 2012-08-31 00:14:07 +0000 | [diff] [blame] | 2519 | if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) { |
| 2520 | if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) { |
| 2521 | type = Context.BuiltinFnTy; |
| 2522 | valueKind = VK_RValue; |
| 2523 | break; |
| 2524 | } |
| 2525 | } |
| 2526 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2527 | const FunctionType *fty = type->castAs<FunctionType>(); |
| 2528 | |
| 2529 | // If we're referring to a function with an __unknown_anytype |
| 2530 | // result type, make the entire expression __unknown_anytype. |
| 2531 | if (fty->getResultType() == Context.UnknownAnyTy) { |
| 2532 | type = Context.UnknownAnyTy; |
| 2533 | valueKind = VK_RValue; |
| 2534 | break; |
| 2535 | } |
| 2536 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2537 | // Functions are l-values in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2538 | if (getLangOpts().CPlusPlus) { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2539 | valueKind = VK_LValue; |
| 2540 | break; |
| 2541 | } |
| 2542 | |
| 2543 | // C99 DR 316 says that, if a function type comes from a |
| 2544 | // function definition (without a prototype), that type is only |
| 2545 | // used for checking compatibility. Therefore, when referencing |
| 2546 | // the function, we pretend that we don't have the full function |
| 2547 | // type. |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2548 | if (!cast<FunctionDecl>(VD)->hasPrototype() && |
| 2549 | isa<FunctionProtoType>(fty)) |
| 2550 | type = Context.getFunctionNoProtoType(fty->getResultType(), |
| 2551 | fty->getExtInfo()); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2552 | |
| 2553 | // Functions are r-values in C. |
| 2554 | valueKind = VK_RValue; |
| 2555 | break; |
| 2556 | } |
| 2557 | |
| 2558 | case Decl::CXXMethod: |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2559 | // If we're referring to a method with an __unknown_anytype |
| 2560 | // result type, make the entire expression __unknown_anytype. |
| 2561 | // This should only be possible with a type written directly. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 2562 | if (const FunctionProtoType *proto |
| 2563 | = dyn_cast<FunctionProtoType>(VD->getType())) |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2564 | if (proto->getResultType() == Context.UnknownAnyTy) { |
| 2565 | type = Context.UnknownAnyTy; |
| 2566 | valueKind = VK_RValue; |
| 2567 | break; |
| 2568 | } |
| 2569 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2570 | // C++ methods are l-values if static, r-values if non-static. |
| 2571 | if (cast<CXXMethodDecl>(VD)->isStatic()) { |
| 2572 | valueKind = VK_LValue; |
| 2573 | break; |
| 2574 | } |
| 2575 | // fallthrough |
| 2576 | |
| 2577 | case Decl::CXXConversion: |
| 2578 | case Decl::CXXDestructor: |
| 2579 | case Decl::CXXConstructor: |
| 2580 | valueKind = VK_RValue; |
| 2581 | break; |
| 2582 | } |
| 2583 | |
| 2584 | return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS); |
| 2585 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2586 | } |
| 2587 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2588 | ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 2589 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2590 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2591 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2592 | default: llvm_unreachable("Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 2593 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 2594 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
Nico Weber | 28ad063 | 2012-06-23 02:07:59 +0000 | [diff] [blame] | 2595 | case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break; |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 2596 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2597 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 2598 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 2599 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 2600 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2601 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2602 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
Benjamin Kramer | 4242740 | 2012-12-06 15:42:21 +0000 | [diff] [blame] | 2603 | // Blocks and lambdas can occur at global scope. Don't emit a warning. |
| 2604 | if (!currentDecl) { |
| 2605 | if (const BlockScopeInfo *BSI = getCurBlock()) |
| 2606 | currentDecl = BSI->TheDecl; |
| 2607 | else if (const LambdaScopeInfo *LSI = getCurLambda()) |
| 2608 | currentDecl = LSI->CallOperator; |
| 2609 | } |
| 2610 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2611 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 2612 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2613 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 2614 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2615 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2616 | QualType ResTy; |
| 2617 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 2618 | ResTy = Context.DependentTy; |
| 2619 | } else { |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 2620 | unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2621 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2622 | llvm::APInt LengthI(32, Length + 1); |
Nico Weber | d68615f | 2012-06-29 16:39:58 +0000 | [diff] [blame] | 2623 | if (IT == PredefinedExpr::LFunction) |
Nico Weber | 28ad063 | 2012-06-23 02:07:59 +0000 | [diff] [blame] | 2624 | ResTy = Context.WCharTy.withConst(); |
| 2625 | else |
| 2626 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2627 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 2628 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2629 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2630 | } |
| 2631 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2632 | ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) { |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2633 | SmallString<16> CharBuffer; |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2634 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2635 | StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2636 | if (Invalid) |
| 2637 | return ExprError(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2638 | |
Benjamin Kramer | ddeea56 | 2010-02-27 13:44:12 +0000 | [diff] [blame] | 2639 | CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2640 | PP, Tok.getKind()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2641 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2642 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 2643 | |
Chris Lattner | e8337df | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 2644 | QualType Ty; |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2645 | if (Literal.isWide()) |
| 2646 | Ty = Context.WCharTy; // L'x' -> wchar_t in C and C++. |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2647 | else if (Literal.isUTF16()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2648 | Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11. |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2649 | else if (Literal.isUTF32()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2650 | Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2651 | else if (!getLangOpts().CPlusPlus || Literal.isMultiChar()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2652 | Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++. |
Chris Lattner | e8337df | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 2653 | else |
| 2654 | Ty = Context.CharTy; // 'x' -> char in C++ |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 2655 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2656 | CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; |
| 2657 | if (Literal.isWide()) |
| 2658 | Kind = CharacterLiteral::Wide; |
| 2659 | else if (Literal.isUTF16()) |
| 2660 | Kind = CharacterLiteral::UTF16; |
| 2661 | else if (Literal.isUTF32()) |
| 2662 | Kind = CharacterLiteral::UTF32; |
| 2663 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 2664 | Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, |
| 2665 | Tok.getLocation()); |
| 2666 | |
| 2667 | if (Literal.getUDSuffix().empty()) |
| 2668 | return Owned(Lit); |
| 2669 | |
| 2670 | // We're building a user-defined literal. |
| 2671 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
| 2672 | SourceLocation UDSuffixLoc = |
| 2673 | getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); |
| 2674 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2675 | // Make sure we're allowed user-defined literals here. |
| 2676 | if (!UDLScope) |
| 2677 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl)); |
| 2678 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 2679 | // C++11 [lex.ext]p6: The literal L is treated as a call of the form |
| 2680 | // operator "" X (ch) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2681 | return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, |
| 2682 | llvm::makeArrayRef(&Lit, 1), |
| 2683 | Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2686 | ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) { |
| 2687 | unsigned IntSize = Context.getTargetInfo().getIntWidth(); |
| 2688 | return Owned(IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), |
| 2689 | Context.IntTy, Loc)); |
| 2690 | } |
| 2691 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2692 | static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal, |
| 2693 | QualType Ty, SourceLocation Loc) { |
| 2694 | const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); |
| 2695 | |
| 2696 | using llvm::APFloat; |
| 2697 | APFloat Val(Format); |
| 2698 | |
| 2699 | APFloat::opStatus result = Literal.GetFloatValue(Val); |
| 2700 | |
| 2701 | // Overflow is always an error, but underflow is only an error if |
| 2702 | // we underflowed to zero (APFloat reports denormals as underflow). |
| 2703 | if ((result & APFloat::opOverflow) || |
| 2704 | ((result & APFloat::opUnderflow) && Val.isZero())) { |
| 2705 | unsigned diagnostic; |
| 2706 | SmallString<20> buffer; |
| 2707 | if (result & APFloat::opOverflow) { |
| 2708 | diagnostic = diag::warn_float_overflow; |
| 2709 | APFloat::getLargest(Format).toString(buffer); |
| 2710 | } else { |
| 2711 | diagnostic = diag::warn_float_underflow; |
| 2712 | APFloat::getSmallest(Format).toString(buffer); |
| 2713 | } |
| 2714 | |
| 2715 | S.Diag(Loc, diagnostic) |
| 2716 | << Ty |
| 2717 | << StringRef(buffer.data(), buffer.size()); |
| 2718 | } |
| 2719 | |
| 2720 | bool isExact = (result == APFloat::opOK); |
| 2721 | return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc); |
| 2722 | } |
| 2723 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2724 | ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2725 | // Fast path for a single digit (which is quite common). A single digit |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2726 | // cannot have a trigraph, escaped newline, radix prefix, or suffix. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2727 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 2728 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2729 | return ActOnIntegerConstant(Tok.getLocation(), Val-'0'); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2730 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 2731 | |
Dmitri Gribenko | fc97ea2 | 2012-09-24 09:53:54 +0000 | [diff] [blame] | 2732 | SmallString<128> SpellingBuffer; |
| 2733 | // NumericLiteralParser wants to overread by one character. Add padding to |
| 2734 | // the buffer in case the token is copied to the buffer. If getSpelling() |
| 2735 | // returns a StringRef to the memory buffer, it should have a null char at |
| 2736 | // the EOF, so it is also safe. |
| 2737 | SpellingBuffer.resize(Tok.getLength() + 1); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2738 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2739 | // Get the spelling of the token, which eliminates trigraphs, etc. |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2740 | bool Invalid = false; |
Dmitri Gribenko | fc97ea2 | 2012-09-24 09:53:54 +0000 | [diff] [blame] | 2741 | StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid); |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2742 | if (Invalid) |
| 2743 | return ExprError(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2744 | |
Dmitri Gribenko | fc97ea2 | 2012-09-24 09:53:54 +0000 | [diff] [blame] | 2745 | NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2746 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2747 | return ExprError(); |
| 2748 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2749 | if (Literal.hasUDSuffix()) { |
| 2750 | // We're building a user-defined literal. |
| 2751 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
| 2752 | SourceLocation UDSuffixLoc = |
| 2753 | getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); |
| 2754 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2755 | // Make sure we're allowed user-defined literals here. |
| 2756 | if (!UDLScope) |
| 2757 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl)); |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2758 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2759 | QualType CookedTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2760 | if (Literal.isFloatingLiteral()) { |
| 2761 | // C++11 [lex.ext]p4: If S contains a literal operator with parameter type |
| 2762 | // long double, the literal is treated as a call of the form |
| 2763 | // operator "" X (f L) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2764 | CookedTy = Context.LongDoubleTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2765 | } else { |
| 2766 | // C++11 [lex.ext]p3: If S contains a literal operator with parameter type |
| 2767 | // unsigned long long, the literal is treated as a call of the form |
| 2768 | // operator "" X (n ULL) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2769 | CookedTy = Context.UnsignedLongLongTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2770 | } |
| 2771 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2772 | DeclarationName OpName = |
| 2773 | Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); |
| 2774 | DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); |
| 2775 | OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); |
| 2776 | |
| 2777 | // Perform literal operator lookup to determine if we're building a raw |
| 2778 | // literal or a cooked one. |
| 2779 | LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); |
| 2780 | switch (LookupLiteralOperator(UDLScope, R, llvm::makeArrayRef(&CookedTy, 1), |
| 2781 | /*AllowRawAndTemplate*/true)) { |
| 2782 | case LOLR_Error: |
| 2783 | return ExprError(); |
| 2784 | |
| 2785 | case LOLR_Cooked: { |
| 2786 | Expr *Lit; |
| 2787 | if (Literal.isFloatingLiteral()) { |
| 2788 | Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); |
| 2789 | } else { |
| 2790 | llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); |
| 2791 | if (Literal.GetIntegerValue(ResultVal)) |
| 2792 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
| 2793 | Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, |
| 2794 | Tok.getLocation()); |
| 2795 | } |
| 2796 | return BuildLiteralOperatorCall(R, OpNameInfo, |
| 2797 | llvm::makeArrayRef(&Lit, 1), |
| 2798 | Tok.getLocation()); |
| 2799 | } |
| 2800 | |
| 2801 | case LOLR_Raw: { |
| 2802 | // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the |
| 2803 | // literal is treated as a call of the form |
| 2804 | // operator "" X ("n") |
| 2805 | SourceLocation TokLoc = Tok.getLocation(); |
| 2806 | unsigned Length = Literal.getUDSuffixOffset(); |
| 2807 | QualType StrTy = Context.getConstantArrayType( |
Richard Smith | 4ea6a64 | 2013-01-23 23:38:20 +0000 | [diff] [blame] | 2808 | Context.CharTy.withConst(), llvm::APInt(32, Length + 1), |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2809 | ArrayType::Normal, 0); |
| 2810 | Expr *Lit = StringLiteral::Create( |
Dmitri Gribenko | fc97ea2 | 2012-09-24 09:53:54 +0000 | [diff] [blame] | 2811 | Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii, |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2812 | /*Pascal*/false, StrTy, &TokLoc, 1); |
| 2813 | return BuildLiteralOperatorCall(R, OpNameInfo, |
| 2814 | llvm::makeArrayRef(&Lit, 1), TokLoc); |
| 2815 | } |
| 2816 | |
| 2817 | case LOLR_Template: |
| 2818 | // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator |
| 2819 | // template), L is treated as a call fo the form |
| 2820 | // operator "" X <'c1', 'c2', ... 'ck'>() |
| 2821 | // where n is the source character sequence c1 c2 ... ck. |
| 2822 | TemplateArgumentListInfo ExplicitArgs; |
| 2823 | unsigned CharBits = Context.getIntWidth(Context.CharTy); |
| 2824 | bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); |
| 2825 | llvm::APSInt Value(CharBits, CharIsUnsigned); |
| 2826 | for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) { |
Dmitri Gribenko | fc97ea2 | 2012-09-24 09:53:54 +0000 | [diff] [blame] | 2827 | Value = TokSpelling[I]; |
Benjamin Kramer | 8552437 | 2012-06-07 15:09:51 +0000 | [diff] [blame] | 2828 | TemplateArgument Arg(Context, Value, Context.CharTy); |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2829 | TemplateArgumentLocInfo ArgInfo; |
| 2830 | ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); |
| 2831 | } |
| 2832 | return BuildLiteralOperatorCall(R, OpNameInfo, ArrayRef<Expr*>(), |
| 2833 | Tok.getLocation(), &ExplicitArgs); |
| 2834 | } |
| 2835 | |
| 2836 | llvm_unreachable("unexpected literal operator lookup result"); |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2837 | } |
| 2838 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2839 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2840 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2841 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2842 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2843 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2844 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2845 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2846 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2847 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 2848 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2849 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2850 | Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2851 | |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2852 | if (Ty == Context.DoubleTy) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2853 | if (getLangOpts().SinglePrecisionConstants) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2854 | Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2855 | } else if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp64) { |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2856 | Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2857 | Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2858 | } |
| 2859 | } |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2860 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2861 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2862 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2863 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2864 | |
Dmitri Gribenko | e3b136b | 2012-09-24 18:19:21 +0000 | [diff] [blame] | 2865 | // 'long long' is a C99 or C++11 feature. |
| 2866 | if (!getLangOpts().C99 && Literal.isLongLong) { |
| 2867 | if (getLangOpts().CPlusPlus) |
| 2868 | Diag(Tok.getLocation(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2869 | getLangOpts().CPlusPlus11 ? |
Dmitri Gribenko | e3b136b | 2012-09-24 18:19:21 +0000 | [diff] [blame] | 2870 | diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong); |
| 2871 | else |
| 2872 | Diag(Tok.getLocation(), diag::ext_c99_longlong); |
| 2873 | } |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 2874 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2875 | // Get the value in the widest-possible width. |
Stephen Canon | b9e05f1 | 2012-05-03 22:49:43 +0000 | [diff] [blame] | 2876 | unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); |
| 2877 | // The microsoft literal suffix extensions support 128-bit literals, which |
| 2878 | // may be wider than [u]intmax_t. |
Richard Smith | 8426890 | 2012-11-29 05:41:51 +0000 | [diff] [blame] | 2879 | // FIXME: Actually, they don't. We seem to have accidentally invented the |
| 2880 | // i128 suffix. |
| 2881 | if (Literal.isMicrosoftInteger && MaxWidth < 128 && |
| 2882 | PP.getTargetInfo().hasInt128Type()) |
Stephen Canon | b9e05f1 | 2012-05-03 22:49:43 +0000 | [diff] [blame] | 2883 | MaxWidth = 128; |
| 2884 | llvm::APInt ResultVal(MaxWidth, 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2885 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2886 | if (Literal.GetIntegerValue(ResultVal)) { |
| 2887 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 2888 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2889 | Ty = Context.UnsignedLongLongTy; |
| 2890 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2891 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2892 | } else { |
| 2893 | // If this value fits into a ULL, try to figure out what else it fits into |
| 2894 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2895 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2896 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 2897 | // be an unsigned int. |
| 2898 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 2899 | |
| 2900 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2901 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 2902 | if (!Literal.isLong && !Literal.isLongLong) { |
| 2903 | // Are int/unsigned possibilities? |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2904 | unsigned IntSize = Context.getTargetInfo().getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2905 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2906 | // Does it fit in a unsigned int? |
| 2907 | if (ResultVal.isIntN(IntSize)) { |
| 2908 | // Does it fit in a signed int? |
| 2909 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2910 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2911 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2912 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2913 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2914 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2915 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2916 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2917 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2918 | if (Ty.isNull() && !Literal.isLongLong) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2919 | unsigned LongSize = Context.getTargetInfo().getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2920 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2921 | // Does it fit in a unsigned long? |
| 2922 | if (ResultVal.isIntN(LongSize)) { |
| 2923 | // Does it fit in a signed long? |
| 2924 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2925 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2926 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2927 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2928 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2929 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2930 | } |
| 2931 | |
Stephen Canon | b9e05f1 | 2012-05-03 22:49:43 +0000 | [diff] [blame] | 2932 | // Check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2933 | if (Ty.isNull()) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2934 | unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2935 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2936 | // Does it fit in a unsigned long long? |
| 2937 | if (ResultVal.isIntN(LongLongSize)) { |
| 2938 | // Does it fit in a signed long long? |
Francois Pichet | 2432320 | 2011-01-11 23:38:13 +0000 | [diff] [blame] | 2939 | // To be compatible with MSVC, hex integer literals ending with the |
| 2940 | // LL or i64 suffix are always signed in Microsoft mode. |
Francois Pichet | a15a5ee | 2011-01-11 12:23:00 +0000 | [diff] [blame] | 2941 | if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2942 | (getLangOpts().MicrosoftExt && Literal.isLongLong))) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2943 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2944 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2945 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2946 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2947 | } |
| 2948 | } |
Stephen Canon | b9e05f1 | 2012-05-03 22:49:43 +0000 | [diff] [blame] | 2949 | |
| 2950 | // If it doesn't fit in unsigned long long, and we're using Microsoft |
| 2951 | // extensions, then its a 128-bit integer literal. |
Richard Smith | 8426890 | 2012-11-29 05:41:51 +0000 | [diff] [blame] | 2952 | if (Ty.isNull() && Literal.isMicrosoftInteger && |
| 2953 | PP.getTargetInfo().hasInt128Type()) { |
Stephen Canon | b9e05f1 | 2012-05-03 22:49:43 +0000 | [diff] [blame] | 2954 | if (Literal.isUnsigned) |
| 2955 | Ty = Context.UnsignedInt128Ty; |
| 2956 | else |
| 2957 | Ty = Context.Int128Ty; |
| 2958 | Width = 128; |
| 2959 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2960 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2961 | // If we still couldn't decide a type, we probably have something that |
| 2962 | // does not fit in a signed long long, but has no U suffix. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2963 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2964 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2965 | Ty = Context.UnsignedLongLongTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2966 | Width = Context.getTargetInfo().getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2967 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2968 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2969 | if (ResultVal.getBitWidth() != Width) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2970 | ResultVal = ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2971 | } |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 2972 | Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2973 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2974 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2975 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 2976 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2977 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2978 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2979 | |
| 2980 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2981 | } |
| 2982 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2983 | ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2984 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2985 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2986 | } |
| 2987 | |
Chandler Carruth | df1f377 | 2011-05-26 08:53:12 +0000 | [diff] [blame] | 2988 | static bool CheckVecStepTraitOperandType(Sema &S, QualType T, |
| 2989 | SourceLocation Loc, |
| 2990 | SourceRange ArgRange) { |
| 2991 | // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in |
| 2992 | // scalar or vector data type argument..." |
| 2993 | // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic |
| 2994 | // type (C99 6.2.5p18) or void. |
| 2995 | if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { |
| 2996 | S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) |
| 2997 | << T << ArgRange; |
| 2998 | return true; |
| 2999 | } |
| 3000 | |
| 3001 | assert((T->isVoidType() || !T->isIncompleteType()) && |
| 3002 | "Scalar types should always be complete"); |
| 3003 | return false; |
| 3004 | } |
| 3005 | |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 3006 | static bool CheckExtensionTraitOperandType(Sema &S, QualType T, |
| 3007 | SourceLocation Loc, |
| 3008 | SourceRange ArgRange, |
| 3009 | UnaryExprOrTypeTrait TraitKind) { |
| 3010 | // C99 6.5.3.4p1: |
| 3011 | if (T->isFunctionType()) { |
| 3012 | // alignof(function) is allowed as an extension. |
| 3013 | if (TraitKind == UETT_SizeOf) |
| 3014 | S.Diag(Loc, diag::ext_sizeof_function_type) << ArgRange; |
| 3015 | return false; |
| 3016 | } |
| 3017 | |
| 3018 | // Allow sizeof(void)/alignof(void) as an extension. |
| 3019 | if (T->isVoidType()) { |
| 3020 | S.Diag(Loc, diag::ext_sizeof_void_type) << TraitKind << ArgRange; |
| 3021 | return false; |
| 3022 | } |
| 3023 | |
| 3024 | return true; |
| 3025 | } |
| 3026 | |
| 3027 | static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, |
| 3028 | SourceLocation Loc, |
| 3029 | SourceRange ArgRange, |
| 3030 | UnaryExprOrTypeTrait TraitKind) { |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3031 | // Reject sizeof(interface) and sizeof(interface<proto>) if the |
| 3032 | // runtime doesn't allow it. |
| 3033 | if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) { |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 3034 | S.Diag(Loc, diag::err_sizeof_nonfragile_interface) |
| 3035 | << T << (TraitKind == UETT_SizeOf) |
| 3036 | << ArgRange; |
| 3037 | return true; |
| 3038 | } |
| 3039 | |
| 3040 | return false; |
| 3041 | } |
| 3042 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3043 | /// \brief Check the constrains on expression operands to unary type expression |
| 3044 | /// and type traits. |
| 3045 | /// |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3046 | /// Completes any types necessary and validates the constraints on the operand |
| 3047 | /// expression. The logic mostly mirrors the type-based overload, but may modify |
| 3048 | /// the expression as it completes the type for that expression through template |
| 3049 | /// instantiation, etc. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3050 | bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3051 | UnaryExprOrTypeTrait ExprKind) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3052 | QualType ExprTy = E->getType(); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3053 | |
| 3054 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 3055 | // the result is the size of the referenced type." |
| 3056 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 3057 | // result shall be the alignment of the referenced type." |
| 3058 | if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) |
| 3059 | ExprTy = Ref->getPointeeType(); |
| 3060 | |
| 3061 | if (ExprKind == UETT_VecStep) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3062 | return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), |
| 3063 | E->getSourceRange()); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3064 | |
| 3065 | // Whitelist some types as extensions |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3066 | if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), |
| 3067 | E->getSourceRange(), ExprKind)) |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3068 | return false; |
| 3069 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3070 | if (RequireCompleteExprType(E, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3071 | diag::err_sizeof_alignof_incomplete_type, |
| 3072 | ExprKind, E->getSourceRange())) |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3073 | return true; |
| 3074 | |
| 3075 | // Completeing the expression's type may have changed it. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3076 | ExprTy = E->getType(); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3077 | if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) |
| 3078 | ExprTy = Ref->getPointeeType(); |
| 3079 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3080 | if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), |
| 3081 | E->getSourceRange(), ExprKind)) |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3082 | return true; |
| 3083 | |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 3084 | if (ExprKind == UETT_SizeOf) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3085 | if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 3086 | if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { |
| 3087 | QualType OType = PVD->getOriginalType(); |
| 3088 | QualType Type = PVD->getType(); |
| 3089 | if (Type->isPointerType() && OType->isArrayType()) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3090 | Diag(E->getExprLoc(), diag::warn_sizeof_array_param) |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 3091 | << Type << OType; |
| 3092 | Diag(PVD->getLocation(), diag::note_declared_at); |
| 3093 | } |
| 3094 | } |
| 3095 | } |
| 3096 | } |
| 3097 | |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 3098 | return false; |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3099 | } |
| 3100 | |
| 3101 | /// \brief Check the constraints on operands to unary expression and type |
| 3102 | /// traits. |
| 3103 | /// |
| 3104 | /// This will complete any types necessary, and validate the various constraints |
| 3105 | /// on those operands. |
| 3106 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3107 | /// The UsualUnaryConversions() function is *not* called by this routine. |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3108 | /// C99 6.3.2.1p[2-4] all state: |
| 3109 | /// Except when it is the operand of the sizeof operator ... |
| 3110 | /// |
| 3111 | /// C++ [expr.sizeof]p4 |
| 3112 | /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer |
| 3113 | /// standard conversions are not applied to the operand of sizeof. |
| 3114 | /// |
| 3115 | /// This policy is followed for all of the unary trait expressions. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3116 | bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3117 | SourceLocation OpLoc, |
| 3118 | SourceRange ExprRange, |
| 3119 | UnaryExprOrTypeTrait ExprKind) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3120 | if (ExprType->isDependentType()) |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3121 | return false; |
| 3122 | |
Sebastian Redl | 5d484e8 | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 3123 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 3124 | // the result is the size of the referenced type." |
| 3125 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 3126 | // result shall be the alignment of the referenced type." |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3127 | if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) |
| 3128 | ExprType = Ref->getPointeeType(); |
Sebastian Redl | 5d484e8 | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 3129 | |
Chandler Carruth | df1f377 | 2011-05-26 08:53:12 +0000 | [diff] [blame] | 3130 | if (ExprKind == UETT_VecStep) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3131 | return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3132 | |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 3133 | // Whitelist some types as extensions |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3134 | if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 3135 | ExprKind)) |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 3136 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3137 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3138 | if (RequireCompleteType(OpLoc, ExprType, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3139 | diag::err_sizeof_alignof_incomplete_type, |
| 3140 | ExprKind, ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 3141 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3142 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3143 | if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 3144 | ExprKind)) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 3145 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3146 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 3147 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3148 | } |
| 3149 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3150 | static bool CheckAlignOfExpr(Sema &S, Expr *E) { |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 3151 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3152 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3153 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 3154 | if (isa<DeclRefExpr>(E)) |
| 3155 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3156 | |
| 3157 | // Cannot know anything else if the expression is dependent. |
| 3158 | if (E->isTypeDependent()) |
| 3159 | return false; |
| 3160 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 3161 | if (E->getBitField()) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3162 | S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) |
| 3163 | << 1 << E->getSourceRange(); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 3164 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 3165 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 3166 | |
| 3167 | // Alignment of a field access is always okay, so long as it isn't a |
| 3168 | // bit-field. |
| 3169 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 3170 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 3171 | return false; |
| 3172 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3173 | return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3174 | } |
| 3175 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3176 | bool Sema::CheckVecStepExpr(Expr *E) { |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3177 | E = E->IgnoreParens(); |
| 3178 | |
| 3179 | // Cannot know anything else if the expression is dependent. |
| 3180 | if (E->isTypeDependent()) |
| 3181 | return false; |
| 3182 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3183 | return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 3184 | } |
| 3185 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3186 | /// \brief Build a sizeof or alignof expression given a type operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3187 | ExprResult |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3188 | Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, |
| 3189 | SourceLocation OpLoc, |
| 3190 | UnaryExprOrTypeTrait ExprKind, |
| 3191 | SourceRange R) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3192 | if (!TInfo) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3193 | return ExprError(); |
| 3194 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3195 | QualType T = TInfo->getType(); |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 3196 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3197 | if (!T->isDependentType() && |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3198 | CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3199 | return ExprError(); |
| 3200 | |
| 3201 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3202 | return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, TInfo, |
| 3203 | Context.getSizeType(), |
| 3204 | OpLoc, R.getEnd())); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3205 | } |
| 3206 | |
| 3207 | /// \brief Build a sizeof or alignof expression given an expression |
| 3208 | /// operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3209 | ExprResult |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 3210 | Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, |
| 3211 | UnaryExprOrTypeTrait ExprKind) { |
Douglas Gregor | 4f0845e | 2011-06-22 23:21:00 +0000 | [diff] [blame] | 3212 | ExprResult PE = CheckPlaceholderExpr(E); |
| 3213 | if (PE.isInvalid()) |
| 3214 | return ExprError(); |
| 3215 | |
| 3216 | E = PE.get(); |
| 3217 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3218 | // Verify that the operand is valid. |
| 3219 | bool isInvalid = false; |
| 3220 | if (E->isTypeDependent()) { |
| 3221 | // Delay type-checking for type-dependent expressions. |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3222 | } else if (ExprKind == UETT_AlignOf) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3223 | isInvalid = CheckAlignOfExpr(*this, E); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3224 | } else if (ExprKind == UETT_VecStep) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3225 | isInvalid = CheckVecStepExpr(E); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 3226 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3227 | Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3228 | isInvalid = true; |
| 3229 | } else { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3230 | isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3231 | } |
| 3232 | |
| 3233 | if (isInvalid) |
| 3234 | return ExprError(); |
| 3235 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 3236 | if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { |
Benjamin Kramer | accaf19 | 2012-11-14 15:08:31 +0000 | [diff] [blame] | 3237 | PE = TransformToPotentiallyEvaluated(E); |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 3238 | if (PE.isInvalid()) return ExprError(); |
| 3239 | E = PE.take(); |
| 3240 | } |
| 3241 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3242 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3243 | return Owned(new (Context) UnaryExprOrTypeTraitExpr( |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 3244 | ExprKind, E, Context.getSizeType(), OpLoc, |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3245 | E->getSourceRange().getEnd())); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3246 | } |
| 3247 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3248 | /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c |
| 3249 | /// expr and the same for @c alignof and @c __alignof |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3250 | /// Note that the ArgRange is invalid if isType is false. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3251 | ExprResult |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3252 | Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3253 | UnaryExprOrTypeTrait ExprKind, bool IsType, |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3254 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3255 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3256 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3257 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3258 | if (IsType) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3259 | TypeSourceInfo *TInfo; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3260 | (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3261 | return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3262 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3263 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3264 | Expr *ArgEx = (Expr *)TyOrEx; |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 3265 | ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3266 | return Result; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3267 | } |
| 3268 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3269 | static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3270 | bool IsReal) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3271 | if (V.get()->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3272 | return S.Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3273 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3274 | // _Real and _Imag are only l-values for normal l-values. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3275 | if (V.get()->getObjectKind() != OK_Ordinary) { |
| 3276 | V = S.DefaultLvalueConversion(V.take()); |
| 3277 | if (V.isInvalid()) |
| 3278 | return QualType(); |
| 3279 | } |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3280 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3281 | // These operators return the element type of a complex type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3282 | if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 3283 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3284 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3285 | // Otherwise they pass through real integer and floating point types here. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3286 | if (V.get()->getType()->isArithmeticType()) |
| 3287 | return V.get()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3288 | |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3289 | // Test for placeholders. |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 3290 | ExprResult PR = S.CheckPlaceholderExpr(V.get()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3291 | if (PR.isInvalid()) return QualType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3292 | if (PR.get() != V.get()) { |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 3293 | V = PR; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3294 | return CheckRealImagOperand(S, V, Loc, IsReal); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3295 | } |
| 3296 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3297 | // Reject anything else. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3298 | S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3299 | << (IsReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3300 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 3301 | } |
| 3302 | |
| 3303 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3304 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3305 | ExprResult |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3306 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3307 | tok::TokenKind Kind, Expr *Input) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3308 | UnaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3309 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3310 | default: llvm_unreachable("Unknown unary op!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3311 | case tok::plusplus: Opc = UO_PostInc; break; |
| 3312 | case tok::minusminus: Opc = UO_PostDec; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3313 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3314 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 3315 | // Since this might is a postfix expression, get rid of ParenListExprs. |
| 3316 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); |
| 3317 | if (Result.isInvalid()) return ExprError(); |
| 3318 | Input = Result.take(); |
| 3319 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3320 | return BuildUnaryOp(S, OpLoc, Opc, Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3321 | } |
| 3322 | |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3323 | /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal. |
| 3324 | /// |
| 3325 | /// \return true on error |
| 3326 | static bool checkArithmeticOnObjCPointer(Sema &S, |
| 3327 | SourceLocation opLoc, |
| 3328 | Expr *op) { |
| 3329 | assert(op->getType()->isObjCObjectPointerType()); |
| 3330 | if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic()) |
| 3331 | return false; |
| 3332 | |
| 3333 | S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface) |
| 3334 | << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType() |
| 3335 | << op->getSourceRange(); |
| 3336 | return true; |
| 3337 | } |
| 3338 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3339 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3340 | Sema::ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc, |
| 3341 | Expr *Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3342 | // Since this might be a postfix expression, get rid of ParenListExprs. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3343 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3344 | if (Result.isInvalid()) return ExprError(); |
| 3345 | Base = Result.take(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3346 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3347 | Expr *LHSExp = Base, *RHSExp = Idx; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3348 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3349 | if (getLangOpts().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3350 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3351 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3352 | Context.DependentTy, |
| 3353 | VK_LValue, OK_Ordinary, |
| 3354 | RLoc)); |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3355 | } |
| 3356 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3357 | if (getLangOpts().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3358 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 3359 | LHSExp->getType()->isEnumeralType() || |
| 3360 | RHSExp->getType()->isRecordType() || |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3361 | RHSExp->getType()->isEnumeralType()) && |
| 3362 | !LHSExp->getType()->isObjCObjectPointerType()) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3363 | return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, Base, Idx); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 3364 | } |
| 3365 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3366 | return CreateBuiltinArraySubscriptExpr(Base, LLoc, Idx, RLoc); |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 3367 | } |
| 3368 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3369 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3370 | Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3371 | Expr *Idx, SourceLocation RLoc) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3372 | Expr *LHSExp = Base; |
| 3373 | Expr *RHSExp = Idx; |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 3374 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3375 | // Perform default conversions. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3376 | if (!LHSExp->getType()->getAs<VectorType>()) { |
| 3377 | ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); |
| 3378 | if (Result.isInvalid()) |
| 3379 | return ExprError(); |
| 3380 | LHSExp = Result.take(); |
| 3381 | } |
| 3382 | ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); |
| 3383 | if (Result.isInvalid()) |
| 3384 | return ExprError(); |
| 3385 | RHSExp = Result.take(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3386 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3387 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3388 | ExprValueKind VK = VK_LValue; |
| 3389 | ExprObjectKind OK = OK_Ordinary; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3390 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3391 | // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 3392 | // to the expression *((e1)+(e2)). This means the array "Base" may actually be |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3393 | // in the subscript position. As a result, we need to derive the array base |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3394 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3395 | Expr *BaseExpr, *IndexExpr; |
| 3396 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3397 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 3398 | BaseExpr = LHSExp; |
| 3399 | IndexExpr = RHSExp; |
| 3400 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3401 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3402 | BaseExpr = LHSExp; |
| 3403 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3404 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3405 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3406 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3407 | BaseExpr = LHSExp; |
| 3408 | IndexExpr = RHSExp; |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3409 | |
| 3410 | // Use custom logic if this should be the pseudo-object subscript |
| 3411 | // expression. |
| 3412 | if (!LangOpts.ObjCRuntime.isSubscriptPointerArithmetic()) |
| 3413 | return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, 0, 0); |
| 3414 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3415 | ResultType = PTy->getPointeeType(); |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3416 | if (!LangOpts.ObjCRuntime.allowsPointerArithmetic()) { |
| 3417 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 3418 | << ResultType << BaseExpr->getSourceRange(); |
| 3419 | return ExprError(); |
| 3420 | } |
Fariborz Jahanian | a78eca2 | 2012-03-28 17:56:49 +0000 | [diff] [blame] | 3421 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
| 3422 | // Handle the uncommon case of "123[Ptr]". |
| 3423 | BaseExpr = RHSExp; |
| 3424 | IndexExpr = LHSExp; |
| 3425 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3426 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3427 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3428 | // Handle the uncommon case of "123[Ptr]". |
| 3429 | BaseExpr = RHSExp; |
| 3430 | IndexExpr = LHSExp; |
| 3431 | ResultType = PTy->getPointeeType(); |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 3432 | if (!LangOpts.ObjCRuntime.allowsPointerArithmetic()) { |
| 3433 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 3434 | << ResultType << BaseExpr->getSourceRange(); |
| 3435 | return ExprError(); |
| 3436 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3437 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 3438 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3439 | IndexExpr = RHSExp; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3440 | VK = LHSExp->getValueKind(); |
| 3441 | if (VK != VK_RValue) |
| 3442 | OK = OK_VectorComponent; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 3443 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3444 | // FIXME: need to deal with const... |
| 3445 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3446 | } else if (LHSTy->isArrayType()) { |
| 3447 | // If we see an array that wasn't promoted by |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 3448 | // DefaultFunctionArrayLvalueConversion, it must be an array that |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3449 | // wasn't promoted because of the C90 rule that doesn't |
| 3450 | // allow promoting non-lvalue arrays. Warn, then |
| 3451 | // force the promotion here. |
| 3452 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 3453 | LHSExp->getSourceRange(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3454 | LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 3455 | CK_ArrayToPointerDecay).take(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3456 | LHSTy = LHSExp->getType(); |
| 3457 | |
| 3458 | BaseExpr = LHSExp; |
| 3459 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3460 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3461 | } else if (RHSTy->isArrayType()) { |
| 3462 | // Same as previous, except for 123[f().a] case |
| 3463 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 3464 | RHSExp->getSourceRange(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3465 | RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 3466 | CK_ArrayToPointerDecay).take(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3467 | RHSTy = RHSExp->getType(); |
| 3468 | |
| 3469 | BaseExpr = RHSExp; |
| 3470 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3471 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3472 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 3473 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 3474 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3475 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3476 | // C99 6.5.2.1p1 |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 3477 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 3478 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 3479 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3480 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3481 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 3482 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 3483 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 3484 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 3485 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3486 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3487 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 3488 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3489 | // incomplete types are not object types. |
| 3490 | if (ResultType->isFunctionType()) { |
| 3491 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 3492 | << ResultType << BaseExpr->getSourceRange(); |
| 3493 | return ExprError(); |
| 3494 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3495 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3496 | if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { |
Abramo Bagnara | 4635845 | 2010-09-13 06:50:07 +0000 | [diff] [blame] | 3497 | // GNU extension: subscripting on pointer to void |
Chandler Carruth | 6628969 | 2011-06-27 16:32:27 +0000 | [diff] [blame] | 3498 | Diag(LLoc, diag::ext_gnu_subscript_void_type) |
| 3499 | << BaseExpr->getSourceRange(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3500 | |
| 3501 | // C forbids expressions of unqualified void type from being l-values. |
| 3502 | // See IsCForbiddenLValueType. |
| 3503 | if (!ResultType.hasQualifiers()) VK = VK_RValue; |
Abramo Bagnara | 4635845 | 2010-09-13 06:50:07 +0000 | [diff] [blame] | 3504 | } else if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3505 | RequireCompleteType(LLoc, ResultType, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3506 | diag::err_subscript_incomplete_type, BaseExpr)) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3507 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3508 | |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3509 | assert(VK == VK_RValue || LangOpts.CPlusPlus || |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 3510 | !ResultType.isCForbiddenLValueType()); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3511 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3512 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3513 | ResultType, VK, OK, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3514 | } |
| 3515 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3516 | ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3517 | FunctionDecl *FD, |
| 3518 | ParmVarDecl *Param) { |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3519 | if (Param->hasUnparsedDefaultArg()) { |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3520 | Diag(CallLoc, |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3521 | diag::err_use_of_default_argument_to_function_declared_later) << |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3522 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3523 | Diag(UnparsedDefaultArgLocs[Param], |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3524 | diag::note_default_argument_declared_here); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3525 | return ExprError(); |
| 3526 | } |
| 3527 | |
| 3528 | if (Param->hasUninstantiatedDefaultArg()) { |
| 3529 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3530 | |
Richard Smith | adb1d4c | 2012-07-22 23:45:10 +0000 | [diff] [blame] | 3531 | EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated, |
| 3532 | Param); |
| 3533 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3534 | // Instantiate the expression. |
| 3535 | MultiLevelTemplateArgumentList ArgList |
| 3536 | = getTemplateInstantiationArgs(FD, 0, /*RelativeToPrimary=*/true); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 3537 | |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3538 | std::pair<const TemplateArgument *, unsigned> Innermost |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3539 | = ArgList.getInnermost(); |
Richard Smith | 7e54fb5 | 2012-07-16 01:09:10 +0000 | [diff] [blame] | 3540 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 3541 | ArrayRef<TemplateArgument>(Innermost.first, |
| 3542 | Innermost.second)); |
Richard Smith | ab91ef1 | 2012-07-08 02:38:24 +0000 | [diff] [blame] | 3543 | if (Inst) |
| 3544 | return ExprError(); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3545 | |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3546 | ExprResult Result; |
| 3547 | { |
| 3548 | // C++ [dcl.fct.default]p5: |
| 3549 | // The names in the [default argument] expression are bound, and |
| 3550 | // the semantic constraints are checked, at the point where the |
| 3551 | // default argument expression appears. |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3552 | ContextRAII SavedContext(*this, FD); |
Douglas Gregor | 7bdc152 | 2012-02-16 21:36:18 +0000 | [diff] [blame] | 3553 | LocalInstantiationScope Local(*this); |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3554 | Result = SubstExpr(UninstExpr, ArgList); |
| 3555 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3556 | if (Result.isInvalid()) |
| 3557 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3558 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3559 | // Check the expression as an initializer for the parameter. |
| 3560 | InitializedEntity Entity |
Fariborz Jahanian | 745da3a | 2010-09-24 17:30:16 +0000 | [diff] [blame] | 3561 | = InitializedEntity::InitializeParameter(Context, Param); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3562 | InitializationKind Kind |
| 3563 | = InitializationKind::CreateCopy(Param->getLocation(), |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3564 | /*FIXME:EqualLoc*/UninstExpr->getLocStart()); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3565 | Expr *ResultE = Result.takeAs<Expr>(); |
Douglas Gregor | 65222e8 | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3566 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3567 | InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1); |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 3568 | Result = InitSeq.Perform(*this, Entity, Kind, ResultE); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3569 | if (Result.isInvalid()) |
| 3570 | return ExprError(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3571 | |
David Blaikie | c1c0725 | 2012-04-30 18:21:31 +0000 | [diff] [blame] | 3572 | Expr *Arg = Result.takeAs<Expr>(); |
Richard Smith | 6c3af3d | 2013-01-17 01:17:56 +0000 | [diff] [blame] | 3573 | CheckCompletedExpr(Arg, Param->getOuterLocStart()); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3574 | // Build the default argument expression. |
David Blaikie | c1c0725 | 2012-04-30 18:21:31 +0000 | [diff] [blame] | 3575 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg)); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3576 | } |
| 3577 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3578 | // If the default expression creates temporaries, we need to |
| 3579 | // push them to the current stack of expression temporaries so they'll |
| 3580 | // be properly destroyed. |
| 3581 | // FIXME: We should really be rebuilding the default argument with new |
| 3582 | // bound temporaries; see the comment in PR5810. |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 3583 | // We don't need to do that with block decls, though, because |
| 3584 | // blocks in default argument expression can never capture anything. |
| 3585 | if (isa<ExprWithCleanups>(Param->getInit())) { |
| 3586 | // Set the "needs cleanups" bit regardless of whether there are |
| 3587 | // any explicit objects. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3588 | ExprNeedsCleanups = true; |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 3589 | |
| 3590 | // Append all the objects to the cleanup list. Right now, this |
| 3591 | // should always be a no-op, because blocks in default argument |
| 3592 | // expressions should never be able to capture anything. |
| 3593 | assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && |
| 3594 | "default argument expression has capturing blocks?"); |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 3595 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3596 | |
| 3597 | // We already type-checked the argument, so we know it works. |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 3598 | // Just mark all of the declarations in this potentially-evaluated expression |
| 3599 | // as being "referenced". |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 3600 | MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), |
| 3601 | /*SkipLocalVariables=*/true); |
Douglas Gregor | 036aed1 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 3602 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param)); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3603 | } |
| 3604 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 3605 | |
| 3606 | Sema::VariadicCallType |
| 3607 | Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, |
| 3608 | Expr *Fn) { |
| 3609 | if (Proto && Proto->isVariadic()) { |
| 3610 | if (dyn_cast_or_null<CXXConstructorDecl>(FDecl)) |
| 3611 | return VariadicConstructor; |
| 3612 | else if (Fn && Fn->getType()->isBlockPointerType()) |
| 3613 | return VariadicBlock; |
| 3614 | else if (FDecl) { |
| 3615 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 3616 | if (Method->isInstance()) |
| 3617 | return VariadicMethod; |
| 3618 | } |
| 3619 | return VariadicFunction; |
| 3620 | } |
| 3621 | return VariadicDoesNotApply; |
| 3622 | } |
| 3623 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3624 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 3625 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 3626 | /// function prototype Proto. Call is the call expression itself, and |
| 3627 | /// Fn is the function expression. For a C++ member function, this |
| 3628 | /// routine does not attempt to convert the object argument. Returns |
| 3629 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3630 | bool |
| 3631 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3632 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3633 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3634 | Expr **Args, unsigned NumArgs, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3635 | SourceLocation RParenLoc, |
| 3636 | bool IsExecConfig) { |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3637 | // Bail out early if calling a builtin with custom typechecking. |
| 3638 | // We don't need to do this in the |
| 3639 | if (FDecl) |
| 3640 | if (unsigned ID = FDecl->getBuiltinID()) |
| 3641 | if (Context.BuiltinInfo.hasCustomTypechecking(ID)) |
| 3642 | return false; |
| 3643 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3644 | // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3645 | // assignment, to the types of the corresponding parameter, ... |
| 3646 | unsigned NumArgsInProto = Proto->getNumArgs(); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3647 | bool Invalid = false; |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3648 | unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto; |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3649 | unsigned FnKind = Fn->getType()->isBlockPointerType() |
| 3650 | ? 1 /* block */ |
| 3651 | : (IsExecConfig ? 3 /* kernel function (exec config) */ |
| 3652 | : 0 /* function */); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3653 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3654 | // If too few arguments are available (and we don't have default |
| 3655 | // arguments for the remaining parameters), don't make the call. |
| 3656 | if (NumArgs < NumArgsInProto) { |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3657 | if (NumArgs < MinArgs) { |
Richard Smith | f7b8056 | 2012-05-11 05:16:41 +0000 | [diff] [blame] | 3658 | if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) |
| 3659 | Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic() |
| 3660 | ? diag::err_typecheck_call_too_few_args_one |
| 3661 | : diag::err_typecheck_call_too_few_args_at_least_one) |
| 3662 | << FnKind |
| 3663 | << FDecl->getParamDecl(0) << Fn->getSourceRange(); |
| 3664 | else |
| 3665 | Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic() |
| 3666 | ? diag::err_typecheck_call_too_few_args |
| 3667 | : diag::err_typecheck_call_too_few_args_at_least) |
| 3668 | << FnKind |
| 3669 | << MinArgs << NumArgs << Fn->getSourceRange(); |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3670 | |
| 3671 | // Emit the location of the prototype. |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3672 | if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3673 | Diag(FDecl->getLocStart(), diag::note_callee_decl) |
| 3674 | << FDecl; |
| 3675 | |
| 3676 | return true; |
| 3677 | } |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3678 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3679 | } |
| 3680 | |
| 3681 | // If too many are passed and not variadic, error on the extras and drop |
| 3682 | // them. |
| 3683 | if (NumArgs > NumArgsInProto) { |
| 3684 | if (!Proto->isVariadic()) { |
Richard Smith | c608c3c | 2012-05-15 06:21:54 +0000 | [diff] [blame] | 3685 | if (NumArgsInProto == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) |
| 3686 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 3687 | MinArgs == NumArgsInProto |
| 3688 | ? diag::err_typecheck_call_too_many_args_one |
| 3689 | : diag::err_typecheck_call_too_many_args_at_most_one) |
| 3690 | << FnKind |
| 3691 | << FDecl->getParamDecl(0) << NumArgs << Fn->getSourceRange() |
| 3692 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 3693 | Args[NumArgs-1]->getLocEnd()); |
| 3694 | else |
| 3695 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 3696 | MinArgs == NumArgsInProto |
| 3697 | ? diag::err_typecheck_call_too_many_args |
| 3698 | : diag::err_typecheck_call_too_many_args_at_most) |
| 3699 | << FnKind |
| 3700 | << NumArgsInProto << NumArgs << Fn->getSourceRange() |
| 3701 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 3702 | Args[NumArgs-1]->getLocEnd()); |
Ted Kremenek | 5862f0e | 2011-04-04 17:22:27 +0000 | [diff] [blame] | 3703 | |
| 3704 | // Emit the location of the prototype. |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3705 | if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3706 | Diag(FDecl->getLocStart(), diag::note_callee_decl) |
| 3707 | << FDecl; |
Ted Kremenek | 5862f0e | 2011-04-04 17:22:27 +0000 | [diff] [blame] | 3708 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3709 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3710 | Call->setNumArgs(Context, NumArgsInProto); |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3711 | return true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3712 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3713 | } |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3714 | SmallVector<Expr *, 8> AllArgs; |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 3715 | VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); |
| 3716 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3717 | Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl, |
Fariborz Jahanian | 2fe168f | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 3718 | Proto, 0, Args, NumArgs, AllArgs, CallType); |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3719 | if (Invalid) |
| 3720 | return true; |
| 3721 | unsigned TotalNumArgs = AllArgs.size(); |
| 3722 | for (unsigned i = 0; i < TotalNumArgs; ++i) |
| 3723 | Call->setArg(i, AllArgs[i]); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3724 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3725 | return false; |
| 3726 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3727 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3728 | bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, |
| 3729 | FunctionDecl *FDecl, |
| 3730 | const FunctionProtoType *Proto, |
| 3731 | unsigned FirstProtoArg, |
| 3732 | Expr **Args, unsigned NumArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3733 | SmallVector<Expr *, 8> &AllArgs, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3734 | VariadicCallType CallType, |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 3735 | bool AllowExplicit, |
| 3736 | bool IsListInitialization) { |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3737 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 3738 | unsigned NumArgsToCheck = NumArgs; |
| 3739 | bool Invalid = false; |
| 3740 | if (NumArgs != NumArgsInProto) |
| 3741 | // Use default arguments for missing arguments |
| 3742 | NumArgsToCheck = NumArgsInProto; |
| 3743 | unsigned ArgIx = 0; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3744 | // Continue to check argument types (even if we have too few/many args). |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3745 | for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3746 | QualType ProtoArgType = Proto->getArgType(i); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3747 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3748 | Expr *Arg; |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3749 | ParmVarDecl *Param; |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3750 | if (ArgIx < NumArgs) { |
| 3751 | Arg = Args[ArgIx++]; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3752 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3753 | if (RequireCompleteType(Arg->getLocStart(), |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3754 | ProtoArgType, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 3755 | diag::err_call_incomplete_argument, Arg)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3756 | return true; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3757 | |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3758 | // Pass the argument |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3759 | Param = 0; |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3760 | if (FDecl && i < FDecl->getNumParams()) |
| 3761 | Param = FDecl->getParamDecl(i); |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 3762 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3763 | // Strip the unbridged-cast placeholder expression off, if applicable. |
| 3764 | if (Arg->getType() == Context.ARCUnbridgedCastTy && |
| 3765 | FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && |
| 3766 | (!Param || !Param->hasAttr<CFConsumedAttr>())) |
| 3767 | Arg = stripARCUnbridgedCast(Arg); |
| 3768 | |
Rafael Espindola | 8b8a09e | 2012-11-29 16:09:03 +0000 | [diff] [blame] | 3769 | InitializedEntity Entity = Param ? |
| 3770 | InitializedEntity::InitializeParameter(Context, Param, ProtoArgType) |
| 3771 | : InitializedEntity::InitializeParameter(Context, ProtoArgType, |
| 3772 | Proto->isArgConsumed(i)); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3773 | ExprResult ArgE = PerformCopyInitialization(Entity, |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3774 | SourceLocation(), |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3775 | Owned(Arg), |
Richard Smith | a4dc51b | 2013-02-05 05:52:24 +0000 | [diff] [blame] | 3776 | IsListInitialization, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3777 | AllowExplicit); |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3778 | if (ArgE.isInvalid()) |
| 3779 | return true; |
| 3780 | |
| 3781 | Arg = ArgE.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3782 | } else { |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3783 | Param = FDecl->getParamDecl(i); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3784 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3785 | ExprResult ArgExpr = |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3786 | BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3787 | if (ArgExpr.isInvalid()) |
| 3788 | return true; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3789 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3790 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3791 | } |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 3792 | |
| 3793 | // Check for array bounds violations for each argument to the call. This |
| 3794 | // check only triggers warnings when the argument isn't a more complex Expr |
| 3795 | // with its own checking, such as a BinaryOperator. |
| 3796 | CheckArrayAccess(Arg); |
| 3797 | |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3798 | // Check for violations of C99 static array rules (C99 6.7.5.3p7). |
| 3799 | CheckStaticArrayArgument(CallLoc, Param, Arg); |
| 3800 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3801 | AllArgs.push_back(Arg); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3802 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3803 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3804 | // If this is a variadic call, handle args passed through "...". |
Fariborz Jahanian | 4cd1c70 | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3805 | if (CallType != VariadicDoesNotApply) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3806 | // Assume that extern "C" functions with variadic arguments that |
| 3807 | // return __unknown_anytype aren't *really* variadic. |
| 3808 | if (Proto->getResultType() == Context.UnknownAnyTy && |
| 3809 | FDecl && FDecl->isExternC()) { |
| 3810 | for (unsigned i = ArgIx; i != NumArgs; ++i) { |
| 3811 | ExprResult arg; |
| 3812 | if (isa<ExplicitCastExpr>(Args[i]->IgnoreParens())) |
| 3813 | arg = DefaultFunctionArrayLvalueConversion(Args[i]); |
| 3814 | else |
| 3815 | arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl); |
| 3816 | Invalid |= arg.isInvalid(); |
| 3817 | AllArgs.push_back(arg.take()); |
| 3818 | } |
| 3819 | |
| 3820 | // Otherwise do argument promotion, (C99 6.5.2.2p7). |
| 3821 | } else { |
| 3822 | for (unsigned i = ArgIx; i != NumArgs; ++i) { |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 3823 | ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, |
| 3824 | FDecl); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3825 | Invalid |= Arg.isInvalid(); |
| 3826 | AllArgs.push_back(Arg.take()); |
| 3827 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3828 | } |
Ted Kremenek | 615eb7c | 2011-09-26 23:36:13 +0000 | [diff] [blame] | 3829 | |
| 3830 | // Check for array bounds violations. |
| 3831 | for (unsigned i = ArgIx; i != NumArgs; ++i) |
| 3832 | CheckArrayAccess(Args[i]); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3833 | } |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3834 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3835 | } |
| 3836 | |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3837 | static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { |
| 3838 | TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 3839 | if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>()) |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3840 | S.Diag(PVD->getLocation(), diag::note_callee_static_array) |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 3841 | << ATL.getLocalSourceRange(); |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3842 | } |
| 3843 | |
| 3844 | /// CheckStaticArrayArgument - If the given argument corresponds to a static |
| 3845 | /// array parameter, check that it is non-null, and that if it is formed by |
| 3846 | /// array-to-pointer decay, the underlying array is sufficiently large. |
| 3847 | /// |
| 3848 | /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the |
| 3849 | /// array type derivation, then for each call to the function, the value of the |
| 3850 | /// corresponding actual argument shall provide access to the first element of |
| 3851 | /// an array with at least as many elements as specified by the size expression. |
| 3852 | void |
| 3853 | Sema::CheckStaticArrayArgument(SourceLocation CallLoc, |
| 3854 | ParmVarDecl *Param, |
| 3855 | const Expr *ArgExpr) { |
| 3856 | // Static array parameters are not supported in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3857 | if (!Param || getLangOpts().CPlusPlus) |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3858 | return; |
| 3859 | |
| 3860 | QualType OrigTy = Param->getOriginalType(); |
| 3861 | |
| 3862 | const ArrayType *AT = Context.getAsArrayType(OrigTy); |
| 3863 | if (!AT || AT->getSizeModifier() != ArrayType::Static) |
| 3864 | return; |
| 3865 | |
| 3866 | if (ArgExpr->isNullPointerConstant(Context, |
| 3867 | Expr::NPC_NeverValueDependent)) { |
| 3868 | Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); |
| 3869 | DiagnoseCalleeStaticArrayParam(*this, Param); |
| 3870 | return; |
| 3871 | } |
| 3872 | |
| 3873 | const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); |
| 3874 | if (!CAT) |
| 3875 | return; |
| 3876 | |
| 3877 | const ConstantArrayType *ArgCAT = |
| 3878 | Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); |
| 3879 | if (!ArgCAT) |
| 3880 | return; |
| 3881 | |
| 3882 | if (ArgCAT->getSize().ult(CAT->getSize())) { |
| 3883 | Diag(CallLoc, diag::warn_static_array_too_small) |
| 3884 | << ArgExpr->getSourceRange() |
| 3885 | << (unsigned) ArgCAT->getSize().getZExtValue() |
| 3886 | << (unsigned) CAT->getSize().getZExtValue(); |
| 3887 | DiagnoseCalleeStaticArrayParam(*this, Param); |
| 3888 | } |
| 3889 | } |
| 3890 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3891 | /// Given a function expression of unknown-any type, try to rebuild it |
| 3892 | /// to have a function type. |
| 3893 | static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); |
| 3894 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3895 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3896 | /// This provides the location of the left/right parens and a list of comma |
| 3897 | /// locations. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3898 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3899 | Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3900 | MultiExprArg ArgExprs, SourceLocation RParenLoc, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3901 | Expr *ExecConfig, bool IsExecConfig) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3902 | // Since this might be a postfix expression, get rid of ParenListExprs. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3903 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3904 | if (Result.isInvalid()) return ExprError(); |
| 3905 | Fn = Result.take(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3906 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3907 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3908 | // If this is a pseudo-destructor expression, build the call immediately. |
| 3909 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3910 | if (!ArgExprs.empty()) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3911 | // Pseudo-destructor calls should not have any arguments. |
| 3912 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 3913 | << FixItHint::CreateRemoval( |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3914 | SourceRange(ArgExprs[0]->getLocStart(), |
| 3915 | ArgExprs.back()->getLocEnd())); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3916 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3917 | |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3918 | return Owned(new (Context) CallExpr(Context, Fn, MultiExprArg(), |
| 3919 | Context.VoidTy, VK_RValue, |
| 3920 | RParenLoc)); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3921 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3922 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3923 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3924 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3925 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 3926 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3927 | bool Dependent = false; |
| 3928 | if (Fn->isTypeDependent()) |
| 3929 | Dependent = true; |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3930 | else if (Expr::hasAnyTypeDependentArguments(ArgExprs)) |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3931 | Dependent = true; |
| 3932 | |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3933 | if (Dependent) { |
| 3934 | if (ExecConfig) { |
| 3935 | return Owned(new (Context) CUDAKernelCallExpr( |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3936 | Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs, |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3937 | Context.DependentTy, VK_RValue, RParenLoc)); |
| 3938 | } else { |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3939 | return Owned(new (Context) CallExpr(Context, Fn, ArgExprs, |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3940 | Context.DependentTy, VK_RValue, |
| 3941 | RParenLoc)); |
| 3942 | } |
| 3943 | } |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3944 | |
| 3945 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 3946 | if (Fn->getType()->isRecordType()) |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3947 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, |
| 3948 | ArgExprs.data(), |
| 3949 | ArgExprs.size(), RParenLoc)); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3950 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3951 | if (Fn->getType() == Context.UnknownAnyTy) { |
| 3952 | ExprResult result = rebuildUnknownAnyFunction(*this, Fn); |
| 3953 | if (result.isInvalid()) return ExprError(); |
| 3954 | Fn = result.take(); |
| 3955 | } |
| 3956 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3957 | if (Fn->getType() == Context.BoundMemberTy) { |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3958 | return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs.data(), |
| 3959 | ArgExprs.size(), RParenLoc); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3960 | } |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3961 | } |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3962 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3963 | // Check for overloaded calls. This can happen even in C due to extensions. |
| 3964 | if (Fn->getType() == Context.OverloadTy) { |
| 3965 | OverloadExpr::FindResult find = OverloadExpr::find(Fn); |
| 3966 | |
Douglas Gregor | ee697e6 | 2011-10-13 18:10:35 +0000 | [diff] [blame] | 3967 | // We aren't supposed to apply this logic for if there's an '&' involved. |
Douglas Gregor | 64a371f | 2011-10-13 18:26:27 +0000 | [diff] [blame] | 3968 | if (!find.HasFormOfMemberPointer) { |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3969 | OverloadExpr *ovl = find.Expression; |
| 3970 | if (isa<UnresolvedLookupExpr>(ovl)) { |
| 3971 | UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3972 | return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs.data(), |
| 3973 | ArgExprs.size(), RParenLoc, ExecConfig); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3974 | } else { |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 3975 | return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs.data(), |
| 3976 | ArgExprs.size(), RParenLoc); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3977 | } |
| 3978 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3979 | } |
| 3980 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 3981 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | f1d1ca5 | 2011-12-01 01:37:36 +0000 | [diff] [blame] | 3982 | if (Fn->getType() == Context.UnknownAnyTy) { |
| 3983 | ExprResult result = rebuildUnknownAnyFunction(*this, Fn); |
| 3984 | if (result.isInvalid()) return ExprError(); |
| 3985 | Fn = result.take(); |
| 3986 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3987 | |
Eli Friedman | efa42f7 | 2009-12-26 03:35:45 +0000 | [diff] [blame] | 3988 | Expr *NakedFn = Fn->IgnoreParens(); |
Douglas Gregor | ef9b149 | 2010-11-09 20:03:54 +0000 | [diff] [blame] | 3989 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3990 | NamedDecl *NDecl = 0; |
Douglas Gregor | d8f0ade | 2010-10-25 20:48:33 +0000 | [diff] [blame] | 3991 | if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) |
| 3992 | if (UnOp->getOpcode() == UO_AddrOf) |
| 3993 | NakedFn = UnOp->getSubExpr()->IgnoreParens(); |
| 3994 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3995 | if (isa<DeclRefExpr>(NakedFn)) |
| 3996 | NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3997 | else if (isa<MemberExpr>(NakedFn)) |
| 3998 | NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3999 | |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4000 | return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs.data(), |
| 4001 | ArgExprs.size(), RParenLoc, ExecConfig, |
| 4002 | IsExecConfig); |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4003 | } |
| 4004 | |
| 4005 | ExprResult |
| 4006 | Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4007 | MultiExprArg ExecConfig, SourceLocation GGGLoc) { |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4008 | FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl(); |
| 4009 | if (!ConfigDecl) |
| 4010 | return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use) |
| 4011 | << "cudaConfigureCall"); |
| 4012 | QualType ConfigQTy = ConfigDecl->getType(); |
| 4013 | |
| 4014 | DeclRefExpr *ConfigDR = new (Context) DeclRefExpr( |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 4015 | ConfigDecl, false, ConfigQTy, VK_LValue, LLLLoc); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 4016 | MarkFunctionReferenced(LLLLoc, ConfigDecl); |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4017 | |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 4018 | return ActOnCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, 0, |
| 4019 | /*IsExecConfig=*/true); |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 4020 | } |
| 4021 | |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 4022 | /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. |
| 4023 | /// |
| 4024 | /// __builtin_astype( value, dst type ) |
| 4025 | /// |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4026 | ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 4027 | SourceLocation BuiltinLoc, |
| 4028 | SourceLocation RParenLoc) { |
| 4029 | ExprValueKind VK = VK_RValue; |
| 4030 | ExprObjectKind OK = OK_Ordinary; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4031 | QualType DstTy = GetTypeFromParser(ParsedDestTy); |
| 4032 | QualType SrcTy = E->getType(); |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 4033 | if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) |
| 4034 | return ExprError(Diag(BuiltinLoc, |
| 4035 | diag::err_invalid_astype_of_different_size) |
Peter Collingbourne | af9cddf | 2011-06-08 15:15:17 +0000 | [diff] [blame] | 4036 | << DstTy |
| 4037 | << SrcTy |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4038 | << E->getSourceRange()); |
| 4039 | return Owned(new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4040 | RParenLoc)); |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 4041 | } |
| 4042 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 4043 | /// BuildResolvedCallExpr - Build a call to a resolved expression, |
| 4044 | /// i.e. an expression not of \p OverloadTy. The expression should |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 4045 | /// unary-convert to an expression of function-pointer or |
| 4046 | /// block-pointer type. |
| 4047 | /// |
| 4048 | /// \param NDecl the declaration being called, if available |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4049 | ExprResult |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 4050 | Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, |
| 4051 | SourceLocation LParenLoc, |
| 4052 | Expr **Args, unsigned NumArgs, |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4053 | SourceLocation RParenLoc, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 4054 | Expr *Config, bool IsExecConfig) { |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 4055 | FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); |
Eli Friedman | a6c66ce | 2012-08-31 00:14:07 +0000 | [diff] [blame] | 4056 | unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 4057 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4058 | // Promote the function operand. |
Eli Friedman | a6c66ce | 2012-08-31 00:14:07 +0000 | [diff] [blame] | 4059 | // We special-case function promotion here because we only allow promoting |
| 4060 | // builtin functions to function pointers in the callee of a call. |
| 4061 | ExprResult Result; |
| 4062 | if (BuiltinID && |
| 4063 | Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) { |
| 4064 | Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()), |
| 4065 | CK_BuiltinFnToFnPtr).take(); |
| 4066 | } else { |
| 4067 | Result = UsualUnaryConversions(Fn); |
| 4068 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4069 | if (Result.isInvalid()) |
| 4070 | return ExprError(); |
| 4071 | Fn = Result.take(); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 4072 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4073 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 4074 | // of arguments and function on error. |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4075 | CallExpr *TheCall; |
Eric Christopher | a27cb25 | 2012-05-30 01:14:28 +0000 | [diff] [blame] | 4076 | if (Config) |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4077 | TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, |
| 4078 | cast<CallExpr>(Config), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4079 | llvm::makeArrayRef(Args,NumArgs), |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4080 | Context.BoolTy, |
| 4081 | VK_RValue, |
| 4082 | RParenLoc); |
Eric Christopher | a27cb25 | 2012-05-30 01:14:28 +0000 | [diff] [blame] | 4083 | else |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4084 | TheCall = new (Context) CallExpr(Context, Fn, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4085 | llvm::makeArrayRef(Args, NumArgs), |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4086 | Context.BoolTy, |
| 4087 | VK_RValue, |
| 4088 | RParenLoc); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4089 | |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 4090 | // Bail out early if calling a builtin with custom typechecking. |
| 4091 | if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) |
| 4092 | return CheckBuiltinFunctionCall(BuiltinID, TheCall); |
| 4093 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 4094 | retry: |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 4095 | const FunctionType *FuncT; |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 4096 | if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 4097 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 4098 | // have type pointer to function". |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4099 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 4100 | if (FuncT == 0) |
| 4101 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 4102 | << Fn->getType() << Fn->getSourceRange()); |
| 4103 | } else if (const BlockPointerType *BPT = |
| 4104 | Fn->getType()->getAs<BlockPointerType>()) { |
| 4105 | FuncT = BPT->getPointeeType()->castAs<FunctionType>(); |
| 4106 | } else { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 4107 | // Handle calls to expressions of unknown-any type. |
| 4108 | if (Fn->getType() == Context.UnknownAnyTy) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 4109 | ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 4110 | if (rewrite.isInvalid()) return ExprError(); |
| 4111 | Fn = rewrite.take(); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 4112 | TheCall->setCallee(Fn); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 4113 | goto retry; |
| 4114 | } |
| 4115 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4116 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 4117 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 4118 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4119 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4120 | if (getLangOpts().CUDA) { |
Peter Collingbourne | 0423fc6 | 2011-02-23 01:53:29 +0000 | [diff] [blame] | 4121 | if (Config) { |
| 4122 | // CUDA: Kernel calls must be to global functions |
| 4123 | if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) |
| 4124 | return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) |
| 4125 | << FDecl->getName() << Fn->getSourceRange()); |
| 4126 | |
| 4127 | // CUDA: Kernel function must have 'void' return type |
| 4128 | if (!FuncT->getResultType()->isVoidType()) |
| 4129 | return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) |
| 4130 | << Fn->getType() << Fn->getSourceRange()); |
Peter Collingbourne | 8591a7f | 2011-10-02 23:49:15 +0000 | [diff] [blame] | 4131 | } else { |
| 4132 | // CUDA: Calls to global functions must be configured |
| 4133 | if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) |
| 4134 | return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) |
| 4135 | << FDecl->getName() << Fn->getSourceRange()); |
Peter Collingbourne | 0423fc6 | 2011-02-23 01:53:29 +0000 | [diff] [blame] | 4136 | } |
| 4137 | } |
| 4138 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 4139 | // Check for a valid return type |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4140 | if (CheckCallReturnType(FuncT->getResultType(), |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 4141 | Fn->getLocStart(), TheCall, |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 4142 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 4143 | return ExprError(); |
| 4144 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4145 | // We know the result type of the call, set it. |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 4146 | TheCall->setType(FuncT->getCallResultType(Context)); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4147 | TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType())); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4148 | |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 4149 | const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT); |
| 4150 | if (Proto) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4151 | if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 4152 | RParenLoc, IsExecConfig)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4153 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4154 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 4155 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4156 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 4157 | if (FDecl) { |
| 4158 | // Check if we have too few/too many template arguments, based |
| 4159 | // on our knowledge of the function definition. |
| 4160 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 4161 | if (FDecl->hasBody(Def) && NumArgs != Def->param_size()) { |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 4162 | Proto = Def->getType()->getAs<FunctionProtoType>(); |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4163 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 4164 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 4165 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 4166 | } |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4167 | |
| 4168 | // If the function we're calling isn't a function prototype, but we have |
| 4169 | // a function prototype from a prior declaratiom, use that prototype. |
| 4170 | if (!FDecl->hasPrototype()) |
| 4171 | Proto = FDecl->getType()->getAs<FunctionProtoType>(); |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 4172 | } |
| 4173 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 4174 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4175 | for (unsigned i = 0; i != NumArgs; i++) { |
| 4176 | Expr *Arg = Args[i]; |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4177 | |
| 4178 | if (Proto && i < Proto->getNumArgs()) { |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4179 | InitializedEntity Entity |
| 4180 | = InitializedEntity::InitializeParameter(Context, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4181 | Proto->getArgType(i), |
| 4182 | Proto->isArgConsumed(i)); |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4183 | ExprResult ArgE = PerformCopyInitialization(Entity, |
| 4184 | SourceLocation(), |
| 4185 | Owned(Arg)); |
| 4186 | if (ArgE.isInvalid()) |
| 4187 | return true; |
| 4188 | |
| 4189 | Arg = ArgE.takeAs<Expr>(); |
| 4190 | |
| 4191 | } else { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4192 | ExprResult ArgE = DefaultArgumentPromotion(Arg); |
| 4193 | |
| 4194 | if (ArgE.isInvalid()) |
| 4195 | return true; |
| 4196 | |
| 4197 | Arg = ArgE.takeAs<Expr>(); |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 4198 | } |
| 4199 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 4200 | if (RequireCompleteType(Arg->getLocStart(), |
Douglas Gregor | 0700bbf | 2010-10-26 05:45:40 +0000 | [diff] [blame] | 4201 | Arg->getType(), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4202 | diag::err_call_incomplete_argument, Arg)) |
Douglas Gregor | 0700bbf | 2010-10-26 05:45:40 +0000 | [diff] [blame] | 4203 | return ExprError(); |
| 4204 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4205 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 4206 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4207 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 4208 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 4209 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 4210 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 4211 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 4212 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 4213 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 4214 | // Check for sentinels |
| 4215 | if (NDecl) |
| 4216 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4217 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 4218 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 4219 | if (FDecl) { |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 4220 | if (CheckFunctionCall(FDecl, TheCall, Proto)) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 4221 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4222 | |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 4223 | if (BuiltinID) |
Fariborz Jahanian | 67aba81 | 2010-11-30 17:35:24 +0000 | [diff] [blame] | 4224 | return CheckBuiltinFunctionCall(BuiltinID, TheCall); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 4225 | } else if (NDecl) { |
Richard Smith | 831421f | 2012-06-25 20:30:08 +0000 | [diff] [blame] | 4226 | if (CheckBlockCall(NDecl, TheCall, Proto)) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 4227 | return ExprError(); |
| 4228 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 4229 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4230 | return MaybeBindToTemporary(TheCall); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4231 | } |
| 4232 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4233 | ExprResult |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 4234 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4235 | SourceLocation RParenLoc, Expr *InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4236 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 4237 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 4238 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 4239 | |
| 4240 | TypeSourceInfo *TInfo; |
| 4241 | QualType literalType = GetTypeFromParser(Ty, &TInfo); |
| 4242 | if (!TInfo) |
| 4243 | TInfo = Context.getTrivialTypeSourceInfo(literalType); |
| 4244 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4245 | return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 4246 | } |
| 4247 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4248 | ExprResult |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 4249 | Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4250 | SourceLocation RParenLoc, Expr *LiteralExpr) { |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 4251 | QualType literalType = TInfo->getType(); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 4252 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 4253 | if (literalType->isArrayType()) { |
Argyrios Kyrtzidis | e6fe9a2 | 2010-11-08 19:14:19 +0000 | [diff] [blame] | 4254 | if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4255 | diag::err_illegal_decl_array_incomplete_type, |
| 4256 | SourceRange(LParenLoc, |
| 4257 | LiteralExpr->getSourceRange().getEnd()))) |
Argyrios Kyrtzidis | e6fe9a2 | 2010-11-08 19:14:19 +0000 | [diff] [blame] | 4258 | return ExprError(); |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 4259 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4260 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4261 | << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 4262 | } else if (!literalType->isDependentType() && |
| 4263 | RequireCompleteType(LParenLoc, literalType, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 4264 | diag::err_typecheck_decl_incomplete_type, |
| 4265 | SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4266 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 4267 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4268 | InitializedEntity Entity |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 4269 | = InitializedEntity::InitializeTemporary(literalType); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 4270 | InitializationKind Kind |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4271 | = InitializationKind::CreateCStyleCast(LParenLoc, |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 4272 | SourceRange(LParenLoc, RParenLoc), |
| 4273 | /*InitList=*/true); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4274 | InitializationSequence InitSeq(*this, Entity, Kind, &LiteralExpr, 1); |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 4275 | ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, |
| 4276 | &literalType); |
Eli Friedman | 0854462 | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 4277 | if (Result.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4278 | return ExprError(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4279 | LiteralExpr = Result.get(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 4280 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 4281 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 4282 | if (isFileScope) { // 6.5.2.5p3 |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4283 | if (CheckForConstantInitializer(LiteralExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4284 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 4285 | } |
Eli Friedman | 0854462 | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 4286 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4287 | // In C, compound literals are l-values for some reason. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4288 | ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4289 | |
Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame] | 4290 | return MaybeBindToTemporary( |
| 4291 | new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4292 | VK, LiteralExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 4293 | } |
| 4294 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4295 | ExprResult |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4296 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4297 | SourceLocation RBraceLoc) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 4298 | // Immediately handle non-overload placeholders. Overloads can be |
| 4299 | // resolved contextually, but everything else here can't. |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4300 | for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { |
| 4301 | if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) { |
| 4302 | ExprResult result = CheckPlaceholderExpr(InitArgList[I]); |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 4303 | |
| 4304 | // Ignore failures; dropping the entire initializer list because |
| 4305 | // of one failure would be terrible for indexing/etc. |
| 4306 | if (result.isInvalid()) continue; |
| 4307 | |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4308 | InitArgList[I] = result.take(); |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 4309 | } |
| 4310 | } |
| 4311 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 4312 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4313 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4314 | |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4315 | InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList, |
| 4316 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4317 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4318 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 4319 | } |
| 4320 | |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4321 | /// Do an explicit extend of the given block pointer if we're in ARC. |
| 4322 | static void maybeExtendBlockObject(Sema &S, ExprResult &E) { |
| 4323 | assert(E.get()->getType()->isBlockPointerType()); |
| 4324 | assert(E.get()->isRValue()); |
| 4325 | |
| 4326 | // Only do this in an r-value context. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4327 | if (!S.getLangOpts().ObjCAutoRefCount) return; |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4328 | |
| 4329 | E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4330 | CK_ARCExtendBlockObject, E.get(), |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4331 | /*base path*/ 0, VK_RValue); |
| 4332 | S.ExprNeedsCleanups = true; |
| 4333 | } |
| 4334 | |
| 4335 | /// Prepare a conversion of the given expression to an ObjC object |
| 4336 | /// pointer type. |
| 4337 | CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { |
| 4338 | QualType type = E.get()->getType(); |
| 4339 | if (type->isObjCObjectPointerType()) { |
| 4340 | return CK_BitCast; |
| 4341 | } else if (type->isBlockPointerType()) { |
| 4342 | maybeExtendBlockObject(*this, E); |
| 4343 | return CK_BlockPointerToObjCPointerCast; |
| 4344 | } else { |
| 4345 | assert(type->isPointerType()); |
| 4346 | return CK_CPointerToObjCPointerCast; |
| 4347 | } |
| 4348 | } |
| 4349 | |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4350 | /// Prepares for a scalar cast, performing all the necessary stages |
| 4351 | /// except the final cast and returning the kind required. |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4352 | CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4353 | // Both Src and Dest are scalar types, i.e. arithmetic or pointer. |
| 4354 | // Also, callers should have filtered out the invalid cases with |
| 4355 | // pointers. Everything else should be possible. |
| 4356 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4357 | QualType SrcTy = Src.get()->getType(); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4358 | if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4359 | return CK_NoOp; |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4360 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4361 | switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4362 | case Type::STK_MemberPointer: |
| 4363 | llvm_unreachable("member pointer type in C"); |
Abramo Bagnara | bb03f5d | 2011-01-04 09:50:03 +0000 | [diff] [blame] | 4364 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4365 | case Type::STK_CPointer: |
| 4366 | case Type::STK_BlockPointer: |
| 4367 | case Type::STK_ObjCObjectPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4368 | switch (DestTy->getScalarTypeKind()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4369 | case Type::STK_CPointer: |
| 4370 | return CK_BitCast; |
| 4371 | case Type::STK_BlockPointer: |
| 4372 | return (SrcKind == Type::STK_BlockPointer |
| 4373 | ? CK_BitCast : CK_AnyPointerToBlockPointerCast); |
| 4374 | case Type::STK_ObjCObjectPointer: |
| 4375 | if (SrcKind == Type::STK_ObjCObjectPointer) |
| 4376 | return CK_BitCast; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4377 | if (SrcKind == Type::STK_CPointer) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4378 | return CK_CPointerToObjCPointerCast; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4379 | maybeExtendBlockObject(*this, Src); |
| 4380 | return CK_BlockPointerToObjCPointerCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4381 | case Type::STK_Bool: |
| 4382 | return CK_PointerToBoolean; |
| 4383 | case Type::STK_Integral: |
| 4384 | return CK_PointerToIntegral; |
| 4385 | case Type::STK_Floating: |
| 4386 | case Type::STK_FloatingComplex: |
| 4387 | case Type::STK_IntegralComplex: |
| 4388 | case Type::STK_MemberPointer: |
| 4389 | llvm_unreachable("illegal cast from pointer"); |
| 4390 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4391 | llvm_unreachable("Should have returned before this"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4392 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4393 | case Type::STK_Bool: // casting from bool is like casting from an integer |
| 4394 | case Type::STK_Integral: |
| 4395 | switch (DestTy->getScalarTypeKind()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4396 | case Type::STK_CPointer: |
| 4397 | case Type::STK_ObjCObjectPointer: |
| 4398 | case Type::STK_BlockPointer: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4399 | if (Src.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4400 | Expr::NPC_ValueDependentIsNull)) |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 4401 | return CK_NullToPointer; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4402 | return CK_IntegralToPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4403 | case Type::STK_Bool: |
| 4404 | return CK_IntegralToBoolean; |
| 4405 | case Type::STK_Integral: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4406 | return CK_IntegralCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4407 | case Type::STK_Floating: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4408 | return CK_IntegralToFloating; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4409 | case Type::STK_IntegralComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4410 | Src = ImpCastExprToType(Src.take(), |
| 4411 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4412 | CK_IntegralCast); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4413 | return CK_IntegralRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4414 | case Type::STK_FloatingComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4415 | Src = ImpCastExprToType(Src.take(), |
| 4416 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4417 | CK_IntegralToFloating); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4418 | return CK_FloatingRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4419 | case Type::STK_MemberPointer: |
| 4420 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4421 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4422 | llvm_unreachable("Should have returned before this"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4423 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4424 | case Type::STK_Floating: |
| 4425 | switch (DestTy->getScalarTypeKind()) { |
| 4426 | case Type::STK_Floating: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4427 | return CK_FloatingCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4428 | case Type::STK_Bool: |
| 4429 | return CK_FloatingToBoolean; |
| 4430 | case Type::STK_Integral: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4431 | return CK_FloatingToIntegral; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4432 | case Type::STK_FloatingComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4433 | Src = ImpCastExprToType(Src.take(), |
| 4434 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4435 | CK_FloatingCast); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4436 | return CK_FloatingRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4437 | case Type::STK_IntegralComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4438 | Src = ImpCastExprToType(Src.take(), |
| 4439 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4440 | CK_FloatingToIntegral); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4441 | return CK_IntegralRealToComplex; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4442 | case Type::STK_CPointer: |
| 4443 | case Type::STK_ObjCObjectPointer: |
| 4444 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4445 | llvm_unreachable("valid float->pointer cast?"); |
| 4446 | case Type::STK_MemberPointer: |
| 4447 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4448 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4449 | llvm_unreachable("Should have returned before this"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4450 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4451 | case Type::STK_FloatingComplex: |
| 4452 | switch (DestTy->getScalarTypeKind()) { |
| 4453 | case Type::STK_FloatingComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4454 | return CK_FloatingComplexCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4455 | case Type::STK_IntegralComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4456 | return CK_FloatingComplexToIntegralComplex; |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4457 | case Type::STK_Floating: { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4458 | QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); |
| 4459 | if (Context.hasSameType(ET, DestTy)) |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4460 | return CK_FloatingComplexToReal; |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4461 | Src = ImpCastExprToType(Src.take(), ET, CK_FloatingComplexToReal); |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4462 | return CK_FloatingCast; |
| 4463 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4464 | case Type::STK_Bool: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4465 | return CK_FloatingComplexToBoolean; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4466 | case Type::STK_Integral: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4467 | Src = ImpCastExprToType(Src.take(), |
| 4468 | SrcTy->castAs<ComplexType>()->getElementType(), |
| 4469 | CK_FloatingComplexToReal); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4470 | return CK_FloatingToIntegral; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4471 | case Type::STK_CPointer: |
| 4472 | case Type::STK_ObjCObjectPointer: |
| 4473 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4474 | llvm_unreachable("valid complex float->pointer cast?"); |
| 4475 | case Type::STK_MemberPointer: |
| 4476 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4477 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4478 | llvm_unreachable("Should have returned before this"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4479 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4480 | case Type::STK_IntegralComplex: |
| 4481 | switch (DestTy->getScalarTypeKind()) { |
| 4482 | case Type::STK_FloatingComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4483 | return CK_IntegralComplexToFloatingComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4484 | case Type::STK_IntegralComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4485 | return CK_IntegralComplexCast; |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4486 | case Type::STK_Integral: { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4487 | QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); |
| 4488 | if (Context.hasSameType(ET, DestTy)) |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4489 | return CK_IntegralComplexToReal; |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4490 | Src = ImpCastExprToType(Src.take(), ET, CK_IntegralComplexToReal); |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4491 | return CK_IntegralCast; |
| 4492 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4493 | case Type::STK_Bool: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4494 | return CK_IntegralComplexToBoolean; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4495 | case Type::STK_Floating: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4496 | Src = ImpCastExprToType(Src.take(), |
| 4497 | SrcTy->castAs<ComplexType>()->getElementType(), |
| 4498 | CK_IntegralComplexToReal); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4499 | return CK_IntegralToFloating; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4500 | case Type::STK_CPointer: |
| 4501 | case Type::STK_ObjCObjectPointer: |
| 4502 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4503 | llvm_unreachable("valid complex int->pointer cast?"); |
| 4504 | case Type::STK_MemberPointer: |
| 4505 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4506 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4507 | llvm_unreachable("Should have returned before this"); |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4508 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4509 | |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4510 | llvm_unreachable("Unhandled scalar cast"); |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4511 | } |
| 4512 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 4513 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4514 | CastKind &Kind) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4515 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4516 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4517 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 4518 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4519 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4520 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4521 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4522 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4523 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4524 | } else |
| 4525 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4526 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4527 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4528 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4529 | Kind = CK_BitCast; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4530 | return false; |
| 4531 | } |
| 4532 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4533 | ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, |
| 4534 | Expr *CastExpr, CastKind &Kind) { |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4535 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4536 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 4537 | QualType SrcTy = CastExpr->getType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4538 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 4539 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 4540 | // an ExtVectorType. |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4541 | // In OpenCL, casts between vectors of different types are not allowed. |
| 4542 | // (See OpenCL 6.2). |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4543 | if (SrcTy->isVectorType()) { |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4544 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4545 | || (getLangOpts().OpenCL && |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4546 | (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4547 | Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4548 | << DestTy << SrcTy << R; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4549 | return ExprError(); |
| 4550 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4551 | Kind = CK_BitCast; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4552 | return Owned(CastExpr); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4553 | } |
| 4554 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4555 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4556 | // conversion will take place first from scalar to elt type, and then |
| 4557 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4558 | if (SrcTy->isPointerType()) |
| 4559 | return Diag(R.getBegin(), |
| 4560 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 4561 | << DestTy << SrcTy << R; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4562 | |
| 4563 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4564 | ExprResult CastExprRes = Owned(CastExpr); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4565 | CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4566 | if (CastExprRes.isInvalid()) |
| 4567 | return ExprError(); |
| 4568 | CastExpr = ImpCastExprToType(CastExprRes.take(), DestElemTy, CK).take(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4569 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4570 | Kind = CK_VectorSplat; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4571 | return Owned(CastExpr); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4572 | } |
| 4573 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4574 | ExprResult |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4575 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, |
| 4576 | Declarator &D, ParsedType &Ty, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4577 | SourceLocation RParenLoc, Expr *CastExpr) { |
| 4578 | assert(!D.isInvalidType() && (CastExpr != 0) && |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4579 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 4580 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4581 | TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4582 | if (D.isInvalidType()) |
| 4583 | return ExprError(); |
| 4584 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4585 | if (getLangOpts().CPlusPlus) { |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4586 | // Check that there are no default arguments (C++ only). |
| 4587 | CheckExtraCXXDefaultArguments(D); |
| 4588 | } |
| 4589 | |
John McCall | e82247a | 2011-10-01 05:17:03 +0000 | [diff] [blame] | 4590 | checkUnusedDeclAttributes(D); |
| 4591 | |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4592 | QualType castType = castTInfo->getType(); |
| 4593 | Ty = CreateParsedType(castType, castTInfo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4594 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4595 | bool isVectorLiteral = false; |
| 4596 | |
| 4597 | // Check for an altivec or OpenCL literal, |
| 4598 | // i.e. all the elements are integer constants. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4599 | ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); |
| 4600 | ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4601 | if ((getLangOpts().AltiVec || getLangOpts().OpenCL) |
Tobias Grosser | 37c31c2 | 2011-09-21 18:28:29 +0000 | [diff] [blame] | 4602 | && castType->isVectorType() && (PE || PLE)) { |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4603 | if (PLE && PLE->getNumExprs() == 0) { |
| 4604 | Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 4605 | return ExprError(); |
| 4606 | } |
| 4607 | if (PE || PLE->getNumExprs() == 1) { |
| 4608 | Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); |
| 4609 | if (!E->getType()->isVectorType()) |
| 4610 | isVectorLiteral = true; |
| 4611 | } |
| 4612 | else |
| 4613 | isVectorLiteral = true; |
| 4614 | } |
| 4615 | |
| 4616 | // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' |
| 4617 | // then handle it as such. |
| 4618 | if (isVectorLiteral) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4619 | return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4620 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4621 | // If the Expr being casted is a ParenListExpr, handle it specially. |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4622 | // This is not an AltiVec-style cast, so turn the ParenListExpr into a |
| 4623 | // sequence of BinOp comma operators. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4624 | if (isa<ParenListExpr>(CastExpr)) { |
| 4625 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4626 | if (Result.isInvalid()) return ExprError(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4627 | CastExpr = Result.take(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4628 | } |
John McCall | b042fdf | 2010-01-15 18:56:44 +0000 | [diff] [blame] | 4629 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4630 | return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); |
John McCall | b042fdf | 2010-01-15 18:56:44 +0000 | [diff] [blame] | 4631 | } |
| 4632 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4633 | ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, |
| 4634 | SourceLocation RParenLoc, Expr *E, |
| 4635 | TypeSourceInfo *TInfo) { |
| 4636 | assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && |
| 4637 | "Expected paren or paren list expression"); |
| 4638 | |
| 4639 | Expr **exprs; |
| 4640 | unsigned numExprs; |
| 4641 | Expr *subExpr; |
Richard Smith | afbcab8 | 2013-02-05 05:55:57 +0000 | [diff] [blame] | 4642 | SourceLocation LiteralLParenLoc, LiteralRParenLoc; |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4643 | if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { |
Richard Smith | afbcab8 | 2013-02-05 05:55:57 +0000 | [diff] [blame] | 4644 | LiteralLParenLoc = PE->getLParenLoc(); |
| 4645 | LiteralRParenLoc = PE->getRParenLoc(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4646 | exprs = PE->getExprs(); |
| 4647 | numExprs = PE->getNumExprs(); |
Richard Smith | afbcab8 | 2013-02-05 05:55:57 +0000 | [diff] [blame] | 4648 | } else { // isa<ParenExpr> by assertion at function entrance |
| 4649 | LiteralLParenLoc = cast<ParenExpr>(E)->getLParen(); |
| 4650 | LiteralRParenLoc = cast<ParenExpr>(E)->getRParen(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4651 | subExpr = cast<ParenExpr>(E)->getSubExpr(); |
| 4652 | exprs = &subExpr; |
| 4653 | numExprs = 1; |
| 4654 | } |
| 4655 | |
| 4656 | QualType Ty = TInfo->getType(); |
| 4657 | assert(Ty->isVectorType() && "Expected vector type"); |
| 4658 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4659 | SmallVector<Expr *, 8> initExprs; |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4660 | const VectorType *VTy = Ty->getAs<VectorType>(); |
| 4661 | unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); |
| 4662 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4663 | // '(...)' form of vector initialization in AltiVec: the number of |
| 4664 | // initializers must be one or must match the size of the vector. |
| 4665 | // If a single value is specified in the initializer then it will be |
| 4666 | // replicated to all the components of the vector |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4667 | if (VTy->getVectorKind() == VectorType::AltiVecVector) { |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4668 | // The number of initializers must be one or must match the size of the |
| 4669 | // vector. If a single value is specified in the initializer then it will |
| 4670 | // be replicated to all the components of the vector |
| 4671 | if (numExprs == 1) { |
| 4672 | QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); |
Richard Smith | 61ffd09 | 2011-10-27 23:31:58 +0000 | [diff] [blame] | 4673 | ExprResult Literal = DefaultLvalueConversion(exprs[0]); |
| 4674 | if (Literal.isInvalid()) |
| 4675 | return ExprError(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4676 | Literal = ImpCastExprToType(Literal.take(), ElemTy, |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4677 | PrepareScalarCast(Literal, ElemTy)); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4678 | return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); |
| 4679 | } |
| 4680 | else if (numExprs < numElems) { |
| 4681 | Diag(E->getExprLoc(), |
| 4682 | diag::err_incorrect_number_of_vector_initializers); |
| 4683 | return ExprError(); |
| 4684 | } |
| 4685 | else |
Benjamin Kramer | 14c5982 | 2012-02-14 12:06:21 +0000 | [diff] [blame] | 4686 | initExprs.append(exprs, exprs + numExprs); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4687 | } |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4688 | else { |
| 4689 | // For OpenCL, when the number of initializers is a single value, |
| 4690 | // it will be replicated to all components of the vector. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4691 | if (getLangOpts().OpenCL && |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4692 | VTy->getVectorKind() == VectorType::GenericVector && |
| 4693 | numExprs == 1) { |
| 4694 | QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); |
Richard Smith | 61ffd09 | 2011-10-27 23:31:58 +0000 | [diff] [blame] | 4695 | ExprResult Literal = DefaultLvalueConversion(exprs[0]); |
| 4696 | if (Literal.isInvalid()) |
| 4697 | return ExprError(); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4698 | Literal = ImpCastExprToType(Literal.take(), ElemTy, |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4699 | PrepareScalarCast(Literal, ElemTy)); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4700 | return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); |
| 4701 | } |
| 4702 | |
Benjamin Kramer | 14c5982 | 2012-02-14 12:06:21 +0000 | [diff] [blame] | 4703 | initExprs.append(exprs, exprs + numExprs); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4704 | } |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4705 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 4706 | // braces instead of the original commas. |
Richard Smith | afbcab8 | 2013-02-05 05:55:57 +0000 | [diff] [blame] | 4707 | InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc, |
| 4708 | initExprs, LiteralRParenLoc); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4709 | initE->setType(Ty); |
| 4710 | return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); |
| 4711 | } |
| 4712 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 4713 | /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn |
| 4714 | /// the ParenListExpr into a sequence of comma binary operators. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4715 | ExprResult |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4716 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { |
| 4717 | ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4718 | if (!E) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4719 | return Owned(OrigExpr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4720 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4721 | ExprResult Result(E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4722 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4723 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4724 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), |
| 4725 | E->getExpr(i)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4726 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4727 | if (Result.isInvalid()) return ExprError(); |
| 4728 | |
| 4729 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4730 | } |
| 4731 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 4732 | ExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 4733 | SourceLocation R, |
| 4734 | MultiExprArg Val) { |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 4735 | Expr *expr = new (Context) ParenListExpr(Context, L, Val, R); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4736 | return Owned(expr); |
| 4737 | } |
| 4738 | |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4739 | /// \brief Emit a specialized diagnostic when one expression is a null pointer |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4740 | /// constant and the other is not a pointer. Returns true if a diagnostic is |
| 4741 | /// emitted. |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4742 | bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4743 | SourceLocation QuestionLoc) { |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4744 | Expr *NullExpr = LHSExpr; |
| 4745 | Expr *NonPointerExpr = RHSExpr; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4746 | Expr::NullPointerConstantKind NullKind = |
| 4747 | NullExpr->isNullPointerConstant(Context, |
| 4748 | Expr::NPC_ValueDependentIsNotNull); |
| 4749 | |
| 4750 | if (NullKind == Expr::NPCK_NotNull) { |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4751 | NullExpr = RHSExpr; |
| 4752 | NonPointerExpr = LHSExpr; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4753 | NullKind = |
| 4754 | NullExpr->isNullPointerConstant(Context, |
| 4755 | Expr::NPC_ValueDependentIsNotNull); |
| 4756 | } |
| 4757 | |
| 4758 | if (NullKind == Expr::NPCK_NotNull) |
| 4759 | return false; |
| 4760 | |
David Blaikie | 50800fc | 2012-08-08 17:33:31 +0000 | [diff] [blame] | 4761 | if (NullKind == Expr::NPCK_ZeroExpression) |
| 4762 | return false; |
| 4763 | |
| 4764 | if (NullKind == Expr::NPCK_ZeroLiteral) { |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4765 | // In this case, check to make sure that we got here from a "NULL" |
| 4766 | // string in the source code. |
| 4767 | NullExpr = NullExpr->IgnoreParenImpCasts(); |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 4768 | SourceLocation loc = NullExpr->getExprLoc(); |
| 4769 | if (!findMacroSpelling(loc, "NULL")) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4770 | return false; |
| 4771 | } |
| 4772 | |
Richard Smith | 4e24f0f | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 4773 | int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr); |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4774 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) |
| 4775 | << NonPointerExpr->getType() << DiagType |
| 4776 | << NonPointerExpr->getSourceRange(); |
| 4777 | return true; |
| 4778 | } |
| 4779 | |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4780 | /// \brief Return false if the condition expression is valid, true otherwise. |
| 4781 | static bool checkCondition(Sema &S, Expr *Cond) { |
| 4782 | QualType CondTy = Cond->getType(); |
| 4783 | |
| 4784 | // C99 6.5.15p2 |
| 4785 | if (CondTy->isScalarType()) return false; |
| 4786 | |
| 4787 | // OpenCL: Sec 6.3.i says the condition is allowed to be a vector or scalar. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4788 | if (S.getLangOpts().OpenCL && CondTy->isVectorType()) |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4789 | return false; |
| 4790 | |
| 4791 | // Emit the proper error message. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4792 | S.Diag(Cond->getLocStart(), S.getLangOpts().OpenCL ? |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4793 | diag::err_typecheck_cond_expect_scalar : |
| 4794 | diag::err_typecheck_cond_expect_scalar_or_vector) |
| 4795 | << CondTy; |
| 4796 | return true; |
| 4797 | } |
| 4798 | |
| 4799 | /// \brief Return false if the two expressions can be converted to a vector, |
| 4800 | /// true otherwise |
| 4801 | static bool checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS, |
| 4802 | ExprResult &RHS, |
| 4803 | QualType CondTy) { |
| 4804 | // Both operands should be of scalar type. |
| 4805 | if (!LHS.get()->getType()->isScalarType()) { |
| 4806 | S.Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 4807 | << CondTy; |
| 4808 | return true; |
| 4809 | } |
| 4810 | if (!RHS.get()->getType()->isScalarType()) { |
| 4811 | S.Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 4812 | << CondTy; |
| 4813 | return true; |
| 4814 | } |
| 4815 | |
| 4816 | // Implicity convert these scalars to the type of the condition. |
| 4817 | LHS = S.ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast); |
| 4818 | RHS = S.ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast); |
| 4819 | return false; |
| 4820 | } |
| 4821 | |
| 4822 | /// \brief Handle when one or both operands are void type. |
| 4823 | static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, |
| 4824 | ExprResult &RHS) { |
| 4825 | Expr *LHSExpr = LHS.get(); |
| 4826 | Expr *RHSExpr = RHS.get(); |
| 4827 | |
| 4828 | if (!LHSExpr->getType()->isVoidType()) |
| 4829 | S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 4830 | << RHSExpr->getSourceRange(); |
| 4831 | if (!RHSExpr->getType()->isVoidType()) |
| 4832 | S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 4833 | << LHSExpr->getSourceRange(); |
| 4834 | LHS = S.ImpCastExprToType(LHS.take(), S.Context.VoidTy, CK_ToVoid); |
| 4835 | RHS = S.ImpCastExprToType(RHS.take(), S.Context.VoidTy, CK_ToVoid); |
| 4836 | return S.Context.VoidTy; |
| 4837 | } |
| 4838 | |
| 4839 | /// \brief Return false if the NullExpr can be promoted to PointerTy, |
| 4840 | /// true otherwise. |
| 4841 | static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, |
| 4842 | QualType PointerTy) { |
| 4843 | if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || |
| 4844 | !NullExpr.get()->isNullPointerConstant(S.Context, |
| 4845 | Expr::NPC_ValueDependentIsNull)) |
| 4846 | return true; |
| 4847 | |
| 4848 | NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer); |
| 4849 | return false; |
| 4850 | } |
| 4851 | |
| 4852 | /// \brief Checks compatibility between two pointers and return the resulting |
| 4853 | /// type. |
| 4854 | static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, |
| 4855 | ExprResult &RHS, |
| 4856 | SourceLocation Loc) { |
| 4857 | QualType LHSTy = LHS.get()->getType(); |
| 4858 | QualType RHSTy = RHS.get()->getType(); |
| 4859 | |
| 4860 | if (S.Context.hasSameType(LHSTy, RHSTy)) { |
| 4861 | // Two identical pointers types are always compatible. |
| 4862 | return LHSTy; |
| 4863 | } |
| 4864 | |
| 4865 | QualType lhptee, rhptee; |
| 4866 | |
| 4867 | // Get the pointee types. |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4868 | if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { |
| 4869 | lhptee = LHSBTy->getPointeeType(); |
| 4870 | rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4871 | } else { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4872 | lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); |
| 4873 | rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4874 | } |
| 4875 | |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4876 | // C99 6.5.15p6: If both operands are pointers to compatible types or to |
| 4877 | // differently qualified versions of compatible types, the result type is |
| 4878 | // a pointer to an appropriately qualified version of the composite |
| 4879 | // type. |
| 4880 | |
| 4881 | // Only CVR-qualifiers exist in the standard, and the differently-qualified |
| 4882 | // clause doesn't make sense for our extensions. E.g. address space 2 should |
| 4883 | // be incompatible with address space 3: they may live on different devices or |
| 4884 | // anything. |
| 4885 | Qualifiers lhQual = lhptee.getQualifiers(); |
| 4886 | Qualifiers rhQual = rhptee.getQualifiers(); |
| 4887 | |
| 4888 | unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); |
| 4889 | lhQual.removeCVRQualifiers(); |
| 4890 | rhQual.removeCVRQualifiers(); |
| 4891 | |
| 4892 | lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); |
| 4893 | rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); |
| 4894 | |
| 4895 | QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); |
| 4896 | |
| 4897 | if (CompositeTy.isNull()) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4898 | S.Diag(Loc, diag::warn_typecheck_cond_incompatible_pointers) |
| 4899 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 4900 | << RHS.get()->getSourceRange(); |
| 4901 | // In this situation, we assume void* type. No especially good |
| 4902 | // reason, but this is what gcc does, and we do have to pick |
| 4903 | // to get a consistent AST. |
| 4904 | QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); |
| 4905 | LHS = S.ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); |
| 4906 | RHS = S.ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); |
| 4907 | return incompatTy; |
| 4908 | } |
| 4909 | |
| 4910 | // The pointer types are compatible. |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4911 | QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); |
| 4912 | ResultTy = S.Context.getPointerType(ResultTy); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4913 | |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4914 | LHS = S.ImpCastExprToType(LHS.take(), ResultTy, CK_BitCast); |
| 4915 | RHS = S.ImpCastExprToType(RHS.take(), ResultTy, CK_BitCast); |
| 4916 | return ResultTy; |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4917 | } |
| 4918 | |
| 4919 | /// \brief Return the resulting type when the operands are both block pointers. |
| 4920 | static QualType checkConditionalBlockPointerCompatibility(Sema &S, |
| 4921 | ExprResult &LHS, |
| 4922 | ExprResult &RHS, |
| 4923 | SourceLocation Loc) { |
| 4924 | QualType LHSTy = LHS.get()->getType(); |
| 4925 | QualType RHSTy = RHS.get()->getType(); |
| 4926 | |
| 4927 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 4928 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 4929 | QualType destType = S.Context.getPointerType(S.Context.VoidTy); |
| 4930 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
| 4931 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
| 4932 | return destType; |
| 4933 | } |
| 4934 | S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) |
| 4935 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 4936 | << RHS.get()->getSourceRange(); |
| 4937 | return QualType(); |
| 4938 | } |
| 4939 | |
| 4940 | // We have 2 block pointer types. |
| 4941 | return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); |
| 4942 | } |
| 4943 | |
| 4944 | /// \brief Return the resulting type when the operands are both pointers. |
| 4945 | static QualType |
| 4946 | checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, |
| 4947 | ExprResult &RHS, |
| 4948 | SourceLocation Loc) { |
| 4949 | // get the pointer types |
| 4950 | QualType LHSTy = LHS.get()->getType(); |
| 4951 | QualType RHSTy = RHS.get()->getType(); |
| 4952 | |
| 4953 | // get the "pointed to" types |
| 4954 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 4955 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
| 4956 | |
| 4957 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 4958 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 4959 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 4960 | QualType destPointee |
| 4961 | = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
| 4962 | QualType destType = S.Context.getPointerType(destPointee); |
| 4963 | // Add qualifiers if necessary. |
| 4964 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_NoOp); |
| 4965 | // Promote to void*. |
| 4966 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
| 4967 | return destType; |
| 4968 | } |
| 4969 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
| 4970 | QualType destPointee |
| 4971 | = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
| 4972 | QualType destType = S.Context.getPointerType(destPointee); |
| 4973 | // Add qualifiers if necessary. |
| 4974 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_NoOp); |
| 4975 | // Promote to void*. |
| 4976 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
| 4977 | return destType; |
| 4978 | } |
| 4979 | |
| 4980 | return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); |
| 4981 | } |
| 4982 | |
| 4983 | /// \brief Return false if the first expression is not an integer and the second |
| 4984 | /// expression is not a pointer, true otherwise. |
| 4985 | static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, |
| 4986 | Expr* PointerExpr, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4987 | bool IsIntFirstExpr) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4988 | if (!PointerExpr->getType()->isPointerType() || |
| 4989 | !Int.get()->getType()->isIntegerType()) |
| 4990 | return false; |
| 4991 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4992 | Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; |
| 4993 | Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4994 | |
| 4995 | S.Diag(Loc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 4996 | << Expr1->getType() << Expr2->getType() |
| 4997 | << Expr1->getSourceRange() << Expr2->getSourceRange(); |
| 4998 | Int = S.ImpCastExprToType(Int.take(), PointerExpr->getType(), |
| 4999 | CK_IntegralToPointer); |
| 5000 | return true; |
| 5001 | } |
| 5002 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5003 | /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. |
| 5004 | /// In that case, LHS = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 5005 | /// C99 6.5.15 |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5006 | QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, |
| 5007 | ExprResult &RHS, ExprValueKind &VK, |
| 5008 | ExprObjectKind &OK, |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 5009 | SourceLocation QuestionLoc) { |
Douglas Gregor | fadb53b | 2011-03-12 01:48:56 +0000 | [diff] [blame] | 5010 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5011 | ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); |
| 5012 | if (!LHSResult.isUsable()) return QualType(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5013 | LHS = LHSResult; |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 5014 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5015 | ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); |
| 5016 | if (!RHSResult.isUsable()) return QualType(); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 5017 | RHS = RHSResult; |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 5018 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 5019 | // C++ is sufficiently different to merit its own checker. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5020 | if (getLangOpts().CPlusPlus) |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5021 | return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 5022 | |
| 5023 | VK = VK_RValue; |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 5024 | OK = OK_Ordinary; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 5025 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5026 | Cond = UsualUnaryConversions(Cond.take()); |
| 5027 | if (Cond.isInvalid()) |
| 5028 | return QualType(); |
| 5029 | LHS = UsualUnaryConversions(LHS.take()); |
| 5030 | if (LHS.isInvalid()) |
| 5031 | return QualType(); |
| 5032 | RHS = UsualUnaryConversions(RHS.take()); |
| 5033 | if (RHS.isInvalid()) |
| 5034 | return QualType(); |
| 5035 | |
| 5036 | QualType CondTy = Cond.get()->getType(); |
| 5037 | QualType LHSTy = LHS.get()->getType(); |
| 5038 | QualType RHSTy = RHS.get()->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5039 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5040 | // first, check the condition. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5041 | if (checkCondition(*this, Cond.get())) |
| 5042 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5043 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5044 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 5045 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 5046 | return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 5047 | |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 5048 | // OpenCL: If the condition is a vector, and both operands are scalar, |
| 5049 | // attempt to implicity convert them to the vector type to act like the |
| 5050 | // built in select. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5051 | if (getLangOpts().OpenCL && CondTy->isVectorType()) |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5052 | if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy)) |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 5053 | return QualType(); |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 5054 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5055 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 5056 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 5057 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 5058 | UsualArithmeticConversions(LHS, RHS); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5059 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 5060 | return QualType(); |
| 5061 | return LHS.get()->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 5062 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5063 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5064 | // If both operands are the same structure or union type, the result is that |
| 5065 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5066 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 5067 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 5068 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5069 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5070 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 5071 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5072 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5073 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5074 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5075 | // C99 6.5.15p5: "If both operands have void type, the result has void type." |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 5076 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 5077 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5078 | return checkConditionalVoidType(*this, LHS, RHS); |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 5079 | } |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5080 | |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 5081 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 5082 | // the type of the other operand." |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5083 | if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; |
| 5084 | if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5085 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5086 | // All objective-c pointer type analysis is done here. |
| 5087 | QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, |
| 5088 | QuestionLoc); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5089 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 5090 | return QualType(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5091 | if (!compositeType.isNull()) |
| 5092 | return compositeType; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5093 | |
| 5094 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 5095 | // Handle block pointer types. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5096 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) |
| 5097 | return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, |
| 5098 | QuestionLoc); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5099 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 5100 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5101 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) |
| 5102 | return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, |
| 5103 | QuestionLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5104 | |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 5105 | // GCC compatibility: soften pointer/integer mismatch. Note that |
| 5106 | // null pointers have been filtered out by this point. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5107 | if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, |
| 5108 | /*isIntFirstExpr=*/true)) |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 5109 | return RHSTy; |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 5110 | if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, |
| 5111 | /*isIntFirstExpr=*/false)) |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 5112 | return LHSTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 5113 | |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 5114 | // Emit a better diagnostic if one of the expressions is a null pointer |
| 5115 | // constant and the other is not a pointer type. In this case, the user most |
| 5116 | // likely forgot to take the address of the other expression. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5117 | if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 5118 | return QualType(); |
| 5119 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 5120 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 5121 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5122 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 5123 | << RHS.get()->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5124 | return QualType(); |
| 5125 | } |
| 5126 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5127 | /// FindCompositeObjCPointerType - Helper method to find composite type of |
| 5128 | /// two objective-c pointer types of the two input expressions. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5129 | QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5130 | SourceLocation QuestionLoc) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5131 | QualType LHSTy = LHS.get()->getType(); |
| 5132 | QualType RHSTy = RHS.get()->getType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5133 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5134 | // Handle things like Class and struct objc_class*. Here we case the result |
| 5135 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 5136 | // redefinition type if an attempt is made to access its fields. |
| 5137 | if (LHSTy->isObjCClassType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5138 | (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5139 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5140 | return LHSTy; |
| 5141 | } |
| 5142 | if (RHSTy->isObjCClassType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5143 | (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5144 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5145 | return RHSTy; |
| 5146 | } |
| 5147 | // And the same for struct objc_object* / id |
| 5148 | if (LHSTy->isObjCIdType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5149 | (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5150 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5151 | return LHSTy; |
| 5152 | } |
| 5153 | if (RHSTy->isObjCIdType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5154 | (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5155 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5156 | return RHSTy; |
| 5157 | } |
| 5158 | // And the same for struct objc_selector* / SEL |
| 5159 | if (Context.isObjCSelType(LHSTy) && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5160 | (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5161 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5162 | return LHSTy; |
| 5163 | } |
| 5164 | if (Context.isObjCSelType(RHSTy) && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5165 | (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5166 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5167 | return RHSTy; |
| 5168 | } |
| 5169 | // Check constraints for Objective-C object pointers types. |
| 5170 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5171 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5172 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 5173 | // Two identical object pointer types are always compatible. |
| 5174 | return LHSTy; |
| 5175 | } |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5176 | const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); |
| 5177 | const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5178 | QualType compositeType = LHSTy; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5179 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5180 | // If both operands are interfaces and either operand can be |
| 5181 | // assigned to the other, use that type as the composite |
| 5182 | // type. This allows |
| 5183 | // xxx ? (A*) a : (B*) b |
| 5184 | // where B is a subclass of A. |
| 5185 | // |
| 5186 | // Additionally, as for assignment, if either type is 'id' |
| 5187 | // allow silent coercion. Finally, if the types are |
| 5188 | // incompatible then make sure to use 'id' as the composite |
| 5189 | // type so the result is acceptable for sending messages to. |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5190 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5191 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 5192 | // It could return the composite type. |
| 5193 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
| 5194 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
| 5195 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
| 5196 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
| 5197 | } else if ((LHSTy->isObjCQualifiedIdType() || |
| 5198 | RHSTy->isObjCQualifiedIdType()) && |
| 5199 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
| 5200 | // Need to handle "id<xx>" explicitly. |
| 5201 | // GCC allows qualified id and any Objective-C type to devolve to |
| 5202 | // id. Currently localizing to here until clear this should be |
| 5203 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 5204 | compositeType = Context.getObjCIdType(); |
| 5205 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
| 5206 | compositeType = Context.getObjCIdType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5207 | } else if (!(compositeType = |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5208 | Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) |
| 5209 | ; |
| 5210 | else { |
| 5211 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 5212 | << LHSTy << RHSTy |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5213 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5214 | QualType incompatTy = Context.getObjCIdType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5215 | LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); |
| 5216 | RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5217 | return incompatTy; |
| 5218 | } |
| 5219 | // The object pointer types are compatible. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5220 | LHS = ImpCastExprToType(LHS.take(), compositeType, CK_BitCast); |
| 5221 | RHS = ImpCastExprToType(RHS.take(), compositeType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5222 | return compositeType; |
| 5223 | } |
| 5224 | // Check Objective-C object pointer types and 'void *' |
| 5225 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5226 | if (getLangOpts().ObjCAutoRefCount) { |
Eli Friedman | a66eccb | 2012-02-25 00:23:44 +0000 | [diff] [blame] | 5227 | // ARC forbids the implicit conversion of object pointers to 'void *', |
| 5228 | // so these types are not compatible. |
| 5229 | Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy |
| 5230 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 5231 | LHS = RHS = true; |
| 5232 | return QualType(); |
| 5233 | } |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5234 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 5235 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 5236 | QualType destPointee |
| 5237 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
| 5238 | QualType destType = Context.getPointerType(destPointee); |
| 5239 | // Add qualifiers if necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5240 | LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5241 | // Promote to void*. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5242 | RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5243 | return destType; |
| 5244 | } |
| 5245 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5246 | if (getLangOpts().ObjCAutoRefCount) { |
Eli Friedman | a66eccb | 2012-02-25 00:23:44 +0000 | [diff] [blame] | 5247 | // ARC forbids the implicit conversion of object pointers to 'void *', |
| 5248 | // so these types are not compatible. |
| 5249 | Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy |
| 5250 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 5251 | LHS = RHS = true; |
| 5252 | return QualType(); |
| 5253 | } |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5254 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 5255 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
| 5256 | QualType destPointee |
| 5257 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
| 5258 | QualType destType = Context.getPointerType(destPointee); |
| 5259 | // Add qualifiers if necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5260 | RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5261 | // Promote to void*. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5262 | LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 5263 | return destType; |
| 5264 | } |
| 5265 | return QualType(); |
| 5266 | } |
| 5267 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5268 | /// SuggestParentheses - Emit a note with a fixit hint that wraps |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5269 | /// ParenRange in parentheses. |
| 5270 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5271 | const PartialDiagnostic &Note, |
| 5272 | SourceRange ParenRange) { |
| 5273 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 5274 | if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && |
| 5275 | EndLoc.isValid()) { |
| 5276 | Self.Diag(Loc, Note) |
| 5277 | << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 5278 | << FixItHint::CreateInsertion(EndLoc, ")"); |
| 5279 | } else { |
| 5280 | // We can't display the parentheses, so just show the bare note. |
| 5281 | Self.Diag(Loc, Note) << ParenRange; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5282 | } |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5283 | } |
| 5284 | |
| 5285 | static bool IsArithmeticOp(BinaryOperatorKind Opc) { |
| 5286 | return Opc >= BO_Mul && Opc <= BO_Shr; |
| 5287 | } |
| 5288 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5289 | /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary |
| 5290 | /// expression, either using a built-in or overloaded operator, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5291 | /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side |
| 5292 | /// expression. |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5293 | static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5294 | Expr **RHSExprs) { |
Hans Wennborg | cb4d7c2 | 2011-09-12 12:07:30 +0000 | [diff] [blame] | 5295 | // Don't strip parenthesis: we should not warn if E is in parenthesis. |
| 5296 | E = E->IgnoreImpCasts(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5297 | E = E->IgnoreConversionOperator(); |
Hans Wennborg | cb4d7c2 | 2011-09-12 12:07:30 +0000 | [diff] [blame] | 5298 | E = E->IgnoreImpCasts(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5299 | |
| 5300 | // Built-in binary operator. |
| 5301 | if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { |
| 5302 | if (IsArithmeticOp(OP->getOpcode())) { |
| 5303 | *Opcode = OP->getOpcode(); |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5304 | *RHSExprs = OP->getRHS(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5305 | return true; |
| 5306 | } |
| 5307 | } |
| 5308 | |
| 5309 | // Overloaded operator. |
| 5310 | if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { |
| 5311 | if (Call->getNumArgs() != 2) |
| 5312 | return false; |
| 5313 | |
| 5314 | // Make sure this is really a binary operator that is safe to pass into |
| 5315 | // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. |
| 5316 | OverloadedOperatorKind OO = Call->getOperator(); |
| 5317 | if (OO < OO_Plus || OO > OO_Arrow) |
| 5318 | return false; |
| 5319 | |
| 5320 | BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); |
| 5321 | if (IsArithmeticOp(OpKind)) { |
| 5322 | *Opcode = OpKind; |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5323 | *RHSExprs = Call->getArg(1); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5324 | return true; |
| 5325 | } |
| 5326 | } |
| 5327 | |
| 5328 | return false; |
| 5329 | } |
| 5330 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5331 | static bool IsLogicOp(BinaryOperatorKind Opc) { |
| 5332 | return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); |
| 5333 | } |
| 5334 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5335 | /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type |
| 5336 | /// or is a logical expression such as (x==y) which has int type, but is |
| 5337 | /// commonly interpreted as boolean. |
| 5338 | static bool ExprLooksBoolean(Expr *E) { |
| 5339 | E = E->IgnoreParenImpCasts(); |
| 5340 | |
| 5341 | if (E->getType()->isBooleanType()) |
| 5342 | return true; |
| 5343 | if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) |
| 5344 | return IsLogicOp(OP->getOpcode()); |
| 5345 | if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) |
| 5346 | return OP->getOpcode() == UO_LNot; |
| 5347 | |
| 5348 | return false; |
| 5349 | } |
| 5350 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5351 | /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator |
| 5352 | /// and binary operator are mixed in a way that suggests the programmer assumed |
| 5353 | /// the conditional operator has higher precedence, for example: |
| 5354 | /// "int x = a + someBinaryCondition ? 1 : 2". |
| 5355 | static void DiagnoseConditionalPrecedence(Sema &Self, |
| 5356 | SourceLocation OpLoc, |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5357 | Expr *Condition, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5358 | Expr *LHSExpr, |
| 5359 | Expr *RHSExpr) { |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5360 | BinaryOperatorKind CondOpcode; |
| 5361 | Expr *CondRHS; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5362 | |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5363 | if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5364 | return; |
| 5365 | if (!ExprLooksBoolean(CondRHS)) |
| 5366 | return; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5367 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5368 | // The condition is an arithmetic binary expression, with a right- |
| 5369 | // hand side that looks boolean, so warn. |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5370 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5371 | Self.Diag(OpLoc, diag::warn_precedence_conditional) |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5372 | << Condition->getSourceRange() |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5373 | << BinaryOperator::getOpcodeStr(CondOpcode); |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5374 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5375 | SuggestParentheses(Self, OpLoc, |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 5376 | Self.PDiag(diag::note_precedence_silence) |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5377 | << BinaryOperator::getOpcodeStr(CondOpcode), |
| 5378 | SourceRange(Condition->getLocStart(), Condition->getLocEnd())); |
Chandler Carruth | 9d5353c | 2011-06-21 23:04:18 +0000 | [diff] [blame] | 5379 | |
| 5380 | SuggestParentheses(Self, OpLoc, |
| 5381 | Self.PDiag(diag::note_precedence_conditional_first), |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5382 | SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5383 | } |
| 5384 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5385 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5386 | /// in the case of a the GNU conditional expr extension. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5387 | ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5388 | SourceLocation ColonLoc, |
| 5389 | Expr *CondExpr, Expr *LHSExpr, |
| 5390 | Expr *RHSExpr) { |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 5391 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 5392 | // was the condition. |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5393 | OpaqueValueExpr *opaqueValue = 0; |
| 5394 | Expr *commonExpr = 0; |
| 5395 | if (LHSExpr == 0) { |
| 5396 | commonExpr = CondExpr; |
| 5397 | |
| 5398 | // We usually want to apply unary conversions *before* saving, except |
| 5399 | // in the special case of a C++ l-value conditional. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5400 | if (!(getLangOpts().CPlusPlus |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5401 | && !commonExpr->isTypeDependent() |
| 5402 | && commonExpr->getValueKind() == RHSExpr->getValueKind() |
| 5403 | && commonExpr->isGLValue() |
| 5404 | && commonExpr->isOrdinaryOrBitFieldObject() |
| 5405 | && RHSExpr->isOrdinaryOrBitFieldObject() |
| 5406 | && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5407 | ExprResult commonRes = UsualUnaryConversions(commonExpr); |
| 5408 | if (commonRes.isInvalid()) |
| 5409 | return ExprError(); |
| 5410 | commonExpr = commonRes.take(); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5411 | } |
| 5412 | |
| 5413 | opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), |
| 5414 | commonExpr->getType(), |
| 5415 | commonExpr->getValueKind(), |
Douglas Gregor | 97df54e | 2012-02-23 22:17:26 +0000 | [diff] [blame] | 5416 | commonExpr->getObjectKind(), |
| 5417 | commonExpr); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5418 | LHSExpr = CondExpr = opaqueValue; |
Fariborz Jahanian | f9b949f | 2010-08-31 18:02:20 +0000 | [diff] [blame] | 5419 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5420 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 5421 | ExprValueKind VK = VK_RValue; |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 5422 | ExprObjectKind OK = OK_Ordinary; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5423 | ExprResult Cond = Owned(CondExpr), LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); |
| 5424 | QualType result = CheckConditionalOperands(Cond, LHS, RHS, |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5425 | VK, OK, QuestionLoc); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5426 | if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || |
| 5427 | RHS.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5428 | return ExprError(); |
| 5429 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5430 | DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), |
| 5431 | RHS.get()); |
| 5432 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5433 | if (!commonExpr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5434 | return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc, |
| 5435 | LHS.take(), ColonLoc, |
| 5436 | RHS.take(), result, VK, OK)); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5437 | |
| 5438 | return Owned(new (Context) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5439 | BinaryConditionalOperator(commonExpr, opaqueValue, Cond.take(), LHS.take(), |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5440 | RHS.take(), QuestionLoc, ColonLoc, result, VK, |
| 5441 | OK)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5442 | } |
| 5443 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5444 | // checkPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5445 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5446 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 5447 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 5448 | // FIXME: add a couple examples in this comment. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5449 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5450 | checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { |
| 5451 | assert(LHSType.isCanonical() && "LHS not canonicalized!"); |
| 5452 | assert(RHSType.isCanonical() && "RHS not canonicalized!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5453 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5454 | // get the "pointed to" type (ignoring qualifiers at the top level) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5455 | const Type *lhptee, *rhptee; |
| 5456 | Qualifiers lhq, rhq; |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5457 | llvm::tie(lhptee, lhq) = cast<PointerType>(LHSType)->getPointeeType().split(); |
| 5458 | llvm::tie(rhptee, rhq) = cast<PointerType>(RHSType)->getPointeeType().split(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5459 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5460 | Sema::AssignConvertType ConvTy = Sema::Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5461 | |
| 5462 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 5463 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 5464 | // qualifiers of the type *pointed to* by the right; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5465 | Qualifiers lq; |
| 5466 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5467 | // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. |
| 5468 | if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && |
| 5469 | lhq.compatiblyIncludesObjCLifetime(rhq)) { |
| 5470 | // Ignore lifetime for further calculation. |
| 5471 | lhq.removeObjCLifetime(); |
| 5472 | rhq.removeObjCLifetime(); |
| 5473 | } |
| 5474 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5475 | if (!lhq.compatiblyIncludes(rhq)) { |
| 5476 | // Treat address-space mismatches as fatal. TODO: address subspaces |
| 5477 | if (lhq.getAddressSpace() != rhq.getAddressSpace()) |
| 5478 | ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; |
| 5479 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5480 | // It's okay to add or remove GC or lifetime qualifiers when converting to |
John McCall | 2234873 | 2011-03-26 02:56:45 +0000 | [diff] [blame] | 5481 | // and from void*. |
John McCall | 200fa53 | 2012-02-08 00:46:36 +0000 | [diff] [blame] | 5482 | else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5483 | .compatiblyIncludes( |
John McCall | 200fa53 | 2012-02-08 00:46:36 +0000 | [diff] [blame] | 5484 | rhq.withoutObjCGCAttr().withoutObjCLifetime()) |
John McCall | 2234873 | 2011-03-26 02:56:45 +0000 | [diff] [blame] | 5485 | && (lhptee->isVoidType() || rhptee->isVoidType())) |
| 5486 | ; // keep old |
| 5487 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5488 | // Treat lifetime mismatches as fatal. |
| 5489 | else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) |
| 5490 | ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; |
| 5491 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5492 | // For GCC compatibility, other qualifier mismatches are treated |
| 5493 | // as still compatible in C. |
| 5494 | else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; |
| 5495 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5496 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5497 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 5498 | // incomplete type and the other is a pointer to a qualified or unqualified |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5499 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5500 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5501 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5502 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5503 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5504 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5505 | assert(rhptee->isFunctionType()); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5506 | return Sema::FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5507 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5508 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5509 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5510 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5511 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5512 | |
| 5513 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5514 | assert(lhptee->isFunctionType()); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5515 | return Sema::FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5516 | } |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5517 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5518 | // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5519 | // unqualified versions of compatible types, ... |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5520 | QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); |
| 5521 | if (!S.Context.typesAreCompatible(ltrans, rtrans)) { |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5522 | // Check if the pointee types are compatible ignoring the sign. |
| 5523 | // We explicitly check for char so that we catch "char" vs |
| 5524 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5525 | if (lhptee->isCharType()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5526 | ltrans = S.Context.UnsignedCharTy; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 5527 | else if (lhptee->hasSignedIntegerRepresentation()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5528 | ltrans = S.Context.getCorrespondingUnsignedType(ltrans); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5529 | |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5530 | if (rhptee->isCharType()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5531 | rtrans = S.Context.UnsignedCharTy; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 5532 | else if (rhptee->hasSignedIntegerRepresentation()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5533 | rtrans = S.Context.getCorrespondingUnsignedType(rtrans); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5534 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5535 | if (ltrans == rtrans) { |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5536 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 5537 | // takes priority over sign incompatibility because the sign |
| 5538 | // warning can be disabled. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5539 | if (ConvTy != Sema::Compatible) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5540 | return ConvTy; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5541 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5542 | return Sema::IncompatiblePointerSign; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5543 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5544 | |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5545 | // If we are a multi-level pointer, it's possible that our issue is simply |
| 5546 | // one of qualification - e.g. char ** -> const char ** is not allowed. If |
| 5547 | // the eventual target type is the same and the pointers have the same |
| 5548 | // level of indirection, this must be the issue. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5549 | if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5550 | do { |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5551 | lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); |
| 5552 | rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5553 | } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5554 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5555 | if (lhptee == rhptee) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5556 | return Sema::IncompatibleNestedPointerQualifiers; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5557 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5558 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5559 | // General pointer incompatibility takes priority over qualifiers. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5560 | return Sema::IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5561 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5562 | if (!S.getLangOpts().CPlusPlus && |
Fariborz Jahanian | 53c8167 | 2011-10-05 00:05:34 +0000 | [diff] [blame] | 5563 | S.IsNoReturnConversion(ltrans, rtrans, ltrans)) |
| 5564 | return Sema::IncompatiblePointer; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5565 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5566 | } |
| 5567 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5568 | /// checkBlockPointerTypesForAssignment - This routine determines whether two |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5569 | /// block pointer types are compatible or whether a block and normal pointer |
| 5570 | /// are compatible. It is more restrict than comparing two function pointer |
| 5571 | // types. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5572 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5573 | checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, |
| 5574 | QualType RHSType) { |
| 5575 | assert(LHSType.isCanonical() && "LHS not canonicalized!"); |
| 5576 | assert(RHSType.isCanonical() && "RHS not canonicalized!"); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5577 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5578 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5579 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5580 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5581 | lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); |
| 5582 | rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5583 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5584 | // In C++, the types have to match exactly. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5585 | if (S.getLangOpts().CPlusPlus) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5586 | return Sema::IncompatibleBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5587 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5588 | Sema::AssignConvertType ConvTy = Sema::Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5589 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5590 | // For blocks we enforce that qualifiers are identical. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5591 | if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) |
| 5592 | ConvTy = Sema::CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5593 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5594 | if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5595 | return Sema::IncompatibleBlockPointer; |
| 5596 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5597 | return ConvTy; |
| 5598 | } |
| 5599 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5600 | /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types |
Fariborz Jahanian | 52efc3f | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 5601 | /// for assignment compatibility. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5602 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5603 | checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, |
| 5604 | QualType RHSType) { |
| 5605 | assert(LHSType.isCanonical() && "LHS was not canonicalized!"); |
| 5606 | assert(RHSType.isCanonical() && "RHS was not canonicalized!"); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5607 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5608 | if (LHSType->isObjCBuiltinType()) { |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5609 | // Class is not compatible with ObjC object pointers. |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5610 | if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && |
| 5611 | !RHSType->isObjCQualifiedClassType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5612 | return Sema::IncompatiblePointer; |
| 5613 | return Sema::Compatible; |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5614 | } |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5615 | if (RHSType->isObjCBuiltinType()) { |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5616 | if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && |
| 5617 | !LHSType->isObjCQualifiedClassType()) |
Fariborz Jahanian | 412a496 | 2011-09-15 20:40:18 +0000 | [diff] [blame] | 5618 | return Sema::IncompatiblePointer; |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5619 | return Sema::Compatible; |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5620 | } |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5621 | QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 5622 | QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5623 | |
Fariborz Jahanian | f2b4f7b | 2012-01-12 22:12:08 +0000 | [diff] [blame] | 5624 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && |
| 5625 | // make an exception for id<P> |
| 5626 | !LHSType->isObjCQualifiedIdType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5627 | return Sema::CompatiblePointerDiscardsQualifiers; |
| 5628 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5629 | if (S.Context.typesAreCompatible(LHSType, RHSType)) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5630 | return Sema::Compatible; |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5631 | if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5632 | return Sema::IncompatibleObjCQualifiedId; |
| 5633 | return Sema::IncompatiblePointer; |
Fariborz Jahanian | 52efc3f | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 5634 | } |
| 5635 | |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5636 | Sema::AssignConvertType |
Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 5637 | Sema::CheckAssignmentConstraints(SourceLocation Loc, |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5638 | QualType LHSType, QualType RHSType) { |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5639 | // Fake up an opaque expression. We don't actually care about what |
| 5640 | // cast operations are required, so if CheckAssignmentConstraints |
| 5641 | // adds casts to this they'll be wasted, but fortunately that doesn't |
| 5642 | // usually happen on valid code. |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5643 | OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); |
| 5644 | ExprResult RHSPtr = &RHSExpr; |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5645 | CastKind K = CK_Invalid; |
| 5646 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5647 | return CheckAssignmentConstraints(LHSType, RHSPtr, K); |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5648 | } |
| 5649 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5650 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 5651 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5652 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 5653 | /// |
| 5654 | /// int a, *pint; |
| 5655 | /// short *pshort; |
| 5656 | /// struct foo *pfoo; |
| 5657 | /// |
| 5658 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 5659 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 5660 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 5661 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 5662 | /// |
| 5663 | /// As a result, the code for dealing with pointers is more complex than the |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5664 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5665 | /// |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5666 | /// Sets 'Kind' for any result kind except Incompatible. |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5667 | Sema::AssignConvertType |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5668 | Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5669 | CastKind &Kind) { |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5670 | QualType RHSType = RHS.get()->getType(); |
| 5671 | QualType OrigLHSType = LHSType; |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5672 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5673 | // Get canonical types. We're not formatting these types, just comparing |
| 5674 | // them. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5675 | LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); |
| 5676 | RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5677 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5678 | // Common case: no conversion required. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5679 | if (LHSType == RHSType) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5680 | Kind = CK_NoOp; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5681 | return Compatible; |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 5682 | } |
| 5683 | |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 5684 | // If we have an atomic type, try a non-atomic assignment, then just add an |
| 5685 | // atomic qualification step. |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5686 | if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 5687 | Sema::AssignConvertType result = |
| 5688 | CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind); |
| 5689 | if (result != Compatible) |
| 5690 | return result; |
| 5691 | if (Kind != CK_NoOp) |
| 5692 | RHS = ImpCastExprToType(RHS.take(), AtomicTy->getValueType(), Kind); |
| 5693 | Kind = CK_NonAtomicToAtomic; |
| 5694 | return Compatible; |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5695 | } |
| 5696 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 5697 | // If the left-hand side is a reference type, then we are in a |
| 5698 | // (rare!) case where we've allowed the use of references in C, |
| 5699 | // e.g., as a parameter type in a built-in function. In this case, |
| 5700 | // just make sure that the type referenced is compatible with the |
| 5701 | // right-hand side type. The caller is responsible for adjusting |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5702 | // LHSType so that the resulting expression does not have reference |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 5703 | // type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5704 | if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { |
| 5705 | if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5706 | Kind = CK_LValueBitCast; |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 5707 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5708 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5709 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 5710 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5711 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5712 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 5713 | // to the same ExtVector type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5714 | if (LHSType->isExtVectorType()) { |
| 5715 | if (RHSType->isExtVectorType()) |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5716 | return Incompatible; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5717 | if (RHSType->isArithmeticType()) { |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5718 | // CK_VectorSplat does T -> vector T, so first cast to the |
| 5719 | // element type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5720 | QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); |
| 5721 | if (elType != RHSType) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 5722 | Kind = PrepareScalarCast(RHS, elType); |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5723 | RHS = ImpCastExprToType(RHS.take(), elType, Kind); |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5724 | } |
| 5725 | Kind = CK_VectorSplat; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5726 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5727 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5728 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5729 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5730 | // Conversions to or from vector type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5731 | if (LHSType->isVectorType() || RHSType->isVectorType()) { |
| 5732 | if (LHSType->isVectorType() && RHSType->isVectorType()) { |
Bob Wilson | de3deea | 2010-12-02 00:25:15 +0000 | [diff] [blame] | 5733 | // Allow assignments of an AltiVec vector type to an equivalent GCC |
| 5734 | // vector type and vice versa |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5735 | if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { |
Bob Wilson | de3deea | 2010-12-02 00:25:15 +0000 | [diff] [blame] | 5736 | Kind = CK_BitCast; |
| 5737 | return Compatible; |
| 5738 | } |
| 5739 | |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 5740 | // If we are allowing lax vector conversions, and LHS and RHS are both |
| 5741 | // vectors, the total size only needs to be the same. This is a bitcast; |
| 5742 | // no bits are changed but the result type is different. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5743 | if (getLangOpts().LaxVectorConversions && |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5744 | (Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType))) { |
John McCall | 0c6d28d | 2010-11-15 10:08:00 +0000 | [diff] [blame] | 5745 | Kind = CK_BitCast; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5746 | return IncompatibleVectors; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5747 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 5748 | } |
| 5749 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5750 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5751 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5752 | // Arithmetic conversions. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5753 | if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5754 | !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 5755 | Kind = PrepareScalarCast(RHS, LHSType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5756 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5757 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5758 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5759 | // Conversions to normal pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5760 | if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5761 | // U* -> T* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5762 | if (isa<PointerType>(RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5763 | Kind = CK_BitCast; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5764 | return checkPointerTypesForAssignment(*this, LHSType, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5765 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5766 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5767 | // int -> T* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5768 | if (RHSType->isIntegerType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5769 | Kind = CK_IntegralToPointer; // FIXME: null? |
| 5770 | return IntToPointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5771 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5772 | |
| 5773 | // C pointers are not compatible with ObjC object pointers, |
| 5774 | // with two exceptions: |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5775 | if (isa<ObjCObjectPointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5776 | // - conversions to void* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5777 | if (LHSPointer->getPointeeType()->isVoidType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5778 | Kind = CK_BitCast; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5779 | return Compatible; |
| 5780 | } |
| 5781 | |
| 5782 | // - conversions from 'Class' to the redefinition type |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5783 | if (RHSType->isObjCClassType() && |
| 5784 | Context.hasSameType(LHSType, |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5785 | Context.getObjCClassRedefinitionType())) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5786 | Kind = CK_BitCast; |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 5787 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5788 | } |
Douglas Gregor | c737acb | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 5789 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5790 | Kind = CK_BitCast; |
| 5791 | return IncompatiblePointer; |
| 5792 | } |
| 5793 | |
| 5794 | // U^ -> void* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5795 | if (RHSType->getAs<BlockPointerType>()) { |
| 5796 | if (LHSPointer->getPointeeType()->isVoidType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5797 | Kind = CK_BitCast; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5798 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5799 | } |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5800 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5801 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5802 | return Incompatible; |
| 5803 | } |
| 5804 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5805 | // Conversions to block pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5806 | if (isa<BlockPointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5807 | // U^ -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5808 | if (RHSType->isBlockPointerType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5809 | Kind = CK_BitCast; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5810 | return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5811 | } |
| 5812 | |
| 5813 | // int or null -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5814 | if (RHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5815 | Kind = CK_IntegralToPointer; // FIXME: null |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 5816 | return IntToBlockPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5817 | } |
| 5818 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5819 | // id -> T^ |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5820 | if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5821 | Kind = CK_AnyPointerToBlockPointerCast; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5822 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5823 | } |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5824 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5825 | // void* -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5826 | if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5827 | if (RHSPT->getPointeeType()->isVoidType()) { |
| 5828 | Kind = CK_AnyPointerToBlockPointerCast; |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 5829 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5830 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5831 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5832 | return Incompatible; |
| 5833 | } |
| 5834 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5835 | // Conversions to Objective-C pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5836 | if (isa<ObjCObjectPointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5837 | // A* -> B* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5838 | if (RHSType->isObjCObjectPointerType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5839 | Kind = CK_BitCast; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5840 | Sema::AssignConvertType result = |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5841 | checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5842 | if (getLangOpts().ObjCAutoRefCount && |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5843 | result == Compatible && |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5844 | !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 5845 | result = IncompatibleObjCWeakRef; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5846 | return result; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5847 | } |
| 5848 | |
| 5849 | // int or null -> A* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5850 | if (RHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5851 | Kind = CK_IntegralToPointer; // FIXME: null |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5852 | return IntToPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5853 | } |
| 5854 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5855 | // In general, C pointers are not compatible with ObjC object pointers, |
| 5856 | // with two exceptions: |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5857 | if (isa<PointerType>(RHSType)) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5858 | Kind = CK_CPointerToObjCPointerCast; |
| 5859 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5860 | // - conversions from 'void*' |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5861 | if (RHSType->isVoidPointerType()) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 5862 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5863 | } |
| 5864 | |
| 5865 | // - conversions to 'Class' from its redefinition type |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5866 | if (LHSType->isObjCClassType() && |
| 5867 | Context.hasSameType(RHSType, |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5868 | Context.getObjCClassRedefinitionType())) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5869 | return Compatible; |
| 5870 | } |
| 5871 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 5872 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5873 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5874 | |
| 5875 | // T^ -> A* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5876 | if (RHSType->isBlockPointerType()) { |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 5877 | maybeExtendBlockObject(*this, RHS); |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5878 | Kind = CK_BlockPointerToObjCPointerCast; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5879 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5880 | } |
| 5881 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5882 | return Incompatible; |
| 5883 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5884 | |
| 5885 | // Conversions from pointers that are not covered by the above. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5886 | if (isa<PointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5887 | // T* -> _Bool |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5888 | if (LHSType == Context.BoolTy) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5889 | Kind = CK_PointerToBoolean; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5890 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5891 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5892 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5893 | // T* -> int |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5894 | if (LHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5895 | Kind = CK_PointerToIntegral; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5896 | return PointerToInt; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5897 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5898 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5899 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5900 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5901 | |
| 5902 | // Conversions from Objective-C pointers that are not covered by the above. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5903 | if (isa<ObjCObjectPointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5904 | // T* -> _Bool |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5905 | if (LHSType == Context.BoolTy) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5906 | Kind = CK_PointerToBoolean; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5907 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5908 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5909 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5910 | // T* -> int |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5911 | if (LHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5912 | Kind = CK_PointerToIntegral; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5913 | return PointerToInt; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5914 | } |
| 5915 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5916 | return Incompatible; |
| 5917 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5918 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5919 | // struct A -> struct B |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5920 | if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { |
| 5921 | if (Context.typesAreCompatible(LHSType, RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5922 | Kind = CK_NoOp; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5923 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5924 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5925 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5926 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5927 | return Incompatible; |
| 5928 | } |
| 5929 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5930 | /// \brief Constructs a transparent union from an expression that is |
| 5931 | /// used to initialize the transparent union. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5932 | static void ConstructTransparentUnion(Sema &S, ASTContext &C, |
| 5933 | ExprResult &EResult, QualType UnionType, |
| 5934 | FieldDecl *Field) { |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5935 | // Build an initializer list that designates the appropriate member |
| 5936 | // of the transparent union. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5937 | Expr *E = EResult.take(); |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 5938 | InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 5939 | E, SourceLocation()); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5940 | Initializer->setType(UnionType); |
| 5941 | Initializer->setInitializedFieldInUnion(Field); |
| 5942 | |
| 5943 | // Build a compound literal constructing a value of the transparent |
| 5944 | // union type from this initializer list. |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 5945 | TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5946 | EResult = S.Owned( |
| 5947 | new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, |
| 5948 | VK_RValue, Initializer, false)); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5949 | } |
| 5950 | |
| 5951 | Sema::AssignConvertType |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5952 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5953 | ExprResult &RHS) { |
| 5954 | QualType RHSType = RHS.get()->getType(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5955 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5956 | // If the ArgType is a Union type, we want to handle a potential |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5957 | // transparent_union GCC extension. |
| 5958 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5959 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5960 | return Incompatible; |
| 5961 | |
| 5962 | // The field to initialize within the transparent union. |
| 5963 | RecordDecl *UD = UT->getDecl(); |
| 5964 | FieldDecl *InitField = 0; |
| 5965 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 5966 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 5967 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5968 | it != itend; ++it) { |
| 5969 | if (it->getType()->isPointerType()) { |
| 5970 | // If the transparent union contains a pointer type, we allow: |
| 5971 | // 1) void pointer |
| 5972 | // 2) null pointer constant |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5973 | if (RHSType->isPointerType()) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5974 | if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5975 | RHS = ImpCastExprToType(RHS.take(), it->getType(), CK_BitCast); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 5976 | InitField = *it; |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5977 | break; |
| 5978 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5979 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5980 | if (RHS.get()->isNullPointerConstant(Context, |
| 5981 | Expr::NPC_ValueDependentIsNull)) { |
| 5982 | RHS = ImpCastExprToType(RHS.take(), it->getType(), |
| 5983 | CK_NullToPointer); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 5984 | InitField = *it; |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5985 | break; |
| 5986 | } |
| 5987 | } |
| 5988 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5989 | CastKind Kind = CK_Invalid; |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5990 | if (CheckAssignmentConstraints(it->getType(), RHS, Kind) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5991 | == Compatible) { |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5992 | RHS = ImpCastExprToType(RHS.take(), it->getType(), Kind); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 5993 | InitField = *it; |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5994 | break; |
| 5995 | } |
| 5996 | } |
| 5997 | |
| 5998 | if (!InitField) |
| 5999 | return Incompatible; |
| 6000 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6001 | ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 6002 | return Compatible; |
| 6003 | } |
| 6004 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6005 | Sema::AssignConvertType |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6006 | Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, |
| 6007 | bool Diagnose) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6008 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 6009 | if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 6010 | // C++ 5.17p3: If the left operand is not of class type, the |
| 6011 | // expression is implicitly converted (C++ 4) to the |
| 6012 | // cv-unqualified type of the left operand. |
Sebastian Redl | 091fffe | 2011-10-16 18:19:06 +0000 | [diff] [blame] | 6013 | ExprResult Res; |
| 6014 | if (Diagnose) { |
| 6015 | Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 6016 | AA_Assigning); |
| 6017 | } else { |
| 6018 | ImplicitConversionSequence ICS = |
| 6019 | TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 6020 | /*SuppressUserConversions=*/false, |
| 6021 | /*AllowExplicit=*/false, |
| 6022 | /*InOverloadResolution=*/false, |
| 6023 | /*CStyle=*/false, |
| 6024 | /*AllowObjCWritebackConversion=*/false); |
| 6025 | if (ICS.isFailure()) |
| 6026 | return Incompatible; |
| 6027 | Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 6028 | ICS, AA_Assigning); |
| 6029 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6030 | if (Res.isInvalid()) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 6031 | return Incompatible; |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 6032 | Sema::AssignConvertType result = Compatible; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6033 | if (getLangOpts().ObjCAutoRefCount && |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6034 | !CheckObjCARCUnavailableWeakConversion(LHSType, |
| 6035 | RHS.get()->getType())) |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 6036 | result = IncompatibleObjCWeakRef; |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 6037 | RHS = Res; |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 6038 | return result; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 6039 | } |
| 6040 | |
| 6041 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 6042 | // structures. |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 6043 | // FIXME: We also fall through for atomics; not sure what should |
| 6044 | // happen there, though. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 6045 | } |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 6046 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 6047 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 6048 | // a null pointer constant. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6049 | if ((LHSType->isPointerType() || |
| 6050 | LHSType->isObjCObjectPointerType() || |
| 6051 | LHSType->isBlockPointerType()) |
| 6052 | && RHS.get()->isNullPointerConstant(Context, |
| 6053 | Expr::NPC_ValueDependentIsNull)) { |
| 6054 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 6055 | return Compatible; |
| 6056 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6057 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 6058 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 6059 | // conversion of functions/arrays. If the conversion were done for all |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 6060 | // DeclExpr's (created by ActOnIdExpression), it would mess up the unary |
Nick Lewycky | c133e9e | 2010-08-05 06:27:49 +0000 | [diff] [blame] | 6061 | // expressions that suppress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 6062 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6063 | // Suppress this for references: C++ 8.5.3p5. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6064 | if (!LHSType->isReferenceType()) { |
| 6065 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 6066 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6067 | return Incompatible; |
| 6068 | } |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 6069 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6070 | CastKind Kind = CK_Invalid; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6071 | Sema::AssignConvertType result = |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6072 | CheckAssignmentConstraints(LHSType, RHS, Kind); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6073 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 6074 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 6075 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 6076 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 6077 | // so that we can use references in built-in functions even in C. |
| 6078 | // The getNonReferenceType() call makes sure that the resulting expression |
| 6079 | // does not have reference type. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6080 | if (result != Incompatible && RHS.get()->getType() != LHSType) |
| 6081 | RHS = ImpCastExprToType(RHS.take(), |
| 6082 | LHSType.getNonLValueExprType(Context), Kind); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 6083 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 6084 | } |
| 6085 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6086 | QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, |
| 6087 | ExprResult &RHS) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 6088 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 6089 | << LHS.get()->getType() << RHS.get()->getType() |
| 6090 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6091 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6092 | } |
| 6093 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6094 | QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6095 | SourceLocation Loc, bool IsCompAssign) { |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 6096 | if (!IsCompAssign) { |
| 6097 | LHS = DefaultFunctionArrayLvalueConversion(LHS.take()); |
| 6098 | if (LHS.isInvalid()) |
| 6099 | return QualType(); |
| 6100 | } |
| 6101 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 6102 | if (RHS.isInvalid()) |
| 6103 | return QualType(); |
| 6104 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6105 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 6106 | // For example, "const float" and "float" are equivalent. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6107 | QualType LHSType = |
| 6108 | Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); |
| 6109 | QualType RHSType = |
| 6110 | Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6111 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6112 | // If the vector types are identical, return. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6113 | if (LHSType == RHSType) |
| 6114 | return LHSType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 6115 | |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 6116 | // Handle the case of equivalent AltiVec and GCC vector types |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6117 | if (LHSType->isVectorType() && RHSType->isVectorType() && |
| 6118 | Context.areCompatibleVectorTypes(LHSType, RHSType)) { |
| 6119 | if (LHSType->isExtVectorType()) { |
| 6120 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
| 6121 | return LHSType; |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 6122 | } |
| 6123 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6124 | if (!IsCompAssign) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6125 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
| 6126 | return RHSType; |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 6127 | } |
| 6128 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6129 | if (getLangOpts().LaxVectorConversions && |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6130 | Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType)) { |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 6131 | // If we are allowing lax vector conversions, and LHS and RHS are both |
| 6132 | // vectors, the total size only needs to be the same. This is a |
| 6133 | // bitcast; no bits are changed but the result type is different. |
| 6134 | // FIXME: Should we really be allowing this? |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6135 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
| 6136 | return LHSType; |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 6137 | } |
| 6138 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6139 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 6140 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 6141 | bool swapped = false; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6142 | if (RHSType->isExtVectorType() && !IsCompAssign) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6143 | swapped = true; |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6144 | std::swap(RHS, LHS); |
| 6145 | std::swap(RHSType, LHSType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6146 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6147 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 6148 | // Handle the case of an ext vector and scalar. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6149 | if (const ExtVectorType *LV = LHSType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6150 | QualType EltTy = LV->getElementType(); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6151 | if (EltTy->isIntegralType(Context) && RHSType->isIntegralType(Context)) { |
| 6152 | int order = Context.getIntegerTypeOrder(EltTy, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6153 | if (order > 0) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6154 | RHS = ImpCastExprToType(RHS.take(), EltTy, CK_IntegralCast); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6155 | if (order >= 0) { |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6156 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); |
| 6157 | if (swapped) std::swap(RHS, LHS); |
| 6158 | return LHSType; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6159 | } |
| 6160 | } |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6161 | if (EltTy->isRealFloatingType() && RHSType->isScalarType() && |
| 6162 | RHSType->isRealFloatingType()) { |
| 6163 | int order = Context.getFloatingTypeOrder(EltTy, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6164 | if (order > 0) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6165 | RHS = ImpCastExprToType(RHS.take(), EltTy, CK_FloatingCast); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 6166 | if (order >= 0) { |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6167 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); |
| 6168 | if (swapped) std::swap(RHS, LHS); |
| 6169 | return LHSType; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 6170 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 6171 | } |
| 6172 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6173 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 6174 | // Vectors of different size or scalar and non-ext-vector are errors. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6175 | if (swapped) std::swap(RHS, LHS); |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 6176 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6177 | << LHS.get()->getType() << RHS.get()->getType() |
| 6178 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6179 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 6180 | } |
| 6181 | |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6182 | // checkArithmeticNull - Detect when a NULL constant is used improperly in an |
| 6183 | // expression. These are mainly cases where the null pointer is used as an |
| 6184 | // integer instead of a pointer. |
| 6185 | static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, |
| 6186 | SourceLocation Loc, bool IsCompare) { |
| 6187 | // The canonical way to check for a GNU null is with isNullPointerConstant, |
| 6188 | // but we use a bit of a hack here for speed; this is a relatively |
| 6189 | // hot path, and isNullPointerConstant is slow. |
| 6190 | bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); |
| 6191 | bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); |
| 6192 | |
| 6193 | QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); |
| 6194 | |
| 6195 | // Avoid analyzing cases where the result will either be invalid (and |
| 6196 | // diagnosed as such) or entirely valid and not something to warn about. |
| 6197 | if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || |
| 6198 | NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) |
| 6199 | return; |
| 6200 | |
| 6201 | // Comparison operations would not make sense with a null pointer no matter |
| 6202 | // what the other expression is. |
| 6203 | if (!IsCompare) { |
| 6204 | S.Diag(Loc, diag::warn_null_in_arithmetic_operation) |
| 6205 | << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) |
| 6206 | << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); |
| 6207 | return; |
| 6208 | } |
| 6209 | |
| 6210 | // The rest of the operations only make sense with a null pointer |
| 6211 | // if the other expression is a pointer. |
| 6212 | if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || |
| 6213 | NonNullType->canDecayToPointerType()) |
| 6214 | return; |
| 6215 | |
| 6216 | S.Diag(Loc, diag::warn_null_in_comparison_operation) |
| 6217 | << LHSNull /* LHS is NULL */ << NonNullType |
| 6218 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 6219 | } |
| 6220 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6221 | QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6222 | SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6223 | bool IsCompAssign, bool IsDiv) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6224 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6225 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6226 | if (LHS.get()->getType()->isVectorType() || |
| 6227 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6228 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6229 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6230 | QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6231 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6232 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6233 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 6234 | |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 6235 | if (compType.isNull() || !compType->isArithmeticType()) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6236 | return InvalidOperands(Loc, LHS, RHS); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6237 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6238 | // Check for division by zero. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6239 | if (IsDiv && |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6240 | RHS.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6241 | Expr::NPC_ValueDependentIsNotNull)) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6242 | DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_division_by_zero) |
| 6243 | << RHS.get()->getSourceRange()); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6244 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6245 | return compType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6246 | } |
| 6247 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6248 | QualType Sema::CheckRemainderOperands( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6249 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6250 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6251 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6252 | if (LHS.get()->getType()->isVectorType() || |
| 6253 | RHS.get()->getType()->isVectorType()) { |
| 6254 | if (LHS.get()->getType()->hasIntegerRepresentation() && |
| 6255 | RHS.get()->getType()->hasIntegerRepresentation()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6256 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6257 | return InvalidOperands(Loc, LHS, RHS); |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 6258 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 6259 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6260 | QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6261 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6262 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6263 | |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 6264 | if (compType.isNull() || !compType->isIntegerType()) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6265 | return InvalidOperands(Loc, LHS, RHS); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6266 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6267 | // Check for remainder by zero. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6268 | if (RHS.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6269 | Expr::NPC_ValueDependentIsNotNull)) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 6270 | DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_remainder_by_zero) |
| 6271 | << RHS.get()->getSourceRange()); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6272 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6273 | return compType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6274 | } |
| 6275 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6276 | /// \brief Diagnose invalid arithmetic on two void pointers. |
| 6277 | static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6278 | Expr *LHSExpr, Expr *RHSExpr) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6279 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6280 | ? diag::err_typecheck_pointer_arith_void_type |
| 6281 | : diag::ext_gnu_void_ptr) |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6282 | << 1 /* two pointers */ << LHSExpr->getSourceRange() |
| 6283 | << RHSExpr->getSourceRange(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6284 | } |
| 6285 | |
| 6286 | /// \brief Diagnose invalid arithmetic on a void pointer. |
| 6287 | static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, |
| 6288 | Expr *Pointer) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6289 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6290 | ? diag::err_typecheck_pointer_arith_void_type |
| 6291 | : diag::ext_gnu_void_ptr) |
| 6292 | << 0 /* one pointer */ << Pointer->getSourceRange(); |
| 6293 | } |
| 6294 | |
| 6295 | /// \brief Diagnose invalid arithmetic on two function pointers. |
| 6296 | static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, |
| 6297 | Expr *LHS, Expr *RHS) { |
| 6298 | assert(LHS->getType()->isAnyPointerType()); |
| 6299 | assert(RHS->getType()->isAnyPointerType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6300 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6301 | ? diag::err_typecheck_pointer_arith_function_type |
| 6302 | : diag::ext_gnu_ptr_func_arith) |
| 6303 | << 1 /* two pointers */ << LHS->getType()->getPointeeType() |
| 6304 | // We only show the second type if it differs from the first. |
| 6305 | << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), |
| 6306 | RHS->getType()) |
| 6307 | << RHS->getType()->getPointeeType() |
| 6308 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 6309 | } |
| 6310 | |
| 6311 | /// \brief Diagnose invalid arithmetic on a function pointer. |
| 6312 | static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, |
| 6313 | Expr *Pointer) { |
| 6314 | assert(Pointer->getType()->isAnyPointerType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6315 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6316 | ? diag::err_typecheck_pointer_arith_function_type |
| 6317 | : diag::ext_gnu_ptr_func_arith) |
| 6318 | << 0 /* one pointer */ << Pointer->getType()->getPointeeType() |
| 6319 | << 0 /* one pointer, so only one type */ |
| 6320 | << Pointer->getSourceRange(); |
| 6321 | } |
| 6322 | |
Richard Trieu | d9f1934 | 2011-09-12 18:08:02 +0000 | [diff] [blame] | 6323 | /// \brief Emit error if Operand is incomplete pointer type |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6324 | /// |
| 6325 | /// \returns True if pointer has incomplete type |
| 6326 | static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, |
| 6327 | Expr *Operand) { |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6328 | assert(Operand->getType()->isAnyPointerType() && |
| 6329 | !Operand->getType()->isDependentType()); |
| 6330 | QualType PointeeTy = Operand->getType()->getPointeeType(); |
| 6331 | return S.RequireCompleteType(Loc, PointeeTy, |
| 6332 | diag::err_typecheck_arithmetic_incomplete_type, |
| 6333 | PointeeTy, Operand->getSourceRange()); |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6334 | } |
| 6335 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6336 | /// \brief Check the validity of an arithmetic pointer operand. |
| 6337 | /// |
| 6338 | /// If the operand has pointer type, this code will check for pointer types |
| 6339 | /// which are invalid in arithmetic operations. These will be diagnosed |
| 6340 | /// appropriately, including whether or not the use is supported as an |
| 6341 | /// extension. |
| 6342 | /// |
| 6343 | /// \returns True when the operand is valid to use (even if as an extension). |
| 6344 | static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, |
| 6345 | Expr *Operand) { |
| 6346 | if (!Operand->getType()->isAnyPointerType()) return true; |
| 6347 | |
| 6348 | QualType PointeeTy = Operand->getType()->getPointeeType(); |
| 6349 | if (PointeeTy->isVoidType()) { |
| 6350 | diagnoseArithmeticOnVoidPointer(S, Loc, Operand); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6351 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6352 | } |
| 6353 | if (PointeeTy->isFunctionType()) { |
| 6354 | diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6355 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6356 | } |
| 6357 | |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6358 | if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6359 | |
| 6360 | return true; |
| 6361 | } |
| 6362 | |
| 6363 | /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer |
| 6364 | /// operands. |
| 6365 | /// |
| 6366 | /// This routine will diagnose any invalid arithmetic on pointer operands much |
| 6367 | /// like \see checkArithmeticOpPointerOperand. However, it has special logic |
| 6368 | /// for emitting a single diagnostic even for operations where both LHS and RHS |
| 6369 | /// are (potentially problematic) pointers. |
| 6370 | /// |
| 6371 | /// \returns True when the operand is valid to use (even if as an extension). |
| 6372 | static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6373 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6374 | bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); |
| 6375 | bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6376 | if (!isLHSPointer && !isRHSPointer) return true; |
| 6377 | |
| 6378 | QualType LHSPointeeTy, RHSPointeeTy; |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6379 | if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); |
| 6380 | if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6381 | |
| 6382 | // Check for arithmetic on pointers to incomplete types. |
| 6383 | bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); |
| 6384 | bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); |
| 6385 | if (isLHSVoidPtr || isRHSVoidPtr) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6386 | if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); |
| 6387 | else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); |
| 6388 | else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6389 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6390 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6391 | } |
| 6392 | |
| 6393 | bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); |
| 6394 | bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); |
| 6395 | if (isLHSFuncPtr || isRHSFuncPtr) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6396 | if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); |
| 6397 | else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, |
| 6398 | RHSExpr); |
| 6399 | else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6400 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6401 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6402 | } |
| 6403 | |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6404 | if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) |
| 6405 | return false; |
| 6406 | if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) |
| 6407 | return false; |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6408 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6409 | return true; |
| 6410 | } |
| 6411 | |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6412 | /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string |
| 6413 | /// literal. |
| 6414 | static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, |
| 6415 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6416 | StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); |
| 6417 | Expr* IndexExpr = RHSExpr; |
| 6418 | if (!StrExpr) { |
| 6419 | StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); |
| 6420 | IndexExpr = LHSExpr; |
| 6421 | } |
| 6422 | |
| 6423 | bool IsStringPlusInt = StrExpr && |
| 6424 | IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); |
| 6425 | if (!IsStringPlusInt) |
| 6426 | return; |
| 6427 | |
| 6428 | llvm::APSInt index; |
| 6429 | if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) { |
| 6430 | unsigned StrLenWithNull = StrExpr->getLength() + 1; |
| 6431 | if (index.isNonNegative() && |
| 6432 | index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull), |
| 6433 | index.isUnsigned())) |
| 6434 | return; |
| 6435 | } |
| 6436 | |
| 6437 | SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); |
| 6438 | Self.Diag(OpLoc, diag::warn_string_plus_int) |
| 6439 | << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); |
| 6440 | |
| 6441 | // Only print a fixit for "str" + int, not for int + "str". |
| 6442 | if (IndexExpr == RHSExpr) { |
| 6443 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); |
| 6444 | Self.Diag(OpLoc, diag::note_string_plus_int_silence) |
| 6445 | << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") |
| 6446 | << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") |
| 6447 | << FixItHint::CreateInsertion(EndLoc, "]"); |
| 6448 | } else |
| 6449 | Self.Diag(OpLoc, diag::note_string_plus_int_silence); |
| 6450 | } |
| 6451 | |
Richard Trieu | d9f1934 | 2011-09-12 18:08:02 +0000 | [diff] [blame] | 6452 | /// \brief Emit error when two pointers are incompatible. |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6453 | static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6454 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6455 | assert(LHSExpr->getType()->isAnyPointerType()); |
| 6456 | assert(RHSExpr->getType()->isAnyPointerType()); |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6457 | S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6458 | << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() |
| 6459 | << RHSExpr->getSourceRange(); |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6460 | } |
| 6461 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6462 | QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6463 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, |
| 6464 | QualType* CompLHSTy) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6465 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6466 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6467 | if (LHS.get()->getType()->isVectorType() || |
| 6468 | RHS.get()->getType()->isVectorType()) { |
| 6469 | QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6470 | if (CompLHSTy) *CompLHSTy = compType; |
| 6471 | return compType; |
| 6472 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 6473 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6474 | QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); |
| 6475 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6476 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6477 | |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6478 | // Diagnose "string literal" '+' int. |
| 6479 | if (Opc == BO_Add) |
| 6480 | diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); |
| 6481 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6482 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 6483 | if (!compType.isNull() && compType->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6484 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 6485 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6486 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6487 | |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6488 | // Type-checking. Ultimately the pointer's going to be in PExp; |
| 6489 | // note that we bias towards the LHS being the pointer. |
| 6490 | Expr *PExp = LHS.get(), *IExp = RHS.get(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6491 | |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6492 | bool isObjCPointer; |
| 6493 | if (PExp->getType()->isPointerType()) { |
| 6494 | isObjCPointer = false; |
| 6495 | } else if (PExp->getType()->isObjCObjectPointerType()) { |
| 6496 | isObjCPointer = true; |
| 6497 | } else { |
| 6498 | std::swap(PExp, IExp); |
| 6499 | if (PExp->getType()->isPointerType()) { |
| 6500 | isObjCPointer = false; |
| 6501 | } else if (PExp->getType()->isObjCObjectPointerType()) { |
| 6502 | isObjCPointer = true; |
| 6503 | } else { |
| 6504 | return InvalidOperands(Loc, LHS, RHS); |
| 6505 | } |
| 6506 | } |
| 6507 | assert(PExp->getType()->isAnyPointerType()); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6508 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6509 | if (!IExp->getType()->isIntegerType()) |
| 6510 | return InvalidOperands(Loc, LHS, RHS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6511 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6512 | if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) |
| 6513 | return QualType(); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6514 | |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6515 | if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp)) |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6516 | return QualType(); |
| 6517 | |
| 6518 | // Check array bounds for pointer arithemtic |
| 6519 | CheckArrayAccess(PExp, IExp); |
| 6520 | |
| 6521 | if (CompLHSTy) { |
| 6522 | QualType LHSTy = Context.isPromotableBitField(LHS.get()); |
| 6523 | if (LHSTy.isNull()) { |
| 6524 | LHSTy = LHS.get()->getType(); |
| 6525 | if (LHSTy->isPromotableIntegerType()) |
| 6526 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6527 | } |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6528 | *CompLHSTy = LHSTy; |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6529 | } |
| 6530 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6531 | return PExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6532 | } |
| 6533 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 6534 | // C99 6.5.6 |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6535 | QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6536 | SourceLocation Loc, |
| 6537 | QualType* CompLHSTy) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6538 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6539 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6540 | if (LHS.get()->getType()->isVectorType() || |
| 6541 | RHS.get()->getType()->isVectorType()) { |
| 6542 | QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6543 | if (CompLHSTy) *CompLHSTy = compType; |
| 6544 | return compType; |
| 6545 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6546 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6547 | QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); |
| 6548 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6549 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6550 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6551 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6552 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6553 | // Handle the common case first (both operands are arithmetic). |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 6554 | if (!compType.isNull() && compType->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6555 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 6556 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6557 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6558 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6559 | // Either ptr - int or ptr - ptr. |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6560 | if (LHS.get()->getType()->isAnyPointerType()) { |
| 6561 | QualType lpointee = LHS.get()->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6562 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 6563 | // Diagnose bad cases where we step over interface counts. |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 6564 | if (LHS.get()->getType()->isObjCObjectPointerType() && |
| 6565 | checkArithmeticOnObjCPointer(*this, Loc, LHS.get())) |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 6566 | return QualType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6567 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6568 | // The result type of a pointer-int computation is the pointer type. |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6569 | if (RHS.get()->getType()->isIntegerType()) { |
| 6570 | if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6571 | return QualType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 6572 | |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6573 | // Check array bounds for pointer arithemtic |
Richard Smith | 25b009a | 2011-12-16 19:31:14 +0000 | [diff] [blame] | 6574 | CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/0, |
| 6575 | /*AllowOnePastEnd*/true, /*IndexNegated*/true); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6576 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6577 | if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); |
| 6578 | return LHS.get()->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 6579 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6580 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6581 | // Handle pointer-pointer subtractions. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6582 | if (const PointerType *RHSPTy |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6583 | = RHS.get()->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 6584 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6585 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6586 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6587 | // Pointee types must be the same: C++ [expr.add] |
| 6588 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6589 | diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6590 | } |
| 6591 | } else { |
| 6592 | // Pointee types must be compatible C99 6.5.6p3 |
| 6593 | if (!Context.typesAreCompatible( |
| 6594 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 6595 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6596 | diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6597 | return QualType(); |
| 6598 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6599 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6600 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6601 | if (!checkArithmeticBinOpPointerOperands(*this, Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6602 | LHS.get(), RHS.get())) |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6603 | return QualType(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6604 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6605 | if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6606 | return Context.getPointerDiffType(); |
| 6607 | } |
| 6608 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6609 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6610 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6611 | } |
| 6612 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6613 | static bool isScopedEnumerationType(QualType T) { |
| 6614 | if (const EnumType *ET = dyn_cast<EnumType>(T)) |
| 6615 | return ET->getDecl()->isScoped(); |
| 6616 | return false; |
| 6617 | } |
| 6618 | |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6619 | static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6620 | SourceLocation Loc, unsigned Opc, |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6621 | QualType LHSType) { |
David Tweed | 7a83421 | 2013-01-07 16:43:27 +0000 | [diff] [blame] | 6622 | // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined), |
| 6623 | // so skip remaining warnings as we don't want to modify values within Sema. |
| 6624 | if (S.getLangOpts().OpenCL) |
| 6625 | return; |
| 6626 | |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6627 | llvm::APSInt Right; |
| 6628 | // Check right/shifter operand |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6629 | if (RHS.get()->isValueDependent() || |
| 6630 | !RHS.get()->isIntegerConstantExpr(Right, S.Context)) |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6631 | return; |
| 6632 | |
| 6633 | if (Right.isNegative()) { |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6634 | S.DiagRuntimeBehavior(Loc, RHS.get(), |
Ted Kremenek | 082bf7a | 2011-03-01 18:09:31 +0000 | [diff] [blame] | 6635 | S.PDiag(diag::warn_shift_negative) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6636 | << RHS.get()->getSourceRange()); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6637 | return; |
| 6638 | } |
| 6639 | llvm::APInt LeftBits(Right.getBitWidth(), |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6640 | S.Context.getTypeSize(LHS.get()->getType())); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6641 | if (Right.uge(LeftBits)) { |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6642 | S.DiagRuntimeBehavior(Loc, RHS.get(), |
Ted Kremenek | 425a31e | 2011-03-01 19:13:22 +0000 | [diff] [blame] | 6643 | S.PDiag(diag::warn_shift_gt_typewidth) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6644 | << RHS.get()->getSourceRange()); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6645 | return; |
| 6646 | } |
| 6647 | if (Opc != BO_Shl) |
| 6648 | return; |
| 6649 | |
| 6650 | // When left shifting an ICE which is signed, we can check for overflow which |
| 6651 | // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned |
| 6652 | // integers have defined behavior modulo one more than the maximum value |
| 6653 | // representable in the result type, so never warn for those. |
| 6654 | llvm::APSInt Left; |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6655 | if (LHS.get()->isValueDependent() || |
| 6656 | !LHS.get()->isIntegerConstantExpr(Left, S.Context) || |
| 6657 | LHSType->hasUnsignedIntegerRepresentation()) |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6658 | return; |
| 6659 | llvm::APInt ResultBits = |
| 6660 | static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); |
| 6661 | if (LeftBits.uge(ResultBits)) |
| 6662 | return; |
| 6663 | llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); |
| 6664 | Result = Result.shl(Right); |
| 6665 | |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6666 | // Print the bit representation of the signed integer as an unsigned |
| 6667 | // hexadecimal number. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 6668 | SmallString<40> HexResult; |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6669 | Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); |
| 6670 | |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6671 | // If we are only missing a sign bit, this is less likely to result in actual |
| 6672 | // bugs -- if the result is cast back to an unsigned type, it will have the |
| 6673 | // expected value. Thus we place this behind a different warning that can be |
| 6674 | // turned off separately if needed. |
| 6675 | if (LeftBits == ResultBits - 1) { |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6676 | S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6677 | << HexResult.str() << LHSType |
| 6678 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6679 | return; |
| 6680 | } |
| 6681 | |
| 6682 | S.Diag(Loc, diag::warn_shift_result_gt_typewidth) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6683 | << HexResult.str() << Result.getMinSignedBits() << LHSType |
| 6684 | << Left.getBitWidth() << LHS.get()->getSourceRange() |
| 6685 | << RHS.get()->getSourceRange(); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6686 | } |
| 6687 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 6688 | // C99 6.5.7 |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6689 | QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6690 | SourceLocation Loc, unsigned Opc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6691 | bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6692 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6693 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6694 | // C99 6.5.7p2: Each of the operands shall have integer type. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6695 | if (!LHS.get()->getType()->hasIntegerRepresentation() || |
| 6696 | !RHS.get()->getType()->hasIntegerRepresentation()) |
| 6697 | return InvalidOperands(Loc, LHS, RHS); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6698 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6699 | // C++0x: Don't allow scoped enums. FIXME: Use something better than |
| 6700 | // hasIntegerRepresentation() above instead of this. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6701 | if (isScopedEnumerationType(LHS.get()->getType()) || |
| 6702 | isScopedEnumerationType(RHS.get()->getType())) { |
| 6703 | return InvalidOperands(Loc, LHS, RHS); |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6704 | } |
| 6705 | |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 6706 | // Vector shifts promote their scalar inputs to vector type. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6707 | if (LHS.get()->getType()->isVectorType() || |
| 6708 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6709 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 6710 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6711 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 6712 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6713 | |
John McCall | 1bc80af | 2010-12-16 19:28:59 +0000 | [diff] [blame] | 6714 | // For the LHS, do usual unary conversions, but then reset them away |
| 6715 | // if this is a compound assignment. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6716 | ExprResult OldLHS = LHS; |
| 6717 | LHS = UsualUnaryConversions(LHS.take()); |
| 6718 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6719 | return QualType(); |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6720 | QualType LHSType = LHS.get()->getType(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6721 | if (IsCompAssign) LHS = OldLHS; |
John McCall | 1bc80af | 2010-12-16 19:28:59 +0000 | [diff] [blame] | 6722 | |
| 6723 | // The RHS is simpler. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6724 | RHS = UsualUnaryConversions(RHS.take()); |
| 6725 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6726 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6727 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 6728 | // Sanity-check shift operands |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6729 | DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 6730 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6731 | // "The type of the result is that of the promoted left operand." |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6732 | return LHSType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6733 | } |
| 6734 | |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 6735 | static bool IsWithinTemplateSpecialization(Decl *D) { |
| 6736 | if (DeclContext *DC = D->getDeclContext()) { |
| 6737 | if (isa<ClassTemplateSpecializationDecl>(DC)) |
| 6738 | return true; |
| 6739 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) |
| 6740 | return FD->isFunctionTemplateSpecialization(); |
| 6741 | } |
| 6742 | return false; |
| 6743 | } |
| 6744 | |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6745 | /// If two different enums are compared, raise a warning. |
Ted Kremenek | 16bdd3b | 2013-01-30 19:10:21 +0000 | [diff] [blame] | 6746 | static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS, |
| 6747 | Expr *RHS) { |
| 6748 | QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType(); |
| 6749 | QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType(); |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6750 | |
| 6751 | const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); |
| 6752 | if (!LHSEnumType) |
| 6753 | return; |
| 6754 | const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); |
| 6755 | if (!RHSEnumType) |
| 6756 | return; |
| 6757 | |
| 6758 | // Ignore anonymous enums. |
| 6759 | if (!LHSEnumType->getDecl()->getIdentifier()) |
| 6760 | return; |
| 6761 | if (!RHSEnumType->getDecl()->getIdentifier()) |
| 6762 | return; |
| 6763 | |
| 6764 | if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) |
| 6765 | return; |
| 6766 | |
| 6767 | S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) |
| 6768 | << LHSStrippedType << RHSStrippedType |
Ted Kremenek | 16bdd3b | 2013-01-30 19:10:21 +0000 | [diff] [blame] | 6769 | << LHS->getSourceRange() << RHS->getSourceRange(); |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6770 | } |
| 6771 | |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6772 | /// \brief Diagnose bad pointer comparisons. |
| 6773 | static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6774 | ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6775 | bool IsError) { |
| 6776 | S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6777 | : diag::ext_typecheck_comparison_of_distinct_pointers) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6778 | << LHS.get()->getType() << RHS.get()->getType() |
| 6779 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6780 | } |
| 6781 | |
| 6782 | /// \brief Returns false if the pointers are converted to a composite type, |
| 6783 | /// true otherwise. |
| 6784 | static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6785 | ExprResult &LHS, ExprResult &RHS) { |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6786 | // C++ [expr.rel]p2: |
| 6787 | // [...] Pointer conversions (4.10) and qualification |
| 6788 | // conversions (4.4) are performed on pointer operands (or on |
| 6789 | // a pointer operand and a null pointer constant) to bring |
| 6790 | // them to their composite pointer type. [...] |
| 6791 | // |
| 6792 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
| 6793 | // comparisons of pointers. |
| 6794 | |
| 6795 | // C++ [expr.eq]p2: |
| 6796 | // In addition, pointers to members can be compared, or a pointer to |
| 6797 | // member and a null pointer constant. Pointer to member conversions |
| 6798 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 6799 | // them to a common type. If one operand is a null pointer constant, |
| 6800 | // the common type is the type of the other operand. Otherwise, the |
| 6801 | // common type is a pointer to member type similar (4.4) to the type |
| 6802 | // of one of the operands, with a cv-qualification signature (4.4) |
| 6803 | // that is the union of the cv-qualification signatures of the operand |
| 6804 | // types. |
| 6805 | |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6806 | QualType LHSType = LHS.get()->getType(); |
| 6807 | QualType RHSType = RHS.get()->getType(); |
| 6808 | assert((LHSType->isPointerType() && RHSType->isPointerType()) || |
| 6809 | (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6810 | |
| 6811 | bool NonStandardCompositeType = false; |
Richard Trieu | 43dff1b | 2011-09-02 21:44:27 +0000 | [diff] [blame] | 6812 | bool *BoolPtr = S.isSFINAEContext() ? 0 : &NonStandardCompositeType; |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6813 | QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6814 | if (T.isNull()) { |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6815 | diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6816 | return true; |
| 6817 | } |
| 6818 | |
| 6819 | if (NonStandardCompositeType) |
| 6820 | S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6821 | << LHSType << RHSType << T << LHS.get()->getSourceRange() |
| 6822 | << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6823 | |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6824 | LHS = S.ImpCastExprToType(LHS.take(), T, CK_BitCast); |
| 6825 | RHS = S.ImpCastExprToType(RHS.take(), T, CK_BitCast); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6826 | return false; |
| 6827 | } |
| 6828 | |
| 6829 | static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6830 | ExprResult &LHS, |
| 6831 | ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6832 | bool IsError) { |
| 6833 | S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void |
| 6834 | : diag::ext_typecheck_comparison_of_fptr_to_void) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6835 | << LHS.get()->getType() << RHS.get()->getType() |
| 6836 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6837 | } |
| 6838 | |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6839 | static bool isObjCObjectLiteral(ExprResult &E) { |
Jordan Rose | 87da0b7 | 2012-11-09 23:55:21 +0000 | [diff] [blame] | 6840 | switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) { |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6841 | case Stmt::ObjCArrayLiteralClass: |
| 6842 | case Stmt::ObjCDictionaryLiteralClass: |
| 6843 | case Stmt::ObjCStringLiteralClass: |
| 6844 | case Stmt::ObjCBoxedExprClass: |
| 6845 | return true; |
| 6846 | default: |
| 6847 | // Note that ObjCBoolLiteral is NOT an object literal! |
| 6848 | return false; |
| 6849 | } |
| 6850 | } |
| 6851 | |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6852 | static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) { |
Benjamin Kramer | 2e85e74 | 2013-02-15 15:17:50 +0000 | [diff] [blame] | 6853 | const ObjCObjectPointerType *Type = |
| 6854 | LHS->getType()->getAs<ObjCObjectPointerType>(); |
| 6855 | |
| 6856 | // If this is not actually an Objective-C object, bail out. |
| 6857 | if (!Type) |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6858 | return false; |
Benjamin Kramer | 2e85e74 | 2013-02-15 15:17:50 +0000 | [diff] [blame] | 6859 | |
| 6860 | // Get the LHS object's interface type. |
| 6861 | QualType InterfaceType = Type->getPointeeType(); |
| 6862 | if (const ObjCObjectType *iQFaceTy = |
| 6863 | InterfaceType->getAsObjCQualifiedInterfaceType()) |
| 6864 | InterfaceType = iQFaceTy->getBaseType(); |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6865 | |
| 6866 | // If the RHS isn't an Objective-C object, bail out. |
| 6867 | if (!RHS->getType()->isObjCObjectPointerType()) |
| 6868 | return false; |
| 6869 | |
| 6870 | // Try to find the -isEqual: method. |
| 6871 | Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector(); |
| 6872 | ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, |
| 6873 | InterfaceType, |
| 6874 | /*instance=*/true); |
| 6875 | if (!Method) { |
| 6876 | if (Type->isObjCIdType()) { |
| 6877 | // For 'id', just check the global pool. |
| 6878 | Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(), |
| 6879 | /*receiverId=*/true, |
| 6880 | /*warn=*/false); |
| 6881 | } else { |
| 6882 | // Check protocols. |
Benjamin Kramer | 2e85e74 | 2013-02-15 15:17:50 +0000 | [diff] [blame] | 6883 | Method = S.LookupMethodInQualifiedType(IsEqualSel, Type, |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6884 | /*instance=*/true); |
| 6885 | } |
| 6886 | } |
| 6887 | |
| 6888 | if (!Method) |
| 6889 | return false; |
| 6890 | |
| 6891 | QualType T = Method->param_begin()[0]->getType(); |
| 6892 | if (!T->isObjCObjectPointerType()) |
| 6893 | return false; |
| 6894 | |
| 6895 | QualType R = Method->getResultType(); |
| 6896 | if (!R->isScalarType()) |
| 6897 | return false; |
| 6898 | |
| 6899 | return true; |
| 6900 | } |
| 6901 | |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6902 | Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) { |
| 6903 | FromE = FromE->IgnoreParenImpCasts(); |
| 6904 | switch (FromE->getStmtClass()) { |
| 6905 | default: |
| 6906 | break; |
| 6907 | case Stmt::ObjCStringLiteralClass: |
| 6908 | // "string literal" |
| 6909 | return LK_String; |
| 6910 | case Stmt::ObjCArrayLiteralClass: |
| 6911 | // "array literal" |
| 6912 | return LK_Array; |
| 6913 | case Stmt::ObjCDictionaryLiteralClass: |
| 6914 | // "dictionary literal" |
| 6915 | return LK_Dictionary; |
Ted Kremenek | d3292c8 | 2012-12-21 22:46:35 +0000 | [diff] [blame] | 6916 | case Stmt::BlockExprClass: |
| 6917 | return LK_Block; |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6918 | case Stmt::ObjCBoxedExprClass: { |
Ted Kremenek | f530ff7 | 2012-12-21 21:59:39 +0000 | [diff] [blame] | 6919 | Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6920 | switch (Inner->getStmtClass()) { |
| 6921 | case Stmt::IntegerLiteralClass: |
| 6922 | case Stmt::FloatingLiteralClass: |
| 6923 | case Stmt::CharacterLiteralClass: |
| 6924 | case Stmt::ObjCBoolLiteralExprClass: |
| 6925 | case Stmt::CXXBoolLiteralExprClass: |
| 6926 | // "numeric literal" |
| 6927 | return LK_Numeric; |
| 6928 | case Stmt::ImplicitCastExprClass: { |
| 6929 | CastKind CK = cast<CastExpr>(Inner)->getCastKind(); |
| 6930 | // Boolean literals can be represented by implicit casts. |
| 6931 | if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast) |
| 6932 | return LK_Numeric; |
| 6933 | break; |
| 6934 | } |
| 6935 | default: |
| 6936 | break; |
| 6937 | } |
| 6938 | return LK_Boxed; |
| 6939 | } |
| 6940 | } |
| 6941 | return LK_None; |
| 6942 | } |
| 6943 | |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6944 | static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc, |
| 6945 | ExprResult &LHS, ExprResult &RHS, |
| 6946 | BinaryOperator::Opcode Opc){ |
Jordan Rose | d5209ae | 2012-07-17 17:46:48 +0000 | [diff] [blame] | 6947 | Expr *Literal; |
| 6948 | Expr *Other; |
| 6949 | if (isObjCObjectLiteral(LHS)) { |
| 6950 | Literal = LHS.get(); |
| 6951 | Other = RHS.get(); |
| 6952 | } else { |
| 6953 | Literal = RHS.get(); |
| 6954 | Other = LHS.get(); |
| 6955 | } |
| 6956 | |
| 6957 | // Don't warn on comparisons against nil. |
| 6958 | Other = Other->IgnoreParenCasts(); |
| 6959 | if (Other->isNullPointerConstant(S.getASTContext(), |
| 6960 | Expr::NPC_ValueDependentIsNotNull)) |
| 6961 | return; |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6962 | |
Jordan Rose | eec207f | 2012-07-17 17:46:44 +0000 | [diff] [blame] | 6963 | // This should be kept in sync with warn_objc_literal_comparison. |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6964 | // LK_String should always be after the other literals, since it has its own |
| 6965 | // warning flag. |
| 6966 | Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal); |
Ted Kremenek | d3292c8 | 2012-12-21 22:46:35 +0000 | [diff] [blame] | 6967 | assert(LiteralKind != Sema::LK_Block); |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6968 | if (LiteralKind == Sema::LK_None) { |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6969 | llvm_unreachable("Unknown Objective-C object literal kind"); |
| 6970 | } |
| 6971 | |
Ted Kremenek | 3ee069b | 2012-12-21 21:59:36 +0000 | [diff] [blame] | 6972 | if (LiteralKind == Sema::LK_String) |
Jordan Rose | eec207f | 2012-07-17 17:46:44 +0000 | [diff] [blame] | 6973 | S.Diag(Loc, diag::warn_objc_string_literal_comparison) |
| 6974 | << Literal->getSourceRange(); |
| 6975 | else |
| 6976 | S.Diag(Loc, diag::warn_objc_literal_comparison) |
| 6977 | << LiteralKind << Literal->getSourceRange(); |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6978 | |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6979 | if (BinaryOperator::isEqualityOp(Opc) && |
| 6980 | hasIsEqualMethod(S, LHS.get(), RHS.get())) { |
| 6981 | SourceLocation Start = LHS.get()->getLocStart(); |
| 6982 | SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd()); |
Fariborz Jahanian | 41f7b1a | 2013-02-01 20:04:49 +0000 | [diff] [blame] | 6983 | CharSourceRange OpRange = |
| 6984 | CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc)); |
Jordan Rose | 6deae7c | 2012-07-09 16:54:44 +0000 | [diff] [blame] | 6985 | |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6986 | S.Diag(Loc, diag::note_objc_literal_comparison_isequal) |
| 6987 | << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![") |
Fariborz Jahanian | 41f7b1a | 2013-02-01 20:04:49 +0000 | [diff] [blame] | 6988 | << FixItHint::CreateReplacement(OpRange, " isEqual:") |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 6989 | << FixItHint::CreateInsertion(End, "]"); |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6990 | } |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 6991 | } |
| 6992 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 6993 | // C99 6.5.8, C++ [expr.rel] |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6994 | QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6995 | SourceLocation Loc, unsigned OpaqueOpc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6996 | bool IsRelational) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6997 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); |
| 6998 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6999 | BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7000 | |
Chris Lattner | 02dd4b1 | 2009-12-05 05:40:13 +0000 | [diff] [blame] | 7001 | // Handle vector comparisons separately. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7002 | if (LHS.get()->getType()->isVectorType() || |
| 7003 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7004 | return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7005 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7006 | QualType LHSType = LHS.get()->getType(); |
| 7007 | QualType RHSType = RHS.get()->getType(); |
Benjamin Kramer | fec0959 | 2011-09-03 08:46:20 +0000 | [diff] [blame] | 7008 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7009 | Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); |
| 7010 | Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); |
Chandler Carruth | 543cb65 | 2011-02-17 08:37:06 +0000 | [diff] [blame] | 7011 | |
Ted Kremenek | 16bdd3b | 2013-01-30 19:10:21 +0000 | [diff] [blame] | 7012 | checkEnumComparison(*this, Loc, LHS.get(), RHS.get()); |
Chandler Carruth | 543cb65 | 2011-02-17 08:37:06 +0000 | [diff] [blame] | 7013 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7014 | if (!LHSType->hasFloatingRepresentation() && |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7015 | !(LHSType->isBlockPointerType() && IsRelational) && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7016 | !LHS.get()->getLocStart().isMacroID() && |
| 7017 | !RHS.get()->getLocStart().isMacroID()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 7018 | // For non-floating point types, check for self-comparisons of the form |
| 7019 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 7020 | // often indicate logic errors in the program. |
Chandler Carruth | 64d092c | 2010-07-12 06:23:38 +0000 | [diff] [blame] | 7021 | // |
| 7022 | // NOTE: Don't warn about comparison expressions resulting from macro |
| 7023 | // expansion. Also don't warn about comparisons which are only self |
| 7024 | // comparisons within a template specialization. The warnings should catch |
| 7025 | // obvious cases in the definition of the template anyways. The idea is to |
| 7026 | // warn when the typed comparison operator will always evaluate to the same |
| 7027 | // result. |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 7028 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) { |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7029 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) { |
Ted Kremenek | fbcb0eb | 2010-09-16 00:03:01 +0000 | [diff] [blame] | 7030 | if (DRL->getDecl() == DRR->getDecl() && |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 7031 | !IsWithinTemplateSpecialization(DRL->getDecl())) { |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 7032 | DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7033 | << 0 // self- |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7034 | << (Opc == BO_EQ |
| 7035 | || Opc == BO_LE |
| 7036 | || Opc == BO_GE)); |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7037 | } else if (LHSType->isArrayType() && RHSType->isArrayType() && |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7038 | !DRL->getDecl()->getType()->isReferenceType() && |
| 7039 | !DRR->getDecl()->getType()->isReferenceType()) { |
| 7040 | // what is it always going to eval to? |
| 7041 | char always_evals_to; |
| 7042 | switch(Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7043 | case BO_EQ: // e.g. array1 == array2 |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7044 | always_evals_to = 0; // false |
| 7045 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7046 | case BO_NE: // e.g. array1 != array2 |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7047 | always_evals_to = 1; // true |
| 7048 | break; |
| 7049 | default: |
| 7050 | // best we can say is 'a constant' |
| 7051 | always_evals_to = 2; // e.g. array1 <= array2 |
| 7052 | break; |
| 7053 | } |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 7054 | DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7055 | << 1 // array |
| 7056 | << always_evals_to); |
| 7057 | } |
| 7058 | } |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 7059 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7060 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 7061 | if (isa<CastExpr>(LHSStripped)) |
| 7062 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 7063 | if (isa<CastExpr>(RHSStripped)) |
| 7064 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7065 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 7066 | // Warn about comparisons against a string constant (unless the other |
| 7067 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7068 | Expr *literalString = 0; |
| 7069 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 7070 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7071 | !RHSStripped->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 7072 | Expr::NPC_ValueDependentIsNull)) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7073 | literalString = LHS.get(); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7074 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 7075 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 7076 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7077 | !LHSStripped->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 7078 | Expr::NPC_ValueDependentIsNull)) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7079 | literalString = RHS.get(); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7080 | literalStringStripped = RHSStripped; |
| 7081 | } |
| 7082 | |
| 7083 | if (literalString) { |
| 7084 | std::string resultComparison; |
| 7085 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7086 | case BO_LT: resultComparison = ") < 0"; break; |
| 7087 | case BO_GT: resultComparison = ") > 0"; break; |
| 7088 | case BO_LE: resultComparison = ") <= 0"; break; |
| 7089 | case BO_GE: resultComparison = ") >= 0"; break; |
| 7090 | case BO_EQ: resultComparison = ") == 0"; break; |
| 7091 | case BO_NE: resultComparison = ") != 0"; break; |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 7092 | default: llvm_unreachable("Invalid comparison operator"); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7093 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7094 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 7095 | DiagRuntimeBehavior(Loc, 0, |
Douglas Gregor | d1e4d9b | 2010-01-12 23:18:54 +0000 | [diff] [blame] | 7096 | PDiag(diag::warn_stringcompare) |
| 7097 | << isa<ObjCEncodeExpr>(literalStringStripped) |
Ted Kremenek | 03a4bee | 2010-04-09 20:26:53 +0000 | [diff] [blame] | 7098 | << literalString->getSourceRange()); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 7099 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 7100 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7101 | |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7102 | // C99 6.5.8p3 / C99 6.5.9p4 |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7103 | if (LHS.get()->getType()->isArithmeticType() && |
| 7104 | RHS.get()->getType()->isArithmeticType()) { |
| 7105 | UsualArithmeticConversions(LHS, RHS); |
| 7106 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7107 | return QualType(); |
| 7108 | } |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7109 | else { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7110 | LHS = UsualUnaryConversions(LHS.take()); |
| 7111 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7112 | return QualType(); |
| 7113 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7114 | RHS = UsualUnaryConversions(RHS.take()); |
| 7115 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7116 | return QualType(); |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7117 | } |
| 7118 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7119 | LHSType = LHS.get()->getType(); |
| 7120 | RHSType = RHS.get()->getType(); |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7121 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7122 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Argyrios Kyrtzidis | 16f744b | 2011-02-18 20:55:15 +0000 | [diff] [blame] | 7123 | QualType ResultTy = Context.getLogicalOperationType(); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7124 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7125 | if (IsRelational) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7126 | if (LHSType->isRealType() && RHSType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7127 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 7128 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 7129 | // Check for comparisons of floating point operands using != and ==. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7130 | if (LHSType->hasFloatingRepresentation()) |
| 7131 | CheckFloatComparison(Loc, LHS.get(), RHS.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7132 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7133 | if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7134 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 7135 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7136 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7137 | bool LHSIsNull = LHS.get()->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 7138 | Expr::NPC_ValueDependentIsNull); |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7139 | bool RHSIsNull = RHS.get()->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 7140 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7141 | |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7142 | // All of the following pointer-related warnings are GCC extensions, except |
| 7143 | // when handling null pointer constants. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7144 | if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 7145 | QualType LCanPointeeTy = |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7146 | LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 7147 | QualType RCanPointeeTy = |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7148 | RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7149 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7150 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7151 | if (LCanPointeeTy == RCanPointeeTy) |
| 7152 | return ResultTy; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7153 | if (!IsRelational && |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 7154 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 7155 | // Valid unless comparison between non-null pointer and function pointer |
| 7156 | // This is a gcc extension compatibility comparison. |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7157 | // In a SFINAE context, we treat this as a hard error to maintain |
| 7158 | // conformance with the C++ standard. |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 7159 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 7160 | && !LHSIsNull && !RHSIsNull) { |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7161 | diagnoseFunctionPointerToVoidComparison( |
David Blaikie | 0adb175 | 2013-02-21 06:05:05 +0000 | [diff] [blame] | 7162 | *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext()); |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7163 | |
| 7164 | if (isSFINAEContext()) |
| 7165 | return QualType(); |
| 7166 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7167 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 7168 | return ResultTy; |
| 7169 | } |
| 7170 | } |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 7171 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7172 | if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 7173 | return QualType(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7174 | else |
| 7175 | return ResultTy; |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 7176 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7177 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 7178 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 7179 | RCanPointeeTy.getUnqualifiedType())) { |
| 7180 | // Valid unless a relational comparison of function pointers |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7181 | if (IsRelational && LCanPointeeTy->isFunctionType()) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7182 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7183 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 7184 | << RHS.get()->getSourceRange(); |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7185 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7186 | } else if (!IsRelational && |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7187 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 7188 | // Valid unless comparison between non-null pointer and function pointer |
| 7189 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7190 | && !LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7191 | diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7192 | /*isError*/false); |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 7193 | } else { |
| 7194 | // Invalid |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7195 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7196 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7197 | if (LCanPointeeTy != RCanPointeeTy) { |
| 7198 | if (LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7199 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7200 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7201 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7202 | } |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7203 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 7204 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7205 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7206 | if (getLangOpts().CPlusPlus) { |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 7207 | // Comparison of nullptr_t with itself. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7208 | if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 7209 | return ResultTy; |
| 7210 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7211 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 7212 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7213 | if (RHSIsNull && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7214 | ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7215 | (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7216 | (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { |
| 7217 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 7218 | LHSType->isMemberPointerType() |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7219 | ? CK_NullToMemberPointer |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 7220 | : CK_NullToPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 7221 | return ResultTy; |
| 7222 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 7223 | if (LHSIsNull && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7224 | ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7225 | (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7226 | (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { |
| 7227 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 7228 | RHSType->isMemberPointerType() |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7229 | ? CK_NullToMemberPointer |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 7230 | : CK_NullToPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 7231 | return ResultTy; |
| 7232 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 7233 | |
| 7234 | // Comparison of member pointers. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7235 | if (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7236 | LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { |
| 7237 | if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 7238 | return QualType(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7239 | else |
| 7240 | return ResultTy; |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 7241 | } |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 7242 | |
| 7243 | // Handle scoped enumeration types specifically, since they don't promote |
| 7244 | // to integers. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7245 | if (LHS.get()->getType()->isEnumeralType() && |
| 7246 | Context.hasSameUnqualifiedType(LHS.get()->getType(), |
| 7247 | RHS.get()->getType())) |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 7248 | return ResultTy; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 7249 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7250 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 7251 | // Handle block pointer types. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7252 | if (!IsRelational && LHSType->isBlockPointerType() && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7253 | RHSType->isBlockPointerType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7254 | QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); |
| 7255 | QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7256 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 7257 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 7258 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 7259 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7260 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 7261 | << RHS.get()->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 7262 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7263 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7264 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 7265 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7266 | |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 7267 | // Allow block pointers to be compared with null pointer constants. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7268 | if (!IsRelational |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7269 | && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) |
| 7270 | || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 7271 | if (!LHSIsNull && !RHSIsNull) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7272 | if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 7273 | ->getPointeeType()->isVoidType()) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7274 | || (LHSType->isPointerType() && LHSType->castAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 7275 | ->getPointeeType()->isVoidType()))) |
| 7276 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7277 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 7278 | << RHS.get()->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 7279 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7280 | if (LHSIsNull && !RHSIsNull) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7281 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 7282 | RHSType->isPointerType() ? CK_BitCast |
| 7283 | : CK_AnyPointerToBlockPointerCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7284 | else |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7285 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 7286 | LHSType->isPointerType() ? CK_BitCast |
| 7287 | : CK_AnyPointerToBlockPointerCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7288 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 7289 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 7290 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7291 | if (LHSType->isObjCObjectPointerType() || |
| 7292 | RHSType->isObjCObjectPointerType()) { |
| 7293 | const PointerType *LPT = LHSType->getAs<PointerType>(); |
| 7294 | const PointerType *RPT = RHSType->getAs<PointerType>(); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7295 | if (LPT || RPT) { |
| 7296 | bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; |
| 7297 | bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7298 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 7299 | if (!LPtrToVoid && !RPtrToVoid && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7300 | !Context.typesAreCompatible(LHSType, RHSType)) { |
| 7301 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7302 | /*isError*/false); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 7303 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7304 | if (LHSIsNull && !RHSIsNull) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7305 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 7306 | RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7307 | else |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 7308 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 7309 | LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7310 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 7311 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7312 | if (LHSType->isObjCObjectPointerType() && |
| 7313 | RHSType->isObjCObjectPointerType()) { |
| 7314 | if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) |
| 7315 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 7316 | /*isError*/false); |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 7317 | if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS)) |
Jordan Rose | 8d872ca | 2012-07-17 17:46:40 +0000 | [diff] [blame] | 7318 | diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc); |
Jordan Rose | 9f63a45 | 2012-06-08 21:14:25 +0000 | [diff] [blame] | 7319 | |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7320 | if (LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7321 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 7322 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7323 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7324 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 7325 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 7326 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7327 | if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || |
| 7328 | (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7329 | unsigned DiagID = 0; |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7330 | bool isError = false; |
Douglas Gregor | 6db351a | 2012-09-14 04:35:37 +0000 | [diff] [blame] | 7331 | if (LangOpts.DebuggerSupport) { |
| 7332 | // Under a debugger, allow the comparison of pointers to integers, |
| 7333 | // since users tend to want to compare addresses. |
| 7334 | } else if ((LHSIsNull && LHSType->isIntegerType()) || |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7335 | (RHSIsNull && RHSType->isIntegerType())) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7336 | if (IsRelational && !getLangOpts().CPlusPlus) |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7337 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7338 | } else if (IsRelational && !getLangOpts().CPlusPlus) |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7339 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7340 | else if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7341 | DiagID = diag::err_typecheck_comparison_of_pointer_integer; |
| 7342 | isError = true; |
| 7343 | } else |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7344 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7345 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7346 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 7347 | Diag(Loc, DiagID) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7348 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 7349 | << RHS.get()->getSourceRange(); |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7350 | if (isError) |
| 7351 | return QualType(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 7352 | } |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7353 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7354 | if (LHSType->isIntegerType()) |
| 7355 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 7356 | LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 7357 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7358 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 7359 | RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7360 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7361 | } |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 7362 | |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 7363 | // Handle block pointers. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7364 | if (!IsRelational && RHSIsNull |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7365 | && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { |
| 7366 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7367 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 7368 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7369 | if (!IsRelational && LHSIsNull |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7370 | && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { |
| 7371 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_NullToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 7372 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 7373 | } |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 7374 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 7375 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7376 | } |
| 7377 | |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7378 | |
| 7379 | // Return a signed type that is of identical size and number of elements. |
| 7380 | // For floating point vectors, return an integer type of identical size |
| 7381 | // and number of elements. |
| 7382 | QualType Sema::GetSignedVectorType(QualType V) { |
| 7383 | const VectorType *VTy = V->getAs<VectorType>(); |
| 7384 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
| 7385 | if (TypeSize == Context.getTypeSize(Context.CharTy)) |
| 7386 | return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); |
| 7387 | else if (TypeSize == Context.getTypeSize(Context.ShortTy)) |
| 7388 | return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); |
| 7389 | else if (TypeSize == Context.getTypeSize(Context.IntTy)) |
| 7390 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
| 7391 | else if (TypeSize == Context.getTypeSize(Context.LongTy)) |
| 7392 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 7393 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
| 7394 | "Unhandled vector element size in vector compare"); |
| 7395 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 7396 | } |
| 7397 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7398 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7399 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7400 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 7401 | /// types. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7402 | QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7403 | SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7404 | bool IsRelational) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7405 | // Check to make sure we're operating on vectors of the same type and width, |
| 7406 | // Allowing one side to be a scalar of element type. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7407 | QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7408 | if (vType.isNull()) |
| 7409 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7410 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7411 | QualType LHSType = LHS.get()->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7412 | |
Anton Yartsev | 7870b13 | 2011-03-27 15:36:07 +0000 | [diff] [blame] | 7413 | // If AltiVec, the comparison results in a numeric type, i.e. |
| 7414 | // bool for C++, int for C |
Anton Yartsev | 6305f72 | 2011-03-28 21:00:05 +0000 | [diff] [blame] | 7415 | if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) |
Anton Yartsev | 7870b13 | 2011-03-27 15:36:07 +0000 | [diff] [blame] | 7416 | return Context.getLogicalOperationType(); |
| 7417 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7418 | // For non-floating point types, check for self-comparisons of the form |
| 7419 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 7420 | // often indicate logic errors in the program. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7421 | if (!LHSType->hasFloatingRepresentation()) { |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 7422 | if (DeclRefExpr* DRL |
| 7423 | = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) |
| 7424 | if (DeclRefExpr* DRR |
| 7425 | = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7426 | if (DRL->getDecl() == DRR->getDecl()) |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 7427 | DiagRuntimeBehavior(Loc, 0, |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 7428 | PDiag(diag::warn_comparison_always) |
| 7429 | << 0 // self- |
| 7430 | << 2 // "a constant" |
| 7431 | ); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7432 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7433 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7434 | // Check for comparisons of floating point operands using != and ==. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7435 | if (!IsRelational && LHSType->hasFloatingRepresentation()) { |
David Blaikie | 52e4c60 | 2012-01-16 05:16:03 +0000 | [diff] [blame] | 7436 | assert (RHS.get()->getType()->hasFloatingRepresentation()); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7437 | CheckFloatComparison(Loc, LHS.get(), RHS.get()); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7438 | } |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7439 | |
| 7440 | // Return a signed type for the vector. |
| 7441 | return GetSignedVectorType(LHSType); |
| 7442 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7443 | |
Tanya Lattner | b0f9dd2 | 2012-01-19 01:16:16 +0000 | [diff] [blame] | 7444 | QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, |
| 7445 | SourceLocation Loc) { |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7446 | // Ensure that either both operands are of the same vector type, or |
| 7447 | // one operand is of a vector type and the other is of its element type. |
| 7448 | QualType vType = CheckVectorOperands(LHS, RHS, Loc, false); |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 7449 | if (vType.isNull()) |
| 7450 | return InvalidOperands(Loc, LHS, RHS); |
| 7451 | if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 && |
| 7452 | vType->hasFloatingRepresentation()) |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7453 | return InvalidOperands(Loc, LHS, RHS); |
| 7454 | |
| 7455 | return GetSignedVectorType(LHS.get()->getType()); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7456 | } |
| 7457 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7458 | inline QualType Sema::CheckBitwiseOperands( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7459 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 7460 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 7461 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7462 | if (LHS.get()->getType()->isVectorType() || |
| 7463 | RHS.get()->getType()->isVectorType()) { |
| 7464 | if (LHS.get()->getType()->hasIntegerRepresentation() && |
| 7465 | RHS.get()->getType()->hasIntegerRepresentation()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7466 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 7467 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7468 | return InvalidOperands(Loc, LHS, RHS); |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 7469 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 7470 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7471 | ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); |
| 7472 | QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7473 | IsCompAssign); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7474 | if (LHSResult.isInvalid() || RHSResult.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7475 | return QualType(); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7476 | LHS = LHSResult.take(); |
| 7477 | RHS = RHSResult.take(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7478 | |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 7479 | if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 7480 | return compType; |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7481 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7482 | } |
| 7483 | |
| 7484 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7485 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { |
Chris Lattner | 90a8f27 | 2010-07-13 19:41:32 +0000 | [diff] [blame] | 7486 | |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7487 | // Check vector operands differently. |
| 7488 | if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType()) |
| 7489 | return CheckVectorLogicalOperands(LHS, RHS, Loc); |
| 7490 | |
Chris Lattner | 90a8f27 | 2010-07-13 19:41:32 +0000 | [diff] [blame] | 7491 | // Diagnose cases where the user write a logical and/or but probably meant a |
| 7492 | // bitwise one. We do this when the LHS is a non-bool integer and the RHS |
| 7493 | // is a constant. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7494 | if (LHS.get()->getType()->isIntegerType() && |
| 7495 | !LHS.get()->getType()->isBooleanType() && |
| 7496 | RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && |
Richard Trieu | e5adf59 | 2011-07-15 00:00:51 +0000 | [diff] [blame] | 7497 | // Don't warn in macros or template instantiations. |
| 7498 | !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { |
Chris Lattner | b7690b4 | 2010-07-24 01:10:11 +0000 | [diff] [blame] | 7499 | // If the RHS can be constant folded, and if it constant folds to something |
| 7500 | // that isn't 0 or 1 (which indicate a potential logical operation that |
| 7501 | // happened to fold to true/false) then warn. |
Chandler Carruth | 0683a14 | 2011-05-31 05:41:42 +0000 | [diff] [blame] | 7502 | // Parens on the RHS are ignored. |
Richard Smith | 909c555 | 2011-10-16 23:01:09 +0000 | [diff] [blame] | 7503 | llvm::APSInt Result; |
| 7504 | if (RHS.get()->EvaluateAsInt(Result, Context)) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7505 | if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType()) || |
Richard Smith | 909c555 | 2011-10-16 23:01:09 +0000 | [diff] [blame] | 7506 | (Result != 0 && Result != 1)) { |
Chandler Carruth | 0683a14 | 2011-05-31 05:41:42 +0000 | [diff] [blame] | 7507 | Diag(Loc, diag::warn_logical_instead_of_bitwise) |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7508 | << RHS.get()->getSourceRange() |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7509 | << (Opc == BO_LAnd ? "&&" : "||"); |
| 7510 | // Suggest replacing the logical operator with the bitwise version |
| 7511 | Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) |
| 7512 | << (Opc == BO_LAnd ? "&" : "|") |
| 7513 | << FixItHint::CreateReplacement(SourceRange( |
| 7514 | Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7515 | getLangOpts())), |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7516 | Opc == BO_LAnd ? "&" : "|"); |
| 7517 | if (Opc == BO_LAnd) |
| 7518 | // Suggest replacing "Foo() && kNonZero" with "Foo()" |
| 7519 | Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) |
| 7520 | << FixItHint::CreateRemoval( |
| 7521 | SourceRange( |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7522 | Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7523 | 0, getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7524 | getLangOpts()), |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7525 | RHS.get()->getLocEnd())); |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7526 | } |
Chris Lattner | b7690b4 | 2010-07-24 01:10:11 +0000 | [diff] [blame] | 7527 | } |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 7528 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7529 | if (!Context.getLangOpts().CPlusPlus) { |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 7530 | // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do |
| 7531 | // not operate on the built-in scalar and vector float types. |
| 7532 | if (Context.getLangOpts().OpenCL && |
| 7533 | Context.getLangOpts().OpenCLVersion < 120) { |
| 7534 | if (LHS.get()->getType()->isFloatingType() || |
| 7535 | RHS.get()->getType()->isFloatingType()) |
| 7536 | return InvalidOperands(Loc, LHS, RHS); |
| 7537 | } |
| 7538 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7539 | LHS = UsualUnaryConversions(LHS.take()); |
| 7540 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7541 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7542 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7543 | RHS = UsualUnaryConversions(RHS.take()); |
| 7544 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7545 | return QualType(); |
| 7546 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7547 | if (!LHS.get()->getType()->isScalarType() || |
| 7548 | !RHS.get()->getType()->isScalarType()) |
| 7549 | return InvalidOperands(Loc, LHS, RHS); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7550 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7551 | return Context.IntTy; |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 7552 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7553 | |
John McCall | 75f7c0f | 2010-06-04 00:29:51 +0000 | [diff] [blame] | 7554 | // The following is safe because we only use this method for |
| 7555 | // non-overloadable operands. |
| 7556 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7557 | // C++ [expr.log.and]p1 |
| 7558 | // C++ [expr.log.or]p1 |
John McCall | 75f7c0f | 2010-06-04 00:29:51 +0000 | [diff] [blame] | 7559 | // The operands are both contextually converted to type bool. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7560 | ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); |
| 7561 | if (LHSRes.isInvalid()) |
| 7562 | return InvalidOperands(Loc, LHS, RHS); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 7563 | LHS = LHSRes; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7564 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7565 | ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); |
| 7566 | if (RHSRes.isInvalid()) |
| 7567 | return InvalidOperands(Loc, LHS, RHS); |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 7568 | RHS = RHSRes; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7569 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7570 | // C++ [expr.log.and]p2 |
| 7571 | // C++ [expr.log.or]p2 |
| 7572 | // The result is a bool. |
| 7573 | return Context.BoolTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7574 | } |
| 7575 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7576 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 7577 | /// is a read-only property; return true if so. A readonly property expression |
| 7578 | /// depends on various declarations and thus must be treated specially. |
| 7579 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7580 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7581 | const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E); |
| 7582 | if (!PropExpr) return false; |
| 7583 | if (PropExpr->isImplicitProperty()) return false; |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 7584 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7585 | ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty(); |
| 7586 | QualType BaseType = PropExpr->isSuperReceiver() ? |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 7587 | PropExpr->getSuperReceiverType() : |
Fariborz Jahanian | 8ac2d44 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 7588 | PropExpr->getBase()->getType(); |
| 7589 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7590 | if (const ObjCObjectPointerType *OPT = |
| 7591 | BaseType->getAsObjCInterfacePointerType()) |
| 7592 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 7593 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 7594 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7595 | return false; |
| 7596 | } |
| 7597 | |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7598 | static bool IsReadonlyMessage(Expr *E, Sema &S) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7599 | const MemberExpr *ME = dyn_cast<MemberExpr>(E); |
| 7600 | if (!ME) return false; |
| 7601 | if (!isa<FieldDecl>(ME->getMemberDecl())) return false; |
| 7602 | ObjCMessageExpr *Base = |
| 7603 | dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); |
| 7604 | if (!Base) return false; |
| 7605 | return Base->getMethodDecl() != 0; |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7606 | } |
| 7607 | |
John McCall | 78dae24 | 2012-03-13 00:37:01 +0000 | [diff] [blame] | 7608 | /// Is the given expression (which must be 'const') a reference to a |
| 7609 | /// variable which was originally non-const, but which has become |
| 7610 | /// 'const' due to being captured within a block? |
| 7611 | enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; |
| 7612 | static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { |
| 7613 | assert(E->isLValue() && E->getType().isConstQualified()); |
| 7614 | E = E->IgnoreParens(); |
| 7615 | |
| 7616 | // Must be a reference to a declaration from an enclosing scope. |
| 7617 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); |
| 7618 | if (!DRE) return NCCK_None; |
| 7619 | if (!DRE->refersToEnclosingLocal()) return NCCK_None; |
| 7620 | |
| 7621 | // The declaration must be a variable which is not declared 'const'. |
| 7622 | VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); |
| 7623 | if (!var) return NCCK_None; |
| 7624 | if (var->getType().isConstQualified()) return NCCK_None; |
| 7625 | assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); |
| 7626 | |
| 7627 | // Decide whether the first capture was for a block or a lambda. |
| 7628 | DeclContext *DC = S.CurContext; |
| 7629 | while (DC->getParent() != var->getDeclContext()) |
| 7630 | DC = DC->getParent(); |
| 7631 | return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); |
| 7632 | } |
| 7633 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7634 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 7635 | /// emit an error and return true. If so, return false. |
| 7636 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Fariborz Jahanian | e7ea28a | 2012-04-10 17:30:10 +0000 | [diff] [blame] | 7637 | assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7638 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7639 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7640 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7641 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 7642 | IsLV = Expr::MLV_ReadonlyProperty; |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7643 | else if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) |
| 7644 | IsLV = Expr::MLV_InvalidMessageExpression; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7645 | if (IsLV == Expr::MLV_Valid) |
| 7646 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7647 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7648 | unsigned Diag = 0; |
| 7649 | bool NeedType = false; |
| 7650 | switch (IsLV) { // C99 6.5.16p2 |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7651 | case Expr::MLV_ConstQualified: |
| 7652 | Diag = diag::err_typecheck_assign_const; |
| 7653 | |
John McCall | 78dae24 | 2012-03-13 00:37:01 +0000 | [diff] [blame] | 7654 | // Use a specialized diagnostic when we're assigning to an object |
| 7655 | // from an enclosing function or block. |
| 7656 | if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { |
| 7657 | if (NCCK == NCCK_Block) |
| 7658 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 7659 | else |
| 7660 | Diag = diag::err_lambda_decl_ref_not_modifiable_lvalue; |
| 7661 | break; |
| 7662 | } |
| 7663 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7664 | // In ARC, use some specialized diagnostics for occasions where we |
| 7665 | // infer 'const'. These are always pseudo-strong variables. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7666 | if (S.getLangOpts().ObjCAutoRefCount) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7667 | DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); |
| 7668 | if (declRef && isa<VarDecl>(declRef->getDecl())) { |
| 7669 | VarDecl *var = cast<VarDecl>(declRef->getDecl()); |
| 7670 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7671 | // Use the normal diagnostic if it's pseudo-__strong but the |
| 7672 | // user actually wrote 'const'. |
| 7673 | if (var->isARCPseudoStrong() && |
| 7674 | (!var->getTypeSourceInfo() || |
| 7675 | !var->getTypeSourceInfo()->getType().isConstQualified())) { |
| 7676 | // There are two pseudo-strong cases: |
| 7677 | // - self |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7678 | ObjCMethodDecl *method = S.getCurMethodDecl(); |
| 7679 | if (method && var == method->getSelfDecl()) |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 7680 | Diag = method->isClassMethod() |
| 7681 | ? diag::err_typecheck_arc_assign_self_class_method |
| 7682 | : diag::err_typecheck_arc_assign_self; |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7683 | |
| 7684 | // - fast enumeration variables |
| 7685 | else |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7686 | Diag = diag::err_typecheck_arr_assign_enumeration; |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7687 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7688 | SourceRange Assign; |
| 7689 | if (Loc != OrigLoc) |
| 7690 | Assign = SourceRange(OrigLoc, OrigLoc); |
| 7691 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
| 7692 | // We need to preserve the AST regardless, so migration tool |
| 7693 | // can do its job. |
| 7694 | return false; |
| 7695 | } |
| 7696 | } |
| 7697 | } |
| 7698 | |
| 7699 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7700 | case Expr::MLV_ArrayType: |
Richard Smith | 36d02af | 2012-06-04 22:27:30 +0000 | [diff] [blame] | 7701 | case Expr::MLV_ArrayTemporary: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7702 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 7703 | NeedType = true; |
| 7704 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7705 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7706 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 7707 | NeedType = true; |
| 7708 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 7709 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7710 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 7711 | break; |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7712 | case Expr::MLV_Valid: |
| 7713 | llvm_unreachable("did not take early return for MLV_Valid"); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7714 | case Expr::MLV_InvalidExpression: |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7715 | case Expr::MLV_MemberFunction: |
| 7716 | case Expr::MLV_ClassTemporary: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7717 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 7718 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7719 | case Expr::MLV_IncompleteType: |
| 7720 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 7721 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 7722 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7723 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7724 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 7725 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 7726 | case Expr::MLV_ReadonlyProperty: |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 7727 | case Expr::MLV_NoSetterProperty: |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7728 | llvm_unreachable("readonly properties should be processed differently"); |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7729 | case Expr::MLV_InvalidMessageExpression: |
| 7730 | Diag = diag::error_readonly_message_assignment; |
| 7731 | break; |
Fariborz Jahanian | 2514a30 | 2009-12-15 23:59:41 +0000 | [diff] [blame] | 7732 | case Expr::MLV_SubObjCPropertySetting: |
| 7733 | Diag = diag::error_no_subobject_property_setting; |
| 7734 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7735 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 7736 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7737 | SourceRange Assign; |
| 7738 | if (Loc != OrigLoc) |
| 7739 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7740 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7741 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7742 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7743 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7744 | return true; |
| 7745 | } |
| 7746 | |
Nico Weber | 7c81b43 | 2012-07-03 02:03:06 +0000 | [diff] [blame] | 7747 | static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, |
| 7748 | SourceLocation Loc, |
| 7749 | Sema &Sema) { |
| 7750 | // C / C++ fields |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7751 | MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr); |
| 7752 | MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr); |
| 7753 | if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) { |
| 7754 | if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase())) |
Nico Weber | 7c81b43 | 2012-07-03 02:03:06 +0000 | [diff] [blame] | 7755 | Sema.Diag(Loc, diag::warn_identity_field_assign) << 0; |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7756 | } |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7757 | |
Nico Weber | 7c81b43 | 2012-07-03 02:03:06 +0000 | [diff] [blame] | 7758 | // Objective-C instance variables |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7759 | ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); |
| 7760 | ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); |
| 7761 | if (OL && OR && OL->getDecl() == OR->getDecl()) { |
| 7762 | DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); |
| 7763 | DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); |
| 7764 | if (RL && RR && RL->getDecl() == RR->getDecl()) |
Nico Weber | 7c81b43 | 2012-07-03 02:03:06 +0000 | [diff] [blame] | 7765 | Sema.Diag(Loc, diag::warn_identity_field_assign) << 1; |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7766 | } |
| 7767 | } |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7768 | |
| 7769 | // C99 6.5.16.1 |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7770 | QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7771 | SourceLocation Loc, |
| 7772 | QualType CompoundType) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7773 | assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); |
| 7774 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7775 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7776 | if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7777 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7778 | |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7779 | QualType LHSType = LHSExpr->getType(); |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 7780 | QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : |
| 7781 | CompoundType; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7782 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7783 | if (CompoundType.isNull()) { |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7784 | Expr *RHSCheck = RHS.get(); |
| 7785 | |
Nico Weber | 7c81b43 | 2012-07-03 02:03:06 +0000 | [diff] [blame] | 7786 | CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this); |
Nico Weber | 43bb179 | 2012-06-28 23:53:12 +0000 | [diff] [blame] | 7787 | |
Fariborz Jahanian | e2a901a | 2010-06-07 22:02:01 +0000 | [diff] [blame] | 7788 | QualType LHSTy(LHSType); |
Fariborz Jahanian | e2a901a | 2010-06-07 22:02:01 +0000 | [diff] [blame] | 7789 | ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7790 | if (RHS.isInvalid()) |
| 7791 | return QualType(); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7792 | // Special case of NSObject attributes on c-style pointer types. |
| 7793 | if (ConvTy == IncompatiblePointer && |
| 7794 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 7795 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7796 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 7797 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7798 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7799 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7800 | if (ConvTy == Compatible && |
Fariborz Jahanian | 466f45a | 2012-01-24 19:40:13 +0000 | [diff] [blame] | 7801 | LHSType->isObjCObjectType()) |
Fariborz Jahanian | 7b383e4 | 2012-01-24 18:05:45 +0000 | [diff] [blame] | 7802 | Diag(Loc, diag::err_objc_object_assignment) |
| 7803 | << LHSType; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7804 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7805 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 7806 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 7807 | // instead of "x += 4". |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7808 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 7809 | RHSCheck = ICE->getSubExpr(); |
| 7810 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7811 | if ((UO->getOpcode() == UO_Plus || |
| 7812 | UO->getOpcode() == UO_Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7813 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7814 | // Only if the two operators are exactly adjacent. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 7815 | Loc.getLocWithOffset(1) == UO->getOperatorLoc() && |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 7816 | // And there is a space or other character before the subexpr of the |
| 7817 | // unary +/-. We don't want to warn on "x=-1". |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 7818 | Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 7819 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 7820 | Diag(Loc, diag::warn_not_compound_assign) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7821 | << (UO->getOpcode() == UO_Plus ? "+" : "-") |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 7822 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 7823 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7824 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7825 | |
| 7826 | if (ConvTy == Compatible) { |
Jordan Rose | e10f4d3 | 2012-09-15 02:48:31 +0000 | [diff] [blame] | 7827 | if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) { |
| 7828 | // Warn about retain cycles where a block captures the LHS, but |
| 7829 | // not if the LHS is a simple variable into which the block is |
| 7830 | // being stored...unless that variable can be captured by reference! |
| 7831 | const Expr *InnerLHS = LHSExpr->IgnoreParenCasts(); |
| 7832 | const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS); |
| 7833 | if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>()) |
| 7834 | checkRetainCycles(LHSExpr, RHS.get()); |
| 7835 | |
Jordan Rose | 58b6bdc | 2012-09-28 22:21:30 +0000 | [diff] [blame] | 7836 | // It is safe to assign a weak reference into a strong variable. |
| 7837 | // Although this code can still have problems: |
| 7838 | // id x = self.weakProp; |
| 7839 | // id y = self.weakProp; |
| 7840 | // we do not warn to warn spuriously when 'x' and 'y' are on separate |
| 7841 | // paths through the function. This should be revisited if |
| 7842 | // -Wrepeated-use-of-weak is made flow-sensitive. |
| 7843 | DiagnosticsEngine::Level Level = |
| 7844 | Diags.getDiagnosticLevel(diag::warn_arc_repeated_use_of_weak, |
| 7845 | RHS.get()->getLocStart()); |
| 7846 | if (Level != DiagnosticsEngine::Ignored) |
| 7847 | getCurFunction()->markSafeWeakUse(RHS.get()); |
| 7848 | |
Jordan Rose | e10f4d3 | 2012-09-15 02:48:31 +0000 | [diff] [blame] | 7849 | } else if (getLangOpts().ObjCAutoRefCount) { |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7850 | checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); |
Jordan Rose | e10f4d3 | 2012-09-15 02:48:31 +0000 | [diff] [blame] | 7851 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7852 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7853 | } else { |
| 7854 | // Compound assignment "x += y" |
Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 7855 | ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7856 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7857 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7858 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7859 | RHS.get(), AA_Assigning)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7860 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7861 | |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7862 | CheckForNullPointerDereference(*this, LHSExpr); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 7863 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7864 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 7865 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7866 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7867 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 7868 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 7869 | // C++ 5.17p1: the type of the assignment expression is that of its left |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 7870 | // operand. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7871 | return (getLangOpts().CPlusPlus |
John McCall | 2bf6f49 | 2010-10-12 02:19:57 +0000 | [diff] [blame] | 7872 | ? LHSType : LHSType.getUnqualifiedType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7873 | } |
| 7874 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7875 | // C99 6.5.17 |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7876 | static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7877 | SourceLocation Loc) { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 7878 | LHS = S.CheckPlaceholderExpr(LHS.take()); |
| 7879 | RHS = S.CheckPlaceholderExpr(RHS.take()); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7880 | if (LHS.isInvalid() || RHS.isInvalid()) |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 7881 | return QualType(); |
| 7882 | |
John McCall | cf2e506 | 2010-10-12 07:14:40 +0000 | [diff] [blame] | 7883 | // C's comma performs lvalue conversion (C99 6.3.2.1) on both its |
| 7884 | // operands, but not unary promotions. |
| 7885 | // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 7886 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 7887 | // So we treat the LHS as a ignored value, and in C++ we allow the |
| 7888 | // containing site to determine what should be done with the RHS. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7889 | LHS = S.IgnoredValueConversions(LHS.take()); |
| 7890 | if (LHS.isInvalid()) |
| 7891 | return QualType(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 7892 | |
Eli Friedman | a611506 | 2012-05-24 00:47:05 +0000 | [diff] [blame] | 7893 | S.DiagnoseUnusedExprResult(LHS.get()); |
| 7894 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7895 | if (!S.getLangOpts().CPlusPlus) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7896 | RHS = S.DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 7897 | if (RHS.isInvalid()) |
| 7898 | return QualType(); |
| 7899 | if (!RHS.get()->getType()->isVoidType()) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 7900 | S.RequireCompleteType(Loc, RHS.get()->getType(), |
| 7901 | diag::err_incomplete_type); |
John McCall | cf2e506 | 2010-10-12 07:14:40 +0000 | [diff] [blame] | 7902 | } |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 7903 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7904 | return RHS.get()->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7905 | } |
| 7906 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 7907 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 7908 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7909 | static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, |
| 7910 | ExprValueKind &VK, |
| 7911 | SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7912 | bool IsInc, bool IsPrefix) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7913 | if (Op->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7914 | return S.Context.DependentTy; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7915 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7916 | QualType ResType = Op->getType(); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 7917 | // Atomic types can be used for increment / decrement where the non-atomic |
| 7918 | // versions can, so ignore the _Atomic() specifier for the purpose of |
| 7919 | // checking. |
| 7920 | if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) |
| 7921 | ResType = ResAtomicType->getValueType(); |
| 7922 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7923 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7924 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7925 | if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7926 | // Decrement of bool is not allowed. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7927 | if (!IsInc) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7928 | S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7929 | return QualType(); |
| 7930 | } |
| 7931 | // Increment of bool sets it to true, but is deprecated. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7932 | S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7933 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7934 | // OK! |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 7935 | } else if (ResType->isPointerType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7936 | // C99 6.5.2.4p2, 6.5.6p2 |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 7937 | if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 7938 | return QualType(); |
John McCall | 1503f0d | 2012-07-31 05:14:30 +0000 | [diff] [blame] | 7939 | } else if (ResType->isObjCObjectPointerType()) { |
| 7940 | // On modern runtimes, ObjC pointer arithmetic is forbidden. |
| 7941 | // Otherwise, we just need a complete type. |
| 7942 | if (checkArithmeticIncompletePointerType(S, OpLoc, Op) || |
| 7943 | checkArithmeticOnObjCPointer(S, OpLoc, Op)) |
| 7944 | return QualType(); |
Eli Friedman | 5b088a1 | 2010-01-03 00:20:48 +0000 | [diff] [blame] | 7945 | } else if (ResType->isAnyComplexType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7946 | // C99 does not support ++/-- on complex types, we allow as an extension. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7947 | S.Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 7948 | << ResType << Op->getSourceRange(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7949 | } else if (ResType->isPlaceholderType()) { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 7950 | ExprResult PR = S.CheckPlaceholderExpr(Op); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7951 | if (PR.isInvalid()) return QualType(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7952 | return CheckIncrementDecrementOperand(S, PR.take(), VK, OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7953 | IsInc, IsPrefix); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7954 | } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { |
Anton Yartsev | 683564a | 2011-02-07 02:17:30 +0000 | [diff] [blame] | 7955 | // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7956 | } else { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7957 | S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7958 | << ResType << int(IsInc) << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7959 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7960 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7961 | // At this point, we know we have a real, complex or pointer type. |
Steve Naroff | dd10e02 | 2007-08-23 21:37:33 +0000 | [diff] [blame] | 7962 | // Now make sure the operand is a modifiable lvalue. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7963 | if (CheckForModifiableLvalue(Op, OpLoc, S)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7964 | return QualType(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 7965 | // In C++, a prefix increment is the same type as the operand. Otherwise |
| 7966 | // (in C or with postfix), the increment is the unqualified type of the |
| 7967 | // operand. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7968 | if (IsPrefix && S.getLangOpts().CPlusPlus) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7969 | VK = VK_LValue; |
| 7970 | return ResType; |
| 7971 | } else { |
| 7972 | VK = VK_RValue; |
| 7973 | return ResType.getUnqualifiedType(); |
| 7974 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7975 | } |
Fariborz Jahanian | c4e1a68 | 2010-09-14 23:02:38 +0000 | [diff] [blame] | 7976 | |
| 7977 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 7978 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7979 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 7980 | /// where the declaration is needed for type checking. We only need to |
| 7981 | /// handle cases when the expression references a function designator |
| 7982 | /// or is an lvalue. Here are some examples: |
| 7983 | /// - &(x) => x |
| 7984 | /// - &*****f => f for f a function designator. |
| 7985 | /// - &s.xx => s |
| 7986 | /// - &s.zz[1].yy -> s, if zz is an array |
| 7987 | /// - *(x + 1) -> x, if x is an array |
| 7988 | /// - &"123"[2] -> 0 |
| 7989 | /// - & __real__ x -> x |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7990 | static ValueDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7991 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7992 | case Stmt::DeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7993 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7994 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7995 | // If this is an arrow operator, the address is an offset from |
| 7996 | // the base's value, so the object the base refers to is |
| 7997 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7998 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 7999 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8000 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 8001 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 8002 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 8003 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 8004 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8005 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 8006 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 8007 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 8008 | return getPrimaryDecl(ICE->getSubExpr()); |
| 8009 | } |
| 8010 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 8011 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 8012 | case Stmt::UnaryOperatorClass: { |
| 8013 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8014 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 8015 | switch(UO->getOpcode()) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8016 | case UO_Real: |
| 8017 | case UO_Imag: |
| 8018 | case UO_Extension: |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 8019 | return getPrimaryDecl(UO->getSubExpr()); |
| 8020 | default: |
| 8021 | return 0; |
| 8022 | } |
| 8023 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8024 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 8025 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 8026 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8027 | // If the result of an implicit cast is an l-value, we care about |
| 8028 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 8029 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8030 | default: |
| 8031 | return 0; |
| 8032 | } |
| 8033 | } |
| 8034 | |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8035 | namespace { |
| 8036 | enum { |
| 8037 | AO_Bit_Field = 0, |
| 8038 | AO_Vector_Element = 1, |
| 8039 | AO_Property_Expansion = 2, |
| 8040 | AO_Register_Variable = 3, |
| 8041 | AO_No_Error = 4 |
| 8042 | }; |
| 8043 | } |
Richard Trieu | 09a26ad | 2011-09-02 00:47:55 +0000 | [diff] [blame] | 8044 | /// \brief Diagnose invalid operand for address of operations. |
| 8045 | /// |
| 8046 | /// \param Type The type of operand which cannot have its address taken. |
Richard Trieu | 09a26ad | 2011-09-02 00:47:55 +0000 | [diff] [blame] | 8047 | static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, |
| 8048 | Expr *E, unsigned Type) { |
| 8049 | S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); |
| 8050 | } |
| 8051 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8052 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8053 | /// designator or an lvalue designating an object. If it is an lvalue, the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8054 | /// object cannot be declared with storage class register or be a bit field. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8055 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8056 | /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8057 | /// In C++, the operand might be an overloaded function name, in which case |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 8058 | /// we allow the '&' but retain the overloaded-function type. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8059 | static QualType CheckAddressOfOperand(Sema &S, ExprResult &OrigOp, |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8060 | SourceLocation OpLoc) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8061 | if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ |
| 8062 | if (PTy->getKind() == BuiltinType::Overload) { |
| 8063 | if (!isa<OverloadExpr>(OrigOp.get()->IgnoreParens())) { |
Richard Smith | 3fa3fea | 2013-02-02 02:14:45 +0000 | [diff] [blame] | 8064 | assert(cast<UnaryOperator>(OrigOp.get()->IgnoreParens())->getOpcode() |
| 8065 | == UO_AddrOf); |
| 8066 | S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8067 | << OrigOp.get()->getSourceRange(); |
| 8068 | return QualType(); |
| 8069 | } |
| 8070 | |
| 8071 | return S.Context.OverloadTy; |
| 8072 | } |
| 8073 | |
| 8074 | if (PTy->getKind() == BuiltinType::UnknownAny) |
| 8075 | return S.Context.UnknownAnyTy; |
| 8076 | |
| 8077 | if (PTy->getKind() == BuiltinType::BoundMember) { |
| 8078 | S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) |
| 8079 | << OrigOp.get()->getSourceRange(); |
Douglas Gregor | 44efed0 | 2011-10-09 19:10:41 +0000 | [diff] [blame] | 8080 | return QualType(); |
| 8081 | } |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8082 | |
| 8083 | OrigOp = S.CheckPlaceholderExpr(OrigOp.take()); |
| 8084 | if (OrigOp.isInvalid()) return QualType(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 8085 | } |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8086 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8087 | if (OrigOp.get()->isTypeDependent()) |
| 8088 | return S.Context.DependentTy; |
| 8089 | |
| 8090 | assert(!OrigOp.get()->getType()->isPlaceholderType()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8091 | |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8092 | // Make sure to ignore parentheses in subsequent checks |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8093 | Expr *op = OrigOp.get()->IgnoreParens(); |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 8094 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8095 | if (S.getLangOpts().C99) { |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 8096 | // Implement C99-only parts of addressof rules. |
| 8097 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8098 | if (uOp->getOpcode() == UO_Deref) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 8099 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 8100 | // (assuming the deref expression is valid). |
| 8101 | return uOp->getSubExpr()->getType(); |
| 8102 | } |
| 8103 | // Technically, there should be a check for array subscript |
| 8104 | // expressions here, but the result of one is always an lvalue anyway. |
| 8105 | } |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 8106 | ValueDecl *dcl = getPrimaryDecl(op); |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 8107 | Expr::LValueClassification lval = op->ClassifyLValue(S.Context); |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8108 | unsigned AddressOfError = AO_No_Error; |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 8109 | |
Richard Smith | 3fa3fea | 2013-02-02 02:14:45 +0000 | [diff] [blame] | 8110 | if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) { |
David Blaikie | 0adb175 | 2013-02-21 06:05:05 +0000 | [diff] [blame] | 8111 | bool sfinae = (bool)S.isSFINAEContext(); |
| 8112 | S.Diag(OpLoc, S.isSFINAEContext() ? diag::err_typecheck_addrof_temporary |
Richard Smith | 3fa3fea | 2013-02-02 02:14:45 +0000 | [diff] [blame] | 8113 | : diag::ext_typecheck_addrof_temporary) |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 8114 | << op->getType() << op->getSourceRange(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8115 | if (sfinae) |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 8116 | return QualType(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8117 | } else if (isa<ObjCSelectorExpr>(op)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8118 | return S.Context.getPointerType(op->getType()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8119 | } else if (lval == Expr::LV_MemberFunction) { |
| 8120 | // If it's an instance method, make a member pointer. |
| 8121 | // The expression must have exactly the form &A::foo. |
| 8122 | |
| 8123 | // If the underlying expression isn't a decl ref, give up. |
| 8124 | if (!isa<DeclRefExpr>(op)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8125 | S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8126 | << OrigOp.get()->getSourceRange(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8127 | return QualType(); |
| 8128 | } |
| 8129 | DeclRefExpr *DRE = cast<DeclRefExpr>(op); |
| 8130 | CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); |
| 8131 | |
| 8132 | // The id-expression was parenthesized. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8133 | if (OrigOp.get() != DRE) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8134 | S.Diag(OpLoc, diag::err_parens_pointer_member_function) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8135 | << OrigOp.get()->getSourceRange(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8136 | |
| 8137 | // The method was named without a qualifier. |
| 8138 | } else if (!DRE->getQualifier()) { |
David Blaikie | abeadfb | 2012-10-11 22:55:07 +0000 | [diff] [blame] | 8139 | if (MD->getParent()->getName().empty()) |
| 8140 | S.Diag(OpLoc, diag::err_unqualified_pointer_member_function) |
| 8141 | << op->getSourceRange(); |
| 8142 | else { |
| 8143 | SmallString<32> Str; |
| 8144 | StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str); |
| 8145 | S.Diag(OpLoc, diag::err_unqualified_pointer_member_function) |
| 8146 | << op->getSourceRange() |
| 8147 | << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual); |
| 8148 | } |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8149 | } |
| 8150 | |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8151 | return S.Context.getMemberPointerType(op->getType(), |
| 8152 | S.Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 8153 | } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 8154 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8155 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 8156 | if (!op->getType()->isFunctionType()) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8157 | // Use a special diagnostic for loads from property references. |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 8158 | if (isa<PseudoObjectExpr>(op)) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8159 | AddressOfError = AO_Property_Expansion; |
| 8160 | } else { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8161 | S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
Richard Smith | 3fa3fea | 2013-02-02 02:14:45 +0000 | [diff] [blame] | 8162 | << op->getType() << op->getSourceRange(); |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8163 | return QualType(); |
| 8164 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8165 | } |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 8166 | } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8167 | // The operand cannot be a bit-field |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8168 | AddressOfError = AO_Bit_Field; |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 8169 | } else if (op->getObjectKind() == OK_VectorComponent) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 8170 | // The operand cannot be an element of a vector |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8171 | AddressOfError = AO_Vector_Element; |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 8172 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8173 | // We have an lvalue with a decl. Make sure the decl is not declared |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8174 | // with the register storage-class specifier. |
| 8175 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
Fariborz Jahanian | 4020f87 | 2010-08-24 22:21:48 +0000 | [diff] [blame] | 8176 | // in C++ it is not error to take address of a register |
| 8177 | // variable (c++03 7.1.1P3) |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 8178 | if (vd->getStorageClass() == SC_Register && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8179 | !S.getLangOpts().CPlusPlus) { |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8180 | AddressOfError = AO_Register_Variable; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8181 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 8182 | } else if (isa<FunctionTemplateDecl>(dcl)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8183 | return S.Context.OverloadTy; |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 8184 | } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 8185 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 8186 | // Could be a pointer to member, though, if there is an explicit |
| 8187 | // scope qualifier for the class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 8188 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 8189 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 8190 | if (Ctx && Ctx->isRecord()) { |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 8191 | if (dcl->getType()->isReferenceType()) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8192 | S.Diag(OpLoc, |
| 8193 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 8194 | << dcl->getDeclName() << dcl->getType(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 8195 | return QualType(); |
| 8196 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 8197 | |
Argyrios Kyrtzidis | 0413db4 | 2011-01-31 07:04:29 +0000 | [diff] [blame] | 8198 | while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) |
| 8199 | Ctx = Ctx->getParent(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8200 | return S.Context.getMemberPointerType(op->getType(), |
| 8201 | S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 8202 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 8203 | } |
Eli Friedman | 7b2f51c | 2011-08-26 20:28:17 +0000 | [diff] [blame] | 8204 | } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 8205 | llvm_unreachable("Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8206 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 8207 | |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 8208 | if (AddressOfError != AO_No_Error) { |
| 8209 | diagnoseAddressOfInvalidType(S, OpLoc, op, AddressOfError); |
| 8210 | return QualType(); |
| 8211 | } |
| 8212 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 8213 | if (lval == Expr::LV_IncompleteVoidType) { |
| 8214 | // Taking the address of a void variable is technically illegal, but we |
| 8215 | // allow it in cases which are otherwise valid. |
| 8216 | // Example: "extern void x; void* y = &x;". |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8217 | S.Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 8218 | } |
| 8219 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8220 | // If the operand has type "type", the result has type "pointer to type". |
Douglas Gregor | 8f70ddb | 2010-07-29 16:05:45 +0000 | [diff] [blame] | 8221 | if (op->getType()->isObjCObjectType()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8222 | return S.Context.getObjCObjectPointerType(op->getType()); |
| 8223 | return S.Context.getPointerType(op->getType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8224 | } |
| 8225 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8226 | /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8227 | static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, |
| 8228 | SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8229 | if (Op->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8230 | return S.Context.DependentTy; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8231 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8232 | ExprResult ConvResult = S.UsualUnaryConversions(Op); |
| 8233 | if (ConvResult.isInvalid()) |
| 8234 | return QualType(); |
| 8235 | Op = ConvResult.take(); |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8236 | QualType OpTy = Op->getType(); |
| 8237 | QualType Result; |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 8238 | |
| 8239 | if (isa<CXXReinterpretCastExpr>(Op)) { |
| 8240 | QualType OpOrigType = Op->IgnoreParenCasts()->getType(); |
| 8241 | S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, |
| 8242 | Op->getSourceRange()); |
| 8243 | } |
| 8244 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8245 | // Note that per both C89 and C99, indirection is always legal, even if OpTy |
| 8246 | // is an incomplete type or void. It would be possible to warn about |
| 8247 | // dereferencing a void pointer, but it's completely well-defined, and such a |
| 8248 | // warning is unlikely to catch any mistakes. |
| 8249 | if (const PointerType *PT = OpTy->getAs<PointerType>()) |
| 8250 | Result = PT->getPointeeType(); |
| 8251 | else if (const ObjCObjectPointerType *OPT = |
| 8252 | OpTy->getAs<ObjCObjectPointerType>()) |
| 8253 | Result = OPT->getPointeeType(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8254 | else { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 8255 | ExprResult PR = S.CheckPlaceholderExpr(Op); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8256 | if (PR.isInvalid()) return QualType(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8257 | if (PR.take() != Op) |
| 8258 | return CheckIndirectionOperand(S, PR.take(), VK, OpLoc); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8259 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8260 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8261 | if (Result.isNull()) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8262 | S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8263 | << OpTy << Op->getSourceRange(); |
| 8264 | return QualType(); |
| 8265 | } |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8266 | |
| 8267 | // Dereferences are usually l-values... |
| 8268 | VK = VK_LValue; |
| 8269 | |
| 8270 | // ...except that certain expressions are never l-values in C. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8271 | if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8272 | VK = VK_RValue; |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 8273 | |
| 8274 | return Result; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8275 | } |
| 8276 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8277 | static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode( |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8278 | tok::TokenKind Kind) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8279 | BinaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8280 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 8281 | default: llvm_unreachable("Unknown binop!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8282 | case tok::periodstar: Opc = BO_PtrMemD; break; |
| 8283 | case tok::arrowstar: Opc = BO_PtrMemI; break; |
| 8284 | case tok::star: Opc = BO_Mul; break; |
| 8285 | case tok::slash: Opc = BO_Div; break; |
| 8286 | case tok::percent: Opc = BO_Rem; break; |
| 8287 | case tok::plus: Opc = BO_Add; break; |
| 8288 | case tok::minus: Opc = BO_Sub; break; |
| 8289 | case tok::lessless: Opc = BO_Shl; break; |
| 8290 | case tok::greatergreater: Opc = BO_Shr; break; |
| 8291 | case tok::lessequal: Opc = BO_LE; break; |
| 8292 | case tok::less: Opc = BO_LT; break; |
| 8293 | case tok::greaterequal: Opc = BO_GE; break; |
| 8294 | case tok::greater: Opc = BO_GT; break; |
| 8295 | case tok::exclaimequal: Opc = BO_NE; break; |
| 8296 | case tok::equalequal: Opc = BO_EQ; break; |
| 8297 | case tok::amp: Opc = BO_And; break; |
| 8298 | case tok::caret: Opc = BO_Xor; break; |
| 8299 | case tok::pipe: Opc = BO_Or; break; |
| 8300 | case tok::ampamp: Opc = BO_LAnd; break; |
| 8301 | case tok::pipepipe: Opc = BO_LOr; break; |
| 8302 | case tok::equal: Opc = BO_Assign; break; |
| 8303 | case tok::starequal: Opc = BO_MulAssign; break; |
| 8304 | case tok::slashequal: Opc = BO_DivAssign; break; |
| 8305 | case tok::percentequal: Opc = BO_RemAssign; break; |
| 8306 | case tok::plusequal: Opc = BO_AddAssign; break; |
| 8307 | case tok::minusequal: Opc = BO_SubAssign; break; |
| 8308 | case tok::lesslessequal: Opc = BO_ShlAssign; break; |
| 8309 | case tok::greatergreaterequal: Opc = BO_ShrAssign; break; |
| 8310 | case tok::ampequal: Opc = BO_AndAssign; break; |
| 8311 | case tok::caretequal: Opc = BO_XorAssign; break; |
| 8312 | case tok::pipeequal: Opc = BO_OrAssign; break; |
| 8313 | case tok::comma: Opc = BO_Comma; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8314 | } |
| 8315 | return Opc; |
| 8316 | } |
| 8317 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8318 | static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8319 | tok::TokenKind Kind) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8320 | UnaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8321 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 8322 | default: llvm_unreachable("Unknown unary op!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8323 | case tok::plusplus: Opc = UO_PreInc; break; |
| 8324 | case tok::minusminus: Opc = UO_PreDec; break; |
| 8325 | case tok::amp: Opc = UO_AddrOf; break; |
| 8326 | case tok::star: Opc = UO_Deref; break; |
| 8327 | case tok::plus: Opc = UO_Plus; break; |
| 8328 | case tok::minus: Opc = UO_Minus; break; |
| 8329 | case tok::tilde: Opc = UO_Not; break; |
| 8330 | case tok::exclaim: Opc = UO_LNot; break; |
| 8331 | case tok::kw___real: Opc = UO_Real; break; |
| 8332 | case tok::kw___imag: Opc = UO_Imag; break; |
| 8333 | case tok::kw___extension__: Opc = UO_Extension; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8334 | } |
| 8335 | return Opc; |
| 8336 | } |
| 8337 | |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8338 | /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. |
| 8339 | /// This warning is only emitted for builtin assignment operations. It is also |
| 8340 | /// suppressed in the event of macro expansions. |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8341 | static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8342 | SourceLocation OpLoc) { |
| 8343 | if (!S.ActiveTemplateInstantiations.empty()) |
| 8344 | return; |
| 8345 | if (OpLoc.isInvalid() || OpLoc.isMacroID()) |
| 8346 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8347 | LHSExpr = LHSExpr->IgnoreParenImpCasts(); |
| 8348 | RHSExpr = RHSExpr->IgnoreParenImpCasts(); |
| 8349 | const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); |
| 8350 | const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); |
| 8351 | if (!LHSDeclRef || !RHSDeclRef || |
| 8352 | LHSDeclRef->getLocation().isMacroID() || |
| 8353 | RHSDeclRef->getLocation().isMacroID()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8354 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8355 | const ValueDecl *LHSDecl = |
| 8356 | cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); |
| 8357 | const ValueDecl *RHSDecl = |
| 8358 | cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); |
| 8359 | if (LHSDecl != RHSDecl) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8360 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8361 | if (LHSDecl->getType().isVolatileQualified()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8362 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8363 | if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8364 | if (RefTy->getPointeeType().isVolatileQualified()) |
| 8365 | return; |
| 8366 | |
| 8367 | S.Diag(OpLoc, diag::warn_self_assignment) |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 8368 | << LHSDeclRef->getType() |
| 8369 | << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8370 | } |
| 8371 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8372 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 8373 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 8374 | /// built-in operations; ActOnBinOp handles overloaded operators. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8375 | ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
Argyrios Kyrtzidis | b1fa3dc | 2011-01-05 20:09:36 +0000 | [diff] [blame] | 8376 | BinaryOperatorKind Opc, |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8377 | Expr *LHSExpr, Expr *RHSExpr) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 8378 | if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) { |
Sebastian Redl | 0d8ab2e | 2012-02-27 20:34:02 +0000 | [diff] [blame] | 8379 | // The syntax only allows initializer lists on the RHS of assignment, |
| 8380 | // so we don't need to worry about accepting invalid code for |
| 8381 | // non-assignment operators. |
| 8382 | // C++11 5.17p9: |
| 8383 | // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning |
| 8384 | // of x = {} is x = T(). |
| 8385 | InitializationKind Kind = |
| 8386 | InitializationKind::CreateDirectList(RHSExpr->getLocStart()); |
| 8387 | InitializedEntity Entity = |
| 8388 | InitializedEntity::InitializeTemporary(LHSExpr->getType()); |
| 8389 | InitializationSequence InitSeq(*this, Entity, Kind, &RHSExpr, 1); |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 8390 | ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); |
Sebastian Redl | 0d8ab2e | 2012-02-27 20:34:02 +0000 | [diff] [blame] | 8391 | if (Init.isInvalid()) |
| 8392 | return Init; |
| 8393 | RHSExpr = Init.take(); |
| 8394 | } |
| 8395 | |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8396 | ExprResult LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8397 | QualType ResultTy; // Result type of the binary operator. |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8398 | // The following two variables are used for compound assignment operators |
| 8399 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 8400 | QualType CompResultTy; // Type of computation result |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8401 | ExprValueKind VK = VK_RValue; |
| 8402 | ExprObjectKind OK = OK_Ordinary; |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8403 | |
| 8404 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8405 | case BO_Assign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8406 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8407 | if (getLangOpts().CPlusPlus && |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8408 | LHS.get()->getObjectKind() != OK_ObjCProperty) { |
| 8409 | VK = LHS.get()->getValueKind(); |
| 8410 | OK = LHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8411 | } |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 8412 | if (!ResultTy.isNull()) |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8413 | DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8414 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8415 | case BO_PtrMemD: |
| 8416 | case BO_PtrMemI: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8417 | ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8418 | Opc == BO_PtrMemI); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 8419 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8420 | case BO_Mul: |
| 8421 | case BO_Div: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8422 | ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8423 | Opc == BO_Div); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8424 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8425 | case BO_Rem: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8426 | ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8427 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8428 | case BO_Add: |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 8429 | ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8430 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8431 | case BO_Sub: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8432 | ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8433 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8434 | case BO_Shl: |
| 8435 | case BO_Shr: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8436 | ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8437 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8438 | case BO_LE: |
| 8439 | case BO_LT: |
| 8440 | case BO_GE: |
| 8441 | case BO_GT: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8442 | ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8443 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8444 | case BO_EQ: |
| 8445 | case BO_NE: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8446 | ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8447 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8448 | case BO_And: |
| 8449 | case BO_Xor: |
| 8450 | case BO_Or: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8451 | ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8452 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8453 | case BO_LAnd: |
| 8454 | case BO_LOr: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8455 | ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8456 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8457 | case BO_MulAssign: |
| 8458 | case BO_DivAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8459 | CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8460 | Opc == BO_DivAssign); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8461 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8462 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8463 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8464 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8465 | case BO_RemAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8466 | CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8467 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8468 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8469 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8470 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8471 | case BO_AddAssign: |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 8472 | CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8473 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8474 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8475 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8476 | case BO_SubAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8477 | CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); |
| 8478 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8479 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8480 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8481 | case BO_ShlAssign: |
| 8482 | case BO_ShrAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8483 | CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8484 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8485 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8486 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8487 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8488 | case BO_AndAssign: |
| 8489 | case BO_XorAssign: |
| 8490 | case BO_OrAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8491 | CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8492 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8493 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 8494 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8495 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8496 | case BO_Comma: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8497 | ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8498 | if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8499 | VK = RHS.get()->getValueKind(); |
| 8500 | OK = RHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8501 | } |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8502 | break; |
| 8503 | } |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8504 | if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 8505 | return ExprError(); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8506 | |
| 8507 | // Check for array bounds violations for both sides of the BinaryOperator |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8508 | CheckArrayAccess(LHS.get()); |
| 8509 | CheckArrayAccess(RHS.get()); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8510 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8511 | if (CompResultTy.isNull()) |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8512 | return Owned(new (Context) BinaryOperator(LHS.take(), RHS.take(), Opc, |
Lang Hames | be9af12 | 2012-10-02 04:45:10 +0000 | [diff] [blame] | 8513 | ResultTy, VK, OK, OpLoc, |
| 8514 | FPFeatures.fp_contract)); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8515 | if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 8516 | OK_ObjCProperty) { |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8517 | VK = VK_LValue; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8518 | OK = LHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8519 | } |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8520 | return Owned(new (Context) CompoundAssignOperator(LHS.take(), RHS.take(), Opc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8521 | ResultTy, VK, OK, CompLHSTy, |
Lang Hames | be9af12 | 2012-10-02 04:45:10 +0000 | [diff] [blame] | 8522 | CompResultTy, OpLoc, |
| 8523 | FPFeatures.fp_contract)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8524 | } |
| 8525 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 8526 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 8527 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 8528 | /// comparison operators have higher precedence. The most typical example of |
| 8529 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8530 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8531 | SourceLocation OpLoc, Expr *LHSExpr, |
| 8532 | Expr *RHSExpr) { |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8533 | BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); |
| 8534 | BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8535 | |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8536 | // Check that one of the sides is a comparison operator. |
| 8537 | bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); |
| 8538 | bool isRightComp = RHSBO && RHSBO->isComparisonOp(); |
| 8539 | if (!isLeftComp && !isRightComp) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8540 | return; |
| 8541 | |
| 8542 | // Bitwise operations are sometimes used as eager logical ops. |
| 8543 | // Don't diagnose this. |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8544 | bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); |
| 8545 | bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); |
| 8546 | if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8547 | return; |
| 8548 | |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8549 | SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), |
| 8550 | OpLoc) |
| 8551 | : SourceRange(OpLoc, RHSExpr->getLocEnd()); |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8552 | StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8553 | SourceRange ParensRange = isLeftComp ? |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8554 | SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) |
| 8555 | : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocStart()); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8556 | |
| 8557 | Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8558 | << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8559 | SuggestParentheses(Self, OpLoc, |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 8560 | Self.PDiag(diag::note_precedence_silence) << OpStr, |
Nico Weber | 40e2999 | 2012-06-03 07:07:00 +0000 | [diff] [blame] | 8561 | (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange()); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8562 | SuggestParentheses(Self, OpLoc, |
Eli Friedman | ebbcd1d | 2012-11-15 00:29:07 +0000 | [diff] [blame] | 8563 | Self.PDiag(diag::note_precedence_bitwise_first) |
| 8564 | << BinaryOperator::getOpcodeStr(Opc), |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8565 | ParensRange); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8566 | } |
| 8567 | |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8568 | /// \brief It accepts a '&' expr that is inside a '|' one. |
| 8569 | /// Emit a diagnostic together with a fixit hint that wraps the '&' expression |
| 8570 | /// in parentheses. |
| 8571 | static void |
| 8572 | EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, |
| 8573 | BinaryOperator *Bop) { |
| 8574 | assert(Bop->getOpcode() == BO_And); |
| 8575 | Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) |
| 8576 | << Bop->getSourceRange() << OpLoc; |
| 8577 | SuggestParentheses(Self, Bop->getOperatorLoc(), |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 8578 | Self.PDiag(diag::note_precedence_silence) |
| 8579 | << Bop->getOpcodeStr(), |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8580 | Bop->getSourceRange()); |
| 8581 | } |
| 8582 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8583 | /// \brief It accepts a '&&' expr that is inside a '||' one. |
| 8584 | /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression |
| 8585 | /// in parentheses. |
| 8586 | static void |
| 8587 | EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, |
Argyrios Kyrtzidis | a61aedc | 2011-04-22 19:16:27 +0000 | [diff] [blame] | 8588 | BinaryOperator *Bop) { |
| 8589 | assert(Bop->getOpcode() == BO_LAnd); |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 8590 | Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) |
| 8591 | << Bop->getSourceRange() << OpLoc; |
Argyrios Kyrtzidis | a61aedc | 2011-04-22 19:16:27 +0000 | [diff] [blame] | 8592 | SuggestParentheses(Self, Bop->getOperatorLoc(), |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 8593 | Self.PDiag(diag::note_precedence_silence) |
| 8594 | << Bop->getOpcodeStr(), |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 8595 | Bop->getSourceRange()); |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8596 | } |
| 8597 | |
| 8598 | /// \brief Returns true if the given expression can be evaluated as a constant |
| 8599 | /// 'true'. |
| 8600 | static bool EvaluatesAsTrue(Sema &S, Expr *E) { |
| 8601 | bool Res; |
| 8602 | return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; |
| 8603 | } |
| 8604 | |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8605 | /// \brief Returns true if the given expression can be evaluated as a constant |
| 8606 | /// 'false'. |
| 8607 | static bool EvaluatesAsFalse(Sema &S, Expr *E) { |
| 8608 | bool Res; |
| 8609 | return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; |
| 8610 | } |
| 8611 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8612 | /// \brief Look for '&&' in the left hand of a '||' expr. |
| 8613 | static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8614 | Expr *LHSExpr, Expr *RHSExpr) { |
| 8615 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8616 | if (Bop->getOpcode() == BO_LAnd) { |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8617 | // If it's "a && b || 0" don't warn since the precedence doesn't matter. |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8618 | if (EvaluatesAsFalse(S, RHSExpr)) |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8619 | return; |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8620 | // If it's "1 && a || b" don't warn since the precedence doesn't matter. |
| 8621 | if (!EvaluatesAsTrue(S, Bop->getLHS())) |
| 8622 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); |
| 8623 | } else if (Bop->getOpcode() == BO_LOr) { |
| 8624 | if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { |
| 8625 | // If it's "a || b && 1 || c" we didn't warn earlier for |
| 8626 | // "a || b && 1", but warn now. |
| 8627 | if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) |
| 8628 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); |
| 8629 | } |
| 8630 | } |
| 8631 | } |
| 8632 | } |
| 8633 | |
| 8634 | /// \brief Look for '&&' in the right hand of a '||' expr. |
| 8635 | static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8636 | Expr *LHSExpr, Expr *RHSExpr) { |
| 8637 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8638 | if (Bop->getOpcode() == BO_LAnd) { |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8639 | // If it's "0 || a && b" don't warn since the precedence doesn't matter. |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8640 | if (EvaluatesAsFalse(S, LHSExpr)) |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8641 | return; |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8642 | // If it's "a || b && 1" don't warn since the precedence doesn't matter. |
| 8643 | if (!EvaluatesAsTrue(S, Bop->getRHS())) |
| 8644 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8645 | } |
| 8646 | } |
| 8647 | } |
| 8648 | |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8649 | /// \brief Look for '&' in the left or right hand of a '|' expr. |
| 8650 | static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, |
| 8651 | Expr *OrArg) { |
| 8652 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { |
| 8653 | if (Bop->getOpcode() == BO_And) |
| 8654 | return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); |
| 8655 | } |
| 8656 | } |
| 8657 | |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8658 | static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc, |
David Blaikie | 5f531a4 | 2012-10-19 18:26:06 +0000 | [diff] [blame] | 8659 | Expr *SubExpr, StringRef Shift) { |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8660 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { |
| 8661 | if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) { |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 8662 | StringRef Op = Bop->getOpcodeStr(); |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8663 | S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift) |
David Blaikie | 5f531a4 | 2012-10-19 18:26:06 +0000 | [diff] [blame] | 8664 | << Bop->getSourceRange() << OpLoc << Shift << Op; |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8665 | SuggestParentheses(S, Bop->getOperatorLoc(), |
David Blaikie | 6b34c17 | 2012-10-08 01:19:49 +0000 | [diff] [blame] | 8666 | S.PDiag(diag::note_precedence_silence) << Op, |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8667 | Bop->getSourceRange()); |
| 8668 | } |
| 8669 | } |
| 8670 | } |
| 8671 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8672 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8673 | /// precedence. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8674 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8675 | SourceLocation OpLoc, Expr *LHSExpr, |
| 8676 | Expr *RHSExpr){ |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8677 | // Diagnose "arg1 'bitwise' arg2 'eq' arg3". |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 8678 | if (BinaryOperator::isBitwiseOp(Opc)) |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8679 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8680 | |
| 8681 | // Diagnose "arg1 & arg2 | arg3" |
| 8682 | if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8683 | DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); |
| 8684 | DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8685 | } |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8686 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8687 | // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. |
| 8688 | // We don't warn for 'assert(a || b && "bad")' since this is safe. |
Argyrios Kyrtzidis | d92ccaa | 2010-11-17 18:54:22 +0000 | [diff] [blame] | 8689 | if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8690 | DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); |
| 8691 | DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8692 | } |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8693 | |
| 8694 | if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext())) |
| 8695 | || Opc == BO_Shr) { |
David Blaikie | 5f531a4 | 2012-10-19 18:26:06 +0000 | [diff] [blame] | 8696 | StringRef Shift = BinaryOperator::getOpcodeStr(Opc); |
| 8697 | DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift); |
| 8698 | DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift); |
David Blaikie | b3f55c5 | 2012-10-05 00:41:03 +0000 | [diff] [blame] | 8699 | } |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8700 | } |
| 8701 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8702 | // Binary Operators. 'Tok' is the token for the operator. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8703 | ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8704 | tok::TokenKind Kind, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8705 | Expr *LHSExpr, Expr *RHSExpr) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8706 | BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8707 | assert((LHSExpr != 0) && "ActOnBinOp(): missing left expression"); |
| 8708 | assert((RHSExpr != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8709 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8710 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8711 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8712 | |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8713 | return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 8714 | } |
| 8715 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8716 | /// Build an overloaded binary operator expression in the given scope. |
| 8717 | static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, |
| 8718 | BinaryOperatorKind Opc, |
| 8719 | Expr *LHS, Expr *RHS) { |
| 8720 | // Find all of the overloaded operators visible from this |
| 8721 | // point. We perform both an operator-name lookup from the local |
| 8722 | // scope and an argument-dependent lookup based on the types of |
| 8723 | // the arguments. |
| 8724 | UnresolvedSet<16> Functions; |
| 8725 | OverloadedOperatorKind OverOp |
| 8726 | = BinaryOperator::getOverloadedOperator(Opc); |
| 8727 | if (Sc && OverOp != OO_None) |
| 8728 | S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), |
| 8729 | RHS->getType(), Functions); |
| 8730 | |
| 8731 | // Build the (potentially-overloaded, potentially-dependent) |
| 8732 | // binary operation. |
| 8733 | return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); |
| 8734 | } |
| 8735 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8736 | ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8737 | BinaryOperatorKind Opc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8738 | Expr *LHSExpr, Expr *RHSExpr) { |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8739 | // We want to end up calling one of checkPseudoObjectAssignment |
| 8740 | // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if |
| 8741 | // both expressions are overloadable or either is type-dependent), |
| 8742 | // or CreateBuiltinBinOp (in any other case). We also want to get |
| 8743 | // any placeholder types out of the way. |
| 8744 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8745 | // Handle pseudo-objects in the LHS. |
| 8746 | if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { |
| 8747 | // Assignments with a pseudo-object l-value need special analysis. |
| 8748 | if (pty->getKind() == BuiltinType::PseudoObject && |
| 8749 | BinaryOperator::isAssignmentOp(Opc)) |
| 8750 | return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8751 | |
| 8752 | // Don't resolve overloads if the other type is overloadable. |
| 8753 | if (pty->getKind() == BuiltinType::Overload) { |
| 8754 | // We can't actually test that if we still have a placeholder, |
| 8755 | // though. Fortunately, none of the exceptions we see in that |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8756 | // code below are valid when the LHS is an overload set. Note |
| 8757 | // that an overload set can be dependently-typed, but it never |
| 8758 | // instantiates to having an overloadable type. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8759 | ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); |
| 8760 | if (resolvedRHS.isInvalid()) return ExprError(); |
| 8761 | RHSExpr = resolvedRHS.take(); |
| 8762 | |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8763 | if (RHSExpr->isTypeDependent() || |
| 8764 | RHSExpr->getType()->isOverloadableType()) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8765 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8766 | } |
| 8767 | |
| 8768 | ExprResult LHS = CheckPlaceholderExpr(LHSExpr); |
| 8769 | if (LHS.isInvalid()) return ExprError(); |
| 8770 | LHSExpr = LHS.take(); |
| 8771 | } |
| 8772 | |
| 8773 | // Handle pseudo-objects in the RHS. |
| 8774 | if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { |
| 8775 | // An overload in the RHS can potentially be resolved by the type |
| 8776 | // being assigned to. |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8777 | if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { |
| 8778 | if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) |
| 8779 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8780 | |
Eli Friedman | 8788491 | 2012-01-17 21:27:43 +0000 | [diff] [blame] | 8781 | if (LHSExpr->getType()->isOverloadableType()) |
| 8782 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8783 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8784 | return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8785 | } |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8786 | |
| 8787 | // Don't resolve overloads if the other type is overloadable. |
| 8788 | if (pty->getKind() == BuiltinType::Overload && |
| 8789 | LHSExpr->getType()->isOverloadableType()) |
| 8790 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8791 | |
| 8792 | ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); |
| 8793 | if (!resolvedRHS.isUsable()) return ExprError(); |
| 8794 | RHSExpr = resolvedRHS.take(); |
| 8795 | } |
| 8796 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8797 | if (getLangOpts().CPlusPlus) { |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8798 | // If either expression is type-dependent, always build an |
| 8799 | // overloaded op. |
| 8800 | if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) |
| 8801 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8802 | |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8803 | // Otherwise, build an overloaded op if either expression has an |
| 8804 | // overloadable type. |
| 8805 | if (LHSExpr->getType()->isOverloadableType() || |
| 8806 | RHSExpr->getType()->isOverloadableType()) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8807 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 8808 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8809 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8810 | // Build a built-in binary operation. |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8811 | return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8812 | } |
| 8813 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8814 | ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Argyrios Kyrtzidis | b1fa3dc | 2011-01-05 20:09:36 +0000 | [diff] [blame] | 8815 | UnaryOperatorKind Opc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8816 | Expr *InputExpr) { |
| 8817 | ExprResult Input = Owned(InputExpr); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8818 | ExprValueKind VK = VK_RValue; |
| 8819 | ExprObjectKind OK = OK_Ordinary; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8820 | QualType resultType; |
| 8821 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8822 | case UO_PreInc: |
| 8823 | case UO_PreDec: |
| 8824 | case UO_PostInc: |
| 8825 | case UO_PostDec: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8826 | resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8827 | Opc == UO_PreInc || |
| 8828 | Opc == UO_PostInc, |
| 8829 | Opc == UO_PreInc || |
| 8830 | Opc == UO_PreDec); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8831 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8832 | case UO_AddrOf: |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8833 | resultType = CheckAddressOfOperand(*this, Input, OpLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8834 | break; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 8835 | case UO_Deref: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8836 | Input = DefaultFunctionArrayLvalueConversion(Input.take()); |
Eli Friedman | a6c66ce | 2012-08-31 00:14:07 +0000 | [diff] [blame] | 8837 | if (Input.isInvalid()) return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8838 | resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8839 | break; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 8840 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8841 | case UO_Plus: |
| 8842 | case UO_Minus: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8843 | Input = UsualUnaryConversions(Input.take()); |
| 8844 | if (Input.isInvalid()) return ExprError(); |
| 8845 | resultType = Input.get()->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8846 | if (resultType->isDependentType()) |
| 8847 | break; |
Douglas Gregor | 0061962 | 2010-06-22 23:41:02 +0000 | [diff] [blame] | 8848 | if (resultType->isArithmeticType() || // C99 6.5.3.3p1 |
| 8849 | resultType->isVectorType()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8850 | break; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8851 | else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6-7 |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8852 | resultType->isEnumeralType()) |
| 8853 | break; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8854 | else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8855 | Opc == UO_Plus && |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8856 | resultType->isPointerType()) |
| 8857 | break; |
| 8858 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8859 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8860 | << resultType << Input.get()->getSourceRange()); |
| 8861 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8862 | case UO_Not: // bitwise complement |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8863 | Input = UsualUnaryConversions(Input.take()); |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8864 | if (Input.isInvalid()) |
| 8865 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8866 | resultType = Input.get()->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8867 | if (resultType->isDependentType()) |
| 8868 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 8869 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 8870 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 8871 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 8872 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8873 | << resultType << Input.get()->getSourceRange(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8874 | else if (resultType->hasIntegerRepresentation()) |
| 8875 | break; |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8876 | else if (resultType->isExtVectorType()) { |
| 8877 | if (Context.getLangOpts().OpenCL) { |
| 8878 | // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate |
| 8879 | // on vector float types. |
| 8880 | QualType T = resultType->getAs<ExtVectorType>()->getElementType(); |
| 8881 | if (!T->isIntegerType()) |
| 8882 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 8883 | << resultType << Input.get()->getSourceRange()); |
| 8884 | } |
| 8885 | break; |
| 8886 | } else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8887 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8888 | << resultType << Input.get()->getSourceRange()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8889 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8890 | break; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8891 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8892 | case UO_LNot: // logical negation |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8893 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8894 | Input = DefaultFunctionArrayLvalueConversion(Input.take()); |
| 8895 | if (Input.isInvalid()) return ExprError(); |
| 8896 | resultType = Input.get()->getType(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 8897 | |
| 8898 | // Though we still have to promote half FP to float... |
Joey Gouly | 19dbb20 | 2013-01-23 11:56:20 +0000 | [diff] [blame] | 8899 | if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) { |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 8900 | Input = ImpCastExprToType(Input.take(), Context.FloatTy, CK_FloatingCast).take(); |
| 8901 | resultType = Context.FloatTy; |
| 8902 | } |
| 8903 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8904 | if (resultType->isDependentType()) |
| 8905 | break; |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8906 | if (resultType->isScalarType()) { |
| 8907 | // C99 6.5.3.3p1: ok, fallthrough; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8908 | if (Context.getLangOpts().CPlusPlus) { |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8909 | // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: |
| 8910 | // operand contextually converted to bool. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8911 | Input = ImpCastExprToType(Input.take(), Context.BoolTy, |
| 8912 | ScalarTypeToBooleanCastKind(resultType)); |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8913 | } else if (Context.getLangOpts().OpenCL && |
| 8914 | Context.getLangOpts().OpenCLVersion < 120) { |
| 8915 | // OpenCL v1.1 6.3.h: The logical operator not (!) does not |
| 8916 | // operate on scalar float types. |
| 8917 | if (!resultType->isIntegerType()) |
| 8918 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 8919 | << resultType << Input.get()->getSourceRange()); |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8920 | } |
Tanya Lattner | b0f9dd2 | 2012-01-19 01:16:16 +0000 | [diff] [blame] | 8921 | } else if (resultType->isExtVectorType()) { |
Joey Gouly | 52e933b | 2013-02-21 11:49:56 +0000 | [diff] [blame^] | 8922 | if (Context.getLangOpts().OpenCL && |
| 8923 | Context.getLangOpts().OpenCLVersion < 120) { |
| 8924 | // OpenCL v1.1 6.3.h: The logical operator not (!) does not |
| 8925 | // operate on vector float types. |
| 8926 | QualType T = resultType->getAs<ExtVectorType>()->getElementType(); |
| 8927 | if (!T->isIntegerType()) |
| 8928 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 8929 | << resultType << Input.get()->getSourceRange()); |
| 8930 | } |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 8931 | // Vector logical not returns the signed variant of the operand type. |
| 8932 | resultType = GetSignedVectorType(resultType); |
| 8933 | break; |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8934 | } else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8935 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8936 | << resultType << Input.get()->getSourceRange()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8937 | } |
Douglas Gregor | ea844f3 | 2010-09-20 17:13:33 +0000 | [diff] [blame] | 8938 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8939 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8940 | // In C++, it's bool. C++ 5.3.1p8 |
Argyrios Kyrtzidis | 16f744b | 2011-02-18 20:55:15 +0000 | [diff] [blame] | 8941 | resultType = Context.getLogicalOperationType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8942 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8943 | case UO_Real: |
| 8944 | case UO_Imag: |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8945 | resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8946 | // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary |
| 8947 | // complex l-values to ordinary l-values and all other values to r-values. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8948 | if (Input.isInvalid()) return ExprError(); |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8949 | if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { |
| 8950 | if (Input.get()->getValueKind() != VK_RValue && |
| 8951 | Input.get()->getObjectKind() == OK_Ordinary) |
| 8952 | VK = Input.get()->getValueKind(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8953 | } else if (!getLangOpts().CPlusPlus) { |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8954 | // In C, a volatile scalar is read by __imag. In C++, it is not. |
| 8955 | Input = DefaultLvalueConversion(Input.take()); |
| 8956 | } |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 8957 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8958 | case UO_Extension: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8959 | resultType = Input.get()->getType(); |
| 8960 | VK = Input.get()->getValueKind(); |
| 8961 | OK = Input.get()->getObjectKind(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8962 | break; |
| 8963 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8964 | if (resultType.isNull() || Input.isInvalid()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8965 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8966 | |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8967 | // Check for array bounds violations in the operand of the UnaryOperator, |
| 8968 | // except for the '*' and '&' operators that have to be handled specially |
| 8969 | // by CheckArrayAccess (as there are special cases like &array[arraysize] |
| 8970 | // that are explicitly defined as valid by the standard). |
| 8971 | if (Opc != UO_AddrOf && Opc != UO_Deref) |
| 8972 | CheckArrayAccess(Input.get()); |
| 8973 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8974 | return Owned(new (Context) UnaryOperator(Input.take(), Opc, resultType, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8975 | VK, OK, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8976 | } |
| 8977 | |
Douglas Gregor | d3d0853 | 2011-12-14 21:23:13 +0000 | [diff] [blame] | 8978 | /// \brief Determine whether the given expression is a qualified member |
| 8979 | /// access expression, of a form that could be turned into a pointer to member |
| 8980 | /// with the address-of operator. |
| 8981 | static bool isQualifiedMemberAccess(Expr *E) { |
| 8982 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { |
| 8983 | if (!DRE->getQualifier()) |
| 8984 | return false; |
| 8985 | |
| 8986 | ValueDecl *VD = DRE->getDecl(); |
| 8987 | if (!VD->isCXXClassMember()) |
| 8988 | return false; |
| 8989 | |
| 8990 | if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) |
| 8991 | return true; |
| 8992 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) |
| 8993 | return Method->isInstance(); |
| 8994 | |
| 8995 | return false; |
| 8996 | } |
| 8997 | |
| 8998 | if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { |
| 8999 | if (!ULE->getQualifier()) |
| 9000 | return false; |
| 9001 | |
| 9002 | for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(), |
| 9003 | DEnd = ULE->decls_end(); |
| 9004 | D != DEnd; ++D) { |
| 9005 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { |
| 9006 | if (Method->isInstance()) |
| 9007 | return true; |
| 9008 | } else { |
| 9009 | // Overload set does not contain methods. |
| 9010 | break; |
| 9011 | } |
| 9012 | } |
| 9013 | |
| 9014 | return false; |
| 9015 | } |
| 9016 | |
| 9017 | return false; |
| 9018 | } |
| 9019 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9020 | ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9021 | UnaryOperatorKind Opc, Expr *Input) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 9022 | // First things first: handle placeholders so that the |
| 9023 | // overloaded-operator check considers the right type. |
| 9024 | if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { |
| 9025 | // Increment and decrement of pseudo-object references. |
| 9026 | if (pty->getKind() == BuiltinType::PseudoObject && |
| 9027 | UnaryOperator::isIncrementDecrementOp(Opc)) |
| 9028 | return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); |
| 9029 | |
| 9030 | // extension is always a builtin operator. |
| 9031 | if (Opc == UO_Extension) |
| 9032 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
| 9033 | |
| 9034 | // & gets special logic for several kinds of placeholder. |
| 9035 | // The builtin code knows what to do. |
| 9036 | if (Opc == UO_AddrOf && |
| 9037 | (pty->getKind() == BuiltinType::Overload || |
| 9038 | pty->getKind() == BuiltinType::UnknownAny || |
| 9039 | pty->getKind() == BuiltinType::BoundMember)) |
| 9040 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
| 9041 | |
| 9042 | // Anything else needs to be handled now. |
| 9043 | ExprResult Result = CheckPlaceholderExpr(Input); |
| 9044 | if (Result.isInvalid()) return ExprError(); |
| 9045 | Input = Result.take(); |
| 9046 | } |
| 9047 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9048 | if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && |
Douglas Gregor | d3d0853 | 2011-12-14 21:23:13 +0000 | [diff] [blame] | 9049 | UnaryOperator::getOverloadedOperator(Opc) != OO_None && |
| 9050 | !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 9051 | // Find all of the overloaded operators visible from this |
| 9052 | // point. We perform both an operator-name lookup from the local |
| 9053 | // scope and an argument-dependent lookup based on the types of |
| 9054 | // the arguments. |
John McCall | 6e26689 | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 9055 | UnresolvedSet<16> Functions; |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 9056 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
John McCall | 6e26689 | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 9057 | if (S && OverOp != OO_None) |
| 9058 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 9059 | Functions); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9060 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9061 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 9062 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9063 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9064 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 9065 | } |
| 9066 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 9067 | // Unary Operators. 'Tok' is the token for the operator. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9068 | ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 9069 | tok::TokenKind Op, Expr *Input) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9070 | return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 9071 | } |
| 9072 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 9073 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 9074 | ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, |
Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 9075 | LabelDecl *TheDecl) { |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 9076 | TheDecl->setUsed(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 9077 | // Create the AST node. The address of a label always has type 'void*'. |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 9078 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9079 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 9080 | } |
| 9081 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9082 | /// Given the last statement in a statement-expression, check whether |
| 9083 | /// the result is a producing expression (like a call to an |
| 9084 | /// ns_returns_retained function) and, if so, rebuild it to hoist the |
| 9085 | /// release out of the full-expression. Otherwise, return null. |
| 9086 | /// Cannot fail. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9087 | static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9088 | // Should always be wrapped with one of these. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9089 | ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9090 | if (!cleanups) return 0; |
| 9091 | |
| 9092 | ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 9093 | if (!cast || cast->getCastKind() != CK_ARCConsumeObject) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9094 | return 0; |
| 9095 | |
| 9096 | // Splice out the cast. This shouldn't modify any interesting |
| 9097 | // features of the statement. |
| 9098 | Expr *producer = cast->getSubExpr(); |
| 9099 | assert(producer->getType() == cast->getType()); |
| 9100 | assert(producer->getValueKind() == cast->getValueKind()); |
| 9101 | cleanups->setSubExpr(producer); |
| 9102 | return cleanups; |
| 9103 | } |
| 9104 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 9105 | void Sema::ActOnStartStmtExpr() { |
| 9106 | PushExpressionEvaluationContext(ExprEvalContexts.back().Context); |
| 9107 | } |
| 9108 | |
| 9109 | void Sema::ActOnStmtExprError() { |
John McCall | 7f39d51 | 2012-04-06 18:20:53 +0000 | [diff] [blame] | 9110 | // Note that function is also called by TreeTransform when leaving a |
| 9111 | // StmtExpr scope without rebuilding anything. |
| 9112 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 9113 | DiscardCleanupsInEvaluationContext(); |
| 9114 | PopExpressionEvaluationContext(); |
| 9115 | } |
| 9116 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9117 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9118 | Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9119 | SourceLocation RPLoc) { // "({..})" |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 9120 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 9121 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 9122 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 9123 | if (hasAnyUnrecoverableErrorsInThisFunction()) |
| 9124 | DiscardCleanupsInEvaluationContext(); |
| 9125 | assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!"); |
| 9126 | PopExpressionEvaluationContext(); |
| 9127 | |
Douglas Gregor | dd8f569 | 2010-03-10 04:54:39 +0000 | [diff] [blame] | 9128 | bool isFileScope |
| 9129 | = (getCurFunctionOrMethodDecl() == 0) && (getCurBlock() == 0); |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 9130 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9131 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 9132 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 9133 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 9134 | // example, it is not possible to goto into a stmt expression apparently. |
| 9135 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9136 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 9137 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 9138 | // as the type of the stmtexpr. |
| 9139 | QualType Ty = Context.VoidTy; |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9140 | bool StmtExprMayBindToTemp = false; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 9141 | if (!Compound->body_empty()) { |
| 9142 | Stmt *LastStmt = Compound->body_back(); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9143 | LabelStmt *LastLabelStmt = 0; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 9144 | // If LastStmt is a label, skip down through into the body. |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9145 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { |
| 9146 | LastLabelStmt = Label; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 9147 | LastStmt = Label->getSubStmt(); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9148 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9149 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9150 | if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 9151 | // Do function/array conversion on the last expression, but not |
| 9152 | // lvalue-to-rvalue. However, initialize an unqualified type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9153 | ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); |
| 9154 | if (LastExpr.isInvalid()) |
| 9155 | return ExprError(); |
| 9156 | Ty = LastExpr.get()->getType().getUnqualifiedType(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 9157 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9158 | if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9159 | // In ARC, if the final expression ends in a consume, splice |
| 9160 | // the consume out and bind it later. In the alternate case |
| 9161 | // (when dealing with a retainable type), the result |
| 9162 | // initialization will create a produce. In both cases the |
| 9163 | // result will be +1, and we'll need to balance that out with |
| 9164 | // a bind. |
| 9165 | if (Expr *rebuiltLastStmt |
| 9166 | = maybeRebuildARCConsumingStmt(LastExpr.get())) { |
| 9167 | LastExpr = rebuiltLastStmt; |
| 9168 | } else { |
| 9169 | LastExpr = PerformCopyInitialization( |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9170 | InitializedEntity::InitializeResult(LPLoc, |
| 9171 | Ty, |
| 9172 | false), |
| 9173 | SourceLocation(), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9174 | LastExpr); |
| 9175 | } |
| 9176 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9177 | if (LastExpr.isInvalid()) |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9178 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9179 | if (LastExpr.get() != 0) { |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9180 | if (!LastLabelStmt) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9181 | Compound->setLastStmt(LastExpr.take()); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9182 | else |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9183 | LastLabelStmt->setSubStmt(LastExpr.take()); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9184 | StmtExprMayBindToTemp = true; |
| 9185 | } |
| 9186 | } |
| 9187 | } |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 9188 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9189 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 9190 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 9191 | // expressions are not lvalues. |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 9192 | Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); |
| 9193 | if (StmtExprMayBindToTemp) |
| 9194 | return MaybeBindToTemporary(ResStmtExpr); |
| 9195 | return Owned(ResStmtExpr); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 9196 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 9197 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9198 | ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 9199 | TypeSourceInfo *TInfo, |
| 9200 | OffsetOfComponent *CompPtr, |
| 9201 | unsigned NumComponents, |
| 9202 | SourceLocation RParenLoc) { |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9203 | QualType ArgTy = TInfo->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9204 | bool Dependent = ArgTy->isDependentType(); |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 9205 | SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9206 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 9207 | // We must have at least one component that refers to the type, and the first |
| 9208 | // one is known to be a field designator. Verify that the ArgTy represents |
| 9209 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9210 | if (!Dependent && !ArgTy->isRecordType()) |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9211 | return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) |
| 9212 | << ArgTy << TypeRange); |
| 9213 | |
| 9214 | // Type must be complete per C99 7.17p3 because a declaring a variable |
| 9215 | // with an incomplete type would be ill-formed. |
| 9216 | if (!Dependent |
| 9217 | && RequireCompleteType(BuiltinLoc, ArgTy, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 9218 | diag::err_offsetof_incomplete_type, TypeRange)) |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9219 | return ExprError(); |
| 9220 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 9221 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 9222 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 9223 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 9224 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 9225 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 9226 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 9227 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9228 | |
| 9229 | bool DidWarnAboutNonPOD = false; |
| 9230 | QualType CurrentType = ArgTy; |
| 9231 | typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 9232 | SmallVector<OffsetOfNode, 4> Comps; |
| 9233 | SmallVector<Expr*, 4> Exprs; |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9234 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 9235 | const OffsetOfComponent &OC = CompPtr[i]; |
| 9236 | if (OC.isBrackets) { |
| 9237 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 9238 | if (!CurrentType->isDependentType()) { |
| 9239 | const ArrayType *AT = Context.getAsArrayType(CurrentType); |
| 9240 | if(!AT) |
| 9241 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 9242 | << CurrentType); |
| 9243 | CurrentType = AT->getElementType(); |
| 9244 | } else |
| 9245 | CurrentType = Context.DependentTy; |
| 9246 | |
Richard Smith | ea01143 | 2011-10-17 23:29:39 +0000 | [diff] [blame] | 9247 | ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); |
| 9248 | if (IdxRval.isInvalid()) |
| 9249 | return ExprError(); |
| 9250 | Expr *Idx = IdxRval.take(); |
| 9251 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9252 | // The expression must be an integral expression. |
| 9253 | // FIXME: An integral constant expression? |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9254 | if (!Idx->isTypeDependent() && !Idx->isValueDependent() && |
| 9255 | !Idx->getType()->isIntegerType()) |
| 9256 | return ExprError(Diag(Idx->getLocStart(), |
| 9257 | diag::err_typecheck_subscript_not_integer) |
| 9258 | << Idx->getSourceRange()); |
Richard Smith | d82e5d3 | 2011-10-17 05:48:07 +0000 | [diff] [blame] | 9259 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9260 | // Record this array index. |
| 9261 | Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); |
Richard Smith | ea01143 | 2011-10-17 23:29:39 +0000 | [diff] [blame] | 9262 | Exprs.push_back(Idx); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9263 | continue; |
| 9264 | } |
| 9265 | |
| 9266 | // Offset of a field. |
| 9267 | if (CurrentType->isDependentType()) { |
| 9268 | // We have the offset of a field, but we can't look into the dependent |
| 9269 | // type. Just record the identifier of the field. |
| 9270 | Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); |
| 9271 | CurrentType = Context.DependentTy; |
| 9272 | continue; |
| 9273 | } |
| 9274 | |
| 9275 | // We need to have a complete type to look into. |
| 9276 | if (RequireCompleteType(OC.LocStart, CurrentType, |
| 9277 | diag::err_offsetof_incomplete_type)) |
| 9278 | return ExprError(); |
| 9279 | |
| 9280 | // Look for the designated field. |
| 9281 | const RecordType *RC = CurrentType->getAs<RecordType>(); |
| 9282 | if (!RC) |
| 9283 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 9284 | << CurrentType); |
| 9285 | RecordDecl *RD = RC->getDecl(); |
| 9286 | |
| 9287 | // C++ [lib.support.types]p5: |
| 9288 | // The macro offsetof accepts a restricted set of type arguments in this |
| 9289 | // International Standard. type shall be a POD structure or a POD union |
| 9290 | // (clause 9). |
Benjamin Kramer | 98f71aa | 2012-04-28 11:14:51 +0000 | [diff] [blame] | 9291 | // C++11 [support.types]p4: |
| 9292 | // If type is not a standard-layout class (Clause 9), the results are |
| 9293 | // undefined. |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9294 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 9295 | bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); |
Benjamin Kramer | 98f71aa | 2012-04-28 11:14:51 +0000 | [diff] [blame] | 9296 | unsigned DiagID = |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 9297 | LangOpts.CPlusPlus11? diag::warn_offsetof_non_standardlayout_type |
Benjamin Kramer | 98f71aa | 2012-04-28 11:14:51 +0000 | [diff] [blame] | 9298 | : diag::warn_offsetof_non_pod_type; |
| 9299 | |
| 9300 | if (!IsSafe && !DidWarnAboutNonPOD && |
Ted Kremenek | 762696f | 2011-02-23 01:51:43 +0000 | [diff] [blame] | 9301 | DiagRuntimeBehavior(BuiltinLoc, 0, |
Benjamin Kramer | 98f71aa | 2012-04-28 11:14:51 +0000 | [diff] [blame] | 9302 | PDiag(DiagID) |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9303 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 9304 | << CurrentType)) |
| 9305 | DidWarnAboutNonPOD = true; |
| 9306 | } |
| 9307 | |
| 9308 | // Look for the field. |
| 9309 | LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); |
| 9310 | LookupQualifiedName(R, RD); |
| 9311 | FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 9312 | IndirectFieldDecl *IndirectMemberDecl = 0; |
| 9313 | if (!MemberDecl) { |
Benjamin Kramer | d981146 | 2010-11-21 14:11:41 +0000 | [diff] [blame] | 9314 | if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 9315 | MemberDecl = IndirectMemberDecl->getAnonField(); |
| 9316 | } |
| 9317 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9318 | if (!MemberDecl) |
| 9319 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 9320 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, |
| 9321 | OC.LocEnd)); |
| 9322 | |
Douglas Gregor | 9d5d60f | 2010-04-28 22:36:06 +0000 | [diff] [blame] | 9323 | // C99 7.17p3: |
| 9324 | // (If the specified member is a bit-field, the behavior is undefined.) |
| 9325 | // |
| 9326 | // We diagnose this as an error. |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 9327 | if (MemberDecl->isBitField()) { |
Douglas Gregor | 9d5d60f | 2010-04-28 22:36:06 +0000 | [diff] [blame] | 9328 | Diag(OC.LocEnd, diag::err_offsetof_bitfield) |
| 9329 | << MemberDecl->getDeclName() |
| 9330 | << SourceRange(BuiltinLoc, RParenLoc); |
| 9331 | Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); |
| 9332 | return ExprError(); |
| 9333 | } |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 9334 | |
| 9335 | RecordDecl *Parent = MemberDecl->getParent(); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 9336 | if (IndirectMemberDecl) |
| 9337 | Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 9338 | |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 9339 | // If the member was found in a base class, introduce OffsetOfNodes for |
| 9340 | // the base class indirections. |
| 9341 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
| 9342 | /*DetectVirtual=*/false); |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 9343 | if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 9344 | CXXBasePath &Path = Paths.front(); |
| 9345 | for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); |
| 9346 | B != BEnd; ++B) |
| 9347 | Comps.push_back(OffsetOfNode(B->Base)); |
| 9348 | } |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 9349 | |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 9350 | if (IndirectMemberDecl) { |
| 9351 | for (IndirectFieldDecl::chain_iterator FI = |
| 9352 | IndirectMemberDecl->chain_begin(), |
| 9353 | FEnd = IndirectMemberDecl->chain_end(); FI != FEnd; FI++) { |
| 9354 | assert(isa<FieldDecl>(*FI)); |
| 9355 | Comps.push_back(OffsetOfNode(OC.LocStart, |
| 9356 | cast<FieldDecl>(*FI), OC.LocEnd)); |
| 9357 | } |
| 9358 | } else |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9359 | Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 9360 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9361 | CurrentType = MemberDecl->getType().getNonReferenceType(); |
| 9362 | } |
| 9363 | |
| 9364 | return Owned(OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, |
Benjamin Kramer | 3b6bef9 | 2012-08-24 11:54:20 +0000 | [diff] [blame] | 9365 | TInfo, Comps, Exprs, RParenLoc)); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9366 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9367 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9368 | ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 9369 | SourceLocation BuiltinLoc, |
| 9370 | SourceLocation TypeLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9371 | ParsedType ParsedArgTy, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 9372 | OffsetOfComponent *CompPtr, |
| 9373 | unsigned NumComponents, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9374 | SourceLocation RParenLoc) { |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 9375 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9376 | TypeSourceInfo *ArgTInfo; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9377 | QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 9378 | if (ArgTy.isNull()) |
| 9379 | return ExprError(); |
| 9380 | |
Eli Friedman | 5a15dc1 | 2010-08-05 10:15:45 +0000 | [diff] [blame] | 9381 | if (!ArgTInfo) |
| 9382 | ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); |
| 9383 | |
| 9384 | return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9385 | RParenLoc); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 9386 | } |
| 9387 | |
| 9388 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9389 | ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 9390 | Expr *CondExpr, |
| 9391 | Expr *LHSExpr, Expr *RHSExpr, |
| 9392 | SourceLocation RPLoc) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 9393 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 9394 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 9395 | ExprValueKind VK = VK_RValue; |
| 9396 | ExprObjectKind OK = OK_Ordinary; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9397 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 9398 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 9399 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9400 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 9401 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9402 | } else { |
| 9403 | // The conditional expression is required to be a constant expression. |
| 9404 | llvm::APSInt condEval(32); |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 9405 | ExprResult CondICE |
| 9406 | = VerifyIntegerConstantExpression(CondExpr, &condEval, |
| 9407 | diag::err_typecheck_choose_expr_requires_constant, false); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9408 | if (CondICE.isInvalid()) |
| 9409 | return ExprError(); |
| 9410 | CondExpr = CondICE.take(); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 9411 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9412 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 9413 | Expr *ActiveExpr = condEval.getZExtValue() ? LHSExpr : RHSExpr; |
| 9414 | |
| 9415 | resType = ActiveExpr->getType(); |
| 9416 | ValueDependent = ActiveExpr->isValueDependent(); |
| 9417 | VK = ActiveExpr->getValueKind(); |
| 9418 | OK = ActiveExpr->getObjectKind(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 9419 | } |
| 9420 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9421 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 9422 | resType, VK, OK, RPLoc, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 9423 | resType->isDependentType(), |
| 9424 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 9425 | } |
| 9426 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9427 | //===----------------------------------------------------------------------===// |
| 9428 | // Clang Extensions. |
| 9429 | //===----------------------------------------------------------------------===// |
| 9430 | |
| 9431 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9432 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9433 | BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9434 | PushBlockScope(CurScope, Block); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9435 | CurContext->addDecl(Block); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9436 | if (CurScope) |
| 9437 | PushDeclContext(CurScope, Block); |
Fariborz Jahanian | a729da2 | 2010-07-09 18:44:02 +0000 | [diff] [blame] | 9438 | else |
| 9439 | CurContext = Block; |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9440 | |
Eli Friedman | 84b007f | 2012-01-26 03:00:14 +0000 | [diff] [blame] | 9441 | getCurBlock()->HasImplicitReturnType = true; |
| 9442 | |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9443 | // Enter a new evaluation context to insulate the block from any |
| 9444 | // cleanups from the enclosing full-expression. |
| 9445 | PushExpressionEvaluationContext(PotentiallyEvaluated); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9446 | } |
| 9447 | |
Douglas Gregor | 03f1eb0 | 2012-06-15 16:59:29 +0000 | [diff] [blame] | 9448 | void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, |
| 9449 | Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 9450 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9451 | assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9452 | BlockScopeInfo *CurBlock = getCurBlock(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9453 | |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 9454 | TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 9455 | QualType T = Sig->getType(); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 9456 | |
Douglas Gregor | 03f1eb0 | 2012-06-15 16:59:29 +0000 | [diff] [blame] | 9457 | // FIXME: We should allow unexpanded parameter packs here, but that would, |
| 9458 | // in turn, make the block expression contain unexpanded parameter packs. |
| 9459 | if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) { |
| 9460 | // Drop the parameters. |
| 9461 | FunctionProtoType::ExtProtoInfo EPI; |
| 9462 | EPI.HasTrailingReturn = false; |
| 9463 | EPI.TypeQuals |= DeclSpec::TQ_const; |
| 9464 | T = Context.getFunctionType(Context.DependentTy, /*Args=*/0, /*NumArgs=*/0, |
| 9465 | EPI); |
| 9466 | Sig = Context.getTrivialTypeSourceInfo(T); |
| 9467 | } |
| 9468 | |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9469 | // GetTypeForDeclarator always produces a function type for a block |
| 9470 | // literal signature. Furthermore, it is always a FunctionProtoType |
| 9471 | // unless the function was written with a typedef. |
| 9472 | assert(T->isFunctionType() && |
| 9473 | "GetTypeForDeclarator made a non-function block signature"); |
| 9474 | |
| 9475 | // Look for an explicit signature in that function type. |
| 9476 | FunctionProtoTypeLoc ExplicitSignature; |
| 9477 | |
| 9478 | TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 9479 | if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) { |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9480 | |
| 9481 | // Check whether that explicit signature was synthesized by |
| 9482 | // GetTypeForDeclarator. If so, don't save that as part of the |
| 9483 | // written signature. |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 9484 | if (ExplicitSignature.getLocalRangeBegin() == |
| 9485 | ExplicitSignature.getLocalRangeEnd()) { |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9486 | // This would be much cheaper if we stored TypeLocs instead of |
| 9487 | // TypeSourceInfos. |
| 9488 | TypeLoc Result = ExplicitSignature.getResultLoc(); |
| 9489 | unsigned Size = Result.getFullDataSize(); |
| 9490 | Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); |
| 9491 | Sig->getTypeLoc().initializeFullCopy(Result, Size); |
| 9492 | |
| 9493 | ExplicitSignature = FunctionProtoTypeLoc(); |
| 9494 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9495 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9496 | |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9497 | CurBlock->TheDecl->setSignatureAsWritten(Sig); |
| 9498 | CurBlock->FunctionType = T; |
| 9499 | |
| 9500 | const FunctionType *Fn = T->getAs<FunctionType>(); |
| 9501 | QualType RetTy = Fn->getResultType(); |
| 9502 | bool isVariadic = |
| 9503 | (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); |
| 9504 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9505 | CurBlock->TheDecl->setIsVariadic(isVariadic); |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 9506 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9507 | // Don't allow returning a objc interface by value. |
| 9508 | if (RetTy->isObjCObjectType()) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 9509 | Diag(ParamInfo.getLocStart(), |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9510 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 9511 | return; |
| 9512 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9513 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9514 | // Context.DependentTy is used as a placeholder for a missing block |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9515 | // return type. TODO: what should we do with declarators like: |
| 9516 | // ^ * { ... } |
| 9517 | // If the answer is "apply template argument deduction".... |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 9518 | if (RetTy != Context.DependentTy) { |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9519 | CurBlock->ReturnType = RetTy; |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 9520 | CurBlock->TheDecl->setBlockMissingReturnType(false); |
Eli Friedman | 84b007f | 2012-01-26 03:00:14 +0000 | [diff] [blame] | 9521 | CurBlock->HasImplicitReturnType = false; |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 9522 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9523 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9524 | // Push block parameters from the declarator if we had them. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 9525 | SmallVector<ParmVarDecl*, 8> Params; |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 9526 | if (ExplicitSignature) { |
| 9527 | for (unsigned I = 0, E = ExplicitSignature.getNumArgs(); I != E; ++I) { |
| 9528 | ParmVarDecl *Param = ExplicitSignature.getArg(I); |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 9529 | if (Param->getIdentifier() == 0 && |
| 9530 | !Param->isImplicit() && |
| 9531 | !Param->isInvalidDecl() && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9532 | !getLangOpts().CPlusPlus) |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 9533 | Diag(Param->getLocation(), diag::err_parameter_name_omitted); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9534 | Params.push_back(Param); |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 9535 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9536 | |
| 9537 | // Fake up parameter variables if we have a typedef, like |
| 9538 | // ^ fntype { ... } |
| 9539 | } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { |
| 9540 | for (FunctionProtoType::arg_type_iterator |
| 9541 | I = Fn->arg_type_begin(), E = Fn->arg_type_end(); I != E; ++I) { |
| 9542 | ParmVarDecl *Param = |
| 9543 | BuildParmVarDeclForTypedef(CurBlock->TheDecl, |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 9544 | ParamInfo.getLocStart(), |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9545 | *I); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9546 | Params.push_back(Param); |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9547 | } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9548 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9549 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9550 | // Set the parameters on the block decl. |
Douglas Gregor | 82aa713 | 2010-11-01 18:37:59 +0000 | [diff] [blame] | 9551 | if (!Params.empty()) { |
David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 9552 | CurBlock->TheDecl->setParams(Params); |
Douglas Gregor | 82aa713 | 2010-11-01 18:37:59 +0000 | [diff] [blame] | 9553 | CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), |
| 9554 | CurBlock->TheDecl->param_end(), |
| 9555 | /*CheckParameterNames=*/false); |
| 9556 | } |
| 9557 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9558 | // Finally we can process decl attributes. |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 9559 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9560 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9561 | // Put the parameter variables in scope. We can bail out immediately |
| 9562 | // if we don't have any. |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9563 | if (Params.empty()) |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 9564 | return; |
| 9565 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9566 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
John McCall | 7a9813c | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 9567 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) { |
| 9568 | (*AI)->setOwningFunction(CurBlock->TheDecl); |
| 9569 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9570 | // If this has an identifier, add it to the scope stack. |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9571 | if ((*AI)->getIdentifier()) { |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 9572 | CheckShadow(CurBlock->TheScope, *AI); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9573 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9574 | PushOnScopeChains(*AI, CurBlock->TheScope); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9575 | } |
John McCall | 7a9813c | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 9576 | } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9577 | } |
| 9578 | |
| 9579 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 9580 | /// is invoked to pop the information about the block from the action impl. |
| 9581 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9582 | // Leave the expression-evaluation context. |
| 9583 | DiscardCleanupsInEvaluationContext(); |
| 9584 | PopExpressionEvaluationContext(); |
| 9585 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9586 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 9587 | PopDeclContext(); |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 9588 | PopFunctionScopeInfo(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9589 | } |
| 9590 | |
| 9591 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 9592 | /// literal was successfully completed. ^(int x){...} |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9593 | ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
Chris Lattner | e476bdc | 2011-02-17 23:58:47 +0000 | [diff] [blame] | 9594 | Stmt *Body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 9595 | // If blocks are disabled, emit an error. |
| 9596 | if (!LangOpts.Blocks) |
| 9597 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9598 | |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9599 | // Leave the expression-evaluation context. |
John McCall | 1e5bc4f | 2012-03-08 22:00:17 +0000 | [diff] [blame] | 9600 | if (hasAnyUnrecoverableErrorsInThisFunction()) |
| 9601 | DiscardCleanupsInEvaluationContext(); |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9602 | assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); |
| 9603 | PopExpressionEvaluationContext(); |
| 9604 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9605 | BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); |
Jordan Rose | 7dd900e | 2012-07-02 21:19:23 +0000 | [diff] [blame] | 9606 | |
| 9607 | if (BSI->HasImplicitReturnType) |
| 9608 | deduceClosureReturnType(*BSI); |
| 9609 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9610 | PopDeclContext(); |
| 9611 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9612 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 9613 | if (!BSI->ReturnType.isNull()) |
| 9614 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9615 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 9616 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9617 | QualType BlockTy; |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9618 | |
John McCall | 469a1eb | 2011-02-02 13:00:07 +0000 | [diff] [blame] | 9619 | // Set the captured variables on the block. |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 9620 | // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo! |
| 9621 | SmallVector<BlockDecl::Capture, 4> Captures; |
| 9622 | for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) { |
| 9623 | CapturingScopeInfo::Capture &Cap = BSI->Captures[i]; |
| 9624 | if (Cap.isThisCapture()) |
| 9625 | continue; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 9626 | BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(), |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 9627 | Cap.isNested(), Cap.getCopyExpr()); |
| 9628 | Captures.push_back(NewCap); |
| 9629 | } |
| 9630 | BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), |
| 9631 | BSI->CXXThisCaptureIndex != 0); |
John McCall | 469a1eb | 2011-02-02 13:00:07 +0000 | [diff] [blame] | 9632 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9633 | // If the user wrote a function type in some form, try to use that. |
| 9634 | if (!BSI->FunctionType.isNull()) { |
| 9635 | const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); |
| 9636 | |
| 9637 | FunctionType::ExtInfo Ext = FTy->getExtInfo(); |
| 9638 | if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); |
| 9639 | |
| 9640 | // Turn protoless block types into nullary block types. |
| 9641 | if (isa<FunctionNoProtoType>(FTy)) { |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9642 | FunctionProtoType::ExtProtoInfo EPI; |
| 9643 | EPI.ExtInfo = Ext; |
| 9644 | BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9645 | |
| 9646 | // Otherwise, if we don't need to change anything about the function type, |
| 9647 | // preserve its sugar structure. |
| 9648 | } else if (FTy->getResultType() == RetTy && |
| 9649 | (!NoReturn || FTy->getNoReturnAttr())) { |
| 9650 | BlockTy = BSI->FunctionType; |
| 9651 | |
| 9652 | // Otherwise, make the minimal modifications to the function type. |
| 9653 | } else { |
| 9654 | const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9655 | FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); |
| 9656 | EPI.TypeQuals = 0; // FIXME: silently? |
| 9657 | EPI.ExtInfo = Ext; |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9658 | BlockTy = Context.getFunctionType(RetTy, |
| 9659 | FPT->arg_type_begin(), |
| 9660 | FPT->getNumArgs(), |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9661 | EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9662 | } |
| 9663 | |
| 9664 | // If we don't have a function type, just build one from nothing. |
| 9665 | } else { |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9666 | FunctionProtoType::ExtProtoInfo EPI; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9667 | EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9668 | BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9669 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9670 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9671 | DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), |
| 9672 | BSI->TheDecl->param_end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9673 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9674 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 9675 | // If needed, diagnose invalid gotos and switches in the block. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9676 | if (getCurFunction()->NeedsScopeChecking() && |
Douglas Gregor | 27bec77 | 2012-08-17 05:12:08 +0000 | [diff] [blame] | 9677 | !hasAnyUnrecoverableErrorsInThisFunction() && |
| 9678 | !PP.isCodeCompletionEnabled()) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9679 | DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9680 | |
Chris Lattner | e476bdc | 2011-02-17 23:58:47 +0000 | [diff] [blame] | 9681 | BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9682 | |
Jordan Rose | 7dd900e | 2012-07-02 21:19:23 +0000 | [diff] [blame] | 9683 | // Try to apply the named return value optimization. We have to check again |
| 9684 | // if we can do this, though, because blocks keep return statements around |
| 9685 | // to deduce an implicit return type. |
| 9686 | if (getLangOpts().CPlusPlus && RetTy->isRecordType() && |
| 9687 | !BSI->TheDecl->isDependentContext()) |
| 9688 | computeNRVO(Body, getCurBlock()); |
Douglas Gregor | f8b7f71 | 2011-09-06 20:46:03 +0000 | [diff] [blame] | 9689 | |
Benjamin Kramer | d248619 | 2011-07-12 14:11:05 +0000 | [diff] [blame] | 9690 | BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); |
| 9691 | const AnalysisBasedWarnings::Policy &WP = AnalysisWarnings.getDefaultPolicy(); |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 9692 | PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result); |
Benjamin Kramer | d248619 | 2011-07-12 14:11:05 +0000 | [diff] [blame] | 9693 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9694 | // If the block isn't obviously global, i.e. it captures anything at |
John McCall | 97b57a2 | 2012-04-13 01:08:17 +0000 | [diff] [blame] | 9695 | // all, then we need to do a few things in the surrounding context: |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9696 | if (Result->getBlockDecl()->hasCaptures()) { |
John McCall | 97b57a2 | 2012-04-13 01:08:17 +0000 | [diff] [blame] | 9697 | // First, this expression has a new cleanup object. |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9698 | ExprCleanupObjects.push_back(Result->getBlockDecl()); |
| 9699 | ExprNeedsCleanups = true; |
John McCall | 97b57a2 | 2012-04-13 01:08:17 +0000 | [diff] [blame] | 9700 | |
| 9701 | // It also gets a branch-protected scope if any of the captured |
| 9702 | // variables needs destruction. |
| 9703 | for (BlockDecl::capture_const_iterator |
| 9704 | ci = Result->getBlockDecl()->capture_begin(), |
| 9705 | ce = Result->getBlockDecl()->capture_end(); ci != ce; ++ci) { |
| 9706 | const VarDecl *var = ci->getVariable(); |
| 9707 | if (var->getType().isDestructedType() != QualType::DK_none) { |
| 9708 | getCurFunction()->setHasBranchProtectedScope(); |
| 9709 | break; |
| 9710 | } |
| 9711 | } |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9712 | } |
Fariborz Jahanian | 27949f6 | 2012-03-06 18:41:35 +0000 | [diff] [blame] | 9713 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9714 | return Owned(Result); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9715 | } |
| 9716 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9717 | ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9718 | Expr *E, ParsedType Ty, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9719 | SourceLocation RPLoc) { |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9720 | TypeSourceInfo *TInfo; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9721 | GetTypeFromParser(Ty, &TInfo); |
| 9722 | return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9723 | } |
| 9724 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9725 | ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 9726 | Expr *E, TypeSourceInfo *TInfo, |
| 9727 | SourceLocation RPLoc) { |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 9728 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9729 | |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9730 | // Get the va_list type |
| 9731 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9732 | if (VaListType->isArrayType()) { |
| 9733 | // Deal with implicit array decay; for example, on x86-64, |
| 9734 | // va_list is an array, but it's supposed to decay to |
| 9735 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9736 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9737 | // Make sure the input expression also decays appropriately. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9738 | ExprResult Result = UsualUnaryConversions(E); |
| 9739 | if (Result.isInvalid()) |
| 9740 | return ExprError(); |
| 9741 | E = Result.take(); |
Logan Chien | b687f3b | 2012-10-20 06:11:33 +0000 | [diff] [blame] | 9742 | } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) { |
| 9743 | // If va_list is a record type and we are compiling in C++ mode, |
| 9744 | // check the argument using reference binding. |
| 9745 | InitializedEntity Entity |
| 9746 | = InitializedEntity::InitializeParameter(Context, |
| 9747 | Context.getLValueReferenceType(VaListType), false); |
| 9748 | ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E); |
| 9749 | if (Init.isInvalid()) |
| 9750 | return ExprError(); |
| 9751 | E = Init.takeAs<Expr>(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9752 | } else { |
| 9753 | // Otherwise, the va_list argument must be an l-value because |
| 9754 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9755 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 9756 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9757 | return ExprError(); |
| 9758 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9759 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 9760 | if (!E->isTypeDependent() && |
| 9761 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9762 | return ExprError(Diag(E->getLocStart(), |
| 9763 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 9764 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 9765 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9766 | |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9767 | if (!TInfo->getType()->isDependentType()) { |
| 9768 | if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 9769 | diag::err_second_parameter_to_va_arg_incomplete, |
| 9770 | TInfo->getTypeLoc())) |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9771 | return ExprError(); |
David Majnemer | db11b01 | 2011-06-13 06:37:03 +0000 | [diff] [blame] | 9772 | |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9773 | if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), |
Douglas Gregor | 6a26e2e | 2012-05-04 17:09:59 +0000 | [diff] [blame] | 9774 | TInfo->getType(), |
| 9775 | diag::err_second_parameter_to_va_arg_abstract, |
| 9776 | TInfo->getTypeLoc())) |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9777 | return ExprError(); |
| 9778 | |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9779 | if (!TInfo->getType().isPODType(Context)) { |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9780 | Diag(TInfo->getTypeLoc().getBeginLoc(), |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9781 | TInfo->getType()->isObjCLifetimeType() |
| 9782 | ? diag::warn_second_parameter_to_va_arg_ownership_qualified |
| 9783 | : diag::warn_second_parameter_to_va_arg_not_pod) |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9784 | << TInfo->getType() |
| 9785 | << TInfo->getTypeLoc().getSourceRange(); |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9786 | } |
Eli Friedman | 46d37c1 | 2011-07-11 21:45:59 +0000 | [diff] [blame] | 9787 | |
| 9788 | // Check for va_arg where arguments of the given type will be promoted |
| 9789 | // (i.e. this va_arg is guaranteed to have undefined behavior). |
| 9790 | QualType PromoteType; |
| 9791 | if (TInfo->getType()->isPromotableIntegerType()) { |
| 9792 | PromoteType = Context.getPromotedIntegerType(TInfo->getType()); |
| 9793 | if (Context.typesAreCompatible(PromoteType, TInfo->getType())) |
| 9794 | PromoteType = QualType(); |
| 9795 | } |
| 9796 | if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) |
| 9797 | PromoteType = Context.DoubleTy; |
| 9798 | if (!PromoteType.isNull()) |
Ted Kremenek | cbb99ef | 2013-01-08 01:50:40 +0000 | [diff] [blame] | 9799 | DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E, |
| 9800 | PDiag(diag::warn_second_parameter_to_va_arg_never_compatible) |
| 9801 | << TInfo->getType() |
| 9802 | << PromoteType |
| 9803 | << TInfo->getTypeLoc().getSourceRange()); |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9804 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9805 | |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9806 | QualType T = TInfo->getType().getNonLValueExprType(Context); |
| 9807 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 9808 | } |
| 9809 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9810 | ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9811 | // The type of __null will be int or long, depending on the size of |
| 9812 | // pointers on the target. |
| 9813 | QualType Ty; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9814 | unsigned pw = Context.getTargetInfo().getPointerWidth(0); |
| 9815 | if (pw == Context.getTargetInfo().getIntWidth()) |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9816 | Ty = Context.IntTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9817 | else if (pw == Context.getTargetInfo().getLongWidth()) |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9818 | Ty = Context.LongTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9819 | else if (pw == Context.getTargetInfo().getLongLongWidth()) |
NAKAMURA Takumi | 6e5658d | 2011-01-19 00:11:41 +0000 | [diff] [blame] | 9820 | Ty = Context.LongLongTy; |
| 9821 | else { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 9822 | llvm_unreachable("I don't know size of pointer!"); |
NAKAMURA Takumi | 6e5658d | 2011-01-19 00:11:41 +0000 | [diff] [blame] | 9823 | } |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9824 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9825 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9826 | } |
| 9827 | |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9828 | static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType, |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9829 | Expr *SrcExpr, FixItHint &Hint) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9830 | if (!SemaRef.getLangOpts().ObjC1) |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9831 | return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9832 | |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9833 | const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); |
| 9834 | if (!PT) |
| 9835 | return; |
| 9836 | |
| 9837 | // Check if the destination is of type 'id'. |
| 9838 | if (!PT->isObjCIdType()) { |
| 9839 | // Check if the destination is the 'NSString' interface. |
| 9840 | const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); |
| 9841 | if (!ID || !ID->getIdentifier()->isStr("NSString")) |
| 9842 | return; |
| 9843 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9844 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 9845 | // Ignore any parens, implicit casts (should only be |
| 9846 | // array-to-pointer decays), and not-so-opaque values. The last is |
| 9847 | // important for making this trigger for property assignments. |
| 9848 | SrcExpr = SrcExpr->IgnoreParenImpCasts(); |
| 9849 | if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) |
| 9850 | if (OV->getSourceExpr()) |
| 9851 | SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); |
| 9852 | |
| 9853 | StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 9854 | if (!SL || !SL->isAscii()) |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9855 | return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9856 | |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9857 | Hint = FixItHint::CreateInsertion(SL->getLocStart(), "@"); |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9858 | } |
| 9859 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9860 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 9861 | SourceLocation Loc, |
| 9862 | QualType DstType, QualType SrcType, |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 9863 | Expr *SrcExpr, AssignmentAction Action, |
| 9864 | bool *Complained) { |
| 9865 | if (Complained) |
| 9866 | *Complained = false; |
| 9867 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9868 | // Decode the result (notice that AST's are still created for extensions). |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 9869 | bool CheckInferredResultType = false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9870 | bool isInvalid = false; |
Eli Friedman | fd81978 | 2012-02-29 20:59:56 +0000 | [diff] [blame] | 9871 | unsigned DiagKind = 0; |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9872 | FixItHint Hint; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9873 | ConversionFixItGenerator ConvHints; |
| 9874 | bool MayHaveConvFixit = false; |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9875 | bool MayHaveFunctionDiff = false; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9876 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9877 | switch (ConvTy) { |
Fariborz Jahanian | 379b281 | 2012-07-17 18:00:08 +0000 | [diff] [blame] | 9878 | case Compatible: |
Daniel Dunbar | 7a0c064 | 2012-10-15 22:23:53 +0000 | [diff] [blame] | 9879 | DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); |
| 9880 | return false; |
Fariborz Jahanian | 379b281 | 2012-07-17 18:00:08 +0000 | [diff] [blame] | 9881 | |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9882 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9883 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9884 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9885 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9886 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9887 | case IntToPointer: |
| 9888 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9889 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9890 | MayHaveConvFixit = true; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9891 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9892 | case IncompatiblePointer: |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9893 | MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9894 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 9895 | CheckInferredResultType = DstType->isObjCObjectPointerType() && |
| 9896 | SrcType->isObjCObjectPointerType(); |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9897 | if (Hint.isNull() && !CheckInferredResultType) { |
| 9898 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9899 | } |
| 9900 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9901 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 9902 | case IncompatiblePointerSign: |
| 9903 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 9904 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9905 | case FunctionVoidPointer: |
| 9906 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 9907 | break; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9908 | case IncompatiblePointerDiscardsQualifiers: { |
John McCall | 40249e7 | 2011-02-01 23:28:01 +0000 | [diff] [blame] | 9909 | // Perform array-to-pointer decay if necessary. |
| 9910 | if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); |
| 9911 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9912 | Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); |
| 9913 | Qualifiers rhq = DstType->getPointeeType().getQualifiers(); |
| 9914 | if (lhq.getAddressSpace() != rhq.getAddressSpace()) { |
| 9915 | DiagKind = diag::err_typecheck_incompatible_address_space; |
| 9916 | break; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9917 | |
| 9918 | |
| 9919 | } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { |
Argyrios Kyrtzidis | b8b0313 | 2011-06-24 00:08:59 +0000 | [diff] [blame] | 9920 | DiagKind = diag::err_typecheck_incompatible_ownership; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9921 | break; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9922 | } |
| 9923 | |
| 9924 | llvm_unreachable("unknown error case for discarding qualifiers!"); |
| 9925 | // fallthrough |
| 9926 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9927 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9928 | // If the qualifiers lost were because we were applying the |
| 9929 | // (deprecated) C++ conversion from a string literal to a char* |
| 9930 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 9931 | // Ideally, this check would be performed in |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 9932 | // checkPointerTypesForAssignment. However, that would require a |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9933 | // bit of refactoring (so that the second argument is an |
| 9934 | // expression, rather than a type), which should be done as part |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 9935 | // of a larger effort to fix checkPointerTypesForAssignment for |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9936 | // C++ semantics. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9937 | if (getLangOpts().CPlusPlus && |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9938 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 9939 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9940 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 9941 | break; |
Sean Hunt | c9132b6 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 9942 | case IncompatibleNestedPointerQualifiers: |
Fariborz Jahanian | 3451e92 | 2009-11-09 22:16:37 +0000 | [diff] [blame] | 9943 | DiagKind = diag::ext_nested_pointer_qualifier_mismatch; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 9944 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 9945 | case IntToBlockPointer: |
| 9946 | DiagKind = diag::err_int_to_block_pointer; |
| 9947 | break; |
| 9948 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 9949 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 9950 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 9951 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9952 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 9953 | // it can give a more specific diagnostic. |
| 9954 | DiagKind = diag::warn_incompatible_qualified_id; |
| 9955 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 9956 | case IncompatibleVectors: |
| 9957 | DiagKind = diag::warn_incompatible_vectors; |
| 9958 | break; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 9959 | case IncompatibleObjCWeakRef: |
| 9960 | DiagKind = diag::err_arc_weak_unavailable_assign; |
| 9961 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9962 | case Incompatible: |
| 9963 | DiagKind = diag::err_typecheck_convert_incompatible; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9964 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9965 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9966 | isInvalid = true; |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9967 | MayHaveFunctionDiff = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9968 | break; |
| 9969 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9970 | |
Douglas Gregor | d4eea83 | 2010-04-09 00:35:39 +0000 | [diff] [blame] | 9971 | QualType FirstType, SecondType; |
| 9972 | switch (Action) { |
| 9973 | case AA_Assigning: |
| 9974 | case AA_Initializing: |
| 9975 | // The destination type comes first. |
| 9976 | FirstType = DstType; |
| 9977 | SecondType = SrcType; |
| 9978 | break; |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9979 | |
Douglas Gregor | d4eea83 | 2010-04-09 00:35:39 +0000 | [diff] [blame] | 9980 | case AA_Returning: |
| 9981 | case AA_Passing: |
| 9982 | case AA_Converting: |
| 9983 | case AA_Sending: |
| 9984 | case AA_Casting: |
| 9985 | // The source type comes first. |
| 9986 | FirstType = SrcType; |
| 9987 | SecondType = DstType; |
| 9988 | break; |
| 9989 | } |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9990 | |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9991 | PartialDiagnostic FDiag = PDiag(DiagKind); |
| 9992 | FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); |
| 9993 | |
| 9994 | // If we can fix the conversion, suggest the FixIts. |
| 9995 | assert(ConvHints.isNull() || Hint.isNull()); |
| 9996 | if (!ConvHints.isNull()) { |
Benjamin Kramer | 1136ef0 | 2012-01-14 21:05:10 +0000 | [diff] [blame] | 9997 | for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(), |
| 9998 | HE = ConvHints.Hints.end(); HI != HE; ++HI) |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9999 | FDiag << *HI; |
| 10000 | } else { |
| 10001 | FDiag << Hint; |
| 10002 | } |
| 10003 | if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } |
| 10004 | |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 10005 | if (MayHaveFunctionDiff) |
| 10006 | HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); |
| 10007 | |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 10008 | Diag(Loc, FDiag); |
| 10009 | |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 10010 | if (SecondType == Context.OverloadTy) |
| 10011 | NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, |
| 10012 | FirstType); |
| 10013 | |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 10014 | if (CheckInferredResultType) |
| 10015 | EmitRelatedResultTypeNote(SrcExpr); |
| 10016 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 10017 | if (Complained) |
| 10018 | *Complained = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 10019 | return isInvalid; |
| 10020 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10021 | |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10022 | ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, |
| 10023 | llvm::APSInt *Result) { |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10024 | class SimpleICEDiagnoser : public VerifyICEDiagnoser { |
| 10025 | public: |
| 10026 | virtual void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) { |
| 10027 | S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR; |
| 10028 | } |
| 10029 | } Diagnoser; |
| 10030 | |
| 10031 | return VerifyIntegerConstantExpression(E, Result, Diagnoser); |
| 10032 | } |
| 10033 | |
| 10034 | ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, |
| 10035 | llvm::APSInt *Result, |
| 10036 | unsigned DiagID, |
| 10037 | bool AllowFold) { |
| 10038 | class IDDiagnoser : public VerifyICEDiagnoser { |
| 10039 | unsigned DiagID; |
| 10040 | |
| 10041 | public: |
| 10042 | IDDiagnoser(unsigned DiagID) |
| 10043 | : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { } |
| 10044 | |
| 10045 | virtual void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) { |
| 10046 | S.Diag(Loc, DiagID) << SR; |
| 10047 | } |
| 10048 | } Diagnoser(DiagID); |
| 10049 | |
| 10050 | return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold); |
| 10051 | } |
| 10052 | |
| 10053 | void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc, |
| 10054 | SourceRange SR) { |
| 10055 | S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus; |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10056 | } |
| 10057 | |
Benjamin Kramer | d448ce0 | 2012-04-18 14:22:41 +0000 | [diff] [blame] | 10058 | ExprResult |
| 10059 | Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10060 | VerifyICEDiagnoser &Diagnoser, |
| 10061 | bool AllowFold) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 10062 | SourceLocation DiagLoc = E->getLocStart(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10063 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 10064 | if (getLangOpts().CPlusPlus11) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10065 | // C++11 [expr.const]p5: |
| 10066 | // If an expression of literal class type is used in a context where an |
| 10067 | // integral constant expression is required, then that class type shall |
| 10068 | // have a single non-explicit conversion function to an integral or |
| 10069 | // unscoped enumeration type |
| 10070 | ExprResult Converted; |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10071 | if (!Diagnoser.Suppress) { |
| 10072 | class CXX11ConvertDiagnoser : public ICEConvertDiagnoser { |
| 10073 | public: |
| 10074 | CXX11ConvertDiagnoser() : ICEConvertDiagnoser(false, true) { } |
| 10075 | |
| 10076 | virtual DiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, |
| 10077 | QualType T) { |
| 10078 | return S.Diag(Loc, diag::err_ice_not_integral) << T; |
| 10079 | } |
| 10080 | |
| 10081 | virtual DiagnosticBuilder diagnoseIncomplete(Sema &S, |
| 10082 | SourceLocation Loc, |
| 10083 | QualType T) { |
| 10084 | return S.Diag(Loc, diag::err_ice_incomplete_type) << T; |
| 10085 | } |
| 10086 | |
| 10087 | virtual DiagnosticBuilder diagnoseExplicitConv(Sema &S, |
| 10088 | SourceLocation Loc, |
| 10089 | QualType T, |
| 10090 | QualType ConvTy) { |
| 10091 | return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy; |
| 10092 | } |
| 10093 | |
| 10094 | virtual DiagnosticBuilder noteExplicitConv(Sema &S, |
| 10095 | CXXConversionDecl *Conv, |
| 10096 | QualType ConvTy) { |
| 10097 | return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) |
| 10098 | << ConvTy->isEnumeralType() << ConvTy; |
| 10099 | } |
| 10100 | |
| 10101 | virtual DiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc, |
| 10102 | QualType T) { |
| 10103 | return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T; |
| 10104 | } |
| 10105 | |
| 10106 | virtual DiagnosticBuilder noteAmbiguous(Sema &S, |
| 10107 | CXXConversionDecl *Conv, |
| 10108 | QualType ConvTy) { |
| 10109 | return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) |
| 10110 | << ConvTy->isEnumeralType() << ConvTy; |
| 10111 | } |
| 10112 | |
| 10113 | virtual DiagnosticBuilder diagnoseConversion(Sema &S, |
| 10114 | SourceLocation Loc, |
| 10115 | QualType T, |
| 10116 | QualType ConvTy) { |
| 10117 | return DiagnosticBuilder::getEmpty(); |
| 10118 | } |
| 10119 | } ConvertDiagnoser; |
| 10120 | |
| 10121 | Converted = ConvertToIntegralOrEnumerationType(DiagLoc, E, |
| 10122 | ConvertDiagnoser, |
| 10123 | /*AllowScopedEnumerations*/ false); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10124 | } else { |
| 10125 | // The caller wants to silently enquire whether this is an ICE. Don't |
| 10126 | // produce any diagnostics if it isn't. |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10127 | class SilentICEConvertDiagnoser : public ICEConvertDiagnoser { |
| 10128 | public: |
| 10129 | SilentICEConvertDiagnoser() : ICEConvertDiagnoser(true, true) { } |
| 10130 | |
| 10131 | virtual DiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, |
| 10132 | QualType T) { |
| 10133 | return DiagnosticBuilder::getEmpty(); |
| 10134 | } |
| 10135 | |
| 10136 | virtual DiagnosticBuilder diagnoseIncomplete(Sema &S, |
| 10137 | SourceLocation Loc, |
| 10138 | QualType T) { |
| 10139 | return DiagnosticBuilder::getEmpty(); |
| 10140 | } |
| 10141 | |
| 10142 | virtual DiagnosticBuilder diagnoseExplicitConv(Sema &S, |
| 10143 | SourceLocation Loc, |
| 10144 | QualType T, |
| 10145 | QualType ConvTy) { |
| 10146 | return DiagnosticBuilder::getEmpty(); |
| 10147 | } |
| 10148 | |
| 10149 | virtual DiagnosticBuilder noteExplicitConv(Sema &S, |
| 10150 | CXXConversionDecl *Conv, |
| 10151 | QualType ConvTy) { |
| 10152 | return DiagnosticBuilder::getEmpty(); |
| 10153 | } |
| 10154 | |
| 10155 | virtual DiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc, |
| 10156 | QualType T) { |
| 10157 | return DiagnosticBuilder::getEmpty(); |
| 10158 | } |
| 10159 | |
| 10160 | virtual DiagnosticBuilder noteAmbiguous(Sema &S, |
| 10161 | CXXConversionDecl *Conv, |
| 10162 | QualType ConvTy) { |
| 10163 | return DiagnosticBuilder::getEmpty(); |
| 10164 | } |
| 10165 | |
| 10166 | virtual DiagnosticBuilder diagnoseConversion(Sema &S, |
| 10167 | SourceLocation Loc, |
| 10168 | QualType T, |
| 10169 | QualType ConvTy) { |
| 10170 | return DiagnosticBuilder::getEmpty(); |
| 10171 | } |
| 10172 | } ConvertDiagnoser; |
| 10173 | |
| 10174 | Converted = ConvertToIntegralOrEnumerationType(DiagLoc, E, |
| 10175 | ConvertDiagnoser, false); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10176 | } |
| 10177 | if (Converted.isInvalid()) |
| 10178 | return Converted; |
| 10179 | E = Converted.take(); |
| 10180 | if (!E->getType()->isIntegralOrUnscopedEnumerationType()) |
| 10181 | return ExprError(); |
| 10182 | } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { |
| 10183 | // An ICE must be of integral or unscoped enumeration type. |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10184 | if (!Diagnoser.Suppress) |
| 10185 | Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10186 | return ExprError(); |
| 10187 | } |
| 10188 | |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 10189 | // Circumvent ICE checking in C++11 to avoid evaluating the expression twice |
| 10190 | // in the non-ICE case. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 10191 | if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10192 | if (Result) |
| 10193 | *Result = E->EvaluateKnownConstInt(Context); |
| 10194 | return Owned(E); |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 10195 | } |
| 10196 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10197 | Expr::EvalResult EvalResult; |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 10198 | SmallVector<PartialDiagnosticAt, 8> Notes; |
Richard Smith | dd1f29b | 2011-12-12 09:28:41 +0000 | [diff] [blame] | 10199 | EvalResult.Diag = &Notes; |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10200 | |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 10201 | // Try to evaluate the expression, and produce diagnostics explaining why it's |
| 10202 | // not a constant expression as a side-effect. |
| 10203 | bool Folded = E->EvaluateAsRValue(EvalResult, Context) && |
| 10204 | EvalResult.Val.isInt() && !EvalResult.HasSideEffects; |
| 10205 | |
| 10206 | // In C++11, we can rely on diagnostics being produced for any expression |
| 10207 | // which is not a constant expression. If no diagnostics were produced, then |
| 10208 | // this is a constant expression. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 10209 | if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) { |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 10210 | if (Result) |
| 10211 | *Result = EvalResult.Val.getInt(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10212 | return Owned(E); |
| 10213 | } |
| 10214 | |
| 10215 | // If our only note is the usual "invalid subexpression" note, just point |
| 10216 | // the caret at its location rather than producing an essentially |
| 10217 | // redundant note. |
| 10218 | if (Notes.size() == 1 && Notes[0].second.getDiagID() == |
| 10219 | diag::note_invalid_subexpr_in_const_expr) { |
| 10220 | DiagLoc = Notes[0].first; |
| 10221 | Notes.clear(); |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 10222 | } |
| 10223 | |
| 10224 | if (!Folded || !AllowFold) { |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10225 | if (!Diagnoser.Suppress) { |
| 10226 | Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); |
Richard Smith | dd1f29b | 2011-12-12 09:28:41 +0000 | [diff] [blame] | 10227 | for (unsigned I = 0, N = Notes.size(); I != N; ++I) |
| 10228 | Diag(Notes[I].first, Notes[I].second); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10229 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 10230 | |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10231 | return ExprError(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10232 | } |
| 10233 | |
Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 10234 | Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange()); |
Richard Smith | 244ee7b | 2012-01-15 03:51:30 +0000 | [diff] [blame] | 10235 | for (unsigned I = 0, N = Notes.size(); I != N; ++I) |
| 10236 | Diag(Notes[I].first, Notes[I].second); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 10237 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10238 | if (Result) |
| 10239 | *Result = EvalResult.Val.getInt(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 10240 | return Owned(E); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 10241 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 10242 | |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 10243 | namespace { |
| 10244 | // Handle the case where we conclude a expression which we speculatively |
| 10245 | // considered to be unevaluated is actually evaluated. |
| 10246 | class TransformToPE : public TreeTransform<TransformToPE> { |
| 10247 | typedef TreeTransform<TransformToPE> BaseTransform; |
| 10248 | |
| 10249 | public: |
| 10250 | TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } |
| 10251 | |
| 10252 | // Make sure we redo semantic analysis |
| 10253 | bool AlwaysRebuild() { return true; } |
| 10254 | |
Eli Friedman | 56ff283 | 2012-02-06 23:29:57 +0000 | [diff] [blame] | 10255 | // Make sure we handle LabelStmts correctly. |
| 10256 | // FIXME: This does the right thing, but maybe we need a more general |
| 10257 | // fix to TreeTransform? |
| 10258 | StmtResult TransformLabelStmt(LabelStmt *S) { |
| 10259 | S->getDecl()->setStmt(0); |
| 10260 | return BaseTransform::TransformLabelStmt(S); |
| 10261 | } |
| 10262 | |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 10263 | // We need to special-case DeclRefExprs referring to FieldDecls which |
| 10264 | // are not part of a member pointer formation; normal TreeTransforming |
| 10265 | // doesn't catch this case because of the way we represent them in the AST. |
| 10266 | // FIXME: This is a bit ugly; is it really the best way to handle this |
| 10267 | // case? |
| 10268 | // |
| 10269 | // Error on DeclRefExprs referring to FieldDecls. |
| 10270 | ExprResult TransformDeclRefExpr(DeclRefExpr *E) { |
| 10271 | if (isa<FieldDecl>(E->getDecl()) && |
David Blaikie | 71f55f7 | 2012-08-06 22:47:24 +0000 | [diff] [blame] | 10272 | !SemaRef.isUnevaluatedContext()) |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 10273 | return SemaRef.Diag(E->getLocation(), |
| 10274 | diag::err_invalid_non_static_member_use) |
| 10275 | << E->getDecl() << E->getSourceRange(); |
| 10276 | |
| 10277 | return BaseTransform::TransformDeclRefExpr(E); |
| 10278 | } |
| 10279 | |
| 10280 | // Exception: filter out member pointer formation |
| 10281 | ExprResult TransformUnaryOperator(UnaryOperator *E) { |
| 10282 | if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) |
| 10283 | return E; |
| 10284 | |
| 10285 | return BaseTransform::TransformUnaryOperator(E); |
| 10286 | } |
| 10287 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 10288 | ExprResult TransformLambdaExpr(LambdaExpr *E) { |
| 10289 | // Lambdas never need to be transformed. |
| 10290 | return E; |
| 10291 | } |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 10292 | }; |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 10293 | } |
| 10294 | |
Benjamin Kramer | accaf19 | 2012-11-14 15:08:31 +0000 | [diff] [blame] | 10295 | ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) { |
Eli Friedman | 72b8b1e | 2012-02-29 04:03:55 +0000 | [diff] [blame] | 10296 | assert(ExprEvalContexts.back().Context == Unevaluated && |
| 10297 | "Should only transform unevaluated expressions"); |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 10298 | ExprEvalContexts.back().Context = |
| 10299 | ExprEvalContexts[ExprEvalContexts.size()-2].Context; |
| 10300 | if (ExprEvalContexts.back().Context == Unevaluated) |
| 10301 | return E; |
| 10302 | return TransformToPE(*this).TransformExpr(E); |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 10303 | } |
| 10304 | |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 10305 | void |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 10306 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 10307 | Decl *LambdaContextDecl, |
| 10308 | bool IsDecltype) { |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 10309 | ExprEvalContexts.push_back( |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10310 | ExpressionEvaluationContextRecord(NewContext, |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 10311 | ExprCleanupObjects.size(), |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 10312 | ExprNeedsCleanups, |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 10313 | LambdaContextDecl, |
| 10314 | IsDecltype)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10315 | ExprNeedsCleanups = false; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10316 | if (!MaybeODRUseExprs.empty()) |
| 10317 | std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 10318 | } |
| 10319 | |
Eli Friedman | 80bfa3d | 2012-09-26 04:34:21 +0000 | [diff] [blame] | 10320 | void |
| 10321 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, |
| 10322 | ReuseLambdaContextDecl_t, |
| 10323 | bool IsDecltype) { |
| 10324 | Decl *LambdaContextDecl = ExprEvalContexts.back().LambdaContextDecl; |
| 10325 | PushExpressionEvaluationContext(NewContext, LambdaContextDecl, IsDecltype); |
| 10326 | } |
| 10327 | |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 10328 | void Sema::PopExpressionEvaluationContext() { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10329 | ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 10330 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 10331 | if (!Rec.Lambdas.empty()) { |
| 10332 | if (Rec.Context == Unevaluated) { |
| 10333 | // C++11 [expr.prim.lambda]p2: |
| 10334 | // A lambda-expression shall not appear in an unevaluated operand |
| 10335 | // (Clause 5). |
| 10336 | for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) |
| 10337 | Diag(Rec.Lambdas[I]->getLocStart(), |
| 10338 | diag::err_lambda_unevaluated_operand); |
| 10339 | } else { |
| 10340 | // Mark the capture expressions odr-used. This was deferred |
| 10341 | // during lambda expression creation. |
| 10342 | for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) { |
| 10343 | LambdaExpr *Lambda = Rec.Lambdas[I]; |
| 10344 | for (LambdaExpr::capture_init_iterator |
| 10345 | C = Lambda->capture_init_begin(), |
| 10346 | CEnd = Lambda->capture_init_end(); |
| 10347 | C != CEnd; ++C) { |
| 10348 | MarkDeclarationsReferencedInExpr(*C); |
| 10349 | } |
| 10350 | } |
| 10351 | } |
| 10352 | } |
| 10353 | |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 10354 | // When are coming out of an unevaluated context, clear out any |
| 10355 | // temporaries that we may have created as part of the evaluation of |
| 10356 | // the expression in that context: they aren't relevant because they |
| 10357 | // will never be constructed. |
Richard Smith | f6702a3 | 2011-12-20 02:08:33 +0000 | [diff] [blame] | 10358 | if (Rec.Context == Unevaluated || Rec.Context == ConstantEvaluated) { |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 10359 | ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, |
| 10360 | ExprCleanupObjects.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10361 | ExprNeedsCleanups = Rec.ParentNeedsCleanups; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10362 | CleanupVarDeclMarking(); |
| 10363 | std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10364 | // Otherwise, merge the contexts together. |
| 10365 | } else { |
| 10366 | ExprNeedsCleanups |= Rec.ParentNeedsCleanups; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10367 | MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), |
| 10368 | Rec.SavedMaybeODRUseExprs.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10369 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10370 | |
| 10371 | // Pop the current expression evaluation context off the stack. |
| 10372 | ExprEvalContexts.pop_back(); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 10373 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 10374 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10375 | void Sema::DiscardCleanupsInEvaluationContext() { |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 10376 | ExprCleanupObjects.erase( |
| 10377 | ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, |
| 10378 | ExprCleanupObjects.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10379 | ExprNeedsCleanups = false; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10380 | MaybeODRUseExprs.clear(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10381 | } |
| 10382 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 10383 | ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { |
| 10384 | if (!E->getType()->isVariablyModifiedType()) |
| 10385 | return E; |
Benjamin Kramer | accaf19 | 2012-11-14 15:08:31 +0000 | [diff] [blame] | 10386 | return TransformToPotentiallyEvaluated(E); |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 10387 | } |
| 10388 | |
Benjamin Kramer | 5bbc385 | 2012-02-06 11:13:08 +0000 | [diff] [blame] | 10389 | static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 10390 | // Do not mark anything as "used" within a dependent context; wait for |
| 10391 | // an instantiation. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10392 | if (SemaRef.CurContext->isDependentContext()) |
| 10393 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10394 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10395 | switch (SemaRef.ExprEvalContexts.back().Context) { |
| 10396 | case Sema::Unevaluated: |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 10397 | // We are in an expression that is not potentially evaluated; do nothing. |
Eli Friedman | 78a5424 | 2012-01-21 04:44:06 +0000 | [diff] [blame] | 10398 | // (Depending on how you read the standard, we actually do need to do |
| 10399 | // something here for null pointer constants, but the standard's |
| 10400 | // definition of a null pointer constant is completely crazy.) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10401 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10402 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10403 | case Sema::ConstantEvaluated: |
| 10404 | case Sema::PotentiallyEvaluated: |
Eli Friedman | 78a5424 | 2012-01-21 04:44:06 +0000 | [diff] [blame] | 10405 | // We are in a potentially evaluated expression (or a constant-expression |
| 10406 | // in C++03); we need to do implicit template instantiation, implicitly |
| 10407 | // define class members, and mark most declarations as used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10408 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10409 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10410 | case Sema::PotentiallyEvaluatedIfUsed: |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10411 | // Referenced declarations will only be used if the construct in the |
| 10412 | // containing expression is used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10413 | return false; |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 10414 | } |
Matt Beaumont-Gay | 4f7dcdb | 2012-02-02 18:35:35 +0000 | [diff] [blame] | 10415 | llvm_unreachable("Invalid context"); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10416 | } |
| 10417 | |
| 10418 | /// \brief Mark a function referenced, and check whether it is odr-used |
| 10419 | /// (C++ [basic.def.odr]p2, C99 6.9p3) |
| 10420 | void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func) { |
| 10421 | assert(Func && "No function?"); |
| 10422 | |
| 10423 | Func->setReferenced(); |
| 10424 | |
Richard Smith | ce2661f | 2012-11-07 01:14:25 +0000 | [diff] [blame] | 10425 | // C++11 [basic.def.odr]p3: |
| 10426 | // A function whose name appears as a potentially-evaluated expression is |
| 10427 | // odr-used if it is the unique lookup result or the selected member of a |
| 10428 | // set of overloaded functions [...]. |
| 10429 | // |
| 10430 | // We (incorrectly) mark overload resolution as an unevaluated context, so we |
| 10431 | // can just check that here. Skip the rest of this function if we've already |
| 10432 | // marked the function as used. |
| 10433 | if (Func->isUsed(false) || !IsPotentiallyEvaluatedContext(*this)) { |
| 10434 | // C++11 [temp.inst]p3: |
| 10435 | // Unless a function template specialization has been explicitly |
| 10436 | // instantiated or explicitly specialized, the function template |
| 10437 | // specialization is implicitly instantiated when the specialization is |
| 10438 | // referenced in a context that requires a function definition to exist. |
| 10439 | // |
| 10440 | // We consider constexpr function templates to be referenced in a context |
| 10441 | // that requires a definition to exist whenever they are referenced. |
| 10442 | // |
| 10443 | // FIXME: This instantiates constexpr functions too frequently. If this is |
| 10444 | // really an unevaluated context (and we're not just in the definition of a |
| 10445 | // function template or overload resolution or other cases which we |
| 10446 | // incorrectly consider to be unevaluated contexts), and we're not in a |
| 10447 | // subexpression which we actually need to evaluate (for instance, a |
| 10448 | // template argument, array bound or an expression in a braced-init-list), |
| 10449 | // we are not permitted to instantiate this constexpr function definition. |
| 10450 | // |
| 10451 | // FIXME: This also implicitly defines special members too frequently. They |
| 10452 | // are only supposed to be implicitly defined if they are odr-used, but they |
| 10453 | // are not odr-used from constant expressions in unevaluated contexts. |
| 10454 | // However, they cannot be referenced if they are deleted, and they are |
| 10455 | // deleted whenever the implicit definition of the special member would |
| 10456 | // fail. |
| 10457 | if (!Func->isConstexpr() || Func->getBody()) |
| 10458 | return; |
| 10459 | CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func); |
| 10460 | if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided())) |
| 10461 | return; |
| 10462 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10463 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 10464 | // Note that this declaration has been used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10465 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 10466 | if (Constructor->isDefaulted() && !Constructor->isDeleted()) { |
Sebastian Redl | 85ea7aa | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 10467 | if (Constructor->isDefaultConstructor()) { |
| 10468 | if (Constructor->isTrivial()) |
| 10469 | return; |
| 10470 | if (!Constructor->isUsed(false)) |
| 10471 | DefineImplicitDefaultConstructor(Loc, Constructor); |
| 10472 | } else if (Constructor->isCopyConstructor()) { |
| 10473 | if (!Constructor->isUsed(false)) |
| 10474 | DefineImplicitCopyConstructor(Loc, Constructor); |
| 10475 | } else if (Constructor->isMoveConstructor()) { |
| 10476 | if (!Constructor->isUsed(false)) |
| 10477 | DefineImplicitMoveConstructor(Loc, Constructor); |
| 10478 | } |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 10479 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10480 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 10481 | MarkVTableUsed(Loc, Constructor->getParent()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10482 | } else if (CXXDestructorDecl *Destructor = |
| 10483 | dyn_cast<CXXDestructorDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 10484 | if (Destructor->isDefaulted() && !Destructor->isDeleted() && |
| 10485 | !Destructor->isUsed(false)) |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 10486 | DefineImplicitDestructor(Loc, Destructor); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 10487 | if (Destructor->isVirtual()) |
| 10488 | MarkVTableUsed(Loc, Destructor->getParent()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10489 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 10490 | if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted() && |
| 10491 | MethodDecl->isOverloadedOperator() && |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 10492 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
Sebastian Redl | 85ea7aa | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 10493 | if (!MethodDecl->isUsed(false)) { |
| 10494 | if (MethodDecl->isCopyAssignmentOperator()) |
| 10495 | DefineImplicitCopyAssignment(Loc, MethodDecl); |
| 10496 | else |
| 10497 | DefineImplicitMoveAssignment(Loc, MethodDecl); |
| 10498 | } |
Douglas Gregor | f6e2e02 | 2012-02-16 01:06:16 +0000 | [diff] [blame] | 10499 | } else if (isa<CXXConversionDecl>(MethodDecl) && |
| 10500 | MethodDecl->getParent()->isLambda()) { |
| 10501 | CXXConversionDecl *Conversion = cast<CXXConversionDecl>(MethodDecl); |
| 10502 | if (Conversion->isLambdaToBlockPointerConversion()) |
| 10503 | DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); |
| 10504 | else |
| 10505 | DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 10506 | } else if (MethodDecl->isVirtual()) |
| 10507 | MarkVTableUsed(Loc, MethodDecl->getParent()); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 10508 | } |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 10509 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10510 | // Recursive functions should be marked when used from another function. |
| 10511 | // FIXME: Is this really right? |
| 10512 | if (CurContext == Func) return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10513 | |
Richard Smith | b9d0b76 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 10514 | // Resolve the exception specification for any function which is |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 10515 | // used: CodeGen will need it. |
Richard Smith | 13bffc5 | 2012-04-19 00:08:28 +0000 | [diff] [blame] | 10516 | const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); |
Richard Smith | b9d0b76 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 10517 | if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) |
| 10518 | ResolveExceptionSpec(Loc, FPT); |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 10519 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10520 | // Implicit instantiation of function templates and member functions of |
| 10521 | // class templates. |
| 10522 | if (Func->isImplicitlyInstantiable()) { |
| 10523 | bool AlreadyInstantiated = false; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10524 | SourceLocation PointOfInstantiation = Loc; |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10525 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 10526 | = Func->getTemplateSpecializationInfo()) { |
| 10527 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 10528 | SpecInfo->setPointOfInstantiation(Loc); |
| 10529 | else if (SpecInfo->getTemplateSpecializationKind() |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10530 | == TSK_ImplicitInstantiation) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10531 | AlreadyInstantiated = true; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10532 | PointOfInstantiation = SpecInfo->getPointOfInstantiation(); |
| 10533 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10534 | } else if (MemberSpecializationInfo *MSInfo |
| 10535 | = Func->getMemberSpecializationInfo()) { |
| 10536 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 10537 | MSInfo->setPointOfInstantiation(Loc); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10538 | else if (MSInfo->getTemplateSpecializationKind() |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10539 | == TSK_ImplicitInstantiation) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10540 | AlreadyInstantiated = true; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10541 | PointOfInstantiation = MSInfo->getPointOfInstantiation(); |
| 10542 | } |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 10543 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10544 | |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10545 | if (!AlreadyInstantiated || Func->isConstexpr()) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10546 | if (isa<CXXRecordDecl>(Func->getDeclContext()) && |
| 10547 | cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass()) |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10548 | PendingLocalImplicitInstantiations.push_back( |
| 10549 | std::make_pair(Func, PointOfInstantiation)); |
| 10550 | else if (Func->isConstexpr()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10551 | // Do not defer instantiations of constexpr functions, to avoid the |
| 10552 | // expression evaluator needing to call back into Sema if it sees a |
| 10553 | // call to such a function. |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10554 | InstantiateFunctionDefinition(PointOfInstantiation, Func); |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 10555 | else { |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 10556 | PendingInstantiations.push_back(std::make_pair(Func, |
| 10557 | PointOfInstantiation)); |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 10558 | // Notify the consumer that a function was implicitly instantiated. |
| 10559 | Consumer.HandleCXXImplicitFunctionInstantiation(Func); |
| 10560 | } |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 10561 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10562 | } else { |
| 10563 | // Walk redefinitions, as some of them may be instantiable. |
| 10564 | for (FunctionDecl::redecl_iterator i(Func->redecls_begin()), |
| 10565 | e(Func->redecls_end()); i != e; ++i) { |
| 10566 | if (!i->isUsed(false) && i->isImplicitlyInstantiable()) |
| 10567 | MarkFunctionReferenced(Loc, *i); |
| 10568 | } |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 10569 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10570 | |
| 10571 | // Keep track of used but undefined functions. |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 10572 | if (!Func->isDefined()) { |
| 10573 | if (Func->getLinkage() != ExternalLinkage) |
| 10574 | UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); |
| 10575 | else if (Func->getMostRecentDecl()->isInlined() && |
| 10576 | (LangOpts.CPlusPlus || !LangOpts.GNUInline) && |
| 10577 | !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>()) |
| 10578 | UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10579 | } |
| 10580 | |
Rafael Espindola | b9725cf | 2013-01-08 19:43:34 +0000 | [diff] [blame] | 10581 | // Normally the must current decl is marked used while processing the use and |
| 10582 | // any subsequent decls are marked used by decl merging. This fails with |
| 10583 | // template instantiation since marking can happen at the end of the file |
| 10584 | // and, because of the two phase lookup, this function is called with at |
| 10585 | // decl in the middle of a decl chain. We loop to maintain the invariant |
| 10586 | // that once a decl is used, all decls after it are also used. |
Rafael Espindola | a6d2020 | 2013-01-08 19:58:34 +0000 | [diff] [blame] | 10587 | for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) { |
Rafael Espindola | b9725cf | 2013-01-08 19:43:34 +0000 | [diff] [blame] | 10588 | F->setUsed(true); |
| 10589 | if (F == Func) |
| 10590 | break; |
Rafael Espindola | b9725cf | 2013-01-08 19:43:34 +0000 | [diff] [blame] | 10591 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10592 | } |
| 10593 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10594 | static void |
| 10595 | diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, |
| 10596 | VarDecl *var, DeclContext *DC) { |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 10597 | DeclContext *VarDC = var->getDeclContext(); |
| 10598 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10599 | // If the parameter still belongs to the translation unit, then |
| 10600 | // we're actually just using one parameter in the declaration of |
| 10601 | // the next. |
| 10602 | if (isa<ParmVarDecl>(var) && |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 10603 | isa<TranslationUnitDecl>(VarDC)) |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10604 | return; |
| 10605 | |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 10606 | // For C code, don't diagnose about capture if we're not actually in code |
| 10607 | // right now; it's impossible to write a non-constant expression outside of |
| 10608 | // function context, so we'll get other (more useful) diagnostics later. |
| 10609 | // |
| 10610 | // For C++, things get a bit more nasty... it would be nice to suppress this |
| 10611 | // diagnostic for certain cases like using a local variable in an array bound |
| 10612 | // for a member of a local class, but the correct predicate is not obvious. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 10613 | if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10614 | return; |
| 10615 | |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 10616 | if (isa<CXXMethodDecl>(VarDC) && |
| 10617 | cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { |
| 10618 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda) |
| 10619 | << var->getIdentifier(); |
| 10620 | } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) { |
| 10621 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) |
| 10622 | << var->getIdentifier() << fn->getDeclName(); |
| 10623 | } else if (isa<BlockDecl>(VarDC)) { |
| 10624 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block) |
| 10625 | << var->getIdentifier(); |
| 10626 | } else { |
| 10627 | // FIXME: Is there any other context where a local variable can be |
| 10628 | // declared? |
| 10629 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context) |
| 10630 | << var->getIdentifier(); |
| 10631 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10632 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10633 | S.Diag(var->getLocation(), diag::note_local_variable_declared_here) |
| 10634 | << var->getIdentifier(); |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 10635 | |
| 10636 | // FIXME: Add additional diagnostic info about class etc. which prevents |
| 10637 | // capture. |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10638 | } |
| 10639 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10640 | /// \brief Capture the given variable in the given lambda expression. |
| 10641 | static ExprResult captureInLambda(Sema &S, LambdaScopeInfo *LSI, |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10642 | VarDecl *Var, QualType FieldType, |
| 10643 | QualType DeclRefType, |
Douglas Gregor | d57f52c | 2012-05-16 17:01:33 +0000 | [diff] [blame] | 10644 | SourceLocation Loc, |
| 10645 | bool RefersToEnclosingLocal) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10646 | CXXRecordDecl *Lambda = LSI->Lambda; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10647 | |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10648 | // Build the non-static data member. |
| 10649 | FieldDecl *Field |
| 10650 | = FieldDecl::Create(S.Context, Lambda, Loc, Loc, 0, FieldType, |
| 10651 | S.Context.getTrivialTypeSourceInfo(FieldType, Loc), |
Richard Smith | ca52330 | 2012-06-10 03:12:00 +0000 | [diff] [blame] | 10652 | 0, false, ICIS_NoInit); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10653 | Field->setImplicit(true); |
| 10654 | Field->setAccess(AS_private); |
Douglas Gregor | 20f87a4 | 2012-02-09 02:12:34 +0000 | [diff] [blame] | 10655 | Lambda->addDecl(Field); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10656 | |
| 10657 | // C++11 [expr.prim.lambda]p21: |
| 10658 | // When the lambda-expression is evaluated, the entities that |
| 10659 | // are captured by copy are used to direct-initialize each |
| 10660 | // corresponding non-static data member of the resulting closure |
| 10661 | // object. (For array members, the array elements are |
| 10662 | // direct-initialized in increasing subscript order.) These |
| 10663 | // initializations are performed in the (unspecified) order in |
| 10664 | // which the non-static data members are declared. |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10665 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 10666 | // Introduce a new evaluation context for the initialization, so |
| 10667 | // that temporaries introduced as part of the capture are retained |
| 10668 | // to be re-"exported" from the lambda expression itself. |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10669 | S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated); |
| 10670 | |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 10671 | // C++ [expr.prim.labda]p12: |
| 10672 | // An entity captured by a lambda-expression is odr-used (3.2) in |
| 10673 | // the scope containing the lambda-expression. |
Douglas Gregor | d57f52c | 2012-05-16 17:01:33 +0000 | [diff] [blame] | 10674 | Expr *Ref = new (S.Context) DeclRefExpr(Var, RefersToEnclosingLocal, |
| 10675 | DeclRefType, VK_LValue, Loc); |
Eli Friedman | 88530d5 | 2012-03-01 21:32:56 +0000 | [diff] [blame] | 10676 | Var->setReferenced(true); |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 10677 | Var->setUsed(true); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10678 | |
| 10679 | // When the field has array type, create index variables for each |
| 10680 | // dimension of the array. We use these index variables to subscript |
| 10681 | // the source array, and other clients (e.g., CodeGen) will perform |
| 10682 | // the necessary iteration with these index variables. |
| 10683 | SmallVector<VarDecl *, 4> IndexVariables; |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10684 | QualType BaseType = FieldType; |
| 10685 | QualType SizeType = S.Context.getSizeType(); |
Douglas Gregor | 9daa7bf | 2012-02-13 16:35:30 +0000 | [diff] [blame] | 10686 | LSI->ArrayIndexStarts.push_back(LSI->ArrayIndexVars.size()); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10687 | while (const ConstantArrayType *Array |
| 10688 | = S.Context.getAsConstantArrayType(BaseType)) { |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10689 | // Create the iteration variable for this array index. |
| 10690 | IdentifierInfo *IterationVarName = 0; |
| 10691 | { |
| 10692 | SmallString<8> Str; |
| 10693 | llvm::raw_svector_ostream OS(Str); |
| 10694 | OS << "__i" << IndexVariables.size(); |
| 10695 | IterationVarName = &S.Context.Idents.get(OS.str()); |
| 10696 | } |
| 10697 | VarDecl *IterationVar |
| 10698 | = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, |
| 10699 | IterationVarName, SizeType, |
| 10700 | S.Context.getTrivialTypeSourceInfo(SizeType, Loc), |
| 10701 | SC_None, SC_None); |
| 10702 | IndexVariables.push_back(IterationVar); |
Douglas Gregor | 9daa7bf | 2012-02-13 16:35:30 +0000 | [diff] [blame] | 10703 | LSI->ArrayIndexVars.push_back(IterationVar); |
| 10704 | |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10705 | // Create a reference to the iteration variable. |
| 10706 | ExprResult IterationVarRef |
| 10707 | = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); |
| 10708 | assert(!IterationVarRef.isInvalid() && |
| 10709 | "Reference to invented variable cannot fail!"); |
| 10710 | IterationVarRef = S.DefaultLvalueConversion(IterationVarRef.take()); |
| 10711 | assert(!IterationVarRef.isInvalid() && |
| 10712 | "Conversion of invented variable cannot fail!"); |
| 10713 | |
| 10714 | // Subscript the array with this iteration variable. |
| 10715 | ExprResult Subscript = S.CreateBuiltinArraySubscriptExpr( |
| 10716 | Ref, Loc, IterationVarRef.take(), Loc); |
| 10717 | if (Subscript.isInvalid()) { |
| 10718 | S.CleanupVarDeclMarking(); |
| 10719 | S.DiscardCleanupsInEvaluationContext(); |
| 10720 | S.PopExpressionEvaluationContext(); |
| 10721 | return ExprError(); |
| 10722 | } |
| 10723 | |
| 10724 | Ref = Subscript.take(); |
| 10725 | BaseType = Array->getElementType(); |
| 10726 | } |
| 10727 | |
| 10728 | // Construct the entity that we will be initializing. For an array, this |
| 10729 | // will be first element in the array, which may require several levels |
| 10730 | // of array-subscript entities. |
| 10731 | SmallVector<InitializedEntity, 4> Entities; |
| 10732 | Entities.reserve(1 + IndexVariables.size()); |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 10733 | Entities.push_back( |
| 10734 | InitializedEntity::InitializeLambdaCapture(Var, Field, Loc)); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10735 | for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) |
| 10736 | Entities.push_back(InitializedEntity::InitializeElement(S.Context, |
| 10737 | 0, |
| 10738 | Entities.back())); |
| 10739 | |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10740 | InitializationKind InitKind |
| 10741 | = InitializationKind::CreateDirect(Loc, Loc, Loc); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10742 | InitializationSequence Init(S, Entities.back(), InitKind, &Ref, 1); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10743 | ExprResult Result(true); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10744 | if (!Init.Diagnose(S, Entities.back(), InitKind, &Ref, 1)) |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 10745 | Result = Init.Perform(S, Entities.back(), InitKind, Ref); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10746 | |
| 10747 | // If this initialization requires any cleanups (e.g., due to a |
| 10748 | // default argument to a copy constructor), note that for the |
| 10749 | // lambda. |
| 10750 | if (S.ExprNeedsCleanups) |
| 10751 | LSI->ExprNeedsCleanups = true; |
| 10752 | |
| 10753 | // Exit the expression evaluation context used for the capture. |
| 10754 | S.CleanupVarDeclMarking(); |
| 10755 | S.DiscardCleanupsInEvaluationContext(); |
| 10756 | S.PopExpressionEvaluationContext(); |
| 10757 | return Result; |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10758 | } |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10759 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10760 | bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, |
| 10761 | TryCaptureKind Kind, SourceLocation EllipsisLoc, |
| 10762 | bool BuildAndDiagnose, |
| 10763 | QualType &CaptureType, |
| 10764 | QualType &DeclRefType) { |
| 10765 | bool Nested = false; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10766 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10767 | DeclContext *DC = CurContext; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10768 | if (Var->getDeclContext() == DC) return true; |
| 10769 | if (!Var->hasLocalStorage()) return true; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10770 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10771 | bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10772 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10773 | // Walk up the stack to determine whether we can capture the variable, |
| 10774 | // performing the "simple" checks that don't depend on type. We stop when |
| 10775 | // we've either hit the declared scope of the variable or find an existing |
| 10776 | // capture of that variable. |
| 10777 | CaptureType = Var->getType(); |
| 10778 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10779 | bool Explicit = (Kind != TryCapture_Implicit); |
| 10780 | unsigned FunctionScopesIndex = FunctionScopes.size() - 1; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10781 | do { |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10782 | // Only block literals and lambda expressions can capture; other |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10783 | // scopes don't work. |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10784 | DeclContext *ParentDC; |
| 10785 | if (isa<BlockDecl>(DC)) |
| 10786 | ParentDC = DC->getParent(); |
| 10787 | else if (isa<CXXMethodDecl>(DC) && |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10788 | cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call && |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10789 | cast<CXXRecordDecl>(DC->getParent())->isLambda()) |
| 10790 | ParentDC = DC->getParent()->getParent(); |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10791 | else { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10792 | if (BuildAndDiagnose) |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10793 | diagnoseUncapturableValueReference(*this, Loc, Var, DC); |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10794 | return true; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10795 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10796 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10797 | CapturingScopeInfo *CSI = |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10798 | cast<CapturingScopeInfo>(FunctionScopes[FunctionScopesIndex]); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10799 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10800 | // Check whether we've already captured it. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10801 | if (CSI->CaptureMap.count(Var)) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10802 | // If we found a capture, any subcaptures are nested. |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10803 | Nested = true; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10804 | |
| 10805 | // Retrieve the capture type for this variable. |
| 10806 | CaptureType = CSI->getCapture(Var).getCaptureType(); |
| 10807 | |
| 10808 | // Compute the type of an expression that refers to this variable. |
| 10809 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10810 | |
| 10811 | const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var); |
| 10812 | if (Cap.isCopyCapture() && |
| 10813 | !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable)) |
| 10814 | DeclRefType.addConst(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10815 | break; |
| 10816 | } |
| 10817 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10818 | bool IsBlock = isa<BlockScopeInfo>(CSI); |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10819 | bool IsLambda = !IsBlock; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10820 | |
| 10821 | // Lambdas are not allowed to capture unnamed variables |
| 10822 | // (e.g. anonymous unions). |
| 10823 | // FIXME: The C++11 rule don't actually state this explicitly, but I'm |
| 10824 | // assuming that's the intent. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10825 | if (IsLambda && !Var->getDeclName()) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10826 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10827 | Diag(Loc, diag::err_lambda_capture_anonymous_var); |
| 10828 | Diag(Var->getLocation(), diag::note_declared_at); |
| 10829 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10830 | return true; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10831 | } |
| 10832 | |
| 10833 | // Prohibit variably-modified types; they're difficult to deal with. |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10834 | if (Var->getType()->isVariablyModifiedType()) { |
| 10835 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10836 | if (IsBlock) |
| 10837 | Diag(Loc, diag::err_ref_vm_type); |
| 10838 | else |
| 10839 | Diag(Loc, diag::err_lambda_capture_vm_type) << Var->getDeclName(); |
| 10840 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10841 | << Var->getDeclName(); |
| 10842 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10843 | return true; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10844 | } |
Fariborz Jahanian | b20eb10 | 2013-01-08 23:48:48 +0000 | [diff] [blame] | 10845 | // Prohibit structs with flexible array members too. |
Fariborz Jahanian | 9c0816f | 2013-01-08 23:17:51 +0000 | [diff] [blame] | 10846 | // We cannot capture what is in the tail end of the struct. |
| 10847 | if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) { |
Fariborz Jahanian | e178e70 | 2013-01-09 00:09:15 +0000 | [diff] [blame] | 10848 | if (VTTy->getDecl()->hasFlexibleArrayMember()) { |
Fariborz Jahanian | 9c0816f | 2013-01-08 23:17:51 +0000 | [diff] [blame] | 10849 | if (BuildAndDiagnose) { |
| 10850 | if (IsBlock) |
| 10851 | Diag(Loc, diag::err_ref_flexarray_type); |
Fariborz Jahanian | e178e70 | 2013-01-09 00:09:15 +0000 | [diff] [blame] | 10852 | else |
| 10853 | Diag(Loc, diag::err_lambda_capture_flexarray_type) |
| 10854 | << Var->getDeclName(); |
Fariborz Jahanian | 9c0816f | 2013-01-08 23:17:51 +0000 | [diff] [blame] | 10855 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10856 | << Var->getDeclName(); |
| 10857 | } |
| 10858 | return true; |
| 10859 | } |
| 10860 | } |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10861 | // Lambdas are not allowed to capture __block variables; they don't |
| 10862 | // support the expected semantics. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10863 | if (IsLambda && HasBlocksAttr) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10864 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10865 | Diag(Loc, diag::err_lambda_capture_block) |
| 10866 | << Var->getDeclName(); |
| 10867 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10868 | << Var->getDeclName(); |
| 10869 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10870 | return true; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10871 | } |
| 10872 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10873 | if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { |
| 10874 | // No capture-default |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10875 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10876 | Diag(Loc, diag::err_lambda_impcap) << Var->getDeclName(); |
| 10877 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10878 | << Var->getDeclName(); |
| 10879 | Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(), |
| 10880 | diag::note_lambda_decl); |
| 10881 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10882 | return true; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10883 | } |
| 10884 | |
| 10885 | FunctionScopesIndex--; |
| 10886 | DC = ParentDC; |
| 10887 | Explicit = false; |
| 10888 | } while (!Var->getDeclContext()->Equals(DC)); |
| 10889 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10890 | // Walk back down the scope stack, computing the type of the capture at |
| 10891 | // each step, checking type-specific requirements, and adding captures if |
| 10892 | // requested. |
| 10893 | for (unsigned I = ++FunctionScopesIndex, N = FunctionScopes.size(); I != N; |
| 10894 | ++I) { |
| 10895 | CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 10896 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10897 | // Compute the type of the capture and of a reference to the capture within |
| 10898 | // this scope. |
| 10899 | if (isa<BlockScopeInfo>(CSI)) { |
| 10900 | Expr *CopyExpr = 0; |
| 10901 | bool ByRef = false; |
| 10902 | |
| 10903 | // Blocks are not allowed to capture arrays. |
| 10904 | if (CaptureType->isArrayType()) { |
| 10905 | if (BuildAndDiagnose) { |
| 10906 | Diag(Loc, diag::err_ref_array_type); |
| 10907 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10908 | << Var->getDeclName(); |
| 10909 | } |
| 10910 | return true; |
| 10911 | } |
| 10912 | |
John McCall | 100c649 | 2012-03-30 05:23:48 +0000 | [diff] [blame] | 10913 | // Forbid the block-capture of autoreleasing variables. |
| 10914 | if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { |
| 10915 | if (BuildAndDiagnose) { |
| 10916 | Diag(Loc, diag::err_arc_autoreleasing_capture) |
| 10917 | << /*block*/ 0; |
| 10918 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10919 | << Var->getDeclName(); |
| 10920 | } |
| 10921 | return true; |
| 10922 | } |
| 10923 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10924 | if (HasBlocksAttr || CaptureType->isReferenceType()) { |
| 10925 | // Block capture by reference does not change the capture or |
| 10926 | // declaration reference types. |
| 10927 | ByRef = true; |
| 10928 | } else { |
| 10929 | // Block capture by copy introduces 'const'. |
| 10930 | CaptureType = CaptureType.getNonReferenceType().withConst(); |
| 10931 | DeclRefType = CaptureType; |
| 10932 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 10933 | if (getLangOpts().CPlusPlus && BuildAndDiagnose) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10934 | if (const RecordType *Record = DeclRefType->getAs<RecordType>()) { |
| 10935 | // The capture logic needs the destructor, so make sure we mark it. |
| 10936 | // Usually this is unnecessary because most local variables have |
| 10937 | // their destructors marked at declaration time, but parameters are |
| 10938 | // an exception because it's technically only the call site that |
| 10939 | // actually requires the destructor. |
| 10940 | if (isa<ParmVarDecl>(Var)) |
| 10941 | FinalizeVarWithDestructor(Var, Record); |
Douglas Gregor | 464a01a | 2012-12-01 01:01:09 +0000 | [diff] [blame] | 10942 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10943 | // According to the blocks spec, the capture of a variable from |
| 10944 | // the stack requires a const copy constructor. This is not true |
| 10945 | // of the copy/move done to move a __block variable to the heap. |
Douglas Gregor | 464a01a | 2012-12-01 01:01:09 +0000 | [diff] [blame] | 10946 | Expr *DeclRef = new (Context) DeclRefExpr(Var, Nested, |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10947 | DeclRefType.withConst(), |
| 10948 | VK_LValue, Loc); |
Douglas Gregor | 464a01a | 2012-12-01 01:01:09 +0000 | [diff] [blame] | 10949 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10950 | ExprResult Result |
| 10951 | = PerformCopyInitialization( |
| 10952 | InitializedEntity::InitializeBlock(Var->getLocation(), |
| 10953 | CaptureType, false), |
| 10954 | Loc, Owned(DeclRef)); |
| 10955 | |
| 10956 | // Build a full-expression copy expression if initialization |
| 10957 | // succeeded and used a non-trivial constructor. Recover from |
| 10958 | // errors by pretending that the copy isn't necessary. |
| 10959 | if (!Result.isInvalid() && |
| 10960 | !cast<CXXConstructExpr>(Result.get())->getConstructor() |
| 10961 | ->isTrivial()) { |
| 10962 | Result = MaybeCreateExprWithCleanups(Result); |
| 10963 | CopyExpr = Result.take(); |
| 10964 | } |
| 10965 | } |
| 10966 | } |
| 10967 | } |
| 10968 | |
| 10969 | // Actually capture the variable. |
| 10970 | if (BuildAndDiagnose) |
| 10971 | CSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, |
| 10972 | SourceLocation(), CaptureType, CopyExpr); |
| 10973 | Nested = true; |
| 10974 | continue; |
| 10975 | } |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 10976 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10977 | LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); |
| 10978 | |
| 10979 | // Determine whether we are capturing by reference or by value. |
| 10980 | bool ByRef = false; |
| 10981 | if (I == N - 1 && Kind != TryCapture_Implicit) { |
| 10982 | ByRef = (Kind == TryCapture_ExplicitByRef); |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10983 | } else { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10984 | ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10985 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10986 | |
| 10987 | // Compute the type of the field that will capture this variable. |
| 10988 | if (ByRef) { |
| 10989 | // C++11 [expr.prim.lambda]p15: |
| 10990 | // An entity is captured by reference if it is implicitly or |
| 10991 | // explicitly captured but not captured by copy. It is |
| 10992 | // unspecified whether additional unnamed non-static data |
| 10993 | // members are declared in the closure type for entities |
| 10994 | // captured by reference. |
| 10995 | // |
| 10996 | // FIXME: It is not clear whether we want to build an lvalue reference |
| 10997 | // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears |
| 10998 | // to do the former, while EDG does the latter. Core issue 1249 will |
| 10999 | // clarify, but for now we follow GCC because it's a more permissive and |
| 11000 | // easily defensible position. |
| 11001 | CaptureType = Context.getLValueReferenceType(DeclRefType); |
| 11002 | } else { |
| 11003 | // C++11 [expr.prim.lambda]p14: |
| 11004 | // For each entity captured by copy, an unnamed non-static |
| 11005 | // data member is declared in the closure type. The |
| 11006 | // declaration order of these members is unspecified. The type |
| 11007 | // of such a data member is the type of the corresponding |
| 11008 | // captured entity if the entity is not a reference to an |
| 11009 | // object, or the referenced type otherwise. [Note: If the |
| 11010 | // captured entity is a reference to a function, the |
| 11011 | // corresponding data member is also a reference to a |
| 11012 | // function. - end note ] |
| 11013 | if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ |
| 11014 | if (!RefType->getPointeeType()->isFunctionType()) |
| 11015 | CaptureType = RefType->getPointeeType(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 11016 | } |
John McCall | 100c649 | 2012-03-30 05:23:48 +0000 | [diff] [blame] | 11017 | |
| 11018 | // Forbid the lambda copy-capture of autoreleasing variables. |
| 11019 | if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { |
| 11020 | if (BuildAndDiagnose) { |
| 11021 | Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; |
| 11022 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 11023 | << Var->getDeclName(); |
| 11024 | } |
| 11025 | return true; |
| 11026 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 11027 | } |
| 11028 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 11029 | // Capture this variable in the lambda. |
| 11030 | Expr *CopyExpr = 0; |
| 11031 | if (BuildAndDiagnose) { |
| 11032 | ExprResult Result = captureInLambda(*this, LSI, Var, CaptureType, |
Douglas Gregor | d57f52c | 2012-05-16 17:01:33 +0000 | [diff] [blame] | 11033 | DeclRefType, Loc, |
Douglas Gregor | 464a01a | 2012-12-01 01:01:09 +0000 | [diff] [blame] | 11034 | Nested); |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 11035 | if (!Result.isInvalid()) |
| 11036 | CopyExpr = Result.take(); |
| 11037 | } |
| 11038 | |
| 11039 | // Compute the type of a reference to this captured variable. |
| 11040 | if (ByRef) |
| 11041 | DeclRefType = CaptureType.getNonReferenceType(); |
| 11042 | else { |
| 11043 | // C++ [expr.prim.lambda]p5: |
| 11044 | // The closure type for a lambda-expression has a public inline |
| 11045 | // function call operator [...]. This function call operator is |
| 11046 | // declared const (9.3.1) if and only if the lambda-expression’s |
| 11047 | // parameter-declaration-clause is not followed by mutable. |
| 11048 | DeclRefType = CaptureType.getNonReferenceType(); |
| 11049 | if (!LSI->Mutable && !CaptureType->isReferenceType()) |
| 11050 | DeclRefType.addConst(); |
| 11051 | } |
| 11052 | |
| 11053 | // Add the capture. |
| 11054 | if (BuildAndDiagnose) |
| 11055 | CSI->addCapture(Var, /*IsBlock=*/false, ByRef, Nested, Loc, |
| 11056 | EllipsisLoc, CaptureType, CopyExpr); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 11057 | Nested = true; |
| 11058 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 11059 | |
| 11060 | return false; |
| 11061 | } |
| 11062 | |
| 11063 | bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, |
| 11064 | TryCaptureKind Kind, SourceLocation EllipsisLoc) { |
| 11065 | QualType CaptureType; |
| 11066 | QualType DeclRefType; |
| 11067 | return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, |
| 11068 | /*BuildAndDiagnose=*/true, CaptureType, |
| 11069 | DeclRefType); |
| 11070 | } |
| 11071 | |
| 11072 | QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { |
| 11073 | QualType CaptureType; |
| 11074 | QualType DeclRefType; |
| 11075 | |
| 11076 | // Determine whether we can capture this variable. |
| 11077 | if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), |
| 11078 | /*BuildAndDiagnose=*/false, CaptureType, DeclRefType)) |
| 11079 | return QualType(); |
| 11080 | |
| 11081 | return DeclRefType; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 11082 | } |
| 11083 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11084 | static void MarkVarDeclODRUsed(Sema &SemaRef, VarDecl *Var, |
| 11085 | SourceLocation Loc) { |
| 11086 | // Keep track of used but undefined variables. |
Eli Friedman | 0cc5d40 | 2012-02-04 00:54:05 +0000 | [diff] [blame] | 11087 | // FIXME: We shouldn't suppress this warning for static data members. |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 11088 | if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly && |
Eli Friedman | 0cc5d40 | 2012-02-04 00:54:05 +0000 | [diff] [blame] | 11089 | Var->getLinkage() != ExternalLinkage && |
| 11090 | !(Var->isStaticDataMember() && Var->hasInit())) { |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 11091 | SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11092 | if (old.isInvalid()) old = Loc; |
| 11093 | } |
| 11094 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 11095 | SemaRef.tryCaptureVariable(Var, Loc); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 11096 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11097 | Var->setUsed(true); |
| 11098 | } |
| 11099 | |
| 11100 | void Sema::UpdateMarkingForLValueToRValue(Expr *E) { |
| 11101 | // Per C++11 [basic.def.odr], a variable is odr-used "unless it is |
| 11102 | // an object that satisfies the requirements for appearing in a |
| 11103 | // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) |
| 11104 | // is immediately applied." This function handles the lvalue-to-rvalue |
| 11105 | // conversion part. |
| 11106 | MaybeODRUseExprs.erase(E->IgnoreParens()); |
| 11107 | } |
| 11108 | |
Eli Friedman | ac62601 | 2012-02-29 03:16:56 +0000 | [diff] [blame] | 11109 | ExprResult Sema::ActOnConstantExpression(ExprResult Res) { |
| 11110 | if (!Res.isUsable()) |
| 11111 | return Res; |
| 11112 | |
| 11113 | // If a constant-expression is a reference to a variable where we delay |
| 11114 | // deciding whether it is an odr-use, just assume we will apply the |
| 11115 | // lvalue-to-rvalue conversion. In the one case where this doesn't happen |
| 11116 | // (a non-type template argument), we have special handling anyway. |
| 11117 | UpdateMarkingForLValueToRValue(Res.get()); |
| 11118 | return Res; |
| 11119 | } |
| 11120 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11121 | void Sema::CleanupVarDeclMarking() { |
| 11122 | for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(), |
| 11123 | e = MaybeODRUseExprs.end(); |
| 11124 | i != e; ++i) { |
| 11125 | VarDecl *Var; |
| 11126 | SourceLocation Loc; |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 11127 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) { |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11128 | Var = cast<VarDecl>(DRE->getDecl()); |
| 11129 | Loc = DRE->getLocation(); |
| 11130 | } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) { |
| 11131 | Var = cast<VarDecl>(ME->getMemberDecl()); |
| 11132 | Loc = ME->getMemberLoc(); |
| 11133 | } else { |
| 11134 | llvm_unreachable("Unexpcted expression"); |
| 11135 | } |
| 11136 | |
| 11137 | MarkVarDeclODRUsed(*this, Var, Loc); |
| 11138 | } |
| 11139 | |
| 11140 | MaybeODRUseExprs.clear(); |
| 11141 | } |
| 11142 | |
| 11143 | // Mark a VarDecl referenced, and perform the necessary handling to compute |
| 11144 | // odr-uses. |
| 11145 | static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, |
| 11146 | VarDecl *Var, Expr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11147 | Var->setReferenced(); |
| 11148 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11149 | if (!IsPotentiallyEvaluatedContext(SemaRef)) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11150 | return; |
| 11151 | |
| 11152 | // Implicit instantiation of static data members of class templates. |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 11153 | if (Var->isStaticDataMember() && Var->getInstantiatedFromStaticDataMember()) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11154 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 11155 | assert(MSInfo && "Missing member specialization information?"); |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 11156 | bool AlreadyInstantiated = !MSInfo->getPointOfInstantiation().isInvalid(); |
| 11157 | if (MSInfo->getTemplateSpecializationKind() == TSK_ImplicitInstantiation && |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 11158 | (!AlreadyInstantiated || |
| 11159 | Var->isUsableInConstantExpressions(SemaRef.Context))) { |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 11160 | if (!AlreadyInstantiated) { |
| 11161 | // This is a modification of an existing AST node. Notify listeners. |
| 11162 | if (ASTMutationListener *L = SemaRef.getASTMutationListener()) |
| 11163 | L->StaticDataMemberInstantiated(Var); |
| 11164 | MSInfo->setPointOfInstantiation(Loc); |
| 11165 | } |
| 11166 | SourceLocation PointOfInstantiation = MSInfo->getPointOfInstantiation(); |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 11167 | if (Var->isUsableInConstantExpressions(SemaRef.Context)) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11168 | // Do not defer instantiations of variables which could be used in a |
| 11169 | // constant expression. |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 11170 | SemaRef.InstantiateStaticDataMemberDefinition(PointOfInstantiation,Var); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11171 | else |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 11172 | SemaRef.PendingInstantiations.push_back( |
| 11173 | std::make_pair(Var, PointOfInstantiation)); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11174 | } |
| 11175 | } |
| 11176 | |
Richard Smith | 5016a70 | 2012-10-20 01:38:33 +0000 | [diff] [blame] | 11177 | // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies |
| 11178 | // the requirements for appearing in a constant expression (5.19) and, if |
| 11179 | // it is an object, the lvalue-to-rvalue conversion (4.1) |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11180 | // is immediately applied." We check the first part here, and |
| 11181 | // Sema::UpdateMarkingForLValueToRValue deals with the second part. |
| 11182 | // Note that we use the C++11 definition everywhere because nothing in |
Richard Smith | 5016a70 | 2012-10-20 01:38:33 +0000 | [diff] [blame] | 11183 | // C++03 depends on whether we get the C++03 version correct. The second |
| 11184 | // part does not apply to references, since they are not objects. |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11185 | const VarDecl *DefVD; |
Richard Smith | 5016a70 | 2012-10-20 01:38:33 +0000 | [diff] [blame] | 11186 | if (E && !isa<ParmVarDecl>(Var) && |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 11187 | Var->isUsableInConstantExpressions(SemaRef.Context) && |
Richard Smith | 5016a70 | 2012-10-20 01:38:33 +0000 | [diff] [blame] | 11188 | Var->getAnyInitializer(DefVD) && DefVD->checkInitIsICE()) { |
| 11189 | if (!Var->getType()->isReferenceType()) |
| 11190 | SemaRef.MaybeODRUseExprs.insert(E); |
| 11191 | } else |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11192 | MarkVarDeclODRUsed(SemaRef, Var, Loc); |
| 11193 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11194 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11195 | /// \brief Mark a variable referenced, and check whether it is odr-used |
| 11196 | /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be |
| 11197 | /// used directly for normal expressions referring to VarDecl. |
| 11198 | void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { |
| 11199 | DoMarkVarDeclReferenced(*this, Loc, Var, 0); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11200 | } |
| 11201 | |
| 11202 | static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11203 | Decl *D, Expr *E, bool OdrUse) { |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11204 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 11205 | DoMarkVarDeclReferenced(SemaRef, Loc, Var, E); |
| 11206 | return; |
| 11207 | } |
| 11208 | |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11209 | SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse); |
Rafael Espindola | 0b4fe50 | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 11210 | |
| 11211 | // If this is a call to a method via a cast, also mark the method in the |
| 11212 | // derived class used in case codegen can devirtualize the call. |
| 11213 | const MemberExpr *ME = dyn_cast<MemberExpr>(E); |
| 11214 | if (!ME) |
| 11215 | return; |
| 11216 | CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); |
| 11217 | if (!MD) |
| 11218 | return; |
| 11219 | const Expr *Base = ME->getBase(); |
Rafael Espindola | 8d852e3 | 2012-06-27 18:18:05 +0000 | [diff] [blame] | 11220 | const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType(); |
Rafael Espindola | 0b4fe50 | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 11221 | if (!MostDerivedClassDecl) |
| 11222 | return; |
| 11223 | CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl); |
Nick Lewycky | d3b4f0e | 2013-02-14 00:55:17 +0000 | [diff] [blame] | 11224 | if (!DM || DM->isPure()) |
Rafael Espindola | 0713d99 | 2012-06-27 17:44:39 +0000 | [diff] [blame] | 11225 | return; |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11226 | SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse); |
Douglas Gregor | f6e2e02 | 2012-02-16 01:06:16 +0000 | [diff] [blame] | 11227 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11228 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11229 | /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr. |
| 11230 | void Sema::MarkDeclRefReferenced(DeclRefExpr *E) { |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11231 | // TODO: update this with DR# once a defect report is filed. |
| 11232 | // C++11 defect. The address of a pure member should not be an ODR use, even |
| 11233 | // if it's a qualified reference. |
| 11234 | bool OdrUse = true; |
| 11235 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) |
Nick Lewycky | 7cea148 | 2013-02-05 06:20:31 +0000 | [diff] [blame] | 11236 | if (Method->isVirtual()) |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11237 | OdrUse = false; |
| 11238 | MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11239 | } |
| 11240 | |
| 11241 | /// \brief Perform reference-marking and odr-use handling for a MemberExpr. |
| 11242 | void Sema::MarkMemberReferenced(MemberExpr *E) { |
Nick Lewycky | 869709c | 2013-01-31 03:15:20 +0000 | [diff] [blame] | 11243 | // C++11 [basic.def.odr]p2: |
Nick Lewycky | 4ceaf33 | 2013-01-31 01:34:31 +0000 | [diff] [blame] | 11244 | // A non-overloaded function whose name appears as a potentially-evaluated |
| 11245 | // expression or a member of a set of candidate functions, if selected by |
| 11246 | // overload resolution when referred to from a potentially-evaluated |
| 11247 | // expression, is odr-used, unless it is a pure virtual function and its |
| 11248 | // name is not explicitly qualified. |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11249 | bool OdrUse = true; |
Nick Lewycky | 4ceaf33 | 2013-01-31 01:34:31 +0000 | [diff] [blame] | 11250 | if (!E->hasQualifier()) { |
| 11251 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) |
| 11252 | if (Method->isPure()) |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11253 | OdrUse = false; |
Nick Lewycky | 4ceaf33 | 2013-01-31 01:34:31 +0000 | [diff] [blame] | 11254 | } |
Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 11255 | SourceLocation Loc = E->getMemberLoc().isValid() ? |
| 11256 | E->getMemberLoc() : E->getLocStart(); |
| 11257 | MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11258 | } |
| 11259 | |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 11260 | /// \brief Perform marking for a reference to an arbitrary declaration. It |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11261 | /// marks the declaration referenced, and performs odr-use checking for functions |
| 11262 | /// and variables. This method should not be used when building an normal |
| 11263 | /// expression which refers to a variable. |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11264 | void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) { |
| 11265 | if (OdrUse) { |
| 11266 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 11267 | MarkVariableReferenced(Loc, VD); |
| 11268 | return; |
| 11269 | } |
| 11270 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 11271 | MarkFunctionReferenced(Loc, FD); |
| 11272 | return; |
| 11273 | } |
| 11274 | } |
| 11275 | D->setReferenced(); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 11276 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 11277 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11278 | namespace { |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11279 | // Mark all of the declarations referenced |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11280 | // FIXME: Not fully implemented yet! We need to have a better understanding |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11281 | // of when we're entering |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11282 | class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { |
| 11283 | Sema &S; |
| 11284 | SourceLocation Loc; |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11285 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11286 | public: |
| 11287 | typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11288 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11289 | MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11290 | |
| 11291 | bool TraverseTemplateArgument(const TemplateArgument &Arg); |
| 11292 | bool TraverseRecordType(RecordType *T); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11293 | }; |
| 11294 | } |
| 11295 | |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11296 | bool MarkReferencedDecls::TraverseTemplateArgument( |
| 11297 | const TemplateArgument &Arg) { |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11298 | if (Arg.getKind() == TemplateArgument::Declaration) { |
Douglas Gregor | d2008e2 | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 11299 | if (Decl *D = Arg.getAsDecl()) |
Nick Lewycky | b7e5eec | 2013-02-02 00:25:55 +0000 | [diff] [blame] | 11300 | S.MarkAnyDeclReferenced(Loc, D, true); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11301 | } |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11302 | |
| 11303 | return Inherited::TraverseTemplateArgument(Arg); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11304 | } |
| 11305 | |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11306 | bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11307 | if (ClassTemplateSpecializationDecl *Spec |
| 11308 | = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { |
| 11309 | const TemplateArgumentList &Args = Spec->getTemplateArgs(); |
Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 11310 | return TraverseTemplateArguments(Args.data(), Args.size()); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11311 | } |
| 11312 | |
Chandler Carruth | e3e210c | 2010-06-10 10:31:57 +0000 | [diff] [blame] | 11313 | return true; |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11314 | } |
| 11315 | |
| 11316 | void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { |
| 11317 | MarkReferencedDecls Marker(*this, Loc); |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 11318 | Marker.TraverseType(Context.getCanonicalType(T)); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 11319 | } |
| 11320 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11321 | namespace { |
| 11322 | /// \brief Helper class that marks all of the declarations referenced by |
| 11323 | /// potentially-evaluated subexpressions as "referenced". |
| 11324 | class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { |
| 11325 | Sema &S; |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 11326 | bool SkipLocalVariables; |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11327 | |
| 11328 | public: |
| 11329 | typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; |
| 11330 | |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 11331 | EvaluatedExprMarker(Sema &S, bool SkipLocalVariables) |
| 11332 | : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11333 | |
| 11334 | void VisitDeclRefExpr(DeclRefExpr *E) { |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 11335 | // If we were asked not to visit local variables, don't. |
| 11336 | if (SkipLocalVariables) { |
| 11337 | if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) |
| 11338 | if (VD->hasLocalStorage()) |
| 11339 | return; |
| 11340 | } |
| 11341 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11342 | S.MarkDeclRefReferenced(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11343 | } |
| 11344 | |
| 11345 | void VisitMemberExpr(MemberExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11346 | S.MarkMemberReferenced(E); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 11347 | Inherited::VisitMemberExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11348 | } |
| 11349 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 11350 | void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11351 | S.MarkFunctionReferenced(E->getLocStart(), |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 11352 | const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); |
| 11353 | Visit(E->getSubExpr()); |
| 11354 | } |
| 11355 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11356 | void VisitCXXNewExpr(CXXNewExpr *E) { |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11357 | if (E->getOperatorNew()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11358 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew()); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11359 | if (E->getOperatorDelete()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11360 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 11361 | Inherited::VisitCXXNewExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11362 | } |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 11363 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11364 | void VisitCXXDeleteExpr(CXXDeleteExpr *E) { |
| 11365 | if (E->getOperatorDelete()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11366 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 11367 | QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); |
| 11368 | if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { |
| 11369 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11370 | S.MarkFunctionReferenced(E->getLocStart(), |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 11371 | S.LookupDestructor(Record)); |
| 11372 | } |
| 11373 | |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 11374 | Inherited::VisitCXXDeleteExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11375 | } |
| 11376 | |
| 11377 | void VisitCXXConstructExpr(CXXConstructExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 11378 | S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor()); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 11379 | Inherited::VisitCXXConstructExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11380 | } |
| 11381 | |
Douglas Gregor | 102ff97 | 2010-10-19 17:17:35 +0000 | [diff] [blame] | 11382 | void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { |
| 11383 | Visit(E->getExpr()); |
| 11384 | } |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 11385 | |
| 11386 | void VisitImplicitCastExpr(ImplicitCastExpr *E) { |
| 11387 | Inherited::VisitImplicitCastExpr(E); |
| 11388 | |
| 11389 | if (E->getCastKind() == CK_LValueToRValue) |
| 11390 | S.UpdateMarkingForLValueToRValue(E->getSubExpr()); |
| 11391 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11392 | }; |
| 11393 | } |
| 11394 | |
| 11395 | /// \brief Mark any declarations that appear within this expression or any |
| 11396 | /// potentially-evaluated subexpressions as "referenced". |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 11397 | /// |
| 11398 | /// \param SkipLocalVariables If true, don't mark local variables as |
| 11399 | /// 'referenced'. |
| 11400 | void Sema::MarkDeclarationsReferencedInExpr(Expr *E, |
| 11401 | bool SkipLocalVariables) { |
| 11402 | EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11403 | } |
| 11404 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11405 | /// \brief Emit a diagnostic that describes an effect on the run-time behavior |
| 11406 | /// of the program being compiled. |
| 11407 | /// |
| 11408 | /// This routine emits the given diagnostic when the code currently being |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 11409 | /// type-checked is "potentially evaluated", meaning that there is a |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11410 | /// possibility that the code will actually be executable. Code in sizeof() |
| 11411 | /// expressions, code used only during overload resolution, etc., are not |
| 11412 | /// potentially evaluated. This routine will suppress such diagnostics or, |
| 11413 | /// in the absolutely nutty case of potentially potentially evaluated |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 11414 | /// expressions (C++ typeid), queue the diagnostic to potentially emit it |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11415 | /// later. |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 11416 | /// |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11417 | /// This routine should be used for all diagnostics that describe the run-time |
| 11418 | /// behavior of a program, such as passing a non-POD value through an ellipsis. |
| 11419 | /// Failure to do so will likely result in spurious diagnostics or failures |
| 11420 | /// during overload resolution or within sizeof/alignof/typeof/typeid. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11421 | bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11422 | const PartialDiagnostic &PD) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 11423 | switch (ExprEvalContexts.back().Context) { |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11424 | case Unevaluated: |
| 11425 | // The argument will never be evaluated, so don't complain. |
| 11426 | break; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 11427 | |
Richard Smith | f6702a3 | 2011-12-20 02:08:33 +0000 | [diff] [blame] | 11428 | case ConstantEvaluated: |
| 11429 | // Relevant diagnostics should be produced by constant evaluation. |
| 11430 | break; |
| 11431 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11432 | case PotentiallyEvaluated: |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 11433 | case PotentiallyEvaluatedIfUsed: |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11434 | if (Statement && getCurFunctionOrMethodDecl()) { |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 11435 | FunctionScopes.back()->PossiblyUnreachableDiags. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11436 | push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 11437 | } |
| 11438 | else |
| 11439 | Diag(Loc, PD); |
| 11440 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11441 | return true; |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 11442 | } |
| 11443 | |
| 11444 | return false; |
| 11445 | } |
| 11446 | |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 11447 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 11448 | CallExpr *CE, FunctionDecl *FD) { |
| 11449 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 11450 | return false; |
| 11451 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 11452 | // If we're inside a decltype's expression, don't check for a valid return |
| 11453 | // type or construct temporaries until we know whether this is the last call. |
| 11454 | if (ExprEvalContexts.back().IsDecltype) { |
| 11455 | ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); |
| 11456 | return false; |
| 11457 | } |
| 11458 | |
Douglas Gregor | f502d8e | 2012-05-04 16:48:41 +0000 | [diff] [blame] | 11459 | class CallReturnIncompleteDiagnoser : public TypeDiagnoser { |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 11460 | FunctionDecl *FD; |
| 11461 | CallExpr *CE; |
| 11462 | |
| 11463 | public: |
| 11464 | CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE) |
| 11465 | : FD(FD), CE(CE) { } |
| 11466 | |
| 11467 | virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) { |
| 11468 | if (!FD) { |
| 11469 | S.Diag(Loc, diag::err_call_incomplete_return) |
| 11470 | << T << CE->getSourceRange(); |
| 11471 | return; |
| 11472 | } |
| 11473 | |
| 11474 | S.Diag(Loc, diag::err_call_function_incomplete_return) |
| 11475 | << CE->getSourceRange() << FD->getDeclName() << T; |
| 11476 | S.Diag(FD->getLocation(), |
| 11477 | diag::note_function_with_incomplete_return_type_declared_here) |
| 11478 | << FD->getDeclName(); |
| 11479 | } |
| 11480 | } Diagnoser(FD, CE); |
| 11481 | |
| 11482 | if (RequireCompleteType(Loc, ReturnType, Diagnoser)) |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 11483 | return true; |
| 11484 | |
| 11485 | return false; |
| 11486 | } |
| 11487 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11488 | // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11489 | // will prevent this condition from triggering, which is what we want. |
| 11490 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 11491 | SourceLocation Loc; |
| 11492 | |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 11493 | unsigned diagnostic = diag::warn_condition_is_assignment; |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11494 | bool IsOrAssign = false; |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 11495 | |
Chandler Carruth | b33c19f | 2011-08-16 22:30:10 +0000 | [diff] [blame] | 11496 | if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11497 | if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11498 | return; |
| 11499 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11500 | IsOrAssign = Op->getOpcode() == BO_OrAssign; |
| 11501 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 11502 | // Greylist some idioms by putting them into a warning subcategory. |
| 11503 | if (ObjCMessageExpr *ME |
| 11504 | = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { |
| 11505 | Selector Sel = ME->getSelector(); |
| 11506 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 11507 | // self = [<foo> init...] |
Douglas Gregor | c737acb | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 11508 | if (isSelfExpr(Op->getLHS()) && Sel.getNameForSlot(0).startswith("init")) |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 11509 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 11510 | |
| 11511 | // <foo> = [<bar> nextObject] |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 11512 | else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 11513 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 11514 | } |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 11515 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11516 | Loc = Op->getOperatorLoc(); |
Chandler Carruth | b33c19f | 2011-08-16 22:30:10 +0000 | [diff] [blame] | 11517 | } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11518 | if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11519 | return; |
| 11520 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11521 | IsOrAssign = Op->getOperator() == OO_PipeEqual; |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11522 | Loc = Op->getOperatorLoc(); |
Fariborz Jahanian | a414a2f | 2012-08-29 17:17:11 +0000 | [diff] [blame] | 11523 | } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) |
| 11524 | return DiagnoseAssignmentAsCondition(POE->getSyntacticForm()); |
| 11525 | else { |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11526 | // Not an assignment. |
| 11527 | return; |
| 11528 | } |
| 11529 | |
Douglas Gregor | 55b3884 | 2010-04-14 16:09:52 +0000 | [diff] [blame] | 11530 | Diag(Loc, diagnostic) << E->getSourceRange(); |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11531 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 11532 | SourceLocation Open = E->getLocStart(); |
Argyrios Kyrtzidis | abdd3b3 | 2011-04-25 23:01:29 +0000 | [diff] [blame] | 11533 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
| 11534 | Diag(Loc, diag::note_condition_assign_silence) |
| 11535 | << FixItHint::CreateInsertion(Open, "(") |
| 11536 | << FixItHint::CreateInsertion(Close, ")"); |
| 11537 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 11538 | if (IsOrAssign) |
| 11539 | Diag(Loc, diag::note_condition_or_assign_to_comparison) |
| 11540 | << FixItHint::CreateReplacement(Loc, "!="); |
| 11541 | else |
| 11542 | Diag(Loc, diag::note_condition_assign_to_comparison) |
| 11543 | << FixItHint::CreateReplacement(Loc, "=="); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11544 | } |
| 11545 | |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 11546 | /// \brief Redundant parentheses over an equality comparison can indicate |
| 11547 | /// that the user intended an assignment used as condition. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11548 | void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 11549 | // Don't warn if the parens came from a macro. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11550 | SourceLocation parenLoc = ParenE->getLocStart(); |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 11551 | if (parenLoc.isInvalid() || parenLoc.isMacroID()) |
| 11552 | return; |
Argyrios Kyrtzidis | 170a6a2 | 2011-03-28 23:52:04 +0000 | [diff] [blame] | 11553 | // Don't warn for dependent expressions. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11554 | if (ParenE->isTypeDependent()) |
Argyrios Kyrtzidis | 170a6a2 | 2011-03-28 23:52:04 +0000 | [diff] [blame] | 11555 | return; |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 11556 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11557 | Expr *E = ParenE->IgnoreParens(); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 11558 | |
| 11559 | if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) |
Argyrios Kyrtzidis | 70f2330 | 2011-02-01 19:32:59 +0000 | [diff] [blame] | 11560 | if (opE->getOpcode() == BO_EQ && |
| 11561 | opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) |
| 11562 | == Expr::MLV_Valid) { |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 11563 | SourceLocation Loc = opE->getOperatorLoc(); |
Ted Kremenek | 006ae38 | 2011-02-01 22:36:09 +0000 | [diff] [blame] | 11564 | |
Ted Kremenek | f7275cd | 2011-02-02 02:20:30 +0000 | [diff] [blame] | 11565 | Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 11566 | SourceRange ParenERange = ParenE->getSourceRange(); |
Ted Kremenek | f7275cd | 2011-02-02 02:20:30 +0000 | [diff] [blame] | 11567 | Diag(Loc, diag::note_equality_comparison_silence) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 11568 | << FixItHint::CreateRemoval(ParenERange.getBegin()) |
| 11569 | << FixItHint::CreateRemoval(ParenERange.getEnd()); |
Argyrios Kyrtzidis | abdd3b3 | 2011-04-25 23:01:29 +0000 | [diff] [blame] | 11570 | Diag(Loc, diag::note_equality_comparison_to_assign) |
| 11571 | << FixItHint::CreateReplacement(Loc, "="); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 11572 | } |
| 11573 | } |
| 11574 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 11575 | ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11576 | DiagnoseAssignmentAsCondition(E); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 11577 | if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) |
| 11578 | DiagnoseEqualityWithExtraParens(parenE); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11579 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 11580 | ExprResult result = CheckPlaceholderExpr(E); |
| 11581 | if (result.isInvalid()) return ExprError(); |
| 11582 | E = result.take(); |
Argyrios Kyrtzidis | 11ab790 | 2010-11-01 18:49:26 +0000 | [diff] [blame] | 11583 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 11584 | if (!E->isTypeDependent()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 11585 | if (getLangOpts().CPlusPlus) |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 11586 | return CheckCXXBooleanCondition(E); // C++ 6.4p4 |
| 11587 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 11588 | ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); |
| 11589 | if (ERes.isInvalid()) |
| 11590 | return ExprError(); |
| 11591 | E = ERes.take(); |
John McCall | abc56c7 | 2010-12-04 06:09:13 +0000 | [diff] [blame] | 11592 | |
| 11593 | QualType T = E->getType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 11594 | if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 11595 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 11596 | << T << E->getSourceRange(); |
| 11597 | return ExprError(); |
| 11598 | } |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11599 | } |
| 11600 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 11601 | return Owned(E); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 11602 | } |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 11603 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 11604 | ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11605 | Expr *SubExpr) { |
| 11606 | if (!SubExpr) |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 11607 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 11608 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11609 | return CheckBooleanCondition(SubExpr, Loc); |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 11610 | } |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 11611 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11612 | namespace { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11613 | /// A visitor for rebuilding a call to an __unknown_any expression |
| 11614 | /// to have an appropriate type. |
| 11615 | struct RebuildUnknownAnyFunction |
| 11616 | : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { |
| 11617 | |
| 11618 | Sema &S; |
| 11619 | |
| 11620 | RebuildUnknownAnyFunction(Sema &S) : S(S) {} |
| 11621 | |
| 11622 | ExprResult VisitStmt(Stmt *S) { |
| 11623 | llvm_unreachable("unexpected statement!"); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11624 | } |
| 11625 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11626 | ExprResult VisitExpr(Expr *E) { |
| 11627 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) |
| 11628 | << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11629 | return ExprError(); |
| 11630 | } |
| 11631 | |
| 11632 | /// Rebuild an expression which simply semantically wraps another |
| 11633 | /// expression which it shares the type and value kind of. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11634 | template <class T> ExprResult rebuildSugarExpr(T *E) { |
| 11635 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 11636 | if (SubResult.isInvalid()) return ExprError(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11637 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11638 | Expr *SubExpr = SubResult.take(); |
| 11639 | E->setSubExpr(SubExpr); |
| 11640 | E->setType(SubExpr->getType()); |
| 11641 | E->setValueKind(SubExpr->getValueKind()); |
| 11642 | assert(E->getObjectKind() == OK_Ordinary); |
| 11643 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11644 | } |
| 11645 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11646 | ExprResult VisitParenExpr(ParenExpr *E) { |
| 11647 | return rebuildSugarExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11648 | } |
| 11649 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11650 | ExprResult VisitUnaryExtension(UnaryOperator *E) { |
| 11651 | return rebuildSugarExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11652 | } |
| 11653 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11654 | ExprResult VisitUnaryAddrOf(UnaryOperator *E) { |
| 11655 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 11656 | if (SubResult.isInvalid()) return ExprError(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11657 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11658 | Expr *SubExpr = SubResult.take(); |
| 11659 | E->setSubExpr(SubExpr); |
| 11660 | E->setType(S.Context.getPointerType(SubExpr->getType())); |
| 11661 | assert(E->getValueKind() == VK_RValue); |
| 11662 | assert(E->getObjectKind() == OK_Ordinary); |
| 11663 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11664 | } |
| 11665 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11666 | ExprResult resolveDecl(Expr *E, ValueDecl *VD) { |
| 11667 | if (!isa<FunctionDecl>(VD)) return VisitExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11668 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11669 | E->setType(VD->getType()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11670 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11671 | assert(E->getValueKind() == VK_RValue); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 11672 | if (S.getLangOpts().CPlusPlus && |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11673 | !(isa<CXXMethodDecl>(VD) && |
| 11674 | cast<CXXMethodDecl>(VD)->isInstance())) |
| 11675 | E->setValueKind(VK_LValue); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11676 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11677 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11678 | } |
| 11679 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11680 | ExprResult VisitMemberExpr(MemberExpr *E) { |
| 11681 | return resolveDecl(E, E->getMemberDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11682 | } |
| 11683 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11684 | ExprResult VisitDeclRefExpr(DeclRefExpr *E) { |
| 11685 | return resolveDecl(E, E->getDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11686 | } |
| 11687 | }; |
| 11688 | } |
| 11689 | |
| 11690 | /// Given a function expression of unknown-any type, try to rebuild it |
| 11691 | /// to have a function type. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11692 | static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { |
| 11693 | ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); |
| 11694 | if (Result.isInvalid()) return ExprError(); |
| 11695 | return S.DefaultFunctionArrayConversion(Result.take()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11696 | } |
| 11697 | |
| 11698 | namespace { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11699 | /// A visitor for rebuilding an expression of type __unknown_anytype |
| 11700 | /// into one which resolves the type directly on the referring |
| 11701 | /// expression. Strict preservation of the original source |
| 11702 | /// structure is not a goal. |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11703 | struct RebuildUnknownAnyExpr |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11704 | : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11705 | |
| 11706 | Sema &S; |
| 11707 | |
| 11708 | /// The current destination type. |
| 11709 | QualType DestType; |
| 11710 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11711 | RebuildUnknownAnyExpr(Sema &S, QualType CastType) |
| 11712 | : S(S), DestType(CastType) {} |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11713 | |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11714 | ExprResult VisitStmt(Stmt *S) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11715 | llvm_unreachable("unexpected statement!"); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11716 | } |
| 11717 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11718 | ExprResult VisitExpr(Expr *E) { |
| 11719 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) |
| 11720 | << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11721 | return ExprError(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11722 | } |
| 11723 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11724 | ExprResult VisitCallExpr(CallExpr *E); |
| 11725 | ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11726 | |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11727 | /// Rebuild an expression which simply semantically wraps another |
| 11728 | /// expression which it shares the type and value kind of. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11729 | template <class T> ExprResult rebuildSugarExpr(T *E) { |
| 11730 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 11731 | if (SubResult.isInvalid()) return ExprError(); |
| 11732 | Expr *SubExpr = SubResult.take(); |
| 11733 | E->setSubExpr(SubExpr); |
| 11734 | E->setType(SubExpr->getType()); |
| 11735 | E->setValueKind(SubExpr->getValueKind()); |
| 11736 | assert(E->getObjectKind() == OK_Ordinary); |
| 11737 | return E; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11738 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11739 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11740 | ExprResult VisitParenExpr(ParenExpr *E) { |
| 11741 | return rebuildSugarExpr(E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11742 | } |
| 11743 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11744 | ExprResult VisitUnaryExtension(UnaryOperator *E) { |
| 11745 | return rebuildSugarExpr(E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11746 | } |
| 11747 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11748 | ExprResult VisitUnaryAddrOf(UnaryOperator *E) { |
| 11749 | const PointerType *Ptr = DestType->getAs<PointerType>(); |
| 11750 | if (!Ptr) { |
| 11751 | S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) |
| 11752 | << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11753 | return ExprError(); |
| 11754 | } |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11755 | assert(E->getValueKind() == VK_RValue); |
| 11756 | assert(E->getObjectKind() == OK_Ordinary); |
| 11757 | E->setType(DestType); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11758 | |
| 11759 | // Build the sub-expression as if it were an object of the pointee type. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11760 | DestType = Ptr->getPointeeType(); |
| 11761 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 11762 | if (SubResult.isInvalid()) return ExprError(); |
| 11763 | E->setSubExpr(SubResult.take()); |
| 11764 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11765 | } |
| 11766 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11767 | ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11768 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11769 | ExprResult resolveDecl(Expr *E, ValueDecl *VD); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11770 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11771 | ExprResult VisitMemberExpr(MemberExpr *E) { |
| 11772 | return resolveDecl(E, E->getMemberDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11773 | } |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11774 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11775 | ExprResult VisitDeclRefExpr(DeclRefExpr *E) { |
| 11776 | return resolveDecl(E, E->getDecl()); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11777 | } |
| 11778 | }; |
| 11779 | } |
| 11780 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11781 | /// Rebuilds a call expression which yielded __unknown_anytype. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11782 | ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { |
| 11783 | Expr *CalleeExpr = E->getCallee(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11784 | |
| 11785 | enum FnKind { |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 11786 | FK_MemberFunction, |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11787 | FK_FunctionPointer, |
| 11788 | FK_BlockPointer |
| 11789 | }; |
| 11790 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11791 | FnKind Kind; |
| 11792 | QualType CalleeType = CalleeExpr->getType(); |
| 11793 | if (CalleeType == S.Context.BoundMemberTy) { |
| 11794 | assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); |
| 11795 | Kind = FK_MemberFunction; |
| 11796 | CalleeType = Expr::findBoundMemberType(CalleeExpr); |
| 11797 | } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { |
| 11798 | CalleeType = Ptr->getPointeeType(); |
| 11799 | Kind = FK_FunctionPointer; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11800 | } else { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11801 | CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); |
| 11802 | Kind = FK_BlockPointer; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11803 | } |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11804 | const FunctionType *FnType = CalleeType->castAs<FunctionType>(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11805 | |
| 11806 | // Verify that this is a legal result type of a function. |
| 11807 | if (DestType->isArrayType() || DestType->isFunctionType()) { |
| 11808 | unsigned diagID = diag::err_func_returning_array_function; |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11809 | if (Kind == FK_BlockPointer) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11810 | diagID = diag::err_block_returning_array_function; |
| 11811 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11812 | S.Diag(E->getExprLoc(), diagID) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11813 | << DestType->isFunctionType() << DestType; |
| 11814 | return ExprError(); |
| 11815 | } |
| 11816 | |
| 11817 | // Otherwise, go ahead and set DestType as the call's result. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11818 | E->setType(DestType.getNonLValueExprType(S.Context)); |
| 11819 | E->setValueKind(Expr::getValueKindForType(DestType)); |
| 11820 | assert(E->getObjectKind() == OK_Ordinary); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11821 | |
| 11822 | // Rebuild the function type, replacing the result type with DestType. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11823 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType)) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11824 | DestType = S.Context.getFunctionType(DestType, |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11825 | Proto->arg_type_begin(), |
| 11826 | Proto->getNumArgs(), |
| 11827 | Proto->getExtProtoInfo()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11828 | else |
| 11829 | DestType = S.Context.getFunctionNoProtoType(DestType, |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11830 | FnType->getExtInfo()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11831 | |
| 11832 | // Rebuild the appropriate pointer-to-function type. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11833 | switch (Kind) { |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 11834 | case FK_MemberFunction: |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11835 | // Nothing to do. |
| 11836 | break; |
| 11837 | |
| 11838 | case FK_FunctionPointer: |
| 11839 | DestType = S.Context.getPointerType(DestType); |
| 11840 | break; |
| 11841 | |
| 11842 | case FK_BlockPointer: |
| 11843 | DestType = S.Context.getBlockPointerType(DestType); |
| 11844 | break; |
| 11845 | } |
| 11846 | |
| 11847 | // Finally, we can recurse. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11848 | ExprResult CalleeResult = Visit(CalleeExpr); |
| 11849 | if (!CalleeResult.isUsable()) return ExprError(); |
| 11850 | E->setCallee(CalleeResult.take()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11851 | |
| 11852 | // Bind a temporary if necessary. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11853 | return S.MaybeBindToTemporary(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11854 | } |
| 11855 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11856 | ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11857 | // Verify that this is a legal result type of a call. |
| 11858 | if (DestType->isArrayType() || DestType->isFunctionType()) { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11859 | S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11860 | << DestType->isFunctionType() << DestType; |
| 11861 | return ExprError(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11862 | } |
| 11863 | |
John McCall | 48218c6 | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 11864 | // Rewrite the method result type if available. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11865 | if (ObjCMethodDecl *Method = E->getMethodDecl()) { |
| 11866 | assert(Method->getResultType() == S.Context.UnknownAnyTy); |
| 11867 | Method->setResultType(DestType); |
John McCall | 48218c6 | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 11868 | } |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11869 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11870 | // Change the type of the message. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11871 | E->setType(DestType.getNonReferenceType()); |
| 11872 | E->setValueKind(Expr::getValueKindForType(DestType)); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11873 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11874 | return S.MaybeBindToTemporary(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11875 | } |
| 11876 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11877 | ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11878 | // The only case we should ever see here is a function-to-pointer decay. |
Sean Callanan | ba66c6c | 2012-03-06 23:12:57 +0000 | [diff] [blame] | 11879 | if (E->getCastKind() == CK_FunctionToPointerDecay) { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11880 | assert(E->getValueKind() == VK_RValue); |
| 11881 | assert(E->getObjectKind() == OK_Ordinary); |
| 11882 | |
| 11883 | E->setType(DestType); |
| 11884 | |
| 11885 | // Rebuild the sub-expression as the pointee (function) type. |
| 11886 | DestType = DestType->castAs<PointerType>()->getPointeeType(); |
| 11887 | |
| 11888 | ExprResult Result = Visit(E->getSubExpr()); |
| 11889 | if (!Result.isUsable()) return ExprError(); |
| 11890 | |
| 11891 | E->setSubExpr(Result.take()); |
| 11892 | return S.Owned(E); |
Sean Callanan | ba66c6c | 2012-03-06 23:12:57 +0000 | [diff] [blame] | 11893 | } else if (E->getCastKind() == CK_LValueToRValue) { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11894 | assert(E->getValueKind() == VK_RValue); |
| 11895 | assert(E->getObjectKind() == OK_Ordinary); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11896 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11897 | assert(isa<BlockPointerType>(E->getType())); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11898 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11899 | E->setType(DestType); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11900 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11901 | // The sub-expression has to be a lvalue reference, so rebuild it as such. |
| 11902 | DestType = S.Context.getLValueReferenceType(DestType); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11903 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11904 | ExprResult Result = Visit(E->getSubExpr()); |
| 11905 | if (!Result.isUsable()) return ExprError(); |
| 11906 | |
| 11907 | E->setSubExpr(Result.take()); |
| 11908 | return S.Owned(E); |
Sean Callanan | ba66c6c | 2012-03-06 23:12:57 +0000 | [diff] [blame] | 11909 | } else { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11910 | llvm_unreachable("Unhandled cast type!"); |
| 11911 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11912 | } |
| 11913 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11914 | ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { |
| 11915 | ExprValueKind ValueKind = VK_LValue; |
| 11916 | QualType Type = DestType; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11917 | |
| 11918 | // We know how to make this work for certain kinds of decls: |
| 11919 | |
| 11920 | // - functions |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11921 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { |
| 11922 | if (const PointerType *Ptr = Type->getAs<PointerType>()) { |
| 11923 | DestType = Ptr->getPointeeType(); |
| 11924 | ExprResult Result = resolveDecl(E, VD); |
| 11925 | if (Result.isInvalid()) return ExprError(); |
| 11926 | return S.ImpCastExprToType(Result.take(), Type, |
John McCall | a19950e | 2011-08-10 04:12:23 +0000 | [diff] [blame] | 11927 | CK_FunctionToPointerDecay, VK_RValue); |
| 11928 | } |
| 11929 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11930 | if (!Type->isFunctionType()) { |
| 11931 | S.Diag(E->getExprLoc(), diag::err_unknown_any_function) |
| 11932 | << VD << E->getSourceRange(); |
John McCall | a19950e | 2011-08-10 04:12:23 +0000 | [diff] [blame] | 11933 | return ExprError(); |
| 11934 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11935 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11936 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) |
| 11937 | if (MD->isInstance()) { |
| 11938 | ValueKind = VK_RValue; |
| 11939 | Type = S.Context.BoundMemberTy; |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 11940 | } |
| 11941 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11942 | // Function references aren't l-values in C. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 11943 | if (!S.getLangOpts().CPlusPlus) |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11944 | ValueKind = VK_RValue; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11945 | |
| 11946 | // - variables |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11947 | } else if (isa<VarDecl>(VD)) { |
| 11948 | if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { |
| 11949 | Type = RefTy->getPointeeType(); |
| 11950 | } else if (Type->isFunctionType()) { |
| 11951 | S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) |
| 11952 | << VD << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11953 | return ExprError(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11954 | } |
| 11955 | |
| 11956 | // - nothing else |
| 11957 | } else { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11958 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) |
| 11959 | << VD << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11960 | return ExprError(); |
| 11961 | } |
| 11962 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11963 | VD->setType(DestType); |
| 11964 | E->setType(Type); |
| 11965 | E->setValueKind(ValueKind); |
| 11966 | return S.Owned(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11967 | } |
| 11968 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11969 | /// Check a cast of an unknown-any type. We intentionally only |
| 11970 | /// trigger this for C-style casts. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11971 | ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, |
| 11972 | Expr *CastExpr, CastKind &CastKind, |
| 11973 | ExprValueKind &VK, CXXCastPath &Path) { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11974 | // Rewrite the casted expression from scratch. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11975 | ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11976 | if (!result.isUsable()) return ExprError(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11977 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11978 | CastExpr = result.take(); |
| 11979 | VK = CastExpr->getValueKind(); |
| 11980 | CastKind = CK_NoOp; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11981 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11982 | return CastExpr; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11983 | } |
| 11984 | |
Douglas Gregor | f1d1ca5 | 2011-12-01 01:37:36 +0000 | [diff] [blame] | 11985 | ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { |
| 11986 | return RebuildUnknownAnyExpr(*this, ToType).Visit(E); |
| 11987 | } |
| 11988 | |
John McCall | b8a8de3 | 2012-11-14 00:49:39 +0000 | [diff] [blame] | 11989 | QualType Sema::checkUnknownAnyArg(Expr *&arg) { |
| 11990 | // Filter out placeholders. |
| 11991 | ExprResult argR = CheckPlaceholderExpr(arg); |
| 11992 | if (argR.isInvalid()) return QualType(); |
| 11993 | arg = argR.take(); |
| 11994 | |
| 11995 | // If the argument is an explicit cast, use that exact type as the |
| 11996 | // effective parameter type. |
| 11997 | if (ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg)) { |
| 11998 | return castArg->getTypeAsWritten(); |
| 11999 | } |
| 12000 | |
| 12001 | // Otherwise, try to pass by value. |
| 12002 | return arg->getType().getUnqualifiedType(); |
| 12003 | } |
| 12004 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12005 | static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { |
| 12006 | Expr *orig = E; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12007 | unsigned diagID = diag::err_uncasted_use_of_unknown_any; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12008 | while (true) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12009 | E = E->IgnoreParenImpCasts(); |
| 12010 | if (CallExpr *call = dyn_cast<CallExpr>(E)) { |
| 12011 | E = call->getCallee(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12012 | diagID = diag::err_uncasted_call_of_unknown_any; |
| 12013 | } else { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12014 | break; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12015 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12016 | } |
| 12017 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12018 | SourceLocation loc; |
| 12019 | NamedDecl *d; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12020 | if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12021 | loc = ref->getLocation(); |
| 12022 | d = ref->getDecl(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12023 | } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12024 | loc = mem->getMemberLoc(); |
| 12025 | d = mem->getMemberDecl(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12026 | } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12027 | diagID = diag::err_uncasted_call_of_unknown_any; |
Argyrios Kyrtzidis | 2071808 | 2011-10-03 06:36:51 +0000 | [diff] [blame] | 12028 | loc = msg->getSelectorStartLoc(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12029 | d = msg->getMethodDecl(); |
John McCall | 819e745 | 2011-08-31 20:57:36 +0000 | [diff] [blame] | 12030 | if (!d) { |
| 12031 | S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) |
| 12032 | << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() |
| 12033 | << orig->getSourceRange(); |
| 12034 | return ExprError(); |
| 12035 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12036 | } else { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12037 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) |
| 12038 | << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 12039 | return ExprError(); |
| 12040 | } |
| 12041 | |
| 12042 | S.Diag(loc, diagID) << d << orig->getSourceRange(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12043 | |
| 12044 | // Never recoverable. |
| 12045 | return ExprError(); |
| 12046 | } |
| 12047 | |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 12048 | /// Check for operands with placeholder types and complain if found. |
| 12049 | /// Returns true if there was an error and no recovery was possible. |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 12050 | ExprResult Sema::CheckPlaceholderExpr(Expr *E) { |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12051 | const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); |
| 12052 | if (!placeholderType) return Owned(E); |
| 12053 | |
| 12054 | switch (placeholderType->getKind()) { |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 12055 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12056 | // Overloaded expressions. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12057 | case BuiltinType::Overload: { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 12058 | // Try to resolve a single function template specialization. |
| 12059 | // This is obligatory. |
| 12060 | ExprResult result = Owned(E); |
| 12061 | if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { |
| 12062 | return result; |
| 12063 | |
| 12064 | // If that failed, try to recover with a call. |
| 12065 | } else { |
| 12066 | tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), |
| 12067 | /*complain*/ true); |
| 12068 | return result; |
| 12069 | } |
| 12070 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12071 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 12072 | // Bound member functions. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12073 | case BuiltinType::BoundMember: { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 12074 | ExprResult result = Owned(E); |
| 12075 | tryToRecoverWithCall(result, PDiag(diag::err_bound_member_function), |
| 12076 | /*complain*/ true); |
| 12077 | return result; |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12078 | } |
| 12079 | |
| 12080 | // ARC unbridged casts. |
| 12081 | case BuiltinType::ARCUnbridgedCast: { |
| 12082 | Expr *realCast = stripARCUnbridgedCast(E); |
| 12083 | diagnoseARCUnbridgedCast(realCast); |
| 12084 | return Owned(realCast); |
| 12085 | } |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 12086 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12087 | // Expressions of unknown type. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12088 | case BuiltinType::UnknownAny: |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 12089 | return diagnoseUnknownAnyExpr(*this, E); |
| 12090 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 12091 | // Pseudo-objects. |
| 12092 | case BuiltinType::PseudoObject: |
| 12093 | return checkPseudoObjectRValue(E); |
| 12094 | |
Eli Friedman | a6c66ce | 2012-08-31 00:14:07 +0000 | [diff] [blame] | 12095 | case BuiltinType::BuiltinFn: |
| 12096 | Diag(E->getLocStart(), diag::err_builtin_fn_use); |
| 12097 | return ExprError(); |
| 12098 | |
John McCall | e0a22d0 | 2011-10-18 21:02:43 +0000 | [diff] [blame] | 12099 | // Everything else should be impossible. |
| 12100 | #define BUILTIN_TYPE(Id, SingletonId) \ |
| 12101 | case BuiltinType::Id: |
| 12102 | #define PLACEHOLDER_TYPE(Id, SingletonId) |
| 12103 | #include "clang/AST/BuiltinTypes.def" |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 12104 | break; |
| 12105 | } |
| 12106 | |
| 12107 | llvm_unreachable("invalid placeholder type!"); |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 12108 | } |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 12109 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12110 | bool Sema::CheckCaseExpression(Expr *E) { |
| 12111 | if (E->isTypeDependent()) |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 12112 | return true; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 12113 | if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) |
| 12114 | return E->getType()->isIntegralOrEnumerationType(); |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 12115 | return false; |
| 12116 | } |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 12117 | |
| 12118 | /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. |
| 12119 | ExprResult |
| 12120 | Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { |
| 12121 | assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && |
| 12122 | "Unknown Objective-C Boolean value!"); |
Fariborz Jahanian | 9617130 | 2012-08-30 18:49:41 +0000 | [diff] [blame] | 12123 | QualType BoolT = Context.ObjCBuiltinBoolTy; |
| 12124 | if (!Context.getBOOLDecl()) { |
Fariborz Jahanian | 1c9a2da | 2012-10-16 17:08:11 +0000 | [diff] [blame] | 12125 | LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc, |
Fariborz Jahanian | 9617130 | 2012-08-30 18:49:41 +0000 | [diff] [blame] | 12126 | Sema::LookupOrdinaryName); |
Fariborz Jahanian | 9f5933a | 2012-10-16 16:21:20 +0000 | [diff] [blame] | 12127 | if (LookupName(Result, getCurScope()) && Result.isSingleResult()) { |
Fariborz Jahanian | 9617130 | 2012-08-30 18:49:41 +0000 | [diff] [blame] | 12128 | NamedDecl *ND = Result.getFoundDecl(); |
| 12129 | if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND)) |
| 12130 | Context.setBOOLDecl(TD); |
| 12131 | } |
| 12132 | } |
| 12133 | if (Context.getBOOLDecl()) |
| 12134 | BoolT = Context.getBOOLType(); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 12135 | return Owned(new (Context) ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, |
Fariborz Jahanian | 9617130 | 2012-08-30 18:49:41 +0000 | [diff] [blame] | 12136 | BoolT, OpLoc)); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 12137 | } |