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" |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 15 | #include "clang/Sema/DelayedDiagnostic.h" |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 16 | #include "clang/Sema/Initialization.h" |
| 17 | #include "clang/Sema/Lookup.h" |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 18 | #include "clang/Sema/ScopeInfo.h" |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 19 | #include "clang/Sema/AnalysisBasedWarnings.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/ASTContext.h" |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTConsumer.h" |
Sebastian Redl | f79a719 | 2011-04-29 08:19:30 +0000 | [diff] [blame] | 22 | #include "clang/AST/ASTMutationListener.h" |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 23 | #include "clang/AST/CXXInheritance.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 24 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 25 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 26 | #include "clang/AST/EvaluatedExprVisitor.h" |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 27 | #include "clang/AST/Expr.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 28 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 29 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 30 | #include "clang/AST/RecursiveASTVisitor.h" |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 31 | #include "clang/AST/TypeLoc.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 32 | #include "clang/Basic/PartialDiagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 33 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 34 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 35 | #include "clang/Lex/LiteralSupport.h" |
| 36 | #include "clang/Lex/Preprocessor.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 37 | #include "clang/Sema/DeclSpec.h" |
| 38 | #include "clang/Sema/Designator.h" |
| 39 | #include "clang/Sema/Scope.h" |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 40 | #include "clang/Sema/ScopeInfo.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 41 | #include "clang/Sema/ParsedTemplate.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" |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 44 | #include "TreeTransform.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 45 | using namespace clang; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 46 | using namespace sema; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 47 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 48 | /// \brief Determine whether the use of this declaration is valid, without |
| 49 | /// emitting diagnostics. |
| 50 | bool Sema::CanUseDecl(NamedDecl *D) { |
| 51 | // See if this is an auto-typed variable whose initializer we are parsing. |
| 52 | if (ParsingInitForAutoVars.count(D)) |
| 53 | return false; |
| 54 | |
| 55 | // See if this is a deleted function. |
| 56 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 57 | if (FD->isDeleted()) |
| 58 | return false; |
| 59 | } |
Sebastian Redl | 28bdb14 | 2011-10-16 18:19:16 +0000 | [diff] [blame] | 60 | |
| 61 | // See if this function is unavailable. |
| 62 | if (D->getAvailability() == AR_Unavailable && |
| 63 | cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) |
| 64 | return false; |
| 65 | |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 66 | return true; |
| 67 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 68 | |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 69 | static AvailabilityResult DiagnoseAvailabilityOfDecl(Sema &S, |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 70 | NamedDecl *D, SourceLocation Loc, |
| 71 | const ObjCInterfaceDecl *UnknownObjCClass) { |
| 72 | // See if this declaration is unavailable or deprecated. |
| 73 | std::string Message; |
| 74 | AvailabilityResult Result = D->getAvailability(&Message); |
Fariborz Jahanian | 39b4fc8 | 2011-11-28 19:45:58 +0000 | [diff] [blame] | 75 | if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) |
| 76 | if (Result == AR_Available) { |
| 77 | const DeclContext *DC = ECD->getDeclContext(); |
| 78 | if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC)) |
| 79 | Result = TheEnumDecl->getAvailability(&Message); |
| 80 | } |
| 81 | |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 82 | switch (Result) { |
| 83 | case AR_Available: |
| 84 | case AR_NotYetIntroduced: |
| 85 | break; |
| 86 | |
| 87 | case AR_Deprecated: |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 88 | S.EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass); |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 89 | break; |
| 90 | |
| 91 | case AR_Unavailable: |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 92 | if (S.getCurContextAvailability() != AR_Unavailable) { |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 93 | if (Message.empty()) { |
| 94 | if (!UnknownObjCClass) |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 95 | S.Diag(Loc, diag::err_unavailable) << D->getDeclName(); |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 96 | else |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 97 | S.Diag(Loc, diag::warn_unavailable_fwdclass_message) |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 98 | << D->getDeclName(); |
| 99 | } |
| 100 | else |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 101 | S.Diag(Loc, diag::err_unavailable_message) |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 102 | << D->getDeclName() << Message; |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 103 | S.Diag(D->getLocation(), diag::note_unavailable_here) |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 104 | << isa<FunctionDecl>(D) << false; |
| 105 | } |
| 106 | break; |
| 107 | } |
| 108 | return Result; |
| 109 | } |
| 110 | |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 111 | /// \brief Emit a note explaining that this function is deleted or unavailable. |
| 112 | void Sema::NoteDeletedFunction(FunctionDecl *Decl) { |
| 113 | CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); |
| 114 | |
Richard Smith | 5bdaac5 | 2012-04-02 20:59:25 +0000 | [diff] [blame] | 115 | if (Method && Method->isDeleted() && !Method->isDeletedAsWritten()) { |
| 116 | // If the method was explicitly defaulted, point at that declaration. |
| 117 | if (!Method->isImplicit()) |
| 118 | Diag(Decl->getLocation(), diag::note_implicitly_deleted); |
| 119 | |
| 120 | // Try to diagnose why this special member function was implicitly |
| 121 | // deleted. This might fail, if that reason no longer applies. |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 122 | CXXSpecialMember CSM = getSpecialMember(Method); |
Richard Smith | 5bdaac5 | 2012-04-02 20:59:25 +0000 | [diff] [blame] | 123 | if (CSM != CXXInvalid) |
| 124 | ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true); |
| 125 | |
| 126 | return; |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | Diag(Decl->getLocation(), diag::note_unavailable_here) |
| 130 | << 1 << Decl->isDeleted(); |
| 131 | } |
| 132 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 133 | /// \brief Determine whether the use of this declaration is valid, and |
| 134 | /// emit any corresponding diagnostics. |
| 135 | /// |
| 136 | /// This routine diagnoses various problems with referencing |
| 137 | /// declarations that can occur when using a declaration. For example, |
| 138 | /// it might warn if a deprecated or unavailable declaration is being |
| 139 | /// used, or produce an error (and return true) if a C++0x deleted |
| 140 | /// function is being used. |
| 141 | /// |
| 142 | /// \returns true if there was an error (this declaration cannot be |
| 143 | /// referenced), false otherwise. |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 144 | /// |
Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 145 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 146 | const ObjCInterfaceDecl *UnknownObjCClass) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 147 | if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) { |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 148 | // If there were any diagnostics suppressed by template argument deduction, |
| 149 | // emit them now. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 150 | llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >::iterator |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 151 | Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); |
| 152 | if (Pos != SuppressedDiagnostics.end()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 153 | SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second; |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 154 | for (unsigned I = 0, N = Suppressed.size(); I != N; ++I) |
| 155 | Diag(Suppressed[I].first, Suppressed[I].second); |
| 156 | |
| 157 | // 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] | 158 | // them again for this specialization. However, we don't obsolete this |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 159 | // entry from the table, because we want to avoid ever emitting these |
| 160 | // diagnostics again. |
| 161 | Suppressed.clear(); |
| 162 | } |
| 163 | } |
| 164 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 165 | // 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] | 166 | if (ParsingInitForAutoVars.count(D)) { |
| 167 | Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) |
| 168 | << D->getDeclName(); |
| 169 | return true; |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 172 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 173 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 174 | if (FD->isDeleted()) { |
| 175 | Diag(Loc, diag::err_deleted_function_use); |
Richard Smith | 6c4c36c | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 176 | NoteDeletedFunction(FD); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 177 | return true; |
| 178 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 179 | } |
Ted Kremenek | d6cf912 | 2012-02-10 02:45:47 +0000 | [diff] [blame] | 180 | DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 181 | |
Anders Carlsson | 2127ecc | 2010-10-22 23:37:08 +0000 | [diff] [blame] | 182 | // Warn if this is used but marked unused. |
Fariborz Jahanian | 0f32caf | 2011-09-29 22:45:21 +0000 | [diff] [blame] | 183 | if (D->hasAttr<UnusedAttr>()) |
Anders Carlsson | 2127ecc | 2010-10-22 23:37:08 +0000 | [diff] [blame] | 184 | Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 185 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 188 | /// \brief Retrieve the message suffix that should be added to a |
| 189 | /// diagnostic complaining about the given function being deleted or |
| 190 | /// unavailable. |
| 191 | std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) { |
| 192 | // FIXME: C++0x implicitly-deleted special member functions could be |
| 193 | // detected here so that we could improve diagnostics to say, e.g., |
| 194 | // "base class 'A' had a deleted copy constructor". |
| 195 | if (FD->isDeleted()) |
| 196 | return std::string(); |
| 197 | |
| 198 | std::string Message; |
| 199 | if (FD->getAvailability(&Message)) |
| 200 | return ": " + Message; |
| 201 | |
| 202 | return std::string(); |
| 203 | } |
| 204 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 205 | /// DiagnoseSentinelCalls - This routine checks whether a call or |
| 206 | /// message-send is to a declaration with the sentinel attribute, and |
| 207 | /// if so, it checks that the requirements of the sentinel are |
| 208 | /// satisfied. |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 209 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 210 | Expr **args, unsigned numArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 211 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 212 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 213 | return; |
Douglas Gregor | 92e986e | 2010-04-22 16:44:27 +0000 | [diff] [blame] | 214 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 215 | // The number of formal parameters of the declaration. |
| 216 | unsigned numFormalParams; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 217 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 218 | // The kind of declaration. This is also an index into a %select in |
| 219 | // the diagnostic. |
| 220 | enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; |
| 221 | |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 222 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 223 | numFormalParams = MD->param_size(); |
| 224 | calleeType = CT_Method; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 225 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 226 | numFormalParams = FD->param_size(); |
| 227 | calleeType = CT_Function; |
| 228 | } else if (isa<VarDecl>(D)) { |
| 229 | QualType type = cast<ValueDecl>(D)->getType(); |
| 230 | const FunctionType *fn = 0; |
| 231 | if (const PointerType *ptr = type->getAs<PointerType>()) { |
| 232 | fn = ptr->getPointeeType()->getAs<FunctionType>(); |
| 233 | if (!fn) return; |
| 234 | calleeType = CT_Function; |
| 235 | } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { |
| 236 | fn = ptr->getPointeeType()->castAs<FunctionType>(); |
| 237 | calleeType = CT_Block; |
| 238 | } else { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 239 | return; |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 240 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 241 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 242 | if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { |
| 243 | numFormalParams = proto->getNumArgs(); |
| 244 | } else { |
| 245 | numFormalParams = 0; |
| 246 | } |
| 247 | } else { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 248 | return; |
| 249 | } |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 250 | |
| 251 | // "nullPos" is the number of formal parameters at the end which |
| 252 | // effectively count as part of the variadic arguments. This is |
| 253 | // useful if you would prefer to not have *any* formal parameters, |
| 254 | // but the language forces you to have at least one. |
| 255 | unsigned nullPos = attr->getNullPos(); |
| 256 | assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); |
| 257 | numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); |
| 258 | |
| 259 | // The number of arguments which should follow the sentinel. |
| 260 | unsigned numArgsAfterSentinel = attr->getSentinel(); |
| 261 | |
| 262 | // If there aren't enough arguments for all the formal parameters, |
| 263 | // the sentinel, and the args after the sentinel, complain. |
| 264 | if (numArgs < numFormalParams + numArgsAfterSentinel + 1) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 265 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 266 | Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 267 | return; |
| 268 | } |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 269 | |
| 270 | // Otherwise, find the sentinel expression. |
| 271 | Expr *sentinelExpr = args[numArgs - numArgsAfterSentinel - 1]; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 272 | if (!sentinelExpr) return; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 273 | if (sentinelExpr->isValueDependent()) return; |
Argyrios Kyrtzidis | 8deabc1 | 2012-02-03 05:58:16 +0000 | [diff] [blame] | 274 | if (Context.isSentinelNullExpr(sentinelExpr)) return; |
John McCall | 8eb662e | 2010-05-06 23:53:00 +0000 | [diff] [blame] | 275 | |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 276 | // Pick a reasonable string to insert. Optimistically use 'nil' or |
| 277 | // 'NULL' if those are actually defined in the context. Only use |
| 278 | // 'nil' for ObjC methods, where it's much more likely that the |
| 279 | // variadic arguments form a list of object pointers. |
| 280 | SourceLocation MissingNilLoc |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 281 | = PP.getLocForEndOfToken(sentinelExpr->getLocEnd()); |
| 282 | std::string NullValue; |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 283 | if (calleeType == CT_Method && |
| 284 | PP.getIdentifierInfo("nil")->hasMacroDefinition()) |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 285 | NullValue = "nil"; |
| 286 | else if (PP.getIdentifierInfo("NULL")->hasMacroDefinition()) |
| 287 | NullValue = "NULL"; |
Douglas Gregor | f78c4e5 | 2011-07-30 08:57:03 +0000 | [diff] [blame] | 288 | else |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 289 | NullValue = "(void*) 0"; |
Eli Friedman | 39834ba | 2011-09-27 23:46:37 +0000 | [diff] [blame] | 290 | |
| 291 | if (MissingNilLoc.isInvalid()) |
| 292 | Diag(Loc, diag::warn_missing_sentinel) << calleeType; |
| 293 | else |
| 294 | Diag(MissingNilLoc, diag::warn_missing_sentinel) |
| 295 | << calleeType |
| 296 | << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); |
John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 297 | Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 298 | } |
| 299 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 300 | SourceRange Sema::getExprRange(Expr *E) const { |
| 301 | return E ? E->getSourceRange() : SourceRange(); |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 304 | //===----------------------------------------------------------------------===// |
| 305 | // Standard Promotions and Conversions |
| 306 | //===----------------------------------------------------------------------===// |
| 307 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 308 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 309 | ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 310 | // Handle any placeholder expressions which made it here. |
| 311 | if (E->getType()->isPlaceholderType()) { |
| 312 | ExprResult result = CheckPlaceholderExpr(E); |
| 313 | if (result.isInvalid()) return ExprError(); |
| 314 | E = result.take(); |
| 315 | } |
| 316 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 317 | QualType Ty = E->getType(); |
| 318 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 319 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 320 | if (Ty->isFunctionType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 321 | E = ImpCastExprToType(E, Context.getPointerType(Ty), |
| 322 | CK_FunctionToPointerDecay).take(); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 323 | else if (Ty->isArrayType()) { |
| 324 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 325 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 326 | // type 'array of type' is converted to an expression that has type 'pointer |
| 327 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 328 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 329 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 330 | // |
| 331 | // C++ 4.2p1: |
| 332 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 333 | // T" can be converted to an rvalue of type "pointer to T". |
| 334 | // |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 335 | if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 336 | E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 337 | CK_ArrayToPointerDecay).take(); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 338 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 339 | return Owned(E); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Argyrios Kyrtzidis | 8a285ae | 2011-04-26 17:41:22 +0000 | [diff] [blame] | 342 | static void CheckForNullPointerDereference(Sema &S, Expr *E) { |
| 343 | // Check to see if we are dereferencing a null pointer. If so, |
| 344 | // and if not volatile-qualified, this is undefined behavior that the |
| 345 | // optimizer will delete, so warn about it. People sometimes try to use this |
| 346 | // to get a deterministic trap and are surprised by clang's behavior. This |
| 347 | // only handles the pattern "*null", which is a very syntactic check. |
| 348 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts())) |
| 349 | if (UO->getOpcode() == UO_Deref && |
| 350 | UO->getSubExpr()->IgnoreParenCasts()-> |
| 351 | isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) && |
| 352 | !UO->getType().isVolatileQualified()) { |
| 353 | S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, |
| 354 | S.PDiag(diag::warn_indirection_through_null) |
| 355 | << UO->getSubExpr()->getSourceRange()); |
| 356 | S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, |
| 357 | S.PDiag(diag::note_indirection_through_null)); |
| 358 | } |
| 359 | } |
| 360 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 361 | ExprResult Sema::DefaultLvalueConversion(Expr *E) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 362 | // Handle any placeholder expressions which made it here. |
| 363 | if (E->getType()->isPlaceholderType()) { |
| 364 | ExprResult result = CheckPlaceholderExpr(E); |
| 365 | if (result.isInvalid()) return ExprError(); |
| 366 | E = result.take(); |
| 367 | } |
| 368 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 369 | // C++ [conv.lval]p1: |
| 370 | // A glvalue of a non-function, non-array type T can be |
| 371 | // converted to a prvalue. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 372 | if (!E->isGLValue()) return Owned(E); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 373 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 374 | QualType T = E->getType(); |
| 375 | assert(!T.isNull() && "r-value conversion on typeless expression?"); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 376 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 377 | // We don't want to throw lvalue-to-rvalue casts on top of |
| 378 | // expressions of certain types in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 379 | if (getLangOpts().CPlusPlus && |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 380 | (E->getType() == Context.OverloadTy || |
| 381 | T->isDependentType() || |
| 382 | T->isRecordType())) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 383 | return Owned(E); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 384 | |
| 385 | // The C standard is actually really unclear on this point, and |
| 386 | // DR106 tells us what the result should be but not why. It's |
| 387 | // generally best to say that void types just doesn't undergo |
| 388 | // lvalue-to-rvalue at all. Note that expressions of unqualified |
| 389 | // 'void' type are never l-values, but qualified void can be. |
| 390 | if (T->isVoidType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 391 | return Owned(E); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 392 | |
Argyrios Kyrtzidis | 8a285ae | 2011-04-26 17:41:22 +0000 | [diff] [blame] | 393 | CheckForNullPointerDereference(*this, E); |
| 394 | |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 395 | // C++ [conv.lval]p1: |
| 396 | // [...] If T is a non-class type, the type of the prvalue is the |
| 397 | // cv-unqualified version of T. Otherwise, the type of the |
| 398 | // rvalue is T. |
| 399 | // |
| 400 | // C99 6.3.2.1p2: |
| 401 | // If the lvalue has qualified type, the value has the unqualified |
| 402 | // version of the type of the lvalue; otherwise, the value has the |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 403 | // type of the lvalue. |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 404 | if (T.hasQualifiers()) |
| 405 | T = T.getUnqualifiedType(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 406 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 407 | UpdateMarkingForLValueToRValue(E); |
| 408 | |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 409 | ExprResult Res = Owned(ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, |
| 410 | E, 0, VK_RValue)); |
| 411 | |
Douglas Gregor | f7ecc30 | 2012-04-12 17:51:55 +0000 | [diff] [blame] | 412 | // C11 6.3.2.1p2: |
| 413 | // ... if the lvalue has atomic type, the value has the non-atomic version |
| 414 | // of the type of the lvalue ... |
| 415 | if (const AtomicType *Atomic = T->getAs<AtomicType>()) { |
| 416 | T = Atomic->getValueType().getUnqualifiedType(); |
| 417 | Res = Owned(ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, |
| 418 | Res.get(), 0, VK_RValue)); |
| 419 | } |
| 420 | |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 421 | return Res; |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 422 | } |
| 423 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 424 | ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) { |
| 425 | ExprResult Res = DefaultFunctionArrayConversion(E); |
| 426 | if (Res.isInvalid()) |
| 427 | return ExprError(); |
| 428 | Res = DefaultLvalueConversion(Res.take()); |
| 429 | if (Res.isInvalid()) |
| 430 | return ExprError(); |
| 431 | return move(Res); |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 435 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 436 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 437 | /// sometimes suppressed. For example, the array->pointer conversion doesn't |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 438 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 439 | /// In these instances, this routine should *not* be called. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 440 | ExprResult Sema::UsualUnaryConversions(Expr *E) { |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 441 | // First, convert to an r-value. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 442 | ExprResult Res = DefaultFunctionArrayLvalueConversion(E); |
| 443 | if (Res.isInvalid()) |
| 444 | return Owned(E); |
| 445 | E = Res.take(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 446 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 447 | QualType Ty = E->getType(); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 448 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 449 | |
| 450 | // Half FP is a bit different: it's a storage-only type, meaning that any |
| 451 | // "use" of it should be promoted to float. |
| 452 | if (Ty->isHalfType()) |
| 453 | return ImpCastExprToType(Res.take(), Context.FloatTy, CK_FloatingCast); |
| 454 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 455 | // Try to perform integral promotions if the object has a theoretically |
| 456 | // promotable type. |
| 457 | if (Ty->isIntegralOrUnscopedEnumerationType()) { |
| 458 | // C99 6.3.1.1p2: |
| 459 | // |
| 460 | // The following may be used in an expression wherever an int or |
| 461 | // unsigned int may be used: |
| 462 | // - an object or expression with an integer type whose integer |
| 463 | // conversion rank is less than or equal to the rank of int |
| 464 | // and unsigned int. |
| 465 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 466 | // |
| 467 | // If an int can represent all values of the original type, the |
| 468 | // value is converted to an int; otherwise, it is converted to an |
| 469 | // unsigned int. These are called the integer promotions. All |
| 470 | // other types are unchanged by the integer promotions. |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 471 | |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 472 | QualType PTy = Context.isPromotableBitField(E); |
| 473 | if (!PTy.isNull()) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 474 | E = ImpCastExprToType(E, PTy, CK_IntegralCast).take(); |
| 475 | return Owned(E); |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 476 | } |
| 477 | if (Ty->isPromotableIntegerType()) { |
| 478 | QualType PT = Context.getPromotedIntegerType(Ty); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 479 | E = ImpCastExprToType(E, PT, CK_IntegralCast).take(); |
| 480 | return Owned(E); |
John McCall | 0ae287a | 2010-12-01 04:43:34 +0000 | [diff] [blame] | 481 | } |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 482 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 483 | return Owned(E); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 486 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 487 | /// do not have a prototype. Arguments that have type float are promoted to |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 488 | /// double. All other argument types are converted by UsualUnaryConversions(). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 489 | ExprResult Sema::DefaultArgumentPromotion(Expr *E) { |
| 490 | QualType Ty = E->getType(); |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 491 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 492 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 493 | ExprResult Res = UsualUnaryConversions(E); |
| 494 | if (Res.isInvalid()) |
| 495 | return Owned(E); |
| 496 | E = Res.take(); |
John McCall | 40c2913 | 2010-12-06 18:36:11 +0000 | [diff] [blame] | 497 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 498 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
Chris Lattner | 4037833 | 2010-05-16 04:01:30 +0000 | [diff] [blame] | 499 | if (Ty->isSpecificBuiltinType(BuiltinType::Float)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 500 | E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).take(); |
| 501 | |
John McCall | 96a914a | 2011-08-27 22:06:17 +0000 | [diff] [blame] | 502 | // C++ performs lvalue-to-rvalue conversion as a default argument |
John McCall | 709bca8 | 2011-08-29 23:55:37 +0000 | [diff] [blame] | 503 | // promotion, even on class types, but note: |
| 504 | // C++11 [conv.lval]p2: |
| 505 | // When an lvalue-to-rvalue conversion occurs in an unevaluated |
| 506 | // operand or a subexpression thereof the value contained in the |
| 507 | // referenced object is not accessed. Otherwise, if the glvalue |
| 508 | // has a class type, the conversion copy-initializes a temporary |
| 509 | // of type T from the glvalue and the result of the conversion |
| 510 | // is a prvalue for the temporary. |
Eli Friedman | 55693fb | 2012-01-17 02:13:45 +0000 | [diff] [blame] | 511 | // FIXME: add some way to gate this entire thing for correctness in |
| 512 | // potentially potentially evaluated contexts. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 513 | if (getLangOpts().CPlusPlus && E->isGLValue() && |
Eli Friedman | 55693fb | 2012-01-17 02:13:45 +0000 | [diff] [blame] | 514 | ExprEvalContexts.back().Context != Unevaluated) { |
| 515 | ExprResult Temp = PerformCopyInitialization( |
| 516 | InitializedEntity::InitializeTemporary(E->getType()), |
| 517 | E->getExprLoc(), |
| 518 | Owned(E)); |
| 519 | if (Temp.isInvalid()) |
| 520 | return ExprError(); |
| 521 | E = Temp.get(); |
John McCall | 5f8d604 | 2011-08-27 01:09:30 +0000 | [diff] [blame] | 522 | } |
| 523 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 524 | return Owned(E); |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 527 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 528 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 529 | /// interfaces passed by value. |
| 530 | ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 531 | FunctionDecl *FDecl) { |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 532 | if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { |
| 533 | // Strip the unbridged-cast placeholder expression off, if applicable. |
| 534 | if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && |
| 535 | (CT == VariadicMethod || |
| 536 | (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { |
| 537 | E = stripARCUnbridgedCast(E); |
| 538 | |
| 539 | // Otherwise, do normal placeholder checking. |
| 540 | } else { |
| 541 | ExprResult ExprRes = CheckPlaceholderExpr(E); |
| 542 | if (ExprRes.isInvalid()) |
| 543 | return ExprError(); |
| 544 | E = ExprRes.take(); |
| 545 | } |
| 546 | } |
Douglas Gregor | 8d5e18c | 2011-06-17 00:15:10 +0000 | [diff] [blame] | 547 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 548 | ExprResult ExprRes = DefaultArgumentPromotion(E); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 549 | if (ExprRes.isInvalid()) |
| 550 | return ExprError(); |
| 551 | E = ExprRes.take(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 552 | |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 553 | // Don't allow one to pass an Objective-C interface to a vararg. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 554 | if (E->getType()->isObjCObjectType() && |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 555 | DiagRuntimeBehavior(E->getLocStart(), 0, |
| 556 | PDiag(diag::err_cannot_pass_objc_interface_to_vararg) |
| 557 | << E->getType() << CT)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 558 | return ExprError(); |
John McCall | 5f8d604 | 2011-08-27 01:09:30 +0000 | [diff] [blame] | 559 | |
Douglas Gregor | b8e778d | 2011-10-14 20:34:19 +0000 | [diff] [blame] | 560 | // Complain about passing non-POD types through varargs. However, don't |
| 561 | // perform this check for incomplete types, which we can get here when we're |
| 562 | // in an unevaluated context. |
| 563 | if (!E->getType()->isIncompleteType() && !E->getType().isPODType(Context)) { |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 564 | // C++0x [expr.call]p7: |
| 565 | // Passing a potentially-evaluated argument of class type (Clause 9) |
| 566 | // having a non-trivial copy constructor, a non-trivial move constructor, |
| 567 | // or a non-trivial destructor, with no corresponding parameter, |
| 568 | // is conditionally-supported with implementation-defined semantics. |
| 569 | bool TrivialEnough = false; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 570 | if (getLangOpts().CPlusPlus0x && !E->getType()->isDependentType()) { |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 571 | if (CXXRecordDecl *Record = E->getType()->getAsCXXRecordDecl()) { |
| 572 | if (Record->hasTrivialCopyConstructor() && |
| 573 | Record->hasTrivialMoveConstructor() && |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 574 | Record->hasTrivialDestructor()) { |
| 575 | DiagRuntimeBehavior(E->getLocStart(), 0, |
| 576 | PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) |
| 577 | << E->getType() << CT); |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 578 | TrivialEnough = true; |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 579 | } |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 580 | } |
| 581 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 582 | |
| 583 | if (!TrivialEnough && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 584 | getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 585 | E->getType()->isObjCLifetimeType()) |
| 586 | TrivialEnough = true; |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 587 | |
| 588 | if (TrivialEnough) { |
| 589 | // Nothing to diagnose. This is okay. |
| 590 | } else if (DiagRuntimeBehavior(E->getLocStart(), 0, |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 591 | PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 592 | << getLangOpts().CPlusPlus0x << E->getType() |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 593 | << CT)) { |
| 594 | // Turn this into a trap. |
| 595 | CXXScopeSpec SS; |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 596 | SourceLocation TemplateKWLoc; |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 597 | UnqualifiedId Name; |
| 598 | Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), |
| 599 | E->getLocStart()); |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 600 | ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, Name, |
| 601 | true, false); |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 602 | if (TrapFn.isInvalid()) |
| 603 | return ExprError(); |
| 604 | |
| 605 | ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), E->getLocStart(), |
| 606 | MultiExprArg(), E->getLocEnd()); |
| 607 | if (Call.isInvalid()) |
| 608 | return ExprError(); |
| 609 | |
| 610 | ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma, |
| 611 | Call.get(), E); |
| 612 | if (Comma.isInvalid()) |
John McCall | 66c2030 | 2011-08-26 18:41:18 +0000 | [diff] [blame] | 613 | return ExprError(); |
Douglas Gregor | 930a9ab | 2011-05-21 19:26:31 +0000 | [diff] [blame] | 614 | E = Comma.get(); |
| 615 | } |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 616 | } |
Fariborz Jahanian | a0e005b | 2012-03-02 17:05:03 +0000 | [diff] [blame] | 617 | // c++ rules are enforced elsewhere. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 618 | if (!getLangOpts().CPlusPlus && |
Fariborz Jahanian | e853bb3 | 2012-03-01 23:42:00 +0000 | [diff] [blame] | 619 | RequireCompleteType(E->getExprLoc(), E->getType(), |
Fariborz Jahanian | a0e005b | 2012-03-02 17:05:03 +0000 | [diff] [blame] | 620 | diag::err_call_incomplete_argument)) |
Fariborz Jahanian | e853bb3 | 2012-03-01 23:42:00 +0000 | [diff] [blame] | 621 | return ExprError(); |
Douglas Gregor | 0fd228d | 2011-05-21 16:27:21 +0000 | [diff] [blame] | 622 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 623 | return Owned(E); |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 624 | } |
| 625 | |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 626 | /// \brief Converts an integer to complex float type. Helper function of |
| 627 | /// UsualArithmeticConversions() |
| 628 | /// |
| 629 | /// \return false if the integer expression is an integer type and is |
| 630 | /// successfully converted to the complex type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 631 | static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, |
| 632 | ExprResult &ComplexExpr, |
| 633 | QualType IntTy, |
| 634 | QualType ComplexTy, |
| 635 | bool SkipCast) { |
| 636 | if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; |
| 637 | if (SkipCast) return false; |
| 638 | if (IntTy->isIntegerType()) { |
| 639 | QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); |
| 640 | IntExpr = S.ImpCastExprToType(IntExpr.take(), fpTy, CK_IntegralToFloating); |
| 641 | IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 642 | CK_FloatingRealToComplex); |
| 643 | } else { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 644 | assert(IntTy->isComplexIntegerType()); |
| 645 | IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 646 | CK_IntegralComplexToFloatingComplex); |
| 647 | } |
| 648 | return false; |
| 649 | } |
| 650 | |
| 651 | /// \brief Takes two complex float types and converts them to the same type. |
| 652 | /// Helper function of UsualArithmeticConversions() |
| 653 | static QualType |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 654 | handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, |
| 655 | ExprResult &RHS, QualType LHSType, |
| 656 | QualType RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 657 | bool IsCompAssign) { |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 658 | int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 659 | |
| 660 | if (order < 0) { |
| 661 | // _Complex float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 662 | if (!IsCompAssign) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 663 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingComplexCast); |
| 664 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 665 | } |
| 666 | if (order > 0) |
| 667 | // _Complex float -> _Complex double |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 668 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast); |
| 669 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | /// \brief Converts otherExpr to complex float and promotes complexExpr if |
| 673 | /// necessary. Helper function of UsualArithmeticConversions() |
| 674 | static QualType handleOtherComplexFloatConversion(Sema &S, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 675 | ExprResult &ComplexExpr, |
| 676 | ExprResult &OtherExpr, |
| 677 | QualType ComplexTy, |
| 678 | QualType OtherTy, |
| 679 | bool ConvertComplexExpr, |
| 680 | bool ConvertOtherExpr) { |
| 681 | int order = S.Context.getFloatingTypeOrder(ComplexTy, OtherTy); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 682 | |
| 683 | // If just the complexExpr is complex, the otherExpr needs to be converted, |
| 684 | // and the complexExpr might need to be promoted. |
| 685 | if (order > 0) { // complexExpr is wider |
| 686 | // float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 687 | if (ConvertOtherExpr) { |
| 688 | QualType fp = cast<ComplexType>(ComplexTy)->getElementType(); |
| 689 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), fp, CK_FloatingCast); |
| 690 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), ComplexTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 691 | CK_FloatingRealToComplex); |
| 692 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 693 | return ComplexTy; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | // otherTy is at least as wide. Find its corresponding complex type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 697 | QualType result = (order == 0 ? ComplexTy : |
| 698 | S.Context.getComplexType(OtherTy)); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 699 | |
| 700 | // double -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 701 | if (ConvertOtherExpr) |
| 702 | OtherExpr = S.ImpCastExprToType(OtherExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 703 | CK_FloatingRealToComplex); |
| 704 | |
| 705 | // _Complex float -> _Complex double |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 706 | if (ConvertComplexExpr && order < 0) |
| 707 | ComplexExpr = S.ImpCastExprToType(ComplexExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 708 | CK_FloatingComplexCast); |
| 709 | |
| 710 | return result; |
| 711 | } |
| 712 | |
| 713 | /// \brief Handle arithmetic conversion with complex types. Helper function of |
| 714 | /// UsualArithmeticConversions() |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 715 | static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, |
| 716 | ExprResult &RHS, QualType LHSType, |
| 717 | QualType RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 718 | bool IsCompAssign) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 719 | // if we have an integer operand, the result is the complex type. |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 720 | if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 721 | /*skipCast*/false)) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 722 | return LHSType; |
| 723 | if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 724 | /*skipCast*/IsCompAssign)) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 725 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 726 | |
| 727 | // This handles complex/complex, complex/float, or float/complex. |
| 728 | // When both operands are complex, the shorter operand is converted to the |
| 729 | // type of the longer, and that is the type of the result. This corresponds |
| 730 | // to what is done when combining two real floating-point operands. |
| 731 | // The fun begins when size promotion occur across type domains. |
| 732 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 733 | // floating-point type, the less precise type is converted, within it's |
| 734 | // real or complex domain, to the precision of the other type. For example, |
| 735 | // when combining a "long double" with a "double _Complex", the |
| 736 | // "double _Complex" is promoted to "long double _Complex". |
| 737 | |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 738 | bool LHSComplexFloat = LHSType->isComplexType(); |
| 739 | bool RHSComplexFloat = RHSType->isComplexType(); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 740 | |
| 741 | // If both are complex, just cast to the more precise type. |
| 742 | if (LHSComplexFloat && RHSComplexFloat) |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 743 | return handleComplexFloatToComplexFloatConverstion(S, LHS, RHS, |
| 744 | LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 745 | IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 746 | |
| 747 | // If only one operand is complex, promote it if necessary and convert the |
| 748 | // other operand to complex. |
| 749 | if (LHSComplexFloat) |
| 750 | return handleOtherComplexFloatConversion( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 751 | S, LHS, RHS, LHSType, RHSType, /*convertComplexExpr*/!IsCompAssign, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 752 | /*convertOtherExpr*/ true); |
| 753 | |
| 754 | assert(RHSComplexFloat); |
| 755 | return handleOtherComplexFloatConversion( |
Richard Trieu | cafd30b | 2011-09-06 18:25:09 +0000 | [diff] [blame] | 756 | S, RHS, LHS, RHSType, LHSType, /*convertComplexExpr*/true, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 757 | /*convertOtherExpr*/ !IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | /// \brief Hande arithmetic conversion from integer to float. Helper function |
| 761 | /// of UsualArithmeticConversions() |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 762 | static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, |
| 763 | ExprResult &IntExpr, |
| 764 | QualType FloatTy, QualType IntTy, |
| 765 | bool ConvertFloat, bool ConvertInt) { |
| 766 | if (IntTy->isIntegerType()) { |
| 767 | if (ConvertInt) |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 768 | // Convert intExpr to the lhs floating point type. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 769 | IntExpr = S.ImpCastExprToType(IntExpr.take(), FloatTy, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 770 | CK_IntegralToFloating); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 771 | return FloatTy; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | // Convert both sides to the appropriate complex float. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 775 | assert(IntTy->isComplexIntegerType()); |
| 776 | QualType result = S.Context.getComplexType(FloatTy); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 777 | |
| 778 | // _Complex int -> _Complex float |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 779 | if (ConvertInt) |
| 780 | IntExpr = S.ImpCastExprToType(IntExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 781 | CK_IntegralComplexToFloatingComplex); |
| 782 | |
| 783 | // float -> _Complex float |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 784 | if (ConvertFloat) |
| 785 | FloatExpr = S.ImpCastExprToType(FloatExpr.take(), result, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 786 | CK_FloatingRealToComplex); |
| 787 | |
| 788 | return result; |
| 789 | } |
| 790 | |
| 791 | /// \brief Handle arithmethic conversion with floating point types. Helper |
| 792 | /// function of UsualArithmeticConversions() |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 793 | static QualType handleFloatConversion(Sema &S, ExprResult &LHS, |
| 794 | ExprResult &RHS, QualType LHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 795 | QualType RHSType, bool IsCompAssign) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 796 | bool LHSFloat = LHSType->isRealFloatingType(); |
| 797 | bool RHSFloat = RHSType->isRealFloatingType(); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 798 | |
| 799 | // If we have two real floating types, convert the smaller operand |
| 800 | // to the bigger result. |
| 801 | if (LHSFloat && RHSFloat) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 802 | int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 803 | if (order > 0) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 804 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingCast); |
| 805 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | assert(order < 0 && "illegal float comparison"); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 809 | if (!IsCompAssign) |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 810 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingCast); |
| 811 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | if (LHSFloat) |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 815 | return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 816 | /*convertFloat=*/!IsCompAssign, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 817 | /*convertInt=*/ true); |
| 818 | assert(RHSFloat); |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 819 | return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 820 | /*convertInt=*/ true, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 821 | /*convertFloat=*/!IsCompAssign); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | /// \brief Handle conversions with GCC complex int extension. Helper function |
Benjamin Kramer | 5cc8680 | 2011-09-06 19:57:14 +0000 | [diff] [blame] | 825 | /// of UsualArithmeticConversions() |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 826 | // FIXME: if the operands are (int, _Complex long), we currently |
| 827 | // don't promote the complex. Also, signedness? |
Benjamin Kramer | 5cc8680 | 2011-09-06 19:57:14 +0000 | [diff] [blame] | 828 | static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, |
| 829 | ExprResult &RHS, QualType LHSType, |
| 830 | QualType RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 831 | bool IsCompAssign) { |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 832 | const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); |
| 833 | const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 834 | |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 835 | if (LHSComplexInt && RHSComplexInt) { |
| 836 | int order = S.Context.getIntegerTypeOrder(LHSComplexInt->getElementType(), |
| 837 | RHSComplexInt->getElementType()); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 838 | assert(order && "inequal types with equal element ordering"); |
| 839 | if (order > 0) { |
| 840 | // _Complex int -> _Complex long |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 841 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralComplexCast); |
| 842 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 843 | } |
| 844 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 845 | if (!IsCompAssign) |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 846 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralComplexCast); |
| 847 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 850 | if (LHSComplexInt) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 851 | // int -> _Complex int |
Eli Friedman | ddadaa4 | 2011-11-12 03:56:23 +0000 | [diff] [blame] | 852 | // FIXME: This needs to take integer ranks into account |
| 853 | RHS = S.ImpCastExprToType(RHS.take(), LHSComplexInt->getElementType(), |
| 854 | CK_IntegralCast); |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 855 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralRealToComplex); |
| 856 | return LHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 857 | } |
| 858 | |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 859 | assert(RHSComplexInt); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 860 | // int -> _Complex int |
Eli Friedman | ddadaa4 | 2011-11-12 03:56:23 +0000 | [diff] [blame] | 861 | // FIXME: This needs to take integer ranks into account |
| 862 | if (!IsCompAssign) { |
| 863 | LHS = S.ImpCastExprToType(LHS.take(), RHSComplexInt->getElementType(), |
| 864 | CK_IntegralCast); |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 865 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralRealToComplex); |
Eli Friedman | ddadaa4 | 2011-11-12 03:56:23 +0000 | [diff] [blame] | 866 | } |
Richard Trieu | 8ef5c8e | 2011-09-06 18:38:41 +0000 | [diff] [blame] | 867 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | /// \brief Handle integer arithmetic conversions. Helper function of |
| 871 | /// UsualArithmeticConversions() |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 872 | static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, |
| 873 | ExprResult &RHS, QualType LHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 874 | QualType RHSType, bool IsCompAssign) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 875 | // The rules for this case are in C99 6.3.1.8 |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 876 | int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); |
| 877 | bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); |
| 878 | bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); |
| 879 | if (LHSSigned == RHSSigned) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 880 | // Same signedness; use the higher-ranked type |
| 881 | if (order >= 0) { |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 882 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); |
| 883 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 884 | } else if (!IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 885 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); |
| 886 | return RHSType; |
| 887 | } else if (order != (LHSSigned ? 1 : -1)) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 888 | // The unsigned type has greater than or equal rank to the |
| 889 | // signed type, so use the unsigned type |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 890 | if (RHSSigned) { |
| 891 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); |
| 892 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 893 | } else if (!IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 894 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); |
| 895 | return RHSType; |
| 896 | } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 897 | // The two types are different widths; if we are here, that |
| 898 | // means the signed type is larger than the unsigned type, so |
| 899 | // use the signed type. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 900 | if (LHSSigned) { |
| 901 | RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); |
| 902 | return LHSType; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 903 | } else if (!IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 904 | LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); |
| 905 | return RHSType; |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 906 | } else { |
| 907 | // The signed type is higher-ranked than the unsigned type, |
| 908 | // but isn't actually any bigger (like unsigned int and long |
| 909 | // on most 32-bit systems). Use the unsigned type corresponding |
| 910 | // to the signed type. |
| 911 | QualType result = |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 912 | S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); |
| 913 | RHS = S.ImpCastExprToType(RHS.take(), result, CK_IntegralCast); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 914 | if (!IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 915 | LHS = S.ImpCastExprToType(LHS.take(), result, CK_IntegralCast); |
Richard Trieu | 8289f49 | 2011-09-02 20:58:51 +0000 | [diff] [blame] | 916 | return result; |
| 917 | } |
| 918 | } |
| 919 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 920 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 921 | /// 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] | 922 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 923 | /// responsible for emitting appropriate error diagnostics. |
| 924 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 925 | /// GCC. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 926 | QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 927 | bool IsCompAssign) { |
| 928 | if (!IsCompAssign) { |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 929 | LHS = UsualUnaryConversions(LHS.take()); |
| 930 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 931 | return QualType(); |
| 932 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 933 | |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 934 | RHS = UsualUnaryConversions(RHS.take()); |
| 935 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 936 | return QualType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 937 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 938 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 939 | // For example, "const float" and "float" are equivalent. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 940 | QualType LHSType = |
| 941 | Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); |
| 942 | QualType RHSType = |
| 943 | Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 944 | |
| 945 | // If both types are identical, no conversion is needed. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 946 | if (LHSType == RHSType) |
| 947 | return LHSType; |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 948 | |
| 949 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 950 | // The caller can deal with this (e.g. pointer + int). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 951 | if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) |
| 952 | return LHSType; |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 953 | |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 954 | // Apply unary and bitfield promotions to the LHS's type. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 955 | QualType LHSUnpromotedType = LHSType; |
| 956 | if (LHSType->isPromotableIntegerType()) |
| 957 | LHSType = Context.getPromotedIntegerType(LHSType); |
| 958 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 959 | if (!LHSBitfieldPromoteTy.isNull()) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 960 | LHSType = LHSBitfieldPromoteTy; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 961 | if (LHSType != LHSUnpromotedType && !IsCompAssign) |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 962 | LHS = ImpCastExprToType(LHS.take(), LHSType, CK_IntegralCast); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 963 | |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 964 | // If both types are identical, no conversion is needed. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 965 | if (LHSType == RHSType) |
| 966 | return LHSType; |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 967 | |
| 968 | // At this point, we have two different arithmetic types. |
| 969 | |
| 970 | // Handle complex types first (C99 6.3.1.8p1). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 971 | if (LHSType->isComplexType() || RHSType->isComplexType()) |
| 972 | return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 973 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 974 | |
| 975 | // Now handle "real" floating types (i.e. float, double, long double). |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 976 | if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) |
| 977 | return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 978 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 979 | |
| 980 | // Handle GCC complex int extension. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 981 | if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) |
Benjamin Kramer | 5cc8680 | 2011-09-06 19:57:14 +0000 | [diff] [blame] | 982 | return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 983 | IsCompAssign); |
John McCall | cf33b24 | 2010-11-13 08:17:45 +0000 | [diff] [blame] | 984 | |
| 985 | // Finally, we have two differing integer types. |
Richard Trieu | 2e8a95d | 2011-09-06 19:52:52 +0000 | [diff] [blame] | 986 | return handleIntegerConversion(*this, LHS, RHS, LHSType, RHSType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 987 | IsCompAssign); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 988 | } |
| 989 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 990 | //===----------------------------------------------------------------------===// |
| 991 | // Semantic Analysis for various Expression Types |
| 992 | //===----------------------------------------------------------------------===// |
| 993 | |
| 994 | |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 995 | ExprResult |
| 996 | Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, |
| 997 | SourceLocation DefaultLoc, |
| 998 | SourceLocation RParenLoc, |
| 999 | Expr *ControllingExpr, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1000 | MultiTypeArg ArgTypes, |
| 1001 | MultiExprArg ArgExprs) { |
| 1002 | unsigned NumAssocs = ArgTypes.size(); |
| 1003 | assert(NumAssocs == ArgExprs.size()); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1004 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1005 | ParsedType *ParsedTypes = ArgTypes.release(); |
| 1006 | Expr **Exprs = ArgExprs.release(); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1007 | |
| 1008 | TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; |
| 1009 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1010 | if (ParsedTypes[i]) |
| 1011 | (void) GetTypeFromParser(ParsedTypes[i], &Types[i]); |
| 1012 | else |
| 1013 | Types[i] = 0; |
| 1014 | } |
| 1015 | |
| 1016 | ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, |
| 1017 | ControllingExpr, Types, Exprs, |
| 1018 | NumAssocs); |
Benjamin Kramer | 5bf47f7 | 2011-04-15 11:21:57 +0000 | [diff] [blame] | 1019 | delete [] Types; |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1020 | return ER; |
| 1021 | } |
| 1022 | |
| 1023 | ExprResult |
| 1024 | Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, |
| 1025 | SourceLocation DefaultLoc, |
| 1026 | SourceLocation RParenLoc, |
| 1027 | Expr *ControllingExpr, |
| 1028 | TypeSourceInfo **Types, |
| 1029 | Expr **Exprs, |
| 1030 | unsigned NumAssocs) { |
| 1031 | bool TypeErrorFound = false, |
| 1032 | IsResultDependent = ControllingExpr->isTypeDependent(), |
| 1033 | ContainsUnexpandedParameterPack |
| 1034 | = ControllingExpr->containsUnexpandedParameterPack(); |
| 1035 | |
| 1036 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1037 | if (Exprs[i]->containsUnexpandedParameterPack()) |
| 1038 | ContainsUnexpandedParameterPack = true; |
| 1039 | |
| 1040 | if (Types[i]) { |
| 1041 | if (Types[i]->getType()->containsUnexpandedParameterPack()) |
| 1042 | ContainsUnexpandedParameterPack = true; |
| 1043 | |
| 1044 | if (Types[i]->getType()->isDependentType()) { |
| 1045 | IsResultDependent = true; |
| 1046 | } else { |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1047 | // 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] | 1048 | // complete object type other than a variably modified type." |
| 1049 | unsigned D = 0; |
| 1050 | if (Types[i]->getType()->isIncompleteType()) |
| 1051 | D = diag::err_assoc_type_incomplete; |
| 1052 | else if (!Types[i]->getType()->isObjectType()) |
| 1053 | D = diag::err_assoc_type_nonobject; |
| 1054 | else if (Types[i]->getType()->isVariablyModifiedType()) |
| 1055 | D = diag::err_assoc_type_variably_modified; |
| 1056 | |
| 1057 | if (D != 0) { |
| 1058 | Diag(Types[i]->getTypeLoc().getBeginLoc(), D) |
| 1059 | << Types[i]->getTypeLoc().getSourceRange() |
| 1060 | << Types[i]->getType(); |
| 1061 | TypeErrorFound = true; |
| 1062 | } |
| 1063 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1064 | // 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] | 1065 | // selection shall specify compatible types." |
| 1066 | for (unsigned j = i+1; j < NumAssocs; ++j) |
| 1067 | if (Types[j] && !Types[j]->getType()->isDependentType() && |
| 1068 | Context.typesAreCompatible(Types[i]->getType(), |
| 1069 | Types[j]->getType())) { |
| 1070 | Diag(Types[j]->getTypeLoc().getBeginLoc(), |
| 1071 | diag::err_assoc_compatible_types) |
| 1072 | << Types[j]->getTypeLoc().getSourceRange() |
| 1073 | << Types[j]->getType() |
| 1074 | << Types[i]->getType(); |
| 1075 | Diag(Types[i]->getTypeLoc().getBeginLoc(), |
| 1076 | diag::note_compat_assoc) |
| 1077 | << Types[i]->getTypeLoc().getSourceRange() |
| 1078 | << Types[i]->getType(); |
| 1079 | TypeErrorFound = true; |
| 1080 | } |
| 1081 | } |
| 1082 | } |
| 1083 | } |
| 1084 | if (TypeErrorFound) |
| 1085 | return ExprError(); |
| 1086 | |
| 1087 | // If we determined that the generic selection is result-dependent, don't |
| 1088 | // try to compute the result expression. |
| 1089 | if (IsResultDependent) |
| 1090 | return Owned(new (Context) GenericSelectionExpr( |
| 1091 | Context, KeyLoc, ControllingExpr, |
| 1092 | Types, Exprs, NumAssocs, DefaultLoc, |
| 1093 | RParenLoc, ContainsUnexpandedParameterPack)); |
| 1094 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1095 | SmallVector<unsigned, 1> CompatIndices; |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1096 | unsigned DefaultIndex = -1U; |
| 1097 | for (unsigned i = 0; i < NumAssocs; ++i) { |
| 1098 | if (!Types[i]) |
| 1099 | DefaultIndex = i; |
| 1100 | else if (Context.typesAreCompatible(ControllingExpr->getType(), |
| 1101 | Types[i]->getType())) |
| 1102 | CompatIndices.push_back(i); |
| 1103 | } |
| 1104 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1105 | // 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] | 1106 | // type compatible with at most one of the types named in its generic |
| 1107 | // association list." |
| 1108 | if (CompatIndices.size() > 1) { |
| 1109 | // We strip parens here because the controlling expression is typically |
| 1110 | // parenthesized in macro definitions. |
| 1111 | ControllingExpr = ControllingExpr->IgnoreParens(); |
| 1112 | Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match) |
| 1113 | << ControllingExpr->getSourceRange() << ControllingExpr->getType() |
| 1114 | << (unsigned) CompatIndices.size(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1115 | for (SmallVector<unsigned, 1>::iterator I = CompatIndices.begin(), |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1116 | E = CompatIndices.end(); I != E; ++I) { |
| 1117 | Diag(Types[*I]->getTypeLoc().getBeginLoc(), |
| 1118 | diag::note_compat_assoc) |
| 1119 | << Types[*I]->getTypeLoc().getSourceRange() |
| 1120 | << Types[*I]->getType(); |
| 1121 | } |
| 1122 | return ExprError(); |
| 1123 | } |
| 1124 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1125 | // 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] | 1126 | // its controlling expression shall have type compatible with exactly one of |
| 1127 | // the types named in its generic association list." |
| 1128 | if (DefaultIndex == -1U && CompatIndices.size() == 0) { |
| 1129 | // We strip parens here because the controlling expression is typically |
| 1130 | // parenthesized in macro definitions. |
| 1131 | ControllingExpr = ControllingExpr->IgnoreParens(); |
| 1132 | Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match) |
| 1133 | << ControllingExpr->getSourceRange() << ControllingExpr->getType(); |
| 1134 | return ExprError(); |
| 1135 | } |
| 1136 | |
Benjamin Kramer | ffbe9b9 | 2011-12-23 17:00:35 +0000 | [diff] [blame] | 1137 | // 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] | 1138 | // type name that is compatible with the type of the controlling expression, |
| 1139 | // then the result expression of the generic selection is the expression |
| 1140 | // in that generic association. Otherwise, the result expression of the |
| 1141 | // generic selection is the expression in the default generic association." |
| 1142 | unsigned ResultIndex = |
| 1143 | CompatIndices.size() ? CompatIndices[0] : DefaultIndex; |
| 1144 | |
| 1145 | return Owned(new (Context) GenericSelectionExpr( |
| 1146 | Context, KeyLoc, ControllingExpr, |
| 1147 | Types, Exprs, NumAssocs, DefaultLoc, |
| 1148 | RParenLoc, ContainsUnexpandedParameterPack, |
| 1149 | ResultIndex)); |
| 1150 | } |
| 1151 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1152 | /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the |
| 1153 | /// location of the token and the offset of the ud-suffix within it. |
| 1154 | static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc, |
| 1155 | unsigned Offset) { |
| 1156 | return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1157 | S.getLangOpts()); |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1158 | } |
| 1159 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1160 | /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up |
| 1161 | /// the corresponding cooked (non-raw) literal operator, and build a call to it. |
| 1162 | static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, |
| 1163 | IdentifierInfo *UDSuffix, |
| 1164 | SourceLocation UDSuffixLoc, |
| 1165 | ArrayRef<Expr*> Args, |
| 1166 | SourceLocation LitEndLoc) { |
| 1167 | assert(Args.size() <= 2 && "too many arguments for literal operator"); |
| 1168 | |
| 1169 | QualType ArgTy[2]; |
| 1170 | for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { |
| 1171 | ArgTy[ArgIdx] = Args[ArgIdx]->getType(); |
| 1172 | if (ArgTy[ArgIdx]->isArrayType()) |
| 1173 | ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]); |
| 1174 | } |
| 1175 | |
| 1176 | DeclarationName OpName = |
| 1177 | S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); |
| 1178 | DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); |
| 1179 | OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); |
| 1180 | |
| 1181 | LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName); |
| 1182 | if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()), |
| 1183 | /*AllowRawAndTemplate*/false) == Sema::LOLR_Error) |
| 1184 | return ExprError(); |
| 1185 | |
| 1186 | return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc); |
| 1187 | } |
| 1188 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 1189 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1190 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 1191 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 1192 | /// multiple tokens. However, the common case is that StringToks points to one |
| 1193 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1194 | /// |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1195 | ExprResult |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1196 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks, |
| 1197 | Scope *UDLScope) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1198 | assert(NumStringToks && "Must have at least one string!"); |
| 1199 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 1200 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1201 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1202 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1203 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1204 | SmallVector<SourceLocation, 4> StringTokLocs; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1205 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 1206 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1207 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1208 | QualType StrTy = Context.CharTy; |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1209 | if (Literal.isWide()) |
Anders Carlsson | 96b4adc | 2011-04-06 18:42:48 +0000 | [diff] [blame] | 1210 | StrTy = Context.getWCharType(); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1211 | else if (Literal.isUTF16()) |
| 1212 | StrTy = Context.Char16Ty; |
| 1213 | else if (Literal.isUTF32()) |
| 1214 | StrTy = Context.Char32Ty; |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 1215 | else if (Literal.isPascal()) |
Anders Carlsson | 96b4adc | 2011-04-06 18:42:48 +0000 | [diff] [blame] | 1216 | StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1217 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1218 | StringLiteral::StringKind Kind = StringLiteral::Ascii; |
| 1219 | if (Literal.isWide()) |
| 1220 | Kind = StringLiteral::Wide; |
| 1221 | else if (Literal.isUTF8()) |
| 1222 | Kind = StringLiteral::UTF8; |
| 1223 | else if (Literal.isUTF16()) |
| 1224 | Kind = StringLiteral::UTF16; |
| 1225 | else if (Literal.isUTF32()) |
| 1226 | Kind = StringLiteral::UTF32; |
| 1227 | |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1228 | // 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] | 1229 | if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 1230 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1231 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1232 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 1233 | // the nul terminator character as well as the string length for pascal |
| 1234 | // strings. |
| 1235 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 1236 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1237 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1238 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1239 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1240 | StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), |
| 1241 | Kind, Literal.Pascal, StrTy, |
| 1242 | &StringTokLocs[0], |
| 1243 | StringTokLocs.size()); |
| 1244 | if (Literal.getUDSuffix().empty()) |
| 1245 | return Owned(Lit); |
| 1246 | |
| 1247 | // We're building a user-defined literal. |
| 1248 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 1249 | SourceLocation UDSuffixLoc = |
| 1250 | getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()], |
| 1251 | Literal.getUDSuffixOffset()); |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1252 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1253 | // Make sure we're allowed user-defined literals here. |
| 1254 | if (!UDLScope) |
| 1255 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl)); |
| 1256 | |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1257 | // C++11 [lex.ext]p5: The literal L is treated as a call of the form |
| 1258 | // operator "" X (str, len) |
| 1259 | QualType SizeType = Context.getSizeType(); |
| 1260 | llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars()); |
| 1261 | IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType, |
| 1262 | StringTokLocs[0]); |
| 1263 | Expr *Args[] = { Lit, LenArg }; |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 1264 | return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, |
| 1265 | Args, StringTokLocs.back()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1268 | ExprResult |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1269 | Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1270 | SourceLocation Loc, |
| 1271 | const CXXScopeSpec *SS) { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1272 | DeclarationNameInfo NameInfo(D->getDeclName(), Loc); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 1273 | return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1274 | } |
| 1275 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1276 | /// BuildDeclRefExpr - Build an expression that references a |
| 1277 | /// declaration that does not require a closure capture. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1278 | ExprResult |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 1279 | Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1280 | const DeclarationNameInfo &NameInfo, |
| 1281 | const CXXScopeSpec *SS) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1282 | if (getLangOpts().CUDA) |
Peter Collingbourne | 78dd67e | 2011-10-02 23:49:40 +0000 | [diff] [blame] | 1283 | if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext)) |
| 1284 | if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) { |
| 1285 | CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller), |
| 1286 | CalleeTarget = IdentifyCUDATarget(Callee); |
| 1287 | if (CheckCUDATarget(CallerTarget, CalleeTarget)) { |
| 1288 | Diag(NameInfo.getLoc(), diag::err_ref_bad_target) |
| 1289 | << CalleeTarget << D->getIdentifier() << CallerTarget; |
| 1290 | Diag(D->getLocation(), diag::note_previous_decl) |
| 1291 | << D->getIdentifier(); |
| 1292 | return ExprError(); |
| 1293 | } |
| 1294 | } |
| 1295 | |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 1296 | bool refersToEnclosingScope = |
| 1297 | (CurContext != D->getDeclContext() && |
| 1298 | D->getDeclContext()->isFunctionOrMethod()); |
| 1299 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1300 | DeclRefExpr *E = DeclRefExpr::Create(Context, |
| 1301 | SS ? SS->getWithLocInContext(Context) |
| 1302 | : NestedNameSpecifierLoc(), |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 1303 | SourceLocation(), |
| 1304 | D, refersToEnclosingScope, |
| 1305 | NameInfo, Ty, VK); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1306 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1307 | MarkDeclRefReferenced(E); |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1308 | |
| 1309 | // Just in case we're building an illegal pointer-to-member. |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 1310 | FieldDecl *FD = dyn_cast<FieldDecl>(D); |
| 1311 | if (FD && FD->isBitField()) |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1312 | E->setObjectKind(OK_BitField); |
| 1313 | |
| 1314 | return Owned(E); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 1315 | } |
| 1316 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1317 | /// Decomposes the given name into a DeclarationNameInfo, its location, and |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1318 | /// possibly a list of template arguments. |
| 1319 | /// |
| 1320 | /// If this produces template arguments, it is permitted to call |
| 1321 | /// DecomposeTemplateName. |
| 1322 | /// |
| 1323 | /// This actually loses a lot of source location information for |
| 1324 | /// non-standard name kinds; we should consider preserving that in |
| 1325 | /// some way. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 1326 | void |
| 1327 | Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, |
| 1328 | TemplateArgumentListInfo &Buffer, |
| 1329 | DeclarationNameInfo &NameInfo, |
| 1330 | const TemplateArgumentListInfo *&TemplateArgs) { |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1331 | if (Id.getKind() == UnqualifiedId::IK_TemplateId) { |
| 1332 | Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); |
| 1333 | Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); |
| 1334 | |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1335 | ASTTemplateArgsPtr TemplateArgsPtr(*this, |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1336 | Id.TemplateId->getTemplateArgs(), |
| 1337 | Id.TemplateId->NumArgs); |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1338 | translateTemplateArguments(TemplateArgsPtr, Buffer); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1339 | TemplateArgsPtr.release(); |
| 1340 | |
John McCall | 2b5289b | 2010-08-23 07:28:44 +0000 | [diff] [blame] | 1341 | TemplateName TName = Id.TemplateId->Template.get(); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1342 | SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1343 | NameInfo = Context.getNameForTemplate(TName, TNameLoc); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1344 | TemplateArgs = &Buffer; |
| 1345 | } else { |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1346 | NameInfo = GetNameFromUnqualifiedId(Id); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1347 | TemplateArgs = 0; |
| 1348 | } |
| 1349 | } |
| 1350 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1351 | /// Diagnose an empty lookup. |
| 1352 | /// |
| 1353 | /// \return false if new lookup candidates were found |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1354 | bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, |
Kaelyn Uhrain | 4798f8d | 2012-01-18 05:58:54 +0000 | [diff] [blame] | 1355 | CorrectionCandidateCallback &CCC, |
Kaelyn Uhrain | ace5e76 | 2011-08-05 00:09:52 +0000 | [diff] [blame] | 1356 | TemplateArgumentListInfo *ExplicitTemplateArgs, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1357 | llvm::ArrayRef<Expr *> Args) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1358 | DeclarationName Name = R.getLookupName(); |
| 1359 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1360 | unsigned diagnostic = diag::err_undeclared_var_use; |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1361 | unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1362 | if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 1363 | Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1364 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1365 | diagnostic = diag::err_undeclared_use; |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1366 | diagnostic_suggest = diag::err_undeclared_use_suggest; |
| 1367 | } |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1368 | |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1369 | // If the original lookup was an unqualified lookup, fake an |
| 1370 | // unqualified lookup. This is useful when (for example) the |
| 1371 | // original lookup would not have found something because it was a |
| 1372 | // dependent name. |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1373 | DeclContext *DC = SS.isEmpty() ? CurContext : 0; |
| 1374 | while (DC) { |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1375 | if (isa<CXXRecordDecl>(DC)) { |
| 1376 | LookupQualifiedName(R, DC); |
| 1377 | |
| 1378 | if (!R.empty()) { |
| 1379 | // Don't give errors about ambiguities in this lookup. |
| 1380 | R.suppressDiagnostics(); |
| 1381 | |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1382 | // During a default argument instantiation the CurContext points |
| 1383 | // to a CXXMethodDecl; but we can't apply a this-> fixit inside a |
| 1384 | // function parameter list, hence add an explicit check. |
| 1385 | bool isDefaultArgument = !ActiveTemplateInstantiations.empty() && |
| 1386 | ActiveTemplateInstantiations.back().Kind == |
| 1387 | ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1388 | CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); |
| 1389 | bool isInstance = CurMethod && |
| 1390 | CurMethod->isInstance() && |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1391 | DC == CurMethod->getParent() && !isDefaultArgument; |
| 1392 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1393 | |
| 1394 | // Give a code modification hint to insert 'this->'. |
| 1395 | // TODO: fixit for inserting 'Base<T>::' in the other cases. |
| 1396 | // Actually quite difficult! |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1397 | if (isInstance) { |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1398 | UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( |
| 1399 | CallsUndergoingInstantiation.back()->getCallee()); |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1400 | CXXMethodDecl *DepMethod = cast_or_null<CXXMethodDecl>( |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1401 | CurMethod->getInstantiatedFromMemberFunction()); |
Eli Friedman | a7e6845 | 2010-08-22 01:00:03 +0000 | [diff] [blame] | 1402 | if (DepMethod) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1403 | if (getLangOpts().MicrosoftMode) |
Francois Pichet | 0f74d1e | 2011-09-07 00:14:57 +0000 | [diff] [blame] | 1404 | diagnostic = diag::warn_found_via_dependent_bases_lookup; |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1405 | Diag(R.getNameLoc(), diagnostic) << Name |
| 1406 | << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); |
| 1407 | QualType DepThisType = DepMethod->getThisType(Context); |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 1408 | CheckCXXThisCapture(R.getNameLoc()); |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1409 | CXXThisExpr *DepThis = new (Context) CXXThisExpr( |
| 1410 | R.getNameLoc(), DepThisType, false); |
| 1411 | TemplateArgumentListInfo TList; |
| 1412 | if (ULE->hasExplicitTemplateArgs()) |
| 1413 | ULE->copyTemplateArgumentsInto(TList); |
Douglas Gregor | 7c3179c | 2011-02-28 18:50:33 +0000 | [diff] [blame] | 1414 | |
Douglas Gregor | 7c3179c | 2011-02-28 18:50:33 +0000 | [diff] [blame] | 1415 | CXXScopeSpec SS; |
Douglas Gregor | 4c9be89 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 1416 | SS.Adopt(ULE->getQualifierLoc()); |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1417 | CXXDependentScopeMemberExpr *DepExpr = |
| 1418 | CXXDependentScopeMemberExpr::Create( |
| 1419 | Context, DepThis, DepThisType, true, SourceLocation(), |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1420 | SS.getWithLocInContext(Context), |
| 1421 | ULE->getTemplateKeywordLoc(), 0, |
Francois Pichet | f740012 | 2011-09-04 23:00:48 +0000 | [diff] [blame] | 1422 | R.getLookupNameInfo(), |
| 1423 | ULE->hasExplicitTemplateArgs() ? &TList : 0); |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1424 | CallsUndergoingInstantiation.back()->setCallee(DepExpr); |
Eli Friedman | a7e6845 | 2010-08-22 01:00:03 +0000 | [diff] [blame] | 1425 | } else { |
Nick Lewycky | d9ca4ab | 2010-08-20 20:54:15 +0000 | [diff] [blame] | 1426 | // FIXME: we should be able to handle this case too. It is correct |
| 1427 | // to add this-> here. This is a workaround for PR7947. |
| 1428 | Diag(R.getNameLoc(), diagnostic) << Name; |
Eli Friedman | a7e6845 | 2010-08-22 01:00:03 +0000 | [diff] [blame] | 1429 | } |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1430 | } else { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1431 | if (getLangOpts().MicrosoftMode) |
Francois Pichet | e614d6c | 2011-11-15 23:33:34 +0000 | [diff] [blame] | 1432 | diagnostic = diag::warn_found_via_dependent_bases_lookup; |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1433 | Diag(R.getNameLoc(), diagnostic) << Name; |
Nick Lewycky | 03d98c5 | 2010-07-06 19:51:49 +0000 | [diff] [blame] | 1434 | } |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1435 | |
| 1436 | // Do we really want to note all of these? |
| 1437 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 1438 | Diag((*I)->getLocation(), diag::note_dependent_var_use); |
| 1439 | |
Francois Pichet | e6226ae | 2011-11-17 03:44:24 +0000 | [diff] [blame] | 1440 | // Return true if we are inside a default argument instantiation |
| 1441 | // and the found name refers to an instance member function, otherwise |
| 1442 | // the function calling DiagnoseEmptyLookup will try to create an |
| 1443 | // implicit member call and this is wrong for default argument. |
| 1444 | if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) { |
| 1445 | Diag(R.getNameLoc(), diag::err_member_call_without_object); |
| 1446 | return true; |
| 1447 | } |
| 1448 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1449 | // Tell the callee to try to recover. |
| 1450 | return false; |
| 1451 | } |
Douglas Gregor | e26f043 | 2010-08-09 22:38:14 +0000 | [diff] [blame] | 1452 | |
| 1453 | R.clear(); |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1454 | } |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1455 | |
| 1456 | // In Microsoft mode, if we are performing lookup from within a friend |
| 1457 | // function definition declared at class scope then we must set |
| 1458 | // DC to the lexical parent to be able to search into the parent |
| 1459 | // class. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1460 | if (getLangOpts().MicrosoftMode && isa<FunctionDecl>(DC) && |
Francois Pichet | c8ff915 | 2011-11-25 01:10:54 +0000 | [diff] [blame] | 1461 | cast<FunctionDecl>(DC)->getFriendObjectKind() && |
| 1462 | DC->getLexicalParent()->isRecord()) |
| 1463 | DC = DC->getLexicalParent(); |
| 1464 | else |
| 1465 | DC = DC->getParent(); |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1468 | // We didn't find anything, so try to correct for a typo. |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1469 | TypoCorrection Corrected; |
| 1470 | if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), |
Kaelyn Uhrain | 16e46dd | 2012-01-31 23:49:25 +0000 | [diff] [blame] | 1471 | S, &SS, CCC))) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1472 | std::string CorrectedStr(Corrected.getAsString(getLangOpts())); |
| 1473 | std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1474 | R.setLookupName(Corrected.getCorrection()); |
| 1475 | |
Hans Wennborg | 701d1e7 | 2011-07-12 08:45:31 +0000 | [diff] [blame] | 1476 | if (NamedDecl *ND = Corrected.getCorrectionDecl()) { |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1477 | if (Corrected.isOverloaded()) { |
| 1478 | OverloadCandidateSet OCS(R.getNameLoc()); |
| 1479 | OverloadCandidateSet::iterator Best; |
| 1480 | for (TypoCorrection::decl_iterator CD = Corrected.begin(), |
| 1481 | CDEnd = Corrected.end(); |
| 1482 | CD != CDEnd; ++CD) { |
Kaelyn Uhrain | adc7a73 | 2011-08-08 17:35:31 +0000 | [diff] [blame] | 1483 | if (FunctionTemplateDecl *FTD = |
Kaelyn Uhrain | ace5e76 | 2011-08-05 00:09:52 +0000 | [diff] [blame] | 1484 | dyn_cast<FunctionTemplateDecl>(*CD)) |
| 1485 | AddTemplateOverloadCandidate( |
| 1486 | FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1487 | Args, OCS); |
Kaelyn Uhrain | adc7a73 | 2011-08-08 17:35:31 +0000 | [diff] [blame] | 1488 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) |
| 1489 | if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) |
| 1490 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 1491 | Args, OCS); |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1492 | } |
| 1493 | switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { |
| 1494 | case OR_Success: |
| 1495 | ND = Best->Function; |
| 1496 | break; |
| 1497 | default: |
Kaelyn Uhrain | 844d572 | 2011-08-04 23:30:54 +0000 | [diff] [blame] | 1498 | break; |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 1499 | } |
| 1500 | } |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1501 | R.addDecl(ND); |
| 1502 | if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1503 | if (SS.isEmpty()) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1504 | Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr |
| 1505 | << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr); |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1506 | else |
| 1507 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1508 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1509 | << SS.getRange() |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1510 | << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr); |
| 1511 | if (ND) |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1512 | Diag(ND->getLocation(), diag::note_previous_decl) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1513 | << CorrectedQuotedStr; |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1514 | |
| 1515 | // Tell the callee to try to recover. |
| 1516 | return false; |
| 1517 | } |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1518 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1519 | if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) { |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1520 | // FIXME: If we ended up with a typo for a type name or |
| 1521 | // Objective-C class name, we're in trouble because the parser |
| 1522 | // is in the wrong place to recover. Suggest the typo |
| 1523 | // correction, but don't make it a fix-it since we're not going |
| 1524 | // to recover well anyway. |
| 1525 | if (SS.isEmpty()) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 1526 | Diag(R.getNameLoc(), diagnostic_suggest) |
| 1527 | << Name << CorrectedQuotedStr; |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1528 | else |
| 1529 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1530 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1531 | << SS.getRange(); |
| 1532 | |
| 1533 | // Don't try to recover; it won't work. |
| 1534 | return true; |
| 1535 | } |
| 1536 | } else { |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1537 | // 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] | 1538 | // because we aren't able to recover. |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1539 | if (SS.isEmpty()) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1540 | Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1541 | else |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1542 | Diag(R.getNameLoc(), diag::err_no_member_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1543 | << Name << computeDeclContext(SS, false) << CorrectedQuotedStr |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 1544 | << SS.getRange(); |
Douglas Gregor | d203a16 | 2010-01-01 00:15:04 +0000 | [diff] [blame] | 1545 | return true; |
| 1546 | } |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1547 | } |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1548 | R.clear(); |
Douglas Gregor | bb092ba | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 1549 | |
| 1550 | // Emit a special diagnostic for failed member lookups. |
| 1551 | // FIXME: computing the declaration context might fail here (?) |
| 1552 | if (!SS.isEmpty()) { |
| 1553 | Diag(R.getNameLoc(), diag::err_no_member) |
| 1554 | << Name << computeDeclContext(SS, false) |
| 1555 | << SS.getRange(); |
| 1556 | return true; |
| 1557 | } |
| 1558 | |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1559 | // Give up, we can't recover. |
| 1560 | Diag(R.getNameLoc(), diagnostic) << Name; |
| 1561 | return true; |
| 1562 | } |
| 1563 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1564 | ExprResult Sema::ActOnIdExpression(Scope *S, |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1565 | CXXScopeSpec &SS, |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1566 | SourceLocation TemplateKWLoc, |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1567 | UnqualifiedId &Id, |
| 1568 | bool HasTrailingLParen, |
Kaelyn Uhrain | cd78e61 | 2012-01-25 20:49:08 +0000 | [diff] [blame] | 1569 | bool IsAddressOfOperand, |
| 1570 | CorrectionCandidateCallback *CCC) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1571 | assert(!(IsAddressOfOperand && HasTrailingLParen) && |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1572 | "cannot be direct & operand and have a trailing lparen"); |
| 1573 | |
| 1574 | if (SS.isInvalid()) |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1575 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1576 | |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1577 | TemplateArgumentListInfo TemplateArgsBuffer; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1578 | |
| 1579 | // Decompose the UnqualifiedId into the following data. |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1580 | DeclarationNameInfo NameInfo; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1581 | const TemplateArgumentListInfo *TemplateArgs; |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 1582 | DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 1583 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1584 | DeclarationName Name = NameInfo.getName(); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 1585 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1586 | SourceLocation NameLoc = NameInfo.getLoc(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1587 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1588 | // C++ [temp.dep.expr]p3: |
| 1589 | // An id-expression is type-dependent if it contains: |
Douglas Gregor | 48026d2 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 1590 | // -- an identifier that was declared with a dependent type, |
| 1591 | // (note: handled after lookup) |
| 1592 | // -- a template-id that is dependent, |
| 1593 | // (note: handled in BuildTemplateIdExpr) |
| 1594 | // -- a conversion-function-id that specifies a dependent type, |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1595 | // -- a nested-name-specifier that contains a class-name that |
| 1596 | // names a dependent type. |
| 1597 | // Determine whether this is a member of an unknown specialization; |
| 1598 | // we need to handle these differently. |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1599 | bool DependentID = false; |
| 1600 | if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1601 | Name.getCXXNameType()->isDependentType()) { |
| 1602 | DependentID = true; |
| 1603 | } else if (SS.isSet()) { |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1604 | if (DeclContext *DC = computeDeclContext(SS, false)) { |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1605 | if (RequireCompleteDeclContext(SS, DC)) |
| 1606 | return ExprError(); |
Eli Friedman | 647c8b3 | 2010-08-06 23:41:47 +0000 | [diff] [blame] | 1607 | } else { |
| 1608 | DependentID = true; |
| 1609 | } |
| 1610 | } |
| 1611 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1612 | if (DependentID) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1613 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1614 | IsAddressOfOperand, TemplateArgs); |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1615 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1616 | // Perform the required lookup. |
Fariborz Jahanian | 98a5403 | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 1617 | LookupResult R(*this, NameInfo, |
| 1618 | (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam) |
| 1619 | ? LookupObjCImplicitSelfParam : LookupOrdinaryName); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1620 | if (TemplateArgs) { |
Douglas Gregor | d2235f6 | 2010-05-20 20:58:56 +0000 | [diff] [blame] | 1621 | // Lookup the template name again to correctly establish the context in |
| 1622 | // which it was found. This is really unfortunate as we already did the |
| 1623 | // lookup to determine that it was a template name in the first place. If |
| 1624 | // this becomes a performance hit, we can work harder to preserve those |
| 1625 | // results until we get here but it's likely not worth it. |
Douglas Gregor | 1fd6d44 | 2010-05-21 23:18:07 +0000 | [diff] [blame] | 1626 | bool MemberOfUnknownSpecialization; |
| 1627 | LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, |
| 1628 | MemberOfUnknownSpecialization); |
Douglas Gregor | 2f9f89c | 2011-02-04 13:35:07 +0000 | [diff] [blame] | 1629 | |
| 1630 | if (MemberOfUnknownSpecialization || |
| 1631 | (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1632 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1633 | IsAddressOfOperand, TemplateArgs); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1634 | } else { |
Benjamin Kramer | b7ff74a | 2012-01-20 14:57:34 +0000 | [diff] [blame] | 1635 | bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl(); |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1636 | LookupParsedName(R, S, &SS, !IvarLookupFollowUp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1637 | |
Douglas Gregor | 2f9f89c | 2011-02-04 13:35:07 +0000 | [diff] [blame] | 1638 | // If the result might be in a dependent base class, this is a dependent |
| 1639 | // id-expression. |
| 1640 | if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1641 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1642 | IsAddressOfOperand, TemplateArgs); |
| 1643 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1644 | // If this reference is in an Objective-C method, then we need to do |
| 1645 | // some special Objective-C lookup, too. |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1646 | if (IvarLookupFollowUp) { |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1647 | ExprResult E(LookupInObjCMethod(R, S, II, true)); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1648 | if (E.isInvalid()) |
| 1649 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1650 | |
Chris Lattner | 337e550 | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 1651 | if (Expr *Ex = E.takeAs<Expr>()) |
| 1652 | return Owned(Ex); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1653 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 1654 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 1655 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1656 | if (R.isAmbiguous()) |
| 1657 | return ExprError(); |
| 1658 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1659 | // Determine whether this name might be a candidate for |
| 1660 | // argument-dependent lookup. |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1661 | bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1662 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1663 | if (R.empty() && !ADL) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1664 | // Otherwise, this could be an implicitly declared function reference (legal |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1665 | // in C90, extension in C99, forbidden in C++). |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1666 | if (HasTrailingLParen && II && !getLangOpts().CPlusPlus) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1667 | NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); |
| 1668 | if (D) R.addDecl(D); |
| 1669 | } |
| 1670 | |
| 1671 | // If this name wasn't predeclared and if this is not a function |
| 1672 | // call, diagnose the problem. |
| 1673 | if (R.empty()) { |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1674 | |
| 1675 | // In Microsoft mode, if we are inside a template class member function |
| 1676 | // and we can't resolve an identifier then assume the identifier is type |
| 1677 | // dependent. The goal is to postpone name lookup to instantiation time |
| 1678 | // to be able to search into type dependent base classes. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1679 | if (getLangOpts().MicrosoftMode && CurContext->isDependentContext() && |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1680 | isa<CXXMethodDecl>(CurContext)) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1681 | return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, |
| 1682 | IsAddressOfOperand, TemplateArgs); |
Francois Pichet | fce1a3a | 2011-09-24 10:38:05 +0000 | [diff] [blame] | 1683 | |
Kaelyn Uhrain | 4798f8d | 2012-01-18 05:58:54 +0000 | [diff] [blame] | 1684 | CorrectionCandidateCallback DefaultValidator; |
Kaelyn Uhrain | cd78e61 | 2012-01-25 20:49:08 +0000 | [diff] [blame] | 1685 | if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator)) |
John McCall | 578b69b | 2009-12-16 08:11:27 +0000 | [diff] [blame] | 1686 | return ExprError(); |
| 1687 | |
| 1688 | assert(!R.empty() && |
| 1689 | "DiagnoseEmptyLookup returned false but added no results"); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1690 | |
| 1691 | // If we found an Objective-C instance variable, let |
| 1692 | // LookupInObjCMethod build the appropriate expression to |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1693 | // reference the ivar. |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1694 | if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { |
| 1695 | R.clear(); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1696 | ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); |
Fariborz Jahanian | bc2b91a | 2011-09-23 23:11:38 +0000 | [diff] [blame] | 1697 | // In a hopelessly buggy code, Objective-C instance variable |
| 1698 | // lookup fails and no expression will be built to reference it. |
| 1699 | if (!E.isInvalid() && !E.get()) |
| 1700 | return ExprError(); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 1701 | return move(E); |
| 1702 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1703 | } |
| 1704 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1705 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1706 | // This is guaranteed from this point on. |
| 1707 | assert(!R.empty() || ADL); |
| 1708 | |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 1709 | // Check whether this might be a C++ implicit instance member access. |
John McCall | fb97e75 | 2010-08-24 22:52:39 +0000 | [diff] [blame] | 1710 | // C++ [class.mfct.non-static]p3: |
| 1711 | // When an id-expression that is not part of a class member access |
| 1712 | // syntax and not used to form a pointer to member is used in the |
| 1713 | // body of a non-static member function of class X, if name lookup |
| 1714 | // resolves the name in the id-expression to a non-static non-type |
| 1715 | // member of some class C, the id-expression is transformed into a |
| 1716 | // class member access expression using (*this) as the |
| 1717 | // postfix-expression to the left of the . operator. |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1718 | // |
| 1719 | // But we don't actually need to do this for '&' operands if R |
| 1720 | // resolved to a function or overloaded function set, because the |
| 1721 | // expression is ill-formed if it actually works out to be a |
| 1722 | // non-static member function: |
| 1723 | // |
| 1724 | // C++ [expr.ref]p4: |
| 1725 | // Otherwise, if E1.E2 refers to a non-static member function. . . |
| 1726 | // [t]he expression can be used only as the left-hand operand of a |
| 1727 | // member function call. |
| 1728 | // |
| 1729 | // There are other safeguards against such uses, but it's important |
| 1730 | // to get this right here so that we don't end up making a |
| 1731 | // spuriously dependent expression if we're inside a dependent |
| 1732 | // instance method. |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 1733 | if (!R.empty() && (*R.begin())->isCXXClassMember()) { |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1734 | bool MightBeImplicitMember; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 1735 | if (!IsAddressOfOperand) |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1736 | MightBeImplicitMember = true; |
| 1737 | else if (!SS.isEmpty()) |
| 1738 | MightBeImplicitMember = false; |
| 1739 | else if (R.isOverloadedResult()) |
| 1740 | MightBeImplicitMember = false; |
Douglas Gregor | e2248be | 2010-08-30 16:00:47 +0000 | [diff] [blame] | 1741 | else if (R.isUnresolvableResult()) |
| 1742 | MightBeImplicitMember = true; |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1743 | else |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 1744 | MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || |
| 1745 | isa<IndirectFieldDecl>(R.getFoundDecl()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 1746 | |
| 1747 | if (MightBeImplicitMember) |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1748 | return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc, |
| 1749 | R, TemplateArgs); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
Abramo Bagnara | 9d9922a | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 1752 | if (TemplateArgs || TemplateKWLoc.isValid()) |
| 1753 | return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1754 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1755 | return BuildDeclarationNameExpr(SS, R, ADL); |
| 1756 | } |
| 1757 | |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 1758 | /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified |
| 1759 | /// declaration name, generally during template instantiation. |
| 1760 | /// There's a large number of things which don't need to be done along |
| 1761 | /// this path. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1762 | ExprResult |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 1763 | Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1764 | const DeclarationNameInfo &NameInfo) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1765 | DeclContext *DC; |
Douglas Gregor | e6ec5c4 | 2010-04-28 07:04:26 +0000 | [diff] [blame] | 1766 | if (!(DC = computeDeclContext(SS, false)) || DC->isDependentContext()) |
Abramo Bagnara | 9d9922a | 2012-02-06 14:31:00 +0000 | [diff] [blame] | 1767 | return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), |
| 1768 | NameInfo, /*TemplateArgs=*/0); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1769 | |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 1770 | if (RequireCompleteDeclContext(SS, DC)) |
Douglas Gregor | e6ec5c4 | 2010-04-28 07:04:26 +0000 | [diff] [blame] | 1771 | return ExprError(); |
| 1772 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1773 | LookupResult R(*this, NameInfo, LookupOrdinaryName); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1774 | LookupQualifiedName(R, DC); |
| 1775 | |
| 1776 | if (R.isAmbiguous()) |
| 1777 | return ExprError(); |
| 1778 | |
| 1779 | if (R.empty()) { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1780 | Diag(NameInfo.getLoc(), diag::err_no_member) |
| 1781 | << NameInfo.getName() << DC << SS.getRange(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1782 | return ExprError(); |
| 1783 | } |
| 1784 | |
| 1785 | return BuildDeclarationNameExpr(SS, R, /*ADL*/ false); |
| 1786 | } |
| 1787 | |
| 1788 | /// LookupInObjCMethod - The parser has read a name in, and Sema has |
| 1789 | /// detected that we're currently inside an ObjC method. Perform some |
| 1790 | /// additional lookup. |
| 1791 | /// |
| 1792 | /// Ideally, most of this would be done by lookup, but there's |
| 1793 | /// actually quite a lot of extra work involved. |
| 1794 | /// |
| 1795 | /// Returns a null sentinel to indicate trivial success. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 1796 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1797 | Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, |
Chris Lattner | eb483eb | 2010-04-11 08:28:14 +0000 | [diff] [blame] | 1798 | IdentifierInfo *II, bool AllowBuiltinCreation) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1799 | SourceLocation Loc = Lookup.getNameLoc(); |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1800 | ObjCMethodDecl *CurMethod = getCurMethodDecl(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 1801 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1802 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 1803 | // in which case we should look for an ivar. 2) scoped lookup could have |
| 1804 | // found a decl, but that decl is outside the current instance method (i.e. |
| 1805 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 1806 | // this name, if the lookup sucedes, we replace it our current decl. |
| 1807 | |
| 1808 | // If we're in a class method, we don't normally want to look for |
| 1809 | // ivars. But if we don't find anything else, and there's an |
| 1810 | // ivar, that's an error. |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1811 | bool IsClassMethod = CurMethod->isClassMethod(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1812 | |
| 1813 | bool LookForIvars; |
| 1814 | if (Lookup.empty()) |
| 1815 | LookForIvars = true; |
| 1816 | else if (IsClassMethod) |
| 1817 | LookForIvars = false; |
| 1818 | else |
| 1819 | LookForIvars = (Lookup.isSingleResult() && |
| 1820 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); |
Fariborz Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 1821 | ObjCInterfaceDecl *IFace = 0; |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1822 | if (LookForIvars) { |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1823 | IFace = CurMethod->getClassInterface(); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1824 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 7c81c2a | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 1825 | ObjCIvarDecl *IV = 0; |
| 1826 | if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1827 | // Diagnose using an ivar in a class method. |
| 1828 | if (IsClassMethod) |
| 1829 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 1830 | << IV->getDeclName()); |
| 1831 | |
| 1832 | // If we're referencing an invalid decl, just return this as a silent |
| 1833 | // error node. The error diagnostic was already emitted on the decl. |
| 1834 | if (IV->isInvalidDecl()) |
| 1835 | return ExprError(); |
| 1836 | |
| 1837 | // Check if referencing a field with __attribute__((deprecated)). |
| 1838 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 1839 | return ExprError(); |
| 1840 | |
| 1841 | // Diagnose the use of an ivar outside of the declaring class. |
| 1842 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
Fariborz Jahanian | 458a7fb | 2012-03-07 00:58:41 +0000 | [diff] [blame] | 1843 | !declaresSameEntity(ClassDeclared, IFace) && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1844 | !getLangOpts().DebuggerSupport) |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1845 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 1846 | |
| 1847 | // FIXME: This should use a new expr for a direct reference, don't |
| 1848 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
| 1849 | IdentifierInfo &II = Context.Idents.get("self"); |
| 1850 | UnqualifiedId SelfName; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1851 | SelfName.setIdentifier(&II, SourceLocation()); |
Fariborz Jahanian | 98a5403 | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 1852 | SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1853 | CXXScopeSpec SelfScopeSpec; |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 1854 | SourceLocation TemplateKWLoc; |
| 1855 | ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, |
Douglas Gregor | e45bb6a | 2010-09-22 16:33:13 +0000 | [diff] [blame] | 1856 | SelfName, false, false); |
| 1857 | if (SelfExpr.isInvalid()) |
| 1858 | return ExprError(); |
| 1859 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1860 | SelfExpr = DefaultLvalueConversion(SelfExpr.take()); |
| 1861 | if (SelfExpr.isInvalid()) |
| 1862 | return ExprError(); |
John McCall | 409fa9a | 2010-12-06 20:48:59 +0000 | [diff] [blame] | 1863 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 1864 | MarkAnyDeclReferenced(Loc, IV); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1865 | return Owned(new (Context) |
| 1866 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1867 | SelfExpr.take(), true, true)); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1868 | } |
Chris Lattner | aec43db | 2010-04-12 05:10:17 +0000 | [diff] [blame] | 1869 | } else if (CurMethod->isInstanceMethod()) { |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1870 | // We should warn if a local variable hides an ivar. |
Fariborz Jahanian | 90f7b62 | 2011-11-08 22:51:27 +0000 | [diff] [blame] | 1871 | if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { |
| 1872 | ObjCInterfaceDecl *ClassDeclared; |
| 1873 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
| 1874 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
Douglas Gregor | 60ef308 | 2011-12-15 00:29:59 +0000 | [diff] [blame] | 1875 | declaresSameEntity(IFace, ClassDeclared)) |
Fariborz Jahanian | 90f7b62 | 2011-11-08 22:51:27 +0000 | [diff] [blame] | 1876 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
| 1877 | } |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1878 | } |
Fariborz Jahanian | b5ea9db | 2011-12-20 22:21:08 +0000 | [diff] [blame] | 1879 | } else if (Lookup.isSingleResult() && |
| 1880 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) { |
| 1881 | // If accessing a stand-alone ivar in a class method, this is an error. |
| 1882 | if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) |
| 1883 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 1884 | << IV->getDeclName()); |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1885 | } |
| 1886 | |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1887 | if (Lookup.empty() && II && AllowBuiltinCreation) { |
| 1888 | // FIXME. Consolidate this with similar code in LookupName. |
| 1889 | if (unsigned BuiltinID = II->getBuiltinID()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1890 | if (!(getLangOpts().CPlusPlus && |
Fariborz Jahanian | 48c2d56 | 2010-01-12 23:58:59 +0000 | [diff] [blame] | 1891 | Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) { |
| 1892 | NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, |
| 1893 | S, Lookup.isForRedeclaration(), |
| 1894 | Lookup.getNameLoc()); |
| 1895 | if (D) Lookup.addDecl(D); |
| 1896 | } |
| 1897 | } |
| 1898 | } |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 1899 | // Sentinel value saying that we didn't do anything special. |
| 1900 | return Owned((Expr*) 0); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1901 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1902 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1903 | /// \brief Cast a base object to a member's actual type. |
| 1904 | /// |
| 1905 | /// Logically this happens in three phases: |
| 1906 | /// |
| 1907 | /// * First we cast from the base type to the naming class. |
| 1908 | /// The naming class is the class into which we were looking |
| 1909 | /// when we found the member; it's the qualifier type if a |
| 1910 | /// qualifier was provided, and otherwise it's the base type. |
| 1911 | /// |
| 1912 | /// * Next we cast from the naming class to the declaring class. |
| 1913 | /// If the member we found was brought into a class's scope by |
| 1914 | /// a using declaration, this is that class; otherwise it's |
| 1915 | /// the class declaring the member. |
| 1916 | /// |
| 1917 | /// * Finally we cast from the declaring class to the "true" |
| 1918 | /// declaring class of the member. This conversion does not |
| 1919 | /// obey access control. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1920 | ExprResult |
| 1921 | Sema::PerformObjectMemberConversion(Expr *From, |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1922 | NestedNameSpecifier *Qualifier, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1923 | NamedDecl *FoundDecl, |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1924 | NamedDecl *Member) { |
| 1925 | CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); |
| 1926 | if (!RD) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1927 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1928 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1929 | QualType DestRecordType; |
| 1930 | QualType DestType; |
| 1931 | QualType FromRecordType; |
| 1932 | QualType FromType = From->getType(); |
| 1933 | bool PointerConversions = false; |
| 1934 | if (isa<FieldDecl>(Member)) { |
| 1935 | DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1936 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1937 | if (FromType->getAs<PointerType>()) { |
| 1938 | DestType = Context.getPointerType(DestRecordType); |
| 1939 | FromRecordType = FromType->getPointeeType(); |
| 1940 | PointerConversions = true; |
| 1941 | } else { |
| 1942 | DestType = DestRecordType; |
| 1943 | FromRecordType = FromType; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1944 | } |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1945 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { |
| 1946 | if (Method->isStatic()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1947 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1948 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1949 | DestType = Method->getThisType(Context); |
| 1950 | DestRecordType = DestType->getPointeeType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1951 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1952 | if (FromType->getAs<PointerType>()) { |
| 1953 | FromRecordType = FromType->getPointeeType(); |
| 1954 | PointerConversions = true; |
| 1955 | } else { |
| 1956 | FromRecordType = FromType; |
| 1957 | DestType = DestRecordType; |
| 1958 | } |
| 1959 | } else { |
| 1960 | // No conversion necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1961 | return Owned(From); |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1962 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1963 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1964 | if (DestType->isDependentType() || FromType->isDependentType()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1965 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1966 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1967 | // If the unqualified types are the same, no conversion is necessary. |
| 1968 | if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1969 | return Owned(From); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1970 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1971 | SourceRange FromRange = From->getSourceRange(); |
| 1972 | SourceLocation FromLoc = FromRange.getBegin(); |
| 1973 | |
Eli Friedman | c1c0dfb | 2011-09-27 21:58:52 +0000 | [diff] [blame] | 1974 | ExprValueKind VK = From->getValueKind(); |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 1975 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1976 | // C++ [class.member.lookup]p8: |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1977 | // [...] Ambiguities can often be resolved by qualifying a name with its |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1978 | // class name. |
| 1979 | // |
| 1980 | // If the member was a qualified name and the qualified referred to a |
| 1981 | // specific base subobject type, we'll cast to that intermediate type |
| 1982 | // first and then to the object in which the member is declared. That allows |
| 1983 | // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: |
| 1984 | // |
| 1985 | // class Base { public: int x; }; |
| 1986 | // class Derived1 : public Base { }; |
| 1987 | // class Derived2 : public Base { }; |
| 1988 | // class VeryDerived : public Derived1, public Derived2 { void f(); }; |
| 1989 | // |
| 1990 | // void VeryDerived::f() { |
| 1991 | // x = 17; // error: ambiguous base subobjects |
| 1992 | // Derived1::x = 17; // okay, pick the Base subobject of Derived1 |
| 1993 | // } |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 1994 | if (Qualifier) { |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1995 | QualType QType = QualType(Qualifier->getAsType(), 0); |
| 1996 | assert(!QType.isNull() && "lookup done with dependent qualifier?"); |
| 1997 | assert(QType->isRecordType() && "lookup done with non-record type"); |
| 1998 | |
| 1999 | QualType QRecordType = QualType(QType->getAs<RecordType>(), 0); |
| 2000 | |
| 2001 | // In C++98, the qualifier type doesn't actually have to be a base |
| 2002 | // type of the object type, in which case we just ignore it. |
| 2003 | // Otherwise build the appropriate casts. |
| 2004 | if (IsDerivedFrom(FromRecordType, QRecordType)) { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2005 | CXXCastPath BasePath; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2006 | if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2007 | FromLoc, FromRange, &BasePath)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2008 | return ExprError(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2009 | |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2010 | if (PointerConversions) |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2011 | QType = Context.getPointerType(QType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2012 | From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, |
| 2013 | VK, &BasePath).take(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2014 | |
| 2015 | FromType = QType; |
| 2016 | FromRecordType = QRecordType; |
| 2017 | |
| 2018 | // If the qualifier type was the same as the destination type, |
| 2019 | // we're done. |
| 2020 | if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2021 | return Owned(From); |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2022 | } |
| 2023 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2024 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2025 | bool IgnoreAccess = false; |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2026 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2027 | // If we actually found the member through a using declaration, cast |
| 2028 | // down to the using declaration's type. |
| 2029 | // |
| 2030 | // Pointer equality is fine here because only one declaration of a |
| 2031 | // class ever has member declarations. |
| 2032 | if (FoundDecl->getDeclContext() != Member->getDeclContext()) { |
| 2033 | assert(isa<UsingShadowDecl>(FoundDecl)); |
| 2034 | QualType URecordType = Context.getTypeDeclType( |
| 2035 | cast<CXXRecordDecl>(FoundDecl->getDeclContext())); |
| 2036 | |
| 2037 | // We only need to do this if the naming-class to declaring-class |
| 2038 | // conversion is non-trivial. |
| 2039 | if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) { |
| 2040 | assert(IsDerivedFrom(FromRecordType, URecordType)); |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2041 | CXXCastPath BasePath; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2042 | if (CheckDerivedToBaseConversion(FromRecordType, URecordType, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2043 | FromLoc, FromRange, &BasePath)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2044 | return ExprError(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 2045 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2046 | QualType UType = URecordType; |
| 2047 | if (PointerConversions) |
| 2048 | UType = Context.getPointerType(UType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2049 | From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase, |
| 2050 | VK, &BasePath).take(); |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2051 | FromType = UType; |
| 2052 | FromRecordType = URecordType; |
| 2053 | } |
| 2054 | |
| 2055 | // We don't do access control for the conversion from the |
| 2056 | // declaring class to the true declaring class. |
| 2057 | IgnoreAccess = true; |
Douglas Gregor | 5fccd36 | 2010-03-03 23:55:11 +0000 | [diff] [blame] | 2058 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2059 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 2060 | CXXCastPath BasePath; |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 2061 | if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, |
| 2062 | FromLoc, FromRange, &BasePath, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 2063 | IgnoreAccess)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2064 | return ExprError(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2065 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2066 | return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, |
| 2067 | VK, &BasePath); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 2068 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 2069 | |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2070 | bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2071 | const LookupResult &R, |
| 2072 | bool HasTrailingLParen) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2073 | // Only when used directly as the postfix-expression of a call. |
| 2074 | if (!HasTrailingLParen) |
| 2075 | return false; |
| 2076 | |
| 2077 | // Never if a scope specifier was provided. |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2078 | if (SS.isSet()) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2079 | return false; |
| 2080 | |
| 2081 | // Only in C++ or ObjC++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2082 | if (!getLangOpts().CPlusPlus) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2083 | return false; |
| 2084 | |
| 2085 | // Turn off ADL when we find certain kinds of declarations during |
| 2086 | // normal lookup: |
| 2087 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 2088 | NamedDecl *D = *I; |
| 2089 | |
| 2090 | // C++0x [basic.lookup.argdep]p3: |
| 2091 | // -- a declaration of a class member |
| 2092 | // Since using decls preserve this property, we check this on the |
| 2093 | // original decl. |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 2094 | if (D->isCXXClassMember()) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2095 | return false; |
| 2096 | |
| 2097 | // C++0x [basic.lookup.argdep]p3: |
| 2098 | // -- a block-scope function declaration that is not a |
| 2099 | // using-declaration |
| 2100 | // NOTE: we also trigger this for function templates (in fact, we |
| 2101 | // don't check the decl type at all, since all other decl types |
| 2102 | // turn off ADL anyway). |
| 2103 | if (isa<UsingShadowDecl>(D)) |
| 2104 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 2105 | else if (D->getDeclContext()->isFunctionOrMethod()) |
| 2106 | return false; |
| 2107 | |
| 2108 | // C++0x [basic.lookup.argdep]p3: |
| 2109 | // -- a declaration that is neither a function or a function |
| 2110 | // template |
| 2111 | // And also for builtin functions. |
| 2112 | if (isa<FunctionDecl>(D)) { |
| 2113 | FunctionDecl *FDecl = cast<FunctionDecl>(D); |
| 2114 | |
| 2115 | // But also builtin functions. |
| 2116 | if (FDecl->getBuiltinID() && FDecl->isImplicit()) |
| 2117 | return false; |
| 2118 | } else if (!isa<FunctionTemplateDecl>(D)) |
| 2119 | return false; |
| 2120 | } |
| 2121 | |
| 2122 | return true; |
| 2123 | } |
| 2124 | |
| 2125 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2126 | /// Diagnoses obvious problems with the use of the given declaration |
| 2127 | /// as an expression. This is only actually called for lookups that |
| 2128 | /// were not overloaded, and it doesn't promise that the declaration |
| 2129 | /// will in fact be used. |
| 2130 | static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2131 | if (isa<TypedefNameDecl>(D)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2132 | S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); |
| 2133 | return true; |
| 2134 | } |
| 2135 | |
| 2136 | if (isa<ObjCInterfaceDecl>(D)) { |
| 2137 | S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); |
| 2138 | return true; |
| 2139 | } |
| 2140 | |
| 2141 | if (isa<NamespaceDecl>(D)) { |
| 2142 | S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); |
| 2143 | return true; |
| 2144 | } |
| 2145 | |
| 2146 | return false; |
| 2147 | } |
| 2148 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2149 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2150 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2151 | LookupResult &R, |
| 2152 | bool NeedsADL) { |
John McCall | fead20c | 2009-12-08 22:45:53 +0000 | [diff] [blame] | 2153 | // If this is a single, fully-resolved result and we don't need ADL, |
| 2154 | // just build an ordinary singleton decl ref. |
Douglas Gregor | 86b8e09 | 2010-01-29 17:15:43 +0000 | [diff] [blame] | 2155 | if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>()) |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2156 | return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), |
| 2157 | R.getFoundDecl()); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2158 | |
| 2159 | // We only need to check the declaration if there's exactly one |
| 2160 | // result, because in the overloaded case the results can only be |
| 2161 | // functions and function templates. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 2162 | if (R.isSingleResult() && |
| 2163 | CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2164 | return ExprError(); |
| 2165 | |
John McCall | c373d48 | 2010-01-27 01:50:18 +0000 | [diff] [blame] | 2166 | // Otherwise, just build an unresolved lookup expression. Suppress |
| 2167 | // any lookup-related diagnostics; we'll hash these out later, when |
| 2168 | // we've picked a target. |
| 2169 | R.suppressDiagnostics(); |
| 2170 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2171 | UnresolvedLookupExpr *ULE |
Douglas Gregor | bebbe0d | 2010-12-15 01:34:56 +0000 | [diff] [blame] | 2172 | = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), |
Douglas Gregor | 4c9be89 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 2173 | SS.getWithLocInContext(Context), |
| 2174 | R.getLookupNameInfo(), |
Douglas Gregor | 5a84dec | 2010-05-23 18:57:34 +0000 | [diff] [blame] | 2175 | NeedsADL, R.isOverloadedResult(), |
| 2176 | R.begin(), R.end()); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2177 | |
| 2178 | return Owned(ULE); |
| 2179 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2180 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2181 | /// \brief Complete semantic analysis for a reference to the given declaration. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2182 | ExprResult |
John McCall | f7a1a74 | 2009-11-24 19:00:30 +0000 | [diff] [blame] | 2183 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2184 | const DeclarationNameInfo &NameInfo, |
| 2185 | NamedDecl *D) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2186 | assert(D && "Cannot refer to a NULL declaration"); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2187 | assert(!isa<FunctionTemplateDecl>(D) && |
| 2188 | "Cannot refer unambiguously to a function template"); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2189 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2190 | SourceLocation Loc = NameInfo.getLoc(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2191 | if (CheckDeclInExpr(*this, Loc, D)) |
| 2192 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2193 | |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2194 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { |
| 2195 | // Specifically diagnose references to class templates that are missing |
| 2196 | // a template argument list. |
| 2197 | Diag(Loc, diag::err_template_decl_ref) |
| 2198 | << Template << SS.getRange(); |
| 2199 | Diag(Template->getLocation(), diag::note_template_decl_here); |
| 2200 | return ExprError(); |
| 2201 | } |
| 2202 | |
| 2203 | // Make sure that we're referring to a value. |
| 2204 | ValueDecl *VD = dyn_cast<ValueDecl>(D); |
| 2205 | if (!VD) { |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2206 | Diag(Loc, diag::err_ref_non_value) |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2207 | << D << SS.getRange(); |
John McCall | 87cf670 | 2009-12-18 18:35:10 +0000 | [diff] [blame] | 2208 | Diag(D->getLocation(), diag::note_declared_at); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 2209 | return ExprError(); |
| 2210 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2211 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2212 | // Check whether this declaration can be used. Note that we suppress |
| 2213 | // this check when we're going to perform argument-dependent lookup |
| 2214 | // on this function name, because this might not be the function |
| 2215 | // that overload resolution actually selects. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2216 | if (DiagnoseUseOfDecl(VD, Loc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2217 | return ExprError(); |
| 2218 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2219 | // Only create DeclRefExpr's for valid Decl's. |
| 2220 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2221 | return ExprError(); |
| 2222 | |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 2223 | // Handle members of anonymous structs and unions. If we got here, |
| 2224 | // and the reference is to a class member indirect field, then this |
| 2225 | // must be the subject of a pointer-to-member expression. |
| 2226 | if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) |
| 2227 | if (!indirectField->isCXXClassMember()) |
| 2228 | return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), |
| 2229 | indirectField); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 2230 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 2231 | { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2232 | QualType type = VD->getType(); |
Daniel Dunbar | b20de81 | 2011-02-10 18:29:28 +0000 | [diff] [blame] | 2233 | ExprValueKind valueKind = VK_RValue; |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2234 | |
| 2235 | switch (D->getKind()) { |
| 2236 | // Ignore all the non-ValueDecl kinds. |
| 2237 | #define ABSTRACT_DECL(kind) |
| 2238 | #define VALUE(type, base) |
| 2239 | #define DECL(type, base) \ |
| 2240 | case Decl::type: |
| 2241 | #include "clang/AST/DeclNodes.inc" |
| 2242 | llvm_unreachable("invalid value decl kind"); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2243 | |
| 2244 | // These shouldn't make it here. |
| 2245 | case Decl::ObjCAtDefsField: |
| 2246 | case Decl::ObjCIvar: |
| 2247 | llvm_unreachable("forming non-member reference to ivar?"); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2248 | |
| 2249 | // Enum constants are always r-values and never references. |
| 2250 | // Unresolved using declarations are dependent. |
| 2251 | case Decl::EnumConstant: |
| 2252 | case Decl::UnresolvedUsingValue: |
| 2253 | valueKind = VK_RValue; |
| 2254 | break; |
| 2255 | |
| 2256 | // Fields and indirect fields that got here must be for |
| 2257 | // pointer-to-member expressions; we just call them l-values for |
| 2258 | // internal consistency, because this subexpression doesn't really |
| 2259 | // exist in the high-level semantics. |
| 2260 | case Decl::Field: |
| 2261 | case Decl::IndirectField: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2262 | assert(getLangOpts().CPlusPlus && |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2263 | "building reference to field in C?"); |
| 2264 | |
| 2265 | // These can't have reference type in well-formed programs, but |
| 2266 | // for internal consistency we do this anyway. |
| 2267 | type = type.getNonReferenceType(); |
| 2268 | valueKind = VK_LValue; |
| 2269 | break; |
| 2270 | |
| 2271 | // Non-type template parameters are either l-values or r-values |
| 2272 | // depending on the type. |
| 2273 | case Decl::NonTypeTemplateParm: { |
| 2274 | if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { |
| 2275 | type = reftype->getPointeeType(); |
| 2276 | valueKind = VK_LValue; // even if the parameter is an r-value reference |
| 2277 | break; |
| 2278 | } |
| 2279 | |
| 2280 | // For non-references, we need to strip qualifiers just in case |
| 2281 | // the template parameter was declared as 'const int' or whatever. |
| 2282 | valueKind = VK_RValue; |
| 2283 | type = type.getUnqualifiedType(); |
| 2284 | break; |
| 2285 | } |
| 2286 | |
| 2287 | case Decl::Var: |
| 2288 | // In C, "extern void blah;" is valid and is an r-value. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2289 | if (!getLangOpts().CPlusPlus && |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2290 | !type.hasQualifiers() && |
| 2291 | type->isVoidType()) { |
| 2292 | valueKind = VK_RValue; |
| 2293 | break; |
| 2294 | } |
| 2295 | // fallthrough |
| 2296 | |
| 2297 | case Decl::ImplicitParam: |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2298 | case Decl::ParmVar: { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2299 | // These are always l-values. |
| 2300 | valueKind = VK_LValue; |
| 2301 | type = type.getNonReferenceType(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 2302 | |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2303 | // FIXME: Does the addition of const really only apply in |
| 2304 | // potentially-evaluated contexts? Since the variable isn't actually |
| 2305 | // captured in an unevaluated context, it seems that the answer is no. |
| 2306 | if (ExprEvalContexts.back().Context != Sema::Unevaluated) { |
| 2307 | QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc); |
| 2308 | if (!CapturedType.isNull()) |
| 2309 | type = CapturedType; |
| 2310 | } |
| 2311 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2312 | break; |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2315 | case Decl::Function: { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2316 | const FunctionType *fty = type->castAs<FunctionType>(); |
| 2317 | |
| 2318 | // If we're referring to a function with an __unknown_anytype |
| 2319 | // result type, make the entire expression __unknown_anytype. |
| 2320 | if (fty->getResultType() == Context.UnknownAnyTy) { |
| 2321 | type = Context.UnknownAnyTy; |
| 2322 | valueKind = VK_RValue; |
| 2323 | break; |
| 2324 | } |
| 2325 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2326 | // Functions are l-values in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2327 | if (getLangOpts().CPlusPlus) { |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2328 | valueKind = VK_LValue; |
| 2329 | break; |
| 2330 | } |
| 2331 | |
| 2332 | // C99 DR 316 says that, if a function type comes from a |
| 2333 | // function definition (without a prototype), that type is only |
| 2334 | // used for checking compatibility. Therefore, when referencing |
| 2335 | // the function, we pretend that we don't have the full function |
| 2336 | // type. |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2337 | if (!cast<FunctionDecl>(VD)->hasPrototype() && |
| 2338 | isa<FunctionProtoType>(fty)) |
| 2339 | type = Context.getFunctionNoProtoType(fty->getResultType(), |
| 2340 | fty->getExtInfo()); |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2341 | |
| 2342 | // Functions are r-values in C. |
| 2343 | valueKind = VK_RValue; |
| 2344 | break; |
| 2345 | } |
| 2346 | |
| 2347 | case Decl::CXXMethod: |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2348 | // If we're referring to a method with an __unknown_anytype |
| 2349 | // result type, make the entire expression __unknown_anytype. |
| 2350 | // This should only be possible with a type written directly. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 2351 | if (const FunctionProtoType *proto |
| 2352 | = dyn_cast<FunctionProtoType>(VD->getType())) |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2353 | if (proto->getResultType() == Context.UnknownAnyTy) { |
| 2354 | type = Context.UnknownAnyTy; |
| 2355 | valueKind = VK_RValue; |
| 2356 | break; |
| 2357 | } |
| 2358 | |
John McCall | 76a4021 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 2359 | // C++ methods are l-values if static, r-values if non-static. |
| 2360 | if (cast<CXXMethodDecl>(VD)->isStatic()) { |
| 2361 | valueKind = VK_LValue; |
| 2362 | break; |
| 2363 | } |
| 2364 | // fallthrough |
| 2365 | |
| 2366 | case Decl::CXXConversion: |
| 2367 | case Decl::CXXDestructor: |
| 2368 | case Decl::CXXConstructor: |
| 2369 | valueKind = VK_RValue; |
| 2370 | break; |
| 2371 | } |
| 2372 | |
| 2373 | return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS); |
| 2374 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2375 | } |
| 2376 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 2377 | ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 2378 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2379 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2380 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2381 | default: llvm_unreachable("Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 2382 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 2383 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 2384 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2385 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 2386 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 2387 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 2388 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2389 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2390 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
Fariborz Jahanian | eb024ac | 2010-07-23 21:53:24 +0000 | [diff] [blame] | 2391 | if (!currentDecl && getCurBlock()) |
| 2392 | currentDecl = getCurBlock()->TheDecl; |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2393 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 2394 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 2395 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 2396 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2397 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2398 | QualType ResTy; |
| 2399 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 2400 | ResTy = Context.DependentTy; |
| 2401 | } else { |
Anders Carlsson | 848fa64 | 2010-02-11 18:20:28 +0000 | [diff] [blame] | 2402 | unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2403 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2404 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2405 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 2406 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 2407 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2408 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2409 | } |
| 2410 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2411 | ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) { |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2412 | SmallString<16> CharBuffer; |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2413 | bool Invalid = false; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2414 | StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2415 | if (Invalid) |
| 2416 | return ExprError(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2417 | |
Benjamin Kramer | ddeea56 | 2010-02-27 13:44:12 +0000 | [diff] [blame] | 2418 | CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2419 | PP, Tok.getKind()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2420 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2421 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 2422 | |
Chris Lattner | e8337df | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 2423 | QualType Ty; |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2424 | if (Literal.isWide()) |
| 2425 | Ty = Context.WCharTy; // L'x' -> wchar_t in C and C++. |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2426 | else if (Literal.isUTF16()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2427 | Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11. |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2428 | else if (Literal.isUTF32()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2429 | Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2430 | else if (!getLangOpts().CPlusPlus || Literal.isMultiChar()) |
Seth Cantrell | 79f0a82 | 2012-01-18 12:27:06 +0000 | [diff] [blame] | 2431 | Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++. |
Chris Lattner | e8337df | 2009-12-30 21:19:39 +0000 | [diff] [blame] | 2432 | else |
| 2433 | Ty = Context.CharTy; // 'x' -> char in C++ |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 2434 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2435 | CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; |
| 2436 | if (Literal.isWide()) |
| 2437 | Kind = CharacterLiteral::Wide; |
| 2438 | else if (Literal.isUTF16()) |
| 2439 | Kind = CharacterLiteral::UTF16; |
| 2440 | else if (Literal.isUTF32()) |
| 2441 | Kind = CharacterLiteral::UTF32; |
| 2442 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 2443 | Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, |
| 2444 | Tok.getLocation()); |
| 2445 | |
| 2446 | if (Literal.getUDSuffix().empty()) |
| 2447 | return Owned(Lit); |
| 2448 | |
| 2449 | // We're building a user-defined literal. |
| 2450 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
| 2451 | SourceLocation UDSuffixLoc = |
| 2452 | getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); |
| 2453 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2454 | // Make sure we're allowed user-defined literals here. |
| 2455 | if (!UDLScope) |
| 2456 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl)); |
| 2457 | |
Richard Smith | dd66be7 | 2012-03-08 01:34:56 +0000 | [diff] [blame] | 2458 | // C++11 [lex.ext]p6: The literal L is treated as a call of the form |
| 2459 | // operator "" X (ch) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2460 | return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, |
| 2461 | llvm::makeArrayRef(&Lit, 1), |
| 2462 | Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2463 | } |
| 2464 | |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2465 | ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) { |
| 2466 | unsigned IntSize = Context.getTargetInfo().getIntWidth(); |
| 2467 | return Owned(IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), |
| 2468 | Context.IntTy, Loc)); |
| 2469 | } |
| 2470 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2471 | static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal, |
| 2472 | QualType Ty, SourceLocation Loc) { |
| 2473 | const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); |
| 2474 | |
| 2475 | using llvm::APFloat; |
| 2476 | APFloat Val(Format); |
| 2477 | |
| 2478 | APFloat::opStatus result = Literal.GetFloatValue(Val); |
| 2479 | |
| 2480 | // Overflow is always an error, but underflow is only an error if |
| 2481 | // we underflowed to zero (APFloat reports denormals as underflow). |
| 2482 | if ((result & APFloat::opOverflow) || |
| 2483 | ((result & APFloat::opUnderflow) && Val.isZero())) { |
| 2484 | unsigned diagnostic; |
| 2485 | SmallString<20> buffer; |
| 2486 | if (result & APFloat::opOverflow) { |
| 2487 | diagnostic = diag::warn_float_overflow; |
| 2488 | APFloat::getLargest(Format).toString(buffer); |
| 2489 | } else { |
| 2490 | diagnostic = diag::warn_float_underflow; |
| 2491 | APFloat::getSmallest(Format).toString(buffer); |
| 2492 | } |
| 2493 | |
| 2494 | S.Diag(Loc, diagnostic) |
| 2495 | << Ty |
| 2496 | << StringRef(buffer.data(), buffer.size()); |
| 2497 | } |
| 2498 | |
| 2499 | bool isExact = (result == APFloat::opOK); |
| 2500 | return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc); |
| 2501 | } |
| 2502 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2503 | ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2504 | // 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] | 2505 | // cannot have a trigraph, escaped newline, radix prefix, or suffix. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2506 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 2507 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 2508 | return ActOnIntegerConstant(Tok.getLocation(), Val-'0'); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2509 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 2510 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2511 | SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 2512 | // Add padding so that NumericLiteralParser can overread by one character. |
| 2513 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2514 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2515 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2516 | // Get the spelling of the token, which eliminates trigraphs, etc. |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 2517 | bool Invalid = false; |
| 2518 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid); |
| 2519 | if (Invalid) |
| 2520 | return ExprError(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2521 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2522 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2523 | Tok.getLocation(), PP); |
| 2524 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2525 | return ExprError(); |
| 2526 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2527 | if (Literal.hasUDSuffix()) { |
| 2528 | // We're building a user-defined literal. |
| 2529 | IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); |
| 2530 | SourceLocation UDSuffixLoc = |
| 2531 | getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); |
| 2532 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2533 | // Make sure we're allowed user-defined literals here. |
| 2534 | if (!UDLScope) |
| 2535 | return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl)); |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2536 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2537 | QualType CookedTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2538 | if (Literal.isFloatingLiteral()) { |
| 2539 | // C++11 [lex.ext]p4: If S contains a literal operator with parameter type |
| 2540 | // long double, the literal is treated as a call of the form |
| 2541 | // operator "" X (f L) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2542 | CookedTy = Context.LongDoubleTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2543 | } else { |
| 2544 | // C++11 [lex.ext]p3: If S contains a literal operator with parameter type |
| 2545 | // unsigned long long, the literal is treated as a call of the form |
| 2546 | // operator "" X (n ULL) |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2547 | CookedTy = Context.UnsignedLongLongTy; |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2548 | } |
| 2549 | |
Richard Smith | 36f5cfe | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 2550 | DeclarationName OpName = |
| 2551 | Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); |
| 2552 | DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); |
| 2553 | OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); |
| 2554 | |
| 2555 | // Perform literal operator lookup to determine if we're building a raw |
| 2556 | // literal or a cooked one. |
| 2557 | LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); |
| 2558 | switch (LookupLiteralOperator(UDLScope, R, llvm::makeArrayRef(&CookedTy, 1), |
| 2559 | /*AllowRawAndTemplate*/true)) { |
| 2560 | case LOLR_Error: |
| 2561 | return ExprError(); |
| 2562 | |
| 2563 | case LOLR_Cooked: { |
| 2564 | Expr *Lit; |
| 2565 | if (Literal.isFloatingLiteral()) { |
| 2566 | Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); |
| 2567 | } else { |
| 2568 | llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); |
| 2569 | if (Literal.GetIntegerValue(ResultVal)) |
| 2570 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
| 2571 | Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, |
| 2572 | Tok.getLocation()); |
| 2573 | } |
| 2574 | return BuildLiteralOperatorCall(R, OpNameInfo, |
| 2575 | llvm::makeArrayRef(&Lit, 1), |
| 2576 | Tok.getLocation()); |
| 2577 | } |
| 2578 | |
| 2579 | case LOLR_Raw: { |
| 2580 | // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the |
| 2581 | // literal is treated as a call of the form |
| 2582 | // operator "" X ("n") |
| 2583 | SourceLocation TokLoc = Tok.getLocation(); |
| 2584 | unsigned Length = Literal.getUDSuffixOffset(); |
| 2585 | QualType StrTy = Context.getConstantArrayType( |
| 2586 | Context.CharTy, llvm::APInt(32, Length + 1), |
| 2587 | ArrayType::Normal, 0); |
| 2588 | Expr *Lit = StringLiteral::Create( |
| 2589 | Context, StringRef(ThisTokBegin, Length), StringLiteral::Ascii, |
| 2590 | /*Pascal*/false, StrTy, &TokLoc, 1); |
| 2591 | return BuildLiteralOperatorCall(R, OpNameInfo, |
| 2592 | llvm::makeArrayRef(&Lit, 1), TokLoc); |
| 2593 | } |
| 2594 | |
| 2595 | case LOLR_Template: |
| 2596 | // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator |
| 2597 | // template), L is treated as a call fo the form |
| 2598 | // operator "" X <'c1', 'c2', ... 'ck'>() |
| 2599 | // where n is the source character sequence c1 c2 ... ck. |
| 2600 | TemplateArgumentListInfo ExplicitArgs; |
| 2601 | unsigned CharBits = Context.getIntWidth(Context.CharTy); |
| 2602 | bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); |
| 2603 | llvm::APSInt Value(CharBits, CharIsUnsigned); |
| 2604 | for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) { |
| 2605 | Value = ThisTokBegin[I]; |
| 2606 | TemplateArgument Arg(Value, Context.CharTy); |
| 2607 | TemplateArgumentLocInfo ArgInfo; |
| 2608 | ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); |
| 2609 | } |
| 2610 | return BuildLiteralOperatorCall(R, OpNameInfo, ArrayRef<Expr*>(), |
| 2611 | Tok.getLocation(), &ExplicitArgs); |
| 2612 | } |
| 2613 | |
| 2614 | llvm_unreachable("unexpected literal operator lookup result"); |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2615 | } |
| 2616 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2617 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2618 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2619 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2620 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2621 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2622 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2623 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 2624 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2625 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 2626 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 2627 | |
Richard Smith | b453ad3 | 2012-03-08 08:45:32 +0000 | [diff] [blame] | 2628 | Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2629 | |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2630 | if (Ty == Context.DoubleTy) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2631 | if (getLangOpts().SinglePrecisionConstants) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2632 | Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2633 | } else if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp64) { |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2634 | Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2635 | Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); |
Peter Collingbourne | f4f7cb8 | 2011-03-11 19:24:59 +0000 | [diff] [blame] | 2636 | } |
| 2637 | } |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2638 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2639 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2640 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2641 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2642 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 2643 | // long long is a C99 feature. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2644 | if (!getLangOpts().C99 && Literal.isLongLong) |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 2645 | Diag(Tok.getLocation(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2646 | getLangOpts().CPlusPlus0x ? |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 2647 | diag::warn_cxx98_compat_longlong : diag::ext_longlong); |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 2648 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2649 | // Get the value in the widest-possible width. |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2650 | llvm::APInt ResultVal(Context.getTargetInfo().getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2651 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2652 | if (Literal.GetIntegerValue(ResultVal)) { |
| 2653 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 2654 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2655 | Ty = Context.UnsignedLongLongTy; |
| 2656 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 2657 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2658 | } else { |
| 2659 | // If this value fits into a ULL, try to figure out what else it fits into |
| 2660 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2661 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2662 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 2663 | // be an unsigned int. |
| 2664 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 2665 | |
| 2666 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2667 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 2668 | if (!Literal.isLong && !Literal.isLongLong) { |
| 2669 | // Are int/unsigned possibilities? |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2670 | unsigned IntSize = Context.getTargetInfo().getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2671 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2672 | // Does it fit in a unsigned int? |
| 2673 | if (ResultVal.isIntN(IntSize)) { |
| 2674 | // Does it fit in a signed int? |
| 2675 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2676 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2677 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2678 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2679 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2680 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2681 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2682 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2683 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2684 | if (Ty.isNull() && !Literal.isLongLong) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2685 | unsigned LongSize = Context.getTargetInfo().getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2686 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2687 | // Does it fit in a unsigned long? |
| 2688 | if (ResultVal.isIntN(LongSize)) { |
| 2689 | // Does it fit in a signed long? |
| 2690 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2691 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2692 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2693 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2694 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2695 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2696 | } |
| 2697 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2698 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2699 | if (Ty.isNull()) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2700 | unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2701 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2702 | // Does it fit in a unsigned long long? |
| 2703 | if (ResultVal.isIntN(LongLongSize)) { |
| 2704 | // Does it fit in a signed long long? |
Francois Pichet | 2432320 | 2011-01-11 23:38:13 +0000 | [diff] [blame] | 2705 | // To be compatible with MSVC, hex integer literals ending with the |
| 2706 | // LL or i64 suffix are always signed in Microsoft mode. |
Francois Pichet | a15a5ee | 2011-01-11 12:23:00 +0000 | [diff] [blame] | 2707 | if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2708 | (getLangOpts().MicrosoftExt && Literal.isLongLong))) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2709 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2710 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2711 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2712 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2713 | } |
| 2714 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2715 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2716 | // If we still couldn't decide a type, we probably have something that |
| 2717 | // 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] | 2718 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2719 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2720 | Ty = Context.UnsignedLongLongTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2721 | Width = Context.getTargetInfo().getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2722 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2723 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 2724 | if (ResultVal.getBitWidth() != Width) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 2725 | ResultVal = ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2726 | } |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 2727 | Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2728 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2729 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 2730 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 2731 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2732 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2733 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2734 | |
| 2735 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2736 | } |
| 2737 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2738 | ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2739 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2740 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2741 | } |
| 2742 | |
Chandler Carruth | df1f377 | 2011-05-26 08:53:12 +0000 | [diff] [blame] | 2743 | static bool CheckVecStepTraitOperandType(Sema &S, QualType T, |
| 2744 | SourceLocation Loc, |
| 2745 | SourceRange ArgRange) { |
| 2746 | // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in |
| 2747 | // scalar or vector data type argument..." |
| 2748 | // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic |
| 2749 | // type (C99 6.2.5p18) or void. |
| 2750 | if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { |
| 2751 | S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) |
| 2752 | << T << ArgRange; |
| 2753 | return true; |
| 2754 | } |
| 2755 | |
| 2756 | assert((T->isVoidType() || !T->isIncompleteType()) && |
| 2757 | "Scalar types should always be complete"); |
| 2758 | return false; |
| 2759 | } |
| 2760 | |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 2761 | static bool CheckExtensionTraitOperandType(Sema &S, QualType T, |
| 2762 | SourceLocation Loc, |
| 2763 | SourceRange ArgRange, |
| 2764 | UnaryExprOrTypeTrait TraitKind) { |
| 2765 | // C99 6.5.3.4p1: |
| 2766 | if (T->isFunctionType()) { |
| 2767 | // alignof(function) is allowed as an extension. |
| 2768 | if (TraitKind == UETT_SizeOf) |
| 2769 | S.Diag(Loc, diag::ext_sizeof_function_type) << ArgRange; |
| 2770 | return false; |
| 2771 | } |
| 2772 | |
| 2773 | // Allow sizeof(void)/alignof(void) as an extension. |
| 2774 | if (T->isVoidType()) { |
| 2775 | S.Diag(Loc, diag::ext_sizeof_void_type) << TraitKind << ArgRange; |
| 2776 | return false; |
| 2777 | } |
| 2778 | |
| 2779 | return true; |
| 2780 | } |
| 2781 | |
| 2782 | static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, |
| 2783 | SourceLocation Loc, |
| 2784 | SourceRange ArgRange, |
| 2785 | UnaryExprOrTypeTrait TraitKind) { |
| 2786 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
| 2787 | if (S.LangOpts.ObjCNonFragileABI && T->isObjCObjectType()) { |
| 2788 | S.Diag(Loc, diag::err_sizeof_nonfragile_interface) |
| 2789 | << T << (TraitKind == UETT_SizeOf) |
| 2790 | << ArgRange; |
| 2791 | return true; |
| 2792 | } |
| 2793 | |
| 2794 | return false; |
| 2795 | } |
| 2796 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2797 | /// \brief Check the constrains on expression operands to unary type expression |
| 2798 | /// and type traits. |
| 2799 | /// |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2800 | /// Completes any types necessary and validates the constraints on the operand |
| 2801 | /// expression. The logic mostly mirrors the type-based overload, but may modify |
| 2802 | /// the expression as it completes the type for that expression through template |
| 2803 | /// instantiation, etc. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2804 | bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2805 | UnaryExprOrTypeTrait ExprKind) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2806 | QualType ExprTy = E->getType(); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2807 | |
| 2808 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 2809 | // the result is the size of the referenced type." |
| 2810 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 2811 | // result shall be the alignment of the referenced type." |
| 2812 | if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) |
| 2813 | ExprTy = Ref->getPointeeType(); |
| 2814 | |
| 2815 | if (ExprKind == UETT_VecStep) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2816 | return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), |
| 2817 | E->getSourceRange()); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2818 | |
| 2819 | // Whitelist some types as extensions |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2820 | if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), |
| 2821 | E->getSourceRange(), ExprKind)) |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2822 | return false; |
| 2823 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2824 | if (RequireCompleteExprType(E, |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2825 | PDiag(diag::err_sizeof_alignof_incomplete_type) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2826 | << ExprKind << E->getSourceRange(), |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2827 | std::make_pair(SourceLocation(), PDiag(0)))) |
| 2828 | return true; |
| 2829 | |
| 2830 | // Completeing the expression's type may have changed it. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2831 | ExprTy = E->getType(); |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2832 | if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) |
| 2833 | ExprTy = Ref->getPointeeType(); |
| 2834 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2835 | if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), |
| 2836 | E->getSourceRange(), ExprKind)) |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2837 | return true; |
| 2838 | |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 2839 | if (ExprKind == UETT_SizeOf) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2840 | if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 2841 | if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { |
| 2842 | QualType OType = PVD->getOriginalType(); |
| 2843 | QualType Type = PVD->getType(); |
| 2844 | if (Type->isPointerType() && OType->isArrayType()) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2845 | Diag(E->getExprLoc(), diag::warn_sizeof_array_param) |
Nico Weber | cf73992 | 2011-06-15 02:47:03 +0000 | [diff] [blame] | 2846 | << Type << OType; |
| 2847 | Diag(PVD->getLocation(), diag::note_declared_at); |
| 2848 | } |
| 2849 | } |
| 2850 | } |
| 2851 | } |
| 2852 | |
Chandler Carruth | e4d645c | 2011-05-27 01:33:31 +0000 | [diff] [blame] | 2853 | return false; |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2854 | } |
| 2855 | |
| 2856 | /// \brief Check the constraints on operands to unary expression and type |
| 2857 | /// traits. |
| 2858 | /// |
| 2859 | /// This will complete any types necessary, and validate the various constraints |
| 2860 | /// on those operands. |
| 2861 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2862 | /// The UsualUnaryConversions() function is *not* called by this routine. |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2863 | /// C99 6.3.2.1p[2-4] all state: |
| 2864 | /// Except when it is the operand of the sizeof operator ... |
| 2865 | /// |
| 2866 | /// C++ [expr.sizeof]p4 |
| 2867 | /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer |
| 2868 | /// standard conversions are not applied to the operand of sizeof. |
| 2869 | /// |
| 2870 | /// This policy is followed for all of the unary trait expressions. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2871 | bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2872 | SourceLocation OpLoc, |
| 2873 | SourceRange ExprRange, |
| 2874 | UnaryExprOrTypeTrait ExprKind) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2875 | if (ExprType->isDependentType()) |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2876 | return false; |
| 2877 | |
Sebastian Redl | 5d484e8 | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 2878 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 2879 | // the result is the size of the referenced type." |
| 2880 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 2881 | // result shall be the alignment of the referenced type." |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2882 | if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) |
| 2883 | ExprType = Ref->getPointeeType(); |
Sebastian Redl | 5d484e8 | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 2884 | |
Chandler Carruth | df1f377 | 2011-05-26 08:53:12 +0000 | [diff] [blame] | 2885 | if (ExprKind == UETT_VecStep) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2886 | return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2887 | |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 2888 | // Whitelist some types as extensions |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2889 | if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 2890 | ExprKind)) |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 2891 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2892 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2893 | if (RequireCompleteType(OpLoc, ExprType, |
Douglas Gregor | 5cc07df | 2009-12-15 16:44:32 +0000 | [diff] [blame] | 2894 | PDiag(diag::err_sizeof_alignof_incomplete_type) |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2895 | << ExprKind << ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 2896 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2897 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 2898 | if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, |
Chandler Carruth | 42ec65d | 2011-05-26 08:53:16 +0000 | [diff] [blame] | 2899 | ExprKind)) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 2900 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2901 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 2902 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2903 | } |
| 2904 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2905 | static bool CheckAlignOfExpr(Sema &S, Expr *E) { |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 2906 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2907 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2908 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 2909 | if (isa<DeclRefExpr>(E)) |
| 2910 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 2911 | |
| 2912 | // Cannot know anything else if the expression is dependent. |
| 2913 | if (E->isTypeDependent()) |
| 2914 | return false; |
| 2915 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2916 | if (E->getBitField()) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2917 | S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) |
| 2918 | << 1 << E->getSourceRange(); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2919 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 2920 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2921 | |
| 2922 | // Alignment of a field access is always okay, so long as it isn't a |
| 2923 | // bit-field. |
| 2924 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 2925 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2926 | return false; |
| 2927 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2928 | return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2929 | } |
| 2930 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2931 | bool Sema::CheckVecStepExpr(Expr *E) { |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2932 | E = E->IgnoreParens(); |
| 2933 | |
| 2934 | // Cannot know anything else if the expression is dependent. |
| 2935 | if (E->isTypeDependent()) |
| 2936 | return false; |
| 2937 | |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2938 | return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 2939 | } |
| 2940 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2941 | /// \brief Build a sizeof or alignof expression given a type operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2942 | ExprResult |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2943 | Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, |
| 2944 | SourceLocation OpLoc, |
| 2945 | UnaryExprOrTypeTrait ExprKind, |
| 2946 | SourceRange R) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2947 | if (!TInfo) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2948 | return ExprError(); |
| 2949 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2950 | QualType T = TInfo->getType(); |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 2951 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2952 | if (!T->isDependentType() && |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2953 | CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2954 | return ExprError(); |
| 2955 | |
| 2956 | // 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] | 2957 | return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, TInfo, |
| 2958 | Context.getSizeType(), |
| 2959 | OpLoc, R.getEnd())); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2960 | } |
| 2961 | |
| 2962 | /// \brief Build a sizeof or alignof expression given an expression |
| 2963 | /// operand. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 2964 | ExprResult |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 2965 | Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, |
| 2966 | UnaryExprOrTypeTrait ExprKind) { |
Douglas Gregor | 4f0845e | 2011-06-22 23:21:00 +0000 | [diff] [blame] | 2967 | ExprResult PE = CheckPlaceholderExpr(E); |
| 2968 | if (PE.isInvalid()) |
| 2969 | return ExprError(); |
| 2970 | |
| 2971 | E = PE.get(); |
| 2972 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2973 | // Verify that the operand is valid. |
| 2974 | bool isInvalid = false; |
| 2975 | if (E->isTypeDependent()) { |
| 2976 | // Delay type-checking for type-dependent expressions. |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2977 | } else if (ExprKind == UETT_AlignOf) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2978 | isInvalid = CheckAlignOfExpr(*this, E); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2979 | } else if (ExprKind == UETT_VecStep) { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2980 | isInvalid = CheckVecStepExpr(E); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 2981 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2982 | Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2983 | isInvalid = true; |
| 2984 | } else { |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 2985 | isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2986 | } |
| 2987 | |
| 2988 | if (isInvalid) |
| 2989 | return ExprError(); |
| 2990 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 2991 | if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { |
| 2992 | PE = TranformToPotentiallyEvaluated(E); |
| 2993 | if (PE.isInvalid()) return ExprError(); |
| 2994 | E = PE.take(); |
| 2995 | } |
| 2996 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 2997 | // 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] | 2998 | return Owned(new (Context) UnaryExprOrTypeTraitExpr( |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 2999 | ExprKind, E, Context.getSizeType(), OpLoc, |
Chandler Carruth | 9d342d0 | 2011-05-26 08:53:10 +0000 | [diff] [blame] | 3000 | E->getSourceRange().getEnd())); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3001 | } |
| 3002 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3003 | /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c |
| 3004 | /// expr and the same for @c alignof and @c __alignof |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3005 | /// Note that the ArgRange is invalid if isType is false. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3006 | ExprResult |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3007 | Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3008 | UnaryExprOrTypeTrait ExprKind, bool IsType, |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3009 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3010 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3011 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3012 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3013 | if (IsType) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3014 | TypeSourceInfo *TInfo; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3015 | (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3016 | return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3017 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3018 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3019 | Expr *ArgEx = (Expr *)TyOrEx; |
Chandler Carruth | e72c55b | 2011-05-29 07:32:14 +0000 | [diff] [blame] | 3020 | ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 3021 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3022 | } |
| 3023 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3024 | static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3025 | bool IsReal) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3026 | if (V.get()->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3027 | return S.Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3028 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3029 | // _Real and _Imag are only l-values for normal l-values. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3030 | if (V.get()->getObjectKind() != OK_Ordinary) { |
| 3031 | V = S.DefaultLvalueConversion(V.take()); |
| 3032 | if (V.isInvalid()) |
| 3033 | return QualType(); |
| 3034 | } |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3035 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3036 | // These operators return the element type of a complex type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3037 | if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 3038 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3039 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3040 | // Otherwise they pass through real integer and floating point types here. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3041 | if (V.get()->getType()->isArithmeticType()) |
| 3042 | return V.get()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3043 | |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3044 | // Test for placeholders. |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 3045 | ExprResult PR = S.CheckPlaceholderExpr(V.get()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3046 | if (PR.isInvalid()) return QualType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3047 | if (PR.get() != V.get()) { |
| 3048 | V = move(PR); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3049 | return CheckRealImagOperand(S, V, Loc, IsReal); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 3050 | } |
| 3051 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3052 | // Reject anything else. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3053 | S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3054 | << (IsReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 3055 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
| 3058 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3059 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3060 | ExprResult |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3061 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3062 | tok::TokenKind Kind, Expr *Input) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3063 | UnaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3064 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3065 | default: llvm_unreachable("Unknown unary op!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3066 | case tok::plusplus: Opc = UO_PostInc; break; |
| 3067 | case tok::minusminus: Opc = UO_PostDec; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3068 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3069 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 3070 | // Since this might is a postfix expression, get rid of ParenListExprs. |
| 3071 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); |
| 3072 | if (Result.isInvalid()) return ExprError(); |
| 3073 | Input = Result.take(); |
| 3074 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3075 | return BuildUnaryOp(S, OpLoc, Opc, Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3076 | } |
| 3077 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3078 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3079 | Sema::ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc, |
| 3080 | Expr *Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3081 | // Since this might be a postfix expression, get rid of ParenListExprs. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3082 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3083 | if (Result.isInvalid()) return ExprError(); |
| 3084 | Base = Result.take(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3085 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3086 | Expr *LHSExp = Base, *RHSExp = Idx; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3087 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3088 | if (getLangOpts().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3089 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3090 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3091 | Context.DependentTy, |
| 3092 | VK_LValue, OK_Ordinary, |
| 3093 | RLoc)); |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 3094 | } |
| 3095 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3096 | if (getLangOpts().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3097 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 3098 | LHSExp->getType()->isEnumeralType() || |
| 3099 | RHSExp->getType()->isRecordType() || |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3100 | RHSExp->getType()->isEnumeralType()) && |
| 3101 | !LHSExp->getType()->isObjCObjectPointerType()) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3102 | return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, Base, Idx); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 3103 | } |
| 3104 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3105 | return CreateBuiltinArraySubscriptExpr(Base, LLoc, Idx, RLoc); |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 3106 | } |
| 3107 | |
| 3108 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3109 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3110 | Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3111 | Expr *Idx, SourceLocation RLoc) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3112 | Expr *LHSExp = Base; |
| 3113 | Expr *RHSExp = Idx; |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 3114 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3115 | // Perform default conversions. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3116 | if (!LHSExp->getType()->getAs<VectorType>()) { |
| 3117 | ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); |
| 3118 | if (Result.isInvalid()) |
| 3119 | return ExprError(); |
| 3120 | LHSExp = Result.take(); |
| 3121 | } |
| 3122 | ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); |
| 3123 | if (Result.isInvalid()) |
| 3124 | return ExprError(); |
| 3125 | RHSExp = Result.take(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3126 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3127 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3128 | ExprValueKind VK = VK_LValue; |
| 3129 | ExprObjectKind OK = OK_Ordinary; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3130 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3131 | // 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] | 3132 | // 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] | 3133 | // 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] | 3134 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3135 | Expr *BaseExpr, *IndexExpr; |
| 3136 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3137 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 3138 | BaseExpr = LHSExp; |
| 3139 | IndexExpr = RHSExp; |
| 3140 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3141 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3142 | BaseExpr = LHSExp; |
| 3143 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3144 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3145 | } else if (const ObjCObjectPointerType *PTy = |
Fariborz Jahanian | a78eca2 | 2012-03-28 17:56:49 +0000 | [diff] [blame] | 3146 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3147 | BaseExpr = LHSExp; |
| 3148 | IndexExpr = RHSExp; |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 3149 | Result = BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, 0, 0); |
| 3150 | if (!Result.isInvalid()) |
| 3151 | return Owned(Result.take()); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3152 | ResultType = PTy->getPointeeType(); |
Fariborz Jahanian | a78eca2 | 2012-03-28 17:56:49 +0000 | [diff] [blame] | 3153 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
| 3154 | // Handle the uncommon case of "123[Ptr]". |
| 3155 | BaseExpr = RHSExp; |
| 3156 | IndexExpr = LHSExp; |
| 3157 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3158 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3159 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3160 | // Handle the uncommon case of "123[Ptr]". |
| 3161 | BaseExpr = RHSExp; |
| 3162 | IndexExpr = LHSExp; |
| 3163 | ResultType = PTy->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3164 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 3165 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3166 | IndexExpr = RHSExp; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3167 | VK = LHSExp->getValueKind(); |
| 3168 | if (VK != VK_RValue) |
| 3169 | OK = OK_VectorComponent; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 3170 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 3171 | // FIXME: need to deal with const... |
| 3172 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3173 | } else if (LHSTy->isArrayType()) { |
| 3174 | // If we see an array that wasn't promoted by |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 3175 | // DefaultFunctionArrayLvalueConversion, it must be an array that |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3176 | // wasn't promoted because of the C90 rule that doesn't |
| 3177 | // allow promoting non-lvalue arrays. Warn, then |
| 3178 | // force the promotion here. |
| 3179 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 3180 | LHSExp->getSourceRange(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3181 | LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 3182 | CK_ArrayToPointerDecay).take(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3183 | LHSTy = LHSExp->getType(); |
| 3184 | |
| 3185 | BaseExpr = LHSExp; |
| 3186 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3187 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3188 | } else if (RHSTy->isArrayType()) { |
| 3189 | // Same as previous, except for 123[f().a] case |
| 3190 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 3191 | RHSExp->getSourceRange(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3192 | RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 3193 | CK_ArrayToPointerDecay).take(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 3194 | RHSTy = RHSExp->getType(); |
| 3195 | |
| 3196 | BaseExpr = RHSExp; |
| 3197 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3198 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3199 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 3200 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 3201 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3202 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3203 | // C99 6.5.2.1p1 |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 3204 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 3205 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 3206 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3207 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3208 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 3209 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 3210 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 3211 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 3212 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3213 | // 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] | 3214 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 3215 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3216 | // incomplete types are not object types. |
| 3217 | if (ResultType->isFunctionType()) { |
| 3218 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 3219 | << ResultType << BaseExpr->getSourceRange(); |
| 3220 | return ExprError(); |
| 3221 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3222 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3223 | if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { |
Abramo Bagnara | 4635845 | 2010-09-13 06:50:07 +0000 | [diff] [blame] | 3224 | // GNU extension: subscripting on pointer to void |
Chandler Carruth | 6628969 | 2011-06-27 16:32:27 +0000 | [diff] [blame] | 3225 | Diag(LLoc, diag::ext_gnu_subscript_void_type) |
| 3226 | << BaseExpr->getSourceRange(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3227 | |
| 3228 | // C forbids expressions of unqualified void type from being l-values. |
| 3229 | // See IsCForbiddenLValueType. |
| 3230 | if (!ResultType.hasQualifiers()) VK = VK_RValue; |
Abramo Bagnara | 4635845 | 2010-09-13 06:50:07 +0000 | [diff] [blame] | 3231 | } else if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3232 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3233 | PDiag(diag::err_subscript_incomplete_type) |
| 3234 | << BaseExpr->getSourceRange())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3235 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3236 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 3237 | // Diagnose bad cases where we step over interface counts. |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 3238 | if (ResultType->isObjCObjectType() && LangOpts.ObjCNonFragileABI) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 3239 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 3240 | << ResultType << BaseExpr->getSourceRange(); |
| 3241 | return ExprError(); |
| 3242 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3243 | |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3244 | assert(VK == VK_RValue || LangOpts.CPlusPlus || |
Douglas Gregor | 2b1ad8b | 2011-06-23 00:49:38 +0000 | [diff] [blame] | 3245 | !ResultType.isCForbiddenLValueType()); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3246 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3247 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3248 | ResultType, VK, OK, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3249 | } |
| 3250 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3251 | ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3252 | FunctionDecl *FD, |
| 3253 | ParmVarDecl *Param) { |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3254 | if (Param->hasUnparsedDefaultArg()) { |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3255 | Diag(CallLoc, |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3256 | diag::err_use_of_default_argument_to_function_declared_later) << |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3257 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3258 | Diag(UnparsedDefaultArgLocs[Param], |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3259 | diag::note_default_argument_declared_here); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3260 | return ExprError(); |
| 3261 | } |
| 3262 | |
| 3263 | if (Param->hasUninstantiatedDefaultArg()) { |
| 3264 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3265 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3266 | // Instantiate the expression. |
| 3267 | MultiLevelTemplateArgumentList ArgList |
| 3268 | = getTemplateInstantiationArgs(FD, 0, /*RelativeToPrimary=*/true); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 3269 | |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3270 | std::pair<const TemplateArgument *, unsigned> Innermost |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3271 | = ArgList.getInnermost(); |
| 3272 | InstantiatingTemplate Inst(*this, CallLoc, Param, Innermost.first, |
| 3273 | Innermost.second); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3274 | |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3275 | ExprResult Result; |
| 3276 | { |
| 3277 | // C++ [dcl.fct.default]p5: |
| 3278 | // The names in the [default argument] expression are bound, and |
| 3279 | // the semantic constraints are checked, at the point where the |
| 3280 | // default argument expression appears. |
Nico Weber | 15d5c83 | 2010-11-30 04:44:33 +0000 | [diff] [blame] | 3281 | ContextRAII SavedContext(*this, FD); |
Douglas Gregor | 7bdc152 | 2012-02-16 21:36:18 +0000 | [diff] [blame] | 3282 | LocalInstantiationScope Local(*this); |
Nico Weber | 08e41a6 | 2010-11-29 18:19:25 +0000 | [diff] [blame] | 3283 | Result = SubstExpr(UninstExpr, ArgList); |
| 3284 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3285 | if (Result.isInvalid()) |
| 3286 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3287 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3288 | // Check the expression as an initializer for the parameter. |
| 3289 | InitializedEntity Entity |
Fariborz Jahanian | 745da3a | 2010-09-24 17:30:16 +0000 | [diff] [blame] | 3290 | = InitializedEntity::InitializeParameter(Context, Param); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3291 | InitializationKind Kind |
| 3292 | = InitializationKind::CreateCopy(Param->getLocation(), |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3293 | /*FIXME:EqualLoc*/UninstExpr->getLocStart()); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3294 | Expr *ResultE = Result.takeAs<Expr>(); |
Douglas Gregor | 65222e8 | 2009-12-23 18:19:08 +0000 | [diff] [blame] | 3295 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3296 | InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1); |
| 3297 | Result = InitSeq.Perform(*this, Entity, Kind, |
| 3298 | MultiExprArg(*this, &ResultE, 1)); |
| 3299 | if (Result.isInvalid()) |
| 3300 | return ExprError(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3301 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3302 | // Build the default argument expression. |
| 3303 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param, |
| 3304 | Result.takeAs<Expr>())); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3305 | } |
| 3306 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3307 | // If the default expression creates temporaries, we need to |
| 3308 | // push them to the current stack of expression temporaries so they'll |
| 3309 | // be properly destroyed. |
| 3310 | // FIXME: We should really be rebuilding the default argument with new |
| 3311 | // bound temporaries; see the comment in PR5810. |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 3312 | // We don't need to do that with block decls, though, because |
| 3313 | // blocks in default argument expression can never capture anything. |
| 3314 | if (isa<ExprWithCleanups>(Param->getInit())) { |
| 3315 | // Set the "needs cleanups" bit regardless of whether there are |
| 3316 | // any explicit objects. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3317 | ExprNeedsCleanups = true; |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 3318 | |
| 3319 | // Append all the objects to the cleanup list. Right now, this |
| 3320 | // should always be a no-op, because blocks in default argument |
| 3321 | // expressions should never be able to capture anything. |
| 3322 | assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && |
| 3323 | "default argument expression has capturing blocks?"); |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 3324 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 3325 | |
| 3326 | // We already type-checked the argument, so we know it works. |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 3327 | // Just mark all of the declarations in this potentially-evaluated expression |
| 3328 | // as being "referenced". |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 3329 | MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), |
| 3330 | /*SkipLocalVariables=*/true); |
Douglas Gregor | 036aed1 | 2009-12-23 23:03:06 +0000 | [diff] [blame] | 3331 | return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param)); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3332 | } |
| 3333 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3334 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 3335 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 3336 | /// function prototype Proto. Call is the call expression itself, and |
| 3337 | /// Fn is the function expression. For a C++ member function, this |
| 3338 | /// routine does not attempt to convert the object argument. Returns |
| 3339 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3340 | bool |
| 3341 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3342 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3343 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3344 | Expr **Args, unsigned NumArgs, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3345 | SourceLocation RParenLoc, |
| 3346 | bool IsExecConfig) { |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3347 | // Bail out early if calling a builtin with custom typechecking. |
| 3348 | // We don't need to do this in the |
| 3349 | if (FDecl) |
| 3350 | if (unsigned ID = FDecl->getBuiltinID()) |
| 3351 | if (Context.BuiltinInfo.hasCustomTypechecking(ID)) |
| 3352 | return false; |
| 3353 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3354 | // 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] | 3355 | // assignment, to the types of the corresponding parameter, ... |
| 3356 | unsigned NumArgsInProto = Proto->getNumArgs(); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3357 | bool Invalid = false; |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3358 | unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto; |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3359 | unsigned FnKind = Fn->getType()->isBlockPointerType() |
| 3360 | ? 1 /* block */ |
| 3361 | : (IsExecConfig ? 3 /* kernel function (exec config) */ |
| 3362 | : 0 /* function */); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3363 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3364 | // If too few arguments are available (and we don't have default |
| 3365 | // arguments for the remaining parameters), don't make the call. |
| 3366 | if (NumArgs < NumArgsInProto) { |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3367 | if (NumArgs < MinArgs) { |
| 3368 | Diag(RParenLoc, MinArgs == NumArgsInProto |
| 3369 | ? diag::err_typecheck_call_too_few_args |
| 3370 | : diag::err_typecheck_call_too_few_args_at_least) |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3371 | << FnKind |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3372 | << MinArgs << NumArgs << Fn->getSourceRange(); |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3373 | |
| 3374 | // Emit the location of the prototype. |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3375 | if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3376 | Diag(FDecl->getLocStart(), diag::note_callee_decl) |
| 3377 | << FDecl; |
| 3378 | |
| 3379 | return true; |
| 3380 | } |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3381 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3382 | } |
| 3383 | |
| 3384 | // If too many are passed and not variadic, error on the extras and drop |
| 3385 | // them. |
| 3386 | if (NumArgs > NumArgsInProto) { |
| 3387 | if (!Proto->isVariadic()) { |
| 3388 | Diag(Args[NumArgsInProto]->getLocStart(), |
Peter Collingbourne | af15b4d | 2011-10-02 23:49:20 +0000 | [diff] [blame] | 3389 | MinArgs == NumArgsInProto |
| 3390 | ? diag::err_typecheck_call_too_many_args |
| 3391 | : diag::err_typecheck_call_too_many_args_at_most) |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3392 | << FnKind |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 3393 | << NumArgsInProto << NumArgs << Fn->getSourceRange() |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3394 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 3395 | Args[NumArgs-1]->getLocEnd()); |
Ted Kremenek | 5862f0e | 2011-04-04 17:22:27 +0000 | [diff] [blame] | 3396 | |
| 3397 | // Emit the location of the prototype. |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3398 | if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) |
Peter Collingbourne | 9aab148 | 2011-07-29 00:24:42 +0000 | [diff] [blame] | 3399 | Diag(FDecl->getLocStart(), diag::note_callee_decl) |
| 3400 | << FDecl; |
Ted Kremenek | 5862f0e | 2011-04-04 17:22:27 +0000 | [diff] [blame] | 3401 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3402 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3403 | Call->setNumArgs(Context, NumArgsInProto); |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3404 | return true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3405 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3406 | } |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3407 | SmallVector<Expr *, 8> AllArgs; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3408 | VariadicCallType CallType = |
Fariborz Jahanian | 4cd1c70 | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3409 | Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply; |
| 3410 | if (Fn->getType()->isBlockPointerType()) |
| 3411 | CallType = VariadicBlock; // Block |
| 3412 | else if (isa<MemberExpr>(Fn)) |
| 3413 | CallType = VariadicMethod; |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3414 | Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl, |
Fariborz Jahanian | 2fe168f | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 3415 | Proto, 0, Args, NumArgs, AllArgs, CallType); |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3416 | if (Invalid) |
| 3417 | return true; |
| 3418 | unsigned TotalNumArgs = AllArgs.size(); |
| 3419 | for (unsigned i = 0; i < TotalNumArgs; ++i) |
| 3420 | Call->setArg(i, AllArgs[i]); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3421 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3422 | return false; |
| 3423 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3424 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3425 | bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, |
| 3426 | FunctionDecl *FDecl, |
| 3427 | const FunctionProtoType *Proto, |
| 3428 | unsigned FirstProtoArg, |
| 3429 | Expr **Args, unsigned NumArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3430 | SmallVector<Expr *, 8> &AllArgs, |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3431 | VariadicCallType CallType, |
| 3432 | bool AllowExplicit) { |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3433 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 3434 | unsigned NumArgsToCheck = NumArgs; |
| 3435 | bool Invalid = false; |
| 3436 | if (NumArgs != NumArgsInProto) |
| 3437 | // Use default arguments for missing arguments |
| 3438 | NumArgsToCheck = NumArgsInProto; |
| 3439 | unsigned ArgIx = 0; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3440 | // 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] | 3441 | for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3442 | QualType ProtoArgType = Proto->getArgType(i); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3443 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3444 | Expr *Arg; |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3445 | ParmVarDecl *Param; |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3446 | if (ArgIx < NumArgs) { |
| 3447 | Arg = Args[ArgIx++]; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3448 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3449 | if (RequireCompleteType(Arg->getLocStart(), |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3450 | ProtoArgType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3451 | PDiag(diag::err_call_incomplete_argument) |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3452 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3453 | return true; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3454 | |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3455 | // Pass the argument |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3456 | Param = 0; |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3457 | if (FDecl && i < FDecl->getNumParams()) |
| 3458 | Param = FDecl->getParamDecl(i); |
Douglas Gregor | aa03731 | 2009-12-22 07:24:36 +0000 | [diff] [blame] | 3459 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 3460 | // Strip the unbridged-cast placeholder expression off, if applicable. |
| 3461 | if (Arg->getType() == Context.ARCUnbridgedCastTy && |
| 3462 | FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && |
| 3463 | (!Param || !Param->hasAttr<CFConsumedAttr>())) |
| 3464 | Arg = stripARCUnbridgedCast(Arg); |
| 3465 | |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3466 | InitializedEntity Entity = |
Fariborz Jahanian | 745da3a | 2010-09-24 17:30:16 +0000 | [diff] [blame] | 3467 | Param? InitializedEntity::InitializeParameter(Context, Param) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3468 | : InitializedEntity::InitializeParameter(Context, ProtoArgType, |
| 3469 | Proto->isArgConsumed(i)); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3470 | ExprResult ArgE = PerformCopyInitialization(Entity, |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 3471 | SourceLocation(), |
Douglas Gregor | ed878af | 2012-02-24 23:56:31 +0000 | [diff] [blame] | 3472 | Owned(Arg), |
| 3473 | /*TopLevelOfInitList=*/false, |
| 3474 | AllowExplicit); |
Douglas Gregor | a188ff2 | 2009-12-22 16:09:06 +0000 | [diff] [blame] | 3475 | if (ArgE.isInvalid()) |
| 3476 | return true; |
| 3477 | |
| 3478 | Arg = ArgE.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3479 | } else { |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3480 | Param = FDecl->getParamDecl(i); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3481 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3482 | ExprResult ArgExpr = |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3483 | BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3484 | if (ArgExpr.isInvalid()) |
| 3485 | return true; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3486 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 3487 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 3488 | } |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 3489 | |
| 3490 | // Check for array bounds violations for each argument to the call. This |
| 3491 | // check only triggers warnings when the argument isn't a more complex Expr |
| 3492 | // with its own checking, such as a BinaryOperator. |
| 3493 | CheckArrayAccess(Arg); |
| 3494 | |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3495 | // Check for violations of C99 static array rules (C99 6.7.5.3p7). |
| 3496 | CheckStaticArrayArgument(CallLoc, Param, Arg); |
| 3497 | |
Fariborz Jahanian | 048f52a | 2009-11-24 18:29:37 +0000 | [diff] [blame] | 3498 | AllArgs.push_back(Arg); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3499 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3500 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3501 | // If this is a variadic call, handle args passed through "...". |
Fariborz Jahanian | 4cd1c70 | 2009-11-24 19:27:49 +0000 | [diff] [blame] | 3502 | if (CallType != VariadicDoesNotApply) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3503 | |
| 3504 | // Assume that extern "C" functions with variadic arguments that |
| 3505 | // return __unknown_anytype aren't *really* variadic. |
| 3506 | if (Proto->getResultType() == Context.UnknownAnyTy && |
| 3507 | FDecl && FDecl->isExternC()) { |
| 3508 | for (unsigned i = ArgIx; i != NumArgs; ++i) { |
| 3509 | ExprResult arg; |
| 3510 | if (isa<ExplicitCastExpr>(Args[i]->IgnoreParens())) |
| 3511 | arg = DefaultFunctionArrayLvalueConversion(Args[i]); |
| 3512 | else |
| 3513 | arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl); |
| 3514 | Invalid |= arg.isInvalid(); |
| 3515 | AllArgs.push_back(arg.take()); |
| 3516 | } |
| 3517 | |
| 3518 | // Otherwise do argument promotion, (C99 6.5.2.2p7). |
| 3519 | } else { |
| 3520 | for (unsigned i = ArgIx; i != NumArgs; ++i) { |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 3521 | ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, |
| 3522 | FDecl); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3523 | Invalid |= Arg.isInvalid(); |
| 3524 | AllArgs.push_back(Arg.take()); |
| 3525 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3526 | } |
Ted Kremenek | 615eb7c | 2011-09-26 23:36:13 +0000 | [diff] [blame] | 3527 | |
| 3528 | // Check for array bounds violations. |
| 3529 | for (unsigned i = ArgIx; i != NumArgs; ++i) |
| 3530 | CheckArrayAccess(Args[i]); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3531 | } |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 3532 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3533 | } |
| 3534 | |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3535 | static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { |
| 3536 | TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); |
| 3537 | if (ArrayTypeLoc *ATL = dyn_cast<ArrayTypeLoc>(&TL)) |
| 3538 | S.Diag(PVD->getLocation(), diag::note_callee_static_array) |
| 3539 | << ATL->getLocalSourceRange(); |
| 3540 | } |
| 3541 | |
| 3542 | /// CheckStaticArrayArgument - If the given argument corresponds to a static |
| 3543 | /// array parameter, check that it is non-null, and that if it is formed by |
| 3544 | /// array-to-pointer decay, the underlying array is sufficiently large. |
| 3545 | /// |
| 3546 | /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the |
| 3547 | /// array type derivation, then for each call to the function, the value of the |
| 3548 | /// corresponding actual argument shall provide access to the first element of |
| 3549 | /// an array with at least as many elements as specified by the size expression. |
| 3550 | void |
| 3551 | Sema::CheckStaticArrayArgument(SourceLocation CallLoc, |
| 3552 | ParmVarDecl *Param, |
| 3553 | const Expr *ArgExpr) { |
| 3554 | // Static array parameters are not supported in C++. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3555 | if (!Param || getLangOpts().CPlusPlus) |
Peter Collingbourne | 013e5ce | 2011-10-19 00:16:45 +0000 | [diff] [blame] | 3556 | return; |
| 3557 | |
| 3558 | QualType OrigTy = Param->getOriginalType(); |
| 3559 | |
| 3560 | const ArrayType *AT = Context.getAsArrayType(OrigTy); |
| 3561 | if (!AT || AT->getSizeModifier() != ArrayType::Static) |
| 3562 | return; |
| 3563 | |
| 3564 | if (ArgExpr->isNullPointerConstant(Context, |
| 3565 | Expr::NPC_NeverValueDependent)) { |
| 3566 | Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); |
| 3567 | DiagnoseCalleeStaticArrayParam(*this, Param); |
| 3568 | return; |
| 3569 | } |
| 3570 | |
| 3571 | const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); |
| 3572 | if (!CAT) |
| 3573 | return; |
| 3574 | |
| 3575 | const ConstantArrayType *ArgCAT = |
| 3576 | Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); |
| 3577 | if (!ArgCAT) |
| 3578 | return; |
| 3579 | |
| 3580 | if (ArgCAT->getSize().ult(CAT->getSize())) { |
| 3581 | Diag(CallLoc, diag::warn_static_array_too_small) |
| 3582 | << ArgExpr->getSourceRange() |
| 3583 | << (unsigned) ArgCAT->getSize().getZExtValue() |
| 3584 | << (unsigned) CAT->getSize().getZExtValue(); |
| 3585 | DiagnoseCalleeStaticArrayParam(*this, Param); |
| 3586 | } |
| 3587 | } |
| 3588 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3589 | /// Given a function expression of unknown-any type, try to rebuild it |
| 3590 | /// to have a function type. |
| 3591 | static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); |
| 3592 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3593 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3594 | /// This provides the location of the left/right parens and a list of comma |
| 3595 | /// locations. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3596 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3597 | Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3598 | MultiExprArg ArgExprs, SourceLocation RParenLoc, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3599 | Expr *ExecConfig, bool IsExecConfig) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3600 | unsigned NumArgs = ArgExprs.size(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3601 | |
| 3602 | // Since this might be a postfix expression, get rid of ParenListExprs. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3603 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3604 | if (Result.isInvalid()) return ExprError(); |
| 3605 | Fn = Result.take(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3606 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3607 | Expr **Args = ArgExprs.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3608 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3609 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3610 | // If this is a pseudo-destructor expression, build the call immediately. |
| 3611 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 3612 | if (NumArgs > 0) { |
| 3613 | // Pseudo-destructor calls should not have any arguments. |
| 3614 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 3615 | << FixItHint::CreateRemoval( |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3616 | SourceRange(Args[0]->getLocStart(), |
| 3617 | Args[NumArgs-1]->getLocEnd())); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3618 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3619 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3620 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3621 | VK_RValue, RParenLoc)); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 3622 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3623 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3624 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3625 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3626 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 3627 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3628 | bool Dependent = false; |
| 3629 | if (Fn->isTypeDependent()) |
| 3630 | Dependent = true; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3631 | else if (Expr::hasAnyTypeDependentArguments( |
| 3632 | llvm::makeArrayRef(Args, NumArgs))) |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3633 | Dependent = true; |
| 3634 | |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3635 | if (Dependent) { |
| 3636 | if (ExecConfig) { |
| 3637 | return Owned(new (Context) CUDAKernelCallExpr( |
| 3638 | Context, Fn, cast<CallExpr>(ExecConfig), Args, NumArgs, |
| 3639 | Context.DependentTy, VK_RValue, RParenLoc)); |
| 3640 | } else { |
| 3641 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
| 3642 | Context.DependentTy, VK_RValue, |
| 3643 | RParenLoc)); |
| 3644 | } |
| 3645 | } |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3646 | |
| 3647 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 3648 | if (Fn->getType()->isRecordType()) |
| 3649 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
Douglas Gregor | a1a0478 | 2010-09-09 16:33:13 +0000 | [diff] [blame] | 3650 | RParenLoc)); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 3651 | |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3652 | if (Fn->getType() == Context.UnknownAnyTy) { |
| 3653 | ExprResult result = rebuildUnknownAnyFunction(*this, Fn); |
| 3654 | if (result.isInvalid()) return ExprError(); |
| 3655 | Fn = result.take(); |
| 3656 | } |
| 3657 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3658 | if (Fn->getType() == Context.BoundMemberTy) { |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3659 | return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
Douglas Gregor | a1a0478 | 2010-09-09 16:33:13 +0000 | [diff] [blame] | 3660 | RParenLoc); |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3661 | } |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3662 | } |
John McCall | 129e2df | 2009-11-30 22:42:35 +0000 | [diff] [blame] | 3663 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3664 | // Check for overloaded calls. This can happen even in C due to extensions. |
| 3665 | if (Fn->getType() == Context.OverloadTy) { |
| 3666 | OverloadExpr::FindResult find = OverloadExpr::find(Fn); |
| 3667 | |
Douglas Gregor | ee697e6 | 2011-10-13 18:10:35 +0000 | [diff] [blame] | 3668 | // 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] | 3669 | if (!find.HasFormOfMemberPointer) { |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3670 | OverloadExpr *ovl = find.Expression; |
| 3671 | if (isa<UnresolvedLookupExpr>(ovl)) { |
| 3672 | UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); |
| 3673 | return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, Args, NumArgs, |
| 3674 | RParenLoc, ExecConfig); |
| 3675 | } else { |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3676 | return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
Douglas Gregor | a1a0478 | 2010-09-09 16:33:13 +0000 | [diff] [blame] | 3677 | RParenLoc); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 3678 | } |
| 3679 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3680 | } |
| 3681 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 3682 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | f1d1ca5 | 2011-12-01 01:37:36 +0000 | [diff] [blame] | 3683 | if (Fn->getType() == Context.UnknownAnyTy) { |
| 3684 | ExprResult result = rebuildUnknownAnyFunction(*this, Fn); |
| 3685 | if (result.isInvalid()) return ExprError(); |
| 3686 | Fn = result.take(); |
| 3687 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3688 | |
Eli Friedman | efa42f7 | 2009-12-26 03:35:45 +0000 | [diff] [blame] | 3689 | Expr *NakedFn = Fn->IgnoreParens(); |
Douglas Gregor | ef9b149 | 2010-11-09 20:03:54 +0000 | [diff] [blame] | 3690 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3691 | NamedDecl *NDecl = 0; |
Douglas Gregor | d8f0ade | 2010-10-25 20:48:33 +0000 | [diff] [blame] | 3692 | if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) |
| 3693 | if (UnOp->getOpcode() == UO_AddrOf) |
| 3694 | NakedFn = UnOp->getSubExpr()->IgnoreParens(); |
| 3695 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3696 | if (isa<DeclRefExpr>(NakedFn)) |
| 3697 | NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 3698 | else if (isa<MemberExpr>(NakedFn)) |
| 3699 | NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3700 | |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3701 | return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3702 | ExecConfig, IsExecConfig); |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | ExprResult |
| 3706 | Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3707 | MultiExprArg ExecConfig, SourceLocation GGGLoc) { |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3708 | FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl(); |
| 3709 | if (!ConfigDecl) |
| 3710 | return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use) |
| 3711 | << "cudaConfigureCall"); |
| 3712 | QualType ConfigQTy = ConfigDecl->getType(); |
| 3713 | |
| 3714 | DeclRefExpr *ConfigDR = new (Context) DeclRefExpr( |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 3715 | ConfigDecl, false, ConfigQTy, VK_LValue, LLLLoc); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 3716 | MarkFunctionReferenced(LLLLoc, ConfigDecl); |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3717 | |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3718 | return ActOnCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, 0, |
| 3719 | /*IsExecConfig=*/true); |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3720 | } |
| 3721 | |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 3722 | /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. |
| 3723 | /// |
| 3724 | /// __builtin_astype( value, dst type ) |
| 3725 | /// |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3726 | ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 3727 | SourceLocation BuiltinLoc, |
| 3728 | SourceLocation RParenLoc) { |
| 3729 | ExprValueKind VK = VK_RValue; |
| 3730 | ExprObjectKind OK = OK_Ordinary; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3731 | QualType DstTy = GetTypeFromParser(ParsedDestTy); |
| 3732 | QualType SrcTy = E->getType(); |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 3733 | if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) |
| 3734 | return ExprError(Diag(BuiltinLoc, |
| 3735 | diag::err_invalid_astype_of_different_size) |
Peter Collingbourne | af9cddf | 2011-06-08 15:15:17 +0000 | [diff] [blame] | 3736 | << DstTy |
| 3737 | << SrcTy |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3738 | << E->getSourceRange()); |
| 3739 | return Owned(new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 3740 | RParenLoc)); |
Tanya Lattner | 61eee0c | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 3741 | } |
| 3742 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3743 | /// BuildResolvedCallExpr - Build a call to a resolved expression, |
| 3744 | /// i.e. an expression not of \p OverloadTy. The expression should |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3745 | /// unary-convert to an expression of function-pointer or |
| 3746 | /// block-pointer type. |
| 3747 | /// |
| 3748 | /// \param NDecl the declaration being called, if available |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3749 | ExprResult |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3750 | Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, |
| 3751 | SourceLocation LParenLoc, |
| 3752 | Expr **Args, unsigned NumArgs, |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3753 | SourceLocation RParenLoc, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3754 | Expr *Config, bool IsExecConfig) { |
John McCall | aa81e16 | 2009-12-01 22:10:20 +0000 | [diff] [blame] | 3755 | FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); |
| 3756 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 3757 | // Promote the function operand. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3758 | ExprResult Result = UsualUnaryConversions(Fn); |
| 3759 | if (Result.isInvalid()) |
| 3760 | return ExprError(); |
| 3761 | Fn = Result.take(); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 3762 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3763 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 3764 | // of arguments and function on error. |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 3765 | CallExpr *TheCall; |
| 3766 | if (Config) { |
| 3767 | TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, |
| 3768 | cast<CallExpr>(Config), |
| 3769 | Args, NumArgs, |
| 3770 | Context.BoolTy, |
| 3771 | VK_RValue, |
| 3772 | RParenLoc); |
| 3773 | } else { |
| 3774 | TheCall = new (Context) CallExpr(Context, Fn, |
| 3775 | Args, NumArgs, |
| 3776 | Context.BoolTy, |
| 3777 | VK_RValue, |
| 3778 | RParenLoc); |
| 3779 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3780 | |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3781 | unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); |
| 3782 | |
| 3783 | // Bail out early if calling a builtin with custom typechecking. |
| 3784 | if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) |
| 3785 | return CheckBuiltinFunctionCall(BuiltinID, TheCall); |
| 3786 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 3787 | retry: |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3788 | const FunctionType *FuncT; |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3789 | if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3790 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 3791 | // have type pointer to function". |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3792 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3793 | if (FuncT == 0) |
| 3794 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3795 | << Fn->getType() << Fn->getSourceRange()); |
| 3796 | } else if (const BlockPointerType *BPT = |
| 3797 | Fn->getType()->getAs<BlockPointerType>()) { |
| 3798 | FuncT = BPT->getPointeeType()->castAs<FunctionType>(); |
| 3799 | } else { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 3800 | // Handle calls to expressions of unknown-any type. |
| 3801 | if (Fn->getType() == Context.UnknownAnyTy) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 3802 | ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 3803 | if (rewrite.isInvalid()) return ExprError(); |
| 3804 | Fn = rewrite.take(); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 3805 | TheCall->setCallee(Fn); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 3806 | goto retry; |
| 3807 | } |
| 3808 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3809 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3810 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3811 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3812 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3813 | if (getLangOpts().CUDA) { |
Peter Collingbourne | 0423fc6 | 2011-02-23 01:53:29 +0000 | [diff] [blame] | 3814 | if (Config) { |
| 3815 | // CUDA: Kernel calls must be to global functions |
| 3816 | if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) |
| 3817 | return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) |
| 3818 | << FDecl->getName() << Fn->getSourceRange()); |
| 3819 | |
| 3820 | // CUDA: Kernel function must have 'void' return type |
| 3821 | if (!FuncT->getResultType()->isVoidType()) |
| 3822 | return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) |
| 3823 | << Fn->getType() << Fn->getSourceRange()); |
Peter Collingbourne | 8591a7f | 2011-10-02 23:49:15 +0000 | [diff] [blame] | 3824 | } else { |
| 3825 | // CUDA: Calls to global functions must be configured |
| 3826 | if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) |
| 3827 | return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) |
| 3828 | << FDecl->getName() << Fn->getSourceRange()); |
Peter Collingbourne | 0423fc6 | 2011-02-23 01:53:29 +0000 | [diff] [blame] | 3829 | } |
| 3830 | } |
| 3831 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3832 | // Check for a valid return type |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 3833 | if (CheckCallReturnType(FuncT->getResultType(), |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3834 | Fn->getLocStart(), TheCall, |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 3835 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3836 | return ExprError(); |
| 3837 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3838 | // We know the result type of the call, set it. |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 3839 | TheCall->setType(FuncT->getCallResultType(Context)); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3840 | TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType())); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3841 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3842 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3843 | if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Peter Collingbourne | 1f24076 | 2011-10-02 23:49:29 +0000 | [diff] [blame] | 3844 | RParenLoc, IsExecConfig)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3845 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3846 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3847 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3848 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3849 | if (FDecl) { |
| 3850 | // Check if we have too few/too many template arguments, based |
| 3851 | // on our knowledge of the function definition. |
| 3852 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 3853 | if (FDecl->hasBody(Def) && NumArgs != Def->param_size()) { |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3854 | const FunctionProtoType *Proto |
| 3855 | = Def->getType()->getAs<FunctionProtoType>(); |
| 3856 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3857 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 3858 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3859 | } |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3860 | |
| 3861 | // If the function we're calling isn't a function prototype, but we have |
| 3862 | // a function prototype from a prior declaratiom, use that prototype. |
| 3863 | if (!FDecl->hasPrototype()) |
| 3864 | Proto = FDecl->getType()->getAs<FunctionProtoType>(); |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3865 | } |
| 3866 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3867 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3868 | for (unsigned i = 0; i != NumArgs; i++) { |
| 3869 | Expr *Arg = Args[i]; |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3870 | |
| 3871 | if (Proto && i < Proto->getNumArgs()) { |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3872 | InitializedEntity Entity |
| 3873 | = InitializedEntity::InitializeParameter(Context, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3874 | Proto->getArgType(i), |
| 3875 | Proto->isArgConsumed(i)); |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3876 | ExprResult ArgE = PerformCopyInitialization(Entity, |
| 3877 | SourceLocation(), |
| 3878 | Owned(Arg)); |
| 3879 | if (ArgE.isInvalid()) |
| 3880 | return true; |
| 3881 | |
| 3882 | Arg = ArgE.takeAs<Expr>(); |
| 3883 | |
| 3884 | } else { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 3885 | ExprResult ArgE = DefaultArgumentPromotion(Arg); |
| 3886 | |
| 3887 | if (ArgE.isInvalid()) |
| 3888 | return true; |
| 3889 | |
| 3890 | Arg = ArgE.takeAs<Expr>(); |
Douglas Gregor | 4654241 | 2010-10-25 20:39:23 +0000 | [diff] [blame] | 3891 | } |
| 3892 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 3893 | if (RequireCompleteType(Arg->getLocStart(), |
Douglas Gregor | 0700bbf | 2010-10-26 05:45:40 +0000 | [diff] [blame] | 3894 | Arg->getType(), |
| 3895 | PDiag(diag::err_call_incomplete_argument) |
| 3896 | << Arg->getSourceRange())) |
| 3897 | return ExprError(); |
| 3898 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3899 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3900 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3901 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3902 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3903 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 3904 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3905 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 3906 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3907 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 3908 | // Check for sentinels |
| 3909 | if (NDecl) |
| 3910 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3911 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3912 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3913 | if (FDecl) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3914 | if (CheckFunctionCall(FDecl, TheCall)) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3915 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3916 | |
John McCall | 8e10f3b | 2011-02-26 05:39:39 +0000 | [diff] [blame] | 3917 | if (BuiltinID) |
Fariborz Jahanian | 67aba81 | 2010-11-30 17:35:24 +0000 | [diff] [blame] | 3918 | return CheckBuiltinFunctionCall(BuiltinID, TheCall); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3919 | } else if (NDecl) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3920 | if (CheckBlockCall(NDecl, TheCall)) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3921 | return ExprError(); |
| 3922 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3923 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3924 | return MaybeBindToTemporary(TheCall); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3925 | } |
| 3926 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3927 | ExprResult |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 3928 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3929 | SourceLocation RParenLoc, Expr *InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3930 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 3931 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3932 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 3933 | |
| 3934 | TypeSourceInfo *TInfo; |
| 3935 | QualType literalType = GetTypeFromParser(Ty, &TInfo); |
| 3936 | if (!TInfo) |
| 3937 | TInfo = Context.getTrivialTypeSourceInfo(literalType); |
| 3938 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 3939 | return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 3940 | } |
| 3941 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3942 | ExprResult |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 3943 | Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3944 | SourceLocation RParenLoc, Expr *LiteralExpr) { |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 3945 | QualType literalType = TInfo->getType(); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 3946 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3947 | if (literalType->isArrayType()) { |
Argyrios Kyrtzidis | e6fe9a2 | 2010-11-08 19:14:19 +0000 | [diff] [blame] | 3948 | if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), |
| 3949 | PDiag(diag::err_illegal_decl_array_incomplete_type) |
| 3950 | << SourceRange(LParenLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3951 | LiteralExpr->getSourceRange().getEnd()))) |
Argyrios Kyrtzidis | e6fe9a2 | 2010-11-08 19:14:19 +0000 | [diff] [blame] | 3952 | return ExprError(); |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 3953 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3954 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3955 | << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 3956 | } else if (!literalType->isDependentType() && |
| 3957 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3958 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3959 | << SourceRange(LParenLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3960 | LiteralExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3961 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3962 | |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3963 | InitializedEntity Entity |
Douglas Gregor | d6542d8 | 2009-12-22 15:35:07 +0000 | [diff] [blame] | 3964 | = InitializedEntity::InitializeTemporary(literalType); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3965 | InitializationKind Kind |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3966 | = InitializationKind::CreateCStyleCast(LParenLoc, |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 3967 | SourceRange(LParenLoc, RParenLoc), |
| 3968 | /*InitList=*/true); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3969 | InitializationSequence InitSeq(*this, Entity, Kind, &LiteralExpr, 1); |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3970 | ExprResult Result = InitSeq.Perform(*this, Entity, Kind, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3971 | MultiExprArg(*this, &LiteralExpr, 1), |
Eli Friedman | 0854462 | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 3972 | &literalType); |
| 3973 | if (Result.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3974 | return ExprError(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3975 | LiteralExpr = Result.get(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3976 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 3977 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3978 | if (isFileScope) { // 6.5.2.5p3 |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3979 | if (CheckForConstantInitializer(LiteralExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3980 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3981 | } |
Eli Friedman | 0854462 | 2009-12-22 02:35:53 +0000 | [diff] [blame] | 3982 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3983 | // In C, compound literals are l-values for some reason. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3984 | ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3985 | |
Douglas Gregor | 751ec9b | 2011-06-17 04:59:12 +0000 | [diff] [blame] | 3986 | return MaybeBindToTemporary( |
| 3987 | new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3988 | VK, LiteralExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3989 | } |
| 3990 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 3991 | ExprResult |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3992 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3993 | SourceLocation RBraceLoc) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 3994 | unsigned NumInit = InitArgList.size(); |
| 3995 | Expr **InitList = InitArgList.release(); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3996 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 3997 | // Immediately handle non-overload placeholders. Overloads can be |
| 3998 | // resolved contextually, but everything else here can't. |
| 3999 | for (unsigned I = 0; I != NumInit; ++I) { |
John McCall | 32509f1 | 2011-11-15 01:35:18 +0000 | [diff] [blame] | 4000 | if (InitList[I]->getType()->isNonOverloadPlaceholderType()) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 4001 | ExprResult result = CheckPlaceholderExpr(InitList[I]); |
| 4002 | |
| 4003 | // Ignore failures; dropping the entire initializer list because |
| 4004 | // of one failure would be terrible for indexing/etc. |
| 4005 | if (result.isInvalid()) continue; |
| 4006 | |
| 4007 | InitList[I] = result.take(); |
| 4008 | } |
| 4009 | } |
| 4010 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 4011 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4012 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4013 | |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 4014 | InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitList, |
| 4015 | NumInit, RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4016 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4017 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 4018 | } |
| 4019 | |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4020 | /// Do an explicit extend of the given block pointer if we're in ARC. |
| 4021 | static void maybeExtendBlockObject(Sema &S, ExprResult &E) { |
| 4022 | assert(E.get()->getType()->isBlockPointerType()); |
| 4023 | assert(E.get()->isRValue()); |
| 4024 | |
| 4025 | // Only do this in an r-value context. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4026 | if (!S.getLangOpts().ObjCAutoRefCount) return; |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4027 | |
| 4028 | E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4029 | CK_ARCExtendBlockObject, E.get(), |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 4030 | /*base path*/ 0, VK_RValue); |
| 4031 | S.ExprNeedsCleanups = true; |
| 4032 | } |
| 4033 | |
| 4034 | /// Prepare a conversion of the given expression to an ObjC object |
| 4035 | /// pointer type. |
| 4036 | CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { |
| 4037 | QualType type = E.get()->getType(); |
| 4038 | if (type->isObjCObjectPointerType()) { |
| 4039 | return CK_BitCast; |
| 4040 | } else if (type->isBlockPointerType()) { |
| 4041 | maybeExtendBlockObject(*this, E); |
| 4042 | return CK_BlockPointerToObjCPointerCast; |
| 4043 | } else { |
| 4044 | assert(type->isPointerType()); |
| 4045 | return CK_CPointerToObjCPointerCast; |
| 4046 | } |
| 4047 | } |
| 4048 | |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4049 | /// Prepares for a scalar cast, performing all the necessary stages |
| 4050 | /// except the final cast and returning the kind required. |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4051 | CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4052 | // Both Src and Dest are scalar types, i.e. arithmetic or pointer. |
| 4053 | // Also, callers should have filtered out the invalid cases with |
| 4054 | // pointers. Everything else should be possible. |
| 4055 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4056 | QualType SrcTy = Src.get()->getType(); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 4057 | if (const AtomicType *SrcAtomicTy = SrcTy->getAs<AtomicType>()) |
| 4058 | SrcTy = SrcAtomicTy->getValueType(); |
| 4059 | if (const AtomicType *DestAtomicTy = DestTy->getAs<AtomicType>()) |
| 4060 | DestTy = DestAtomicTy->getValueType(); |
| 4061 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4062 | if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4063 | return CK_NoOp; |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4064 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4065 | switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4066 | case Type::STK_MemberPointer: |
| 4067 | llvm_unreachable("member pointer type in C"); |
Abramo Bagnara | bb03f5d | 2011-01-04 09:50:03 +0000 | [diff] [blame] | 4068 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4069 | case Type::STK_CPointer: |
| 4070 | case Type::STK_BlockPointer: |
| 4071 | case Type::STK_ObjCObjectPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4072 | switch (DestTy->getScalarTypeKind()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4073 | case Type::STK_CPointer: |
| 4074 | return CK_BitCast; |
| 4075 | case Type::STK_BlockPointer: |
| 4076 | return (SrcKind == Type::STK_BlockPointer |
| 4077 | ? CK_BitCast : CK_AnyPointerToBlockPointerCast); |
| 4078 | case Type::STK_ObjCObjectPointer: |
| 4079 | if (SrcKind == Type::STK_ObjCObjectPointer) |
| 4080 | return CK_BitCast; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4081 | if (SrcKind == Type::STK_CPointer) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4082 | return CK_CPointerToObjCPointerCast; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4083 | maybeExtendBlockObject(*this, Src); |
| 4084 | return CK_BlockPointerToObjCPointerCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4085 | case Type::STK_Bool: |
| 4086 | return CK_PointerToBoolean; |
| 4087 | case Type::STK_Integral: |
| 4088 | return CK_PointerToIntegral; |
| 4089 | case Type::STK_Floating: |
| 4090 | case Type::STK_FloatingComplex: |
| 4091 | case Type::STK_IntegralComplex: |
| 4092 | case Type::STK_MemberPointer: |
| 4093 | llvm_unreachable("illegal cast from pointer"); |
| 4094 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4095 | llvm_unreachable("Should have returned before this"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4096 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4097 | case Type::STK_Bool: // casting from bool is like casting from an integer |
| 4098 | case Type::STK_Integral: |
| 4099 | switch (DestTy->getScalarTypeKind()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4100 | case Type::STK_CPointer: |
| 4101 | case Type::STK_ObjCObjectPointer: |
| 4102 | case Type::STK_BlockPointer: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4103 | if (Src.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4104 | Expr::NPC_ValueDependentIsNull)) |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 4105 | return CK_NullToPointer; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4106 | return CK_IntegralToPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4107 | case Type::STK_Bool: |
| 4108 | return CK_IntegralToBoolean; |
| 4109 | case Type::STK_Integral: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4110 | return CK_IntegralCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4111 | case Type::STK_Floating: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4112 | return CK_IntegralToFloating; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4113 | case Type::STK_IntegralComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4114 | Src = ImpCastExprToType(Src.take(), |
| 4115 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4116 | CK_IntegralCast); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4117 | return CK_IntegralRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4118 | case Type::STK_FloatingComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4119 | Src = ImpCastExprToType(Src.take(), |
| 4120 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4121 | CK_IntegralToFloating); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4122 | return CK_FloatingRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4123 | case Type::STK_MemberPointer: |
| 4124 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4125 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4126 | llvm_unreachable("Should have returned before this"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4127 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4128 | case Type::STK_Floating: |
| 4129 | switch (DestTy->getScalarTypeKind()) { |
| 4130 | case Type::STK_Floating: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4131 | return CK_FloatingCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4132 | case Type::STK_Bool: |
| 4133 | return CK_FloatingToBoolean; |
| 4134 | case Type::STK_Integral: |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4135 | return CK_FloatingToIntegral; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4136 | case Type::STK_FloatingComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4137 | Src = ImpCastExprToType(Src.take(), |
| 4138 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4139 | CK_FloatingCast); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4140 | return CK_FloatingRealToComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4141 | case Type::STK_IntegralComplex: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4142 | Src = ImpCastExprToType(Src.take(), |
| 4143 | DestTy->castAs<ComplexType>()->getElementType(), |
| 4144 | CK_FloatingToIntegral); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4145 | return CK_IntegralRealToComplex; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4146 | case Type::STK_CPointer: |
| 4147 | case Type::STK_ObjCObjectPointer: |
| 4148 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4149 | llvm_unreachable("valid float->pointer cast?"); |
| 4150 | case Type::STK_MemberPointer: |
| 4151 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4152 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4153 | llvm_unreachable("Should have returned before this"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4154 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4155 | case Type::STK_FloatingComplex: |
| 4156 | switch (DestTy->getScalarTypeKind()) { |
| 4157 | case Type::STK_FloatingComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4158 | return CK_FloatingComplexCast; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4159 | case Type::STK_IntegralComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4160 | return CK_FloatingComplexToIntegralComplex; |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4161 | case Type::STK_Floating: { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4162 | QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); |
| 4163 | if (Context.hasSameType(ET, DestTy)) |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4164 | return CK_FloatingComplexToReal; |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4165 | Src = ImpCastExprToType(Src.take(), ET, CK_FloatingComplexToReal); |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4166 | return CK_FloatingCast; |
| 4167 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4168 | case Type::STK_Bool: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4169 | return CK_FloatingComplexToBoolean; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4170 | case Type::STK_Integral: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4171 | Src = ImpCastExprToType(Src.take(), |
| 4172 | SrcTy->castAs<ComplexType>()->getElementType(), |
| 4173 | CK_FloatingComplexToReal); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4174 | return CK_FloatingToIntegral; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4175 | case Type::STK_CPointer: |
| 4176 | case Type::STK_ObjCObjectPointer: |
| 4177 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4178 | llvm_unreachable("valid complex float->pointer cast?"); |
| 4179 | case Type::STK_MemberPointer: |
| 4180 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4181 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4182 | llvm_unreachable("Should have returned before this"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4183 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4184 | case Type::STK_IntegralComplex: |
| 4185 | switch (DestTy->getScalarTypeKind()) { |
| 4186 | case Type::STK_FloatingComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4187 | return CK_IntegralComplexToFloatingComplex; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4188 | case Type::STK_IntegralComplex: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4189 | return CK_IntegralComplexCast; |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4190 | case Type::STK_Integral: { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4191 | QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); |
| 4192 | if (Context.hasSameType(ET, DestTy)) |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4193 | return CK_IntegralComplexToReal; |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4194 | Src = ImpCastExprToType(Src.take(), ET, CK_IntegralComplexToReal); |
John McCall | 8786da7 | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4195 | return CK_IntegralCast; |
| 4196 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4197 | case Type::STK_Bool: |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4198 | return CK_IntegralComplexToBoolean; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4199 | case Type::STK_Floating: |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4200 | Src = ImpCastExprToType(Src.take(), |
| 4201 | SrcTy->castAs<ComplexType>()->getElementType(), |
| 4202 | CK_IntegralComplexToReal); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4203 | return CK_IntegralToFloating; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4204 | case Type::STK_CPointer: |
| 4205 | case Type::STK_ObjCObjectPointer: |
| 4206 | case Type::STK_BlockPointer: |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 4207 | llvm_unreachable("valid complex int->pointer cast?"); |
| 4208 | case Type::STK_MemberPointer: |
| 4209 | llvm_unreachable("member pointer type in C"); |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4210 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4211 | llvm_unreachable("Should have returned before this"); |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4212 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4213 | |
John McCall | f3ea8cf | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4214 | llvm_unreachable("Unhandled scalar cast"); |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 4215 | } |
| 4216 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 4217 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4218 | CastKind &Kind) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4219 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4220 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4221 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 4222 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4223 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4224 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4225 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4226 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4227 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4228 | } else |
| 4229 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4230 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4231 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4232 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4233 | Kind = CK_BitCast; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 4234 | return false; |
| 4235 | } |
| 4236 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4237 | ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, |
| 4238 | Expr *CastExpr, CastKind &Kind) { |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4239 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4240 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 4241 | QualType SrcTy = CastExpr->getType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4242 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 4243 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 4244 | // an ExtVectorType. |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4245 | // In OpenCL, casts between vectors of different types are not allowed. |
| 4246 | // (See OpenCL 6.2). |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4247 | if (SrcTy->isVectorType()) { |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4248 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4249 | || (getLangOpts().OpenCL && |
Tobias Grosser | 9df05ea | 2011-09-22 13:03:14 +0000 | [diff] [blame] | 4250 | (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4251 | Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4252 | << DestTy << SrcTy << R; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4253 | return ExprError(); |
| 4254 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4255 | Kind = CK_BitCast; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4256 | return Owned(CastExpr); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4257 | } |
| 4258 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4259 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4260 | // conversion will take place first from scalar to elt type, and then |
| 4261 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4262 | if (SrcTy->isPointerType()) |
| 4263 | return Diag(R.getBegin(), |
| 4264 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 4265 | << DestTy << SrcTy << R; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4266 | |
| 4267 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4268 | ExprResult CastExprRes = Owned(CastExpr); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4269 | CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4270 | if (CastExprRes.isInvalid()) |
| 4271 | return ExprError(); |
| 4272 | CastExpr = ImpCastExprToType(CastExprRes.take(), DestElemTy, CK).take(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4273 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4274 | Kind = CK_VectorSplat; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4275 | return Owned(CastExpr); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 4276 | } |
| 4277 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4278 | ExprResult |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4279 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, |
| 4280 | Declarator &D, ParsedType &Ty, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4281 | SourceLocation RParenLoc, Expr *CastExpr) { |
| 4282 | assert(!D.isInvalidType() && (CastExpr != 0) && |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4283 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 4284 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4285 | TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4286 | if (D.isInvalidType()) |
| 4287 | return ExprError(); |
| 4288 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4289 | if (getLangOpts().CPlusPlus) { |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4290 | // Check that there are no default arguments (C++ only). |
| 4291 | CheckExtraCXXDefaultArguments(D); |
| 4292 | } |
| 4293 | |
John McCall | e82247a | 2011-10-01 05:17:03 +0000 | [diff] [blame] | 4294 | checkUnusedDeclAttributes(D); |
| 4295 | |
Argyrios Kyrtzidis | 0a85183 | 2011-07-01 22:22:59 +0000 | [diff] [blame] | 4296 | QualType castType = castTInfo->getType(); |
| 4297 | Ty = CreateParsedType(castType, castTInfo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4298 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4299 | bool isVectorLiteral = false; |
| 4300 | |
| 4301 | // Check for an altivec or OpenCL literal, |
| 4302 | // i.e. all the elements are integer constants. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4303 | ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); |
| 4304 | ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4305 | if ((getLangOpts().AltiVec || getLangOpts().OpenCL) |
Tobias Grosser | 37c31c2 | 2011-09-21 18:28:29 +0000 | [diff] [blame] | 4306 | && castType->isVectorType() && (PE || PLE)) { |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4307 | if (PLE && PLE->getNumExprs() == 0) { |
| 4308 | Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 4309 | return ExprError(); |
| 4310 | } |
| 4311 | if (PE || PLE->getNumExprs() == 1) { |
| 4312 | Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); |
| 4313 | if (!E->getType()->isVectorType()) |
| 4314 | isVectorLiteral = true; |
| 4315 | } |
| 4316 | else |
| 4317 | isVectorLiteral = true; |
| 4318 | } |
| 4319 | |
| 4320 | // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' |
| 4321 | // then handle it as such. |
| 4322 | if (isVectorLiteral) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4323 | return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4324 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4325 | // If the Expr being casted is a ParenListExpr, handle it specially. |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4326 | // This is not an AltiVec-style cast, so turn the ParenListExpr into a |
| 4327 | // sequence of BinOp comma operators. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4328 | if (isa<ParenListExpr>(CastExpr)) { |
| 4329 | ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4330 | if (Result.isInvalid()) return ExprError(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4331 | CastExpr = Result.take(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4332 | } |
John McCall | b042fdf | 2010-01-15 18:56:44 +0000 | [diff] [blame] | 4333 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4334 | return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); |
John McCall | b042fdf | 2010-01-15 18:56:44 +0000 | [diff] [blame] | 4335 | } |
| 4336 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4337 | ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, |
| 4338 | SourceLocation RParenLoc, Expr *E, |
| 4339 | TypeSourceInfo *TInfo) { |
| 4340 | assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && |
| 4341 | "Expected paren or paren list expression"); |
| 4342 | |
| 4343 | Expr **exprs; |
| 4344 | unsigned numExprs; |
| 4345 | Expr *subExpr; |
| 4346 | if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { |
| 4347 | exprs = PE->getExprs(); |
| 4348 | numExprs = PE->getNumExprs(); |
| 4349 | } else { |
| 4350 | subExpr = cast<ParenExpr>(E)->getSubExpr(); |
| 4351 | exprs = &subExpr; |
| 4352 | numExprs = 1; |
| 4353 | } |
| 4354 | |
| 4355 | QualType Ty = TInfo->getType(); |
| 4356 | assert(Ty->isVectorType() && "Expected vector type"); |
| 4357 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4358 | SmallVector<Expr *, 8> initExprs; |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4359 | const VectorType *VTy = Ty->getAs<VectorType>(); |
| 4360 | unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); |
| 4361 | |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4362 | // '(...)' form of vector initialization in AltiVec: the number of |
| 4363 | // initializers must be one or must match the size of the vector. |
| 4364 | // If a single value is specified in the initializer then it will be |
| 4365 | // replicated to all the components of the vector |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4366 | if (VTy->getVectorKind() == VectorType::AltiVecVector) { |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4367 | // The number of initializers must be one or must match the size of the |
| 4368 | // vector. If a single value is specified in the initializer then it will |
| 4369 | // be replicated to all the components of the vector |
| 4370 | if (numExprs == 1) { |
| 4371 | QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); |
Richard Smith | 61ffd09 | 2011-10-27 23:31:58 +0000 | [diff] [blame] | 4372 | ExprResult Literal = DefaultLvalueConversion(exprs[0]); |
| 4373 | if (Literal.isInvalid()) |
| 4374 | return ExprError(); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4375 | Literal = ImpCastExprToType(Literal.take(), ElemTy, |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4376 | PrepareScalarCast(Literal, ElemTy)); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4377 | return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); |
| 4378 | } |
| 4379 | else if (numExprs < numElems) { |
| 4380 | Diag(E->getExprLoc(), |
| 4381 | diag::err_incorrect_number_of_vector_initializers); |
| 4382 | return ExprError(); |
| 4383 | } |
| 4384 | else |
Benjamin Kramer | 14c5982 | 2012-02-14 12:06:21 +0000 | [diff] [blame] | 4385 | initExprs.append(exprs, exprs + numExprs); |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4386 | } |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4387 | else { |
| 4388 | // For OpenCL, when the number of initializers is a single value, |
| 4389 | // it will be replicated to all components of the vector. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4390 | if (getLangOpts().OpenCL && |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4391 | VTy->getVectorKind() == VectorType::GenericVector && |
| 4392 | numExprs == 1) { |
| 4393 | QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); |
Richard Smith | 61ffd09 | 2011-10-27 23:31:58 +0000 | [diff] [blame] | 4394 | ExprResult Literal = DefaultLvalueConversion(exprs[0]); |
| 4395 | if (Literal.isInvalid()) |
| 4396 | return ExprError(); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4397 | Literal = ImpCastExprToType(Literal.take(), ElemTy, |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 4398 | PrepareScalarCast(Literal, ElemTy)); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4399 | return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); |
| 4400 | } |
| 4401 | |
Benjamin Kramer | 14c5982 | 2012-02-14 12:06:21 +0000 | [diff] [blame] | 4402 | initExprs.append(exprs, exprs + numExprs); |
Tanya Lattner | 61b4bc8 | 2011-07-15 23:07:01 +0000 | [diff] [blame] | 4403 | } |
Argyrios Kyrtzidis | 707f101 | 2011-07-01 22:22:54 +0000 | [diff] [blame] | 4404 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 4405 | // braces instead of the original commas. |
| 4406 | InitListExpr *initE = new (Context) InitListExpr(Context, LParenLoc, |
| 4407 | &initExprs[0], |
| 4408 | initExprs.size(), RParenLoc); |
| 4409 | initE->setType(Ty); |
| 4410 | return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); |
| 4411 | } |
| 4412 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 4413 | /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn |
| 4414 | /// the ParenListExpr into a sequence of comma binary operators. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4415 | ExprResult |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4416 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { |
| 4417 | ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4418 | if (!E) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4419 | return Owned(OrigExpr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4420 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 4421 | ExprResult Result(E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4422 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4423 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4424 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), |
| 4425 | E->getExpr(i)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4426 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 4427 | if (Result.isInvalid()) return ExprError(); |
| 4428 | |
| 4429 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4430 | } |
| 4431 | |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 4432 | ExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 4433 | SourceLocation R, |
| 4434 | MultiExprArg Val) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4435 | unsigned nexprs = Val.size(); |
| 4436 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
Fariborz Jahanian | f88f7ab | 2009-11-25 01:26:41 +0000 | [diff] [blame] | 4437 | assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list"); |
Sebastian Redl | 5b9cc5d | 2012-02-11 23:51:47 +0000 | [diff] [blame] | 4438 | Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4439 | return Owned(expr); |
| 4440 | } |
| 4441 | |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4442 | /// \brief Emit a specialized diagnostic when one expression is a null pointer |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4443 | /// constant and the other is not a pointer. Returns true if a diagnostic is |
| 4444 | /// emitted. |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4445 | bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4446 | SourceLocation QuestionLoc) { |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4447 | Expr *NullExpr = LHSExpr; |
| 4448 | Expr *NonPointerExpr = RHSExpr; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4449 | Expr::NullPointerConstantKind NullKind = |
| 4450 | NullExpr->isNullPointerConstant(Context, |
| 4451 | Expr::NPC_ValueDependentIsNotNull); |
| 4452 | |
| 4453 | if (NullKind == Expr::NPCK_NotNull) { |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4454 | NullExpr = RHSExpr; |
| 4455 | NonPointerExpr = LHSExpr; |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4456 | NullKind = |
| 4457 | NullExpr->isNullPointerConstant(Context, |
| 4458 | Expr::NPC_ValueDependentIsNotNull); |
| 4459 | } |
| 4460 | |
| 4461 | if (NullKind == Expr::NPCK_NotNull) |
| 4462 | return false; |
| 4463 | |
| 4464 | if (NullKind == Expr::NPCK_ZeroInteger) { |
| 4465 | // In this case, check to make sure that we got here from a "NULL" |
| 4466 | // string in the source code. |
| 4467 | NullExpr = NullExpr->IgnoreParenImpCasts(); |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 4468 | SourceLocation loc = NullExpr->getExprLoc(); |
| 4469 | if (!findMacroSpelling(loc, "NULL")) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4470 | return false; |
| 4471 | } |
| 4472 | |
| 4473 | int DiagType = (NullKind == Expr::NPCK_CXX0X_nullptr); |
| 4474 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) |
| 4475 | << NonPointerExpr->getType() << DiagType |
| 4476 | << NonPointerExpr->getSourceRange(); |
| 4477 | return true; |
| 4478 | } |
| 4479 | |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4480 | /// \brief Return false if the condition expression is valid, true otherwise. |
| 4481 | static bool checkCondition(Sema &S, Expr *Cond) { |
| 4482 | QualType CondTy = Cond->getType(); |
| 4483 | |
| 4484 | // C99 6.5.15p2 |
| 4485 | if (CondTy->isScalarType()) return false; |
| 4486 | |
| 4487 | // 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] | 4488 | if (S.getLangOpts().OpenCL && CondTy->isVectorType()) |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4489 | return false; |
| 4490 | |
| 4491 | // Emit the proper error message. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4492 | S.Diag(Cond->getLocStart(), S.getLangOpts().OpenCL ? |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4493 | diag::err_typecheck_cond_expect_scalar : |
| 4494 | diag::err_typecheck_cond_expect_scalar_or_vector) |
| 4495 | << CondTy; |
| 4496 | return true; |
| 4497 | } |
| 4498 | |
| 4499 | /// \brief Return false if the two expressions can be converted to a vector, |
| 4500 | /// true otherwise |
| 4501 | static bool checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS, |
| 4502 | ExprResult &RHS, |
| 4503 | QualType CondTy) { |
| 4504 | // Both operands should be of scalar type. |
| 4505 | if (!LHS.get()->getType()->isScalarType()) { |
| 4506 | S.Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 4507 | << CondTy; |
| 4508 | return true; |
| 4509 | } |
| 4510 | if (!RHS.get()->getType()->isScalarType()) { |
| 4511 | S.Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 4512 | << CondTy; |
| 4513 | return true; |
| 4514 | } |
| 4515 | |
| 4516 | // Implicity convert these scalars to the type of the condition. |
| 4517 | LHS = S.ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast); |
| 4518 | RHS = S.ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast); |
| 4519 | return false; |
| 4520 | } |
| 4521 | |
| 4522 | /// \brief Handle when one or both operands are void type. |
| 4523 | static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, |
| 4524 | ExprResult &RHS) { |
| 4525 | Expr *LHSExpr = LHS.get(); |
| 4526 | Expr *RHSExpr = RHS.get(); |
| 4527 | |
| 4528 | if (!LHSExpr->getType()->isVoidType()) |
| 4529 | S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 4530 | << RHSExpr->getSourceRange(); |
| 4531 | if (!RHSExpr->getType()->isVoidType()) |
| 4532 | S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 4533 | << LHSExpr->getSourceRange(); |
| 4534 | LHS = S.ImpCastExprToType(LHS.take(), S.Context.VoidTy, CK_ToVoid); |
| 4535 | RHS = S.ImpCastExprToType(RHS.take(), S.Context.VoidTy, CK_ToVoid); |
| 4536 | return S.Context.VoidTy; |
| 4537 | } |
| 4538 | |
| 4539 | /// \brief Return false if the NullExpr can be promoted to PointerTy, |
| 4540 | /// true otherwise. |
| 4541 | static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, |
| 4542 | QualType PointerTy) { |
| 4543 | if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || |
| 4544 | !NullExpr.get()->isNullPointerConstant(S.Context, |
| 4545 | Expr::NPC_ValueDependentIsNull)) |
| 4546 | return true; |
| 4547 | |
| 4548 | NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer); |
| 4549 | return false; |
| 4550 | } |
| 4551 | |
| 4552 | /// \brief Checks compatibility between two pointers and return the resulting |
| 4553 | /// type. |
| 4554 | static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, |
| 4555 | ExprResult &RHS, |
| 4556 | SourceLocation Loc) { |
| 4557 | QualType LHSTy = LHS.get()->getType(); |
| 4558 | QualType RHSTy = RHS.get()->getType(); |
| 4559 | |
| 4560 | if (S.Context.hasSameType(LHSTy, RHSTy)) { |
| 4561 | // Two identical pointers types are always compatible. |
| 4562 | return LHSTy; |
| 4563 | } |
| 4564 | |
| 4565 | QualType lhptee, rhptee; |
| 4566 | |
| 4567 | // Get the pointee types. |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4568 | if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { |
| 4569 | lhptee = LHSBTy->getPointeeType(); |
| 4570 | rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4571 | } else { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4572 | lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); |
| 4573 | rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4574 | } |
| 4575 | |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4576 | // C99 6.5.15p6: If both operands are pointers to compatible types or to |
| 4577 | // differently qualified versions of compatible types, the result type is |
| 4578 | // a pointer to an appropriately qualified version of the composite |
| 4579 | // type. |
| 4580 | |
| 4581 | // Only CVR-qualifiers exist in the standard, and the differently-qualified |
| 4582 | // clause doesn't make sense for our extensions. E.g. address space 2 should |
| 4583 | // be incompatible with address space 3: they may live on different devices or |
| 4584 | // anything. |
| 4585 | Qualifiers lhQual = lhptee.getQualifiers(); |
| 4586 | Qualifiers rhQual = rhptee.getQualifiers(); |
| 4587 | |
| 4588 | unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); |
| 4589 | lhQual.removeCVRQualifiers(); |
| 4590 | rhQual.removeCVRQualifiers(); |
| 4591 | |
| 4592 | lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); |
| 4593 | rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); |
| 4594 | |
| 4595 | QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); |
| 4596 | |
| 4597 | if (CompositeTy.isNull()) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4598 | S.Diag(Loc, diag::warn_typecheck_cond_incompatible_pointers) |
| 4599 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 4600 | << RHS.get()->getSourceRange(); |
| 4601 | // In this situation, we assume void* type. No especially good |
| 4602 | // reason, but this is what gcc does, and we do have to pick |
| 4603 | // to get a consistent AST. |
| 4604 | QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); |
| 4605 | LHS = S.ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); |
| 4606 | RHS = S.ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); |
| 4607 | return incompatTy; |
| 4608 | } |
| 4609 | |
| 4610 | // The pointer types are compatible. |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4611 | QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); |
| 4612 | ResultTy = S.Context.getPointerType(ResultTy); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4613 | |
Eli Friedman | ae916a1 | 2012-04-05 22:30:04 +0000 | [diff] [blame] | 4614 | LHS = S.ImpCastExprToType(LHS.take(), ResultTy, CK_BitCast); |
| 4615 | RHS = S.ImpCastExprToType(RHS.take(), ResultTy, CK_BitCast); |
| 4616 | return ResultTy; |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4617 | } |
| 4618 | |
| 4619 | /// \brief Return the resulting type when the operands are both block pointers. |
| 4620 | static QualType checkConditionalBlockPointerCompatibility(Sema &S, |
| 4621 | ExprResult &LHS, |
| 4622 | ExprResult &RHS, |
| 4623 | SourceLocation Loc) { |
| 4624 | QualType LHSTy = LHS.get()->getType(); |
| 4625 | QualType RHSTy = RHS.get()->getType(); |
| 4626 | |
| 4627 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 4628 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 4629 | QualType destType = S.Context.getPointerType(S.Context.VoidTy); |
| 4630 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
| 4631 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
| 4632 | return destType; |
| 4633 | } |
| 4634 | S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) |
| 4635 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 4636 | << RHS.get()->getSourceRange(); |
| 4637 | return QualType(); |
| 4638 | } |
| 4639 | |
| 4640 | // We have 2 block pointer types. |
| 4641 | return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); |
| 4642 | } |
| 4643 | |
| 4644 | /// \brief Return the resulting type when the operands are both pointers. |
| 4645 | static QualType |
| 4646 | checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, |
| 4647 | ExprResult &RHS, |
| 4648 | SourceLocation Loc) { |
| 4649 | // get the pointer types |
| 4650 | QualType LHSTy = LHS.get()->getType(); |
| 4651 | QualType RHSTy = RHS.get()->getType(); |
| 4652 | |
| 4653 | // get the "pointed to" types |
| 4654 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 4655 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
| 4656 | |
| 4657 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 4658 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 4659 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 4660 | QualType destPointee |
| 4661 | = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
| 4662 | QualType destType = S.Context.getPointerType(destPointee); |
| 4663 | // Add qualifiers if necessary. |
| 4664 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_NoOp); |
| 4665 | // Promote to void*. |
| 4666 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
| 4667 | return destType; |
| 4668 | } |
| 4669 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
| 4670 | QualType destPointee |
| 4671 | = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
| 4672 | QualType destType = S.Context.getPointerType(destPointee); |
| 4673 | // Add qualifiers if necessary. |
| 4674 | RHS = S.ImpCastExprToType(RHS.take(), destType, CK_NoOp); |
| 4675 | // Promote to void*. |
| 4676 | LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
| 4677 | return destType; |
| 4678 | } |
| 4679 | |
| 4680 | return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); |
| 4681 | } |
| 4682 | |
| 4683 | /// \brief Return false if the first expression is not an integer and the second |
| 4684 | /// expression is not a pointer, true otherwise. |
| 4685 | static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, |
| 4686 | Expr* PointerExpr, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4687 | bool IsIntFirstExpr) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4688 | if (!PointerExpr->getType()->isPointerType() || |
| 4689 | !Int.get()->getType()->isIntegerType()) |
| 4690 | return false; |
| 4691 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 4692 | Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; |
| 4693 | Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4694 | |
| 4695 | S.Diag(Loc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 4696 | << Expr1->getType() << Expr2->getType() |
| 4697 | << Expr1->getSourceRange() << Expr2->getSourceRange(); |
| 4698 | Int = S.ImpCastExprToType(Int.take(), PointerExpr->getType(), |
| 4699 | CK_IntegralToPointer); |
| 4700 | return true; |
| 4701 | } |
| 4702 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4703 | /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. |
| 4704 | /// In that case, LHS = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 4705 | /// C99 6.5.15 |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4706 | QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, |
| 4707 | ExprResult &RHS, ExprValueKind &VK, |
| 4708 | ExprObjectKind &OK, |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 4709 | SourceLocation QuestionLoc) { |
Douglas Gregor | fadb53b | 2011-03-12 01:48:56 +0000 | [diff] [blame] | 4710 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4711 | ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); |
| 4712 | if (!LHSResult.isUsable()) return QualType(); |
| 4713 | LHS = move(LHSResult); |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 4714 | |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4715 | ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); |
| 4716 | if (!RHSResult.isUsable()) return QualType(); |
| 4717 | RHS = move(RHSResult); |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 4718 | |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4719 | // C++ is sufficiently different to merit its own checker. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4720 | if (getLangOpts().CPlusPlus) |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4721 | return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4722 | |
| 4723 | VK = VK_RValue; |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 4724 | OK = OK_Ordinary; |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4725 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4726 | Cond = UsualUnaryConversions(Cond.take()); |
| 4727 | if (Cond.isInvalid()) |
| 4728 | return QualType(); |
| 4729 | LHS = UsualUnaryConversions(LHS.take()); |
| 4730 | if (LHS.isInvalid()) |
| 4731 | return QualType(); |
| 4732 | RHS = UsualUnaryConversions(RHS.take()); |
| 4733 | if (RHS.isInvalid()) |
| 4734 | return QualType(); |
| 4735 | |
| 4736 | QualType CondTy = Cond.get()->getType(); |
| 4737 | QualType LHSTy = LHS.get()->getType(); |
| 4738 | QualType RHSTy = RHS.get()->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4739 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4740 | // first, check the condition. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4741 | if (checkCondition(*this, Cond.get())) |
| 4742 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4743 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4744 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 4745 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 4746 | return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 4747 | |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 4748 | // OpenCL: If the condition is a vector, and both operands are scalar, |
| 4749 | // attempt to implicity convert them to the vector type to act like the |
| 4750 | // built in select. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4751 | if (getLangOpts().OpenCL && CondTy->isVectorType()) |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4752 | if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy)) |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 4753 | return QualType(); |
Nate Begeman | 6155d73 | 2010-09-20 22:41:17 +0000 | [diff] [blame] | 4754 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4755 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 4756 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 4757 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 4758 | UsualArithmeticConversions(LHS, RHS); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4759 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 4760 | return QualType(); |
| 4761 | return LHS.get()->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4762 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4763 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4764 | // If both operands are the same structure or union type, the result is that |
| 4765 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4766 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 4767 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 4768 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4769 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4770 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 4771 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4772 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4773 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4774 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4775 | // 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] | 4776 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 4777 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4778 | return checkConditionalVoidType(*this, LHS, RHS); |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 4779 | } |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4780 | |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 4781 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 4782 | // the type of the other operand." |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4783 | if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; |
| 4784 | if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4785 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4786 | // All objective-c pointer type analysis is done here. |
| 4787 | QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, |
| 4788 | QuestionLoc); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4789 | if (LHS.isInvalid() || RHS.isInvalid()) |
| 4790 | return QualType(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4791 | if (!compositeType.isNull()) |
| 4792 | return compositeType; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4793 | |
| 4794 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4795 | // Handle block pointer types. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4796 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) |
| 4797 | return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, |
| 4798 | QuestionLoc); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4799 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4800 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4801 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) |
| 4802 | return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, |
| 4803 | QuestionLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4804 | |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 4805 | // GCC compatibility: soften pointer/integer mismatch. Note that |
| 4806 | // null pointers have been filtered out by this point. |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4807 | if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, |
| 4808 | /*isIntFirstExpr=*/true)) |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4809 | return RHSTy; |
Richard Trieu | 26f9607 | 2011-09-02 01:51:02 +0000 | [diff] [blame] | 4810 | if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, |
| 4811 | /*isIntFirstExpr=*/false)) |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 4812 | return LHSTy; |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 4813 | |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4814 | // Emit a better diagnostic if one of the expressions is a null pointer |
| 4815 | // constant and the other is not a pointer type. In this case, the user most |
| 4816 | // likely forgot to take the address of the other expression. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4817 | if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) |
Chandler Carruth | 82214a8 | 2011-02-18 23:54:50 +0000 | [diff] [blame] | 4818 | return QualType(); |
| 4819 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 4820 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 4821 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4822 | << LHSTy << RHSTy << LHS.get()->getSourceRange() |
| 4823 | << RHS.get()->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4824 | return QualType(); |
| 4825 | } |
| 4826 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4827 | /// FindCompositeObjCPointerType - Helper method to find composite type of |
| 4828 | /// two objective-c pointer types of the two input expressions. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4829 | QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 4830 | SourceLocation QuestionLoc) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4831 | QualType LHSTy = LHS.get()->getType(); |
| 4832 | QualType RHSTy = RHS.get()->getType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4833 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4834 | // Handle things like Class and struct objc_class*. Here we case the result |
| 4835 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 4836 | // redefinition type if an attempt is made to access its fields. |
| 4837 | if (LHSTy->isObjCClassType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4838 | (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4839 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4840 | return LHSTy; |
| 4841 | } |
| 4842 | if (RHSTy->isObjCClassType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4843 | (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4844 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4845 | return RHSTy; |
| 4846 | } |
| 4847 | // And the same for struct objc_object* / id |
| 4848 | if (LHSTy->isObjCIdType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4849 | (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4850 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4851 | return LHSTy; |
| 4852 | } |
| 4853 | if (RHSTy->isObjCIdType() && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4854 | (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4855 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4856 | return RHSTy; |
| 4857 | } |
| 4858 | // And the same for struct objc_selector* / SEL |
| 4859 | if (Context.isObjCSelType(LHSTy) && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4860 | (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4861 | RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4862 | return LHSTy; |
| 4863 | } |
| 4864 | if (Context.isObjCSelType(RHSTy) && |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 4865 | (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4866 | LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4867 | return RHSTy; |
| 4868 | } |
| 4869 | // Check constraints for Objective-C object pointers types. |
| 4870 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4871 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4872 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 4873 | // Two identical object pointer types are always compatible. |
| 4874 | return LHSTy; |
| 4875 | } |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4876 | const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); |
| 4877 | const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4878 | QualType compositeType = LHSTy; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4879 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4880 | // If both operands are interfaces and either operand can be |
| 4881 | // assigned to the other, use that type as the composite |
| 4882 | // type. This allows |
| 4883 | // xxx ? (A*) a : (B*) b |
| 4884 | // where B is a subclass of A. |
| 4885 | // |
| 4886 | // Additionally, as for assignment, if either type is 'id' |
| 4887 | // allow silent coercion. Finally, if the types are |
| 4888 | // incompatible then make sure to use 'id' as the composite |
| 4889 | // type so the result is acceptable for sending messages to. |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4890 | |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4891 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 4892 | // It could return the composite type. |
| 4893 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
| 4894 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
| 4895 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
| 4896 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
| 4897 | } else if ((LHSTy->isObjCQualifiedIdType() || |
| 4898 | RHSTy->isObjCQualifiedIdType()) && |
| 4899 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
| 4900 | // Need to handle "id<xx>" explicitly. |
| 4901 | // GCC allows qualified id and any Objective-C type to devolve to |
| 4902 | // id. Currently localizing to here until clear this should be |
| 4903 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 4904 | compositeType = Context.getObjCIdType(); |
| 4905 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
| 4906 | compositeType = Context.getObjCIdType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 4907 | } else if (!(compositeType = |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4908 | Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) |
| 4909 | ; |
| 4910 | else { |
| 4911 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 4912 | << LHSTy << RHSTy |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4913 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4914 | QualType incompatTy = Context.getObjCIdType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4915 | LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); |
| 4916 | RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4917 | return incompatTy; |
| 4918 | } |
| 4919 | // The object pointer types are compatible. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4920 | LHS = ImpCastExprToType(LHS.take(), compositeType, CK_BitCast); |
| 4921 | RHS = ImpCastExprToType(RHS.take(), compositeType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4922 | return compositeType; |
| 4923 | } |
| 4924 | // Check Objective-C object pointer types and 'void *' |
| 4925 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4926 | if (getLangOpts().ObjCAutoRefCount) { |
Eli Friedman | a66eccb | 2012-02-25 00:23:44 +0000 | [diff] [blame] | 4927 | // ARC forbids the implicit conversion of object pointers to 'void *', |
| 4928 | // so these types are not compatible. |
| 4929 | Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy |
| 4930 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 4931 | LHS = RHS = true; |
| 4932 | return QualType(); |
| 4933 | } |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4934 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 4935 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4936 | QualType destPointee |
| 4937 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
| 4938 | QualType destType = Context.getPointerType(destPointee); |
| 4939 | // Add qualifiers if necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4940 | LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4941 | // Promote to void*. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4942 | RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4943 | return destType; |
| 4944 | } |
| 4945 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4946 | if (getLangOpts().ObjCAutoRefCount) { |
Eli Friedman | a66eccb | 2012-02-25 00:23:44 +0000 | [diff] [blame] | 4947 | // ARC forbids the implicit conversion of object pointers to 'void *', |
| 4948 | // so these types are not compatible. |
| 4949 | Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy |
| 4950 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 4951 | LHS = RHS = true; |
| 4952 | return QualType(); |
| 4953 | } |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4954 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 4955 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
| 4956 | QualType destPointee |
| 4957 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
| 4958 | QualType destType = Context.getPointerType(destPointee); |
| 4959 | // Add qualifiers if necessary. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4960 | RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4961 | // Promote to void*. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 4962 | LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast); |
Fariborz Jahanian | eebc475 | 2009-12-10 19:47:41 +0000 | [diff] [blame] | 4963 | return destType; |
| 4964 | } |
| 4965 | return QualType(); |
| 4966 | } |
| 4967 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 4968 | /// SuggestParentheses - Emit a note with a fixit hint that wraps |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 4969 | /// ParenRange in parentheses. |
| 4970 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 4971 | const PartialDiagnostic &Note, |
| 4972 | SourceRange ParenRange) { |
| 4973 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 4974 | if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && |
| 4975 | EndLoc.isValid()) { |
| 4976 | Self.Diag(Loc, Note) |
| 4977 | << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 4978 | << FixItHint::CreateInsertion(EndLoc, ")"); |
| 4979 | } else { |
| 4980 | // We can't display the parentheses, so just show the bare note. |
| 4981 | Self.Diag(Loc, Note) << ParenRange; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 4982 | } |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 4983 | } |
| 4984 | |
| 4985 | static bool IsArithmeticOp(BinaryOperatorKind Opc) { |
| 4986 | return Opc >= BO_Mul && Opc <= BO_Shr; |
| 4987 | } |
| 4988 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 4989 | /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary |
| 4990 | /// expression, either using a built-in or overloaded operator, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4991 | /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side |
| 4992 | /// expression. |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 4993 | static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 4994 | Expr **RHSExprs) { |
Hans Wennborg | cb4d7c2 | 2011-09-12 12:07:30 +0000 | [diff] [blame] | 4995 | // Don't strip parenthesis: we should not warn if E is in parenthesis. |
| 4996 | E = E->IgnoreImpCasts(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 4997 | E = E->IgnoreConversionOperator(); |
Hans Wennborg | cb4d7c2 | 2011-09-12 12:07:30 +0000 | [diff] [blame] | 4998 | E = E->IgnoreImpCasts(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 4999 | |
| 5000 | // Built-in binary operator. |
| 5001 | if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { |
| 5002 | if (IsArithmeticOp(OP->getOpcode())) { |
| 5003 | *Opcode = OP->getOpcode(); |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5004 | *RHSExprs = OP->getRHS(); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5005 | return true; |
| 5006 | } |
| 5007 | } |
| 5008 | |
| 5009 | // Overloaded operator. |
| 5010 | if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { |
| 5011 | if (Call->getNumArgs() != 2) |
| 5012 | return false; |
| 5013 | |
| 5014 | // Make sure this is really a binary operator that is safe to pass into |
| 5015 | // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. |
| 5016 | OverloadedOperatorKind OO = Call->getOperator(); |
| 5017 | if (OO < OO_Plus || OO > OO_Arrow) |
| 5018 | return false; |
| 5019 | |
| 5020 | BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); |
| 5021 | if (IsArithmeticOp(OpKind)) { |
| 5022 | *Opcode = OpKind; |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5023 | *RHSExprs = Call->getArg(1); |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5024 | return true; |
| 5025 | } |
| 5026 | } |
| 5027 | |
| 5028 | return false; |
| 5029 | } |
| 5030 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5031 | static bool IsLogicOp(BinaryOperatorKind Opc) { |
| 5032 | return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); |
| 5033 | } |
| 5034 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5035 | /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type |
| 5036 | /// or is a logical expression such as (x==y) which has int type, but is |
| 5037 | /// commonly interpreted as boolean. |
| 5038 | static bool ExprLooksBoolean(Expr *E) { |
| 5039 | E = E->IgnoreParenImpCasts(); |
| 5040 | |
| 5041 | if (E->getType()->isBooleanType()) |
| 5042 | return true; |
| 5043 | if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) |
| 5044 | return IsLogicOp(OP->getOpcode()); |
| 5045 | if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) |
| 5046 | return OP->getOpcode() == UO_LNot; |
| 5047 | |
| 5048 | return false; |
| 5049 | } |
| 5050 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5051 | /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator |
| 5052 | /// and binary operator are mixed in a way that suggests the programmer assumed |
| 5053 | /// the conditional operator has higher precedence, for example: |
| 5054 | /// "int x = a + someBinaryCondition ? 1 : 2". |
| 5055 | static void DiagnoseConditionalPrecedence(Sema &Self, |
| 5056 | SourceLocation OpLoc, |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5057 | Expr *Condition, |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5058 | Expr *LHSExpr, |
| 5059 | Expr *RHSExpr) { |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5060 | BinaryOperatorKind CondOpcode; |
| 5061 | Expr *CondRHS; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5062 | |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5063 | if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5064 | return; |
| 5065 | if (!ExprLooksBoolean(CondRHS)) |
| 5066 | return; |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5067 | |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5068 | // The condition is an arithmetic binary expression, with a right- |
| 5069 | // hand side that looks boolean, so warn. |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5070 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5071 | Self.Diag(OpLoc, diag::warn_precedence_conditional) |
Chandler Carruth | 43bc78d | 2011-06-16 01:05:08 +0000 | [diff] [blame] | 5072 | << Condition->getSourceRange() |
Hans Wennborg | 2f072b4 | 2011-06-09 17:06:51 +0000 | [diff] [blame] | 5073 | << BinaryOperator::getOpcodeStr(CondOpcode); |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5074 | |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 5075 | SuggestParentheses(Self, OpLoc, |
| 5076 | Self.PDiag(diag::note_precedence_conditional_silence) |
| 5077 | << BinaryOperator::getOpcodeStr(CondOpcode), |
| 5078 | SourceRange(Condition->getLocStart(), Condition->getLocEnd())); |
Chandler Carruth | 9d5353c | 2011-06-21 23:04:18 +0000 | [diff] [blame] | 5079 | |
| 5080 | SuggestParentheses(Self, OpLoc, |
| 5081 | Self.PDiag(diag::note_precedence_conditional_first), |
Richard Trieu | 33fc757 | 2011-09-06 20:06:39 +0000 | [diff] [blame] | 5082 | SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5083 | } |
| 5084 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5085 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5086 | /// in the case of a the GNU conditional expr extension. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 5087 | ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5088 | SourceLocation ColonLoc, |
| 5089 | Expr *CondExpr, Expr *LHSExpr, |
| 5090 | Expr *RHSExpr) { |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 5091 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 5092 | // was the condition. |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5093 | OpaqueValueExpr *opaqueValue = 0; |
| 5094 | Expr *commonExpr = 0; |
| 5095 | if (LHSExpr == 0) { |
| 5096 | commonExpr = CondExpr; |
| 5097 | |
| 5098 | // We usually want to apply unary conversions *before* saving, except |
| 5099 | // in the special case of a C++ l-value conditional. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5100 | if (!(getLangOpts().CPlusPlus |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5101 | && !commonExpr->isTypeDependent() |
| 5102 | && commonExpr->getValueKind() == RHSExpr->getValueKind() |
| 5103 | && commonExpr->isGLValue() |
| 5104 | && commonExpr->isOrdinaryOrBitFieldObject() |
| 5105 | && RHSExpr->isOrdinaryOrBitFieldObject() |
| 5106 | && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5107 | ExprResult commonRes = UsualUnaryConversions(commonExpr); |
| 5108 | if (commonRes.isInvalid()) |
| 5109 | return ExprError(); |
| 5110 | commonExpr = commonRes.take(); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5111 | } |
| 5112 | |
| 5113 | opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), |
| 5114 | commonExpr->getType(), |
| 5115 | commonExpr->getValueKind(), |
Douglas Gregor | 97df54e | 2012-02-23 22:17:26 +0000 | [diff] [blame] | 5116 | commonExpr->getObjectKind(), |
| 5117 | commonExpr); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5118 | LHSExpr = CondExpr = opaqueValue; |
Fariborz Jahanian | f9b949f | 2010-08-31 18:02:20 +0000 | [diff] [blame] | 5119 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5120 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 5121 | ExprValueKind VK = VK_RValue; |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 5122 | ExprObjectKind OK = OK_Ordinary; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5123 | ExprResult Cond = Owned(CondExpr), LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); |
| 5124 | QualType result = CheckConditionalOperands(Cond, LHS, RHS, |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5125 | VK, OK, QuestionLoc); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5126 | if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || |
| 5127 | RHS.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5128 | return ExprError(); |
| 5129 | |
Hans Wennborg | 9cfdae3 | 2011-06-03 18:00:36 +0000 | [diff] [blame] | 5130 | DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), |
| 5131 | RHS.get()); |
| 5132 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5133 | if (!commonExpr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5134 | return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc, |
| 5135 | LHS.take(), ColonLoc, |
| 5136 | RHS.take(), result, VK, OK)); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5137 | |
| 5138 | return Owned(new (Context) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5139 | BinaryConditionalOperator(commonExpr, opaqueValue, Cond.take(), LHS.take(), |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5140 | RHS.take(), QuestionLoc, ColonLoc, result, VK, |
| 5141 | OK)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5142 | } |
| 5143 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5144 | // checkPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5145 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5146 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 5147 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 5148 | // FIXME: add a couple examples in this comment. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5149 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5150 | checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { |
| 5151 | assert(LHSType.isCanonical() && "LHS not canonicalized!"); |
| 5152 | assert(RHSType.isCanonical() && "RHS not canonicalized!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5153 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5154 | // get the "pointed to" type (ignoring qualifiers at the top level) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5155 | const Type *lhptee, *rhptee; |
| 5156 | Qualifiers lhq, rhq; |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5157 | llvm::tie(lhptee, lhq) = cast<PointerType>(LHSType)->getPointeeType().split(); |
| 5158 | llvm::tie(rhptee, rhq) = cast<PointerType>(RHSType)->getPointeeType().split(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5159 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5160 | Sema::AssignConvertType ConvTy = Sema::Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5161 | |
| 5162 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 5163 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 5164 | // qualifiers of the type *pointed to* by the right; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5165 | Qualifiers lq; |
| 5166 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5167 | // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. |
| 5168 | if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && |
| 5169 | lhq.compatiblyIncludesObjCLifetime(rhq)) { |
| 5170 | // Ignore lifetime for further calculation. |
| 5171 | lhq.removeObjCLifetime(); |
| 5172 | rhq.removeObjCLifetime(); |
| 5173 | } |
| 5174 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5175 | if (!lhq.compatiblyIncludes(rhq)) { |
| 5176 | // Treat address-space mismatches as fatal. TODO: address subspaces |
| 5177 | if (lhq.getAddressSpace() != rhq.getAddressSpace()) |
| 5178 | ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; |
| 5179 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5180 | // 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] | 5181 | // and from void*. |
John McCall | 200fa53 | 2012-02-08 00:46:36 +0000 | [diff] [blame] | 5182 | else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5183 | .compatiblyIncludes( |
John McCall | 200fa53 | 2012-02-08 00:46:36 +0000 | [diff] [blame] | 5184 | rhq.withoutObjCGCAttr().withoutObjCLifetime()) |
John McCall | 2234873 | 2011-03-26 02:56:45 +0000 | [diff] [blame] | 5185 | && (lhptee->isVoidType() || rhptee->isVoidType())) |
| 5186 | ; // keep old |
| 5187 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5188 | // Treat lifetime mismatches as fatal. |
| 5189 | else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) |
| 5190 | ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; |
| 5191 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5192 | // For GCC compatibility, other qualifier mismatches are treated |
| 5193 | // as still compatible in C. |
| 5194 | else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; |
| 5195 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5196 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5197 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 5198 | // 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] | 5199 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5200 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5201 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5202 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5203 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5204 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5205 | assert(rhptee->isFunctionType()); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5206 | return Sema::FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5207 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5208 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5209 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5210 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5211 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5212 | |
| 5213 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 5214 | assert(lhptee->isFunctionType()); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5215 | return Sema::FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 5216 | } |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5217 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5218 | // 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] | 5219 | // unqualified versions of compatible types, ... |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5220 | QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); |
| 5221 | if (!S.Context.typesAreCompatible(ltrans, rtrans)) { |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5222 | // Check if the pointee types are compatible ignoring the sign. |
| 5223 | // We explicitly check for char so that we catch "char" vs |
| 5224 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5225 | if (lhptee->isCharType()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5226 | ltrans = S.Context.UnsignedCharTy; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 5227 | else if (lhptee->hasSignedIntegerRepresentation()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5228 | ltrans = S.Context.getCorrespondingUnsignedType(ltrans); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5229 | |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5230 | if (rhptee->isCharType()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5231 | rtrans = S.Context.UnsignedCharTy; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 5232 | else if (rhptee->hasSignedIntegerRepresentation()) |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5233 | rtrans = S.Context.getCorrespondingUnsignedType(rtrans); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 5234 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5235 | if (ltrans == rtrans) { |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5236 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 5237 | // takes priority over sign incompatibility because the sign |
| 5238 | // warning can be disabled. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5239 | if (ConvTy != Sema::Compatible) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5240 | return ConvTy; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5241 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5242 | return Sema::IncompatiblePointerSign; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5243 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5244 | |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5245 | // If we are a multi-level pointer, it's possible that our issue is simply |
| 5246 | // one of qualification - e.g. char ** -> const char ** is not allowed. If |
| 5247 | // the eventual target type is the same and the pointers have the same |
| 5248 | // level of indirection, this must be the issue. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5249 | if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5250 | do { |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5251 | lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); |
| 5252 | rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5253 | } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5254 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 5255 | if (lhptee == rhptee) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5256 | return Sema::IncompatibleNestedPointerQualifiers; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 5257 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5258 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5259 | // General pointer incompatibility takes priority over qualifiers. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5260 | return Sema::IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5261 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5262 | if (!S.getLangOpts().CPlusPlus && |
Fariborz Jahanian | 53c8167 | 2011-10-05 00:05:34 +0000 | [diff] [blame] | 5263 | S.IsNoReturnConversion(ltrans, rtrans, ltrans)) |
| 5264 | return Sema::IncompatiblePointer; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5265 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5266 | } |
| 5267 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5268 | /// checkBlockPointerTypesForAssignment - This routine determines whether two |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5269 | /// block pointer types are compatible or whether a block and normal pointer |
| 5270 | /// are compatible. It is more restrict than comparing two function pointer |
| 5271 | // types. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5272 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5273 | checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, |
| 5274 | QualType RHSType) { |
| 5275 | assert(LHSType.isCanonical() && "LHS not canonicalized!"); |
| 5276 | assert(RHSType.isCanonical() && "RHS not canonicalized!"); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5277 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5278 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5279 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5280 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5281 | lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); |
| 5282 | rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5283 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5284 | // In C++, the types have to match exactly. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5285 | if (S.getLangOpts().CPlusPlus) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5286 | return Sema::IncompatibleBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5287 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5288 | Sema::AssignConvertType ConvTy = Sema::Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5289 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5290 | // For blocks we enforce that qualifiers are identical. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5291 | if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) |
| 5292 | ConvTy = Sema::CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5293 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5294 | if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5295 | return Sema::IncompatibleBlockPointer; |
| 5296 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5297 | return ConvTy; |
| 5298 | } |
| 5299 | |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5300 | /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types |
Fariborz Jahanian | 52efc3f | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 5301 | /// for assignment compatibility. |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5302 | static Sema::AssignConvertType |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5303 | checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, |
| 5304 | QualType RHSType) { |
| 5305 | assert(LHSType.isCanonical() && "LHS was not canonicalized!"); |
| 5306 | assert(RHSType.isCanonical() && "RHS was not canonicalized!"); |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5307 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5308 | if (LHSType->isObjCBuiltinType()) { |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5309 | // Class is not compatible with ObjC object pointers. |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5310 | if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && |
| 5311 | !RHSType->isObjCQualifiedClassType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5312 | return Sema::IncompatiblePointer; |
| 5313 | return Sema::Compatible; |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5314 | } |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5315 | if (RHSType->isObjCBuiltinType()) { |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5316 | if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && |
| 5317 | !LHSType->isObjCQualifiedClassType()) |
Fariborz Jahanian | 412a496 | 2011-09-15 20:40:18 +0000 | [diff] [blame] | 5318 | return Sema::IncompatiblePointer; |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5319 | return Sema::Compatible; |
Fariborz Jahanian | d4c6090 | 2010-03-19 18:06:10 +0000 | [diff] [blame] | 5320 | } |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5321 | QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
| 5322 | QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5323 | |
Fariborz Jahanian | f2b4f7b | 2012-01-12 22:12:08 +0000 | [diff] [blame] | 5324 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && |
| 5325 | // make an exception for id<P> |
| 5326 | !LHSType->isObjCQualifiedIdType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5327 | return Sema::CompatiblePointerDiscardsQualifiers; |
| 5328 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5329 | if (S.Context.typesAreCompatible(LHSType, RHSType)) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5330 | return Sema::Compatible; |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5331 | if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 5332 | return Sema::IncompatibleObjCQualifiedId; |
| 5333 | return Sema::IncompatiblePointer; |
Fariborz Jahanian | 52efc3f | 2009-12-08 18:24:49 +0000 | [diff] [blame] | 5334 | } |
| 5335 | |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5336 | Sema::AssignConvertType |
Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 5337 | Sema::CheckAssignmentConstraints(SourceLocation Loc, |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5338 | QualType LHSType, QualType RHSType) { |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5339 | // Fake up an opaque expression. We don't actually care about what |
| 5340 | // cast operations are required, so if CheckAssignmentConstraints |
| 5341 | // adds casts to this they'll be wasted, but fortunately that doesn't |
| 5342 | // usually happen on valid code. |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5343 | OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); |
| 5344 | ExprResult RHSPtr = &RHSExpr; |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5345 | CastKind K = CK_Invalid; |
| 5346 | |
Richard Trieu | 1da27a1 | 2011-09-06 20:21:22 +0000 | [diff] [blame] | 5347 | return CheckAssignmentConstraints(LHSType, RHSPtr, K); |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5348 | } |
| 5349 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5350 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 5351 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5352 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 5353 | /// |
| 5354 | /// int a, *pint; |
| 5355 | /// short *pshort; |
| 5356 | /// struct foo *pfoo; |
| 5357 | /// |
| 5358 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 5359 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 5360 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 5361 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 5362 | /// |
| 5363 | /// 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] | 5364 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5365 | /// |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5366 | /// Sets 'Kind' for any result kind except Incompatible. |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5367 | Sema::AssignConvertType |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5368 | Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5369 | CastKind &Kind) { |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5370 | QualType RHSType = RHS.get()->getType(); |
| 5371 | QualType OrigLHSType = LHSType; |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5372 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5373 | // Get canonical types. We're not formatting these types, just comparing |
| 5374 | // them. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5375 | LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); |
| 5376 | RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5377 | |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5378 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5379 | // Common case: no conversion required. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5380 | if (LHSType == RHSType) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5381 | Kind = CK_NoOp; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5382 | return Compatible; |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 5383 | } |
| 5384 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5385 | if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { |
| 5386 | if (AtomicTy->getValueType() == RHSType) { |
| 5387 | Kind = CK_NonAtomicToAtomic; |
| 5388 | return Compatible; |
| 5389 | } |
| 5390 | } |
| 5391 | |
| 5392 | if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(RHSType)) { |
| 5393 | if (AtomicTy->getValueType() == LHSType) { |
| 5394 | Kind = CK_AtomicToNonAtomic; |
| 5395 | return Compatible; |
| 5396 | } |
| 5397 | } |
| 5398 | |
| 5399 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 5400 | // If the left-hand side is a reference type, then we are in a |
| 5401 | // (rare!) case where we've allowed the use of references in C, |
| 5402 | // e.g., as a parameter type in a built-in function. In this case, |
| 5403 | // just make sure that the type referenced is compatible with the |
| 5404 | // right-hand side type. The caller is responsible for adjusting |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5405 | // LHSType so that the resulting expression does not have reference |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 5406 | // type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5407 | if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { |
| 5408 | if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5409 | Kind = CK_LValueBitCast; |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 5410 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5411 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5412 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 5413 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5414 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5415 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 5416 | // to the same ExtVector type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5417 | if (LHSType->isExtVectorType()) { |
| 5418 | if (RHSType->isExtVectorType()) |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5419 | return Incompatible; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5420 | if (RHSType->isArithmeticType()) { |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5421 | // CK_VectorSplat does T -> vector T, so first cast to the |
| 5422 | // element type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5423 | QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); |
| 5424 | if (elType != RHSType) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 5425 | Kind = PrepareScalarCast(RHS, elType); |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5426 | RHS = ImpCastExprToType(RHS.take(), elType, Kind); |
John McCall | 1c23e91 | 2010-11-16 02:32:08 +0000 | [diff] [blame] | 5427 | } |
| 5428 | Kind = CK_VectorSplat; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5429 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5430 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5431 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5432 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5433 | // Conversions to or from vector type. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5434 | if (LHSType->isVectorType() || RHSType->isVectorType()) { |
| 5435 | if (LHSType->isVectorType() && RHSType->isVectorType()) { |
Bob Wilson | de3deea | 2010-12-02 00:25:15 +0000 | [diff] [blame] | 5436 | // Allow assignments of an AltiVec vector type to an equivalent GCC |
| 5437 | // vector type and vice versa |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5438 | if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { |
Bob Wilson | de3deea | 2010-12-02 00:25:15 +0000 | [diff] [blame] | 5439 | Kind = CK_BitCast; |
| 5440 | return Compatible; |
| 5441 | } |
| 5442 | |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 5443 | // If we are allowing lax vector conversions, and LHS and RHS are both |
| 5444 | // vectors, the total size only needs to be the same. This is a bitcast; |
| 5445 | // no bits are changed but the result type is different. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5446 | if (getLangOpts().LaxVectorConversions && |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5447 | (Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType))) { |
John McCall | 0c6d28d | 2010-11-15 10:08:00 +0000 | [diff] [blame] | 5448 | Kind = CK_BitCast; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5449 | return IncompatibleVectors; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5450 | } |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 5451 | } |
| 5452 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5453 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5454 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5455 | // Arithmetic conversions. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5456 | if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5457 | !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 5458 | Kind = PrepareScalarCast(RHS, LHSType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5459 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5460 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5461 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5462 | // Conversions to normal pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5463 | if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5464 | // U* -> T* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5465 | if (isa<PointerType>(RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5466 | Kind = CK_BitCast; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5467 | return checkPointerTypesForAssignment(*this, LHSType, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5468 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5469 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5470 | // int -> T* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5471 | if (RHSType->isIntegerType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5472 | Kind = CK_IntegralToPointer; // FIXME: null? |
| 5473 | return IntToPointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5474 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5475 | |
| 5476 | // C pointers are not compatible with ObjC object pointers, |
| 5477 | // with two exceptions: |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5478 | if (isa<ObjCObjectPointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5479 | // - conversions to void* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5480 | if (LHSPointer->getPointeeType()->isVoidType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5481 | Kind = CK_BitCast; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5482 | return Compatible; |
| 5483 | } |
| 5484 | |
| 5485 | // - conversions from 'Class' to the redefinition type |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5486 | if (RHSType->isObjCClassType() && |
| 5487 | Context.hasSameType(LHSType, |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5488 | Context.getObjCClassRedefinitionType())) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5489 | Kind = CK_BitCast; |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 5490 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5491 | } |
Douglas Gregor | c737acb | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 5492 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5493 | Kind = CK_BitCast; |
| 5494 | return IncompatiblePointer; |
| 5495 | } |
| 5496 | |
| 5497 | // U^ -> void* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5498 | if (RHSType->getAs<BlockPointerType>()) { |
| 5499 | if (LHSPointer->getPointeeType()->isVoidType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5500 | Kind = CK_BitCast; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5501 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5502 | } |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5503 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5504 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5505 | return Incompatible; |
| 5506 | } |
| 5507 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5508 | // Conversions to block pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5509 | if (isa<BlockPointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5510 | // U^ -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5511 | if (RHSType->isBlockPointerType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5512 | Kind = CK_BitCast; |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5513 | return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5514 | } |
| 5515 | |
| 5516 | // int or null -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5517 | if (RHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5518 | Kind = CK_IntegralToPointer; // FIXME: null |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 5519 | return IntToBlockPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5520 | } |
| 5521 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5522 | // id -> T^ |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5523 | if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5524 | Kind = CK_AnyPointerToBlockPointerCast; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5525 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5526 | } |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 5527 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5528 | // void* -> T^ |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5529 | if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5530 | if (RHSPT->getPointeeType()->isVoidType()) { |
| 5531 | Kind = CK_AnyPointerToBlockPointerCast; |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 5532 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5533 | } |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5534 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5535 | return Incompatible; |
| 5536 | } |
| 5537 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5538 | // Conversions to Objective-C pointers. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5539 | if (isa<ObjCObjectPointerType>(LHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5540 | // A* -> B* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5541 | if (RHSType->isObjCObjectPointerType()) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5542 | Kind = CK_BitCast; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5543 | Sema::AssignConvertType result = |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5544 | checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5545 | if (getLangOpts().ObjCAutoRefCount && |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5546 | result == Compatible && |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5547 | !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 5548 | result = IncompatibleObjCWeakRef; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 5549 | return result; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5550 | } |
| 5551 | |
| 5552 | // int or null -> A* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5553 | if (RHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5554 | Kind = CK_IntegralToPointer; // FIXME: null |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5555 | return IntToPointer; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5556 | } |
| 5557 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5558 | // In general, C pointers are not compatible with ObjC object pointers, |
| 5559 | // with two exceptions: |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5560 | if (isa<PointerType>(RHSType)) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5561 | Kind = CK_CPointerToObjCPointerCast; |
| 5562 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5563 | // - conversions from 'void*' |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5564 | if (RHSType->isVoidPointerType()) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 5565 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5566 | } |
| 5567 | |
| 5568 | // - conversions to 'Class' from its redefinition type |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5569 | if (LHSType->isObjCClassType() && |
| 5570 | Context.hasSameType(RHSType, |
Douglas Gregor | 01a4cf1 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 5571 | Context.getObjCClassRedefinitionType())) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5572 | return Compatible; |
| 5573 | } |
| 5574 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 5575 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5576 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5577 | |
| 5578 | // T^ -> A* |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5579 | if (RHSType->isBlockPointerType()) { |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 5580 | maybeExtendBlockObject(*this, RHS); |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5581 | Kind = CK_BlockPointerToObjCPointerCast; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5582 | return Compatible; |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5583 | } |
| 5584 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5585 | return Incompatible; |
| 5586 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5587 | |
| 5588 | // Conversions from pointers that are not covered by the above. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5589 | if (isa<PointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5590 | // T* -> _Bool |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5591 | if (LHSType == Context.BoolTy) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5592 | Kind = CK_PointerToBoolean; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5593 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5594 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5595 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5596 | // T* -> int |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5597 | if (LHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5598 | Kind = CK_PointerToIntegral; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5599 | return PointerToInt; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5600 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5601 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5602 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 5603 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5604 | |
| 5605 | // Conversions from Objective-C pointers that are not covered by the above. |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5606 | if (isa<ObjCObjectPointerType>(RHSType)) { |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5607 | // T* -> _Bool |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5608 | if (LHSType == Context.BoolTy) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5609 | Kind = CK_PointerToBoolean; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5610 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5611 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5612 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5613 | // T* -> int |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5614 | if (LHSType->isIntegerType()) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5615 | Kind = CK_PointerToIntegral; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5616 | return PointerToInt; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5617 | } |
| 5618 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5619 | return Incompatible; |
| 5620 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 5621 | |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5622 | // struct A -> struct B |
Richard Trieu | facef2e | 2011-09-06 20:30:53 +0000 | [diff] [blame] | 5623 | if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { |
| 5624 | if (Context.typesAreCompatible(LHSType, RHSType)) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5625 | Kind = CK_NoOp; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5626 | return Compatible; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5627 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5628 | } |
John McCall | b6cfa24 | 2011-01-31 22:28:28 +0000 | [diff] [blame] | 5629 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5630 | return Incompatible; |
| 5631 | } |
| 5632 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5633 | /// \brief Constructs a transparent union from an expression that is |
| 5634 | /// used to initialize the transparent union. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5635 | static void ConstructTransparentUnion(Sema &S, ASTContext &C, |
| 5636 | ExprResult &EResult, QualType UnionType, |
| 5637 | FieldDecl *Field) { |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5638 | // Build an initializer list that designates the appropriate member |
| 5639 | // of the transparent union. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5640 | Expr *E = EResult.take(); |
Ted Kremenek | 709210f | 2010-04-13 23:39:13 +0000 | [diff] [blame] | 5641 | InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), |
Ted Kremenek | ba7bc55 | 2010-02-19 01:50:18 +0000 | [diff] [blame] | 5642 | &E, 1, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5643 | SourceLocation()); |
| 5644 | Initializer->setType(UnionType); |
| 5645 | Initializer->setInitializedFieldInUnion(Field); |
| 5646 | |
| 5647 | // Build a compound literal constructing a value of the transparent |
| 5648 | // union type from this initializer list. |
John McCall | 42f56b5 | 2010-01-18 19:35:47 +0000 | [diff] [blame] | 5649 | TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5650 | EResult = S.Owned( |
| 5651 | new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, |
| 5652 | VK_RValue, Initializer, false)); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5653 | } |
| 5654 | |
| 5655 | Sema::AssignConvertType |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5656 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5657 | ExprResult &RHS) { |
| 5658 | QualType RHSType = RHS.get()->getType(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5659 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5660 | // 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] | 5661 | // transparent_union GCC extension. |
| 5662 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5663 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5664 | return Incompatible; |
| 5665 | |
| 5666 | // The field to initialize within the transparent union. |
| 5667 | RecordDecl *UD = UT->getDecl(); |
| 5668 | FieldDecl *InitField = 0; |
| 5669 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 5670 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 5671 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5672 | it != itend; ++it) { |
| 5673 | if (it->getType()->isPointerType()) { |
| 5674 | // If the transparent union contains a pointer type, we allow: |
| 5675 | // 1) void pointer |
| 5676 | // 2) null pointer constant |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5677 | if (RHSType->isPointerType()) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 5678 | if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5679 | RHS = ImpCastExprToType(RHS.take(), it->getType(), CK_BitCast); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5680 | InitField = *it; |
| 5681 | break; |
| 5682 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5683 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5684 | if (RHS.get()->isNullPointerConstant(Context, |
| 5685 | Expr::NPC_ValueDependentIsNull)) { |
| 5686 | RHS = ImpCastExprToType(RHS.take(), it->getType(), |
| 5687 | CK_NullToPointer); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5688 | InitField = *it; |
| 5689 | break; |
| 5690 | } |
| 5691 | } |
| 5692 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5693 | CastKind Kind = CK_Invalid; |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5694 | if (CheckAssignmentConstraints(it->getType(), RHS, Kind) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5695 | == Compatible) { |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5696 | RHS = ImpCastExprToType(RHS.take(), it->getType(), Kind); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5697 | InitField = *it; |
| 5698 | break; |
| 5699 | } |
| 5700 | } |
| 5701 | |
| 5702 | if (!InitField) |
| 5703 | return Incompatible; |
| 5704 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5705 | ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 5706 | return Compatible; |
| 5707 | } |
| 5708 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5709 | Sema::AssignConvertType |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 5710 | Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, |
| 5711 | bool Diagnose) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5712 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5713 | if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 5714 | // C++ 5.17p3: If the left operand is not of class type, the |
| 5715 | // expression is implicitly converted (C++ 4) to the |
| 5716 | // cv-unqualified type of the left operand. |
Sebastian Redl | 091fffe | 2011-10-16 18:19:06 +0000 | [diff] [blame] | 5717 | ExprResult Res; |
| 5718 | if (Diagnose) { |
| 5719 | Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 5720 | AA_Assigning); |
| 5721 | } else { |
| 5722 | ImplicitConversionSequence ICS = |
| 5723 | TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 5724 | /*SuppressUserConversions=*/false, |
| 5725 | /*AllowExplicit=*/false, |
| 5726 | /*InOverloadResolution=*/false, |
| 5727 | /*CStyle=*/false, |
| 5728 | /*AllowObjCWritebackConversion=*/false); |
| 5729 | if (ICS.isFailure()) |
| 5730 | return Incompatible; |
| 5731 | Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), |
| 5732 | ICS, AA_Assigning); |
| 5733 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5734 | if (Res.isInvalid()) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 5735 | return Incompatible; |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 5736 | Sema::AssignConvertType result = Compatible; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5737 | if (getLangOpts().ObjCAutoRefCount && |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5738 | !CheckObjCARCUnavailableWeakConversion(LHSType, |
| 5739 | RHS.get()->getType())) |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 5740 | result = IncompatibleObjCWeakRef; |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5741 | RHS = move(Res); |
Fariborz Jahanian | 7a084ec | 2011-07-07 23:04:17 +0000 | [diff] [blame] | 5742 | return result; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 5743 | } |
| 5744 | |
| 5745 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 5746 | // structures. |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 5747 | // FIXME: We also fall through for atomics; not sure what should |
| 5748 | // happen there, though. |
Sebastian Redl | 14b0c19 | 2011-09-24 17:48:00 +0000 | [diff] [blame] | 5749 | } |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 5750 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 5751 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 5752 | // a null pointer constant. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5753 | if ((LHSType->isPointerType() || |
| 5754 | LHSType->isObjCObjectPointerType() || |
| 5755 | LHSType->isBlockPointerType()) |
| 5756 | && RHS.get()->isNullPointerConstant(Context, |
| 5757 | Expr::NPC_ValueDependentIsNull)) { |
| 5758 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 5759 | return Compatible; |
| 5760 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5761 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 5762 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 5763 | // conversion of functions/arrays. If the conversion were done for all |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 5764 | // DeclExpr's (created by ActOnIdExpression), it would mess up the unary |
Nick Lewycky | c133e9e | 2010-08-05 06:27:49 +0000 | [diff] [blame] | 5765 | // expressions that suppress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 5766 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5767 | // Suppress this for references: C++ 8.5.3p5. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5768 | if (!LHSType->isReferenceType()) { |
| 5769 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 5770 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5771 | return Incompatible; |
| 5772 | } |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 5773 | |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5774 | CastKind Kind = CK_Invalid; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5775 | Sema::AssignConvertType result = |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5776 | CheckAssignmentConstraints(LHSType, RHS, Kind); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5777 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 5778 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 5779 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 5780 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 5781 | // so that we can use references in built-in functions even in C. |
| 5782 | // The getNonReferenceType() call makes sure that the resulting expression |
| 5783 | // does not have reference type. |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5784 | if (result != Incompatible && RHS.get()->getType() != LHSType) |
| 5785 | RHS = ImpCastExprToType(RHS.take(), |
| 5786 | LHSType.getNonLValueExprType(Context), Kind); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 5787 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 5788 | } |
| 5789 | |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5790 | QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, |
| 5791 | ExprResult &RHS) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 5792 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Richard Trieu | f7720da | 2011-09-06 20:40:12 +0000 | [diff] [blame] | 5793 | << LHS.get()->getType() << RHS.get()->getType() |
| 5794 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 5795 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5796 | } |
| 5797 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5798 | QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5799 | SourceLocation Loc, bool IsCompAssign) { |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 5800 | if (!IsCompAssign) { |
| 5801 | LHS = DefaultFunctionArrayLvalueConversion(LHS.take()); |
| 5802 | if (LHS.isInvalid()) |
| 5803 | return QualType(); |
| 5804 | } |
| 5805 | RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 5806 | if (RHS.isInvalid()) |
| 5807 | return QualType(); |
| 5808 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5809 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 5810 | // For example, "const float" and "float" are equivalent. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5811 | QualType LHSType = |
| 5812 | Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); |
| 5813 | QualType RHSType = |
| 5814 | Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5815 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 5816 | // If the vector types are identical, return. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5817 | if (LHSType == RHSType) |
| 5818 | return LHSType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 5819 | |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 5820 | // Handle the case of equivalent AltiVec and GCC vector types |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5821 | if (LHSType->isVectorType() && RHSType->isVectorType() && |
| 5822 | Context.areCompatibleVectorTypes(LHSType, RHSType)) { |
| 5823 | if (LHSType->isExtVectorType()) { |
| 5824 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
| 5825 | return LHSType; |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 5826 | } |
| 5827 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5828 | if (!IsCompAssign) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5829 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
| 5830 | return RHSType; |
Douglas Gregor | 255210e | 2010-08-06 10:14:59 +0000 | [diff] [blame] | 5831 | } |
| 5832 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5833 | if (getLangOpts().LaxVectorConversions && |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5834 | Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType)) { |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 5835 | // If we are allowing lax vector conversions, and LHS and RHS are both |
| 5836 | // vectors, the total size only needs to be the same. This is a |
| 5837 | // bitcast; no bits are changed but the result type is different. |
| 5838 | // FIXME: Should we really be allowing this? |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5839 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
| 5840 | return LHSType; |
Eli Friedman | b9b4b78 | 2011-06-23 18:10:35 +0000 | [diff] [blame] | 5841 | } |
| 5842 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5843 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 5844 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 5845 | bool swapped = false; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5846 | if (RHSType->isExtVectorType() && !IsCompAssign) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5847 | swapped = true; |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5848 | std::swap(RHS, LHS); |
| 5849 | std::swap(RHSType, LHSType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5850 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5851 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 5852 | // Handle the case of an ext vector and scalar. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5853 | if (const ExtVectorType *LV = LHSType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5854 | QualType EltTy = LV->getElementType(); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5855 | if (EltTy->isIntegralType(Context) && RHSType->isIntegralType(Context)) { |
| 5856 | int order = Context.getIntegerTypeOrder(EltTy, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5857 | if (order > 0) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5858 | RHS = ImpCastExprToType(RHS.take(), EltTy, CK_IntegralCast); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5859 | if (order >= 0) { |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5860 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); |
| 5861 | if (swapped) std::swap(RHS, LHS); |
| 5862 | return LHSType; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5863 | } |
| 5864 | } |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5865 | if (EltTy->isRealFloatingType() && RHSType->isScalarType() && |
| 5866 | RHSType->isRealFloatingType()) { |
| 5867 | int order = Context.getFloatingTypeOrder(EltTy, RHSType); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5868 | if (order > 0) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5869 | RHS = ImpCastExprToType(RHS.take(), EltTy, CK_FloatingCast); |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 5870 | if (order >= 0) { |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5871 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); |
| 5872 | if (swapped) std::swap(RHS, LHS); |
| 5873 | return LHSType; |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 5874 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 5875 | } |
| 5876 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5877 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 5878 | // Vectors of different size or scalar and non-ext-vector are errors. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5879 | if (swapped) std::swap(RHS, LHS); |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 5880 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5881 | << LHS.get()->getType() << RHS.get()->getType() |
| 5882 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5883 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5884 | } |
| 5885 | |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 5886 | // checkArithmeticNull - Detect when a NULL constant is used improperly in an |
| 5887 | // expression. These are mainly cases where the null pointer is used as an |
| 5888 | // integer instead of a pointer. |
| 5889 | static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, |
| 5890 | SourceLocation Loc, bool IsCompare) { |
| 5891 | // The canonical way to check for a GNU null is with isNullPointerConstant, |
| 5892 | // but we use a bit of a hack here for speed; this is a relatively |
| 5893 | // hot path, and isNullPointerConstant is slow. |
| 5894 | bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); |
| 5895 | bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); |
| 5896 | |
| 5897 | QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); |
| 5898 | |
| 5899 | // Avoid analyzing cases where the result will either be invalid (and |
| 5900 | // diagnosed as such) or entirely valid and not something to warn about. |
| 5901 | if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || |
| 5902 | NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) |
| 5903 | return; |
| 5904 | |
| 5905 | // Comparison operations would not make sense with a null pointer no matter |
| 5906 | // what the other expression is. |
| 5907 | if (!IsCompare) { |
| 5908 | S.Diag(Loc, diag::warn_null_in_arithmetic_operation) |
| 5909 | << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) |
| 5910 | << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); |
| 5911 | return; |
| 5912 | } |
| 5913 | |
| 5914 | // The rest of the operations only make sense with a null pointer |
| 5915 | // if the other expression is a pointer. |
| 5916 | if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || |
| 5917 | NonNullType->canDecayToPointerType()) |
| 5918 | return; |
| 5919 | |
| 5920 | S.Diag(Loc, diag::warn_null_in_comparison_operation) |
| 5921 | << LHSNull /* LHS is NULL */ << NonNullType |
| 5922 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
| 5923 | } |
| 5924 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5925 | QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5926 | SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5927 | bool IsCompAssign, bool IsDiv) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 5928 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 5929 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5930 | if (LHS.get()->getType()->isVectorType() || |
| 5931 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5932 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5933 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5934 | QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5935 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5936 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5937 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5938 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5939 | if (!LHS.get()->getType()->isArithmeticType() || |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5940 | !RHS.get()->getType()->isArithmeticType()) { |
| 5941 | if (IsCompAssign && |
| 5942 | LHS.get()->getType()->isAtomicType() && |
| 5943 | RHS.get()->getType()->isArithmeticType()) |
| 5944 | return compType; |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5945 | return InvalidOperands(Loc, LHS, RHS); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 5946 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5947 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 5948 | // Check for division by zero. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5949 | if (IsDiv && |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5950 | RHS.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5951 | Expr::NPC_ValueDependentIsNotNull)) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5952 | DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_division_by_zero) |
| 5953 | << RHS.get()->getSourceRange()); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5954 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 5955 | return compType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5956 | } |
| 5957 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 5958 | QualType Sema::CheckRemainderOperands( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5959 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 5960 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 5961 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5962 | if (LHS.get()->getType()->isVectorType() || |
| 5963 | RHS.get()->getType()->isVectorType()) { |
| 5964 | if (LHS.get()->getType()->hasIntegerRepresentation() && |
| 5965 | RHS.get()->getType()->hasIntegerRepresentation()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5966 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5967 | return InvalidOperands(Loc, LHS, RHS); |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 5968 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 5969 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 5970 | QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5971 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5972 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5973 | |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5974 | if (!LHS.get()->getType()->isIntegerType() || |
| 5975 | !RHS.get()->getType()->isIntegerType()) |
| 5976 | return InvalidOperands(Loc, LHS, RHS); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5977 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 5978 | // Check for remainder by zero. |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5979 | if (RHS.get()->isNullPointerConstant(Context, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 5980 | Expr::NPC_ValueDependentIsNotNull)) |
Richard Trieu | 08062aa | 2011-09-06 21:01:04 +0000 | [diff] [blame] | 5981 | DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_remainder_by_zero) |
| 5982 | << RHS.get()->getSourceRange()); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 5983 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 5984 | return compType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5985 | } |
| 5986 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 5987 | /// \brief Diagnose invalid arithmetic on two void pointers. |
| 5988 | static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 5989 | Expr *LHSExpr, Expr *RHSExpr) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5990 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 5991 | ? diag::err_typecheck_pointer_arith_void_type |
| 5992 | : diag::ext_gnu_void_ptr) |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 5993 | << 1 /* two pointers */ << LHSExpr->getSourceRange() |
| 5994 | << RHSExpr->getSourceRange(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 5995 | } |
| 5996 | |
| 5997 | /// \brief Diagnose invalid arithmetic on a void pointer. |
| 5998 | static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, |
| 5999 | Expr *Pointer) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6000 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6001 | ? diag::err_typecheck_pointer_arith_void_type |
| 6002 | : diag::ext_gnu_void_ptr) |
| 6003 | << 0 /* one pointer */ << Pointer->getSourceRange(); |
| 6004 | } |
| 6005 | |
| 6006 | /// \brief Diagnose invalid arithmetic on two function pointers. |
| 6007 | static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, |
| 6008 | Expr *LHS, Expr *RHS) { |
| 6009 | assert(LHS->getType()->isAnyPointerType()); |
| 6010 | assert(RHS->getType()->isAnyPointerType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6011 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6012 | ? diag::err_typecheck_pointer_arith_function_type |
| 6013 | : diag::ext_gnu_ptr_func_arith) |
| 6014 | << 1 /* two pointers */ << LHS->getType()->getPointeeType() |
| 6015 | // We only show the second type if it differs from the first. |
| 6016 | << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), |
| 6017 | RHS->getType()) |
| 6018 | << RHS->getType()->getPointeeType() |
| 6019 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 6020 | } |
| 6021 | |
| 6022 | /// \brief Diagnose invalid arithmetic on a function pointer. |
| 6023 | static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, |
| 6024 | Expr *Pointer) { |
| 6025 | assert(Pointer->getType()->isAnyPointerType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6026 | S.Diag(Loc, S.getLangOpts().CPlusPlus |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6027 | ? diag::err_typecheck_pointer_arith_function_type |
| 6028 | : diag::ext_gnu_ptr_func_arith) |
| 6029 | << 0 /* one pointer */ << Pointer->getType()->getPointeeType() |
| 6030 | << 0 /* one pointer, so only one type */ |
| 6031 | << Pointer->getSourceRange(); |
| 6032 | } |
| 6033 | |
Richard Trieu | d9f1934 | 2011-09-12 18:08:02 +0000 | [diff] [blame] | 6034 | /// \brief Emit error if Operand is incomplete pointer type |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6035 | /// |
| 6036 | /// \returns True if pointer has incomplete type |
| 6037 | static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, |
| 6038 | Expr *Operand) { |
| 6039 | if ((Operand->getType()->isPointerType() && |
| 6040 | !Operand->getType()->isDependentType()) || |
| 6041 | Operand->getType()->isObjCObjectPointerType()) { |
| 6042 | QualType PointeeTy = Operand->getType()->getPointeeType(); |
| 6043 | if (S.RequireCompleteType( |
| 6044 | Loc, PointeeTy, |
| 6045 | S.PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 6046 | << PointeeTy << Operand->getSourceRange())) |
| 6047 | return true; |
| 6048 | } |
| 6049 | return false; |
| 6050 | } |
| 6051 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6052 | /// \brief Check the validity of an arithmetic pointer operand. |
| 6053 | /// |
| 6054 | /// If the operand has pointer type, this code will check for pointer types |
| 6055 | /// which are invalid in arithmetic operations. These will be diagnosed |
| 6056 | /// appropriately, including whether or not the use is supported as an |
| 6057 | /// extension. |
| 6058 | /// |
| 6059 | /// \returns True when the operand is valid to use (even if as an extension). |
| 6060 | static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, |
| 6061 | Expr *Operand) { |
| 6062 | if (!Operand->getType()->isAnyPointerType()) return true; |
| 6063 | |
| 6064 | QualType PointeeTy = Operand->getType()->getPointeeType(); |
| 6065 | if (PointeeTy->isVoidType()) { |
| 6066 | diagnoseArithmeticOnVoidPointer(S, Loc, Operand); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6067 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6068 | } |
| 6069 | if (PointeeTy->isFunctionType()) { |
| 6070 | diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6071 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6072 | } |
| 6073 | |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6074 | if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6075 | |
| 6076 | return true; |
| 6077 | } |
| 6078 | |
| 6079 | /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer |
| 6080 | /// operands. |
| 6081 | /// |
| 6082 | /// This routine will diagnose any invalid arithmetic on pointer operands much |
| 6083 | /// like \see checkArithmeticOpPointerOperand. However, it has special logic |
| 6084 | /// for emitting a single diagnostic even for operations where both LHS and RHS |
| 6085 | /// are (potentially problematic) pointers. |
| 6086 | /// |
| 6087 | /// \returns True when the operand is valid to use (even if as an extension). |
| 6088 | static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6089 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6090 | bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); |
| 6091 | bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6092 | if (!isLHSPointer && !isRHSPointer) return true; |
| 6093 | |
| 6094 | QualType LHSPointeeTy, RHSPointeeTy; |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6095 | if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); |
| 6096 | if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6097 | |
| 6098 | // Check for arithmetic on pointers to incomplete types. |
| 6099 | bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); |
| 6100 | bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); |
| 6101 | if (isLHSVoidPtr || isRHSVoidPtr) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6102 | if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); |
| 6103 | else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); |
| 6104 | else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6105 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6106 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6107 | } |
| 6108 | |
| 6109 | bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); |
| 6110 | bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); |
| 6111 | if (isLHSFuncPtr || isRHSFuncPtr) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6112 | if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); |
| 6113 | else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, |
| 6114 | RHSExpr); |
| 6115 | else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6116 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6117 | return !S.getLangOpts().CPlusPlus; |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6118 | } |
| 6119 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6120 | if (checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) return false; |
| 6121 | if (checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) return false; |
Richard Trieu | 097ecd2 | 2011-09-02 02:15:37 +0000 | [diff] [blame] | 6122 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6123 | return true; |
| 6124 | } |
| 6125 | |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6126 | /// \brief Check bad cases where we step over interface counts. |
| 6127 | static bool checkArithmethicPointerOnNonFragileABI(Sema &S, |
| 6128 | SourceLocation OpLoc, |
| 6129 | Expr *Op) { |
| 6130 | assert(Op->getType()->isAnyPointerType()); |
| 6131 | QualType PointeeTy = Op->getType()->getPointeeType(); |
| 6132 | if (!PointeeTy->isObjCObjectType() || !S.LangOpts.ObjCNonFragileABI) |
| 6133 | return true; |
| 6134 | |
| 6135 | S.Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 6136 | << PointeeTy << Op->getSourceRange(); |
| 6137 | return false; |
| 6138 | } |
| 6139 | |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6140 | /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string |
| 6141 | /// literal. |
| 6142 | static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, |
| 6143 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6144 | StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); |
| 6145 | Expr* IndexExpr = RHSExpr; |
| 6146 | if (!StrExpr) { |
| 6147 | StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); |
| 6148 | IndexExpr = LHSExpr; |
| 6149 | } |
| 6150 | |
| 6151 | bool IsStringPlusInt = StrExpr && |
| 6152 | IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); |
| 6153 | if (!IsStringPlusInt) |
| 6154 | return; |
| 6155 | |
| 6156 | llvm::APSInt index; |
| 6157 | if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) { |
| 6158 | unsigned StrLenWithNull = StrExpr->getLength() + 1; |
| 6159 | if (index.isNonNegative() && |
| 6160 | index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull), |
| 6161 | index.isUnsigned())) |
| 6162 | return; |
| 6163 | } |
| 6164 | |
| 6165 | SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); |
| 6166 | Self.Diag(OpLoc, diag::warn_string_plus_int) |
| 6167 | << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); |
| 6168 | |
| 6169 | // Only print a fixit for "str" + int, not for int + "str". |
| 6170 | if (IndexExpr == RHSExpr) { |
| 6171 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); |
| 6172 | Self.Diag(OpLoc, diag::note_string_plus_int_silence) |
| 6173 | << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") |
| 6174 | << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") |
| 6175 | << FixItHint::CreateInsertion(EndLoc, "]"); |
| 6176 | } else |
| 6177 | Self.Diag(OpLoc, diag::note_string_plus_int_silence); |
| 6178 | } |
| 6179 | |
Richard Trieu | d9f1934 | 2011-09-12 18:08:02 +0000 | [diff] [blame] | 6180 | /// \brief Emit error when two pointers are incompatible. |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6181 | static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6182 | Expr *LHSExpr, Expr *RHSExpr) { |
| 6183 | assert(LHSExpr->getType()->isAnyPointerType()); |
| 6184 | assert(RHSExpr->getType()->isAnyPointerType()); |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6185 | S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6186 | << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() |
| 6187 | << RHSExpr->getSourceRange(); |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 6188 | } |
| 6189 | |
Chris Lattner | 7ef655a | 2010-01-12 21:23:57 +0000 | [diff] [blame] | 6190 | QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6191 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, |
| 6192 | QualType* CompLHSTy) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6193 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6194 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6195 | if (LHS.get()->getType()->isVectorType() || |
| 6196 | RHS.get()->getType()->isVectorType()) { |
| 6197 | QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6198 | if (CompLHSTy) *CompLHSTy = compType; |
| 6199 | return compType; |
| 6200 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 6201 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6202 | QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); |
| 6203 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6204 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6205 | |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 6206 | // Diagnose "string literal" '+' int. |
| 6207 | if (Opc == BO_Add) |
| 6208 | diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); |
| 6209 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6210 | // handle the common case first (both operands are arithmetic). |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6211 | if (LHS.get()->getType()->isArithmeticType() && |
| 6212 | RHS.get()->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6213 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 6214 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6215 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6216 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 6217 | if (LHS.get()->getType()->isAtomicType() && |
| 6218 | RHS.get()->getType()->isArithmeticType()) { |
| 6219 | *CompLHSTy = LHS.get()->getType(); |
| 6220 | return compType; |
| 6221 | } |
| 6222 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6223 | // Put any potential pointer into PExp |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6224 | Expr* PExp = LHS.get(), *IExp = RHS.get(); |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 6225 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6226 | std::swap(PExp, IExp); |
| 6227 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6228 | if (!PExp->getType()->isAnyPointerType()) |
| 6229 | return InvalidOperands(Loc, LHS, RHS); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6230 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6231 | if (!IExp->getType()->isIntegerType()) |
| 6232 | return InvalidOperands(Loc, LHS, RHS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6233 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6234 | if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) |
| 6235 | return QualType(); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6236 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6237 | // Diagnose bad cases where we step over interface counts. |
| 6238 | if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, PExp)) |
| 6239 | return QualType(); |
| 6240 | |
| 6241 | // Check array bounds for pointer arithemtic |
| 6242 | CheckArrayAccess(PExp, IExp); |
| 6243 | |
| 6244 | if (CompLHSTy) { |
| 6245 | QualType LHSTy = Context.isPromotableBitField(LHS.get()); |
| 6246 | if (LHSTy.isNull()) { |
| 6247 | LHSTy = LHS.get()->getType(); |
| 6248 | if (LHSTy->isPromotableIntegerType()) |
| 6249 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6250 | } |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6251 | *CompLHSTy = LHSTy; |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 6252 | } |
| 6253 | |
Richard Trieu | 6eef9fb | 2011-09-12 18:37:54 +0000 | [diff] [blame] | 6254 | return PExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6255 | } |
| 6256 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 6257 | // C99 6.5.6 |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6258 | QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6259 | SourceLocation Loc, |
| 6260 | QualType* CompLHSTy) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6261 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6262 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6263 | if (LHS.get()->getType()->isVectorType() || |
| 6264 | RHS.get()->getType()->isVectorType()) { |
| 6265 | QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6266 | if (CompLHSTy) *CompLHSTy = compType; |
| 6267 | return compType; |
| 6268 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6269 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6270 | QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); |
| 6271 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6272 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6273 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6274 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6275 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6276 | // Handle the common case first (both operands are arithmetic). |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6277 | if (LHS.get()->getType()->isArithmeticType() && |
| 6278 | RHS.get()->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6279 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 6280 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6281 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6282 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 6283 | if (LHS.get()->getType()->isAtomicType() && |
| 6284 | RHS.get()->getType()->isArithmeticType()) { |
| 6285 | *CompLHSTy = LHS.get()->getType(); |
| 6286 | return compType; |
| 6287 | } |
| 6288 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6289 | // Either ptr - int or ptr - ptr. |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6290 | if (LHS.get()->getType()->isAnyPointerType()) { |
| 6291 | QualType lpointee = LHS.get()->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6292 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 6293 | // Diagnose bad cases where we step over interface counts. |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6294 | if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, LHS.get())) |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 6295 | return QualType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6296 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6297 | // The result type of a pointer-int computation is the pointer type. |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6298 | if (RHS.get()->getType()->isIntegerType()) { |
| 6299 | if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6300 | return QualType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 6301 | |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6302 | // Check array bounds for pointer arithemtic |
Richard Smith | 25b009a | 2011-12-16 19:31:14 +0000 | [diff] [blame] | 6303 | CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/0, |
| 6304 | /*AllowOnePastEnd*/true, /*IndexNegated*/true); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 6305 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6306 | if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); |
| 6307 | return LHS.get()->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 6308 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6309 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6310 | // Handle pointer-pointer subtractions. |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6311 | if (const PointerType *RHSPTy |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6312 | = RHS.get()->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 6313 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6314 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6315 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6316 | // Pointee types must be the same: C++ [expr.add] |
| 6317 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6318 | diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6319 | } |
| 6320 | } else { |
| 6321 | // Pointee types must be compatible C99 6.5.6p3 |
| 6322 | if (!Context.typesAreCompatible( |
| 6323 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 6324 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6325 | diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 6326 | return QualType(); |
| 6327 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6328 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6329 | |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6330 | if (!checkArithmeticBinOpPointerOperands(*this, Loc, |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6331 | LHS.get(), RHS.get())) |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 6332 | return QualType(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6333 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6334 | if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 6335 | return Context.getPointerDiffType(); |
| 6336 | } |
| 6337 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6338 | |
Richard Trieu | def7584 | 2011-09-06 21:13:51 +0000 | [diff] [blame] | 6339 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6340 | } |
| 6341 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6342 | static bool isScopedEnumerationType(QualType T) { |
| 6343 | if (const EnumType *ET = dyn_cast<EnumType>(T)) |
| 6344 | return ET->getDecl()->isScoped(); |
| 6345 | return false; |
| 6346 | } |
| 6347 | |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6348 | static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6349 | SourceLocation Loc, unsigned Opc, |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6350 | QualType LHSType) { |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6351 | llvm::APSInt Right; |
| 6352 | // Check right/shifter operand |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6353 | if (RHS.get()->isValueDependent() || |
| 6354 | !RHS.get()->isIntegerConstantExpr(Right, S.Context)) |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6355 | return; |
| 6356 | |
| 6357 | if (Right.isNegative()) { |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6358 | S.DiagRuntimeBehavior(Loc, RHS.get(), |
Ted Kremenek | 082bf7a | 2011-03-01 18:09:31 +0000 | [diff] [blame] | 6359 | S.PDiag(diag::warn_shift_negative) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6360 | << RHS.get()->getSourceRange()); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6361 | return; |
| 6362 | } |
| 6363 | llvm::APInt LeftBits(Right.getBitWidth(), |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6364 | S.Context.getTypeSize(LHS.get()->getType())); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6365 | if (Right.uge(LeftBits)) { |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6366 | S.DiagRuntimeBehavior(Loc, RHS.get(), |
Ted Kremenek | 425a31e | 2011-03-01 19:13:22 +0000 | [diff] [blame] | 6367 | S.PDiag(diag::warn_shift_gt_typewidth) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6368 | << RHS.get()->getSourceRange()); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6369 | return; |
| 6370 | } |
| 6371 | if (Opc != BO_Shl) |
| 6372 | return; |
| 6373 | |
| 6374 | // When left shifting an ICE which is signed, we can check for overflow which |
| 6375 | // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned |
| 6376 | // integers have defined behavior modulo one more than the maximum value |
| 6377 | // representable in the result type, so never warn for those. |
| 6378 | llvm::APSInt Left; |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6379 | if (LHS.get()->isValueDependent() || |
| 6380 | !LHS.get()->isIntegerConstantExpr(Left, S.Context) || |
| 6381 | LHSType->hasUnsignedIntegerRepresentation()) |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6382 | return; |
| 6383 | llvm::APInt ResultBits = |
| 6384 | static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); |
| 6385 | if (LeftBits.uge(ResultBits)) |
| 6386 | return; |
| 6387 | llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); |
| 6388 | Result = Result.shl(Right); |
| 6389 | |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6390 | // Print the bit representation of the signed integer as an unsigned |
| 6391 | // hexadecimal number. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 6392 | SmallString<40> HexResult; |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6393 | Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); |
| 6394 | |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6395 | // If we are only missing a sign bit, this is less likely to result in actual |
| 6396 | // bugs -- if the result is cast back to an unsigned type, it will have the |
| 6397 | // expected value. Thus we place this behind a different warning that can be |
| 6398 | // turned off separately if needed. |
| 6399 | if (LeftBits == ResultBits - 1) { |
Ted Kremenek | fa82138 | 2011-06-15 00:54:52 +0000 | [diff] [blame] | 6400 | S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6401 | << HexResult.str() << LHSType |
| 6402 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6403 | return; |
| 6404 | } |
| 6405 | |
| 6406 | S.Diag(Loc, diag::warn_shift_result_gt_typewidth) |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6407 | << HexResult.str() << Result.getMinSignedBits() << LHSType |
| 6408 | << Left.getBitWidth() << LHS.get()->getSourceRange() |
| 6409 | << RHS.get()->getSourceRange(); |
Chandler Carruth | 21206d5 | 2011-02-23 23:34:11 +0000 | [diff] [blame] | 6410 | } |
| 6411 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 6412 | // C99 6.5.7 |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6413 | QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6414 | SourceLocation Loc, unsigned Opc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6415 | bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6416 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 6417 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6418 | // C99 6.5.7p2: Each of the operands shall have integer type. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6419 | if (!LHS.get()->getType()->hasIntegerRepresentation() || |
| 6420 | !RHS.get()->getType()->hasIntegerRepresentation()) |
| 6421 | return InvalidOperands(Loc, LHS, RHS); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6422 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6423 | // C++0x: Don't allow scoped enums. FIXME: Use something better than |
| 6424 | // hasIntegerRepresentation() above instead of this. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6425 | if (isScopedEnumerationType(LHS.get()->getType()) || |
| 6426 | isScopedEnumerationType(RHS.get()->getType())) { |
| 6427 | return InvalidOperands(Loc, LHS, RHS); |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 6428 | } |
| 6429 | |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 6430 | // Vector shifts promote their scalar inputs to vector type. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6431 | if (LHS.get()->getType()->isVectorType() || |
| 6432 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6433 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 6434 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6435 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 6436 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 6437 | |
John McCall | 1bc80af | 2010-12-16 19:28:59 +0000 | [diff] [blame] | 6438 | // For the LHS, do usual unary conversions, but then reset them away |
| 6439 | // if this is a compound assignment. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6440 | ExprResult OldLHS = LHS; |
| 6441 | LHS = UsualUnaryConversions(LHS.take()); |
| 6442 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6443 | return QualType(); |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6444 | QualType LHSType = LHS.get()->getType(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6445 | if (IsCompAssign) LHS = OldLHS; |
John McCall | 1bc80af | 2010-12-16 19:28:59 +0000 | [diff] [blame] | 6446 | |
| 6447 | // The RHS is simpler. |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6448 | RHS = UsualUnaryConversions(RHS.take()); |
| 6449 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6450 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6451 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 6452 | // Sanity-check shift operands |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6453 | DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 6454 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 6455 | // "The type of the result is that of the promoted left operand." |
Richard Trieu | 1c8cfbf | 2011-09-06 21:21:28 +0000 | [diff] [blame] | 6456 | return LHSType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6457 | } |
| 6458 | |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 6459 | static bool IsWithinTemplateSpecialization(Decl *D) { |
| 6460 | if (DeclContext *DC = D->getDeclContext()) { |
| 6461 | if (isa<ClassTemplateSpecializationDecl>(DC)) |
| 6462 | return true; |
| 6463 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) |
| 6464 | return FD->isFunctionTemplateSpecialization(); |
| 6465 | } |
| 6466 | return false; |
| 6467 | } |
| 6468 | |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6469 | /// If two different enums are compared, raise a warning. |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6470 | static void checkEnumComparison(Sema &S, SourceLocation Loc, ExprResult &LHS, |
| 6471 | ExprResult &RHS) { |
| 6472 | QualType LHSStrippedType = LHS.get()->IgnoreParenImpCasts()->getType(); |
| 6473 | QualType RHSStrippedType = RHS.get()->IgnoreParenImpCasts()->getType(); |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6474 | |
| 6475 | const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); |
| 6476 | if (!LHSEnumType) |
| 6477 | return; |
| 6478 | const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); |
| 6479 | if (!RHSEnumType) |
| 6480 | return; |
| 6481 | |
| 6482 | // Ignore anonymous enums. |
| 6483 | if (!LHSEnumType->getDecl()->getIdentifier()) |
| 6484 | return; |
| 6485 | if (!RHSEnumType->getDecl()->getIdentifier()) |
| 6486 | return; |
| 6487 | |
| 6488 | if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) |
| 6489 | return; |
| 6490 | |
| 6491 | S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) |
| 6492 | << LHSStrippedType << RHSStrippedType |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6493 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Richard Trieu | e648ac3 | 2011-09-02 03:48:46 +0000 | [diff] [blame] | 6494 | } |
| 6495 | |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6496 | /// \brief Diagnose bad pointer comparisons. |
| 6497 | static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6498 | ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6499 | bool IsError) { |
| 6500 | S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6501 | : diag::ext_typecheck_comparison_of_distinct_pointers) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6502 | << LHS.get()->getType() << RHS.get()->getType() |
| 6503 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6504 | } |
| 6505 | |
| 6506 | /// \brief Returns false if the pointers are converted to a composite type, |
| 6507 | /// true otherwise. |
| 6508 | static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6509 | ExprResult &LHS, ExprResult &RHS) { |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6510 | // C++ [expr.rel]p2: |
| 6511 | // [...] Pointer conversions (4.10) and qualification |
| 6512 | // conversions (4.4) are performed on pointer operands (or on |
| 6513 | // a pointer operand and a null pointer constant) to bring |
| 6514 | // them to their composite pointer type. [...] |
| 6515 | // |
| 6516 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
| 6517 | // comparisons of pointers. |
| 6518 | |
| 6519 | // C++ [expr.eq]p2: |
| 6520 | // In addition, pointers to members can be compared, or a pointer to |
| 6521 | // member and a null pointer constant. Pointer to member conversions |
| 6522 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 6523 | // them to a common type. If one operand is a null pointer constant, |
| 6524 | // the common type is the type of the other operand. Otherwise, the |
| 6525 | // common type is a pointer to member type similar (4.4) to the type |
| 6526 | // of one of the operands, with a cv-qualification signature (4.4) |
| 6527 | // that is the union of the cv-qualification signatures of the operand |
| 6528 | // types. |
| 6529 | |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6530 | QualType LHSType = LHS.get()->getType(); |
| 6531 | QualType RHSType = RHS.get()->getType(); |
| 6532 | assert((LHSType->isPointerType() && RHSType->isPointerType()) || |
| 6533 | (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6534 | |
| 6535 | bool NonStandardCompositeType = false; |
Richard Trieu | 43dff1b | 2011-09-02 21:44:27 +0000 | [diff] [blame] | 6536 | bool *BoolPtr = S.isSFINAEContext() ? 0 : &NonStandardCompositeType; |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6537 | QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6538 | if (T.isNull()) { |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6539 | diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6540 | return true; |
| 6541 | } |
| 6542 | |
| 6543 | if (NonStandardCompositeType) |
| 6544 | S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6545 | << LHSType << RHSType << T << LHS.get()->getSourceRange() |
| 6546 | << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6547 | |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6548 | LHS = S.ImpCastExprToType(LHS.take(), T, CK_BitCast); |
| 6549 | RHS = S.ImpCastExprToType(RHS.take(), T, CK_BitCast); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6550 | return false; |
| 6551 | } |
| 6552 | |
| 6553 | static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6554 | ExprResult &LHS, |
| 6555 | ExprResult &RHS, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6556 | bool IsError) { |
| 6557 | S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void |
| 6558 | : diag::ext_typecheck_comparison_of_fptr_to_void) |
Richard Trieu | ba26149 | 2011-09-06 21:27:33 +0000 | [diff] [blame] | 6559 | << LHS.get()->getType() << RHS.get()->getType() |
| 6560 | << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6561 | } |
| 6562 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 6563 | // C99 6.5.8, C++ [expr.rel] |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6564 | QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 6565 | SourceLocation Loc, unsigned OpaqueOpc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6566 | bool IsRelational) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 6567 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); |
| 6568 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6569 | BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6570 | |
Chris Lattner | 02dd4b1 | 2009-12-05 05:40:13 +0000 | [diff] [blame] | 6571 | // Handle vector comparisons separately. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6572 | if (LHS.get()->getType()->isVectorType() || |
| 6573 | RHS.get()->getType()->isVectorType()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6574 | return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6575 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6576 | QualType LHSType = LHS.get()->getType(); |
| 6577 | QualType RHSType = RHS.get()->getType(); |
Benjamin Kramer | fec0959 | 2011-09-03 08:46:20 +0000 | [diff] [blame] | 6578 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6579 | Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); |
| 6580 | Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); |
Chandler Carruth | 543cb65 | 2011-02-17 08:37:06 +0000 | [diff] [blame] | 6581 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6582 | checkEnumComparison(*this, Loc, LHS, RHS); |
Chandler Carruth | 543cb65 | 2011-02-17 08:37:06 +0000 | [diff] [blame] | 6583 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6584 | if (!LHSType->hasFloatingRepresentation() && |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6585 | !(LHSType->isBlockPointerType() && IsRelational) && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6586 | !LHS.get()->getLocStart().isMacroID() && |
| 6587 | !RHS.get()->getLocStart().isMacroID()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 6588 | // For non-floating point types, check for self-comparisons of the form |
| 6589 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 6590 | // often indicate logic errors in the program. |
Chandler Carruth | 64d092c | 2010-07-12 06:23:38 +0000 | [diff] [blame] | 6591 | // |
| 6592 | // NOTE: Don't warn about comparison expressions resulting from macro |
| 6593 | // expansion. Also don't warn about comparisons which are only self |
| 6594 | // comparisons within a template specialization. The warnings should catch |
| 6595 | // obvious cases in the definition of the template anyways. The idea is to |
| 6596 | // warn when the typed comparison operator will always evaluate to the same |
| 6597 | // result. |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 6598 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) { |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6599 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) { |
Ted Kremenek | fbcb0eb | 2010-09-16 00:03:01 +0000 | [diff] [blame] | 6600 | if (DRL->getDecl() == DRR->getDecl() && |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 6601 | !IsWithinTemplateSpecialization(DRL->getDecl())) { |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 6602 | DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6603 | << 0 // self- |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6604 | << (Opc == BO_EQ |
| 6605 | || Opc == BO_LE |
| 6606 | || Opc == BO_GE)); |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6607 | } else if (LHSType->isArrayType() && RHSType->isArrayType() && |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6608 | !DRL->getDecl()->getType()->isReferenceType() && |
| 6609 | !DRR->getDecl()->getType()->isReferenceType()) { |
| 6610 | // what is it always going to eval to? |
| 6611 | char always_evals_to; |
| 6612 | switch(Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6613 | case BO_EQ: // e.g. array1 == array2 |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6614 | always_evals_to = 0; // false |
| 6615 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6616 | case BO_NE: // e.g. array1 != array2 |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6617 | always_evals_to = 1; // true |
| 6618 | break; |
| 6619 | default: |
| 6620 | // best we can say is 'a constant' |
| 6621 | always_evals_to = 2; // e.g. array1 <= array2 |
| 6622 | break; |
| 6623 | } |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 6624 | DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6625 | << 1 // array |
| 6626 | << always_evals_to); |
| 6627 | } |
| 6628 | } |
Chandler Carruth | 9991947 | 2010-07-10 12:30:03 +0000 | [diff] [blame] | 6629 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6630 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 6631 | if (isa<CastExpr>(LHSStripped)) |
| 6632 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 6633 | if (isa<CastExpr>(RHSStripped)) |
| 6634 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6635 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 6636 | // Warn about comparisons against a string constant (unless the other |
| 6637 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6638 | Expr *literalString = 0; |
| 6639 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 6640 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6641 | !RHSStripped->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6642 | Expr::NPC_ValueDependentIsNull)) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6643 | literalString = LHS.get(); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6644 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 6645 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 6646 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6647 | !LHSStripped->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6648 | Expr::NPC_ValueDependentIsNull)) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6649 | literalString = RHS.get(); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6650 | literalStringStripped = RHSStripped; |
| 6651 | } |
| 6652 | |
| 6653 | if (literalString) { |
| 6654 | std::string resultComparison; |
| 6655 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6656 | case BO_LT: resultComparison = ") < 0"; break; |
| 6657 | case BO_GT: resultComparison = ") > 0"; break; |
| 6658 | case BO_LE: resultComparison = ") <= 0"; break; |
| 6659 | case BO_GE: resultComparison = ") >= 0"; break; |
| 6660 | case BO_EQ: resultComparison = ") == 0"; break; |
| 6661 | case BO_NE: resultComparison = ") != 0"; break; |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 6662 | default: llvm_unreachable("Invalid comparison operator"); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6663 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 6664 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 6665 | DiagRuntimeBehavior(Loc, 0, |
Douglas Gregor | d1e4d9b | 2010-01-12 23:18:54 +0000 | [diff] [blame] | 6666 | PDiag(diag::warn_stringcompare) |
| 6667 | << isa<ObjCEncodeExpr>(literalStringStripped) |
Ted Kremenek | 03a4bee | 2010-04-09 20:26:53 +0000 | [diff] [blame] | 6668 | << literalString->getSourceRange()); |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 6669 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 6670 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6671 | |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6672 | // C99 6.5.8p3 / C99 6.5.9p4 |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6673 | if (LHS.get()->getType()->isArithmeticType() && |
| 6674 | RHS.get()->getType()->isArithmeticType()) { |
| 6675 | UsualArithmeticConversions(LHS, RHS); |
| 6676 | if (LHS.isInvalid() || RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6677 | return QualType(); |
| 6678 | } |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6679 | else { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6680 | LHS = UsualUnaryConversions(LHS.take()); |
| 6681 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6682 | return QualType(); |
| 6683 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6684 | RHS = UsualUnaryConversions(RHS.take()); |
| 6685 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6686 | return QualType(); |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6687 | } |
| 6688 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6689 | LHSType = LHS.get()->getType(); |
| 6690 | RHSType = RHS.get()->getType(); |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6691 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6692 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Argyrios Kyrtzidis | 16f744b | 2011-02-18 20:55:15 +0000 | [diff] [blame] | 6693 | QualType ResultTy = Context.getLogicalOperationType(); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6694 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6695 | if (IsRelational) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6696 | if (LHSType->isRealType() && RHSType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6697 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 6698 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 6699 | // Check for comparisons of floating point operands using != and ==. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6700 | if (LHSType->hasFloatingRepresentation()) |
| 6701 | CheckFloatComparison(Loc, LHS.get(), RHS.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6702 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6703 | if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6704 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 6705 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6706 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6707 | bool LHSIsNull = LHS.get()->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6708 | Expr::NPC_ValueDependentIsNull); |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6709 | bool RHSIsNull = RHS.get()->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 6710 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6711 | |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6712 | // All of the following pointer-related warnings are GCC extensions, except |
| 6713 | // when handling null pointer constants. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6714 | if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 6715 | QualType LCanPointeeTy = |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6716 | LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 6717 | QualType RCanPointeeTy = |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6718 | RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6719 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6720 | if (getLangOpts().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6721 | if (LCanPointeeTy == RCanPointeeTy) |
| 6722 | return ResultTy; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6723 | if (!IsRelational && |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 6724 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 6725 | // Valid unless comparison between non-null pointer and function pointer |
| 6726 | // This is a gcc extension compatibility comparison. |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6727 | // In a SFINAE context, we treat this as a hard error to maintain |
| 6728 | // conformance with the C++ standard. |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 6729 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 6730 | && !LHSIsNull && !RHSIsNull) { |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6731 | diagnoseFunctionPointerToVoidComparison( |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6732 | *this, Loc, LHS, RHS, /*isError*/ isSFINAEContext()); |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6733 | |
| 6734 | if (isSFINAEContext()) |
| 6735 | return QualType(); |
| 6736 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6737 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Fariborz Jahanian | 51874dd | 2009-12-21 18:19:17 +0000 | [diff] [blame] | 6738 | return ResultTy; |
| 6739 | } |
| 6740 | } |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 6741 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6742 | if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 6743 | return QualType(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6744 | else |
| 6745 | return ResultTy; |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 6746 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6747 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 6748 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 6749 | RCanPointeeTy.getUnqualifiedType())) { |
| 6750 | // Valid unless a relational comparison of function pointers |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6751 | if (IsRelational && LCanPointeeTy->isFunctionType()) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6752 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6753 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 6754 | << RHS.get()->getSourceRange(); |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6755 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6756 | } else if (!IsRelational && |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6757 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 6758 | // Valid unless comparison between non-null pointer and function pointer |
| 6759 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6760 | && !LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6761 | diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6762 | /*isError*/false); |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 6763 | } else { |
| 6764 | // Invalid |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6765 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6766 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6767 | if (LCanPointeeTy != RCanPointeeTy) { |
| 6768 | if (LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6769 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6770 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6771 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6772 | } |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6773 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 6774 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6775 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6776 | if (getLangOpts().CPlusPlus) { |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 6777 | // Comparison of nullptr_t with itself. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6778 | if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) |
Anders Carlsson | 0c8209e | 2010-11-04 03:17:43 +0000 | [diff] [blame] | 6779 | return ResultTy; |
| 6780 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6781 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 6782 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6783 | if (RHSIsNull && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6784 | ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6785 | (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6786 | (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { |
| 6787 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 6788 | LHSType->isMemberPointerType() |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6789 | ? CK_NullToMemberPointer |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 6790 | : CK_NullToPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 6791 | return ResultTy; |
| 6792 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 6793 | if (LHSIsNull && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6794 | ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6795 | (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6796 | (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { |
| 6797 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 6798 | RHSType->isMemberPointerType() |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 6799 | ? CK_NullToMemberPointer |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 6800 | : CK_NullToPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 6801 | return ResultTy; |
| 6802 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 6803 | |
| 6804 | // Comparison of member pointers. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6805 | if (!IsRelational && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6806 | LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { |
| 6807 | if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 6808 | return QualType(); |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6809 | else |
| 6810 | return ResultTy; |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 6811 | } |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 6812 | |
| 6813 | // Handle scoped enumeration types specifically, since they don't promote |
| 6814 | // to integers. |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6815 | if (LHS.get()->getType()->isEnumeralType() && |
| 6816 | Context.hasSameUnqualifiedType(LHS.get()->getType(), |
| 6817 | RHS.get()->getType())) |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 6818 | return ResultTy; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 6819 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6820 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6821 | // Handle block pointer types. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6822 | if (!IsRelational && LHSType->isBlockPointerType() && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6823 | RHSType->isBlockPointerType()) { |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6824 | QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); |
| 6825 | QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6826 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6827 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 6828 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 6829 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6830 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 6831 | << RHS.get()->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6832 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6833 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6834 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6835 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6836 | |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 6837 | // Allow block pointers to be compared with null pointer constants. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6838 | if (!IsRelational |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6839 | && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) |
| 6840 | || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 6841 | if (!LHSIsNull && !RHSIsNull) { |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6842 | if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 6843 | ->getPointeeType()->isVoidType()) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6844 | || (LHSType->isPointerType() && LHSType->castAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 6845 | ->getPointeeType()->isVoidType()))) |
| 6846 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6847 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 6848 | << RHS.get()->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 6849 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6850 | if (LHSIsNull && !RHSIsNull) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6851 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 6852 | RHSType->isPointerType() ? CK_BitCast |
| 6853 | : CK_AnyPointerToBlockPointerCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6854 | else |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6855 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 6856 | LHSType->isPointerType() ? CK_BitCast |
| 6857 | : CK_AnyPointerToBlockPointerCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6858 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 6859 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6860 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6861 | if (LHSType->isObjCObjectPointerType() || |
| 6862 | RHSType->isObjCObjectPointerType()) { |
| 6863 | const PointerType *LPT = LHSType->getAs<PointerType>(); |
| 6864 | const PointerType *RPT = RHSType->getAs<PointerType>(); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6865 | if (LPT || RPT) { |
| 6866 | bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; |
| 6867 | bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6868 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 6869 | if (!LPtrToVoid && !RPtrToVoid && |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6870 | !Context.typesAreCompatible(LHSType, RHSType)) { |
| 6871 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6872 | /*isError*/false); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 6873 | } |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6874 | if (LHSIsNull && !RHSIsNull) |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6875 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
| 6876 | RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6877 | else |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 6878 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
| 6879 | LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6880 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 6881 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6882 | if (LHSType->isObjCObjectPointerType() && |
| 6883 | RHSType->isObjCObjectPointerType()) { |
| 6884 | if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) |
| 6885 | diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, |
Richard Trieu | 7be1be0 | 2011-09-02 02:55:45 +0000 | [diff] [blame] | 6886 | /*isError*/false); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6887 | if (LHSIsNull && !RHSIsNull) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6888 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); |
John McCall | 34d6f93 | 2011-03-11 04:25:25 +0000 | [diff] [blame] | 6889 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6890 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6891 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 6892 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 6893 | } |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6894 | if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || |
| 6895 | (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6896 | unsigned DiagID = 0; |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6897 | bool isError = false; |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6898 | if ((LHSIsNull && LHSType->isIntegerType()) || |
| 6899 | (RHSIsNull && RHSType->isIntegerType())) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6900 | if (IsRelational && !getLangOpts().CPlusPlus) |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6901 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6902 | } else if (IsRelational && !getLangOpts().CPlusPlus) |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6903 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6904 | else if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6905 | DiagID = diag::err_typecheck_comparison_of_pointer_integer; |
| 6906 | isError = true; |
| 6907 | } else |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6908 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6909 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6910 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 6911 | Diag(Loc, DiagID) |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6912 | << LHSType << RHSType << LHS.get()->getSourceRange() |
| 6913 | << RHS.get()->getSourceRange(); |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6914 | if (isError) |
| 6915 | return QualType(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 6916 | } |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6917 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6918 | if (LHSType->isIntegerType()) |
| 6919 | LHS = ImpCastExprToType(LHS.take(), RHSType, |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 6920 | LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 6921 | else |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6922 | RHS = ImpCastExprToType(RHS.take(), LHSType, |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 6923 | RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6924 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6925 | } |
Douglas Gregor | 6e5122c | 2010-06-15 21:38:40 +0000 | [diff] [blame] | 6926 | |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 6927 | // Handle block pointers. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6928 | if (!IsRelational && RHSIsNull |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6929 | && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { |
| 6930 | RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6931 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 6932 | } |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6933 | if (!IsRelational && LHSIsNull |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6934 | && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { |
| 6935 | LHS = ImpCastExprToType(LHS.take(), RHSType, CK_NullToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 6936 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 6937 | } |
Douglas Gregor | 90566c0 | 2011-03-01 17:16:20 +0000 | [diff] [blame] | 6938 | |
Richard Trieu | f1775fb | 2011-09-06 21:43:51 +0000 | [diff] [blame] | 6939 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 6940 | } |
| 6941 | |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 6942 | |
| 6943 | // Return a signed type that is of identical size and number of elements. |
| 6944 | // For floating point vectors, return an integer type of identical size |
| 6945 | // and number of elements. |
| 6946 | QualType Sema::GetSignedVectorType(QualType V) { |
| 6947 | const VectorType *VTy = V->getAs<VectorType>(); |
| 6948 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
| 6949 | if (TypeSize == Context.getTypeSize(Context.CharTy)) |
| 6950 | return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); |
| 6951 | else if (TypeSize == Context.getTypeSize(Context.ShortTy)) |
| 6952 | return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); |
| 6953 | else if (TypeSize == Context.getTypeSize(Context.IntTy)) |
| 6954 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
| 6955 | else if (TypeSize == Context.getTypeSize(Context.LongTy)) |
| 6956 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 6957 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
| 6958 | "Unhandled vector element size in vector compare"); |
| 6959 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 6960 | } |
| 6961 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6962 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6963 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6964 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 6965 | /// types. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 6966 | QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 6967 | SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6968 | bool IsRelational) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6969 | // Check to make sure we're operating on vectors of the same type and width, |
| 6970 | // Allowing one side to be a scalar of element type. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 6971 | QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6972 | if (vType.isNull()) |
| 6973 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6974 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 6975 | QualType LHSType = LHS.get()->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6976 | |
Anton Yartsev | 7870b13 | 2011-03-27 15:36:07 +0000 | [diff] [blame] | 6977 | // If AltiVec, the comparison results in a numeric type, i.e. |
| 6978 | // bool for C++, int for C |
Anton Yartsev | 6305f72 | 2011-03-28 21:00:05 +0000 | [diff] [blame] | 6979 | if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) |
Anton Yartsev | 7870b13 | 2011-03-27 15:36:07 +0000 | [diff] [blame] | 6980 | return Context.getLogicalOperationType(); |
| 6981 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6982 | // For non-floating point types, check for self-comparisons of the form |
| 6983 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 6984 | // often indicate logic errors in the program. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 6985 | if (!LHSType->hasFloatingRepresentation()) { |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 6986 | if (DeclRefExpr* DRL |
| 6987 | = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) |
| 6988 | if (DeclRefExpr* DRR |
| 6989 | = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6990 | if (DRL->getDecl() == DRR->getDecl()) |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 6991 | DiagRuntimeBehavior(Loc, 0, |
Douglas Gregor | d64fdd0 | 2010-06-08 19:50:34 +0000 | [diff] [blame] | 6992 | PDiag(diag::warn_comparison_always) |
| 6993 | << 0 // self- |
| 6994 | << 2 // "a constant" |
| 6995 | ); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6996 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6997 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 6998 | // Check for comparisons of floating point operands using != and ==. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 6999 | if (!IsRelational && LHSType->hasFloatingRepresentation()) { |
David Blaikie | 52e4c60 | 2012-01-16 05:16:03 +0000 | [diff] [blame] | 7000 | assert (RHS.get()->getType()->hasFloatingRepresentation()); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7001 | CheckFloatComparison(Loc, LHS.get(), RHS.get()); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7002 | } |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7003 | |
| 7004 | // Return a signed type for the vector. |
| 7005 | return GetSignedVectorType(LHSType); |
| 7006 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7007 | |
Tanya Lattner | b0f9dd2 | 2012-01-19 01:16:16 +0000 | [diff] [blame] | 7008 | QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, |
| 7009 | SourceLocation Loc) { |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7010 | // Ensure that either both operands are of the same vector type, or |
| 7011 | // one operand is of a vector type and the other is of its element type. |
| 7012 | QualType vType = CheckVectorOperands(LHS, RHS, Loc, false); |
| 7013 | if (vType.isNull() || vType->isFloatingType()) |
| 7014 | return InvalidOperands(Loc, LHS, RHS); |
| 7015 | |
| 7016 | return GetSignedVectorType(LHS.get()->getType()); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 7017 | } |
| 7018 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7019 | inline QualType Sema::CheckBitwiseOperands( |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7020 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { |
Richard Trieu | 481037f | 2011-09-16 00:53:10 +0000 | [diff] [blame] | 7021 | checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); |
| 7022 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7023 | if (LHS.get()->getType()->isVectorType() || |
| 7024 | RHS.get()->getType()->isVectorType()) { |
| 7025 | if (LHS.get()->getType()->hasIntegerRepresentation() && |
| 7026 | RHS.get()->getType()->hasIntegerRepresentation()) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7027 | return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 7028 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7029 | return InvalidOperands(Loc, LHS, RHS); |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 7030 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 7031 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7032 | ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); |
| 7033 | QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7034 | IsCompAssign); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7035 | if (LHSResult.isInvalid() || RHSResult.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7036 | return QualType(); |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7037 | LHS = LHSResult.take(); |
| 7038 | RHS = RHSResult.take(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7039 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7040 | if (LHS.get()->getType()->isIntegralOrUnscopedEnumerationType() && |
| 7041 | RHS.get()->getType()->isIntegralOrUnscopedEnumerationType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 7042 | return compType; |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7043 | return InvalidOperands(Loc, LHS, RHS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7044 | } |
| 7045 | |
| 7046 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7047 | ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { |
Chris Lattner | 90a8f27 | 2010-07-13 19:41:32 +0000 | [diff] [blame] | 7048 | |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 7049 | // Check vector operands differently. |
| 7050 | if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType()) |
| 7051 | return CheckVectorLogicalOperands(LHS, RHS, Loc); |
| 7052 | |
Chris Lattner | 90a8f27 | 2010-07-13 19:41:32 +0000 | [diff] [blame] | 7053 | // Diagnose cases where the user write a logical and/or but probably meant a |
| 7054 | // bitwise one. We do this when the LHS is a non-bool integer and the RHS |
| 7055 | // is a constant. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7056 | if (LHS.get()->getType()->isIntegerType() && |
| 7057 | !LHS.get()->getType()->isBooleanType() && |
| 7058 | RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && |
Richard Trieu | e5adf59 | 2011-07-15 00:00:51 +0000 | [diff] [blame] | 7059 | // Don't warn in macros or template instantiations. |
| 7060 | !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { |
Chris Lattner | b7690b4 | 2010-07-24 01:10:11 +0000 | [diff] [blame] | 7061 | // If the RHS can be constant folded, and if it constant folds to something |
| 7062 | // that isn't 0 or 1 (which indicate a potential logical operation that |
| 7063 | // happened to fold to true/false) then warn. |
Chandler Carruth | 0683a14 | 2011-05-31 05:41:42 +0000 | [diff] [blame] | 7064 | // Parens on the RHS are ignored. |
Richard Smith | 909c555 | 2011-10-16 23:01:09 +0000 | [diff] [blame] | 7065 | llvm::APSInt Result; |
| 7066 | if (RHS.get()->EvaluateAsInt(Result, Context)) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7067 | if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType()) || |
Richard Smith | 909c555 | 2011-10-16 23:01:09 +0000 | [diff] [blame] | 7068 | (Result != 0 && Result != 1)) { |
Chandler Carruth | 0683a14 | 2011-05-31 05:41:42 +0000 | [diff] [blame] | 7069 | Diag(Loc, diag::warn_logical_instead_of_bitwise) |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7070 | << RHS.get()->getSourceRange() |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7071 | << (Opc == BO_LAnd ? "&&" : "||"); |
| 7072 | // Suggest replacing the logical operator with the bitwise version |
| 7073 | Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) |
| 7074 | << (Opc == BO_LAnd ? "&" : "|") |
| 7075 | << FixItHint::CreateReplacement(SourceRange( |
| 7076 | Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7077 | getLangOpts())), |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7078 | Opc == BO_LAnd ? "&" : "|"); |
| 7079 | if (Opc == BO_LAnd) |
| 7080 | // Suggest replacing "Foo() && kNonZero" with "Foo()" |
| 7081 | Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) |
| 7082 | << FixItHint::CreateRemoval( |
| 7083 | SourceRange( |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7084 | Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7085 | 0, getSourceManager(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7086 | getLangOpts()), |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7087 | RHS.get()->getLocEnd())); |
Matt Beaumont-Gay | 9b127f3 | 2011-08-15 17:50:06 +0000 | [diff] [blame] | 7088 | } |
Chris Lattner | b7690b4 | 2010-07-24 01:10:11 +0000 | [diff] [blame] | 7089 | } |
Chris Lattner | 90a8f27 | 2010-07-13 19:41:32 +0000 | [diff] [blame] | 7090 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7091 | if (!Context.getLangOpts().CPlusPlus) { |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7092 | LHS = UsualUnaryConversions(LHS.take()); |
| 7093 | if (LHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7094 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7095 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7096 | RHS = UsualUnaryConversions(RHS.take()); |
| 7097 | if (RHS.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7098 | return QualType(); |
| 7099 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7100 | if (!LHS.get()->getType()->isScalarType() || |
| 7101 | !RHS.get()->getType()->isScalarType()) |
| 7102 | return InvalidOperands(Loc, LHS, RHS); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7103 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7104 | return Context.IntTy; |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 7105 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7106 | |
John McCall | 75f7c0f | 2010-06-04 00:29:51 +0000 | [diff] [blame] | 7107 | // The following is safe because we only use this method for |
| 7108 | // non-overloadable operands. |
| 7109 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7110 | // C++ [expr.log.and]p1 |
| 7111 | // C++ [expr.log.or]p1 |
John McCall | 75f7c0f | 2010-06-04 00:29:51 +0000 | [diff] [blame] | 7112 | // The operands are both contextually converted to type bool. |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7113 | ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); |
| 7114 | if (LHSRes.isInvalid()) |
| 7115 | return InvalidOperands(Loc, LHS, RHS); |
| 7116 | LHS = move(LHSRes); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7117 | |
Richard Trieu | 9f60dee | 2011-09-07 01:19:57 +0000 | [diff] [blame] | 7118 | ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); |
| 7119 | if (RHSRes.isInvalid()) |
| 7120 | return InvalidOperands(Loc, LHS, RHS); |
| 7121 | RHS = move(RHSRes); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 7122 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame] | 7123 | // C++ [expr.log.and]p2 |
| 7124 | // C++ [expr.log.or]p2 |
| 7125 | // The result is a bool. |
| 7126 | return Context.BoolTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7127 | } |
| 7128 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7129 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 7130 | /// is a read-only property; return true if so. A readonly property expression |
| 7131 | /// depends on various declarations and thus must be treated specially. |
| 7132 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7133 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7134 | const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E); |
| 7135 | if (!PropExpr) return false; |
| 7136 | if (PropExpr->isImplicitProperty()) return false; |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 7137 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7138 | ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty(); |
| 7139 | QualType BaseType = PropExpr->isSuperReceiver() ? |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 7140 | PropExpr->getSuperReceiverType() : |
Fariborz Jahanian | 8ac2d44 | 2010-10-14 16:04:05 +0000 | [diff] [blame] | 7141 | PropExpr->getBase()->getType(); |
| 7142 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7143 | if (const ObjCObjectPointerType *OPT = |
| 7144 | BaseType->getAsObjCInterfacePointerType()) |
| 7145 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 7146 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 7147 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7148 | return false; |
| 7149 | } |
| 7150 | |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7151 | static bool IsReadonlyMessage(Expr *E, Sema &S) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7152 | const MemberExpr *ME = dyn_cast<MemberExpr>(E); |
| 7153 | if (!ME) return false; |
| 7154 | if (!isa<FieldDecl>(ME->getMemberDecl())) return false; |
| 7155 | ObjCMessageExpr *Base = |
| 7156 | dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); |
| 7157 | if (!Base) return false; |
| 7158 | return Base->getMethodDecl() != 0; |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7159 | } |
| 7160 | |
John McCall | 78dae24 | 2012-03-13 00:37:01 +0000 | [diff] [blame] | 7161 | /// Is the given expression (which must be 'const') a reference to a |
| 7162 | /// variable which was originally non-const, but which has become |
| 7163 | /// 'const' due to being captured within a block? |
| 7164 | enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; |
| 7165 | static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { |
| 7166 | assert(E->isLValue() && E->getType().isConstQualified()); |
| 7167 | E = E->IgnoreParens(); |
| 7168 | |
| 7169 | // Must be a reference to a declaration from an enclosing scope. |
| 7170 | DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); |
| 7171 | if (!DRE) return NCCK_None; |
| 7172 | if (!DRE->refersToEnclosingLocal()) return NCCK_None; |
| 7173 | |
| 7174 | // The declaration must be a variable which is not declared 'const'. |
| 7175 | VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); |
| 7176 | if (!var) return NCCK_None; |
| 7177 | if (var->getType().isConstQualified()) return NCCK_None; |
| 7178 | assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); |
| 7179 | |
| 7180 | // Decide whether the first capture was for a block or a lambda. |
| 7181 | DeclContext *DC = S.CurContext; |
| 7182 | while (DC->getParent() != var->getDeclContext()) |
| 7183 | DC = DC->getParent(); |
| 7184 | return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); |
| 7185 | } |
| 7186 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7187 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 7188 | /// emit an error and return true. If so, return false. |
| 7189 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Fariborz Jahanian | e7ea28a | 2012-04-10 17:30:10 +0000 | [diff] [blame] | 7190 | assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7191 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7192 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7193 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 7194 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 7195 | IsLV = Expr::MLV_ReadonlyProperty; |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7196 | else if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) |
| 7197 | IsLV = Expr::MLV_InvalidMessageExpression; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7198 | if (IsLV == Expr::MLV_Valid) |
| 7199 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7200 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7201 | unsigned Diag = 0; |
| 7202 | bool NeedType = false; |
| 7203 | switch (IsLV) { // C99 6.5.16p2 |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7204 | case Expr::MLV_ConstQualified: |
| 7205 | Diag = diag::err_typecheck_assign_const; |
| 7206 | |
John McCall | 78dae24 | 2012-03-13 00:37:01 +0000 | [diff] [blame] | 7207 | // Use a specialized diagnostic when we're assigning to an object |
| 7208 | // from an enclosing function or block. |
| 7209 | if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { |
| 7210 | if (NCCK == NCCK_Block) |
| 7211 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 7212 | else |
| 7213 | Diag = diag::err_lambda_decl_ref_not_modifiable_lvalue; |
| 7214 | break; |
| 7215 | } |
| 7216 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7217 | // In ARC, use some specialized diagnostics for occasions where we |
| 7218 | // infer 'const'. These are always pseudo-strong variables. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7219 | if (S.getLangOpts().ObjCAutoRefCount) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7220 | DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); |
| 7221 | if (declRef && isa<VarDecl>(declRef->getDecl())) { |
| 7222 | VarDecl *var = cast<VarDecl>(declRef->getDecl()); |
| 7223 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7224 | // Use the normal diagnostic if it's pseudo-__strong but the |
| 7225 | // user actually wrote 'const'. |
| 7226 | if (var->isARCPseudoStrong() && |
| 7227 | (!var->getTypeSourceInfo() || |
| 7228 | !var->getTypeSourceInfo()->getType().isConstQualified())) { |
| 7229 | // There are two pseudo-strong cases: |
| 7230 | // - self |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7231 | ObjCMethodDecl *method = S.getCurMethodDecl(); |
| 7232 | if (method && var == method->getSelfDecl()) |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 7233 | Diag = method->isClassMethod() |
| 7234 | ? diag::err_typecheck_arc_assign_self_class_method |
| 7235 | : diag::err_typecheck_arc_assign_self; |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7236 | |
| 7237 | // - fast enumeration variables |
| 7238 | else |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7239 | Diag = diag::err_typecheck_arr_assign_enumeration; |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 7240 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7241 | SourceRange Assign; |
| 7242 | if (Loc != OrigLoc) |
| 7243 | Assign = SourceRange(OrigLoc, OrigLoc); |
| 7244 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
| 7245 | // We need to preserve the AST regardless, so migration tool |
| 7246 | // can do its job. |
| 7247 | return false; |
| 7248 | } |
| 7249 | } |
| 7250 | } |
| 7251 | |
| 7252 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7253 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7254 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 7255 | NeedType = true; |
| 7256 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7257 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7258 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 7259 | NeedType = true; |
| 7260 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 7261 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7262 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 7263 | break; |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7264 | case Expr::MLV_Valid: |
| 7265 | llvm_unreachable("did not take early return for MLV_Valid"); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7266 | case Expr::MLV_InvalidExpression: |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7267 | case Expr::MLV_MemberFunction: |
| 7268 | case Expr::MLV_ClassTemporary: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7269 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 7270 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7271 | case Expr::MLV_IncompleteType: |
| 7272 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 7273 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | fe6b2d4 | 2010-03-29 23:34:08 +0000 | [diff] [blame] | 7274 | S.PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 7275 | << E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7276 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7277 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 7278 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 7279 | case Expr::MLV_ReadonlyProperty: |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 7280 | case Expr::MLV_NoSetterProperty: |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7281 | llvm_unreachable("readonly properties should be processed differently"); |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7282 | case Expr::MLV_InvalidMessageExpression: |
| 7283 | Diag = diag::error_readonly_message_assignment; |
| 7284 | break; |
Fariborz Jahanian | 2514a30 | 2009-12-15 23:59:41 +0000 | [diff] [blame] | 7285 | case Expr::MLV_SubObjCPropertySetting: |
| 7286 | Diag = diag::error_no_subobject_property_setting; |
| 7287 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7288 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 7289 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7290 | SourceRange Assign; |
| 7291 | if (Loc != OrigLoc) |
| 7292 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7293 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 7294 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7295 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7296 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7297 | return true; |
| 7298 | } |
| 7299 | |
| 7300 | |
| 7301 | |
| 7302 | // C99 6.5.16.1 |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7303 | QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7304 | SourceLocation Loc, |
| 7305 | QualType CompoundType) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7306 | assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); |
| 7307 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7308 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7309 | if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 7310 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7311 | |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7312 | QualType LHSType = LHSExpr->getType(); |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 7313 | QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : |
| 7314 | CompoundType; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7315 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7316 | if (CompoundType.isNull()) { |
Fariborz Jahanian | e2a901a | 2010-06-07 22:02:01 +0000 | [diff] [blame] | 7317 | QualType LHSTy(LHSType); |
Fariborz Jahanian | e2a901a | 2010-06-07 22:02:01 +0000 | [diff] [blame] | 7318 | ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7319 | if (RHS.isInvalid()) |
| 7320 | return QualType(); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7321 | // Special case of NSObject attributes on c-style pointer types. |
| 7322 | if (ConvTy == IncompatiblePointer && |
| 7323 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 7324 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7325 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 7326 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 7327 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7328 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7329 | if (ConvTy == Compatible && |
Fariborz Jahanian | 466f45a | 2012-01-24 19:40:13 +0000 | [diff] [blame] | 7330 | LHSType->isObjCObjectType()) |
Fariborz Jahanian | 7b383e4 | 2012-01-24 18:05:45 +0000 | [diff] [blame] | 7331 | Diag(Loc, diag::err_objc_object_assignment) |
| 7332 | << LHSType; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7333 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7334 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 7335 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 7336 | // instead of "x += 4". |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7337 | Expr *RHSCheck = RHS.get(); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7338 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 7339 | RHSCheck = ICE->getSubExpr(); |
| 7340 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7341 | if ((UO->getOpcode() == UO_Plus || |
| 7342 | UO->getOpcode() == UO_Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7343 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7344 | // Only if the two operators are exactly adjacent. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 7345 | Loc.getLocWithOffset(1) == UO->getOperatorLoc() && |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 7346 | // And there is a space or other character before the subexpr of the |
| 7347 | // unary +/-. We don't want to warn on "x=-1". |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 7348 | Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 7349 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 7350 | Diag(Loc, diag::warn_not_compound_assign) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7351 | << (UO->getOpcode() == UO_Plus ? "+" : "-") |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 7352 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 7353 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7354 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7355 | |
| 7356 | if (ConvTy == Compatible) { |
| 7357 | if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7358 | checkRetainCycles(LHSExpr, RHS.get()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7359 | else if (getLangOpts().ObjCAutoRefCount) |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7360 | checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7361 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7362 | } else { |
| 7363 | // Compound assignment "x += y" |
Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 7364 | ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 7365 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7366 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7367 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7368 | RHS.get(), AA_Assigning)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 7369 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7370 | |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7371 | CheckForNullPointerDereference(*this, LHSExpr); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 7372 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7373 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 7374 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7375 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7376 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 7377 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 7378 | // 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] | 7379 | // operand. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7380 | return (getLangOpts().CPlusPlus |
John McCall | 2bf6f49 | 2010-10-12 02:19:57 +0000 | [diff] [blame] | 7381 | ? LHSType : LHSType.getUnqualifiedType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7382 | } |
| 7383 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 7384 | // C99 6.5.17 |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7385 | static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7386 | SourceLocation Loc) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7387 | S.DiagnoseUnusedExprResult(LHS.get()); |
Argyrios Kyrtzidis | 2597345 | 2010-06-30 10:53:14 +0000 | [diff] [blame] | 7388 | |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 7389 | LHS = S.CheckPlaceholderExpr(LHS.take()); |
| 7390 | RHS = S.CheckPlaceholderExpr(RHS.take()); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7391 | if (LHS.isInvalid() || RHS.isInvalid()) |
Douglas Gregor | 7ad5d42 | 2010-11-09 21:07:58 +0000 | [diff] [blame] | 7392 | return QualType(); |
| 7393 | |
John McCall | cf2e506 | 2010-10-12 07:14:40 +0000 | [diff] [blame] | 7394 | // C's comma performs lvalue conversion (C99 6.3.2.1) on both its |
| 7395 | // operands, but not unary promotions. |
| 7396 | // 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] | 7397 | |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 7398 | // So we treat the LHS as a ignored value, and in C++ we allow the |
| 7399 | // containing site to determine what should be done with the RHS. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7400 | LHS = S.IgnoredValueConversions(LHS.take()); |
| 7401 | if (LHS.isInvalid()) |
| 7402 | return QualType(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 7403 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7404 | if (!S.getLangOpts().CPlusPlus) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7405 | RHS = S.DefaultFunctionArrayLvalueConversion(RHS.take()); |
| 7406 | if (RHS.isInvalid()) |
| 7407 | return QualType(); |
| 7408 | if (!RHS.get()->getType()->isVoidType()) |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 7409 | S.RequireCompleteType(Loc, RHS.get()->getType(), |
| 7410 | diag::err_incomplete_type); |
John McCall | cf2e506 | 2010-10-12 07:14:40 +0000 | [diff] [blame] | 7411 | } |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 7412 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7413 | return RHS.get()->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7414 | } |
| 7415 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 7416 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 7417 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7418 | static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, |
| 7419 | ExprValueKind &VK, |
| 7420 | SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7421 | bool IsInc, bool IsPrefix) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7422 | if (Op->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7423 | return S.Context.DependentTy; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7424 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7425 | QualType ResType = Op->getType(); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 7426 | // Atomic types can be used for increment / decrement where the non-atomic |
| 7427 | // versions can, so ignore the _Atomic() specifier for the purpose of |
| 7428 | // checking. |
| 7429 | if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) |
| 7430 | ResType = ResAtomicType->getValueType(); |
| 7431 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7432 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7433 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7434 | if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7435 | // Decrement of bool is not allowed. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7436 | if (!IsInc) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7437 | S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7438 | return QualType(); |
| 7439 | } |
| 7440 | // Increment of bool sets it to true, but is deprecated. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7441 | S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 7442 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7443 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 7444 | } else if (ResType->isAnyPointerType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7445 | // C99 6.5.2.4p2, 6.5.6p2 |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 7446 | if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 7447 | return QualType(); |
Chandler Carruth | 13b21be | 2011-06-27 08:02:19 +0000 | [diff] [blame] | 7448 | |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 7449 | // Diagnose bad cases where we step over interface counts. |
Richard Trieu | db44a6b | 2011-09-01 22:53:23 +0000 | [diff] [blame] | 7450 | else if (!checkArithmethicPointerOnNonFragileABI(S, OpLoc, Op)) |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 7451 | return QualType(); |
Eli Friedman | 5b088a1 | 2010-01-03 00:20:48 +0000 | [diff] [blame] | 7452 | } else if (ResType->isAnyComplexType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7453 | // C99 does not support ++/-- on complex types, we allow as an extension. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7454 | S.Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 7455 | << ResType << Op->getSourceRange(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7456 | } else if (ResType->isPlaceholderType()) { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 7457 | ExprResult PR = S.CheckPlaceholderExpr(Op); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7458 | if (PR.isInvalid()) return QualType(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7459 | return CheckIncrementDecrementOperand(S, PR.take(), VK, OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7460 | IsInc, IsPrefix); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7461 | } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { |
Anton Yartsev | 683564a | 2011-02-07 02:17:30 +0000 | [diff] [blame] | 7462 | // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7463 | } else { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7464 | S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 7465 | << ResType << int(IsInc) << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 7466 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7467 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7468 | // 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] | 7469 | // Now make sure the operand is a modifiable lvalue. |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7470 | if (CheckForModifiableLvalue(Op, OpLoc, S)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7471 | return QualType(); |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 7472 | // In C++, a prefix increment is the same type as the operand. Otherwise |
| 7473 | // (in C or with postfix), the increment is the unqualified type of the |
| 7474 | // operand. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7475 | if (IsPrefix && S.getLangOpts().CPlusPlus) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7476 | VK = VK_LValue; |
| 7477 | return ResType; |
| 7478 | } else { |
| 7479 | VK = VK_RValue; |
| 7480 | return ResType.getUnqualifiedType(); |
| 7481 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7482 | } |
Fariborz Jahanian | c4e1a68 | 2010-09-14 23:02:38 +0000 | [diff] [blame] | 7483 | |
| 7484 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 7485 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7486 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 7487 | /// where the declaration is needed for type checking. We only need to |
| 7488 | /// handle cases when the expression references a function designator |
| 7489 | /// or is an lvalue. Here are some examples: |
| 7490 | /// - &(x) => x |
| 7491 | /// - &*****f => f for f a function designator. |
| 7492 | /// - &s.xx => s |
| 7493 | /// - &s.zz[1].yy -> s, if zz is an array |
| 7494 | /// - *(x + 1) -> x, if x is an array |
| 7495 | /// - &"123"[2] -> 0 |
| 7496 | /// - & __real__ x -> x |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7497 | static ValueDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7498 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7499 | case Stmt::DeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7500 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7501 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7502 | // If this is an arrow operator, the address is an offset from |
| 7503 | // the base's value, so the object the base refers to is |
| 7504 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7505 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 7506 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7507 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7508 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 7509 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 7510 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 7511 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7512 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 7513 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 7514 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 7515 | return getPrimaryDecl(ICE->getSubExpr()); |
| 7516 | } |
| 7517 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 7518 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 7519 | case Stmt::UnaryOperatorClass: { |
| 7520 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7521 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 7522 | switch(UO->getOpcode()) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7523 | case UO_Real: |
| 7524 | case UO_Imag: |
| 7525 | case UO_Extension: |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 7526 | return getPrimaryDecl(UO->getSubExpr()); |
| 7527 | default: |
| 7528 | return 0; |
| 7529 | } |
| 7530 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7531 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7532 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 7533 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7534 | // If the result of an implicit cast is an l-value, we care about |
| 7535 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 7536 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7537 | default: |
| 7538 | return 0; |
| 7539 | } |
| 7540 | } |
| 7541 | |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7542 | namespace { |
| 7543 | enum { |
| 7544 | AO_Bit_Field = 0, |
| 7545 | AO_Vector_Element = 1, |
| 7546 | AO_Property_Expansion = 2, |
| 7547 | AO_Register_Variable = 3, |
| 7548 | AO_No_Error = 4 |
| 7549 | }; |
| 7550 | } |
Richard Trieu | 09a26ad | 2011-09-02 00:47:55 +0000 | [diff] [blame] | 7551 | /// \brief Diagnose invalid operand for address of operations. |
| 7552 | /// |
| 7553 | /// \param Type The type of operand which cannot have its address taken. |
Richard Trieu | 09a26ad | 2011-09-02 00:47:55 +0000 | [diff] [blame] | 7554 | static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, |
| 7555 | Expr *E, unsigned Type) { |
| 7556 | S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); |
| 7557 | } |
| 7558 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7559 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7560 | /// 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] | 7561 | /// 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] | 7562 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7563 | /// 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] | 7564 | /// 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] | 7565 | /// we allow the '&' but retain the overloaded-function type. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7566 | static QualType CheckAddressOfOperand(Sema &S, ExprResult &OrigOp, |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7567 | SourceLocation OpLoc) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7568 | if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ |
| 7569 | if (PTy->getKind() == BuiltinType::Overload) { |
| 7570 | if (!isa<OverloadExpr>(OrigOp.get()->IgnoreParens())) { |
| 7571 | S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 7572 | << OrigOp.get()->getSourceRange(); |
| 7573 | return QualType(); |
| 7574 | } |
| 7575 | |
| 7576 | return S.Context.OverloadTy; |
| 7577 | } |
| 7578 | |
| 7579 | if (PTy->getKind() == BuiltinType::UnknownAny) |
| 7580 | return S.Context.UnknownAnyTy; |
| 7581 | |
| 7582 | if (PTy->getKind() == BuiltinType::BoundMember) { |
| 7583 | S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) |
| 7584 | << OrigOp.get()->getSourceRange(); |
Douglas Gregor | 44efed0 | 2011-10-09 19:10:41 +0000 | [diff] [blame] | 7585 | return QualType(); |
| 7586 | } |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7587 | |
| 7588 | OrigOp = S.CheckPlaceholderExpr(OrigOp.take()); |
| 7589 | if (OrigOp.isInvalid()) return QualType(); |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 7590 | } |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7591 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7592 | if (OrigOp.get()->isTypeDependent()) |
| 7593 | return S.Context.DependentTy; |
| 7594 | |
| 7595 | assert(!OrigOp.get()->getType()->isPlaceholderType()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7596 | |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7597 | // Make sure to ignore parentheses in subsequent checks |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7598 | Expr *op = OrigOp.get()->IgnoreParens(); |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 7599 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7600 | if (S.getLangOpts().C99) { |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 7601 | // Implement C99-only parts of addressof rules. |
| 7602 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7603 | if (uOp->getOpcode() == UO_Deref) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 7604 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 7605 | // (assuming the deref expression is valid). |
| 7606 | return uOp->getSubExpr()->getType(); |
| 7607 | } |
| 7608 | // Technically, there should be a check for array subscript |
| 7609 | // expressions here, but the result of one is always an lvalue anyway. |
| 7610 | } |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7611 | ValueDecl *dcl = getPrimaryDecl(op); |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 7612 | Expr::LValueClassification lval = op->ClassifyLValue(S.Context); |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7613 | unsigned AddressOfError = AO_No_Error; |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 7614 | |
Fariborz Jahanian | 077f490 | 2011-03-26 19:48:30 +0000 | [diff] [blame] | 7615 | if (lval == Expr::LV_ClassTemporary) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7616 | bool sfinae = S.isSFINAEContext(); |
| 7617 | S.Diag(OpLoc, sfinae ? diag::err_typecheck_addrof_class_temporary |
| 7618 | : diag::ext_typecheck_addrof_class_temporary) |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7619 | << op->getType() << op->getSourceRange(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7620 | if (sfinae) |
Douglas Gregor | e873fb7 | 2010-02-16 21:39:57 +0000 | [diff] [blame] | 7621 | return QualType(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7622 | } else if (isa<ObjCSelectorExpr>(op)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7623 | return S.Context.getPointerType(op->getType()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7624 | } else if (lval == Expr::LV_MemberFunction) { |
| 7625 | // If it's an instance method, make a member pointer. |
| 7626 | // The expression must have exactly the form &A::foo. |
| 7627 | |
| 7628 | // If the underlying expression isn't a decl ref, give up. |
| 7629 | if (!isa<DeclRefExpr>(op)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7630 | S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7631 | << OrigOp.get()->getSourceRange(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7632 | return QualType(); |
| 7633 | } |
| 7634 | DeclRefExpr *DRE = cast<DeclRefExpr>(op); |
| 7635 | CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); |
| 7636 | |
| 7637 | // The id-expression was parenthesized. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7638 | if (OrigOp.get() != DRE) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7639 | S.Diag(OpLoc, diag::err_parens_pointer_member_function) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7640 | << OrigOp.get()->getSourceRange(); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7641 | |
| 7642 | // The method was named without a qualifier. |
| 7643 | } else if (!DRE->getQualifier()) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7644 | S.Diag(OpLoc, diag::err_unqualified_pointer_member_function) |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7645 | << op->getSourceRange(); |
| 7646 | } |
| 7647 | |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7648 | return S.Context.getMemberPointerType(op->getType(), |
| 7649 | S.Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
John McCall | 9c72c60 | 2010-08-27 09:08:28 +0000 | [diff] [blame] | 7650 | } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 7651 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7652 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 7653 | if (!op->getType()->isFunctionType()) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7654 | // Use a special diagnostic for loads from property references. |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 7655 | if (isa<PseudoObjectExpr>(op)) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 7656 | AddressOfError = AO_Property_Expansion; |
| 7657 | } else { |
| 7658 | // FIXME: emit more specific diag... |
| 7659 | S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 7660 | << op->getSourceRange(); |
| 7661 | return QualType(); |
| 7662 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7663 | } |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 7664 | } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7665 | // The operand cannot be a bit-field |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7666 | AddressOfError = AO_Bit_Field; |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 7667 | } else if (op->getObjectKind() == OK_VectorComponent) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 7668 | // The operand cannot be an element of a vector |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7669 | AddressOfError = AO_Vector_Element; |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 7670 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7671 | // 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] | 7672 | // with the register storage-class specifier. |
| 7673 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
Fariborz Jahanian | 4020f87 | 2010-08-24 22:21:48 +0000 | [diff] [blame] | 7674 | // in C++ it is not error to take address of a register |
| 7675 | // variable (c++03 7.1.1P3) |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 7676 | if (vd->getStorageClass() == SC_Register && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7677 | !S.getLangOpts().CPlusPlus) { |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7678 | AddressOfError = AO_Register_Variable; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7679 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 7680 | } else if (isa<FunctionTemplateDecl>(dcl)) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7681 | return S.Context.OverloadTy; |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7682 | } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 7683 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 7684 | // Could be a pointer to member, though, if there is an explicit |
| 7685 | // scope qualifier for the class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 7686 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 7687 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 7688 | if (Ctx && Ctx->isRecord()) { |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7689 | if (dcl->getType()->isReferenceType()) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7690 | S.Diag(OpLoc, |
| 7691 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 7692 | << dcl->getDeclName() << dcl->getType(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 7693 | return QualType(); |
| 7694 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7695 | |
Argyrios Kyrtzidis | 0413db4 | 2011-01-31 07:04:29 +0000 | [diff] [blame] | 7696 | while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) |
| 7697 | Ctx = Ctx->getParent(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7698 | return S.Context.getMemberPointerType(op->getType(), |
| 7699 | S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 7700 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 7701 | } |
Eli Friedman | 7b2f51c | 2011-08-26 20:28:17 +0000 | [diff] [blame] | 7702 | } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 7703 | llvm_unreachable("Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7704 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 7705 | |
Richard Trieu | 5520f23 | 2011-09-07 21:46:33 +0000 | [diff] [blame] | 7706 | if (AddressOfError != AO_No_Error) { |
| 7707 | diagnoseAddressOfInvalidType(S, OpLoc, op, AddressOfError); |
| 7708 | return QualType(); |
| 7709 | } |
| 7710 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 7711 | if (lval == Expr::LV_IncompleteVoidType) { |
| 7712 | // Taking the address of a void variable is technically illegal, but we |
| 7713 | // allow it in cases which are otherwise valid. |
| 7714 | // Example: "extern void x; void* y = &x;". |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7715 | S.Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 7716 | } |
| 7717 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7718 | // 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] | 7719 | if (op->getType()->isObjCObjectType()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7720 | return S.Context.getObjCObjectPointerType(op->getType()); |
| 7721 | return S.Context.getPointerType(op->getType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7722 | } |
| 7723 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7724 | /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7725 | static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, |
| 7726 | SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7727 | if (Op->isTypeDependent()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7728 | return S.Context.DependentTy; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 7729 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 7730 | ExprResult ConvResult = S.UsualUnaryConversions(Op); |
| 7731 | if (ConvResult.isInvalid()) |
| 7732 | return QualType(); |
| 7733 | Op = ConvResult.take(); |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7734 | QualType OpTy = Op->getType(); |
| 7735 | QualType Result; |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 7736 | |
| 7737 | if (isa<CXXReinterpretCastExpr>(Op)) { |
| 7738 | QualType OpOrigType = Op->IgnoreParenCasts()->getType(); |
| 7739 | S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, |
| 7740 | Op->getSourceRange()); |
| 7741 | } |
| 7742 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7743 | // Note that per both C89 and C99, indirection is always legal, even if OpTy |
| 7744 | // is an incomplete type or void. It would be possible to warn about |
| 7745 | // dereferencing a void pointer, but it's completely well-defined, and such a |
| 7746 | // warning is unlikely to catch any mistakes. |
| 7747 | if (const PointerType *PT = OpTy->getAs<PointerType>()) |
| 7748 | Result = PT->getPointeeType(); |
| 7749 | else if (const ObjCObjectPointerType *OPT = |
| 7750 | OpTy->getAs<ObjCObjectPointerType>()) |
| 7751 | Result = OPT->getPointeeType(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7752 | else { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 7753 | ExprResult PR = S.CheckPlaceholderExpr(Op); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7754 | if (PR.isInvalid()) return QualType(); |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7755 | if (PR.take() != Op) |
| 7756 | return CheckIndirectionOperand(S, PR.take(), VK, OpLoc); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 7757 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 7758 | |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7759 | if (Result.isNull()) { |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7760 | S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7761 | << OpTy << Op->getSourceRange(); |
| 7762 | return QualType(); |
| 7763 | } |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7764 | |
| 7765 | // Dereferences are usually l-values... |
| 7766 | VK = VK_LValue; |
| 7767 | |
| 7768 | // ...except that certain expressions are never l-values in C. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7769 | if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 7770 | VK = VK_RValue; |
Chris Lattner | fd79a9d | 2010-07-05 19:17:26 +0000 | [diff] [blame] | 7771 | |
| 7772 | return Result; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7773 | } |
| 7774 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7775 | static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode( |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7776 | tok::TokenKind Kind) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7777 | BinaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7778 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 7779 | default: llvm_unreachable("Unknown binop!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7780 | case tok::periodstar: Opc = BO_PtrMemD; break; |
| 7781 | case tok::arrowstar: Opc = BO_PtrMemI; break; |
| 7782 | case tok::star: Opc = BO_Mul; break; |
| 7783 | case tok::slash: Opc = BO_Div; break; |
| 7784 | case tok::percent: Opc = BO_Rem; break; |
| 7785 | case tok::plus: Opc = BO_Add; break; |
| 7786 | case tok::minus: Opc = BO_Sub; break; |
| 7787 | case tok::lessless: Opc = BO_Shl; break; |
| 7788 | case tok::greatergreater: Opc = BO_Shr; break; |
| 7789 | case tok::lessequal: Opc = BO_LE; break; |
| 7790 | case tok::less: Opc = BO_LT; break; |
| 7791 | case tok::greaterequal: Opc = BO_GE; break; |
| 7792 | case tok::greater: Opc = BO_GT; break; |
| 7793 | case tok::exclaimequal: Opc = BO_NE; break; |
| 7794 | case tok::equalequal: Opc = BO_EQ; break; |
| 7795 | case tok::amp: Opc = BO_And; break; |
| 7796 | case tok::caret: Opc = BO_Xor; break; |
| 7797 | case tok::pipe: Opc = BO_Or; break; |
| 7798 | case tok::ampamp: Opc = BO_LAnd; break; |
| 7799 | case tok::pipepipe: Opc = BO_LOr; break; |
| 7800 | case tok::equal: Opc = BO_Assign; break; |
| 7801 | case tok::starequal: Opc = BO_MulAssign; break; |
| 7802 | case tok::slashequal: Opc = BO_DivAssign; break; |
| 7803 | case tok::percentequal: Opc = BO_RemAssign; break; |
| 7804 | case tok::plusequal: Opc = BO_AddAssign; break; |
| 7805 | case tok::minusequal: Opc = BO_SubAssign; break; |
| 7806 | case tok::lesslessequal: Opc = BO_ShlAssign; break; |
| 7807 | case tok::greatergreaterequal: Opc = BO_ShrAssign; break; |
| 7808 | case tok::ampequal: Opc = BO_AndAssign; break; |
| 7809 | case tok::caretequal: Opc = BO_XorAssign; break; |
| 7810 | case tok::pipeequal: Opc = BO_OrAssign; break; |
| 7811 | case tok::comma: Opc = BO_Comma; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7812 | } |
| 7813 | return Opc; |
| 7814 | } |
| 7815 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7816 | static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7817 | tok::TokenKind Kind) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7818 | UnaryOperatorKind Opc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7819 | switch (Kind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 7820 | default: llvm_unreachable("Unknown unary op!"); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7821 | case tok::plusplus: Opc = UO_PreInc; break; |
| 7822 | case tok::minusminus: Opc = UO_PreDec; break; |
| 7823 | case tok::amp: Opc = UO_AddrOf; break; |
| 7824 | case tok::star: Opc = UO_Deref; break; |
| 7825 | case tok::plus: Opc = UO_Plus; break; |
| 7826 | case tok::minus: Opc = UO_Minus; break; |
| 7827 | case tok::tilde: Opc = UO_Not; break; |
| 7828 | case tok::exclaim: Opc = UO_LNot; break; |
| 7829 | case tok::kw___real: Opc = UO_Real; break; |
| 7830 | case tok::kw___imag: Opc = UO_Imag; break; |
| 7831 | case tok::kw___extension__: Opc = UO_Extension; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7832 | } |
| 7833 | return Opc; |
| 7834 | } |
| 7835 | |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7836 | /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. |
| 7837 | /// This warning is only emitted for builtin assignment operations. It is also |
| 7838 | /// suppressed in the event of macro expansions. |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7839 | static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7840 | SourceLocation OpLoc) { |
| 7841 | if (!S.ActiveTemplateInstantiations.empty()) |
| 7842 | return; |
| 7843 | if (OpLoc.isInvalid() || OpLoc.isMacroID()) |
| 7844 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7845 | LHSExpr = LHSExpr->IgnoreParenImpCasts(); |
| 7846 | RHSExpr = RHSExpr->IgnoreParenImpCasts(); |
| 7847 | const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); |
| 7848 | const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); |
| 7849 | if (!LHSDeclRef || !RHSDeclRef || |
| 7850 | LHSDeclRef->getLocation().isMacroID() || |
| 7851 | RHSDeclRef->getLocation().isMacroID()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7852 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7853 | const ValueDecl *LHSDecl = |
| 7854 | cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); |
| 7855 | const ValueDecl *RHSDecl = |
| 7856 | cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); |
| 7857 | if (LHSDecl != RHSDecl) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7858 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7859 | if (LHSDecl->getType().isVolatileQualified()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7860 | return; |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7861 | if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7862 | if (RefTy->getPointeeType().isVolatileQualified()) |
| 7863 | return; |
| 7864 | |
| 7865 | S.Diag(OpLoc, diag::warn_self_assignment) |
Richard Trieu | 268942b | 2011-09-07 01:33:52 +0000 | [diff] [blame] | 7866 | << LHSDeclRef->getType() |
| 7867 | << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7868 | } |
| 7869 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7870 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 7871 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 7872 | /// built-in operations; ActOnBinOp handles overloaded operators. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 7873 | ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
Argyrios Kyrtzidis | b1fa3dc | 2011-01-05 20:09:36 +0000 | [diff] [blame] | 7874 | BinaryOperatorKind Opc, |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7875 | Expr *LHSExpr, Expr *RHSExpr) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7876 | if (getLangOpts().CPlusPlus0x && isa<InitListExpr>(RHSExpr)) { |
Sebastian Redl | 0d8ab2e | 2012-02-27 20:34:02 +0000 | [diff] [blame] | 7877 | // The syntax only allows initializer lists on the RHS of assignment, |
| 7878 | // so we don't need to worry about accepting invalid code for |
| 7879 | // non-assignment operators. |
| 7880 | // C++11 5.17p9: |
| 7881 | // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning |
| 7882 | // of x = {} is x = T(). |
| 7883 | InitializationKind Kind = |
| 7884 | InitializationKind::CreateDirectList(RHSExpr->getLocStart()); |
| 7885 | InitializedEntity Entity = |
| 7886 | InitializedEntity::InitializeTemporary(LHSExpr->getType()); |
| 7887 | InitializationSequence InitSeq(*this, Entity, Kind, &RHSExpr, 1); |
| 7888 | ExprResult Init = InitSeq.Perform(*this, Entity, Kind, |
| 7889 | MultiExprArg(&RHSExpr, 1)); |
| 7890 | if (Init.isInvalid()) |
| 7891 | return Init; |
| 7892 | RHSExpr = Init.take(); |
| 7893 | } |
| 7894 | |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7895 | ExprResult LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7896 | QualType ResultTy; // Result type of the binary operator. |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7897 | // The following two variables are used for compound assignment operators |
| 7898 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 7899 | QualType CompResultTy; // Type of computation result |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7900 | ExprValueKind VK = VK_RValue; |
| 7901 | ExprObjectKind OK = OK_Ordinary; |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7902 | |
| 7903 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7904 | case BO_Assign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7905 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7906 | if (getLangOpts().CPlusPlus && |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7907 | LHS.get()->getObjectKind() != OK_ObjCProperty) { |
| 7908 | VK = LHS.get()->getValueKind(); |
| 7909 | OK = LHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7910 | } |
Chandler Carruth | 9f7a6ee | 2011-01-04 06:52:15 +0000 | [diff] [blame] | 7911 | if (!ResultTy.isNull()) |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7912 | DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7913 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7914 | case BO_PtrMemD: |
| 7915 | case BO_PtrMemI: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7916 | ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7917 | Opc == BO_PtrMemI); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 7918 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7919 | case BO_Mul: |
| 7920 | case BO_Div: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7921 | ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7922 | Opc == BO_Div); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7923 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7924 | case BO_Rem: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7925 | ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7926 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7927 | case BO_Add: |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 7928 | ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7929 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7930 | case BO_Sub: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7931 | ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7932 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7933 | case BO_Shl: |
| 7934 | case BO_Shr: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7935 | ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7936 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7937 | case BO_LE: |
| 7938 | case BO_LT: |
| 7939 | case BO_GE: |
| 7940 | case BO_GT: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7941 | ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7942 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7943 | case BO_EQ: |
| 7944 | case BO_NE: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7945 | ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7946 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7947 | case BO_And: |
| 7948 | case BO_Xor: |
| 7949 | case BO_Or: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7950 | ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7951 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7952 | case BO_LAnd: |
| 7953 | case BO_LOr: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7954 | ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7955 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7956 | case BO_MulAssign: |
| 7957 | case BO_DivAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7958 | CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 7959 | Opc == BO_DivAssign); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7960 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7961 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7962 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7963 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7964 | case BO_RemAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7965 | CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7966 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7967 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7968 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7969 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7970 | case BO_AddAssign: |
Nico Weber | 1cb2d74 | 2012-03-02 22:01:22 +0000 | [diff] [blame] | 7971 | CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7972 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7973 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7974 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7975 | case BO_SubAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7976 | CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); |
| 7977 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7978 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7979 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7980 | case BO_ShlAssign: |
| 7981 | case BO_ShrAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7982 | CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7983 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7984 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7985 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7986 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7987 | case BO_AndAssign: |
| 7988 | case BO_XorAssign: |
| 7989 | case BO_OrAssign: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7990 | CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 7991 | CompLHSTy = CompResultTy; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7992 | if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) |
| 7993 | ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 7994 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 7995 | case BO_Comma: |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7996 | ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7997 | if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 7998 | VK = RHS.get()->getValueKind(); |
| 7999 | OK = RHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8000 | } |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8001 | break; |
| 8002 | } |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8003 | if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 8004 | return ExprError(); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8005 | |
| 8006 | // Check for array bounds violations for both sides of the BinaryOperator |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8007 | CheckArrayAccess(LHS.get()); |
| 8008 | CheckArrayAccess(RHS.get()); |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8009 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 8010 | if (CompResultTy.isNull()) |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8011 | return Owned(new (Context) BinaryOperator(LHS.take(), RHS.take(), Opc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8012 | ResultTy, VK, OK, OpLoc)); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8013 | if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 8014 | OK_ObjCProperty) { |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8015 | VK = VK_LValue; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8016 | OK = LHS.get()->getObjectKind(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8017 | } |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8018 | return Owned(new (Context) CompoundAssignOperator(LHS.take(), RHS.take(), Opc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8019 | ResultTy, VK, OK, CompLHSTy, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8020 | CompResultTy, OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8021 | } |
| 8022 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 8023 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 8024 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 8025 | /// comparison operators have higher precedence. The most typical example of |
| 8026 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8027 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8028 | SourceLocation OpLoc, Expr *LHSExpr, |
| 8029 | Expr *RHSExpr) { |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 8030 | typedef BinaryOperator BinOp; |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8031 | BinOp::Opcode LHSopc = static_cast<BinOp::Opcode>(-1), |
| 8032 | RHSopc = static_cast<BinOp::Opcode>(-1); |
| 8033 | if (BinOp *BO = dyn_cast<BinOp>(LHSExpr)) |
| 8034 | LHSopc = BO->getOpcode(); |
| 8035 | if (BinOp *BO = dyn_cast<BinOp>(RHSExpr)) |
| 8036 | RHSopc = BO->getOpcode(); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8037 | |
| 8038 | // Subs are not binary operators. |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8039 | if (LHSopc == -1 && RHSopc == -1) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8040 | return; |
| 8041 | |
| 8042 | // Bitwise operations are sometimes used as eager logical ops. |
| 8043 | // Don't diagnose this. |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8044 | if ((BinOp::isComparisonOp(LHSopc) || BinOp::isBitwiseOp(LHSopc)) && |
| 8045 | (BinOp::isComparisonOp(RHSopc) || BinOp::isBitwiseOp(RHSopc))) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8046 | return; |
| 8047 | |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8048 | bool isLeftComp = BinOp::isComparisonOp(LHSopc); |
| 8049 | bool isRightComp = BinOp::isComparisonOp(RHSopc); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8050 | if (!isLeftComp && !isRightComp) return; |
| 8051 | |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8052 | SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), |
| 8053 | OpLoc) |
| 8054 | : SourceRange(OpLoc, RHSExpr->getLocEnd()); |
| 8055 | std::string OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc) |
| 8056 | : BinOp::getOpcodeStr(RHSopc); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8057 | SourceRange ParensRange = isLeftComp ? |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8058 | SourceRange(cast<BinOp>(LHSExpr)->getRHS()->getLocStart(), |
| 8059 | RHSExpr->getLocEnd()) |
| 8060 | : SourceRange(LHSExpr->getLocStart(), |
| 8061 | cast<BinOp>(RHSExpr)->getLHS()->getLocStart()); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8062 | |
| 8063 | Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) |
| 8064 | << DiagRange << BinOp::getOpcodeStr(Opc) << OpStr; |
| 8065 | SuggestParentheses(Self, OpLoc, |
| 8066 | Self.PDiag(diag::note_precedence_bitwise_silence) << OpStr, |
Richard Trieu | 78ea78b | 2011-09-07 01:49:20 +0000 | [diff] [blame] | 8067 | RHSExpr->getSourceRange()); |
Richard Trieu | 70979d4 | 2011-08-10 22:41:34 +0000 | [diff] [blame] | 8068 | SuggestParentheses(Self, OpLoc, |
| 8069 | Self.PDiag(diag::note_precedence_bitwise_first) << BinOp::getOpcodeStr(Opc), |
| 8070 | ParensRange); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8071 | } |
| 8072 | |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8073 | /// \brief It accepts a '&' expr that is inside a '|' one. |
| 8074 | /// Emit a diagnostic together with a fixit hint that wraps the '&' expression |
| 8075 | /// in parentheses. |
| 8076 | static void |
| 8077 | EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, |
| 8078 | BinaryOperator *Bop) { |
| 8079 | assert(Bop->getOpcode() == BO_And); |
| 8080 | Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) |
| 8081 | << Bop->getSourceRange() << OpLoc; |
| 8082 | SuggestParentheses(Self, Bop->getOperatorLoc(), |
| 8083 | Self.PDiag(diag::note_bitwise_and_in_bitwise_or_silence), |
| 8084 | Bop->getSourceRange()); |
| 8085 | } |
| 8086 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8087 | /// \brief It accepts a '&&' expr that is inside a '||' one. |
| 8088 | /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression |
| 8089 | /// in parentheses. |
| 8090 | static void |
| 8091 | EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, |
Argyrios Kyrtzidis | a61aedc | 2011-04-22 19:16:27 +0000 | [diff] [blame] | 8092 | BinaryOperator *Bop) { |
| 8093 | assert(Bop->getOpcode() == BO_LAnd); |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 8094 | Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) |
| 8095 | << Bop->getSourceRange() << OpLoc; |
Argyrios Kyrtzidis | a61aedc | 2011-04-22 19:16:27 +0000 | [diff] [blame] | 8096 | SuggestParentheses(Self, Bop->getOperatorLoc(), |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8097 | Self.PDiag(diag::note_logical_and_in_logical_or_silence), |
Chandler Carruth | f0b60d6 | 2011-06-16 01:05:14 +0000 | [diff] [blame] | 8098 | Bop->getSourceRange()); |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8099 | } |
| 8100 | |
| 8101 | /// \brief Returns true if the given expression can be evaluated as a constant |
| 8102 | /// 'true'. |
| 8103 | static bool EvaluatesAsTrue(Sema &S, Expr *E) { |
| 8104 | bool Res; |
| 8105 | return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; |
| 8106 | } |
| 8107 | |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8108 | /// \brief Returns true if the given expression can be evaluated as a constant |
| 8109 | /// 'false'. |
| 8110 | static bool EvaluatesAsFalse(Sema &S, Expr *E) { |
| 8111 | bool Res; |
| 8112 | return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; |
| 8113 | } |
| 8114 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8115 | /// \brief Look for '&&' in the left hand of a '||' expr. |
| 8116 | static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8117 | Expr *LHSExpr, Expr *RHSExpr) { |
| 8118 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8119 | if (Bop->getOpcode() == BO_LAnd) { |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8120 | // 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] | 8121 | if (EvaluatesAsFalse(S, RHSExpr)) |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8122 | return; |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8123 | // If it's "1 && a || b" don't warn since the precedence doesn't matter. |
| 8124 | if (!EvaluatesAsTrue(S, Bop->getLHS())) |
| 8125 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); |
| 8126 | } else if (Bop->getOpcode() == BO_LOr) { |
| 8127 | if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { |
| 8128 | // If it's "a || b && 1 || c" we didn't warn earlier for |
| 8129 | // "a || b && 1", but warn now. |
| 8130 | if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) |
| 8131 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); |
| 8132 | } |
| 8133 | } |
| 8134 | } |
| 8135 | } |
| 8136 | |
| 8137 | /// \brief Look for '&&' in the right hand of a '||' expr. |
| 8138 | static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8139 | Expr *LHSExpr, Expr *RHSExpr) { |
| 8140 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8141 | if (Bop->getOpcode() == BO_LAnd) { |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8142 | // 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] | 8143 | if (EvaluatesAsFalse(S, LHSExpr)) |
Argyrios Kyrtzidis | 47d512c | 2010-11-17 19:18:19 +0000 | [diff] [blame] | 8144 | return; |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8145 | // If it's "a || b && 1" don't warn since the precedence doesn't matter. |
| 8146 | if (!EvaluatesAsTrue(S, Bop->getRHS())) |
| 8147 | return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8148 | } |
| 8149 | } |
| 8150 | } |
| 8151 | |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8152 | /// \brief Look for '&' in the left or right hand of a '|' expr. |
| 8153 | static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, |
| 8154 | Expr *OrArg) { |
| 8155 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { |
| 8156 | if (Bop->getOpcode() == BO_And) |
| 8157 | return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); |
| 8158 | } |
| 8159 | } |
| 8160 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8161 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8162 | /// precedence. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8163 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8164 | SourceLocation OpLoc, Expr *LHSExpr, |
| 8165 | Expr *RHSExpr){ |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8166 | // Diagnose "arg1 'bitwise' arg2 'eq' arg3". |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 8167 | if (BinaryOperator::isBitwiseOp(Opc)) |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8168 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8169 | |
| 8170 | // Diagnose "arg1 & arg2 | arg3" |
| 8171 | if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8172 | DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); |
| 8173 | DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); |
Argyrios Kyrtzidis | 33f46e2 | 2011-06-20 18:41:26 +0000 | [diff] [blame] | 8174 | } |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8175 | |
Argyrios Kyrtzidis | 567bb71 | 2010-11-17 18:26:36 +0000 | [diff] [blame] | 8176 | // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. |
| 8177 | // 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] | 8178 | if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8179 | DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); |
| 8180 | DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); |
Argyrios Kyrtzidis | bee77f7 | 2010-11-16 21:00:12 +0000 | [diff] [blame] | 8181 | } |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8182 | } |
| 8183 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8184 | // Binary Operators. 'Tok' is the token for the operator. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8185 | ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8186 | tok::TokenKind Kind, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8187 | Expr *LHSExpr, Expr *RHSExpr) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8188 | BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8189 | assert((LHSExpr != 0) && "ActOnBinOp(): missing left expression"); |
| 8190 | assert((RHSExpr != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8191 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8192 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8193 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 8194 | |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8195 | return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 8196 | } |
| 8197 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8198 | /// Build an overloaded binary operator expression in the given scope. |
| 8199 | static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, |
| 8200 | BinaryOperatorKind Opc, |
| 8201 | Expr *LHS, Expr *RHS) { |
| 8202 | // Find all of the overloaded operators visible from this |
| 8203 | // point. We perform both an operator-name lookup from the local |
| 8204 | // scope and an argument-dependent lookup based on the types of |
| 8205 | // the arguments. |
| 8206 | UnresolvedSet<16> Functions; |
| 8207 | OverloadedOperatorKind OverOp |
| 8208 | = BinaryOperator::getOverloadedOperator(Opc); |
| 8209 | if (Sc && OverOp != OO_None) |
| 8210 | S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), |
| 8211 | RHS->getType(), Functions); |
| 8212 | |
| 8213 | // Build the (potentially-overloaded, potentially-dependent) |
| 8214 | // binary operation. |
| 8215 | return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); |
| 8216 | } |
| 8217 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8218 | ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8219 | BinaryOperatorKind Opc, |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8220 | Expr *LHSExpr, Expr *RHSExpr) { |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8221 | // We want to end up calling one of checkPseudoObjectAssignment |
| 8222 | // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if |
| 8223 | // both expressions are overloadable or either is type-dependent), |
| 8224 | // or CreateBuiltinBinOp (in any other case). We also want to get |
| 8225 | // any placeholder types out of the way. |
| 8226 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8227 | // Handle pseudo-objects in the LHS. |
| 8228 | if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { |
| 8229 | // Assignments with a pseudo-object l-value need special analysis. |
| 8230 | if (pty->getKind() == BuiltinType::PseudoObject && |
| 8231 | BinaryOperator::isAssignmentOp(Opc)) |
| 8232 | return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8233 | |
| 8234 | // Don't resolve overloads if the other type is overloadable. |
| 8235 | if (pty->getKind() == BuiltinType::Overload) { |
| 8236 | // We can't actually test that if we still have a placeholder, |
| 8237 | // though. Fortunately, none of the exceptions we see in that |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8238 | // code below are valid when the LHS is an overload set. Note |
| 8239 | // that an overload set can be dependently-typed, but it never |
| 8240 | // instantiates to having an overloadable type. |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8241 | ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); |
| 8242 | if (resolvedRHS.isInvalid()) return ExprError(); |
| 8243 | RHSExpr = resolvedRHS.take(); |
| 8244 | |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8245 | if (RHSExpr->isTypeDependent() || |
| 8246 | RHSExpr->getType()->isOverloadableType()) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8247 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8248 | } |
| 8249 | |
| 8250 | ExprResult LHS = CheckPlaceholderExpr(LHSExpr); |
| 8251 | if (LHS.isInvalid()) return ExprError(); |
| 8252 | LHSExpr = LHS.take(); |
| 8253 | } |
| 8254 | |
| 8255 | // Handle pseudo-objects in the RHS. |
| 8256 | if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { |
| 8257 | // An overload in the RHS can potentially be resolved by the type |
| 8258 | // being assigned to. |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8259 | if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { |
| 8260 | if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) |
| 8261 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8262 | |
Eli Friedman | 8788491 | 2012-01-17 21:27:43 +0000 | [diff] [blame] | 8263 | if (LHSExpr->getType()->isOverloadableType()) |
| 8264 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8265 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8266 | return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8267 | } |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8268 | |
| 8269 | // Don't resolve overloads if the other type is overloadable. |
| 8270 | if (pty->getKind() == BuiltinType::Overload && |
| 8271 | LHSExpr->getType()->isOverloadableType()) |
| 8272 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
| 8273 | |
| 8274 | ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); |
| 8275 | if (!resolvedRHS.isUsable()) return ExprError(); |
| 8276 | RHSExpr = resolvedRHS.take(); |
| 8277 | } |
| 8278 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8279 | if (getLangOpts().CPlusPlus) { |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8280 | // If either expression is type-dependent, always build an |
| 8281 | // overloaded op. |
| 8282 | if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) |
| 8283 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8284 | |
John McCall | ac51650 | 2011-10-28 01:04:34 +0000 | [diff] [blame] | 8285 | // Otherwise, build an overloaded op if either expression has an |
| 8286 | // overloadable type. |
| 8287 | if (LHSExpr->getType()->isOverloadableType() || |
| 8288 | RHSExpr->getType()->isOverloadableType()) |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8289 | return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 8290 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8291 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 8292 | // Build a built-in binary operation. |
Richard Trieu | befece1 | 2011-09-07 02:02:10 +0000 | [diff] [blame] | 8293 | return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8294 | } |
| 8295 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8296 | ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Argyrios Kyrtzidis | b1fa3dc | 2011-01-05 20:09:36 +0000 | [diff] [blame] | 8297 | UnaryOperatorKind Opc, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8298 | Expr *InputExpr) { |
| 8299 | ExprResult Input = Owned(InputExpr); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8300 | ExprValueKind VK = VK_RValue; |
| 8301 | ExprObjectKind OK = OK_Ordinary; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8302 | QualType resultType; |
| 8303 | switch (Opc) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8304 | case UO_PreInc: |
| 8305 | case UO_PreDec: |
| 8306 | case UO_PostInc: |
| 8307 | case UO_PostDec: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8308 | resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OpLoc, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8309 | Opc == UO_PreInc || |
| 8310 | Opc == UO_PostInc, |
| 8311 | Opc == UO_PreInc || |
| 8312 | Opc == UO_PreDec); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8313 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8314 | case UO_AddrOf: |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8315 | resultType = CheckAddressOfOperand(*this, Input, OpLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8316 | break; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 8317 | case UO_Deref: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8318 | Input = DefaultFunctionArrayLvalueConversion(Input.take()); |
| 8319 | resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8320 | break; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 8321 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8322 | case UO_Plus: |
| 8323 | case UO_Minus: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8324 | Input = UsualUnaryConversions(Input.take()); |
| 8325 | if (Input.isInvalid()) return ExprError(); |
| 8326 | resultType = Input.get()->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8327 | if (resultType->isDependentType()) |
| 8328 | break; |
Douglas Gregor | 0061962 | 2010-06-22 23:41:02 +0000 | [diff] [blame] | 8329 | if (resultType->isArithmeticType() || // C99 6.5.3.3p1 |
| 8330 | resultType->isVectorType()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8331 | break; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8332 | else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6-7 |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8333 | resultType->isEnumeralType()) |
| 8334 | break; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8335 | else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8336 | Opc == UO_Plus && |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 8337 | resultType->isPointerType()) |
| 8338 | break; |
| 8339 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8340 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8341 | << resultType << Input.get()->getSourceRange()); |
| 8342 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8343 | case UO_Not: // bitwise complement |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8344 | Input = UsualUnaryConversions(Input.take()); |
| 8345 | if (Input.isInvalid()) return ExprError(); |
| 8346 | resultType = Input.get()->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8347 | if (resultType->isDependentType()) |
| 8348 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 8349 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 8350 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 8351 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 8352 | Diag(OpLoc, diag::ext_integer_complement_complex) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8353 | << resultType << Input.get()->getSourceRange(); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8354 | else if (resultType->hasIntegerRepresentation()) |
| 8355 | break; |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8356 | else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8357 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8358 | << resultType << Input.get()->getSourceRange()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8359 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8360 | break; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8361 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8362 | case UO_LNot: // logical negation |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8363 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8364 | Input = DefaultFunctionArrayLvalueConversion(Input.take()); |
| 8365 | if (Input.isInvalid()) return ExprError(); |
| 8366 | resultType = Input.get()->getType(); |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 8367 | |
| 8368 | // Though we still have to promote half FP to float... |
| 8369 | if (resultType->isHalfType()) { |
| 8370 | Input = ImpCastExprToType(Input.take(), Context.FloatTy, CK_FloatingCast).take(); |
| 8371 | resultType = Context.FloatTy; |
| 8372 | } |
| 8373 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8374 | if (resultType->isDependentType()) |
| 8375 | break; |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8376 | if (resultType->isScalarType()) { |
| 8377 | // C99 6.5.3.3p1: ok, fallthrough; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8378 | if (Context.getLangOpts().CPlusPlus) { |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8379 | // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: |
| 8380 | // operand contextually converted to bool. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8381 | Input = ImpCastExprToType(Input.take(), Context.BoolTy, |
| 8382 | ScalarTypeToBooleanCastKind(resultType)); |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 8383 | } |
Tanya Lattner | b0f9dd2 | 2012-01-19 01:16:16 +0000 | [diff] [blame] | 8384 | } else if (resultType->isExtVectorType()) { |
Tanya Lattner | 4f692c2 | 2012-01-16 21:02:28 +0000 | [diff] [blame] | 8385 | // Vector logical not returns the signed variant of the operand type. |
| 8386 | resultType = GetSignedVectorType(resultType); |
| 8387 | break; |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8388 | } else { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8389 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8390 | << resultType << Input.get()->getSourceRange()); |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8391 | } |
Douglas Gregor | ea844f3 | 2010-09-20 17:13:33 +0000 | [diff] [blame] | 8392 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8393 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8394 | // In C++, it's bool. C++ 5.3.1p8 |
Argyrios Kyrtzidis | 16f744b | 2011-02-18 20:55:15 +0000 | [diff] [blame] | 8395 | resultType = Context.getLogicalOperationType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8396 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8397 | case UO_Real: |
| 8398 | case UO_Imag: |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 8399 | resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8400 | // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary |
| 8401 | // 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] | 8402 | if (Input.isInvalid()) return ExprError(); |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8403 | if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { |
| 8404 | if (Input.get()->getValueKind() != VK_RValue && |
| 8405 | Input.get()->getObjectKind() == OK_Ordinary) |
| 8406 | VK = Input.get()->getValueKind(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8407 | } else if (!getLangOpts().CPlusPlus) { |
Richard Smith | dfb80de | 2012-02-18 20:53:32 +0000 | [diff] [blame] | 8408 | // In C, a volatile scalar is read by __imag. In C++, it is not. |
| 8409 | Input = DefaultLvalueConversion(Input.take()); |
| 8410 | } |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 8411 | break; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 8412 | case UO_Extension: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8413 | resultType = Input.get()->getType(); |
| 8414 | VK = Input.get()->getValueKind(); |
| 8415 | OK = Input.get()->getObjectKind(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8416 | break; |
| 8417 | } |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8418 | if (resultType.isNull() || Input.isInvalid()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 8419 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8420 | |
Kaelyn Uhrain | d6c8865 | 2011-08-05 23:18:04 +0000 | [diff] [blame] | 8421 | // Check for array bounds violations in the operand of the UnaryOperator, |
| 8422 | // except for the '*' and '&' operators that have to be handled specially |
| 8423 | // by CheckArrayAccess (as there are special cases like &array[arraysize] |
| 8424 | // that are explicitly defined as valid by the standard). |
| 8425 | if (Opc != UO_AddrOf && Opc != UO_Deref) |
| 8426 | CheckArrayAccess(Input.get()); |
| 8427 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8428 | return Owned(new (Context) UnaryOperator(Input.take(), Opc, resultType, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8429 | VK, OK, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8430 | } |
| 8431 | |
Douglas Gregor | d3d0853 | 2011-12-14 21:23:13 +0000 | [diff] [blame] | 8432 | /// \brief Determine whether the given expression is a qualified member |
| 8433 | /// access expression, of a form that could be turned into a pointer to member |
| 8434 | /// with the address-of operator. |
| 8435 | static bool isQualifiedMemberAccess(Expr *E) { |
| 8436 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { |
| 8437 | if (!DRE->getQualifier()) |
| 8438 | return false; |
| 8439 | |
| 8440 | ValueDecl *VD = DRE->getDecl(); |
| 8441 | if (!VD->isCXXClassMember()) |
| 8442 | return false; |
| 8443 | |
| 8444 | if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) |
| 8445 | return true; |
| 8446 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) |
| 8447 | return Method->isInstance(); |
| 8448 | |
| 8449 | return false; |
| 8450 | } |
| 8451 | |
| 8452 | if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { |
| 8453 | if (!ULE->getQualifier()) |
| 8454 | return false; |
| 8455 | |
| 8456 | for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(), |
| 8457 | DEnd = ULE->decls_end(); |
| 8458 | D != DEnd; ++D) { |
| 8459 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { |
| 8460 | if (Method->isInstance()) |
| 8461 | return true; |
| 8462 | } else { |
| 8463 | // Overload set does not contain methods. |
| 8464 | break; |
| 8465 | } |
| 8466 | } |
| 8467 | |
| 8468 | return false; |
| 8469 | } |
| 8470 | |
| 8471 | return false; |
| 8472 | } |
| 8473 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8474 | ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8475 | UnaryOperatorKind Opc, Expr *Input) { |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 8476 | // First things first: handle placeholders so that the |
| 8477 | // overloaded-operator check considers the right type. |
| 8478 | if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { |
| 8479 | // Increment and decrement of pseudo-object references. |
| 8480 | if (pty->getKind() == BuiltinType::PseudoObject && |
| 8481 | UnaryOperator::isIncrementDecrementOp(Opc)) |
| 8482 | return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); |
| 8483 | |
| 8484 | // extension is always a builtin operator. |
| 8485 | if (Opc == UO_Extension) |
| 8486 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
| 8487 | |
| 8488 | // & gets special logic for several kinds of placeholder. |
| 8489 | // The builtin code knows what to do. |
| 8490 | if (Opc == UO_AddrOf && |
| 8491 | (pty->getKind() == BuiltinType::Overload || |
| 8492 | pty->getKind() == BuiltinType::UnknownAny || |
| 8493 | pty->getKind() == BuiltinType::BoundMember)) |
| 8494 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
| 8495 | |
| 8496 | // Anything else needs to be handled now. |
| 8497 | ExprResult Result = CheckPlaceholderExpr(Input); |
| 8498 | if (Result.isInvalid()) return ExprError(); |
| 8499 | Input = Result.take(); |
| 8500 | } |
| 8501 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8502 | if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && |
Douglas Gregor | d3d0853 | 2011-12-14 21:23:13 +0000 | [diff] [blame] | 8503 | UnaryOperator::getOverloadedOperator(Opc) != OO_None && |
| 8504 | !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8505 | // Find all of the overloaded operators visible from this |
| 8506 | // point. We perform both an operator-name lookup from the local |
| 8507 | // scope and an argument-dependent lookup based on the types of |
| 8508 | // the arguments. |
John McCall | 6e26689 | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 8509 | UnresolvedSet<16> Functions; |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8510 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
John McCall | 6e26689 | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 8511 | if (S && OverOp != OO_None) |
| 8512 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 8513 | Functions); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8514 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 8515 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8516 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8517 | |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 8518 | return CreateBuiltinUnaryOp(OpLoc, Opc, Input); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 8519 | } |
| 8520 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 8521 | // Unary Operators. 'Tok' is the token for the operator. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8522 | ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 8523 | tok::TokenKind Op, Expr *Input) { |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 8524 | return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 8525 | } |
| 8526 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 8527 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 8528 | ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, |
Chris Lattner | 57ad378 | 2011-02-17 20:34:02 +0000 | [diff] [blame] | 8529 | LabelDecl *TheDecl) { |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 8530 | TheDecl->setUsed(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8531 | // 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] | 8532 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 8533 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 8534 | } |
| 8535 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8536 | /// Given the last statement in a statement-expression, check whether |
| 8537 | /// the result is a producing expression (like a call to an |
| 8538 | /// ns_returns_retained function) and, if so, rebuild it to hoist the |
| 8539 | /// release out of the full-expression. Otherwise, return null. |
| 8540 | /// Cannot fail. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8541 | static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8542 | // Should always be wrapped with one of these. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8543 | ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8544 | if (!cleanups) return 0; |
| 8545 | |
| 8546 | ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); |
John McCall | 33e56f3 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 8547 | if (!cast || cast->getCastKind() != CK_ARCConsumeObject) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8548 | return 0; |
| 8549 | |
| 8550 | // Splice out the cast. This shouldn't modify any interesting |
| 8551 | // features of the statement. |
| 8552 | Expr *producer = cast->getSubExpr(); |
| 8553 | assert(producer->getType() == cast->getType()); |
| 8554 | assert(producer->getValueKind() == cast->getValueKind()); |
| 8555 | cleanups->setSubExpr(producer); |
| 8556 | return cleanups; |
| 8557 | } |
| 8558 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 8559 | void Sema::ActOnStartStmtExpr() { |
| 8560 | PushExpressionEvaluationContext(ExprEvalContexts.back().Context); |
| 8561 | } |
| 8562 | |
| 8563 | void Sema::ActOnStmtExprError() { |
John McCall | 7f39d51 | 2012-04-06 18:20:53 +0000 | [diff] [blame] | 8564 | // Note that function is also called by TreeTransform when leaving a |
| 8565 | // StmtExpr scope without rebuilding anything. |
| 8566 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 8567 | DiscardCleanupsInEvaluationContext(); |
| 8568 | PopExpressionEvaluationContext(); |
| 8569 | } |
| 8570 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8571 | ExprResult |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 8572 | Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 8573 | SourceLocation RPLoc) { // "({..})" |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 8574 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 8575 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 8576 | |
John McCall | 73f428c | 2012-04-04 01:27:53 +0000 | [diff] [blame] | 8577 | if (hasAnyUnrecoverableErrorsInThisFunction()) |
| 8578 | DiscardCleanupsInEvaluationContext(); |
| 8579 | assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!"); |
| 8580 | PopExpressionEvaluationContext(); |
| 8581 | |
Douglas Gregor | dd8f569 | 2010-03-10 04:54:39 +0000 | [diff] [blame] | 8582 | bool isFileScope |
| 8583 | = (getCurFunctionOrMethodDecl() == 0) && (getCurBlock() == 0); |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 8584 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 8585 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 8586 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 8587 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 8588 | // example, it is not possible to goto into a stmt expression apparently. |
| 8589 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8590 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 8591 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 8592 | // as the type of the stmtexpr. |
| 8593 | QualType Ty = Context.VoidTy; |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8594 | bool StmtExprMayBindToTemp = false; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 8595 | if (!Compound->body_empty()) { |
| 8596 | Stmt *LastStmt = Compound->body_back(); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8597 | LabelStmt *LastLabelStmt = 0; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 8598 | // If LastStmt is a label, skip down through into the body. |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8599 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { |
| 8600 | LastLabelStmt = Label; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 8601 | LastStmt = Label->getSubStmt(); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8602 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8603 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8604 | if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 8605 | // Do function/array conversion on the last expression, but not |
| 8606 | // lvalue-to-rvalue. However, initialize an unqualified type. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8607 | ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); |
| 8608 | if (LastExpr.isInvalid()) |
| 8609 | return ExprError(); |
| 8610 | Ty = LastExpr.get()->getType().getUnqualifiedType(); |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 8611 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8612 | if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8613 | // In ARC, if the final expression ends in a consume, splice |
| 8614 | // the consume out and bind it later. In the alternate case |
| 8615 | // (when dealing with a retainable type), the result |
| 8616 | // initialization will create a produce. In both cases the |
| 8617 | // result will be +1, and we'll need to balance that out with |
| 8618 | // a bind. |
| 8619 | if (Expr *rebuiltLastStmt |
| 8620 | = maybeRebuildARCConsumingStmt(LastExpr.get())) { |
| 8621 | LastExpr = rebuiltLastStmt; |
| 8622 | } else { |
| 8623 | LastExpr = PerformCopyInitialization( |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8624 | InitializedEntity::InitializeResult(LPLoc, |
| 8625 | Ty, |
| 8626 | false), |
| 8627 | SourceLocation(), |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 8628 | LastExpr); |
| 8629 | } |
| 8630 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8631 | if (LastExpr.isInvalid()) |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8632 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8633 | if (LastExpr.get() != 0) { |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8634 | if (!LastLabelStmt) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8635 | Compound->setLastStmt(LastExpr.take()); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8636 | else |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 8637 | LastLabelStmt->setSubStmt(LastExpr.take()); |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8638 | StmtExprMayBindToTemp = true; |
| 8639 | } |
| 8640 | } |
| 8641 | } |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 8642 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8643 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 8644 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 8645 | // expressions are not lvalues. |
Fariborz Jahanian | e946fc8 | 2010-10-25 23:27:26 +0000 | [diff] [blame] | 8646 | Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); |
| 8647 | if (StmtExprMayBindToTemp) |
| 8648 | return MaybeBindToTemporary(ResStmtExpr); |
| 8649 | return Owned(ResStmtExpr); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 8650 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 8651 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8652 | ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8653 | TypeSourceInfo *TInfo, |
| 8654 | OffsetOfComponent *CompPtr, |
| 8655 | unsigned NumComponents, |
| 8656 | SourceLocation RParenLoc) { |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8657 | QualType ArgTy = TInfo->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8658 | bool Dependent = ArgTy->isDependentType(); |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 8659 | SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8660 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 8661 | // We must have at least one component that refers to the type, and the first |
| 8662 | // one is known to be a field designator. Verify that the ArgTy represents |
| 8663 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8664 | if (!Dependent && !ArgTy->isRecordType()) |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8665 | return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) |
| 8666 | << ArgTy << TypeRange); |
| 8667 | |
| 8668 | // Type must be complete per C99 7.17p3 because a declaring a variable |
| 8669 | // with an incomplete type would be ill-formed. |
| 8670 | if (!Dependent |
| 8671 | && RequireCompleteType(BuiltinLoc, ArgTy, |
| 8672 | PDiag(diag::err_offsetof_incomplete_type) |
| 8673 | << TypeRange)) |
| 8674 | return ExprError(); |
| 8675 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 8676 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 8677 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 8678 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 8679 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 8680 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 8681 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 8682 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8683 | |
| 8684 | bool DidWarnAboutNonPOD = false; |
| 8685 | QualType CurrentType = ArgTy; |
| 8686 | typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8687 | SmallVector<OffsetOfNode, 4> Comps; |
| 8688 | SmallVector<Expr*, 4> Exprs; |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8689 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 8690 | const OffsetOfComponent &OC = CompPtr[i]; |
| 8691 | if (OC.isBrackets) { |
| 8692 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 8693 | if (!CurrentType->isDependentType()) { |
| 8694 | const ArrayType *AT = Context.getAsArrayType(CurrentType); |
| 8695 | if(!AT) |
| 8696 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 8697 | << CurrentType); |
| 8698 | CurrentType = AT->getElementType(); |
| 8699 | } else |
| 8700 | CurrentType = Context.DependentTy; |
| 8701 | |
Richard Smith | ea01143 | 2011-10-17 23:29:39 +0000 | [diff] [blame] | 8702 | ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); |
| 8703 | if (IdxRval.isInvalid()) |
| 8704 | return ExprError(); |
| 8705 | Expr *Idx = IdxRval.take(); |
| 8706 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8707 | // The expression must be an integral expression. |
| 8708 | // FIXME: An integral constant expression? |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8709 | if (!Idx->isTypeDependent() && !Idx->isValueDependent() && |
| 8710 | !Idx->getType()->isIntegerType()) |
| 8711 | return ExprError(Diag(Idx->getLocStart(), |
| 8712 | diag::err_typecheck_subscript_not_integer) |
| 8713 | << Idx->getSourceRange()); |
Richard Smith | d82e5d3 | 2011-10-17 05:48:07 +0000 | [diff] [blame] | 8714 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8715 | // Record this array index. |
| 8716 | Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); |
Richard Smith | ea01143 | 2011-10-17 23:29:39 +0000 | [diff] [blame] | 8717 | Exprs.push_back(Idx); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8718 | continue; |
| 8719 | } |
| 8720 | |
| 8721 | // Offset of a field. |
| 8722 | if (CurrentType->isDependentType()) { |
| 8723 | // We have the offset of a field, but we can't look into the dependent |
| 8724 | // type. Just record the identifier of the field. |
| 8725 | Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); |
| 8726 | CurrentType = Context.DependentTy; |
| 8727 | continue; |
| 8728 | } |
| 8729 | |
| 8730 | // We need to have a complete type to look into. |
| 8731 | if (RequireCompleteType(OC.LocStart, CurrentType, |
| 8732 | diag::err_offsetof_incomplete_type)) |
| 8733 | return ExprError(); |
| 8734 | |
| 8735 | // Look for the designated field. |
| 8736 | const RecordType *RC = CurrentType->getAs<RecordType>(); |
| 8737 | if (!RC) |
| 8738 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 8739 | << CurrentType); |
| 8740 | RecordDecl *RD = RC->getDecl(); |
| 8741 | |
| 8742 | // C++ [lib.support.types]p5: |
| 8743 | // The macro offsetof accepts a restricted set of type arguments in this |
| 8744 | // International Standard. type shall be a POD structure or a POD union |
| 8745 | // (clause 9). |
| 8746 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
| 8747 | if (!CRD->isPOD() && !DidWarnAboutNonPOD && |
Ted Kremenek | 762696f | 2011-02-23 01:51:43 +0000 | [diff] [blame] | 8748 | DiagRuntimeBehavior(BuiltinLoc, 0, |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8749 | PDiag(diag::warn_offsetof_non_pod_type) |
| 8750 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 8751 | << CurrentType)) |
| 8752 | DidWarnAboutNonPOD = true; |
| 8753 | } |
| 8754 | |
| 8755 | // Look for the field. |
| 8756 | LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); |
| 8757 | LookupQualifiedName(R, RD); |
| 8758 | FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 8759 | IndirectFieldDecl *IndirectMemberDecl = 0; |
| 8760 | if (!MemberDecl) { |
Benjamin Kramer | d981146 | 2010-11-21 14:11:41 +0000 | [diff] [blame] | 8761 | if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 8762 | MemberDecl = IndirectMemberDecl->getAnonField(); |
| 8763 | } |
| 8764 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8765 | if (!MemberDecl) |
| 8766 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 8767 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, |
| 8768 | OC.LocEnd)); |
| 8769 | |
Douglas Gregor | 9d5d60f | 2010-04-28 22:36:06 +0000 | [diff] [blame] | 8770 | // C99 7.17p3: |
| 8771 | // (If the specified member is a bit-field, the behavior is undefined.) |
| 8772 | // |
| 8773 | // We diagnose this as an error. |
Richard Smith | a6b8b2c | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 8774 | if (MemberDecl->isBitField()) { |
Douglas Gregor | 9d5d60f | 2010-04-28 22:36:06 +0000 | [diff] [blame] | 8775 | Diag(OC.LocEnd, diag::err_offsetof_bitfield) |
| 8776 | << MemberDecl->getDeclName() |
| 8777 | << SourceRange(BuiltinLoc, RParenLoc); |
| 8778 | Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); |
| 8779 | return ExprError(); |
| 8780 | } |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 8781 | |
| 8782 | RecordDecl *Parent = MemberDecl->getParent(); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 8783 | if (IndirectMemberDecl) |
| 8784 | Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 8785 | |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 8786 | // If the member was found in a base class, introduce OffsetOfNodes for |
| 8787 | // the base class indirections. |
| 8788 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
| 8789 | /*DetectVirtual=*/false); |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 8790 | if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { |
Douglas Gregor | cc8a5d5 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 8791 | CXXBasePath &Path = Paths.front(); |
| 8792 | for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); |
| 8793 | B != BEnd; ++B) |
| 8794 | Comps.push_back(OffsetOfNode(B->Base)); |
| 8795 | } |
Eli Friedman | 19410a7 | 2010-08-05 10:11:36 +0000 | [diff] [blame] | 8796 | |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 8797 | if (IndirectMemberDecl) { |
| 8798 | for (IndirectFieldDecl::chain_iterator FI = |
| 8799 | IndirectMemberDecl->chain_begin(), |
| 8800 | FEnd = IndirectMemberDecl->chain_end(); FI != FEnd; FI++) { |
| 8801 | assert(isa<FieldDecl>(*FI)); |
| 8802 | Comps.push_back(OffsetOfNode(OC.LocStart, |
| 8803 | cast<FieldDecl>(*FI), OC.LocEnd)); |
| 8804 | } |
| 8805 | } else |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8806 | Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 8807 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8808 | CurrentType = MemberDecl->getType().getNonReferenceType(); |
| 8809 | } |
| 8810 | |
| 8811 | return Owned(OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, |
| 8812 | TInfo, Comps.data(), Comps.size(), |
| 8813 | Exprs.data(), Exprs.size(), RParenLoc)); |
| 8814 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8815 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8816 | ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8817 | SourceLocation BuiltinLoc, |
| 8818 | SourceLocation TypeLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8819 | ParsedType ParsedArgTy, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8820 | OffsetOfComponent *CompPtr, |
| 8821 | unsigned NumComponents, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8822 | SourceLocation RParenLoc) { |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8823 | |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8824 | TypeSourceInfo *ArgTInfo; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8825 | QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 8826 | if (ArgTy.isNull()) |
| 8827 | return ExprError(); |
| 8828 | |
Eli Friedman | 5a15dc1 | 2010-08-05 10:15:45 +0000 | [diff] [blame] | 8829 | if (!ArgTInfo) |
| 8830 | ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); |
| 8831 | |
| 8832 | return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8833 | RParenLoc); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 8834 | } |
| 8835 | |
| 8836 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 8837 | ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
John McCall | 2cd11fe | 2010-10-12 02:09:17 +0000 | [diff] [blame] | 8838 | Expr *CondExpr, |
| 8839 | Expr *LHSExpr, Expr *RHSExpr, |
| 8840 | SourceLocation RPLoc) { |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 8841 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 8842 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8843 | ExprValueKind VK = VK_RValue; |
| 8844 | ExprObjectKind OK = OK_Ordinary; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8845 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 8846 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 8847 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8848 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 8849 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8850 | } else { |
| 8851 | // The conditional expression is required to be a constant expression. |
| 8852 | llvm::APSInt condEval(32); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 8853 | ExprResult CondICE = VerifyIntegerConstantExpression(CondExpr, &condEval, |
| 8854 | PDiag(diag::err_typecheck_choose_expr_requires_constant), false); |
| 8855 | if (CondICE.isInvalid()) |
| 8856 | return ExprError(); |
| 8857 | CondExpr = CondICE.take(); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 8858 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8859 | // 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] | 8860 | Expr *ActiveExpr = condEval.getZExtValue() ? LHSExpr : RHSExpr; |
| 8861 | |
| 8862 | resType = ActiveExpr->getType(); |
| 8863 | ValueDependent = ActiveExpr->isValueDependent(); |
| 8864 | VK = ActiveExpr->getValueKind(); |
| 8865 | OK = ActiveExpr->getObjectKind(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 8866 | } |
| 8867 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 8868 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 8869 | resType, VK, OK, RPLoc, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 8870 | resType->isDependentType(), |
| 8871 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 8872 | } |
| 8873 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 8874 | //===----------------------------------------------------------------------===// |
| 8875 | // Clang Extensions. |
| 8876 | //===----------------------------------------------------------------------===// |
| 8877 | |
| 8878 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8879 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 8880 | BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8881 | PushBlockScope(CurScope, Block); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 8882 | CurContext->addDecl(Block); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 8883 | if (CurScope) |
| 8884 | PushDeclContext(CurScope, Block); |
Fariborz Jahanian | a729da2 | 2010-07-09 18:44:02 +0000 | [diff] [blame] | 8885 | else |
| 8886 | CurContext = Block; |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 8887 | |
Eli Friedman | 84b007f | 2012-01-26 03:00:14 +0000 | [diff] [blame] | 8888 | getCurBlock()->HasImplicitReturnType = true; |
| 8889 | |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 8890 | // Enter a new evaluation context to insulate the block from any |
| 8891 | // cleanups from the enclosing full-expression. |
| 8892 | PushExpressionEvaluationContext(PotentiallyEvaluated); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 8893 | } |
| 8894 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 8895 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 8896 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 8897 | assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 8898 | BlockScopeInfo *CurBlock = getCurBlock(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 8899 | |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 8900 | TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 8901 | QualType T = Sig->getType(); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 8902 | |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 8903 | // GetTypeForDeclarator always produces a function type for a block |
| 8904 | // literal signature. Furthermore, it is always a FunctionProtoType |
| 8905 | // unless the function was written with a typedef. |
| 8906 | assert(T->isFunctionType() && |
| 8907 | "GetTypeForDeclarator made a non-function block signature"); |
| 8908 | |
| 8909 | // Look for an explicit signature in that function type. |
| 8910 | FunctionProtoTypeLoc ExplicitSignature; |
| 8911 | |
| 8912 | TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); |
| 8913 | if (isa<FunctionProtoTypeLoc>(tmp)) { |
| 8914 | ExplicitSignature = cast<FunctionProtoTypeLoc>(tmp); |
| 8915 | |
| 8916 | // Check whether that explicit signature was synthesized by |
| 8917 | // GetTypeForDeclarator. If so, don't save that as part of the |
| 8918 | // written signature. |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 8919 | if (ExplicitSignature.getLocalRangeBegin() == |
| 8920 | ExplicitSignature.getLocalRangeEnd()) { |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 8921 | // This would be much cheaper if we stored TypeLocs instead of |
| 8922 | // TypeSourceInfos. |
| 8923 | TypeLoc Result = ExplicitSignature.getResultLoc(); |
| 8924 | unsigned Size = Result.getFullDataSize(); |
| 8925 | Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); |
| 8926 | Sig->getTypeLoc().initializeFullCopy(Result, Size); |
| 8927 | |
| 8928 | ExplicitSignature = FunctionProtoTypeLoc(); |
| 8929 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8930 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 8931 | |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 8932 | CurBlock->TheDecl->setSignatureAsWritten(Sig); |
| 8933 | CurBlock->FunctionType = T; |
| 8934 | |
| 8935 | const FunctionType *Fn = T->getAs<FunctionType>(); |
| 8936 | QualType RetTy = Fn->getResultType(); |
| 8937 | bool isVariadic = |
| 8938 | (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); |
| 8939 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8940 | CurBlock->TheDecl->setIsVariadic(isVariadic); |
Douglas Gregor | a873dfc | 2010-02-03 00:27:59 +0000 | [diff] [blame] | 8941 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8942 | // Don't allow returning a objc interface by value. |
| 8943 | if (RetTy->isObjCObjectType()) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 8944 | Diag(ParamInfo.getLocStart(), |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8945 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 8946 | return; |
| 8947 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8948 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8949 | // Context.DependentTy is used as a placeholder for a missing block |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8950 | // return type. TODO: what should we do with declarators like: |
| 8951 | // ^ * { ... } |
| 8952 | // If the answer is "apply template argument deduction".... |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 8953 | if (RetTy != Context.DependentTy) { |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8954 | CurBlock->ReturnType = RetTy; |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 8955 | CurBlock->TheDecl->setBlockMissingReturnType(false); |
Eli Friedman | 84b007f | 2012-01-26 03:00:14 +0000 | [diff] [blame] | 8956 | CurBlock->HasImplicitReturnType = false; |
Fariborz Jahanian | 0586520 | 2011-12-03 17:47:53 +0000 | [diff] [blame] | 8957 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 8958 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8959 | // Push block parameters from the declarator if we had them. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8960 | SmallVector<ParmVarDecl*, 8> Params; |
John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 8961 | if (ExplicitSignature) { |
| 8962 | for (unsigned I = 0, E = ExplicitSignature.getNumArgs(); I != E; ++I) { |
| 8963 | ParmVarDecl *Param = ExplicitSignature.getArg(I); |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 8964 | if (Param->getIdentifier() == 0 && |
| 8965 | !Param->isImplicit() && |
| 8966 | !Param->isInvalidDecl() && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 8967 | !getLangOpts().CPlusPlus) |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 8968 | Diag(Param->getLocation(), diag::err_parameter_name_omitted); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8969 | Params.push_back(Param); |
Fariborz Jahanian | 9a66c30 | 2010-02-12 21:53:14 +0000 | [diff] [blame] | 8970 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8971 | |
| 8972 | // Fake up parameter variables if we have a typedef, like |
| 8973 | // ^ fntype { ... } |
| 8974 | } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { |
| 8975 | for (FunctionProtoType::arg_type_iterator |
| 8976 | I = Fn->arg_type_begin(), E = Fn->arg_type_end(); I != E; ++I) { |
| 8977 | ParmVarDecl *Param = |
| 8978 | BuildParmVarDeclForTypedef(CurBlock->TheDecl, |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 8979 | ParamInfo.getLocStart(), |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8980 | *I); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8981 | Params.push_back(Param); |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8982 | } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 8983 | } |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8984 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8985 | // Set the parameters on the block decl. |
Douglas Gregor | 82aa713 | 2010-11-01 18:37:59 +0000 | [diff] [blame] | 8986 | if (!Params.empty()) { |
David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 8987 | CurBlock->TheDecl->setParams(Params); |
Douglas Gregor | 82aa713 | 2010-11-01 18:37:59 +0000 | [diff] [blame] | 8988 | CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), |
| 8989 | CurBlock->TheDecl->param_end(), |
| 8990 | /*CheckParameterNames=*/false); |
| 8991 | } |
| 8992 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8993 | // Finally we can process decl attributes. |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 8994 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 8995 | |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8996 | // Put the parameter variables in scope. We can bail out immediately |
| 8997 | // if we don't have any. |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 8998 | if (Params.empty()) |
John McCall | 82dc009 | 2010-06-04 11:21:44 +0000 | [diff] [blame] | 8999 | return; |
| 9000 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9001 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
John McCall | 7a9813c | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 9002 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) { |
| 9003 | (*AI)->setOwningFunction(CurBlock->TheDecl); |
| 9004 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9005 | // If this has an identifier, add it to the scope stack. |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9006 | if ((*AI)->getIdentifier()) { |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 9007 | CheckShadow(CurBlock->TheScope, *AI); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9008 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9009 | PushOnScopeChains(*AI, CurBlock->TheScope); |
John McCall | 053f4bd | 2010-03-22 09:20:08 +0000 | [diff] [blame] | 9010 | } |
John McCall | 7a9813c | 2010-01-22 00:28:27 +0000 | [diff] [blame] | 9011 | } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9012 | } |
| 9013 | |
| 9014 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 9015 | /// is invoked to pop the information about the block from the action impl. |
| 9016 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9017 | // Leave the expression-evaluation context. |
| 9018 | DiscardCleanupsInEvaluationContext(); |
| 9019 | PopExpressionEvaluationContext(); |
| 9020 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9021 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 9022 | PopDeclContext(); |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 9023 | PopFunctionScopeInfo(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9024 | } |
| 9025 | |
| 9026 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 9027 | /// literal was successfully completed. ^(int x){...} |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9028 | ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
Chris Lattner | e476bdc | 2011-02-17 23:58:47 +0000 | [diff] [blame] | 9029 | Stmt *Body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 9030 | // If blocks are disabled, emit an error. |
| 9031 | if (!LangOpts.Blocks) |
| 9032 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9033 | |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9034 | // Leave the expression-evaluation context. |
John McCall | 1e5bc4f | 2012-03-08 22:00:17 +0000 | [diff] [blame] | 9035 | if (hasAnyUnrecoverableErrorsInThisFunction()) |
| 9036 | DiscardCleanupsInEvaluationContext(); |
John McCall | 538773c | 2011-11-11 03:19:12 +0000 | [diff] [blame] | 9037 | assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); |
| 9038 | PopExpressionEvaluationContext(); |
| 9039 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9040 | BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); |
Fariborz Jahanian | a729da2 | 2010-07-09 18:44:02 +0000 | [diff] [blame] | 9041 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 9042 | PopDeclContext(); |
| 9043 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9044 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 9045 | if (!BSI->ReturnType.isNull()) |
| 9046 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9047 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 9048 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9049 | QualType BlockTy; |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9050 | |
John McCall | 469a1eb | 2011-02-02 13:00:07 +0000 | [diff] [blame] | 9051 | // Set the captured variables on the block. |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 9052 | // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo! |
| 9053 | SmallVector<BlockDecl::Capture, 4> Captures; |
| 9054 | for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) { |
| 9055 | CapturingScopeInfo::Capture &Cap = BSI->Captures[i]; |
| 9056 | if (Cap.isThisCapture()) |
| 9057 | continue; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 9058 | BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(), |
Eli Friedman | b69b42c | 2012-01-11 02:36:31 +0000 | [diff] [blame] | 9059 | Cap.isNested(), Cap.getCopyExpr()); |
| 9060 | Captures.push_back(NewCap); |
| 9061 | } |
| 9062 | BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), |
| 9063 | BSI->CXXThisCaptureIndex != 0); |
John McCall | 469a1eb | 2011-02-02 13:00:07 +0000 | [diff] [blame] | 9064 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9065 | // If the user wrote a function type in some form, try to use that. |
| 9066 | if (!BSI->FunctionType.isNull()) { |
| 9067 | const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); |
| 9068 | |
| 9069 | FunctionType::ExtInfo Ext = FTy->getExtInfo(); |
| 9070 | if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); |
| 9071 | |
| 9072 | // Turn protoless block types into nullary block types. |
| 9073 | if (isa<FunctionNoProtoType>(FTy)) { |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9074 | FunctionProtoType::ExtProtoInfo EPI; |
| 9075 | EPI.ExtInfo = Ext; |
| 9076 | BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9077 | |
| 9078 | // Otherwise, if we don't need to change anything about the function type, |
| 9079 | // preserve its sugar structure. |
| 9080 | } else if (FTy->getResultType() == RetTy && |
| 9081 | (!NoReturn || FTy->getNoReturnAttr())) { |
| 9082 | BlockTy = BSI->FunctionType; |
| 9083 | |
| 9084 | // Otherwise, make the minimal modifications to the function type. |
| 9085 | } else { |
| 9086 | const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9087 | FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); |
| 9088 | EPI.TypeQuals = 0; // FIXME: silently? |
| 9089 | EPI.ExtInfo = Ext; |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9090 | BlockTy = Context.getFunctionType(RetTy, |
| 9091 | FPT->arg_type_begin(), |
| 9092 | FPT->getNumArgs(), |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9093 | EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9094 | } |
| 9095 | |
| 9096 | // If we don't have a function type, just build one from nothing. |
| 9097 | } else { |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9098 | FunctionProtoType::ExtProtoInfo EPI; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9099 | EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 9100 | BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9101 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9102 | |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 9103 | DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), |
| 9104 | BSI->TheDecl->param_end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9105 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9106 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 9107 | // If needed, diagnose invalid gotos and switches in the block. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9108 | if (getCurFunction()->NeedsScopeChecking() && |
| 9109 | !hasAnyUnrecoverableErrorsInThisFunction()) |
John McCall | 9ae2f07 | 2010-08-23 23:25:46 +0000 | [diff] [blame] | 9110 | DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9111 | |
Chris Lattner | e476bdc | 2011-02-17 23:58:47 +0000 | [diff] [blame] | 9112 | BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9113 | |
Douglas Gregor | f8b7f71 | 2011-09-06 20:46:03 +0000 | [diff] [blame] | 9114 | computeNRVO(Body, getCurBlock()); |
| 9115 | |
Benjamin Kramer | d248619 | 2011-07-12 14:11:05 +0000 | [diff] [blame] | 9116 | BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); |
| 9117 | const AnalysisBasedWarnings::Policy &WP = AnalysisWarnings.getDefaultPolicy(); |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 9118 | PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result); |
Benjamin Kramer | d248619 | 2011-07-12 14:11:05 +0000 | [diff] [blame] | 9119 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9120 | // 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] | 9121 | // 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] | 9122 | if (Result->getBlockDecl()->hasCaptures()) { |
John McCall | 97b57a2 | 2012-04-13 01:08:17 +0000 | [diff] [blame] | 9123 | // First, this expression has a new cleanup object. |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9124 | ExprCleanupObjects.push_back(Result->getBlockDecl()); |
| 9125 | ExprNeedsCleanups = true; |
John McCall | 97b57a2 | 2012-04-13 01:08:17 +0000 | [diff] [blame] | 9126 | |
| 9127 | // It also gets a branch-protected scope if any of the captured |
| 9128 | // variables needs destruction. |
| 9129 | for (BlockDecl::capture_const_iterator |
| 9130 | ci = Result->getBlockDecl()->capture_begin(), |
| 9131 | ce = Result->getBlockDecl()->capture_end(); ci != ce; ++ci) { |
| 9132 | const VarDecl *var = ci->getVariable(); |
| 9133 | if (var->getType().isDestructedType() != QualType::DK_none) { |
| 9134 | getCurFunction()->setHasBranchProtectedScope(); |
| 9135 | break; |
| 9136 | } |
| 9137 | } |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9138 | } |
Fariborz Jahanian | 27949f6 | 2012-03-06 18:41:35 +0000 | [diff] [blame] | 9139 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 9140 | return Owned(Result); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 9141 | } |
| 9142 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9143 | ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9144 | Expr *E, ParsedType Ty, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9145 | SourceLocation RPLoc) { |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9146 | TypeSourceInfo *TInfo; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 9147 | GetTypeFromParser(Ty, &TInfo); |
| 9148 | return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9149 | } |
| 9150 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9151 | ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 9152 | Expr *E, TypeSourceInfo *TInfo, |
| 9153 | SourceLocation RPLoc) { |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 9154 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9155 | |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9156 | // Get the va_list type |
| 9157 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9158 | if (VaListType->isArrayType()) { |
| 9159 | // Deal with implicit array decay; for example, on x86-64, |
| 9160 | // va_list is an array, but it's supposed to decay to |
| 9161 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9162 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9163 | // Make sure the input expression also decays appropriately. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 9164 | ExprResult Result = UsualUnaryConversions(E); |
| 9165 | if (Result.isInvalid()) |
| 9166 | return ExprError(); |
| 9167 | E = Result.take(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9168 | } else { |
| 9169 | // Otherwise, the va_list argument must be an l-value because |
| 9170 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9171 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 9172 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 9173 | return ExprError(); |
| 9174 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 9175 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 9176 | if (!E->isTypeDependent() && |
| 9177 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9178 | return ExprError(Diag(E->getLocStart(), |
| 9179 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 9180 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 9181 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9182 | |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9183 | if (!TInfo->getType()->isDependentType()) { |
| 9184 | if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), |
| 9185 | PDiag(diag::err_second_parameter_to_va_arg_incomplete) |
| 9186 | << TInfo->getTypeLoc().getSourceRange())) |
| 9187 | return ExprError(); |
David Majnemer | db11b01 | 2011-06-13 06:37:03 +0000 | [diff] [blame] | 9188 | |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9189 | if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), |
| 9190 | TInfo->getType(), |
| 9191 | PDiag(diag::err_second_parameter_to_va_arg_abstract) |
| 9192 | << TInfo->getTypeLoc().getSourceRange())) |
| 9193 | return ExprError(); |
| 9194 | |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9195 | if (!TInfo->getType().isPODType(Context)) { |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9196 | Diag(TInfo->getTypeLoc().getBeginLoc(), |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9197 | TInfo->getType()->isObjCLifetimeType() |
| 9198 | ? diag::warn_second_parameter_to_va_arg_ownership_qualified |
| 9199 | : diag::warn_second_parameter_to_va_arg_not_pod) |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9200 | << TInfo->getType() |
| 9201 | << TInfo->getTypeLoc().getSourceRange(); |
Douglas Gregor | 4eb7522 | 2011-07-30 06:45:27 +0000 | [diff] [blame] | 9202 | } |
Eli Friedman | 46d37c1 | 2011-07-11 21:45:59 +0000 | [diff] [blame] | 9203 | |
| 9204 | // Check for va_arg where arguments of the given type will be promoted |
| 9205 | // (i.e. this va_arg is guaranteed to have undefined behavior). |
| 9206 | QualType PromoteType; |
| 9207 | if (TInfo->getType()->isPromotableIntegerType()) { |
| 9208 | PromoteType = Context.getPromotedIntegerType(TInfo->getType()); |
| 9209 | if (Context.typesAreCompatible(PromoteType, TInfo->getType())) |
| 9210 | PromoteType = QualType(); |
| 9211 | } |
| 9212 | if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) |
| 9213 | PromoteType = Context.DoubleTy; |
| 9214 | if (!PromoteType.isNull()) |
| 9215 | Diag(TInfo->getTypeLoc().getBeginLoc(), |
| 9216 | diag::warn_second_parameter_to_va_arg_never_compatible) |
| 9217 | << TInfo->getType() |
| 9218 | << PromoteType |
| 9219 | << TInfo->getTypeLoc().getSourceRange(); |
David Majnemer | 0adde12 | 2011-06-14 05:17:32 +0000 | [diff] [blame] | 9220 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9221 | |
Abramo Bagnara | 2cad900 | 2010-08-10 10:06:15 +0000 | [diff] [blame] | 9222 | QualType T = TInfo->getType().getNonLValueExprType(Context); |
| 9223 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 9224 | } |
| 9225 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 9226 | ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9227 | // The type of __null will be int or long, depending on the size of |
| 9228 | // pointers on the target. |
| 9229 | QualType Ty; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9230 | unsigned pw = Context.getTargetInfo().getPointerWidth(0); |
| 9231 | if (pw == Context.getTargetInfo().getIntWidth()) |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9232 | Ty = Context.IntTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9233 | else if (pw == Context.getTargetInfo().getLongWidth()) |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9234 | Ty = Context.LongTy; |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 9235 | else if (pw == Context.getTargetInfo().getLongLongWidth()) |
NAKAMURA Takumi | 6e5658d | 2011-01-19 00:11:41 +0000 | [diff] [blame] | 9236 | Ty = Context.LongLongTy; |
| 9237 | else { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 9238 | llvm_unreachable("I don't know size of pointer!"); |
NAKAMURA Takumi | 6e5658d | 2011-01-19 00:11:41 +0000 | [diff] [blame] | 9239 | } |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9240 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 9241 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 9242 | } |
| 9243 | |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9244 | static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType, |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9245 | Expr *SrcExpr, FixItHint &Hint) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9246 | if (!SemaRef.getLangOpts().ObjC1) |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9247 | return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9248 | |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9249 | const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); |
| 9250 | if (!PT) |
| 9251 | return; |
| 9252 | |
| 9253 | // Check if the destination is of type 'id'. |
| 9254 | if (!PT->isObjCIdType()) { |
| 9255 | // Check if the destination is the 'NSString' interface. |
| 9256 | const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); |
| 9257 | if (!ID || !ID->getIdentifier()->isStr("NSString")) |
| 9258 | return; |
| 9259 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9260 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 9261 | // Ignore any parens, implicit casts (should only be |
| 9262 | // array-to-pointer decays), and not-so-opaque values. The last is |
| 9263 | // important for making this trigger for property assignments. |
| 9264 | SrcExpr = SrcExpr->IgnoreParenImpCasts(); |
| 9265 | if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) |
| 9266 | if (OV->getSourceExpr()) |
| 9267 | SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); |
| 9268 | |
| 9269 | StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 9270 | if (!SL || !SL->isAscii()) |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9271 | return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9272 | |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9273 | Hint = FixItHint::CreateInsertion(SL->getLocStart(), "@"); |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 9274 | } |
| 9275 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9276 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 9277 | SourceLocation Loc, |
| 9278 | QualType DstType, QualType SrcType, |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 9279 | Expr *SrcExpr, AssignmentAction Action, |
| 9280 | bool *Complained) { |
| 9281 | if (Complained) |
| 9282 | *Complained = false; |
| 9283 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9284 | // Decode the result (notice that AST's are still created for extensions). |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 9285 | bool CheckInferredResultType = false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9286 | bool isInvalid = false; |
Eli Friedman | fd81978 | 2012-02-29 20:59:56 +0000 | [diff] [blame] | 9287 | unsigned DiagKind = 0; |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9288 | FixItHint Hint; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9289 | ConversionFixItGenerator ConvHints; |
| 9290 | bool MayHaveConvFixit = false; |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9291 | bool MayHaveFunctionDiff = false; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9292 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9293 | switch (ConvTy) { |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9294 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9295 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9296 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9297 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9298 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9299 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9300 | case IntToPointer: |
| 9301 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9302 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9303 | MayHaveConvFixit = true; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 9304 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9305 | case IncompatiblePointer: |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 9306 | MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9307 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 9308 | CheckInferredResultType = DstType->isObjCObjectPointerType() && |
| 9309 | SrcType->isObjCObjectPointerType(); |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9310 | if (Hint.isNull() && !CheckInferredResultType) { |
| 9311 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9312 | } |
| 9313 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9314 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 9315 | case IncompatiblePointerSign: |
| 9316 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 9317 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9318 | case FunctionVoidPointer: |
| 9319 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 9320 | break; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9321 | case IncompatiblePointerDiscardsQualifiers: { |
John McCall | 40249e7 | 2011-02-01 23:28:01 +0000 | [diff] [blame] | 9322 | // Perform array-to-pointer decay if necessary. |
| 9323 | if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); |
| 9324 | |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9325 | Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); |
| 9326 | Qualifiers rhq = DstType->getPointeeType().getQualifiers(); |
| 9327 | if (lhq.getAddressSpace() != rhq.getAddressSpace()) { |
| 9328 | DiagKind = diag::err_typecheck_incompatible_address_space; |
| 9329 | break; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9330 | |
| 9331 | |
| 9332 | } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { |
Argyrios Kyrtzidis | b8b0313 | 2011-06-24 00:08:59 +0000 | [diff] [blame] | 9333 | DiagKind = diag::err_typecheck_incompatible_ownership; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9334 | break; |
John McCall | 86c05f3 | 2011-02-01 00:10:29 +0000 | [diff] [blame] | 9335 | } |
| 9336 | |
| 9337 | llvm_unreachable("unknown error case for discarding qualifiers!"); |
| 9338 | // fallthrough |
| 9339 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9340 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9341 | // If the qualifiers lost were because we were applying the |
| 9342 | // (deprecated) C++ conversion from a string literal to a char* |
| 9343 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 9344 | // Ideally, this check would be performed in |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 9345 | // checkPointerTypesForAssignment. However, that would require a |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9346 | // bit of refactoring (so that the second argument is an |
| 9347 | // expression, rather than a type), which should be done as part |
John McCall | e4be87e | 2011-01-31 23:13:11 +0000 | [diff] [blame] | 9348 | // of a larger effort to fix checkPointerTypesForAssignment for |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9349 | // C++ semantics. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9350 | if (getLangOpts().CPlusPlus && |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 9351 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 9352 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9353 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 9354 | break; |
Sean Hunt | c9132b6 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 9355 | case IncompatibleNestedPointerQualifiers: |
Fariborz Jahanian | 3451e92 | 2009-11-09 22:16:37 +0000 | [diff] [blame] | 9356 | DiagKind = diag::ext_nested_pointer_qualifier_mismatch; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 9357 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 9358 | case IntToBlockPointer: |
| 9359 | DiagKind = diag::err_int_to_block_pointer; |
| 9360 | break; |
| 9361 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 9362 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 9363 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 9364 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9365 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 9366 | // it can give a more specific diagnostic. |
| 9367 | DiagKind = diag::warn_incompatible_qualified_id; |
| 9368 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 9369 | case IncompatibleVectors: |
| 9370 | DiagKind = diag::warn_incompatible_vectors; |
| 9371 | break; |
Fariborz Jahanian | 04e5a25 | 2011-07-07 18:55:47 +0000 | [diff] [blame] | 9372 | case IncompatibleObjCWeakRef: |
| 9373 | DiagKind = diag::err_arc_weak_unavailable_assign; |
| 9374 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9375 | case Incompatible: |
| 9376 | DiagKind = diag::err_typecheck_convert_incompatible; |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9377 | ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); |
| 9378 | MayHaveConvFixit = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9379 | isInvalid = true; |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9380 | MayHaveFunctionDiff = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9381 | break; |
| 9382 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9383 | |
Douglas Gregor | d4eea83 | 2010-04-09 00:35:39 +0000 | [diff] [blame] | 9384 | QualType FirstType, SecondType; |
| 9385 | switch (Action) { |
| 9386 | case AA_Assigning: |
| 9387 | case AA_Initializing: |
| 9388 | // The destination type comes first. |
| 9389 | FirstType = DstType; |
| 9390 | SecondType = SrcType; |
| 9391 | break; |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9392 | |
Douglas Gregor | d4eea83 | 2010-04-09 00:35:39 +0000 | [diff] [blame] | 9393 | case AA_Returning: |
| 9394 | case AA_Passing: |
| 9395 | case AA_Converting: |
| 9396 | case AA_Sending: |
| 9397 | case AA_Casting: |
| 9398 | // The source type comes first. |
| 9399 | FirstType = SrcType; |
| 9400 | SecondType = DstType; |
| 9401 | break; |
| 9402 | } |
Sean Hunt | 1e3f5ba | 2010-04-28 23:02:27 +0000 | [diff] [blame] | 9403 | |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9404 | PartialDiagnostic FDiag = PDiag(DiagKind); |
| 9405 | FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); |
| 9406 | |
| 9407 | // If we can fix the conversion, suggest the FixIts. |
| 9408 | assert(ConvHints.isNull() || Hint.isNull()); |
| 9409 | if (!ConvHints.isNull()) { |
Benjamin Kramer | 1136ef0 | 2012-01-14 21:05:10 +0000 | [diff] [blame] | 9410 | for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(), |
| 9411 | HE = ConvHints.Hints.end(); HI != HE; ++HI) |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9412 | FDiag << *HI; |
| 9413 | } else { |
| 9414 | FDiag << Hint; |
| 9415 | } |
| 9416 | if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } |
| 9417 | |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9418 | if (MayHaveFunctionDiff) |
| 9419 | HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); |
| 9420 | |
Anna Zaks | 6722155 | 2011-07-28 19:51:27 +0000 | [diff] [blame] | 9421 | Diag(Loc, FDiag); |
| 9422 | |
Richard Trieu | 6efd4c5 | 2011-11-23 22:32:32 +0000 | [diff] [blame] | 9423 | if (SecondType == Context.OverloadTy) |
| 9424 | NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, |
| 9425 | FirstType); |
| 9426 | |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 9427 | if (CheckInferredResultType) |
| 9428 | EmitRelatedResultTypeNote(SrcExpr); |
| 9429 | |
Douglas Gregor | a41a8c5 | 2010-04-22 00:20:18 +0000 | [diff] [blame] | 9430 | if (Complained) |
| 9431 | *Complained = true; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 9432 | return isInvalid; |
| 9433 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9434 | |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9435 | ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, |
| 9436 | llvm::APSInt *Result) { |
| 9437 | return VerifyIntegerConstantExpression(E, Result, |
| 9438 | PDiag(diag::err_expr_not_ice) << LangOpts.CPlusPlus); |
| 9439 | } |
| 9440 | |
Benjamin Kramer | d448ce0 | 2012-04-18 14:22:41 +0000 | [diff] [blame] | 9441 | ExprResult |
| 9442 | Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, |
| 9443 | const PartialDiagnostic &NotIceDiag, |
| 9444 | bool AllowFold, |
| 9445 | const PartialDiagnostic &FoldDiag) { |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 9446 | SourceLocation DiagLoc = E->getLocStart(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9447 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9448 | if (getLangOpts().CPlusPlus0x) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9449 | // C++11 [expr.const]p5: |
| 9450 | // If an expression of literal class type is used in a context where an |
| 9451 | // integral constant expression is required, then that class type shall |
| 9452 | // have a single non-explicit conversion function to an integral or |
| 9453 | // unscoped enumeration type |
| 9454 | ExprResult Converted; |
| 9455 | if (NotIceDiag.getDiagID()) { |
| 9456 | Converted = ConvertToIntegralOrEnumerationType( |
| 9457 | DiagLoc, E, |
| 9458 | PDiag(diag::err_ice_not_integral), |
| 9459 | PDiag(diag::err_ice_incomplete_type), |
| 9460 | PDiag(diag::err_ice_explicit_conversion), |
| 9461 | PDiag(diag::note_ice_conversion_here), |
| 9462 | PDiag(diag::err_ice_ambiguous_conversion), |
| 9463 | PDiag(diag::note_ice_conversion_here), |
| 9464 | PDiag(0), |
| 9465 | /*AllowScopedEnumerations*/ false); |
| 9466 | } else { |
| 9467 | // The caller wants to silently enquire whether this is an ICE. Don't |
| 9468 | // produce any diagnostics if it isn't. |
| 9469 | Converted = ConvertToIntegralOrEnumerationType( |
| 9470 | DiagLoc, E, PDiag(), PDiag(), PDiag(), PDiag(), |
| 9471 | PDiag(), PDiag(), PDiag(), false); |
| 9472 | } |
| 9473 | if (Converted.isInvalid()) |
| 9474 | return Converted; |
| 9475 | E = Converted.take(); |
| 9476 | if (!E->getType()->isIntegralOrUnscopedEnumerationType()) |
| 9477 | return ExprError(); |
| 9478 | } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { |
| 9479 | // An ICE must be of integral or unscoped enumeration type. |
| 9480 | if (NotIceDiag.getDiagID()) |
| 9481 | Diag(DiagLoc, NotIceDiag) << E->getSourceRange(); |
| 9482 | return ExprError(); |
| 9483 | } |
| 9484 | |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 9485 | // Circumvent ICE checking in C++11 to avoid evaluating the expression twice |
| 9486 | // in the non-ICE case. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9487 | if (!getLangOpts().CPlusPlus0x && E->isIntegerConstantExpr(Context)) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9488 | if (Result) |
| 9489 | *Result = E->EvaluateKnownConstInt(Context); |
| 9490 | return Owned(E); |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 9491 | } |
| 9492 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9493 | Expr::EvalResult EvalResult; |
Richard Smith | dd1f29b | 2011-12-12 09:28:41 +0000 | [diff] [blame] | 9494 | llvm::SmallVector<PartialDiagnosticAt, 8> Notes; |
| 9495 | EvalResult.Diag = &Notes; |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9496 | |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 9497 | // Try to evaluate the expression, and produce diagnostics explaining why it's |
| 9498 | // not a constant expression as a side-effect. |
| 9499 | bool Folded = E->EvaluateAsRValue(EvalResult, Context) && |
| 9500 | EvalResult.Val.isInt() && !EvalResult.HasSideEffects; |
| 9501 | |
| 9502 | // In C++11, we can rely on diagnostics being produced for any expression |
| 9503 | // which is not a constant expression. If no diagnostics were produced, then |
| 9504 | // this is a constant expression. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 9505 | if (Folded && getLangOpts().CPlusPlus0x && Notes.empty()) { |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 9506 | if (Result) |
| 9507 | *Result = EvalResult.Val.getInt(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9508 | return Owned(E); |
| 9509 | } |
| 9510 | |
| 9511 | // If our only note is the usual "invalid subexpression" note, just point |
| 9512 | // the caret at its location rather than producing an essentially |
| 9513 | // redundant note. |
| 9514 | if (Notes.size() == 1 && Notes[0].second.getDiagID() == |
| 9515 | diag::note_invalid_subexpr_in_const_expr) { |
| 9516 | DiagLoc = Notes[0].first; |
| 9517 | Notes.clear(); |
Richard Smith | daaefc5 | 2011-12-14 23:32:26 +0000 | [diff] [blame] | 9518 | } |
| 9519 | |
| 9520 | if (!Folded || !AllowFold) { |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9521 | if (NotIceDiag.getDiagID()) { |
| 9522 | Diag(DiagLoc, NotIceDiag) << E->getSourceRange(); |
Richard Smith | dd1f29b | 2011-12-12 09:28:41 +0000 | [diff] [blame] | 9523 | for (unsigned I = 0, N = Notes.size(); I != N; ++I) |
| 9524 | Diag(Notes[I].first, Notes[I].second); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9525 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9526 | |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9527 | return ExprError(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9528 | } |
| 9529 | |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9530 | if (FoldDiag.getDiagID()) |
| 9531 | Diag(DiagLoc, FoldDiag) << E->getSourceRange(); |
| 9532 | else |
| 9533 | Diag(DiagLoc, diag::ext_expr_not_ice) |
| 9534 | << E->getSourceRange() << LangOpts.CPlusPlus; |
Richard Smith | 244ee7b | 2012-01-15 03:51:30 +0000 | [diff] [blame] | 9535 | for (unsigned I = 0, N = Notes.size(); I != N; ++I) |
| 9536 | Diag(Notes[I].first, Notes[I].second); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 9537 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9538 | if (Result) |
| 9539 | *Result = EvalResult.Val.getInt(); |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 9540 | return Owned(E); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 9541 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 9542 | |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 9543 | namespace { |
| 9544 | // Handle the case where we conclude a expression which we speculatively |
| 9545 | // considered to be unevaluated is actually evaluated. |
| 9546 | class TransformToPE : public TreeTransform<TransformToPE> { |
| 9547 | typedef TreeTransform<TransformToPE> BaseTransform; |
| 9548 | |
| 9549 | public: |
| 9550 | TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } |
| 9551 | |
| 9552 | // Make sure we redo semantic analysis |
| 9553 | bool AlwaysRebuild() { return true; } |
| 9554 | |
Eli Friedman | 56ff283 | 2012-02-06 23:29:57 +0000 | [diff] [blame] | 9555 | // Make sure we handle LabelStmts correctly. |
| 9556 | // FIXME: This does the right thing, but maybe we need a more general |
| 9557 | // fix to TreeTransform? |
| 9558 | StmtResult TransformLabelStmt(LabelStmt *S) { |
| 9559 | S->getDecl()->setStmt(0); |
| 9560 | return BaseTransform::TransformLabelStmt(S); |
| 9561 | } |
| 9562 | |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 9563 | // We need to special-case DeclRefExprs referring to FieldDecls which |
| 9564 | // are not part of a member pointer formation; normal TreeTransforming |
| 9565 | // doesn't catch this case because of the way we represent them in the AST. |
| 9566 | // FIXME: This is a bit ugly; is it really the best way to handle this |
| 9567 | // case? |
| 9568 | // |
| 9569 | // Error on DeclRefExprs referring to FieldDecls. |
| 9570 | ExprResult TransformDeclRefExpr(DeclRefExpr *E) { |
| 9571 | if (isa<FieldDecl>(E->getDecl()) && |
| 9572 | SemaRef.ExprEvalContexts.back().Context != Sema::Unevaluated) |
| 9573 | return SemaRef.Diag(E->getLocation(), |
| 9574 | diag::err_invalid_non_static_member_use) |
| 9575 | << E->getDecl() << E->getSourceRange(); |
| 9576 | |
| 9577 | return BaseTransform::TransformDeclRefExpr(E); |
| 9578 | } |
| 9579 | |
| 9580 | // Exception: filter out member pointer formation |
| 9581 | ExprResult TransformUnaryOperator(UnaryOperator *E) { |
| 9582 | if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) |
| 9583 | return E; |
| 9584 | |
| 9585 | return BaseTransform::TransformUnaryOperator(E); |
| 9586 | } |
| 9587 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 9588 | ExprResult TransformLambdaExpr(LambdaExpr *E) { |
| 9589 | // Lambdas never need to be transformed. |
| 9590 | return E; |
| 9591 | } |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 9592 | }; |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 9593 | } |
| 9594 | |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 9595 | ExprResult Sema::TranformToPotentiallyEvaluated(Expr *E) { |
Eli Friedman | 72b8b1e | 2012-02-29 04:03:55 +0000 | [diff] [blame] | 9596 | assert(ExprEvalContexts.back().Context == Unevaluated && |
| 9597 | "Should only transform unevaluated expressions"); |
Eli Friedman | ef331b7 | 2012-01-20 01:26:23 +0000 | [diff] [blame] | 9598 | ExprEvalContexts.back().Context = |
| 9599 | ExprEvalContexts[ExprEvalContexts.size()-2].Context; |
| 9600 | if (ExprEvalContexts.back().Context == Unevaluated) |
| 9601 | return E; |
| 9602 | return TransformToPE(*this).TransformExpr(E); |
Eli Friedman | 93c878e | 2012-01-18 01:05:54 +0000 | [diff] [blame] | 9603 | } |
| 9604 | |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 9605 | void |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 9606 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 9607 | Decl *LambdaContextDecl, |
| 9608 | bool IsDecltype) { |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 9609 | ExprEvalContexts.push_back( |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9610 | ExpressionEvaluationContextRecord(NewContext, |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9611 | ExprCleanupObjects.size(), |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 9612 | ExprNeedsCleanups, |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 9613 | LambdaContextDecl, |
| 9614 | IsDecltype)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9615 | ExprNeedsCleanups = false; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 9616 | if (!MaybeODRUseExprs.empty()) |
| 9617 | std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 9618 | } |
| 9619 | |
Richard Trieu | 67e2933 | 2011-08-02 04:35:43 +0000 | [diff] [blame] | 9620 | void Sema::PopExpressionEvaluationContext() { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9621 | ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 9622 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 9623 | if (!Rec.Lambdas.empty()) { |
| 9624 | if (Rec.Context == Unevaluated) { |
| 9625 | // C++11 [expr.prim.lambda]p2: |
| 9626 | // A lambda-expression shall not appear in an unevaluated operand |
| 9627 | // (Clause 5). |
| 9628 | for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) |
| 9629 | Diag(Rec.Lambdas[I]->getLocStart(), |
| 9630 | diag::err_lambda_unevaluated_operand); |
| 9631 | } else { |
| 9632 | // Mark the capture expressions odr-used. This was deferred |
| 9633 | // during lambda expression creation. |
| 9634 | for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) { |
| 9635 | LambdaExpr *Lambda = Rec.Lambdas[I]; |
| 9636 | for (LambdaExpr::capture_init_iterator |
| 9637 | C = Lambda->capture_init_begin(), |
| 9638 | CEnd = Lambda->capture_init_end(); |
| 9639 | C != CEnd; ++C) { |
| 9640 | MarkDeclarationsReferencedInExpr(*C); |
| 9641 | } |
| 9642 | } |
| 9643 | } |
| 9644 | } |
| 9645 | |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 9646 | // When are coming out of an unevaluated context, clear out any |
| 9647 | // temporaries that we may have created as part of the evaluation of |
| 9648 | // the expression in that context: they aren't relevant because they |
| 9649 | // will never be constructed. |
Richard Smith | f6702a3 | 2011-12-20 02:08:33 +0000 | [diff] [blame] | 9650 | if (Rec.Context == Unevaluated || Rec.Context == ConstantEvaluated) { |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9651 | ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, |
| 9652 | ExprCleanupObjects.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9653 | ExprNeedsCleanups = Rec.ParentNeedsCleanups; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 9654 | CleanupVarDeclMarking(); |
| 9655 | std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9656 | // Otherwise, merge the contexts together. |
| 9657 | } else { |
| 9658 | ExprNeedsCleanups |= Rec.ParentNeedsCleanups; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 9659 | MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), |
| 9660 | Rec.SavedMaybeODRUseExprs.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9661 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9662 | |
| 9663 | // Pop the current expression evaluation context off the stack. |
| 9664 | ExprEvalContexts.pop_back(); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 9665 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 9666 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9667 | void Sema::DiscardCleanupsInEvaluationContext() { |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 9668 | ExprCleanupObjects.erase( |
| 9669 | ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, |
| 9670 | ExprCleanupObjects.end()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9671 | ExprNeedsCleanups = false; |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 9672 | MaybeODRUseExprs.clear(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 9673 | } |
| 9674 | |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 9675 | ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { |
| 9676 | if (!E->getType()->isVariablyModifiedType()) |
| 9677 | return E; |
| 9678 | return TranformToPotentiallyEvaluated(E); |
| 9679 | } |
| 9680 | |
Benjamin Kramer | 5bbc385 | 2012-02-06 11:13:08 +0000 | [diff] [blame] | 9681 | static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 9682 | // Do not mark anything as "used" within a dependent context; wait for |
| 9683 | // an instantiation. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9684 | if (SemaRef.CurContext->isDependentContext()) |
| 9685 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9686 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9687 | switch (SemaRef.ExprEvalContexts.back().Context) { |
| 9688 | case Sema::Unevaluated: |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 9689 | // We are in an expression that is not potentially evaluated; do nothing. |
Eli Friedman | 78a5424 | 2012-01-21 04:44:06 +0000 | [diff] [blame] | 9690 | // (Depending on how you read the standard, we actually do need to do |
| 9691 | // something here for null pointer constants, but the standard's |
| 9692 | // definition of a null pointer constant is completely crazy.) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9693 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9694 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9695 | case Sema::ConstantEvaluated: |
| 9696 | case Sema::PotentiallyEvaluated: |
Eli Friedman | 78a5424 | 2012-01-21 04:44:06 +0000 | [diff] [blame] | 9697 | // We are in a potentially evaluated expression (or a constant-expression |
| 9698 | // in C++03); we need to do implicit template instantiation, implicitly |
| 9699 | // define class members, and mark most declarations as used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9700 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9701 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9702 | case Sema::PotentiallyEvaluatedIfUsed: |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 9703 | // Referenced declarations will only be used if the construct in the |
| 9704 | // containing expression is used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9705 | return false; |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 9706 | } |
Matt Beaumont-Gay | 4f7dcdb | 2012-02-02 18:35:35 +0000 | [diff] [blame] | 9707 | llvm_unreachable("Invalid context"); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9708 | } |
| 9709 | |
| 9710 | /// \brief Mark a function referenced, and check whether it is odr-used |
| 9711 | /// (C++ [basic.def.odr]p2, C99 6.9p3) |
| 9712 | void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func) { |
| 9713 | assert(Func && "No function?"); |
| 9714 | |
| 9715 | Func->setReferenced(); |
| 9716 | |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9717 | // Don't mark this function as used multiple times, unless it's a constexpr |
| 9718 | // function which we need to instantiate. |
| 9719 | if (Func->isUsed(false) && |
| 9720 | !(Func->isConstexpr() && !Func->getBody() && |
| 9721 | Func->isImplicitlyInstantiable())) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9722 | return; |
| 9723 | |
| 9724 | if (!IsPotentiallyEvaluatedContext(*this)) |
| 9725 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9726 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 9727 | // Note that this declaration has been used. |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9728 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 9729 | if (Constructor->isDefaulted() && !Constructor->isDeleted()) { |
Sebastian Redl | 85ea7aa | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 9730 | if (Constructor->isDefaultConstructor()) { |
| 9731 | if (Constructor->isTrivial()) |
| 9732 | return; |
| 9733 | if (!Constructor->isUsed(false)) |
| 9734 | DefineImplicitDefaultConstructor(Loc, Constructor); |
| 9735 | } else if (Constructor->isCopyConstructor()) { |
| 9736 | if (!Constructor->isUsed(false)) |
| 9737 | DefineImplicitCopyConstructor(Loc, Constructor); |
| 9738 | } else if (Constructor->isMoveConstructor()) { |
| 9739 | if (!Constructor->isUsed(false)) |
| 9740 | DefineImplicitMoveConstructor(Loc, Constructor); |
| 9741 | } |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 9742 | } |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9743 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 9744 | MarkVTableUsed(Loc, Constructor->getParent()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9745 | } else if (CXXDestructorDecl *Destructor = |
| 9746 | dyn_cast<CXXDestructorDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 9747 | if (Destructor->isDefaulted() && !Destructor->isDeleted() && |
| 9748 | !Destructor->isUsed(false)) |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 9749 | DefineImplicitDestructor(Loc, Destructor); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 9750 | if (Destructor->isVirtual()) |
| 9751 | MarkVTableUsed(Loc, Destructor->getParent()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9752 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { |
Richard Smith | 03f6878 | 2012-02-26 07:51:39 +0000 | [diff] [blame] | 9753 | if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted() && |
| 9754 | MethodDecl->isOverloadedOperator() && |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 9755 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
Sebastian Redl | 85ea7aa | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 9756 | if (!MethodDecl->isUsed(false)) { |
| 9757 | if (MethodDecl->isCopyAssignmentOperator()) |
| 9758 | DefineImplicitCopyAssignment(Loc, MethodDecl); |
| 9759 | else |
| 9760 | DefineImplicitMoveAssignment(Loc, MethodDecl); |
| 9761 | } |
Douglas Gregor | f6e2e02 | 2012-02-16 01:06:16 +0000 | [diff] [blame] | 9762 | } else if (isa<CXXConversionDecl>(MethodDecl) && |
| 9763 | MethodDecl->getParent()->isLambda()) { |
| 9764 | CXXConversionDecl *Conversion = cast<CXXConversionDecl>(MethodDecl); |
| 9765 | if (Conversion->isLambdaToBlockPointerConversion()) |
| 9766 | DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); |
| 9767 | else |
| 9768 | DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 9769 | } else if (MethodDecl->isVirtual()) |
| 9770 | MarkVTableUsed(Loc, MethodDecl->getParent()); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 9771 | } |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 9772 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9773 | // Recursive functions should be marked when used from another function. |
| 9774 | // FIXME: Is this really right? |
| 9775 | if (CurContext == Func) return; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 9776 | |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 9777 | // Instantiate the exception specification for any function which is |
| 9778 | // used: CodeGen will need it. |
Richard Smith | 13bffc5 | 2012-04-19 00:08:28 +0000 | [diff] [blame^] | 9779 | const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); |
| 9780 | if (FPT && FPT->getExceptionSpecType() == EST_Uninstantiated) |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 9781 | InstantiateExceptionSpec(Loc, Func); |
| 9782 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9783 | // Implicit instantiation of function templates and member functions of |
| 9784 | // class templates. |
| 9785 | if (Func->isImplicitlyInstantiable()) { |
| 9786 | bool AlreadyInstantiated = false; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9787 | SourceLocation PointOfInstantiation = Loc; |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9788 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 9789 | = Func->getTemplateSpecializationInfo()) { |
| 9790 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 9791 | SpecInfo->setPointOfInstantiation(Loc); |
| 9792 | else if (SpecInfo->getTemplateSpecializationKind() |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9793 | == TSK_ImplicitInstantiation) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9794 | AlreadyInstantiated = true; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9795 | PointOfInstantiation = SpecInfo->getPointOfInstantiation(); |
| 9796 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9797 | } else if (MemberSpecializationInfo *MSInfo |
| 9798 | = Func->getMemberSpecializationInfo()) { |
| 9799 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 9800 | MSInfo->setPointOfInstantiation(Loc); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9801 | else if (MSInfo->getTemplateSpecializationKind() |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9802 | == TSK_ImplicitInstantiation) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9803 | AlreadyInstantiated = true; |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9804 | PointOfInstantiation = MSInfo->getPointOfInstantiation(); |
| 9805 | } |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 9806 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 9807 | |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9808 | if (!AlreadyInstantiated || Func->isConstexpr()) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9809 | if (isa<CXXRecordDecl>(Func->getDeclContext()) && |
| 9810 | cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass()) |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9811 | PendingLocalImplicitInstantiations.push_back( |
| 9812 | std::make_pair(Func, PointOfInstantiation)); |
| 9813 | else if (Func->isConstexpr()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9814 | // Do not defer instantiations of constexpr functions, to avoid the |
| 9815 | // expression evaluator needing to call back into Sema if it sees a |
| 9816 | // call to such a function. |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9817 | InstantiateFunctionDefinition(PointOfInstantiation, Func); |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 9818 | else { |
Richard Smith | 57b9c4e | 2012-02-14 22:25:15 +0000 | [diff] [blame] | 9819 | PendingInstantiations.push_back(std::make_pair(Func, |
| 9820 | PointOfInstantiation)); |
Argyrios Kyrtzidis | 6d96836 | 2012-02-10 20:10:44 +0000 | [diff] [blame] | 9821 | // Notify the consumer that a function was implicitly instantiated. |
| 9822 | Consumer.HandleCXXImplicitFunctionInstantiation(Func); |
| 9823 | } |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 9824 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9825 | } else { |
| 9826 | // Walk redefinitions, as some of them may be instantiable. |
| 9827 | for (FunctionDecl::redecl_iterator i(Func->redecls_begin()), |
| 9828 | e(Func->redecls_end()); i != e; ++i) { |
| 9829 | if (!i->isUsed(false) && i->isImplicitlyInstantiable()) |
| 9830 | MarkFunctionReferenced(Loc, *i); |
| 9831 | } |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 9832 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 9833 | |
| 9834 | // Keep track of used but undefined functions. |
| 9835 | if (!Func->isPure() && !Func->hasBody() && |
| 9836 | Func->getLinkage() != ExternalLinkage) { |
| 9837 | SourceLocation &old = UndefinedInternals[Func->getCanonicalDecl()]; |
| 9838 | if (old.isInvalid()) old = Loc; |
| 9839 | } |
| 9840 | |
| 9841 | Func->setUsed(true); |
| 9842 | } |
| 9843 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9844 | static void |
| 9845 | diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, |
| 9846 | VarDecl *var, DeclContext *DC) { |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 9847 | DeclContext *VarDC = var->getDeclContext(); |
| 9848 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9849 | // If the parameter still belongs to the translation unit, then |
| 9850 | // we're actually just using one parameter in the declaration of |
| 9851 | // the next. |
| 9852 | if (isa<ParmVarDecl>(var) && |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 9853 | isa<TranslationUnitDecl>(VarDC)) |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9854 | return; |
| 9855 | |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 9856 | // For C code, don't diagnose about capture if we're not actually in code |
| 9857 | // right now; it's impossible to write a non-constant expression outside of |
| 9858 | // function context, so we'll get other (more useful) diagnostics later. |
| 9859 | // |
| 9860 | // For C++, things get a bit more nasty... it would be nice to suppress this |
| 9861 | // diagnostic for certain cases like using a local variable in an array bound |
| 9862 | // 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] | 9863 | if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9864 | return; |
| 9865 | |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 9866 | if (isa<CXXMethodDecl>(VarDC) && |
| 9867 | cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { |
| 9868 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda) |
| 9869 | << var->getIdentifier(); |
| 9870 | } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) { |
| 9871 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) |
| 9872 | << var->getIdentifier() << fn->getDeclName(); |
| 9873 | } else if (isa<BlockDecl>(VarDC)) { |
| 9874 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block) |
| 9875 | << var->getIdentifier(); |
| 9876 | } else { |
| 9877 | // FIXME: Is there any other context where a local variable can be |
| 9878 | // declared? |
| 9879 | S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context) |
| 9880 | << var->getIdentifier(); |
| 9881 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9882 | |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9883 | S.Diag(var->getLocation(), diag::note_local_variable_declared_here) |
| 9884 | << var->getIdentifier(); |
Eli Friedman | 0a29422 | 2012-02-07 00:15:00 +0000 | [diff] [blame] | 9885 | |
| 9886 | // FIXME: Add additional diagnostic info about class etc. which prevents |
| 9887 | // capture. |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 9888 | } |
| 9889 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 9890 | /// \brief Capture the given variable in the given lambda expression. |
| 9891 | static ExprResult captureInLambda(Sema &S, LambdaScopeInfo *LSI, |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 9892 | VarDecl *Var, QualType FieldType, |
| 9893 | QualType DeclRefType, |
| 9894 | SourceLocation Loc) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 9895 | CXXRecordDecl *Lambda = LSI->Lambda; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 9896 | |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9897 | // Build the non-static data member. |
| 9898 | FieldDecl *Field |
| 9899 | = FieldDecl::Create(S.Context, Lambda, Loc, Loc, 0, FieldType, |
| 9900 | S.Context.getTrivialTypeSourceInfo(FieldType, Loc), |
| 9901 | 0, false, false); |
| 9902 | Field->setImplicit(true); |
| 9903 | Field->setAccess(AS_private); |
Douglas Gregor | 20f87a4 | 2012-02-09 02:12:34 +0000 | [diff] [blame] | 9904 | Lambda->addDecl(Field); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9905 | |
| 9906 | // C++11 [expr.prim.lambda]p21: |
| 9907 | // When the lambda-expression is evaluated, the entities that |
| 9908 | // are captured by copy are used to direct-initialize each |
| 9909 | // corresponding non-static data member of the resulting closure |
| 9910 | // object. (For array members, the array elements are |
| 9911 | // direct-initialized in increasing subscript order.) These |
| 9912 | // initializations are performed in the (unspecified) order in |
| 9913 | // which the non-static data members are declared. |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9914 | |
Douglas Gregor | e2c5913 | 2012-02-09 08:14:43 +0000 | [diff] [blame] | 9915 | // Introduce a new evaluation context for the initialization, so |
| 9916 | // that temporaries introduced as part of the capture are retained |
| 9917 | // to be re-"exported" from the lambda expression itself. |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9918 | S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated); |
| 9919 | |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 9920 | // C++ [expr.prim.labda]p12: |
| 9921 | // An entity captured by a lambda-expression is odr-used (3.2) in |
| 9922 | // the scope containing the lambda-expression. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 9923 | Expr *Ref = new (S.Context) DeclRefExpr(Var, false, DeclRefType, |
| 9924 | VK_LValue, Loc); |
Eli Friedman | 88530d5 | 2012-03-01 21:32:56 +0000 | [diff] [blame] | 9925 | Var->setReferenced(true); |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 9926 | Var->setUsed(true); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9927 | |
| 9928 | // When the field has array type, create index variables for each |
| 9929 | // dimension of the array. We use these index variables to subscript |
| 9930 | // the source array, and other clients (e.g., CodeGen) will perform |
| 9931 | // the necessary iteration with these index variables. |
| 9932 | SmallVector<VarDecl *, 4> IndexVariables; |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9933 | QualType BaseType = FieldType; |
| 9934 | QualType SizeType = S.Context.getSizeType(); |
Douglas Gregor | 9daa7bf | 2012-02-13 16:35:30 +0000 | [diff] [blame] | 9935 | LSI->ArrayIndexStarts.push_back(LSI->ArrayIndexVars.size()); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9936 | while (const ConstantArrayType *Array |
| 9937 | = S.Context.getAsConstantArrayType(BaseType)) { |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9938 | // Create the iteration variable for this array index. |
| 9939 | IdentifierInfo *IterationVarName = 0; |
| 9940 | { |
| 9941 | SmallString<8> Str; |
| 9942 | llvm::raw_svector_ostream OS(Str); |
| 9943 | OS << "__i" << IndexVariables.size(); |
| 9944 | IterationVarName = &S.Context.Idents.get(OS.str()); |
| 9945 | } |
| 9946 | VarDecl *IterationVar |
| 9947 | = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, |
| 9948 | IterationVarName, SizeType, |
| 9949 | S.Context.getTrivialTypeSourceInfo(SizeType, Loc), |
| 9950 | SC_None, SC_None); |
| 9951 | IndexVariables.push_back(IterationVar); |
Douglas Gregor | 9daa7bf | 2012-02-13 16:35:30 +0000 | [diff] [blame] | 9952 | LSI->ArrayIndexVars.push_back(IterationVar); |
| 9953 | |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9954 | // Create a reference to the iteration variable. |
| 9955 | ExprResult IterationVarRef |
| 9956 | = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); |
| 9957 | assert(!IterationVarRef.isInvalid() && |
| 9958 | "Reference to invented variable cannot fail!"); |
| 9959 | IterationVarRef = S.DefaultLvalueConversion(IterationVarRef.take()); |
| 9960 | assert(!IterationVarRef.isInvalid() && |
| 9961 | "Conversion of invented variable cannot fail!"); |
| 9962 | |
| 9963 | // Subscript the array with this iteration variable. |
| 9964 | ExprResult Subscript = S.CreateBuiltinArraySubscriptExpr( |
| 9965 | Ref, Loc, IterationVarRef.take(), Loc); |
| 9966 | if (Subscript.isInvalid()) { |
| 9967 | S.CleanupVarDeclMarking(); |
| 9968 | S.DiscardCleanupsInEvaluationContext(); |
| 9969 | S.PopExpressionEvaluationContext(); |
| 9970 | return ExprError(); |
| 9971 | } |
| 9972 | |
| 9973 | Ref = Subscript.take(); |
| 9974 | BaseType = Array->getElementType(); |
| 9975 | } |
| 9976 | |
| 9977 | // Construct the entity that we will be initializing. For an array, this |
| 9978 | // will be first element in the array, which may require several levels |
| 9979 | // of array-subscript entities. |
| 9980 | SmallVector<InitializedEntity, 4> Entities; |
| 9981 | Entities.reserve(1 + IndexVariables.size()); |
Douglas Gregor | 4773654 | 2012-02-15 16:57:26 +0000 | [diff] [blame] | 9982 | Entities.push_back( |
| 9983 | InitializedEntity::InitializeLambdaCapture(Var, Field, Loc)); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9984 | for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) |
| 9985 | Entities.push_back(InitializedEntity::InitializeElement(S.Context, |
| 9986 | 0, |
| 9987 | Entities.back())); |
| 9988 | |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9989 | InitializationKind InitKind |
| 9990 | = InitializationKind::CreateDirect(Loc, Loc, Loc); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9991 | InitializationSequence Init(S, Entities.back(), InitKind, &Ref, 1); |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9992 | ExprResult Result(true); |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 9993 | if (!Init.Diagnose(S, Entities.back(), InitKind, &Ref, 1)) |
| 9994 | Result = Init.Perform(S, Entities.back(), InitKind, |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 9995 | MultiExprArg(S, &Ref, 1)); |
| 9996 | |
| 9997 | // If this initialization requires any cleanups (e.g., due to a |
| 9998 | // default argument to a copy constructor), note that for the |
| 9999 | // lambda. |
| 10000 | if (S.ExprNeedsCleanups) |
| 10001 | LSI->ExprNeedsCleanups = true; |
| 10002 | |
| 10003 | // Exit the expression evaluation context used for the capture. |
| 10004 | S.CleanupVarDeclMarking(); |
| 10005 | S.DiscardCleanupsInEvaluationContext(); |
| 10006 | S.PopExpressionEvaluationContext(); |
| 10007 | return Result; |
Douglas Gregor | 18fe084 | 2012-02-09 02:45:47 +0000 | [diff] [blame] | 10008 | } |
Douglas Gregor | 1f9a5db | 2012-02-09 01:56:40 +0000 | [diff] [blame] | 10009 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10010 | bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, |
| 10011 | TryCaptureKind Kind, SourceLocation EllipsisLoc, |
| 10012 | bool BuildAndDiagnose, |
| 10013 | QualType &CaptureType, |
| 10014 | QualType &DeclRefType) { |
| 10015 | bool Nested = false; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10016 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10017 | DeclContext *DC = CurContext; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10018 | if (Var->getDeclContext() == DC) return true; |
| 10019 | if (!Var->hasLocalStorage()) return true; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10020 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10021 | bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10022 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10023 | // Walk up the stack to determine whether we can capture the variable, |
| 10024 | // performing the "simple" checks that don't depend on type. We stop when |
| 10025 | // we've either hit the declared scope of the variable or find an existing |
| 10026 | // capture of that variable. |
| 10027 | CaptureType = Var->getType(); |
| 10028 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10029 | bool Explicit = (Kind != TryCapture_Implicit); |
| 10030 | unsigned FunctionScopesIndex = FunctionScopes.size() - 1; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10031 | do { |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10032 | // Only block literals and lambda expressions can capture; other |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10033 | // scopes don't work. |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10034 | DeclContext *ParentDC; |
| 10035 | if (isa<BlockDecl>(DC)) |
| 10036 | ParentDC = DC->getParent(); |
| 10037 | else if (isa<CXXMethodDecl>(DC) && |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10038 | cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call && |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10039 | cast<CXXRecordDecl>(DC->getParent())->isLambda()) |
| 10040 | ParentDC = DC->getParent()->getParent(); |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10041 | else { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10042 | if (BuildAndDiagnose) |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10043 | diagnoseUncapturableValueReference(*this, Loc, Var, DC); |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10044 | return true; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10045 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10046 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10047 | CapturingScopeInfo *CSI = |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10048 | cast<CapturingScopeInfo>(FunctionScopes[FunctionScopesIndex]); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10049 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10050 | // Check whether we've already captured it. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10051 | if (CSI->CaptureMap.count(Var)) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10052 | // If we found a capture, any subcaptures are nested. |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10053 | Nested = true; |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10054 | |
| 10055 | // Retrieve the capture type for this variable. |
| 10056 | CaptureType = CSI->getCapture(Var).getCaptureType(); |
| 10057 | |
| 10058 | // Compute the type of an expression that refers to this variable. |
| 10059 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10060 | |
| 10061 | const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var); |
| 10062 | if (Cap.isCopyCapture() && |
| 10063 | !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable)) |
| 10064 | DeclRefType.addConst(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10065 | break; |
| 10066 | } |
| 10067 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10068 | bool IsBlock = isa<BlockScopeInfo>(CSI); |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10069 | bool IsLambda = !IsBlock; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10070 | |
| 10071 | // Lambdas are not allowed to capture unnamed variables |
| 10072 | // (e.g. anonymous unions). |
| 10073 | // FIXME: The C++11 rule don't actually state this explicitly, but I'm |
| 10074 | // assuming that's the intent. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10075 | if (IsLambda && !Var->getDeclName()) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10076 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10077 | Diag(Loc, diag::err_lambda_capture_anonymous_var); |
| 10078 | Diag(Var->getLocation(), diag::note_declared_at); |
| 10079 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10080 | return true; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10081 | } |
| 10082 | |
| 10083 | // Prohibit variably-modified types; they're difficult to deal with. |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10084 | if (Var->getType()->isVariablyModifiedType()) { |
| 10085 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10086 | if (IsBlock) |
| 10087 | Diag(Loc, diag::err_ref_vm_type); |
| 10088 | else |
| 10089 | Diag(Loc, diag::err_lambda_capture_vm_type) << Var->getDeclName(); |
| 10090 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10091 | << Var->getDeclName(); |
| 10092 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10093 | return true; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10094 | } |
| 10095 | |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10096 | // Lambdas are not allowed to capture __block variables; they don't |
| 10097 | // support the expected semantics. |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10098 | if (IsLambda && HasBlocksAttr) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10099 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10100 | Diag(Loc, diag::err_lambda_capture_block) |
| 10101 | << Var->getDeclName(); |
| 10102 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10103 | << Var->getDeclName(); |
| 10104 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10105 | return true; |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10106 | } |
| 10107 | |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10108 | if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { |
| 10109 | // No capture-default |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10110 | if (BuildAndDiagnose) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10111 | Diag(Loc, diag::err_lambda_impcap) << Var->getDeclName(); |
| 10112 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10113 | << Var->getDeclName(); |
| 10114 | Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(), |
| 10115 | diag::note_lambda_decl); |
| 10116 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10117 | return true; |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 10118 | } |
| 10119 | |
| 10120 | FunctionScopesIndex--; |
| 10121 | DC = ParentDC; |
| 10122 | Explicit = false; |
| 10123 | } while (!Var->getDeclContext()->Equals(DC)); |
| 10124 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10125 | // Walk back down the scope stack, computing the type of the capture at |
| 10126 | // each step, checking type-specific requirements, and adding captures if |
| 10127 | // requested. |
| 10128 | for (unsigned I = ++FunctionScopesIndex, N = FunctionScopes.size(); I != N; |
| 10129 | ++I) { |
| 10130 | CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 10131 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10132 | // Compute the type of the capture and of a reference to the capture within |
| 10133 | // this scope. |
| 10134 | if (isa<BlockScopeInfo>(CSI)) { |
| 10135 | Expr *CopyExpr = 0; |
| 10136 | bool ByRef = false; |
| 10137 | |
| 10138 | // Blocks are not allowed to capture arrays. |
| 10139 | if (CaptureType->isArrayType()) { |
| 10140 | if (BuildAndDiagnose) { |
| 10141 | Diag(Loc, diag::err_ref_array_type); |
| 10142 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10143 | << Var->getDeclName(); |
| 10144 | } |
| 10145 | return true; |
| 10146 | } |
| 10147 | |
John McCall | 100c649 | 2012-03-30 05:23:48 +0000 | [diff] [blame] | 10148 | // Forbid the block-capture of autoreleasing variables. |
| 10149 | if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { |
| 10150 | if (BuildAndDiagnose) { |
| 10151 | Diag(Loc, diag::err_arc_autoreleasing_capture) |
| 10152 | << /*block*/ 0; |
| 10153 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10154 | << Var->getDeclName(); |
| 10155 | } |
| 10156 | return true; |
| 10157 | } |
| 10158 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10159 | if (HasBlocksAttr || CaptureType->isReferenceType()) { |
| 10160 | // Block capture by reference does not change the capture or |
| 10161 | // declaration reference types. |
| 10162 | ByRef = true; |
| 10163 | } else { |
| 10164 | // Block capture by copy introduces 'const'. |
| 10165 | CaptureType = CaptureType.getNonReferenceType().withConst(); |
| 10166 | DeclRefType = CaptureType; |
| 10167 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 10168 | if (getLangOpts().CPlusPlus && BuildAndDiagnose) { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10169 | if (const RecordType *Record = DeclRefType->getAs<RecordType>()) { |
| 10170 | // The capture logic needs the destructor, so make sure we mark it. |
| 10171 | // Usually this is unnecessary because most local variables have |
| 10172 | // their destructors marked at declaration time, but parameters are |
| 10173 | // an exception because it's technically only the call site that |
| 10174 | // actually requires the destructor. |
| 10175 | if (isa<ParmVarDecl>(Var)) |
| 10176 | FinalizeVarWithDestructor(Var, Record); |
| 10177 | |
| 10178 | // According to the blocks spec, the capture of a variable from |
| 10179 | // the stack requires a const copy constructor. This is not true |
| 10180 | // of the copy/move done to move a __block variable to the heap. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 10181 | Expr *DeclRef = new (Context) DeclRefExpr(Var, false, |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10182 | DeclRefType.withConst(), |
| 10183 | VK_LValue, Loc); |
| 10184 | ExprResult Result |
| 10185 | = PerformCopyInitialization( |
| 10186 | InitializedEntity::InitializeBlock(Var->getLocation(), |
| 10187 | CaptureType, false), |
| 10188 | Loc, Owned(DeclRef)); |
| 10189 | |
| 10190 | // Build a full-expression copy expression if initialization |
| 10191 | // succeeded and used a non-trivial constructor. Recover from |
| 10192 | // errors by pretending that the copy isn't necessary. |
| 10193 | if (!Result.isInvalid() && |
| 10194 | !cast<CXXConstructExpr>(Result.get())->getConstructor() |
| 10195 | ->isTrivial()) { |
| 10196 | Result = MaybeCreateExprWithCleanups(Result); |
| 10197 | CopyExpr = Result.take(); |
| 10198 | } |
| 10199 | } |
| 10200 | } |
| 10201 | } |
| 10202 | |
| 10203 | // Actually capture the variable. |
| 10204 | if (BuildAndDiagnose) |
| 10205 | CSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, |
| 10206 | SourceLocation(), CaptureType, CopyExpr); |
| 10207 | Nested = true; |
| 10208 | continue; |
| 10209 | } |
Douglas Gregor | 6893284 | 2012-02-18 05:51:20 +0000 | [diff] [blame] | 10210 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10211 | LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); |
| 10212 | |
| 10213 | // Determine whether we are capturing by reference or by value. |
| 10214 | bool ByRef = false; |
| 10215 | if (I == N - 1 && Kind != TryCapture_Implicit) { |
| 10216 | ByRef = (Kind == TryCapture_ExplicitByRef); |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10217 | } else { |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10218 | ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); |
Eli Friedman | b942cb2 | 2012-02-03 22:47:37 +0000 | [diff] [blame] | 10219 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10220 | |
| 10221 | // Compute the type of the field that will capture this variable. |
| 10222 | if (ByRef) { |
| 10223 | // C++11 [expr.prim.lambda]p15: |
| 10224 | // An entity is captured by reference if it is implicitly or |
| 10225 | // explicitly captured but not captured by copy. It is |
| 10226 | // unspecified whether additional unnamed non-static data |
| 10227 | // members are declared in the closure type for entities |
| 10228 | // captured by reference. |
| 10229 | // |
| 10230 | // FIXME: It is not clear whether we want to build an lvalue reference |
| 10231 | // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears |
| 10232 | // to do the former, while EDG does the latter. Core issue 1249 will |
| 10233 | // clarify, but for now we follow GCC because it's a more permissive and |
| 10234 | // easily defensible position. |
| 10235 | CaptureType = Context.getLValueReferenceType(DeclRefType); |
| 10236 | } else { |
| 10237 | // C++11 [expr.prim.lambda]p14: |
| 10238 | // For each entity captured by copy, an unnamed non-static |
| 10239 | // data member is declared in the closure type. The |
| 10240 | // declaration order of these members is unspecified. The type |
| 10241 | // of such a data member is the type of the corresponding |
| 10242 | // captured entity if the entity is not a reference to an |
| 10243 | // object, or the referenced type otherwise. [Note: If the |
| 10244 | // captured entity is a reference to a function, the |
| 10245 | // corresponding data member is also a reference to a |
| 10246 | // function. - end note ] |
| 10247 | if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ |
| 10248 | if (!RefType->getPointeeType()->isFunctionType()) |
| 10249 | CaptureType = RefType->getPointeeType(); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10250 | } |
John McCall | 100c649 | 2012-03-30 05:23:48 +0000 | [diff] [blame] | 10251 | |
| 10252 | // Forbid the lambda copy-capture of autoreleasing variables. |
| 10253 | if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { |
| 10254 | if (BuildAndDiagnose) { |
| 10255 | Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; |
| 10256 | Diag(Var->getLocation(), diag::note_previous_decl) |
| 10257 | << Var->getDeclName(); |
| 10258 | } |
| 10259 | return true; |
| 10260 | } |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10261 | } |
| 10262 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10263 | // Capture this variable in the lambda. |
| 10264 | Expr *CopyExpr = 0; |
| 10265 | if (BuildAndDiagnose) { |
| 10266 | ExprResult Result = captureInLambda(*this, LSI, Var, CaptureType, |
| 10267 | DeclRefType, Loc); |
| 10268 | if (!Result.isInvalid()) |
| 10269 | CopyExpr = Result.take(); |
| 10270 | } |
| 10271 | |
| 10272 | // Compute the type of a reference to this captured variable. |
| 10273 | if (ByRef) |
| 10274 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10275 | else { |
| 10276 | // C++ [expr.prim.lambda]p5: |
| 10277 | // The closure type for a lambda-expression has a public inline |
| 10278 | // function call operator [...]. This function call operator is |
| 10279 | // declared const (9.3.1) if and only if the lambda-expression’s |
| 10280 | // parameter-declaration-clause is not followed by mutable. |
| 10281 | DeclRefType = CaptureType.getNonReferenceType(); |
| 10282 | if (!LSI->Mutable && !CaptureType->isReferenceType()) |
| 10283 | DeclRefType.addConst(); |
| 10284 | } |
| 10285 | |
| 10286 | // Add the capture. |
| 10287 | if (BuildAndDiagnose) |
| 10288 | CSI->addCapture(Var, /*IsBlock=*/false, ByRef, Nested, Loc, |
| 10289 | EllipsisLoc, CaptureType, CopyExpr); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10290 | Nested = true; |
| 10291 | } |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10292 | |
| 10293 | return false; |
| 10294 | } |
| 10295 | |
| 10296 | bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, |
| 10297 | TryCaptureKind Kind, SourceLocation EllipsisLoc) { |
| 10298 | QualType CaptureType; |
| 10299 | QualType DeclRefType; |
| 10300 | return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, |
| 10301 | /*BuildAndDiagnose=*/true, CaptureType, |
| 10302 | DeclRefType); |
| 10303 | } |
| 10304 | |
| 10305 | QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { |
| 10306 | QualType CaptureType; |
| 10307 | QualType DeclRefType; |
| 10308 | |
| 10309 | // Determine whether we can capture this variable. |
| 10310 | if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), |
| 10311 | /*BuildAndDiagnose=*/false, CaptureType, DeclRefType)) |
| 10312 | return QualType(); |
| 10313 | |
| 10314 | return DeclRefType; |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10315 | } |
| 10316 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10317 | static void MarkVarDeclODRUsed(Sema &SemaRef, VarDecl *Var, |
| 10318 | SourceLocation Loc) { |
| 10319 | // Keep track of used but undefined variables. |
Eli Friedman | 0cc5d40 | 2012-02-04 00:54:05 +0000 | [diff] [blame] | 10320 | // FIXME: We shouldn't suppress this warning for static data members. |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 10321 | if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly && |
Eli Friedman | 0cc5d40 | 2012-02-04 00:54:05 +0000 | [diff] [blame] | 10322 | Var->getLinkage() != ExternalLinkage && |
| 10323 | !(Var->isStaticDataMember() && Var->hasInit())) { |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10324 | SourceLocation &old = SemaRef.UndefinedInternals[Var->getCanonicalDecl()]; |
| 10325 | if (old.isInvalid()) old = Loc; |
| 10326 | } |
| 10327 | |
Douglas Gregor | 999713e | 2012-02-18 09:37:24 +0000 | [diff] [blame] | 10328 | SemaRef.tryCaptureVariable(Var, Loc); |
Eli Friedman | 3c0e80e | 2012-02-03 02:04:35 +0000 | [diff] [blame] | 10329 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10330 | Var->setUsed(true); |
| 10331 | } |
| 10332 | |
| 10333 | void Sema::UpdateMarkingForLValueToRValue(Expr *E) { |
| 10334 | // Per C++11 [basic.def.odr], a variable is odr-used "unless it is |
| 10335 | // an object that satisfies the requirements for appearing in a |
| 10336 | // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) |
| 10337 | // is immediately applied." This function handles the lvalue-to-rvalue |
| 10338 | // conversion part. |
| 10339 | MaybeODRUseExprs.erase(E->IgnoreParens()); |
| 10340 | } |
| 10341 | |
Eli Friedman | ac62601 | 2012-02-29 03:16:56 +0000 | [diff] [blame] | 10342 | ExprResult Sema::ActOnConstantExpression(ExprResult Res) { |
| 10343 | if (!Res.isUsable()) |
| 10344 | return Res; |
| 10345 | |
| 10346 | // If a constant-expression is a reference to a variable where we delay |
| 10347 | // deciding whether it is an odr-use, just assume we will apply the |
| 10348 | // lvalue-to-rvalue conversion. In the one case where this doesn't happen |
| 10349 | // (a non-type template argument), we have special handling anyway. |
| 10350 | UpdateMarkingForLValueToRValue(Res.get()); |
| 10351 | return Res; |
| 10352 | } |
| 10353 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10354 | void Sema::CleanupVarDeclMarking() { |
| 10355 | for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(), |
| 10356 | e = MaybeODRUseExprs.end(); |
| 10357 | i != e; ++i) { |
| 10358 | VarDecl *Var; |
| 10359 | SourceLocation Loc; |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 10360 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) { |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10361 | Var = cast<VarDecl>(DRE->getDecl()); |
| 10362 | Loc = DRE->getLocation(); |
| 10363 | } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) { |
| 10364 | Var = cast<VarDecl>(ME->getMemberDecl()); |
| 10365 | Loc = ME->getMemberLoc(); |
| 10366 | } else { |
| 10367 | llvm_unreachable("Unexpcted expression"); |
| 10368 | } |
| 10369 | |
| 10370 | MarkVarDeclODRUsed(*this, Var, Loc); |
| 10371 | } |
| 10372 | |
| 10373 | MaybeODRUseExprs.clear(); |
| 10374 | } |
| 10375 | |
| 10376 | // Mark a VarDecl referenced, and perform the necessary handling to compute |
| 10377 | // odr-uses. |
| 10378 | static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, |
| 10379 | VarDecl *Var, Expr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10380 | Var->setReferenced(); |
| 10381 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10382 | if (!IsPotentiallyEvaluatedContext(SemaRef)) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10383 | return; |
| 10384 | |
| 10385 | // Implicit instantiation of static data members of class templates. |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 10386 | if (Var->isStaticDataMember() && Var->getInstantiatedFromStaticDataMember()) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10387 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 10388 | assert(MSInfo && "Missing member specialization information?"); |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 10389 | bool AlreadyInstantiated = !MSInfo->getPointOfInstantiation().isInvalid(); |
| 10390 | if (MSInfo->getTemplateSpecializationKind() == TSK_ImplicitInstantiation && |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 10391 | (!AlreadyInstantiated || |
| 10392 | Var->isUsableInConstantExpressions(SemaRef.Context))) { |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 10393 | if (!AlreadyInstantiated) { |
| 10394 | // This is a modification of an existing AST node. Notify listeners. |
| 10395 | if (ASTMutationListener *L = SemaRef.getASTMutationListener()) |
| 10396 | L->StaticDataMemberInstantiated(Var); |
| 10397 | MSInfo->setPointOfInstantiation(Loc); |
| 10398 | } |
| 10399 | SourceLocation PointOfInstantiation = MSInfo->getPointOfInstantiation(); |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 10400 | if (Var->isUsableInConstantExpressions(SemaRef.Context)) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10401 | // Do not defer instantiations of variables which could be used in a |
| 10402 | // constant expression. |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 10403 | SemaRef.InstantiateStaticDataMemberDefinition(PointOfInstantiation,Var); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10404 | else |
Richard Smith | 37ce010 | 2012-02-15 02:42:50 +0000 | [diff] [blame] | 10405 | SemaRef.PendingInstantiations.push_back( |
| 10406 | std::make_pair(Var, PointOfInstantiation)); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10407 | } |
| 10408 | } |
| 10409 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10410 | // Per C++11 [basic.def.odr], a variable is odr-used "unless it is |
| 10411 | // an object that satisfies the requirements for appearing in a |
| 10412 | // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) |
| 10413 | // is immediately applied." We check the first part here, and |
| 10414 | // Sema::UpdateMarkingForLValueToRValue deals with the second part. |
| 10415 | // Note that we use the C++11 definition everywhere because nothing in |
Richard Smith | 1658133 | 2012-03-02 04:14:40 +0000 | [diff] [blame] | 10416 | // C++03 depends on whether we get the C++03 version correct. This does not |
| 10417 | // apply to references, since they are not objects. |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10418 | const VarDecl *DefVD; |
Richard Smith | 1658133 | 2012-03-02 04:14:40 +0000 | [diff] [blame] | 10419 | if (E && !isa<ParmVarDecl>(Var) && !Var->getType()->isReferenceType() && |
Daniel Dunbar | 3d13c5a | 2012-03-09 01:51:51 +0000 | [diff] [blame] | 10420 | Var->isUsableInConstantExpressions(SemaRef.Context) && |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10421 | Var->getAnyInitializer(DefVD) && DefVD->checkInitIsICE()) |
| 10422 | SemaRef.MaybeODRUseExprs.insert(E); |
| 10423 | else |
| 10424 | MarkVarDeclODRUsed(SemaRef, Var, Loc); |
| 10425 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10426 | |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10427 | /// \brief Mark a variable referenced, and check whether it is odr-used |
| 10428 | /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be |
| 10429 | /// used directly for normal expressions referring to VarDecl. |
| 10430 | void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { |
| 10431 | DoMarkVarDeclReferenced(*this, Loc, Var, 0); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10432 | } |
| 10433 | |
| 10434 | static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, |
| 10435 | Decl *D, Expr *E) { |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10436 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 10437 | DoMarkVarDeclReferenced(SemaRef, Loc, Var, E); |
| 10438 | return; |
| 10439 | } |
| 10440 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10441 | SemaRef.MarkAnyDeclReferenced(Loc, D); |
Douglas Gregor | f6e2e02 | 2012-02-16 01:06:16 +0000 | [diff] [blame] | 10442 | } |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10443 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10444 | /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr. |
| 10445 | void Sema::MarkDeclRefReferenced(DeclRefExpr *E) { |
| 10446 | MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E); |
| 10447 | } |
| 10448 | |
| 10449 | /// \brief Perform reference-marking and odr-use handling for a MemberExpr. |
| 10450 | void Sema::MarkMemberReferenced(MemberExpr *E) { |
| 10451 | MarkExprReferenced(*this, E->getMemberLoc(), E->getMemberDecl(), E); |
| 10452 | } |
| 10453 | |
Douglas Gregor | 73d9092 | 2012-02-10 09:26:04 +0000 | [diff] [blame] | 10454 | /// \brief Perform marking for a reference to an arbitrary declaration. It |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10455 | /// marks the declaration referenced, and performs odr-use checking for functions |
| 10456 | /// and variables. This method should not be used when building an normal |
| 10457 | /// expression which refers to a variable. |
| 10458 | void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D) { |
| 10459 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 10460 | MarkVariableReferenced(Loc, VD); |
| 10461 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
| 10462 | MarkFunctionReferenced(Loc, FD); |
| 10463 | else |
| 10464 | D->setReferenced(); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 10465 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10466 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10467 | namespace { |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10468 | // Mark all of the declarations referenced |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10469 | // FIXME: Not fully implemented yet! We need to have a better understanding |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10470 | // of when we're entering |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10471 | class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { |
| 10472 | Sema &S; |
| 10473 | SourceLocation Loc; |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10474 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10475 | public: |
| 10476 | typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10477 | |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10478 | MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10479 | |
| 10480 | bool TraverseTemplateArgument(const TemplateArgument &Arg); |
| 10481 | bool TraverseRecordType(RecordType *T); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10482 | }; |
| 10483 | } |
| 10484 | |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10485 | bool MarkReferencedDecls::TraverseTemplateArgument( |
| 10486 | const TemplateArgument &Arg) { |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10487 | if (Arg.getKind() == TemplateArgument::Declaration) { |
Douglas Gregor | d2008e2 | 2012-04-06 22:40:38 +0000 | [diff] [blame] | 10488 | if (Decl *D = Arg.getAsDecl()) |
| 10489 | S.MarkAnyDeclReferenced(Loc, D); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10490 | } |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10491 | |
| 10492 | return Inherited::TraverseTemplateArgument(Arg); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10493 | } |
| 10494 | |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10495 | bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10496 | if (ClassTemplateSpecializationDecl *Spec |
| 10497 | = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { |
| 10498 | const TemplateArgumentList &Args = Spec->getTemplateArgs(); |
Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 10499 | return TraverseTemplateArguments(Args.data(), Args.size()); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10500 | } |
| 10501 | |
Chandler Carruth | e3e210c | 2010-06-10 10:31:57 +0000 | [diff] [blame] | 10502 | return true; |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10503 | } |
| 10504 | |
| 10505 | void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { |
| 10506 | MarkReferencedDecls Marker(*this, Loc); |
Chandler Carruth | dfc35e3 | 2010-06-09 08:17:30 +0000 | [diff] [blame] | 10507 | Marker.TraverseType(Context.getCanonicalType(T)); |
Douglas Gregor | b4eeaff | 2010-05-07 23:12:07 +0000 | [diff] [blame] | 10508 | } |
| 10509 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10510 | namespace { |
| 10511 | /// \brief Helper class that marks all of the declarations referenced by |
| 10512 | /// potentially-evaluated subexpressions as "referenced". |
| 10513 | class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { |
| 10514 | Sema &S; |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 10515 | bool SkipLocalVariables; |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10516 | |
| 10517 | public: |
| 10518 | typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; |
| 10519 | |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 10520 | EvaluatedExprMarker(Sema &S, bool SkipLocalVariables) |
| 10521 | : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10522 | |
| 10523 | void VisitDeclRefExpr(DeclRefExpr *E) { |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 10524 | // If we were asked not to visit local variables, don't. |
| 10525 | if (SkipLocalVariables) { |
| 10526 | if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) |
| 10527 | if (VD->hasLocalStorage()) |
| 10528 | return; |
| 10529 | } |
| 10530 | |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10531 | S.MarkDeclRefReferenced(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10532 | } |
| 10533 | |
| 10534 | void VisitMemberExpr(MemberExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10535 | S.MarkMemberReferenced(E); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 10536 | Inherited::VisitMemberExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10537 | } |
| 10538 | |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 10539 | void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10540 | S.MarkFunctionReferenced(E->getLocStart(), |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 10541 | const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); |
| 10542 | Visit(E->getSubExpr()); |
| 10543 | } |
| 10544 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10545 | void VisitCXXNewExpr(CXXNewExpr *E) { |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10546 | if (E->getOperatorNew()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10547 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew()); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10548 | if (E->getOperatorDelete()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10549 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 10550 | Inherited::VisitCXXNewExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10551 | } |
Sebastian Redl | 2aed8b8 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 10552 | |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10553 | void VisitCXXDeleteExpr(CXXDeleteExpr *E) { |
| 10554 | if (E->getOperatorDelete()) |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10555 | S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 10556 | QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); |
| 10557 | if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { |
| 10558 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10559 | S.MarkFunctionReferenced(E->getLocStart(), |
Douglas Gregor | 5833b0b | 2010-09-14 22:55:20 +0000 | [diff] [blame] | 10560 | S.LookupDestructor(Record)); |
| 10561 | } |
| 10562 | |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 10563 | Inherited::VisitCXXDeleteExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10564 | } |
| 10565 | |
| 10566 | void VisitCXXConstructExpr(CXXConstructExpr *E) { |
Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 10567 | S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor()); |
Douglas Gregor | 4fcf5b2 | 2010-09-11 23:32:50 +0000 | [diff] [blame] | 10568 | Inherited::VisitCXXConstructExpr(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10569 | } |
| 10570 | |
Douglas Gregor | 102ff97 | 2010-10-19 17:17:35 +0000 | [diff] [blame] | 10571 | void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { |
| 10572 | Visit(E->getExpr()); |
| 10573 | } |
Eli Friedman | d2cce13 | 2012-02-02 23:15:15 +0000 | [diff] [blame] | 10574 | |
| 10575 | void VisitImplicitCastExpr(ImplicitCastExpr *E) { |
| 10576 | Inherited::VisitImplicitCastExpr(E); |
| 10577 | |
| 10578 | if (E->getCastKind() == CK_LValueToRValue) |
| 10579 | S.UpdateMarkingForLValueToRValue(E->getSubExpr()); |
| 10580 | } |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10581 | }; |
| 10582 | } |
| 10583 | |
| 10584 | /// \brief Mark any declarations that appear within this expression or any |
| 10585 | /// potentially-evaluated subexpressions as "referenced". |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 10586 | /// |
| 10587 | /// \param SkipLocalVariables If true, don't mark local variables as |
| 10588 | /// 'referenced'. |
| 10589 | void Sema::MarkDeclarationsReferencedInExpr(Expr *E, |
| 10590 | bool SkipLocalVariables) { |
| 10591 | EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E); |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10592 | } |
| 10593 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10594 | /// \brief Emit a diagnostic that describes an effect on the run-time behavior |
| 10595 | /// of the program being compiled. |
| 10596 | /// |
| 10597 | /// This routine emits the given diagnostic when the code currently being |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10598 | /// type-checked is "potentially evaluated", meaning that there is a |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10599 | /// possibility that the code will actually be executable. Code in sizeof() |
| 10600 | /// expressions, code used only during overload resolution, etc., are not |
| 10601 | /// potentially evaluated. This routine will suppress such diagnostics or, |
| 10602 | /// in the absolutely nutty case of potentially potentially evaluated |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10603 | /// expressions (C++ typeid), queue the diagnostic to potentially emit it |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10604 | /// later. |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10605 | /// |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10606 | /// This routine should be used for all diagnostics that describe the run-time |
| 10607 | /// behavior of a program, such as passing a non-POD value through an ellipsis. |
| 10608 | /// Failure to do so will likely result in spurious diagnostics or failures |
| 10609 | /// during overload resolution or within sizeof/alignof/typeof/typeid. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10610 | bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10611 | const PartialDiagnostic &PD) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 10612 | switch (ExprEvalContexts.back().Context) { |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10613 | case Unevaluated: |
| 10614 | // The argument will never be evaluated, so don't complain. |
| 10615 | break; |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10616 | |
Richard Smith | f6702a3 | 2011-12-20 02:08:33 +0000 | [diff] [blame] | 10617 | case ConstantEvaluated: |
| 10618 | // Relevant diagnostics should be produced by constant evaluation. |
| 10619 | break; |
| 10620 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10621 | case PotentiallyEvaluated: |
Douglas Gregor | be0f7bd | 2010-09-11 20:24:53 +0000 | [diff] [blame] | 10622 | case PotentiallyEvaluatedIfUsed: |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10623 | if (Statement && getCurFunctionOrMethodDecl()) { |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 10624 | FunctionScopes.back()->PossiblyUnreachableDiags. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10625 | push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 10626 | } |
| 10627 | else |
| 10628 | Diag(Loc, PD); |
| 10629 | |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10630 | return true; |
Douglas Gregor | 1c7c3fb | 2009-12-22 01:01:55 +0000 | [diff] [blame] | 10631 | } |
| 10632 | |
| 10633 | return false; |
| 10634 | } |
| 10635 | |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10636 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 10637 | CallExpr *CE, FunctionDecl *FD) { |
| 10638 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 10639 | return false; |
| 10640 | |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 10641 | // If we're inside a decltype's expression, don't check for a valid return |
| 10642 | // type or construct temporaries until we know whether this is the last call. |
| 10643 | if (ExprEvalContexts.back().IsDecltype) { |
| 10644 | ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); |
| 10645 | return false; |
| 10646 | } |
| 10647 | |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10648 | PartialDiagnostic Note = |
| 10649 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 10650 | << FD->getDeclName() : PDiag(); |
| 10651 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10652 | |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10653 | if (RequireCompleteType(Loc, ReturnType, |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10654 | FD ? |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10655 | PDiag(diag::err_call_function_incomplete_return) |
| 10656 | << CE->getSourceRange() << FD->getDeclName() : |
Kovarththanan Rajaratnam | 1935754 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 10657 | PDiag(diag::err_call_incomplete_return) |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 10658 | << CE->getSourceRange(), |
| 10659 | std::make_pair(NoteLoc, Note))) |
| 10660 | return true; |
| 10661 | |
| 10662 | return false; |
| 10663 | } |
| 10664 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10665 | // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10666 | // will prevent this condition from triggering, which is what we want. |
| 10667 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 10668 | SourceLocation Loc; |
| 10669 | |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 10670 | unsigned diagnostic = diag::warn_condition_is_assignment; |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10671 | bool IsOrAssign = false; |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 10672 | |
Chandler Carruth | b33c19f | 2011-08-16 22:30:10 +0000 | [diff] [blame] | 10673 | if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10674 | if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10675 | return; |
| 10676 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10677 | IsOrAssign = Op->getOpcode() == BO_OrAssign; |
| 10678 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 10679 | // Greylist some idioms by putting them into a warning subcategory. |
| 10680 | if (ObjCMessageExpr *ME |
| 10681 | = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { |
| 10682 | Selector Sel = ME->getSelector(); |
| 10683 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 10684 | // self = [<foo> init...] |
Douglas Gregor | c737acb | 2011-09-27 16:10:05 +0000 | [diff] [blame] | 10685 | if (isSelfExpr(Op->getLHS()) && Sel.getNameForSlot(0).startswith("init")) |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 10686 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 10687 | |
| 10688 | // <foo> = [<bar> nextObject] |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 10689 | else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 10690 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 10691 | } |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 10692 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10693 | Loc = Op->getOperatorLoc(); |
Chandler Carruth | b33c19f | 2011-08-16 22:30:10 +0000 | [diff] [blame] | 10694 | } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10695 | if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10696 | return; |
| 10697 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10698 | IsOrAssign = Op->getOperator() == OO_PipeEqual; |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10699 | Loc = Op->getOperatorLoc(); |
| 10700 | } else { |
| 10701 | // Not an assignment. |
| 10702 | return; |
| 10703 | } |
| 10704 | |
Douglas Gregor | 55b3884 | 2010-04-14 16:09:52 +0000 | [diff] [blame] | 10705 | Diag(Loc, diagnostic) << E->getSourceRange(); |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10706 | |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 10707 | SourceLocation Open = E->getLocStart(); |
Argyrios Kyrtzidis | abdd3b3 | 2011-04-25 23:01:29 +0000 | [diff] [blame] | 10708 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
| 10709 | Diag(Loc, diag::note_condition_assign_silence) |
| 10710 | << FixItHint::CreateInsertion(Open, "(") |
| 10711 | << FixItHint::CreateInsertion(Close, ")"); |
| 10712 | |
Douglas Gregor | 92c3a04 | 2011-01-19 16:50:08 +0000 | [diff] [blame] | 10713 | if (IsOrAssign) |
| 10714 | Diag(Loc, diag::note_condition_or_assign_to_comparison) |
| 10715 | << FixItHint::CreateReplacement(Loc, "!="); |
| 10716 | else |
| 10717 | Diag(Loc, diag::note_condition_assign_to_comparison) |
| 10718 | << FixItHint::CreateReplacement(Loc, "=="); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10719 | } |
| 10720 | |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 10721 | /// \brief Redundant parentheses over an equality comparison can indicate |
| 10722 | /// that the user intended an assignment used as condition. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10723 | void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 10724 | // Don't warn if the parens came from a macro. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10725 | SourceLocation parenLoc = ParenE->getLocStart(); |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 10726 | if (parenLoc.isInvalid() || parenLoc.isMacroID()) |
| 10727 | return; |
Argyrios Kyrtzidis | 170a6a2 | 2011-03-28 23:52:04 +0000 | [diff] [blame] | 10728 | // Don't warn for dependent expressions. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10729 | if (ParenE->isTypeDependent()) |
Argyrios Kyrtzidis | 170a6a2 | 2011-03-28 23:52:04 +0000 | [diff] [blame] | 10730 | return; |
Argyrios Kyrtzidis | cf1620a | 2011-02-01 22:23:56 +0000 | [diff] [blame] | 10731 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10732 | Expr *E = ParenE->IgnoreParens(); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 10733 | |
| 10734 | if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) |
Argyrios Kyrtzidis | 70f2330 | 2011-02-01 19:32:59 +0000 | [diff] [blame] | 10735 | if (opE->getOpcode() == BO_EQ && |
| 10736 | opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) |
| 10737 | == Expr::MLV_Valid) { |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 10738 | SourceLocation Loc = opE->getOperatorLoc(); |
Ted Kremenek | 006ae38 | 2011-02-01 22:36:09 +0000 | [diff] [blame] | 10739 | |
Ted Kremenek | f7275cd | 2011-02-02 02:20:30 +0000 | [diff] [blame] | 10740 | Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 10741 | SourceRange ParenERange = ParenE->getSourceRange(); |
Ted Kremenek | f7275cd | 2011-02-02 02:20:30 +0000 | [diff] [blame] | 10742 | Diag(Loc, diag::note_equality_comparison_silence) |
Daniel Dunbar | 96a0014 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 10743 | << FixItHint::CreateRemoval(ParenERange.getBegin()) |
| 10744 | << FixItHint::CreateRemoval(ParenERange.getEnd()); |
Argyrios Kyrtzidis | abdd3b3 | 2011-04-25 23:01:29 +0000 | [diff] [blame] | 10745 | Diag(Loc, diag::note_equality_comparison_to_assign) |
| 10746 | << FixItHint::CreateReplacement(Loc, "="); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 10747 | } |
| 10748 | } |
| 10749 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 10750 | ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10751 | DiagnoseAssignmentAsCondition(E); |
Argyrios Kyrtzidis | 0e2dc3a | 2011-02-01 18:24:22 +0000 | [diff] [blame] | 10752 | if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) |
| 10753 | DiagnoseEqualityWithExtraParens(parenE); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10754 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 10755 | ExprResult result = CheckPlaceholderExpr(E); |
| 10756 | if (result.isInvalid()) return ExprError(); |
| 10757 | E = result.take(); |
Argyrios Kyrtzidis | 11ab790 | 2010-11-01 18:49:26 +0000 | [diff] [blame] | 10758 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 10759 | if (!E->isTypeDependent()) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 10760 | if (getLangOpts().CPlusPlus) |
John McCall | f6a1648 | 2010-12-04 03:47:34 +0000 | [diff] [blame] | 10761 | return CheckCXXBooleanCondition(E); // C++ 6.4p4 |
| 10762 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 10763 | ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); |
| 10764 | if (ERes.isInvalid()) |
| 10765 | return ExprError(); |
| 10766 | E = ERes.take(); |
John McCall | abc56c7 | 2010-12-04 06:09:13 +0000 | [diff] [blame] | 10767 | |
| 10768 | QualType T = E->getType(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 10769 | if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 10770 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 10771 | << T << E->getSourceRange(); |
| 10772 | return ExprError(); |
| 10773 | } |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10774 | } |
| 10775 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 10776 | return Owned(E); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 10777 | } |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 10778 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 10779 | ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10780 | Expr *SubExpr) { |
| 10781 | if (!SubExpr) |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 10782 | return ExprError(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 10783 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 10784 | return CheckBooleanCondition(SubExpr, Loc); |
Douglas Gregor | 586596f | 2010-05-06 17:25:47 +0000 | [diff] [blame] | 10785 | } |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 10786 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10787 | namespace { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10788 | /// A visitor for rebuilding a call to an __unknown_any expression |
| 10789 | /// to have an appropriate type. |
| 10790 | struct RebuildUnknownAnyFunction |
| 10791 | : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { |
| 10792 | |
| 10793 | Sema &S; |
| 10794 | |
| 10795 | RebuildUnknownAnyFunction(Sema &S) : S(S) {} |
| 10796 | |
| 10797 | ExprResult VisitStmt(Stmt *S) { |
| 10798 | llvm_unreachable("unexpected statement!"); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10799 | } |
| 10800 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10801 | ExprResult VisitExpr(Expr *E) { |
| 10802 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) |
| 10803 | << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10804 | return ExprError(); |
| 10805 | } |
| 10806 | |
| 10807 | /// Rebuild an expression which simply semantically wraps another |
| 10808 | /// expression which it shares the type and value kind of. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10809 | template <class T> ExprResult rebuildSugarExpr(T *E) { |
| 10810 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 10811 | if (SubResult.isInvalid()) return ExprError(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10812 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10813 | Expr *SubExpr = SubResult.take(); |
| 10814 | E->setSubExpr(SubExpr); |
| 10815 | E->setType(SubExpr->getType()); |
| 10816 | E->setValueKind(SubExpr->getValueKind()); |
| 10817 | assert(E->getObjectKind() == OK_Ordinary); |
| 10818 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10819 | } |
| 10820 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10821 | ExprResult VisitParenExpr(ParenExpr *E) { |
| 10822 | return rebuildSugarExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10823 | } |
| 10824 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10825 | ExprResult VisitUnaryExtension(UnaryOperator *E) { |
| 10826 | return rebuildSugarExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10827 | } |
| 10828 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10829 | ExprResult VisitUnaryAddrOf(UnaryOperator *E) { |
| 10830 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 10831 | if (SubResult.isInvalid()) return ExprError(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10832 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10833 | Expr *SubExpr = SubResult.take(); |
| 10834 | E->setSubExpr(SubExpr); |
| 10835 | E->setType(S.Context.getPointerType(SubExpr->getType())); |
| 10836 | assert(E->getValueKind() == VK_RValue); |
| 10837 | assert(E->getObjectKind() == OK_Ordinary); |
| 10838 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10839 | } |
| 10840 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10841 | ExprResult resolveDecl(Expr *E, ValueDecl *VD) { |
| 10842 | if (!isa<FunctionDecl>(VD)) return VisitExpr(E); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10843 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10844 | E->setType(VD->getType()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10845 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10846 | assert(E->getValueKind() == VK_RValue); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 10847 | if (S.getLangOpts().CPlusPlus && |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10848 | !(isa<CXXMethodDecl>(VD) && |
| 10849 | cast<CXXMethodDecl>(VD)->isInstance())) |
| 10850 | E->setValueKind(VK_LValue); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10851 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10852 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10853 | } |
| 10854 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10855 | ExprResult VisitMemberExpr(MemberExpr *E) { |
| 10856 | return resolveDecl(E, E->getMemberDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10857 | } |
| 10858 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10859 | ExprResult VisitDeclRefExpr(DeclRefExpr *E) { |
| 10860 | return resolveDecl(E, E->getDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10861 | } |
| 10862 | }; |
| 10863 | } |
| 10864 | |
| 10865 | /// Given a function expression of unknown-any type, try to rebuild it |
| 10866 | /// to have a function type. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10867 | static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { |
| 10868 | ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); |
| 10869 | if (Result.isInvalid()) return ExprError(); |
| 10870 | return S.DefaultFunctionArrayConversion(Result.take()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10871 | } |
| 10872 | |
| 10873 | namespace { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10874 | /// A visitor for rebuilding an expression of type __unknown_anytype |
| 10875 | /// into one which resolves the type directly on the referring |
| 10876 | /// expression. Strict preservation of the original source |
| 10877 | /// structure is not a goal. |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10878 | struct RebuildUnknownAnyExpr |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10879 | : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10880 | |
| 10881 | Sema &S; |
| 10882 | |
| 10883 | /// The current destination type. |
| 10884 | QualType DestType; |
| 10885 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10886 | RebuildUnknownAnyExpr(Sema &S, QualType CastType) |
| 10887 | : S(S), DestType(CastType) {} |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10888 | |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10889 | ExprResult VisitStmt(Stmt *S) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10890 | llvm_unreachable("unexpected statement!"); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10891 | } |
| 10892 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10893 | ExprResult VisitExpr(Expr *E) { |
| 10894 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) |
| 10895 | << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10896 | return ExprError(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10897 | } |
| 10898 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10899 | ExprResult VisitCallExpr(CallExpr *E); |
| 10900 | ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10901 | |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10902 | /// Rebuild an expression which simply semantically wraps another |
| 10903 | /// expression which it shares the type and value kind of. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10904 | template <class T> ExprResult rebuildSugarExpr(T *E) { |
| 10905 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 10906 | if (SubResult.isInvalid()) return ExprError(); |
| 10907 | Expr *SubExpr = SubResult.take(); |
| 10908 | E->setSubExpr(SubExpr); |
| 10909 | E->setType(SubExpr->getType()); |
| 10910 | E->setValueKind(SubExpr->getValueKind()); |
| 10911 | assert(E->getObjectKind() == OK_Ordinary); |
| 10912 | return E; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10913 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10914 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10915 | ExprResult VisitParenExpr(ParenExpr *E) { |
| 10916 | return rebuildSugarExpr(E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10917 | } |
| 10918 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10919 | ExprResult VisitUnaryExtension(UnaryOperator *E) { |
| 10920 | return rebuildSugarExpr(E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10921 | } |
| 10922 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10923 | ExprResult VisitUnaryAddrOf(UnaryOperator *E) { |
| 10924 | const PointerType *Ptr = DestType->getAs<PointerType>(); |
| 10925 | if (!Ptr) { |
| 10926 | S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) |
| 10927 | << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10928 | return ExprError(); |
| 10929 | } |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10930 | assert(E->getValueKind() == VK_RValue); |
| 10931 | assert(E->getObjectKind() == OK_Ordinary); |
| 10932 | E->setType(DestType); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10933 | |
| 10934 | // 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] | 10935 | DestType = Ptr->getPointeeType(); |
| 10936 | ExprResult SubResult = Visit(E->getSubExpr()); |
| 10937 | if (SubResult.isInvalid()) return ExprError(); |
| 10938 | E->setSubExpr(SubResult.take()); |
| 10939 | return E; |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10940 | } |
| 10941 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10942 | ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10943 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10944 | ExprResult resolveDecl(Expr *E, ValueDecl *VD); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10945 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10946 | ExprResult VisitMemberExpr(MemberExpr *E) { |
| 10947 | return resolveDecl(E, E->getMemberDecl()); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 10948 | } |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 10949 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10950 | ExprResult VisitDeclRefExpr(DeclRefExpr *E) { |
| 10951 | return resolveDecl(E, E->getDecl()); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 10952 | } |
| 10953 | }; |
| 10954 | } |
| 10955 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10956 | /// Rebuilds a call expression which yielded __unknown_anytype. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10957 | ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { |
| 10958 | Expr *CalleeExpr = E->getCallee(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10959 | |
| 10960 | enum FnKind { |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 10961 | FK_MemberFunction, |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10962 | FK_FunctionPointer, |
| 10963 | FK_BlockPointer |
| 10964 | }; |
| 10965 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10966 | FnKind Kind; |
| 10967 | QualType CalleeType = CalleeExpr->getType(); |
| 10968 | if (CalleeType == S.Context.BoundMemberTy) { |
| 10969 | assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); |
| 10970 | Kind = FK_MemberFunction; |
| 10971 | CalleeType = Expr::findBoundMemberType(CalleeExpr); |
| 10972 | } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { |
| 10973 | CalleeType = Ptr->getPointeeType(); |
| 10974 | Kind = FK_FunctionPointer; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10975 | } else { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10976 | CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); |
| 10977 | Kind = FK_BlockPointer; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10978 | } |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10979 | const FunctionType *FnType = CalleeType->castAs<FunctionType>(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10980 | |
| 10981 | // Verify that this is a legal result type of a function. |
| 10982 | if (DestType->isArrayType() || DestType->isFunctionType()) { |
| 10983 | unsigned diagID = diag::err_func_returning_array_function; |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10984 | if (Kind == FK_BlockPointer) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10985 | diagID = diag::err_block_returning_array_function; |
| 10986 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10987 | S.Diag(E->getExprLoc(), diagID) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10988 | << DestType->isFunctionType() << DestType; |
| 10989 | return ExprError(); |
| 10990 | } |
| 10991 | |
| 10992 | // Otherwise, go ahead and set DestType as the call's result. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10993 | E->setType(DestType.getNonLValueExprType(S.Context)); |
| 10994 | E->setValueKind(Expr::getValueKindForType(DestType)); |
| 10995 | assert(E->getObjectKind() == OK_Ordinary); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10996 | |
| 10997 | // Rebuild the function type, replacing the result type with DestType. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 10998 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType)) |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 10999 | DestType = S.Context.getFunctionType(DestType, |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11000 | Proto->arg_type_begin(), |
| 11001 | Proto->getNumArgs(), |
| 11002 | Proto->getExtProtoInfo()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11003 | else |
| 11004 | DestType = S.Context.getFunctionNoProtoType(DestType, |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11005 | FnType->getExtInfo()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11006 | |
| 11007 | // Rebuild the appropriate pointer-to-function type. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11008 | switch (Kind) { |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 11009 | case FK_MemberFunction: |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11010 | // Nothing to do. |
| 11011 | break; |
| 11012 | |
| 11013 | case FK_FunctionPointer: |
| 11014 | DestType = S.Context.getPointerType(DestType); |
| 11015 | break; |
| 11016 | |
| 11017 | case FK_BlockPointer: |
| 11018 | DestType = S.Context.getBlockPointerType(DestType); |
| 11019 | break; |
| 11020 | } |
| 11021 | |
| 11022 | // Finally, we can recurse. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11023 | ExprResult CalleeResult = Visit(CalleeExpr); |
| 11024 | if (!CalleeResult.isUsable()) return ExprError(); |
| 11025 | E->setCallee(CalleeResult.take()); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11026 | |
| 11027 | // Bind a temporary if necessary. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11028 | return S.MaybeBindToTemporary(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11029 | } |
| 11030 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11031 | ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11032 | // Verify that this is a legal result type of a call. |
| 11033 | if (DestType->isArrayType() || DestType->isFunctionType()) { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11034 | S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11035 | << DestType->isFunctionType() << DestType; |
| 11036 | return ExprError(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11037 | } |
| 11038 | |
John McCall | 48218c6 | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 11039 | // Rewrite the method result type if available. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11040 | if (ObjCMethodDecl *Method = E->getMethodDecl()) { |
| 11041 | assert(Method->getResultType() == S.Context.UnknownAnyTy); |
| 11042 | Method->setResultType(DestType); |
John McCall | 48218c6 | 2011-07-13 17:56:40 +0000 | [diff] [blame] | 11043 | } |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11044 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11045 | // Change the type of the message. |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11046 | E->setType(DestType.getNonReferenceType()); |
| 11047 | E->setValueKind(Expr::getValueKindForType(DestType)); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11048 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11049 | return S.MaybeBindToTemporary(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11050 | } |
| 11051 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11052 | ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11053 | // 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] | 11054 | if (E->getCastKind() == CK_FunctionToPointerDecay) { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11055 | assert(E->getValueKind() == VK_RValue); |
| 11056 | assert(E->getObjectKind() == OK_Ordinary); |
| 11057 | |
| 11058 | E->setType(DestType); |
| 11059 | |
| 11060 | // Rebuild the sub-expression as the pointee (function) type. |
| 11061 | DestType = DestType->castAs<PointerType>()->getPointeeType(); |
| 11062 | |
| 11063 | ExprResult Result = Visit(E->getSubExpr()); |
| 11064 | if (!Result.isUsable()) return ExprError(); |
| 11065 | |
| 11066 | E->setSubExpr(Result.take()); |
| 11067 | return S.Owned(E); |
Sean Callanan | ba66c6c | 2012-03-06 23:12:57 +0000 | [diff] [blame] | 11068 | } else if (E->getCastKind() == CK_LValueToRValue) { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11069 | assert(E->getValueKind() == VK_RValue); |
| 11070 | assert(E->getObjectKind() == OK_Ordinary); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11071 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11072 | assert(isa<BlockPointerType>(E->getType())); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11073 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11074 | E->setType(DestType); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11075 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11076 | // The sub-expression has to be a lvalue reference, so rebuild it as such. |
| 11077 | DestType = S.Context.getLValueReferenceType(DestType); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11078 | |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11079 | ExprResult Result = Visit(E->getSubExpr()); |
| 11080 | if (!Result.isUsable()) return ExprError(); |
| 11081 | |
| 11082 | E->setSubExpr(Result.take()); |
| 11083 | return S.Owned(E); |
Sean Callanan | ba66c6c | 2012-03-06 23:12:57 +0000 | [diff] [blame] | 11084 | } else { |
Sean Callanan | ce9c831 | 2012-03-06 21:34:12 +0000 | [diff] [blame] | 11085 | llvm_unreachable("Unhandled cast type!"); |
| 11086 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11087 | } |
| 11088 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11089 | ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { |
| 11090 | ExprValueKind ValueKind = VK_LValue; |
| 11091 | QualType Type = DestType; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11092 | |
| 11093 | // We know how to make this work for certain kinds of decls: |
| 11094 | |
| 11095 | // - functions |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11096 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { |
| 11097 | if (const PointerType *Ptr = Type->getAs<PointerType>()) { |
| 11098 | DestType = Ptr->getPointeeType(); |
| 11099 | ExprResult Result = resolveDecl(E, VD); |
| 11100 | if (Result.isInvalid()) return ExprError(); |
| 11101 | return S.ImpCastExprToType(Result.take(), Type, |
John McCall | a19950e | 2011-08-10 04:12:23 +0000 | [diff] [blame] | 11102 | CK_FunctionToPointerDecay, VK_RValue); |
| 11103 | } |
| 11104 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11105 | if (!Type->isFunctionType()) { |
| 11106 | S.Diag(E->getExprLoc(), diag::err_unknown_any_function) |
| 11107 | << VD << E->getSourceRange(); |
John McCall | a19950e | 2011-08-10 04:12:23 +0000 | [diff] [blame] | 11108 | return ExprError(); |
| 11109 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11110 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11111 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) |
| 11112 | if (MD->isInstance()) { |
| 11113 | ValueKind = VK_RValue; |
| 11114 | Type = S.Context.BoundMemberTy; |
John McCall | f530751 | 2011-04-27 00:36:17 +0000 | [diff] [blame] | 11115 | } |
| 11116 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11117 | // Function references aren't l-values in C. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 11118 | if (!S.getLangOpts().CPlusPlus) |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11119 | ValueKind = VK_RValue; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11120 | |
| 11121 | // - variables |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11122 | } else if (isa<VarDecl>(VD)) { |
| 11123 | if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { |
| 11124 | Type = RefTy->getPointeeType(); |
| 11125 | } else if (Type->isFunctionType()) { |
| 11126 | S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) |
| 11127 | << VD << E->getSourceRange(); |
John McCall | 755d849 | 2011-04-12 00:42:48 +0000 | [diff] [blame] | 11128 | return ExprError(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11129 | } |
| 11130 | |
| 11131 | // - nothing else |
| 11132 | } else { |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11133 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) |
| 11134 | << VD << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11135 | return ExprError(); |
| 11136 | } |
| 11137 | |
Richard Trieu | 5e4c80b | 2011-09-09 03:59:41 +0000 | [diff] [blame] | 11138 | VD->setType(DestType); |
| 11139 | E->setType(Type); |
| 11140 | E->setValueKind(ValueKind); |
| 11141 | return S.Owned(E); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11142 | } |
| 11143 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11144 | /// Check a cast of an unknown-any type. We intentionally only |
| 11145 | /// trigger this for C-style casts. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11146 | ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, |
| 11147 | Expr *CastExpr, CastKind &CastKind, |
| 11148 | ExprValueKind &VK, CXXCastPath &Path) { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11149 | // Rewrite the casted expression from scratch. |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11150 | ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11151 | if (!result.isUsable()) return ExprError(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11152 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11153 | CastExpr = result.take(); |
| 11154 | VK = CastExpr->getValueKind(); |
| 11155 | CastKind = CK_NoOp; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 11156 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11157 | return CastExpr; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11158 | } |
| 11159 | |
Douglas Gregor | f1d1ca5 | 2011-12-01 01:37:36 +0000 | [diff] [blame] | 11160 | ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { |
| 11161 | return RebuildUnknownAnyExpr(*this, ToType).Visit(E); |
| 11162 | } |
| 11163 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11164 | static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { |
| 11165 | Expr *orig = E; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11166 | unsigned diagID = diag::err_uncasted_use_of_unknown_any; |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11167 | while (true) { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11168 | E = E->IgnoreParenImpCasts(); |
| 11169 | if (CallExpr *call = dyn_cast<CallExpr>(E)) { |
| 11170 | E = call->getCallee(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11171 | diagID = diag::err_uncasted_call_of_unknown_any; |
| 11172 | } else { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11173 | break; |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11174 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11175 | } |
| 11176 | |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11177 | SourceLocation loc; |
| 11178 | NamedDecl *d; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11179 | if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11180 | loc = ref->getLocation(); |
| 11181 | d = ref->getDecl(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11182 | } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11183 | loc = mem->getMemberLoc(); |
| 11184 | d = mem->getMemberDecl(); |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11185 | } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11186 | diagID = diag::err_uncasted_call_of_unknown_any; |
Argyrios Kyrtzidis | 2071808 | 2011-10-03 06:36:51 +0000 | [diff] [blame] | 11187 | loc = msg->getSelectorStartLoc(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11188 | d = msg->getMethodDecl(); |
John McCall | 819e745 | 2011-08-31 20:57:36 +0000 | [diff] [blame] | 11189 | if (!d) { |
| 11190 | S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) |
| 11191 | << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() |
| 11192 | << orig->getSourceRange(); |
| 11193 | return ExprError(); |
| 11194 | } |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11195 | } else { |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11196 | S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) |
| 11197 | << E->getSourceRange(); |
John McCall | 379b515 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 11198 | return ExprError(); |
| 11199 | } |
| 11200 | |
| 11201 | S.Diag(loc, diagID) << d << orig->getSourceRange(); |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11202 | |
| 11203 | // Never recoverable. |
| 11204 | return ExprError(); |
| 11205 | } |
| 11206 | |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 11207 | /// Check for operands with placeholder types and complain if found. |
| 11208 | /// Returns true if there was an error and no recovery was possible. |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 11209 | ExprResult Sema::CheckPlaceholderExpr(Expr *E) { |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11210 | const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); |
| 11211 | if (!placeholderType) return Owned(E); |
| 11212 | |
| 11213 | switch (placeholderType->getKind()) { |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 11214 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11215 | // Overloaded expressions. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11216 | case BuiltinType::Overload: { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 11217 | // Try to resolve a single function template specialization. |
| 11218 | // This is obligatory. |
| 11219 | ExprResult result = Owned(E); |
| 11220 | if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { |
| 11221 | return result; |
| 11222 | |
| 11223 | // If that failed, try to recover with a call. |
| 11224 | } else { |
| 11225 | tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), |
| 11226 | /*complain*/ true); |
| 11227 | return result; |
| 11228 | } |
| 11229 | } |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11230 | |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 11231 | // Bound member functions. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11232 | case BuiltinType::BoundMember: { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 11233 | ExprResult result = Owned(E); |
| 11234 | tryToRecoverWithCall(result, PDiag(diag::err_bound_member_function), |
| 11235 | /*complain*/ true); |
| 11236 | return result; |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11237 | } |
| 11238 | |
| 11239 | // ARC unbridged casts. |
| 11240 | case BuiltinType::ARCUnbridgedCast: { |
| 11241 | Expr *realCast = stripARCUnbridgedCast(E); |
| 11242 | diagnoseARCUnbridgedCast(realCast); |
| 11243 | return Owned(realCast); |
| 11244 | } |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 11245 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11246 | // Expressions of unknown type. |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11247 | case BuiltinType::UnknownAny: |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 11248 | return diagnoseUnknownAnyExpr(*this, E); |
| 11249 | |
John McCall | 3c3b7f9 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 11250 | // Pseudo-objects. |
| 11251 | case BuiltinType::PseudoObject: |
| 11252 | return checkPseudoObjectRValue(E); |
| 11253 | |
John McCall | e0a22d0 | 2011-10-18 21:02:43 +0000 | [diff] [blame] | 11254 | // Everything else should be impossible. |
| 11255 | #define BUILTIN_TYPE(Id, SingletonId) \ |
| 11256 | case BuiltinType::Id: |
| 11257 | #define PLACEHOLDER_TYPE(Id, SingletonId) |
| 11258 | #include "clang/AST/BuiltinTypes.def" |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 11259 | break; |
| 11260 | } |
| 11261 | |
| 11262 | llvm_unreachable("invalid placeholder type!"); |
John McCall | 2a984ca | 2010-10-12 00:20:44 +0000 | [diff] [blame] | 11263 | } |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 11264 | |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11265 | bool Sema::CheckCaseExpression(Expr *E) { |
| 11266 | if (E->isTypeDependent()) |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 11267 | return true; |
Richard Trieu | ccd891a | 2011-09-09 01:45:06 +0000 | [diff] [blame] | 11268 | if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) |
| 11269 | return E->getType()->isIntegralOrEnumerationType(); |
Richard Trieu | bb9b80c | 2011-04-21 21:44:26 +0000 | [diff] [blame] | 11270 | return false; |
| 11271 | } |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 11272 | |
| 11273 | /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. |
| 11274 | ExprResult |
| 11275 | Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { |
| 11276 | assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && |
| 11277 | "Unknown Objective-C Boolean value!"); |
| 11278 | return Owned(new (Context) ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, |
Fariborz Jahanian | 93a4994 | 2012-04-16 21:03:30 +0000 | [diff] [blame] | 11279 | Context.ObjCBuiltinBoolTy, OpLoc)); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 11280 | } |