blob: db60f2388aaa27aac763436c86acf289eab175f2 [file] [log] [blame]
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump11289f42009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattnerb87b1b32007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
John McCall29ad95b2011-08-27 01:09:30 +000015#include "clang/Sema/Initialization.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000016#include "clang/Sema/Sema.h"
John McCall83024632010-08-25 22:03:47 +000017#include "clang/Sema/SemaInternal.h"
Eli Friedmandf14b3a2011-10-11 02:20:01 +000018#include "clang/Sema/Initialization.h"
John McCallaab3e412010-08-25 08:40:02 +000019#include "clang/Sema/ScopeInfo.h"
Ted Kremenek02087932010-07-16 02:11:22 +000020#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000021#include "clang/AST/ASTContext.h"
Ken Dyck40775002010-01-11 17:06:35 +000022#include "clang/AST/CharUnits.h"
John McCall28a0cf72010-08-25 07:42:41 +000023#include "clang/AST/DeclCXX.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000024#include "clang/AST/DeclObjC.h"
Ted Kremenekc81614d2007-08-20 16:18:38 +000025#include "clang/AST/ExprCXX.h"
Ted Kremenek34f664d2008-06-16 18:00:42 +000026#include "clang/AST/ExprObjC.h"
John McCall31168b02011-06-15 23:02:42 +000027#include "clang/AST/EvaluatedExprVisitor.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000028#include "clang/AST/DeclObjC.h"
29#include "clang/AST/StmtCXX.h"
30#include "clang/AST/StmtObjC.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000031#include "clang/Lex/Preprocessor.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000032#include "llvm/ADT/BitVector.h"
33#include "llvm/ADT/STLExtras.h"
Tom Careb7042702010-06-09 04:11:11 +000034#include "llvm/Support/raw_ostream.h"
Eric Christopher8d0c6212010-04-17 02:26:23 +000035#include "clang/Basic/TargetBuiltins.h"
Nate Begeman4904e322010-06-08 02:47:44 +000036#include "clang/Basic/TargetInfo.h"
Fariborz Jahanian56603ef2010-09-07 19:38:13 +000037#include "clang/Basic/ConvertUTF.h"
Zhongxing Xu050379b2009-05-20 01:55:10 +000038#include <limits>
Chris Lattnerb87b1b32007-08-10 20:18:51 +000039using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000040using namespace sema;
Chris Lattnerb87b1b32007-08-10 20:18:51 +000041
Chris Lattnera26fb342009-02-18 17:49:48 +000042SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
43 unsigned ByteNo) const {
Chris Lattnere925d612010-11-17 07:37:15 +000044 return SL->getLocationOfByte(ByteNo, PP.getSourceManager(),
45 PP.getLangOptions(), PP.getTargetInfo());
Chris Lattnera26fb342009-02-18 17:49:48 +000046}
Chris Lattnere925d612010-11-17 07:37:15 +000047
Chris Lattnera26fb342009-02-18 17:49:48 +000048
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000049/// CheckablePrintfAttr - does a function call have a "printf" attribute
50/// and arguments that merit checking?
51bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
52 if (Format->getType() == "printf") return true;
53 if (Format->getType() == "printf0") {
54 // printf0 allows null "format" string; if so don't check format/args
55 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl6eedcc12009-11-17 18:02:24 +000056 // Does the index refer to the implicit object argument?
57 if (isa<CXXMemberCallExpr>(TheCall)) {
58 if (format_idx == 0)
59 return false;
60 --format_idx;
61 }
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000062 if (format_idx < TheCall->getNumArgs()) {
63 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekd1668192010-02-27 01:41:03 +000064 if (!Format->isNullPointerConstant(Context,
65 Expr::NPC_ValueDependentIsNull))
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000066 return true;
67 }
68 }
69 return false;
70}
Chris Lattnera26fb342009-02-18 17:49:48 +000071
John McCallbebede42011-02-26 05:39:39 +000072/// Checks that a call expression's argument count is the desired number.
73/// This is useful when doing custom type-checking. Returns true on error.
74static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
75 unsigned argCount = call->getNumArgs();
76 if (argCount == desiredArgCount) return false;
77
78 if (argCount < desiredArgCount)
79 return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
80 << 0 /*function call*/ << desiredArgCount << argCount
81 << call->getSourceRange();
82
83 // Highlight all the excess arguments.
84 SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
85 call->getArg(argCount - 1)->getLocEnd());
86
87 return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
88 << 0 /*function call*/ << desiredArgCount << argCount
89 << call->getArg(1)->getSourceRange();
90}
91
Julien Lerouge5a6b6982011-09-09 22:41:49 +000092/// CheckBuiltinAnnotationString - Checks that string argument to the builtin
93/// annotation is a non wide string literal.
94static bool CheckBuiltinAnnotationString(Sema &S, Expr *Arg) {
95 Arg = Arg->IgnoreParenCasts();
96 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
97 if (!Literal || !Literal->isAscii()) {
98 S.Diag(Arg->getLocStart(), diag::err_builtin_annotation_not_string_constant)
99 << Arg->getSourceRange();
100 return true;
101 }
102 return false;
103}
104
John McCalldadc5752010-08-24 06:29:42 +0000105ExprResult
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000106Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCalldadc5752010-08-24 06:29:42 +0000107 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000108
Chris Lattner3be167f2010-10-01 23:23:24 +0000109 // Find out if any arguments are required to be integer constant expressions.
110 unsigned ICEArguments = 0;
111 ASTContext::GetBuiltinTypeError Error;
112 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
113 if (Error != ASTContext::GE_None)
114 ICEArguments = 0; // Don't diagnose previously diagnosed errors.
115
116 // If any arguments are required to be ICE's, check and diagnose.
117 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
118 // Skip arguments not required to be ICE's.
119 if ((ICEArguments & (1 << ArgNo)) == 0) continue;
120
121 llvm::APSInt Result;
122 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
123 return true;
124 ICEArguments &= ~(1 << ArgNo);
125 }
126
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000127 switch (BuiltinID) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000128 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner08464942007-12-28 05:29:59 +0000129 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner2da14fb2007-12-20 00:26:33 +0000130 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner6436fb62009-02-18 06:01:06 +0000131 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000132 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000133 break;
Ted Kremeneka174c522008-07-09 17:58:53 +0000134 case Builtin::BI__builtin_stdarg_start:
Chris Lattner43be2e62007-12-19 23:59:04 +0000135 case Builtin::BI__builtin_va_start:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000136 if (SemaBuiltinVAStart(TheCall))
137 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000138 break;
Chris Lattner2da14fb2007-12-20 00:26:33 +0000139 case Builtin::BI__builtin_isgreater:
140 case Builtin::BI__builtin_isgreaterequal:
141 case Builtin::BI__builtin_isless:
142 case Builtin::BI__builtin_islessequal:
143 case Builtin::BI__builtin_islessgreater:
144 case Builtin::BI__builtin_isunordered:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000145 if (SemaBuiltinUnorderedCompare(TheCall))
146 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000147 break;
Benjamin Kramer634fc102010-02-15 22:42:31 +0000148 case Builtin::BI__builtin_fpclassify:
149 if (SemaBuiltinFPClassification(TheCall, 6))
150 return ExprError();
151 break;
Eli Friedman7e4faac2009-08-31 20:06:00 +0000152 case Builtin::BI__builtin_isfinite:
153 case Builtin::BI__builtin_isinf:
154 case Builtin::BI__builtin_isinf_sign:
155 case Builtin::BI__builtin_isnan:
156 case Builtin::BI__builtin_isnormal:
Benjamin Kramer64aae502010-02-16 10:07:31 +0000157 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman7e4faac2009-08-31 20:06:00 +0000158 return ExprError();
159 break;
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000160 case Builtin::BI__builtin_shufflevector:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000161 return SemaBuiltinShuffleVector(TheCall);
162 // TheCall will be freed by the smart pointer here, but that's fine, since
163 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbarb7257262008-07-21 22:59:13 +0000164 case Builtin::BI__builtin_prefetch:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000165 if (SemaBuiltinPrefetch(TheCall))
166 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000167 break;
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000168 case Builtin::BI__builtin_object_size:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000169 if (SemaBuiltinObjectSize(TheCall))
170 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000171 break;
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000172 case Builtin::BI__builtin_longjmp:
173 if (SemaBuiltinLongjmp(TheCall))
174 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000175 break;
John McCallbebede42011-02-26 05:39:39 +0000176
177 case Builtin::BI__builtin_classify_type:
178 if (checkArgCount(*this, TheCall, 1)) return true;
179 TheCall->setType(Context.IntTy);
180 break;
Chris Lattner17c0eac2010-10-12 17:47:42 +0000181 case Builtin::BI__builtin_constant_p:
John McCallbebede42011-02-26 05:39:39 +0000182 if (checkArgCount(*this, TheCall, 1)) return true;
183 TheCall->setType(Context.IntTy);
Chris Lattner17c0eac2010-10-12 17:47:42 +0000184 break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000185 case Builtin::BI__sync_fetch_and_add:
Douglas Gregor73722482011-11-28 16:30:08 +0000186 case Builtin::BI__sync_fetch_and_add_1:
187 case Builtin::BI__sync_fetch_and_add_2:
188 case Builtin::BI__sync_fetch_and_add_4:
189 case Builtin::BI__sync_fetch_and_add_8:
190 case Builtin::BI__sync_fetch_and_add_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000191 case Builtin::BI__sync_fetch_and_sub:
Douglas Gregor73722482011-11-28 16:30:08 +0000192 case Builtin::BI__sync_fetch_and_sub_1:
193 case Builtin::BI__sync_fetch_and_sub_2:
194 case Builtin::BI__sync_fetch_and_sub_4:
195 case Builtin::BI__sync_fetch_and_sub_8:
196 case Builtin::BI__sync_fetch_and_sub_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000197 case Builtin::BI__sync_fetch_and_or:
Douglas Gregor73722482011-11-28 16:30:08 +0000198 case Builtin::BI__sync_fetch_and_or_1:
199 case Builtin::BI__sync_fetch_and_or_2:
200 case Builtin::BI__sync_fetch_and_or_4:
201 case Builtin::BI__sync_fetch_and_or_8:
202 case Builtin::BI__sync_fetch_and_or_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000203 case Builtin::BI__sync_fetch_and_and:
Douglas Gregor73722482011-11-28 16:30:08 +0000204 case Builtin::BI__sync_fetch_and_and_1:
205 case Builtin::BI__sync_fetch_and_and_2:
206 case Builtin::BI__sync_fetch_and_and_4:
207 case Builtin::BI__sync_fetch_and_and_8:
208 case Builtin::BI__sync_fetch_and_and_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000209 case Builtin::BI__sync_fetch_and_xor:
Douglas Gregor73722482011-11-28 16:30:08 +0000210 case Builtin::BI__sync_fetch_and_xor_1:
211 case Builtin::BI__sync_fetch_and_xor_2:
212 case Builtin::BI__sync_fetch_and_xor_4:
213 case Builtin::BI__sync_fetch_and_xor_8:
214 case Builtin::BI__sync_fetch_and_xor_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000215 case Builtin::BI__sync_add_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +0000216 case Builtin::BI__sync_add_and_fetch_1:
217 case Builtin::BI__sync_add_and_fetch_2:
218 case Builtin::BI__sync_add_and_fetch_4:
219 case Builtin::BI__sync_add_and_fetch_8:
220 case Builtin::BI__sync_add_and_fetch_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000221 case Builtin::BI__sync_sub_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +0000222 case Builtin::BI__sync_sub_and_fetch_1:
223 case Builtin::BI__sync_sub_and_fetch_2:
224 case Builtin::BI__sync_sub_and_fetch_4:
225 case Builtin::BI__sync_sub_and_fetch_8:
226 case Builtin::BI__sync_sub_and_fetch_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000227 case Builtin::BI__sync_and_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +0000228 case Builtin::BI__sync_and_and_fetch_1:
229 case Builtin::BI__sync_and_and_fetch_2:
230 case Builtin::BI__sync_and_and_fetch_4:
231 case Builtin::BI__sync_and_and_fetch_8:
232 case Builtin::BI__sync_and_and_fetch_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000233 case Builtin::BI__sync_or_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +0000234 case Builtin::BI__sync_or_and_fetch_1:
235 case Builtin::BI__sync_or_and_fetch_2:
236 case Builtin::BI__sync_or_and_fetch_4:
237 case Builtin::BI__sync_or_and_fetch_8:
238 case Builtin::BI__sync_or_and_fetch_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000239 case Builtin::BI__sync_xor_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +0000240 case Builtin::BI__sync_xor_and_fetch_1:
241 case Builtin::BI__sync_xor_and_fetch_2:
242 case Builtin::BI__sync_xor_and_fetch_4:
243 case Builtin::BI__sync_xor_and_fetch_8:
244 case Builtin::BI__sync_xor_and_fetch_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000245 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +0000246 case Builtin::BI__sync_val_compare_and_swap_1:
247 case Builtin::BI__sync_val_compare_and_swap_2:
248 case Builtin::BI__sync_val_compare_and_swap_4:
249 case Builtin::BI__sync_val_compare_and_swap_8:
250 case Builtin::BI__sync_val_compare_and_swap_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000251 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +0000252 case Builtin::BI__sync_bool_compare_and_swap_1:
253 case Builtin::BI__sync_bool_compare_and_swap_2:
254 case Builtin::BI__sync_bool_compare_and_swap_4:
255 case Builtin::BI__sync_bool_compare_and_swap_8:
256 case Builtin::BI__sync_bool_compare_and_swap_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000257 case Builtin::BI__sync_lock_test_and_set:
Douglas Gregor73722482011-11-28 16:30:08 +0000258 case Builtin::BI__sync_lock_test_and_set_1:
259 case Builtin::BI__sync_lock_test_and_set_2:
260 case Builtin::BI__sync_lock_test_and_set_4:
261 case Builtin::BI__sync_lock_test_and_set_8:
262 case Builtin::BI__sync_lock_test_and_set_16:
Chris Lattnerdc046542009-05-08 06:58:22 +0000263 case Builtin::BI__sync_lock_release:
Douglas Gregor73722482011-11-28 16:30:08 +0000264 case Builtin::BI__sync_lock_release_1:
265 case Builtin::BI__sync_lock_release_2:
266 case Builtin::BI__sync_lock_release_4:
267 case Builtin::BI__sync_lock_release_8:
268 case Builtin::BI__sync_lock_release_16:
Chris Lattner9cb59fa2011-04-09 03:57:26 +0000269 case Builtin::BI__sync_swap:
Douglas Gregor73722482011-11-28 16:30:08 +0000270 case Builtin::BI__sync_swap_1:
271 case Builtin::BI__sync_swap_2:
272 case Builtin::BI__sync_swap_4:
273 case Builtin::BI__sync_swap_8:
274 case Builtin::BI__sync_swap_16:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000275 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000276 case Builtin::BI__atomic_load:
277 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Load);
278 case Builtin::BI__atomic_store:
279 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Store);
280 case Builtin::BI__atomic_exchange:
281 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xchg);
282 case Builtin::BI__atomic_compare_exchange_strong:
283 return SemaAtomicOpsOverloaded(move(TheCallResult),
284 AtomicExpr::CmpXchgStrong);
285 case Builtin::BI__atomic_compare_exchange_weak:
286 return SemaAtomicOpsOverloaded(move(TheCallResult),
287 AtomicExpr::CmpXchgWeak);
288 case Builtin::BI__atomic_fetch_add:
289 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Add);
290 case Builtin::BI__atomic_fetch_sub:
291 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Sub);
292 case Builtin::BI__atomic_fetch_and:
293 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::And);
294 case Builtin::BI__atomic_fetch_or:
295 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Or);
296 case Builtin::BI__atomic_fetch_xor:
297 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xor);
Julien Lerouge5a6b6982011-09-09 22:41:49 +0000298 case Builtin::BI__builtin_annotation:
299 if (CheckBuiltinAnnotationString(*this, TheCall->getArg(1)))
300 return ExprError();
301 break;
Nate Begeman4904e322010-06-08 02:47:44 +0000302 }
303
304 // Since the target specific builtins for each arch overlap, only check those
305 // of the arch we are compiling for.
306 if (BuiltinID >= Builtin::FirstTSBuiltin) {
Douglas Gregore8bbc122011-09-02 00:18:52 +0000307 switch (Context.getTargetInfo().getTriple().getArch()) {
Nate Begeman4904e322010-06-08 02:47:44 +0000308 case llvm::Triple::arm:
309 case llvm::Triple::thumb:
310 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
311 return ExprError();
312 break;
Nate Begeman4904e322010-06-08 02:47:44 +0000313 default:
314 break;
315 }
316 }
317
318 return move(TheCallResult);
319}
320
Nate Begeman91e1fea2010-06-14 05:21:25 +0000321// Get the valid immediate range for the specified NEON type code.
322static unsigned RFT(unsigned t, bool shift = false) {
Bob Wilson98bc98c2011-11-08 01:16:11 +0000323 NeonTypeFlags Type(t);
324 int IsQuad = Type.isQuad();
325 switch (Type.getEltType()) {
326 case NeonTypeFlags::Int8:
327 case NeonTypeFlags::Poly8:
328 return shift ? 7 : (8 << IsQuad) - 1;
329 case NeonTypeFlags::Int16:
330 case NeonTypeFlags::Poly16:
331 return shift ? 15 : (4 << IsQuad) - 1;
332 case NeonTypeFlags::Int32:
333 return shift ? 31 : (2 << IsQuad) - 1;
334 case NeonTypeFlags::Int64:
335 return shift ? 63 : (1 << IsQuad) - 1;
336 case NeonTypeFlags::Float16:
337 assert(!shift && "cannot shift float types!");
338 return (4 << IsQuad) - 1;
339 case NeonTypeFlags::Float32:
340 assert(!shift && "cannot shift float types!");
341 return (2 << IsQuad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000342 }
343 return 0;
344}
345
Bob Wilsone4d77232011-11-08 05:04:11 +0000346/// getNeonEltType - Return the QualType corresponding to the elements of
347/// the vector type specified by the NeonTypeFlags. This is used to check
348/// the pointer arguments for Neon load/store intrinsics.
349static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context) {
350 switch (Flags.getEltType()) {
351 case NeonTypeFlags::Int8:
352 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
353 case NeonTypeFlags::Int16:
354 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
355 case NeonTypeFlags::Int32:
356 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
357 case NeonTypeFlags::Int64:
358 return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
359 case NeonTypeFlags::Poly8:
360 return Context.SignedCharTy;
361 case NeonTypeFlags::Poly16:
362 return Context.ShortTy;
363 case NeonTypeFlags::Float16:
364 return Context.UnsignedShortTy;
365 case NeonTypeFlags::Float32:
366 return Context.FloatTy;
367 }
368 return QualType();
369}
370
Nate Begeman4904e322010-06-08 02:47:44 +0000371bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman55483092010-06-09 01:10:23 +0000372 llvm::APSInt Result;
373
Nate Begemand773fe62010-06-13 04:47:52 +0000374 unsigned mask = 0;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000375 unsigned TV = 0;
Bob Wilson89d14242011-11-16 21:32:23 +0000376 int PtrArgNum = -1;
Bob Wilsone4d77232011-11-08 05:04:11 +0000377 bool HasConstPtr = false;
Nate Begeman55483092010-06-09 01:10:23 +0000378 switch (BuiltinID) {
Nate Begeman35f4c1c2010-06-17 04:17:01 +0000379#define GET_NEON_OVERLOAD_CHECK
380#include "clang/Basic/arm_neon.inc"
381#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman55483092010-06-09 01:10:23 +0000382 }
383
Nate Begemand773fe62010-06-13 04:47:52 +0000384 // For NEON intrinsics which are overloaded on vector element type, validate
385 // the immediate which specifies which variant to emit.
Bob Wilsone4d77232011-11-08 05:04:11 +0000386 unsigned ImmArg = TheCall->getNumArgs()-1;
Nate Begemand773fe62010-06-13 04:47:52 +0000387 if (mask) {
Bob Wilsone4d77232011-11-08 05:04:11 +0000388 if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
Nate Begemand773fe62010-06-13 04:47:52 +0000389 return true;
390
Bob Wilson98bc98c2011-11-08 01:16:11 +0000391 TV = Result.getLimitedValue(64);
392 if ((TV > 63) || (mask & (1 << TV)) == 0)
Nate Begemand773fe62010-06-13 04:47:52 +0000393 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
Bob Wilsone4d77232011-11-08 05:04:11 +0000394 << TheCall->getArg(ImmArg)->getSourceRange();
395 }
396
Bob Wilson89d14242011-11-16 21:32:23 +0000397 if (PtrArgNum >= 0) {
Bob Wilsone4d77232011-11-08 05:04:11 +0000398 // Check that pointer arguments have the specified type.
Bob Wilson89d14242011-11-16 21:32:23 +0000399 Expr *Arg = TheCall->getArg(PtrArgNum);
400 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
401 Arg = ICE->getSubExpr();
402 ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
403 QualType RHSTy = RHS.get()->getType();
404 QualType EltTy = getNeonEltType(NeonTypeFlags(TV), Context);
405 if (HasConstPtr)
406 EltTy = EltTy.withConst();
407 QualType LHSTy = Context.getPointerType(EltTy);
408 AssignConvertType ConvTy;
409 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
410 if (RHS.isInvalid())
411 return true;
412 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
413 RHS.get(), AA_Assigning))
414 return true;
Nate Begemand773fe62010-06-13 04:47:52 +0000415 }
Nate Begeman55483092010-06-09 01:10:23 +0000416
Nate Begemand773fe62010-06-13 04:47:52 +0000417 // For NEON intrinsics which take an immediate value as part of the
418 // instruction, range check them here.
Nate Begeman91e1fea2010-06-14 05:21:25 +0000419 unsigned i = 0, l = 0, u = 0;
Nate Begemand773fe62010-06-13 04:47:52 +0000420 switch (BuiltinID) {
421 default: return false;
Nate Begeman1194bd22010-07-29 22:48:34 +0000422 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
423 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begemanf568b072010-08-03 21:32:34 +0000424 case ARM::BI__builtin_arm_vcvtr_f:
425 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begeman35f4c1c2010-06-17 04:17:01 +0000426#define GET_NEON_IMMEDIATE_CHECK
427#include "clang/Basic/arm_neon.inc"
428#undef GET_NEON_IMMEDIATE_CHECK
Nate Begemand773fe62010-06-13 04:47:52 +0000429 };
430
Nate Begeman91e1fea2010-06-14 05:21:25 +0000431 // Check that the immediate argument is actually a constant.
Nate Begemand773fe62010-06-13 04:47:52 +0000432 if (SemaBuiltinConstantArg(TheCall, i, Result))
433 return true;
434
Nate Begeman91e1fea2010-06-14 05:21:25 +0000435 // Range check against the upper/lower values for this isntruction.
Nate Begemand773fe62010-06-13 04:47:52 +0000436 unsigned Val = Result.getZExtValue();
Nate Begeman91e1fea2010-06-14 05:21:25 +0000437 if (Val < l || Val > (u + l))
Nate Begemand773fe62010-06-13 04:47:52 +0000438 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramere8394df2010-08-11 14:47:12 +0000439 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begemand773fe62010-06-13 04:47:52 +0000440
Nate Begemanf568b072010-08-03 21:32:34 +0000441 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman4904e322010-06-08 02:47:44 +0000442 return false;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000443}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000444
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000445/// CheckFunctionCall - Check a direct function call for various correctness
446/// and safety properties not strictly enforced by the C type system.
447bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
448 // Get the IdentifierInfo* for the called function.
449 IdentifierInfo *FnInfo = FDecl->getIdentifier();
450
451 // None of the checks below are needed for functions that don't have
452 // simple names (e.g., C++ conversion functions).
453 if (!FnInfo)
454 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000455
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000456 // FIXME: This mechanism should be abstracted to be less fragile and
457 // more efficient. For example, just map function ids to custom
458 // handlers.
459
Ted Kremenekb8176da2010-09-09 04:33:05 +0000460 // Printf and scanf checking.
461 for (specific_attr_iterator<FormatAttr>
462 i = FDecl->specific_attr_begin<FormatAttr>(),
463 e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
464
465 const FormatAttr *Format = *i;
Ted Kremenek02087932010-07-16 02:11:22 +0000466 const bool b = Format->getType() == "scanf";
467 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek9723bcf2009-02-27 17:58:43 +0000468 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000469 CheckPrintfScanfArguments(TheCall, HasVAListArg,
470 Format->getFormatIdx() - 1,
471 HasVAListArg ? 0 : Format->getFirstArg() - 1,
472 !b);
Douglas Gregore711f702009-02-14 18:57:46 +0000473 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000474 }
Mike Stump11289f42009-09-09 15:08:12 +0000475
Ted Kremenekb8176da2010-09-09 04:33:05 +0000476 for (specific_attr_iterator<NonNullAttr>
477 i = FDecl->specific_attr_begin<NonNullAttr>(),
478 e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
Nick Lewyckyd4693212011-03-25 01:44:32 +0000479 CheckNonNullArguments(*i, TheCall->getArgs(),
480 TheCall->getCallee()->getLocStart());
Ted Kremenekb8176da2010-09-09 04:33:05 +0000481 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000482
Ted Kremenek6865f772011-08-18 20:55:45 +0000483 // Builtin handling
Douglas Gregor18739c32011-06-16 17:56:04 +0000484 int CMF = -1;
485 switch (FDecl->getBuiltinID()) {
486 case Builtin::BI__builtin_memset:
487 case Builtin::BI__builtin___memset_chk:
488 case Builtin::BImemset:
489 CMF = CMF_Memset;
490 break;
491
492 case Builtin::BI__builtin_memcpy:
493 case Builtin::BI__builtin___memcpy_chk:
494 case Builtin::BImemcpy:
495 CMF = CMF_Memcpy;
496 break;
497
498 case Builtin::BI__builtin_memmove:
499 case Builtin::BI__builtin___memmove_chk:
500 case Builtin::BImemmove:
501 CMF = CMF_Memmove;
502 break;
Ted Kremenek6865f772011-08-18 20:55:45 +0000503
504 case Builtin::BIstrlcpy:
505 case Builtin::BIstrlcat:
506 CheckStrlcpycatArguments(TheCall, FnInfo);
507 break;
Douglas Gregor18739c32011-06-16 17:56:04 +0000508
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +0000509 case Builtin::BI__builtin_memcmp:
510 CMF = CMF_Memcmp;
511 break;
512
Nico Weber39bfed82011-10-13 22:30:23 +0000513 case Builtin::BI__builtin_strncpy:
514 case Builtin::BI__builtin___strncpy_chk:
515 case Builtin::BIstrncpy:
516 CMF = CMF_Strncpy;
517 break;
518
519 case Builtin::BI__builtin_strncmp:
520 CMF = CMF_Strncmp;
521 break;
522
523 case Builtin::BI__builtin_strncasecmp:
524 CMF = CMF_Strncasecmp;
525 break;
526
527 case Builtin::BI__builtin_strncat:
528 case Builtin::BIstrncat:
529 CMF = CMF_Strncat;
530 break;
531
532 case Builtin::BI__builtin_strndup:
533 case Builtin::BIstrndup:
534 CMF = CMF_Strndup;
535 break;
536
Douglas Gregor18739c32011-06-16 17:56:04 +0000537 default:
538 if (FDecl->getLinkage() == ExternalLinkage &&
539 (!getLangOptions().CPlusPlus || FDecl->isExternC())) {
540 if (FnInfo->isStr("memset"))
541 CMF = CMF_Memset;
542 else if (FnInfo->isStr("memcpy"))
543 CMF = CMF_Memcpy;
544 else if (FnInfo->isStr("memmove"))
545 CMF = CMF_Memmove;
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +0000546 else if (FnInfo->isStr("memcmp"))
547 CMF = CMF_Memcmp;
Nico Weber39bfed82011-10-13 22:30:23 +0000548 else if (FnInfo->isStr("strncpy"))
549 CMF = CMF_Strncpy;
550 else if (FnInfo->isStr("strncmp"))
551 CMF = CMF_Strncmp;
552 else if (FnInfo->isStr("strncasecmp"))
553 CMF = CMF_Strncasecmp;
554 else if (FnInfo->isStr("strncat"))
555 CMF = CMF_Strncat;
556 else if (FnInfo->isStr("strndup"))
557 CMF = CMF_Strndup;
Douglas Gregor18739c32011-06-16 17:56:04 +0000558 }
559 break;
Douglas Gregor3bb2a812011-05-03 20:37:33 +0000560 }
Douglas Gregor18739c32011-06-16 17:56:04 +0000561
Ted Kremenek6865f772011-08-18 20:55:45 +0000562 // Memset/memcpy/memmove handling
Douglas Gregor18739c32011-06-16 17:56:04 +0000563 if (CMF != -1)
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +0000564 CheckMemaccessArguments(TheCall, CheckedMemoryFunction(CMF), FnInfo);
Chandler Carruth53caa4d2011-04-27 07:05:31 +0000565
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000566 return false;
Anders Carlsson98f07902007-08-17 05:31:46 +0000567}
568
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000569bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000570 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000571 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000572 if (!Format)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000573 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000574
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000575 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
576 if (!V)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000577 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000578
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000579 QualType Ty = V->getType();
580 if (!Ty->isBlockPointerType())
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000581 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000582
Ted Kremenek02087932010-07-16 02:11:22 +0000583 const bool b = Format->getType() == "scanf";
584 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000585 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000586
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000587 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000588 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
589 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000590
591 return false;
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000592}
593
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000594ExprResult
595Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, AtomicExpr::AtomicOp Op) {
596 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
597 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000598
599 // All these operations take one of the following four forms:
600 // T __atomic_load(_Atomic(T)*, int) (loads)
601 // T* __atomic_add(_Atomic(T*)*, ptrdiff_t, int) (pointer add/sub)
602 // int __atomic_compare_exchange_strong(_Atomic(T)*, T*, T, int, int)
603 // (cmpxchg)
604 // T __atomic_exchange(_Atomic(T)*, T, int) (everything else)
605 // where T is an appropriate type, and the int paremeterss are for orderings.
606 unsigned NumVals = 1;
607 unsigned NumOrders = 1;
608 if (Op == AtomicExpr::Load) {
609 NumVals = 0;
610 } else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong) {
611 NumVals = 2;
612 NumOrders = 2;
613 }
614
615 if (TheCall->getNumArgs() < NumVals+NumOrders+1) {
616 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
617 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
618 << TheCall->getCallee()->getSourceRange();
619 return ExprError();
620 } else if (TheCall->getNumArgs() > NumVals+NumOrders+1) {
621 Diag(TheCall->getArg(NumVals+NumOrders+1)->getLocStart(),
622 diag::err_typecheck_call_too_many_args)
623 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
624 << TheCall->getCallee()->getSourceRange();
625 return ExprError();
626 }
627
628 // Inspect the first argument of the atomic operation. This should always be
629 // a pointer to an _Atomic type.
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000630 Expr *Ptr = TheCall->getArg(0);
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000631 Ptr = DefaultFunctionArrayLvalueConversion(Ptr).get();
632 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
633 if (!pointerType) {
634 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
635 << Ptr->getType() << Ptr->getSourceRange();
636 return ExprError();
637 }
638
639 QualType AtomTy = pointerType->getPointeeType();
640 if (!AtomTy->isAtomicType()) {
641 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
642 << Ptr->getType() << Ptr->getSourceRange();
643 return ExprError();
644 }
645 QualType ValType = AtomTy->getAs<AtomicType>()->getValueType();
646
647 if ((Op == AtomicExpr::Add || Op == AtomicExpr::Sub) &&
648 !ValType->isIntegerType() && !ValType->isPointerType()) {
649 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic_int_or_ptr)
650 << Ptr->getType() << Ptr->getSourceRange();
651 return ExprError();
652 }
653
654 if (!ValType->isIntegerType() &&
655 (Op == AtomicExpr::And || Op == AtomicExpr::Or || Op == AtomicExpr::Xor)){
656 Diag(DRE->getLocStart(), diag::err_atomic_op_logical_needs_atomic_int)
657 << Ptr->getType() << Ptr->getSourceRange();
658 return ExprError();
659 }
660
661 switch (ValType.getObjCLifetime()) {
662 case Qualifiers::OCL_None:
663 case Qualifiers::OCL_ExplicitNone:
664 // okay
665 break;
666
667 case Qualifiers::OCL_Weak:
668 case Qualifiers::OCL_Strong:
669 case Qualifiers::OCL_Autoreleasing:
670 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
671 << ValType << Ptr->getSourceRange();
672 return ExprError();
673 }
674
675 QualType ResultType = ValType;
676 if (Op == AtomicExpr::Store)
677 ResultType = Context.VoidTy;
678 else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong)
679 ResultType = Context.BoolTy;
680
681 // The first argument --- the pointer --- has a fixed type; we
682 // deduce the types of the rest of the arguments accordingly. Walk
683 // the remaining arguments, converting them to the deduced value type.
684 for (unsigned i = 1; i != NumVals+NumOrders+1; ++i) {
685 ExprResult Arg = TheCall->getArg(i);
686 QualType Ty;
687 if (i < NumVals+1) {
688 // The second argument to a cmpxchg is a pointer to the data which will
689 // be exchanged. The second argument to a pointer add/subtract is the
690 // amount to add/subtract, which must be a ptrdiff_t. The third
691 // argument to a cmpxchg and the second argument in all other cases
692 // is the type of the value.
693 if (i == 1 && (Op == AtomicExpr::CmpXchgWeak ||
694 Op == AtomicExpr::CmpXchgStrong))
695 Ty = Context.getPointerType(ValType.getUnqualifiedType());
696 else if (!ValType->isIntegerType() &&
697 (Op == AtomicExpr::Add || Op == AtomicExpr::Sub))
698 Ty = Context.getPointerDiffType();
699 else
700 Ty = ValType;
701 } else {
702 // The order(s) are always converted to int.
703 Ty = Context.IntTy;
704 }
705 InitializedEntity Entity =
706 InitializedEntity::InitializeParameter(Context, Ty, false);
707 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
708 if (Arg.isInvalid())
709 return true;
710 TheCall->setArg(i, Arg.get());
711 }
712
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000713 SmallVector<Expr*, 5> SubExprs;
714 SubExprs.push_back(Ptr);
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000715 if (Op == AtomicExpr::Load) {
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000716 SubExprs.push_back(TheCall->getArg(1)); // Order
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000717 } else if (Op != AtomicExpr::CmpXchgWeak && Op != AtomicExpr::CmpXchgStrong) {
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000718 SubExprs.push_back(TheCall->getArg(2)); // Order
719 SubExprs.push_back(TheCall->getArg(1)); // Val1
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000720 } else {
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000721 SubExprs.push_back(TheCall->getArg(3)); // Order
722 SubExprs.push_back(TheCall->getArg(1)); // Val1
723 SubExprs.push_back(TheCall->getArg(2)); // Val2
724 SubExprs.push_back(TheCall->getArg(4)); // OrderFail
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000725 }
Eli Friedman8d3e43f2011-10-14 22:48:56 +0000726
727 return Owned(new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(),
728 SubExprs.data(), SubExprs.size(),
729 ResultType, Op,
730 TheCall->getRParenLoc()));
Eli Friedmandf14b3a2011-10-11 02:20:01 +0000731}
732
733
John McCall29ad95b2011-08-27 01:09:30 +0000734/// checkBuiltinArgument - Given a call to a builtin function, perform
735/// normal type-checking on the given argument, updating the call in
736/// place. This is useful when a builtin function requires custom
737/// type-checking for some of its arguments but not necessarily all of
738/// them.
739///
740/// Returns true on error.
741static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
742 FunctionDecl *Fn = E->getDirectCallee();
743 assert(Fn && "builtin call without direct callee!");
744
745 ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
746 InitializedEntity Entity =
747 InitializedEntity::InitializeParameter(S.Context, Param);
748
749 ExprResult Arg = E->getArg(0);
750 Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
751 if (Arg.isInvalid())
752 return true;
753
754 E->setArg(ArgIndex, Arg.take());
755 return false;
756}
757
Chris Lattnerdc046542009-05-08 06:58:22 +0000758/// SemaBuiltinAtomicOverloaded - We have a call to a function like
759/// __sync_fetch_and_add, which is an overloaded function based on the pointer
760/// type of its first argument. The main ActOnCallExpr routines have already
761/// promoted the types of arguments because all of these calls are prototyped as
762/// void(...).
763///
764/// This function goes through and does final semantic checking for these
765/// builtins,
John McCalldadc5752010-08-24 06:29:42 +0000766ExprResult
767Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000768 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattnerdc046542009-05-08 06:58:22 +0000769 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
770 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
771
772 // Ensure that we have at least one argument to do type inference from.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000773 if (TheCall->getNumArgs() < 1) {
774 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
775 << 0 << 1 << TheCall->getNumArgs()
776 << TheCall->getCallee()->getSourceRange();
777 return ExprError();
778 }
Mike Stump11289f42009-09-09 15:08:12 +0000779
Chris Lattnerdc046542009-05-08 06:58:22 +0000780 // Inspect the first argument of the atomic builtin. This should always be
781 // a pointer type, whose element is an integral scalar or pointer type.
782 // Because it is a pointer type, we don't have to worry about any implicit
783 // casts here.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000784 // FIXME: We don't allow floating point scalars as input.
Chris Lattnerdc046542009-05-08 06:58:22 +0000785 Expr *FirstArg = TheCall->getArg(0);
John McCall31168b02011-06-15 23:02:42 +0000786 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
787 if (!pointerType) {
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000788 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
789 << FirstArg->getType() << FirstArg->getSourceRange();
790 return ExprError();
791 }
Mike Stump11289f42009-09-09 15:08:12 +0000792
John McCall31168b02011-06-15 23:02:42 +0000793 QualType ValType = pointerType->getPointeeType();
Chris Lattnerbb3bcd82010-09-17 21:12:38 +0000794 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000795 !ValType->isBlockPointerType()) {
796 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
797 << FirstArg->getType() << FirstArg->getSourceRange();
798 return ExprError();
799 }
Chris Lattnerdc046542009-05-08 06:58:22 +0000800
John McCall31168b02011-06-15 23:02:42 +0000801 switch (ValType.getObjCLifetime()) {
802 case Qualifiers::OCL_None:
803 case Qualifiers::OCL_ExplicitNone:
804 // okay
805 break;
806
807 case Qualifiers::OCL_Weak:
808 case Qualifiers::OCL_Strong:
809 case Qualifiers::OCL_Autoreleasing:
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +0000810 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
John McCall31168b02011-06-15 23:02:42 +0000811 << ValType << FirstArg->getSourceRange();
812 return ExprError();
813 }
814
John McCallb50451a2011-10-05 07:41:44 +0000815 // Strip any qualifiers off ValType.
816 ValType = ValType.getUnqualifiedType();
817
Chandler Carruth3973af72010-07-18 20:54:12 +0000818 // The majority of builtins return a value, but a few have special return
819 // types, so allow them to override appropriately below.
820 QualType ResultType = ValType;
821
Chris Lattnerdc046542009-05-08 06:58:22 +0000822 // We need to figure out which concrete builtin this maps onto. For example,
823 // __sync_fetch_and_add with a 2 byte object turns into
824 // __sync_fetch_and_add_2.
825#define BUILTIN_ROW(x) \
826 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
827 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump11289f42009-09-09 15:08:12 +0000828
Chris Lattnerdc046542009-05-08 06:58:22 +0000829 static const unsigned BuiltinIndices[][5] = {
830 BUILTIN_ROW(__sync_fetch_and_add),
831 BUILTIN_ROW(__sync_fetch_and_sub),
832 BUILTIN_ROW(__sync_fetch_and_or),
833 BUILTIN_ROW(__sync_fetch_and_and),
834 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump11289f42009-09-09 15:08:12 +0000835
Chris Lattnerdc046542009-05-08 06:58:22 +0000836 BUILTIN_ROW(__sync_add_and_fetch),
837 BUILTIN_ROW(__sync_sub_and_fetch),
838 BUILTIN_ROW(__sync_and_and_fetch),
839 BUILTIN_ROW(__sync_or_and_fetch),
840 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump11289f42009-09-09 15:08:12 +0000841
Chris Lattnerdc046542009-05-08 06:58:22 +0000842 BUILTIN_ROW(__sync_val_compare_and_swap),
843 BUILTIN_ROW(__sync_bool_compare_and_swap),
844 BUILTIN_ROW(__sync_lock_test_and_set),
Chris Lattner9cb59fa2011-04-09 03:57:26 +0000845 BUILTIN_ROW(__sync_lock_release),
846 BUILTIN_ROW(__sync_swap)
Chris Lattnerdc046542009-05-08 06:58:22 +0000847 };
Mike Stump11289f42009-09-09 15:08:12 +0000848#undef BUILTIN_ROW
849
Chris Lattnerdc046542009-05-08 06:58:22 +0000850 // Determine the index of the size.
851 unsigned SizeIndex;
Ken Dyck40775002010-01-11 17:06:35 +0000852 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattnerdc046542009-05-08 06:58:22 +0000853 case 1: SizeIndex = 0; break;
854 case 2: SizeIndex = 1; break;
855 case 4: SizeIndex = 2; break;
856 case 8: SizeIndex = 3; break;
857 case 16: SizeIndex = 4; break;
858 default:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000859 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
860 << FirstArg->getType() << FirstArg->getSourceRange();
861 return ExprError();
Chris Lattnerdc046542009-05-08 06:58:22 +0000862 }
Mike Stump11289f42009-09-09 15:08:12 +0000863
Chris Lattnerdc046542009-05-08 06:58:22 +0000864 // Each of these builtins has one pointer argument, followed by some number of
865 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
866 // that we ignore. Find out which row of BuiltinIndices to read from as well
867 // as the number of fixed args.
Douglas Gregor15fc9562009-09-12 00:22:50 +0000868 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattnerdc046542009-05-08 06:58:22 +0000869 unsigned BuiltinIndex, NumFixed = 1;
870 switch (BuiltinID) {
David Blaikie83d382b2011-09-23 05:06:16 +0000871 default: llvm_unreachable("Unknown overloaded atomic builtin!");
Douglas Gregor73722482011-11-28 16:30:08 +0000872 case Builtin::BI__sync_fetch_and_add:
873 case Builtin::BI__sync_fetch_and_add_1:
874 case Builtin::BI__sync_fetch_and_add_2:
875 case Builtin::BI__sync_fetch_and_add_4:
876 case Builtin::BI__sync_fetch_and_add_8:
877 case Builtin::BI__sync_fetch_and_add_16:
878 BuiltinIndex = 0;
879 break;
880
881 case Builtin::BI__sync_fetch_and_sub:
882 case Builtin::BI__sync_fetch_and_sub_1:
883 case Builtin::BI__sync_fetch_and_sub_2:
884 case Builtin::BI__sync_fetch_and_sub_4:
885 case Builtin::BI__sync_fetch_and_sub_8:
886 case Builtin::BI__sync_fetch_and_sub_16:
887 BuiltinIndex = 1;
888 break;
889
890 case Builtin::BI__sync_fetch_and_or:
891 case Builtin::BI__sync_fetch_and_or_1:
892 case Builtin::BI__sync_fetch_and_or_2:
893 case Builtin::BI__sync_fetch_and_or_4:
894 case Builtin::BI__sync_fetch_and_or_8:
895 case Builtin::BI__sync_fetch_and_or_16:
896 BuiltinIndex = 2;
897 break;
898
899 case Builtin::BI__sync_fetch_and_and:
900 case Builtin::BI__sync_fetch_and_and_1:
901 case Builtin::BI__sync_fetch_and_and_2:
902 case Builtin::BI__sync_fetch_and_and_4:
903 case Builtin::BI__sync_fetch_and_and_8:
904 case Builtin::BI__sync_fetch_and_and_16:
905 BuiltinIndex = 3;
906 break;
Mike Stump11289f42009-09-09 15:08:12 +0000907
Douglas Gregor73722482011-11-28 16:30:08 +0000908 case Builtin::BI__sync_fetch_and_xor:
909 case Builtin::BI__sync_fetch_and_xor_1:
910 case Builtin::BI__sync_fetch_and_xor_2:
911 case Builtin::BI__sync_fetch_and_xor_4:
912 case Builtin::BI__sync_fetch_and_xor_8:
913 case Builtin::BI__sync_fetch_and_xor_16:
914 BuiltinIndex = 4;
915 break;
916
917 case Builtin::BI__sync_add_and_fetch:
918 case Builtin::BI__sync_add_and_fetch_1:
919 case Builtin::BI__sync_add_and_fetch_2:
920 case Builtin::BI__sync_add_and_fetch_4:
921 case Builtin::BI__sync_add_and_fetch_8:
922 case Builtin::BI__sync_add_and_fetch_16:
923 BuiltinIndex = 5;
924 break;
925
926 case Builtin::BI__sync_sub_and_fetch:
927 case Builtin::BI__sync_sub_and_fetch_1:
928 case Builtin::BI__sync_sub_and_fetch_2:
929 case Builtin::BI__sync_sub_and_fetch_4:
930 case Builtin::BI__sync_sub_and_fetch_8:
931 case Builtin::BI__sync_sub_and_fetch_16:
932 BuiltinIndex = 6;
933 break;
934
935 case Builtin::BI__sync_and_and_fetch:
936 case Builtin::BI__sync_and_and_fetch_1:
937 case Builtin::BI__sync_and_and_fetch_2:
938 case Builtin::BI__sync_and_and_fetch_4:
939 case Builtin::BI__sync_and_and_fetch_8:
940 case Builtin::BI__sync_and_and_fetch_16:
941 BuiltinIndex = 7;
942 break;
943
944 case Builtin::BI__sync_or_and_fetch:
945 case Builtin::BI__sync_or_and_fetch_1:
946 case Builtin::BI__sync_or_and_fetch_2:
947 case Builtin::BI__sync_or_and_fetch_4:
948 case Builtin::BI__sync_or_and_fetch_8:
949 case Builtin::BI__sync_or_and_fetch_16:
950 BuiltinIndex = 8;
951 break;
952
953 case Builtin::BI__sync_xor_and_fetch:
954 case Builtin::BI__sync_xor_and_fetch_1:
955 case Builtin::BI__sync_xor_and_fetch_2:
956 case Builtin::BI__sync_xor_and_fetch_4:
957 case Builtin::BI__sync_xor_and_fetch_8:
958 case Builtin::BI__sync_xor_and_fetch_16:
959 BuiltinIndex = 9;
960 break;
Mike Stump11289f42009-09-09 15:08:12 +0000961
Chris Lattnerdc046542009-05-08 06:58:22 +0000962 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +0000963 case Builtin::BI__sync_val_compare_and_swap_1:
964 case Builtin::BI__sync_val_compare_and_swap_2:
965 case Builtin::BI__sync_val_compare_and_swap_4:
966 case Builtin::BI__sync_val_compare_and_swap_8:
967 case Builtin::BI__sync_val_compare_and_swap_16:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000968 BuiltinIndex = 10;
Chris Lattnerdc046542009-05-08 06:58:22 +0000969 NumFixed = 2;
970 break;
Douglas Gregor73722482011-11-28 16:30:08 +0000971
Chris Lattnerdc046542009-05-08 06:58:22 +0000972 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +0000973 case Builtin::BI__sync_bool_compare_and_swap_1:
974 case Builtin::BI__sync_bool_compare_and_swap_2:
975 case Builtin::BI__sync_bool_compare_and_swap_4:
976 case Builtin::BI__sync_bool_compare_and_swap_8:
977 case Builtin::BI__sync_bool_compare_and_swap_16:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000978 BuiltinIndex = 11;
Chris Lattnerdc046542009-05-08 06:58:22 +0000979 NumFixed = 2;
Chandler Carruth3973af72010-07-18 20:54:12 +0000980 ResultType = Context.BoolTy;
Chris Lattnerdc046542009-05-08 06:58:22 +0000981 break;
Douglas Gregor73722482011-11-28 16:30:08 +0000982
983 case Builtin::BI__sync_lock_test_and_set:
984 case Builtin::BI__sync_lock_test_and_set_1:
985 case Builtin::BI__sync_lock_test_and_set_2:
986 case Builtin::BI__sync_lock_test_and_set_4:
987 case Builtin::BI__sync_lock_test_and_set_8:
988 case Builtin::BI__sync_lock_test_and_set_16:
989 BuiltinIndex = 12;
990 break;
991
Chris Lattnerdc046542009-05-08 06:58:22 +0000992 case Builtin::BI__sync_lock_release:
Douglas Gregor73722482011-11-28 16:30:08 +0000993 case Builtin::BI__sync_lock_release_1:
994 case Builtin::BI__sync_lock_release_2:
995 case Builtin::BI__sync_lock_release_4:
996 case Builtin::BI__sync_lock_release_8:
997 case Builtin::BI__sync_lock_release_16:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000998 BuiltinIndex = 13;
Chris Lattnerdc046542009-05-08 06:58:22 +0000999 NumFixed = 0;
Chandler Carruth3973af72010-07-18 20:54:12 +00001000 ResultType = Context.VoidTy;
Chris Lattnerdc046542009-05-08 06:58:22 +00001001 break;
Douglas Gregor73722482011-11-28 16:30:08 +00001002
1003 case Builtin::BI__sync_swap:
1004 case Builtin::BI__sync_swap_1:
1005 case Builtin::BI__sync_swap_2:
1006 case Builtin::BI__sync_swap_4:
1007 case Builtin::BI__sync_swap_8:
1008 case Builtin::BI__sync_swap_16:
1009 BuiltinIndex = 14;
1010 break;
Chris Lattnerdc046542009-05-08 06:58:22 +00001011 }
Mike Stump11289f42009-09-09 15:08:12 +00001012
Chris Lattnerdc046542009-05-08 06:58:22 +00001013 // Now that we know how many fixed arguments we expect, first check that we
1014 // have at least that many.
Chandler Carruth741e5ce2010-07-09 18:59:35 +00001015 if (TheCall->getNumArgs() < 1+NumFixed) {
1016 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
1017 << 0 << 1+NumFixed << TheCall->getNumArgs()
1018 << TheCall->getCallee()->getSourceRange();
1019 return ExprError();
1020 }
Mike Stump11289f42009-09-09 15:08:12 +00001021
Chris Lattner5b9241b2009-05-08 15:36:58 +00001022 // Get the decl for the concrete builtin from this, we can tell what the
1023 // concrete integer type we should convert to is.
1024 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
1025 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
1026 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump11289f42009-09-09 15:08:12 +00001027 FunctionDecl *NewBuiltinDecl =
Chris Lattner5b9241b2009-05-08 15:36:58 +00001028 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
1029 TUScope, false, DRE->getLocStart()));
Chandler Carruth741e5ce2010-07-09 18:59:35 +00001030
John McCallcf142162010-08-07 06:22:56 +00001031 // The first argument --- the pointer --- has a fixed type; we
1032 // deduce the types of the rest of the arguments accordingly. Walk
1033 // the remaining arguments, converting them to the deduced value type.
Chris Lattnerdc046542009-05-08 06:58:22 +00001034 for (unsigned i = 0; i != NumFixed; ++i) {
John Wiegley01296292011-04-08 18:41:53 +00001035 ExprResult Arg = TheCall->getArg(i+1);
Mike Stump11289f42009-09-09 15:08:12 +00001036
Chris Lattnerdc046542009-05-08 06:58:22 +00001037 // GCC does an implicit conversion to the pointer or integer ValType. This
1038 // can fail in some cases (1i -> int**), check for this error case now.
John McCallb50451a2011-10-05 07:41:44 +00001039 // Initialize the argument.
1040 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
1041 ValType, /*consume*/ false);
1042 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
John Wiegley01296292011-04-08 18:41:53 +00001043 if (Arg.isInvalid())
Chandler Carruth741e5ce2010-07-09 18:59:35 +00001044 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00001045
Chris Lattnerdc046542009-05-08 06:58:22 +00001046 // Okay, we have something that *can* be converted to the right type. Check
1047 // to see if there is a potentially weird extension going on here. This can
1048 // happen when you do an atomic operation on something like an char* and
1049 // pass in 42. The 42 gets converted to char. This is even more strange
1050 // for things like 45.123 -> char, etc.
Mike Stump11289f42009-09-09 15:08:12 +00001051 // FIXME: Do this check.
John McCallb50451a2011-10-05 07:41:44 +00001052 TheCall->setArg(i+1, Arg.take());
Chris Lattnerdc046542009-05-08 06:58:22 +00001053 }
Mike Stump11289f42009-09-09 15:08:12 +00001054
Douglas Gregor6b3bcf22011-09-09 16:51:10 +00001055 ASTContext& Context = this->getASTContext();
1056
1057 // Create a new DeclRefExpr to refer to the new decl.
1058 DeclRefExpr* NewDRE = DeclRefExpr::Create(
1059 Context,
1060 DRE->getQualifierLoc(),
1061 NewBuiltinDecl,
1062 DRE->getLocation(),
1063 NewBuiltinDecl->getType(),
1064 DRE->getValueKind());
Mike Stump11289f42009-09-09 15:08:12 +00001065
Chris Lattnerdc046542009-05-08 06:58:22 +00001066 // Set the callee in the CallExpr.
1067 // FIXME: This leaks the original parens and implicit casts.
Douglas Gregor6b3bcf22011-09-09 16:51:10 +00001068 ExprResult PromotedCall = UsualUnaryConversions(NewDRE);
John Wiegley01296292011-04-08 18:41:53 +00001069 if (PromotedCall.isInvalid())
1070 return ExprError();
1071 TheCall->setCallee(PromotedCall.take());
Mike Stump11289f42009-09-09 15:08:12 +00001072
Chandler Carruthbc8cab12010-07-18 07:23:17 +00001073 // Change the result type of the call to match the original value type. This
1074 // is arbitrary, but the codegen for these builtins ins design to handle it
1075 // gracefully.
Chandler Carruth3973af72010-07-18 20:54:12 +00001076 TheCall->setType(ResultType);
Chandler Carruth741e5ce2010-07-09 18:59:35 +00001077
1078 return move(TheCallResult);
Chris Lattnerdc046542009-05-08 06:58:22 +00001079}
1080
Chris Lattner6436fb62009-02-18 06:01:06 +00001081/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson98f07902007-08-17 05:31:46 +00001082/// CFString constructor is correct
Steve Narofffb46e862009-04-13 20:26:29 +00001083/// Note: It might also make sense to do the UTF-16 conversion here (would
1084/// simplify the backend).
Chris Lattner6436fb62009-02-18 06:01:06 +00001085bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattnerf2660962008-02-13 01:02:39 +00001086 Arg = Arg->IgnoreParenCasts();
Anders Carlsson98f07902007-08-17 05:31:46 +00001087 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
1088
Douglas Gregorfb65e592011-07-27 05:40:30 +00001089 if (!Literal || !Literal->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001090 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
1091 << Arg->getSourceRange();
Anders Carlssona3a9c432007-08-17 15:44:17 +00001092 return true;
Anders Carlsson98f07902007-08-17 05:31:46 +00001093 }
Mike Stump11289f42009-09-09 15:08:12 +00001094
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00001095 if (Literal->containsNonAsciiOrNull()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001096 StringRef String = Literal->getString();
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00001097 unsigned NumBytes = String.size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001098 SmallVector<UTF16, 128> ToBuf(NumBytes);
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00001099 const UTF8 *FromPtr = (UTF8 *)String.data();
1100 UTF16 *ToPtr = &ToBuf[0];
1101
1102 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
1103 &ToPtr, ToPtr + NumBytes,
1104 strictConversion);
1105 // Check for conversion failure.
1106 if (Result != conversionOK)
1107 Diag(Arg->getLocStart(),
1108 diag::warn_cfstring_truncated) << Arg->getSourceRange();
1109 }
Anders Carlssona3a9c432007-08-17 15:44:17 +00001110 return false;
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001111}
1112
Chris Lattnere202e6a2007-12-20 00:05:45 +00001113/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
1114/// Emit an error and return true on failure, return false on success.
Chris Lattner08464942007-12-28 05:29:59 +00001115bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
1116 Expr *Fn = TheCall->getCallee();
1117 if (TheCall->getNumArgs() > 2) {
Chris Lattnercedef8d2008-11-21 18:44:24 +00001118 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001119 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001120 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
1121 << Fn->getSourceRange()
Mike Stump11289f42009-09-09 15:08:12 +00001122 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001123 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner43be2e62007-12-19 23:59:04 +00001124 return true;
1125 }
Eli Friedmanbb2b3be2008-12-15 22:05:35 +00001126
1127 if (TheCall->getNumArgs() < 2) {
Eric Christopherabf1e182010-04-16 04:48:22 +00001128 return Diag(TheCall->getLocEnd(),
1129 diag::err_typecheck_call_too_few_args_at_least)
1130 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedmanbb2b3be2008-12-15 22:05:35 +00001131 }
1132
John McCall29ad95b2011-08-27 01:09:30 +00001133 // Type-check the first argument normally.
1134 if (checkBuiltinArgument(*this, TheCall, 0))
1135 return true;
1136
Chris Lattnere202e6a2007-12-20 00:05:45 +00001137 // Determine whether the current function is variadic or not.
Douglas Gregor9a28e842010-03-01 23:15:13 +00001138 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnere202e6a2007-12-20 00:05:45 +00001139 bool isVariadic;
Steve Naroff439a3e42009-04-15 19:33:47 +00001140 if (CurBlock)
John McCall8e346702010-06-04 19:02:56 +00001141 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek186a0742010-04-29 16:49:01 +00001142 else if (FunctionDecl *FD = getCurFunctionDecl())
1143 isVariadic = FD->isVariadic();
1144 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +00001145 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump11289f42009-09-09 15:08:12 +00001146
Chris Lattnere202e6a2007-12-20 00:05:45 +00001147 if (!isVariadic) {
Chris Lattner43be2e62007-12-19 23:59:04 +00001148 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
1149 return true;
1150 }
Mike Stump11289f42009-09-09 15:08:12 +00001151
Chris Lattner43be2e62007-12-19 23:59:04 +00001152 // Verify that the second argument to the builtin is the last argument of the
1153 // current function or method.
1154 bool SecondArgIsLastNamedArgument = false;
Anders Carlsson73cc5072008-02-13 01:22:59 +00001155 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00001156
Anders Carlsson6a8350b2008-02-11 04:20:54 +00001157 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
1158 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner43be2e62007-12-19 23:59:04 +00001159 // FIXME: This isn't correct for methods (results in bogus warning).
1160 // Get the last formal in the current function.
Anders Carlsson6a8350b2008-02-11 04:20:54 +00001161 const ParmVarDecl *LastArg;
Steve Naroff439a3e42009-04-15 19:33:47 +00001162 if (CurBlock)
1163 LastArg = *(CurBlock->TheDecl->param_end()-1);
1164 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner79413952008-12-04 23:50:19 +00001165 LastArg = *(FD->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +00001166 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +00001167 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +00001168 SecondArgIsLastNamedArgument = PV == LastArg;
1169 }
1170 }
Mike Stump11289f42009-09-09 15:08:12 +00001171
Chris Lattner43be2e62007-12-19 23:59:04 +00001172 if (!SecondArgIsLastNamedArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001173 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner43be2e62007-12-19 23:59:04 +00001174 diag::warn_second_parameter_of_va_start_not_last_named_argument);
1175 return false;
Eli Friedmanf8353032008-05-20 08:23:37 +00001176}
Chris Lattner43be2e62007-12-19 23:59:04 +00001177
Chris Lattner2da14fb2007-12-20 00:26:33 +00001178/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
1179/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner08464942007-12-28 05:29:59 +00001180bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
1181 if (TheCall->getNumArgs() < 2)
Chris Lattnercedef8d2008-11-21 18:44:24 +00001182 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +00001183 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner08464942007-12-28 05:29:59 +00001184 if (TheCall->getNumArgs() > 2)
Mike Stump11289f42009-09-09 15:08:12 +00001185 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001186 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001187 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattner3b054132008-11-19 05:08:23 +00001188 << SourceRange(TheCall->getArg(2)->getLocStart(),
1189 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +00001190
John Wiegley01296292011-04-08 18:41:53 +00001191 ExprResult OrigArg0 = TheCall->getArg(0);
1192 ExprResult OrigArg1 = TheCall->getArg(1);
Douglas Gregorc25f7662009-05-19 22:10:17 +00001193
Chris Lattner2da14fb2007-12-20 00:26:33 +00001194 // Do standard promotions between the two arguments, returning their common
1195 // type.
Chris Lattner08464942007-12-28 05:29:59 +00001196 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
John Wiegley01296292011-04-08 18:41:53 +00001197 if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
1198 return true;
Daniel Dunbar96f86772009-02-19 19:28:43 +00001199
1200 // Make sure any conversions are pushed back into the call; this is
1201 // type safe since unordered compare builtins are declared as "_Bool
1202 // foo(...)".
John Wiegley01296292011-04-08 18:41:53 +00001203 TheCall->setArg(0, OrigArg0.get());
1204 TheCall->setArg(1, OrigArg1.get());
Mike Stump11289f42009-09-09 15:08:12 +00001205
John Wiegley01296292011-04-08 18:41:53 +00001206 if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
Douglas Gregorc25f7662009-05-19 22:10:17 +00001207 return false;
1208
Chris Lattner2da14fb2007-12-20 00:26:33 +00001209 // If the common type isn't a real floating type, then the arguments were
1210 // invalid for this operation.
1211 if (!Res->isRealFloatingType())
John Wiegley01296292011-04-08 18:41:53 +00001212 return Diag(OrigArg0.get()->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001213 diag::err_typecheck_call_invalid_ordered_compare)
John Wiegley01296292011-04-08 18:41:53 +00001214 << OrigArg0.get()->getType() << OrigArg1.get()->getType()
1215 << SourceRange(OrigArg0.get()->getLocStart(), OrigArg1.get()->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +00001216
Chris Lattner2da14fb2007-12-20 00:26:33 +00001217 return false;
1218}
1219
Benjamin Kramer634fc102010-02-15 22:42:31 +00001220/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
1221/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer64aae502010-02-16 10:07:31 +00001222/// to check everything. We expect the last argument to be a floating point
1223/// value.
1224bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
1225 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman7e4faac2009-08-31 20:06:00 +00001226 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +00001227 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer64aae502010-02-16 10:07:31 +00001228 if (TheCall->getNumArgs() > NumArgs)
1229 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +00001230 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001231 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer64aae502010-02-16 10:07:31 +00001232 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +00001233 (*(TheCall->arg_end()-1))->getLocEnd());
1234
Benjamin Kramer64aae502010-02-16 10:07:31 +00001235 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump11289f42009-09-09 15:08:12 +00001236
Eli Friedman7e4faac2009-08-31 20:06:00 +00001237 if (OrigArg->isTypeDependent())
1238 return false;
1239
Chris Lattner68784ef2010-05-06 05:50:07 +00001240 // This operation requires a non-_Complex floating-point number.
Eli Friedman7e4faac2009-08-31 20:06:00 +00001241 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump11289f42009-09-09 15:08:12 +00001242 return Diag(OrigArg->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +00001243 diag::err_typecheck_call_invalid_unary_fp)
1244 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001245
Chris Lattner68784ef2010-05-06 05:50:07 +00001246 // If this is an implicit conversion from float -> double, remove it.
1247 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
1248 Expr *CastArg = Cast->getSubExpr();
1249 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
1250 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
1251 "promotion from float to double is the only expected cast here");
1252 Cast->setSubExpr(0);
Chris Lattner68784ef2010-05-06 05:50:07 +00001253 TheCall->setArg(NumArgs-1, CastArg);
1254 OrigArg = CastArg;
1255 }
1256 }
1257
Eli Friedman7e4faac2009-08-31 20:06:00 +00001258 return false;
1259}
1260
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001261/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
1262// This is declared to take (...), so we have to check everything.
John McCalldadc5752010-08-24 06:29:42 +00001263ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begemana0110022010-06-08 00:16:34 +00001264 if (TheCall->getNumArgs() < 2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001265 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherabf1e182010-04-16 04:48:22 +00001266 diag::err_typecheck_call_too_few_args_at_least)
Nate Begemana0110022010-06-08 00:16:34 +00001267 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherabf1e182010-04-16 04:48:22 +00001268 << TheCall->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001269
Nate Begemana0110022010-06-08 00:16:34 +00001270 // Determine which of the following types of shufflevector we're checking:
1271 // 1) unary, vector mask: (lhs, mask)
1272 // 2) binary, vector mask: (lhs, rhs, mask)
1273 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
1274 QualType resType = TheCall->getArg(0)->getType();
1275 unsigned numElements = 0;
1276
Douglas Gregorc25f7662009-05-19 22:10:17 +00001277 if (!TheCall->getArg(0)->isTypeDependent() &&
1278 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begemana0110022010-06-08 00:16:34 +00001279 QualType LHSType = TheCall->getArg(0)->getType();
1280 QualType RHSType = TheCall->getArg(1)->getType();
1281
1282 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorc25f7662009-05-19 22:10:17 +00001283 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump11289f42009-09-09 15:08:12 +00001284 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +00001285 TheCall->getArg(1)->getLocEnd());
1286 return ExprError();
1287 }
Nate Begemana0110022010-06-08 00:16:34 +00001288
1289 numElements = LHSType->getAs<VectorType>()->getNumElements();
1290 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump11289f42009-09-09 15:08:12 +00001291
Nate Begemana0110022010-06-08 00:16:34 +00001292 // Check to see if we have a call with 2 vector arguments, the unary shuffle
1293 // with mask. If so, verify that RHS is an integer vector type with the
1294 // same number of elts as lhs.
1295 if (TheCall->getNumArgs() == 2) {
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00001296 if (!RHSType->hasIntegerRepresentation() ||
Nate Begemana0110022010-06-08 00:16:34 +00001297 RHSType->getAs<VectorType>()->getNumElements() != numElements)
1298 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
1299 << SourceRange(TheCall->getArg(1)->getLocStart(),
1300 TheCall->getArg(1)->getLocEnd());
1301 numResElements = numElements;
1302 }
1303 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorc25f7662009-05-19 22:10:17 +00001304 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump11289f42009-09-09 15:08:12 +00001305 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +00001306 TheCall->getArg(1)->getLocEnd());
1307 return ExprError();
Nate Begemana0110022010-06-08 00:16:34 +00001308 } else if (numElements != numResElements) {
1309 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner37141f42010-06-23 06:00:24 +00001310 resType = Context.getVectorType(eltType, numResElements,
Bob Wilsonaeb56442010-11-10 21:56:12 +00001311 VectorType::GenericVector);
Douglas Gregorc25f7662009-05-19 22:10:17 +00001312 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001313 }
1314
1315 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorc25f7662009-05-19 22:10:17 +00001316 if (TheCall->getArg(i)->isTypeDependent() ||
1317 TheCall->getArg(i)->isValueDependent())
1318 continue;
1319
Nate Begemana0110022010-06-08 00:16:34 +00001320 llvm::APSInt Result(32);
1321 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
1322 return ExprError(Diag(TheCall->getLocStart(),
1323 diag::err_shufflevector_nonconstant_argument)
1324 << TheCall->getArg(i)->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001325
Chris Lattner7ab824e2008-08-10 02:05:13 +00001326 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001327 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001328 diag::err_shufflevector_argument_too_large)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001329 << TheCall->getArg(i)->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001330 }
1331
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001332 SmallVector<Expr*, 32> exprs;
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001333
Chris Lattner7ab824e2008-08-10 02:05:13 +00001334 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001335 exprs.push_back(TheCall->getArg(i));
1336 TheCall->setArg(i, 0);
1337 }
1338
Nate Begemanf485fb52009-08-12 02:10:25 +00001339 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begemana0110022010-06-08 00:16:34 +00001340 exprs.size(), resType,
Ted Kremenek5a201952009-02-07 01:47:29 +00001341 TheCall->getCallee()->getLocStart(),
1342 TheCall->getRParenLoc()));
Eli Friedmana1b4ed82008-05-14 19:38:39 +00001343}
Chris Lattner43be2e62007-12-19 23:59:04 +00001344
Daniel Dunbarb7257262008-07-21 22:59:13 +00001345/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
1346// This is declared to take (const void*, ...) and can take two
1347// optional constant int args.
1348bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattner3b054132008-11-19 05:08:23 +00001349 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbarb7257262008-07-21 22:59:13 +00001350
Chris Lattner3b054132008-11-19 05:08:23 +00001351 if (NumArgs > 3)
Eric Christopher2a5aaff2010-04-16 04:56:46 +00001352 return Diag(TheCall->getLocEnd(),
1353 diag::err_typecheck_call_too_many_args_at_most)
1354 << 0 /*function call*/ << 3 << NumArgs
1355 << TheCall->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +00001356
1357 // Argument 0 is checked for us and the remaining arguments must be
1358 // constant integers.
Chris Lattner3b054132008-11-19 05:08:23 +00001359 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbarb7257262008-07-21 22:59:13 +00001360 Expr *Arg = TheCall->getArg(i);
Eric Christopher8d0c6212010-04-17 02:26:23 +00001361
Eli Friedman5efba262009-12-04 00:30:06 +00001362 llvm::APSInt Result;
Eric Christopher8d0c6212010-04-17 02:26:23 +00001363 if (SemaBuiltinConstantArg(TheCall, i, Result))
1364 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001365
Daniel Dunbarb7257262008-07-21 22:59:13 +00001366 // FIXME: gcc issues a warning and rewrites these to 0. These
1367 // seems especially odd for the third argument since the default
1368 // is 3.
Chris Lattner3b054132008-11-19 05:08:23 +00001369 if (i == 1) {
Eli Friedman5efba262009-12-04 00:30:06 +00001370 if (Result.getLimitedValue() > 1)
Chris Lattner3b054132008-11-19 05:08:23 +00001371 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +00001372 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +00001373 } else {
Eli Friedman5efba262009-12-04 00:30:06 +00001374 if (Result.getLimitedValue() > 3)
Chris Lattner3b054132008-11-19 05:08:23 +00001375 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +00001376 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +00001377 }
1378 }
1379
Chris Lattner3b054132008-11-19 05:08:23 +00001380 return false;
Daniel Dunbarb7257262008-07-21 22:59:13 +00001381}
1382
Eric Christopher8d0c6212010-04-17 02:26:23 +00001383/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
1384/// TheCall is a constant expression.
1385bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
1386 llvm::APSInt &Result) {
1387 Expr *Arg = TheCall->getArg(ArgNum);
1388 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
1389 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
1390
1391 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
1392
1393 if (!Arg->isIntegerConstantExpr(Result, Context))
1394 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher63448c32010-04-19 18:23:02 +00001395 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher8d0c6212010-04-17 02:26:23 +00001396
Chris Lattnerd545ad12009-09-23 06:06:36 +00001397 return false;
1398}
1399
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00001400/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
1401/// int type). This simply type checks that type is one of the defined
1402/// constants (0-3).
Chris Lattner57540c52011-04-15 05:22:18 +00001403// For compatibility check 0-3, llvm only handles 0 and 2.
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00001404bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher8d0c6212010-04-17 02:26:23 +00001405 llvm::APSInt Result;
1406
1407 // Check constant-ness first.
1408 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1409 return true;
1410
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00001411 Expr *Arg = TheCall->getArg(1);
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00001412 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattner3b054132008-11-19 05:08:23 +00001413 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
1414 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00001415 }
1416
1417 return false;
1418}
1419
Eli Friedmanc97d0142009-05-03 06:04:26 +00001420/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmaneed8ad22009-05-03 04:46:36 +00001421/// This checks that val is a constant 1.
1422bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
1423 Expr *Arg = TheCall->getArg(1);
Eric Christopher8d0c6212010-04-17 02:26:23 +00001424 llvm::APSInt Result;
Douglas Gregorc25f7662009-05-19 22:10:17 +00001425
Eric Christopher8d0c6212010-04-17 02:26:23 +00001426 // TODO: This is less than ideal. Overload this to take a value.
1427 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1428 return true;
1429
1430 if (Result != 1)
Eli Friedmaneed8ad22009-05-03 04:46:36 +00001431 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
1432 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
1433
1434 return false;
1435}
1436
Ted Kremeneka8890832011-02-24 23:03:04 +00001437// Handle i > 1 ? "x" : "y", recursively.
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001438bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
1439 bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00001440 unsigned format_idx, unsigned firstDataArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001441 bool isPrintf, bool inFunctionCall) {
Ted Kremenek808829352010-09-09 03:51:39 +00001442 tryAgain:
Douglas Gregorc25f7662009-05-19 22:10:17 +00001443 if (E->isTypeDependent() || E->isValueDependent())
1444 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001445
Peter Collingbourne91147592011-04-15 00:35:48 +00001446 E = E->IgnoreParens();
1447
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001448 switch (E->getStmtClass()) {
John McCallc07a0c72011-02-17 10:25:35 +00001449 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001450 case Stmt::ConditionalOperatorClass: {
John McCallc07a0c72011-02-17 10:25:35 +00001451 const AbstractConditionalOperator *C = cast<AbstractConditionalOperator>(E);
Ted Kremenek02087932010-07-16 02:11:22 +00001452 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001453 format_idx, firstDataArg, isPrintf,
1454 inFunctionCall)
John McCallc07a0c72011-02-17 10:25:35 +00001455 && SemaCheckStringLiteral(C->getFalseExpr(), TheCall, HasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001456 format_idx, firstDataArg, isPrintf,
1457 inFunctionCall);
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001458 }
1459
Ted Kremenek1520dae2010-09-09 03:51:42 +00001460 case Stmt::IntegerLiteralClass:
1461 // Technically -Wformat-nonliteral does not warn about this case.
1462 // The behavior of printf and friends in this case is implementation
1463 // dependent. Ideally if the format string cannot be null then
1464 // it should have a 'nonnull' attribute in the function prototype.
1465 return true;
1466
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001467 case Stmt::ImplicitCastExprClass: {
Ted Kremenek808829352010-09-09 03:51:39 +00001468 E = cast<ImplicitCastExpr>(E)->getSubExpr();
1469 goto tryAgain;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001470 }
1471
John McCallc07a0c72011-02-17 10:25:35 +00001472 case Stmt::OpaqueValueExprClass:
1473 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
1474 E = src;
1475 goto tryAgain;
1476 }
1477 return false;
1478
Ted Kremeneka8890832011-02-24 23:03:04 +00001479 case Stmt::PredefinedExprClass:
1480 // While __func__, etc., are technically not string literals, they
1481 // cannot contain format specifiers and thus are not a security
1482 // liability.
1483 return true;
1484
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001485 case Stmt::DeclRefExprClass: {
1486 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001487
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001488 // As an exception, do not flag errors for variables binding to
1489 // const string literals.
1490 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1491 bool isConstant = false;
1492 QualType T = DR->getType();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001493
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001494 if (const ArrayType *AT = Context.getAsArrayType(T)) {
1495 isConstant = AT->getElementType().isConstant(Context);
Mike Stump12b8ce12009-08-04 21:02:39 +00001496 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump11289f42009-09-09 15:08:12 +00001497 isConstant = T.isConstant(Context) &&
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001498 PT->getPointeeType().isConstant(Context);
1499 }
Mike Stump11289f42009-09-09 15:08:12 +00001500
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001501 if (isConstant) {
Sebastian Redl5ca79842010-02-01 20:16:42 +00001502 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001503 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek02087932010-07-16 02:11:22 +00001504 HasVAListArg, format_idx, firstDataArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001505 isPrintf, /*inFunctionCall*/false);
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001506 }
Mike Stump11289f42009-09-09 15:08:12 +00001507
Anders Carlssonb012ca92009-06-28 19:55:58 +00001508 // For vprintf* functions (i.e., HasVAListArg==true), we add a
1509 // special check to see if the format string is a function parameter
1510 // of the function calling the printf function. If the function
1511 // has an attribute indicating it is a printf-like function, then we
1512 // should suppress warnings concerning non-literals being used in a call
1513 // to a vprintf function. For example:
1514 //
1515 // void
1516 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1517 // va_list ap;
1518 // va_start(ap, fmt);
1519 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1520 // ...
1521 //
1522 //
1523 // FIXME: We don't have full attribute support yet, so just check to see
1524 // if the argument is a DeclRefExpr that references a parameter. We'll
1525 // add proper support for checking the attribute later.
1526 if (HasVAListArg)
1527 if (isa<ParmVarDecl>(VD))
1528 return true;
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001529 }
Mike Stump11289f42009-09-09 15:08:12 +00001530
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001531 return false;
1532 }
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001533
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001534 case Stmt::CallExprClass: {
1535 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001536 if (const ImplicitCastExpr *ICE
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001537 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1538 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1539 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001540 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001541 unsigned ArgIndex = FA->getFormatIdx();
1542 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump11289f42009-09-09 15:08:12 +00001543
1544 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001545 format_idx, firstDataArg, isPrintf,
1546 inFunctionCall);
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001547 }
1548 }
1549 }
1550 }
Mike Stump11289f42009-09-09 15:08:12 +00001551
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001552 return false;
1553 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001554 case Stmt::ObjCStringLiteralClass:
1555 case Stmt::StringLiteralClass: {
1556 const StringLiteral *StrE = NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001557
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001558 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001559 StrE = ObjCFExpr->getString();
1560 else
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001561 StrE = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001562
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001563 if (StrE) {
Ted Kremenek02087932010-07-16 02:11:22 +00001564 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001565 firstDataArg, isPrintf, inFunctionCall);
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001566 return true;
1567 }
Mike Stump11289f42009-09-09 15:08:12 +00001568
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001569 return false;
1570 }
Mike Stump11289f42009-09-09 15:08:12 +00001571
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001572 default:
1573 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001574 }
1575}
1576
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001577void
Mike Stump11289f42009-09-09 15:08:12 +00001578Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
Nick Lewyckyd4693212011-03-25 01:44:32 +00001579 const Expr * const *ExprArgs,
1580 SourceLocation CallSiteLoc) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001581 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1582 e = NonNull->args_end();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001583 i != e; ++i) {
Nick Lewyckyd4693212011-03-25 01:44:32 +00001584 const Expr *ArgExpr = ExprArgs[*i];
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001585 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00001586 Expr::NPC_ValueDependentIsNotNull))
Nick Lewyckyd4693212011-03-25 01:44:32 +00001587 Diag(CallSiteLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001588 }
1589}
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001590
Ted Kremenek02087932010-07-16 02:11:22 +00001591/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1592/// functions) for correct use of format strings.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001593void
Ted Kremenek02087932010-07-16 02:11:22 +00001594Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1595 unsigned format_idx, unsigned firstDataArg,
1596 bool isPrintf) {
1597
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001598 const Expr *Fn = TheCall->getCallee();
Chris Lattner08464942007-12-28 05:29:59 +00001599
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001600 // The way the format attribute works in GCC, the implicit this argument
1601 // of member functions is counted. However, it doesn't appear in our own
1602 // lists, so decrement format_idx in that case.
1603 if (isa<CXXMemberCallExpr>(TheCall)) {
Chandler Carruth1c8383d2010-11-16 08:49:43 +00001604 const CXXMethodDecl *method_decl =
1605 dyn_cast<CXXMethodDecl>(TheCall->getCalleeDecl());
1606 if (method_decl && method_decl->isInstance()) {
1607 // Catch a format attribute mistakenly referring to the object argument.
1608 if (format_idx == 0)
1609 return;
1610 --format_idx;
1611 if(firstDataArg != 0)
1612 --firstDataArg;
1613 }
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001614 }
1615
Ted Kremenek02087932010-07-16 02:11:22 +00001616 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner08464942007-12-28 05:29:59 +00001617 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek02087932010-07-16 02:11:22 +00001618 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerf490e152008-11-19 05:27:50 +00001619 << Fn->getSourceRange();
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001620 return;
1621 }
Mike Stump11289f42009-09-09 15:08:12 +00001622
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001623 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00001624
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001625 // CHECK: format string is not a string literal.
Mike Stump11289f42009-09-09 15:08:12 +00001626 //
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001627 // Dynamically generated format strings are difficult to
1628 // automatically vet at compile time. Requiring that format strings
1629 // are string literals: (1) permits the checking of format strings by
1630 // the compiler and thereby (2) can practically remove the source of
1631 // many format string exploits.
Ted Kremenek34f664d2008-06-16 18:00:42 +00001632
Mike Stump11289f42009-09-09 15:08:12 +00001633 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek34f664d2008-06-16 18:00:42 +00001634 // C string (e.g. "%d")
Mike Stump11289f42009-09-09 15:08:12 +00001635 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek34f664d2008-06-16 18:00:42 +00001636 // the same format string checking logic for both ObjC and C strings.
Chris Lattnere009a882009-04-29 04:49:34 +00001637 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek02087932010-07-16 02:11:22 +00001638 firstDataArg, isPrintf))
Chris Lattnere009a882009-04-29 04:49:34 +00001639 return; // Literal format string found, check done!
Ted Kremenek34f664d2008-06-16 18:00:42 +00001640
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001641 // If there are no arguments specified, warn with -Wformat-security, otherwise
1642 // warn only with -Wformat-nonliteral.
1643 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump11289f42009-09-09 15:08:12 +00001644 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001645 diag::warn_format_nonliteral_noargs)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001646 << OrigFormatExpr->getSourceRange();
1647 else
Mike Stump11289f42009-09-09 15:08:12 +00001648 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001649 diag::warn_format_nonliteral)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001650 << OrigFormatExpr->getSourceRange();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001651}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001652
Ted Kremenekab278de2010-01-28 23:39:18 +00001653namespace {
Ted Kremenek02087932010-07-16 02:11:22 +00001654class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1655protected:
Ted Kremenekab278de2010-01-28 23:39:18 +00001656 Sema &S;
1657 const StringLiteral *FExpr;
1658 const Expr *OrigFormatExpr;
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001659 const unsigned FirstDataArg;
Ted Kremenekab278de2010-01-28 23:39:18 +00001660 const unsigned NumDataArgs;
1661 const bool IsObjCLiteral;
1662 const char *Beg; // Start of format string.
Ted Kremenek5739de72010-01-29 01:06:55 +00001663 const bool HasVAListArg;
1664 const CallExpr *TheCall;
1665 unsigned FormatIdx;
Ted Kremenek4a49d982010-02-26 19:18:41 +00001666 llvm::BitVector CoveredArgs;
Ted Kremenekd1668192010-02-27 01:41:03 +00001667 bool usesPositionalArgs;
1668 bool atFirstArg;
Richard Trieu03cf7b72011-10-28 00:41:25 +00001669 bool inFunctionCall;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001670public:
Ted Kremenek02087932010-07-16 02:11:22 +00001671 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001672 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremenekab278de2010-01-28 23:39:18 +00001673 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek5739de72010-01-29 01:06:55 +00001674 const char *beg, bool hasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001675 const CallExpr *theCall, unsigned formatIdx,
1676 bool inFunctionCall)
Ted Kremenekab278de2010-01-28 23:39:18 +00001677 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001678 FirstDataArg(firstDataArg),
Ted Kremenek4a49d982010-02-26 19:18:41 +00001679 NumDataArgs(numDataArgs),
Ted Kremenek5739de72010-01-29 01:06:55 +00001680 IsObjCLiteral(isObjCLiteral), Beg(beg),
1681 HasVAListArg(hasVAListArg),
Ted Kremenekd1668192010-02-27 01:41:03 +00001682 TheCall(theCall), FormatIdx(formatIdx),
Richard Trieu03cf7b72011-10-28 00:41:25 +00001683 usesPositionalArgs(false), atFirstArg(true),
1684 inFunctionCall(inFunctionCall) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001685 CoveredArgs.resize(numDataArgs);
1686 CoveredArgs.reset();
1687 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001688
Ted Kremenek019d2242010-01-29 01:50:07 +00001689 void DoneProcessing();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001690
Ted Kremenek02087932010-07-16 02:11:22 +00001691 void HandleIncompleteSpecifier(const char *startSpecifier,
1692 unsigned specifierLen);
1693
Ted Kremenekd1668192010-02-27 01:41:03 +00001694 virtual void HandleInvalidPosition(const char *startSpecifier,
1695 unsigned specifierLen,
Ted Kremenek02087932010-07-16 02:11:22 +00001696 analyze_format_string::PositionContext p);
Ted Kremenekd1668192010-02-27 01:41:03 +00001697
1698 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1699
Ted Kremenekab278de2010-01-28 23:39:18 +00001700 void HandleNullChar(const char *nullCharacter);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001701
Richard Trieu03cf7b72011-10-28 00:41:25 +00001702 template <typename Range>
1703 static void EmitFormatDiagnostic(Sema &S, bool inFunctionCall,
1704 const Expr *ArgumentExpr,
1705 PartialDiagnostic PDiag,
1706 SourceLocation StringLoc,
1707 bool IsStringLocation, Range StringRange,
1708 FixItHint Fixit = FixItHint());
1709
Ted Kremenek02087932010-07-16 02:11:22 +00001710protected:
Ted Kremenekce815422010-07-19 21:25:57 +00001711 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1712 const char *startSpec,
1713 unsigned specifierLen,
1714 const char *csStart, unsigned csLen);
Richard Trieu03cf7b72011-10-28 00:41:25 +00001715
1716 void HandlePositionalNonpositionalArgs(SourceLocation Loc,
1717 const char *startSpec,
1718 unsigned specifierLen);
Ted Kremenekce815422010-07-19 21:25:57 +00001719
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001720 SourceRange getFormatStringRange();
Ted Kremenek02087932010-07-16 02:11:22 +00001721 CharSourceRange getSpecifierRange(const char *startSpecifier,
1722 unsigned specifierLen);
Ted Kremenekab278de2010-01-28 23:39:18 +00001723 SourceLocation getLocationOfByte(const char *x);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001724
Ted Kremenek5739de72010-01-29 01:06:55 +00001725 const Expr *getDataArg(unsigned i) const;
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001726
1727 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1728 const analyze_format_string::ConversionSpecifier &CS,
1729 const char *startSpecifier, unsigned specifierLen,
1730 unsigned argIndex);
Richard Trieu03cf7b72011-10-28 00:41:25 +00001731
1732 template <typename Range>
1733 void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
1734 bool IsStringLocation, Range StringRange,
1735 FixItHint Fixit = FixItHint());
1736
1737 void CheckPositionalAndNonpositionalArgs(
1738 const analyze_format_string::FormatSpecifier *FS);
Ted Kremenekab278de2010-01-28 23:39:18 +00001739};
1740}
1741
Ted Kremenek02087932010-07-16 02:11:22 +00001742SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremenekab278de2010-01-28 23:39:18 +00001743 return OrigFormatExpr->getSourceRange();
1744}
1745
Ted Kremenek02087932010-07-16 02:11:22 +00001746CharSourceRange CheckFormatHandler::
1747getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care3f272b82010-06-21 21:21:01 +00001748 SourceLocation Start = getLocationOfByte(startSpecifier);
1749 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1750
1751 // Advance the end SourceLocation by one due to half-open ranges.
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +00001752 End = End.getLocWithOffset(1);
Tom Care3f272b82010-06-21 21:21:01 +00001753
1754 return CharSourceRange::getCharRange(Start, End);
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001755}
1756
Ted Kremenek02087932010-07-16 02:11:22 +00001757SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001758 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremenekab278de2010-01-28 23:39:18 +00001759}
1760
Ted Kremenek02087932010-07-16 02:11:22 +00001761void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1762 unsigned specifierLen){
Richard Trieu03cf7b72011-10-28 00:41:25 +00001763 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
1764 getLocationOfByte(startSpecifier),
1765 /*IsStringLocation*/true,
1766 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001767}
1768
Ted Kremenekd1668192010-02-27 01:41:03 +00001769void
Ted Kremenek02087932010-07-16 02:11:22 +00001770CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1771 analyze_format_string::PositionContext p) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00001772 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
1773 << (unsigned) p,
1774 getLocationOfByte(startPos), /*IsStringLocation*/true,
1775 getSpecifierRange(startPos, posLen));
Ted Kremenekd1668192010-02-27 01:41:03 +00001776}
1777
Ted Kremenek02087932010-07-16 02:11:22 +00001778void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekd1668192010-02-27 01:41:03 +00001779 unsigned posLen) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00001780 EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
1781 getLocationOfByte(startPos),
1782 /*IsStringLocation*/true,
1783 getSpecifierRange(startPos, posLen));
Ted Kremenekd1668192010-02-27 01:41:03 +00001784}
1785
Ted Kremenek02087932010-07-16 02:11:22 +00001786void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
Ted Kremenek0d5b9ef2011-03-15 21:18:48 +00001787 if (!IsObjCLiteral) {
1788 // The presence of a null character is likely an error.
Richard Trieu03cf7b72011-10-28 00:41:25 +00001789 EmitFormatDiagnostic(
1790 S.PDiag(diag::warn_printf_format_string_contains_null_char),
1791 getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
1792 getFormatStringRange());
Ted Kremenek0d5b9ef2011-03-15 21:18:48 +00001793 }
Ted Kremenek02087932010-07-16 02:11:22 +00001794}
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001795
Ted Kremenek02087932010-07-16 02:11:22 +00001796const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1797 return TheCall->getArg(FirstDataArg + i);
1798}
1799
1800void CheckFormatHandler::DoneProcessing() {
1801 // Does the number of data arguments exceed the number of
1802 // format conversions in the format string?
1803 if (!HasVAListArg) {
1804 // Find any arguments that weren't covered.
1805 CoveredArgs.flip();
1806 signed notCoveredArg = CoveredArgs.find_first();
1807 if (notCoveredArg >= 0) {
1808 assert((unsigned)notCoveredArg < NumDataArgs);
Richard Trieu03cf7b72011-10-28 00:41:25 +00001809 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_data_arg_not_used),
1810 getDataArg((unsigned) notCoveredArg)->getLocStart(),
1811 /*IsStringLocation*/false, getFormatStringRange());
Ted Kremenek02087932010-07-16 02:11:22 +00001812 }
1813 }
1814}
1815
Ted Kremenekce815422010-07-19 21:25:57 +00001816bool
1817CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1818 SourceLocation Loc,
1819 const char *startSpec,
1820 unsigned specifierLen,
1821 const char *csStart,
1822 unsigned csLen) {
1823
1824 bool keepGoing = true;
1825 if (argIndex < NumDataArgs) {
1826 // Consider the argument coverered, even though the specifier doesn't
1827 // make sense.
1828 CoveredArgs.set(argIndex);
1829 }
1830 else {
1831 // If argIndex exceeds the number of data arguments we
1832 // don't issue a warning because that is just a cascade of warnings (and
1833 // they may have intended '%%' anyway). We don't want to continue processing
1834 // the format string after this point, however, as we will like just get
1835 // gibberish when trying to match arguments.
1836 keepGoing = false;
1837 }
1838
Richard Trieu03cf7b72011-10-28 00:41:25 +00001839 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_conversion)
1840 << StringRef(csStart, csLen),
1841 Loc, /*IsStringLocation*/true,
1842 getSpecifierRange(startSpec, specifierLen));
Ted Kremenekce815422010-07-19 21:25:57 +00001843
1844 return keepGoing;
1845}
1846
Richard Trieu03cf7b72011-10-28 00:41:25 +00001847void
1848CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
1849 const char *startSpec,
1850 unsigned specifierLen) {
1851 EmitFormatDiagnostic(
1852 S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
1853 Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
1854}
1855
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001856bool
1857CheckFormatHandler::CheckNumArgs(
1858 const analyze_format_string::FormatSpecifier &FS,
1859 const analyze_format_string::ConversionSpecifier &CS,
1860 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1861
1862 if (argIndex >= NumDataArgs) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00001863 PartialDiagnostic PDiag = FS.usesPositionalArg()
1864 ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
1865 << (argIndex+1) << NumDataArgs)
1866 : S.PDiag(diag::warn_printf_insufficient_data_args);
1867 EmitFormatDiagnostic(
1868 PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
1869 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001870 return false;
1871 }
1872 return true;
1873}
1874
Richard Trieu03cf7b72011-10-28 00:41:25 +00001875template<typename Range>
1876void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
1877 SourceLocation Loc,
1878 bool IsStringLocation,
1879 Range StringRange,
1880 FixItHint FixIt) {
1881 EmitFormatDiagnostic(S, inFunctionCall, TheCall->getArg(FormatIdx), PDiag,
1882 Loc, IsStringLocation, StringRange, FixIt);
1883}
1884
1885/// \brief If the format string is not within the funcion call, emit a note
1886/// so that the function call and string are in diagnostic messages.
1887///
1888/// \param inFunctionCall if true, the format string is within the function
1889/// call and only one diagnostic message will be produced. Otherwise, an
1890/// extra note will be emitted pointing to location of the format string.
1891///
1892/// \param ArgumentExpr the expression that is passed as the format string
1893/// argument in the function call. Used for getting locations when two
1894/// diagnostics are emitted.
1895///
1896/// \param PDiag the callee should already have provided any strings for the
1897/// diagnostic message. This function only adds locations and fixits
1898/// to diagnostics.
1899///
1900/// \param Loc primary location for diagnostic. If two diagnostics are
1901/// required, one will be at Loc and a new SourceLocation will be created for
1902/// the other one.
1903///
1904/// \param IsStringLocation if true, Loc points to the format string should be
1905/// used for the note. Otherwise, Loc points to the argument list and will
1906/// be used with PDiag.
1907///
1908/// \param StringRange some or all of the string to highlight. This is
1909/// templated so it can accept either a CharSourceRange or a SourceRange.
1910///
1911/// \param Fixit optional fix it hint for the format string.
1912template<typename Range>
1913void CheckFormatHandler::EmitFormatDiagnostic(Sema &S, bool InFunctionCall,
1914 const Expr *ArgumentExpr,
1915 PartialDiagnostic PDiag,
1916 SourceLocation Loc,
1917 bool IsStringLocation,
1918 Range StringRange,
1919 FixItHint FixIt) {
1920 if (InFunctionCall)
1921 S.Diag(Loc, PDiag) << StringRange << FixIt;
1922 else {
1923 S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
1924 << ArgumentExpr->getSourceRange();
1925 S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
1926 diag::note_format_string_defined)
1927 << StringRange << FixIt;
1928 }
1929}
1930
Ted Kremenek02087932010-07-16 02:11:22 +00001931//===--- CHECK: Printf format string checking ------------------------------===//
1932
1933namespace {
1934class CheckPrintfHandler : public CheckFormatHandler {
1935public:
1936 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1937 const Expr *origFormatExpr, unsigned firstDataArg,
1938 unsigned numDataArgs, bool isObjCLiteral,
1939 const char *beg, bool hasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001940 const CallExpr *theCall, unsigned formatIdx,
1941 bool inFunctionCall)
Ted Kremenek02087932010-07-16 02:11:22 +00001942 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1943 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00001944 theCall, formatIdx, inFunctionCall) {}
Ted Kremenek02087932010-07-16 02:11:22 +00001945
1946
1947 bool HandleInvalidPrintfConversionSpecifier(
1948 const analyze_printf::PrintfSpecifier &FS,
1949 const char *startSpecifier,
1950 unsigned specifierLen);
1951
1952 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1953 const char *startSpecifier,
1954 unsigned specifierLen);
1955
1956 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1957 const char *startSpecifier, unsigned specifierLen);
1958 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1959 const analyze_printf::OptionalAmount &Amt,
1960 unsigned type,
1961 const char *startSpecifier, unsigned specifierLen);
1962 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1963 const analyze_printf::OptionalFlag &flag,
1964 const char *startSpecifier, unsigned specifierLen);
1965 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1966 const analyze_printf::OptionalFlag &ignoredFlag,
1967 const analyze_printf::OptionalFlag &flag,
1968 const char *startSpecifier, unsigned specifierLen);
1969};
1970}
1971
1972bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1973 const analyze_printf::PrintfSpecifier &FS,
1974 const char *startSpecifier,
1975 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001976 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00001977 FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00001978
Ted Kremenekce815422010-07-19 21:25:57 +00001979 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1980 getLocationOfByte(CS.getStart()),
1981 startSpecifier, specifierLen,
1982 CS.getStart(), CS.getLength());
Ted Kremenek94af5752010-01-29 02:40:24 +00001983}
1984
Ted Kremenek02087932010-07-16 02:11:22 +00001985bool CheckPrintfHandler::HandleAmount(
1986 const analyze_format_string::OptionalAmount &Amt,
1987 unsigned k, const char *startSpecifier,
1988 unsigned specifierLen) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001989
1990 if (Amt.hasDataArgument()) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001991 if (!HasVAListArg) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001992 unsigned argIndex = Amt.getArgIndex();
1993 if (argIndex >= NumDataArgs) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00001994 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
1995 << k,
1996 getLocationOfByte(Amt.getStart()),
1997 /*IsStringLocation*/true,
1998 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek5739de72010-01-29 01:06:55 +00001999 // Don't do any more checking. We will just emit
2000 // spurious errors.
2001 return false;
2002 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002003
Ted Kremenek5739de72010-01-29 01:06:55 +00002004 // Type check the data argument. It should be an 'int'.
Ted Kremenek605b0112010-01-29 23:32:22 +00002005 // Although not in conformance with C99, we also allow the argument to be
2006 // an 'unsigned int' as that is a reasonably safe case. GCC also
2007 // doesn't emit a warning for that case.
Ted Kremenek4a49d982010-02-26 19:18:41 +00002008 CoveredArgs.set(argIndex);
2009 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek5739de72010-01-29 01:06:55 +00002010 QualType T = Arg->getType();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002011
2012 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
2013 assert(ATR.isValid());
2014
2015 if (!ATR.matchesType(S.Context, T)) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002016 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
Hans Wennborg772e9272011-12-07 10:33:11 +00002017 << k << ATR.getRepresentativeTypeName(S.Context)
Richard Trieu03cf7b72011-10-28 00:41:25 +00002018 << T << Arg->getSourceRange(),
2019 getLocationOfByte(Amt.getStart()),
2020 /*IsStringLocation*/true,
2021 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek5739de72010-01-29 01:06:55 +00002022 // Don't do any more checking. We will just emit
2023 // spurious errors.
2024 return false;
2025 }
2026 }
2027 }
2028 return true;
2029}
Ted Kremenek5739de72010-01-29 01:06:55 +00002030
Tom Careb49ec692010-06-17 19:00:27 +00002031void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek02087932010-07-16 02:11:22 +00002032 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00002033 const analyze_printf::OptionalAmount &Amt,
2034 unsigned type,
2035 const char *startSpecifier,
2036 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002037 const analyze_printf::PrintfConversionSpecifier &CS =
2038 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00002039
Richard Trieu03cf7b72011-10-28 00:41:25 +00002040 FixItHint fixit =
2041 Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
2042 ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
2043 Amt.getConstantLength()))
2044 : FixItHint();
2045
2046 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
2047 << type << CS.toString(),
2048 getLocationOfByte(Amt.getStart()),
2049 /*IsStringLocation*/true,
2050 getSpecifierRange(startSpecifier, specifierLen),
2051 fixit);
Tom Careb49ec692010-06-17 19:00:27 +00002052}
2053
Ted Kremenek02087932010-07-16 02:11:22 +00002054void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00002055 const analyze_printf::OptionalFlag &flag,
2056 const char *startSpecifier,
2057 unsigned specifierLen) {
2058 // Warn about pointless flag with a fixit removal.
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002059 const analyze_printf::PrintfConversionSpecifier &CS =
2060 FS.getConversionSpecifier();
Richard Trieu03cf7b72011-10-28 00:41:25 +00002061 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
2062 << flag.toString() << CS.toString(),
2063 getLocationOfByte(flag.getPosition()),
2064 /*IsStringLocation*/true,
2065 getSpecifierRange(startSpecifier, specifierLen),
2066 FixItHint::CreateRemoval(
2067 getSpecifierRange(flag.getPosition(), 1)));
Tom Careb49ec692010-06-17 19:00:27 +00002068}
2069
2070void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek02087932010-07-16 02:11:22 +00002071 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00002072 const analyze_printf::OptionalFlag &ignoredFlag,
2073 const analyze_printf::OptionalFlag &flag,
2074 const char *startSpecifier,
2075 unsigned specifierLen) {
2076 // Warn about ignored flag with a fixit removal.
Richard Trieu03cf7b72011-10-28 00:41:25 +00002077 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
2078 << ignoredFlag.toString() << flag.toString(),
2079 getLocationOfByte(ignoredFlag.getPosition()),
2080 /*IsStringLocation*/true,
2081 getSpecifierRange(startSpecifier, specifierLen),
2082 FixItHint::CreateRemoval(
2083 getSpecifierRange(ignoredFlag.getPosition(), 1)));
Tom Careb49ec692010-06-17 19:00:27 +00002084}
2085
Ted Kremenekab278de2010-01-28 23:39:18 +00002086bool
Ted Kremenek02087932010-07-16 02:11:22 +00002087CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenekd31b2632010-02-11 09:27:41 +00002088 &FS,
Ted Kremenekab278de2010-01-28 23:39:18 +00002089 const char *startSpecifier,
2090 unsigned specifierLen) {
2091
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002092 using namespace analyze_format_string;
Ted Kremenekd1668192010-02-27 01:41:03 +00002093 using namespace analyze_printf;
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002094 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenekab278de2010-01-28 23:39:18 +00002095
Ted Kremenek6cd69422010-07-19 22:01:06 +00002096 if (FS.consumesDataArgument()) {
2097 if (atFirstArg) {
2098 atFirstArg = false;
2099 usesPositionalArgs = FS.usesPositionalArg();
2100 }
2101 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002102 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2103 startSpecifier, specifierLen);
Ted Kremenek6cd69422010-07-19 22:01:06 +00002104 return false;
2105 }
Ted Kremenek5739de72010-01-29 01:06:55 +00002106 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002107
Ted Kremenekd1668192010-02-27 01:41:03 +00002108 // First check if the field width, precision, and conversion specifier
2109 // have matching data arguments.
2110 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
2111 startSpecifier, specifierLen)) {
2112 return false;
2113 }
2114
2115 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
2116 startSpecifier, specifierLen)) {
Ted Kremenek5739de72010-01-29 01:06:55 +00002117 return false;
2118 }
2119
Ted Kremenek8d9842d2010-01-29 20:55:36 +00002120 if (!CS.consumesDataArgument()) {
2121 // FIXME: Technically specifying a precision or field width here
2122 // makes no sense. Worth issuing a warning at some point.
Ted Kremenekfb45d352010-02-10 02:16:30 +00002123 return true;
Ted Kremenek8d9842d2010-01-29 20:55:36 +00002124 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002125
Ted Kremenek4a49d982010-02-26 19:18:41 +00002126 // Consume the argument.
2127 unsigned argIndex = FS.getArgIndex();
Ted Kremenek09597b42010-02-27 08:34:51 +00002128 if (argIndex < NumDataArgs) {
2129 // The check to see if the argIndex is valid will come later.
2130 // We set the bit here because we may exit early from this
2131 // function if we encounter some other error.
2132 CoveredArgs.set(argIndex);
2133 }
Ted Kremenek4a49d982010-02-26 19:18:41 +00002134
2135 // Check for using an Objective-C specific conversion specifier
2136 // in a non-ObjC literal.
2137 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek02087932010-07-16 02:11:22 +00002138 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
2139 specifierLen);
Ted Kremenek4a49d982010-02-26 19:18:41 +00002140 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002141
Tom Careb49ec692010-06-17 19:00:27 +00002142 // Check for invalid use of field width
2143 if (!FS.hasValidFieldWidth()) {
Tom Care3f272b82010-06-21 21:21:01 +00002144 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Careb49ec692010-06-17 19:00:27 +00002145 startSpecifier, specifierLen);
2146 }
2147
2148 // Check for invalid use of precision
2149 if (!FS.hasValidPrecision()) {
2150 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
2151 startSpecifier, specifierLen);
2152 }
2153
2154 // Check each flag does not conflict with any other component.
Ted Kremenekbf4832c2011-01-08 05:28:46 +00002155 if (!FS.hasValidThousandsGroupingPrefix())
2156 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00002157 if (!FS.hasValidLeadingZeros())
2158 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
2159 if (!FS.hasValidPlusPrefix())
2160 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care3f272b82010-06-21 21:21:01 +00002161 if (!FS.hasValidSpacePrefix())
2162 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00002163 if (!FS.hasValidAlternativeForm())
2164 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
2165 if (!FS.hasValidLeftJustified())
2166 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
2167
2168 // Check that flags are not ignored by another flag
Tom Care3f272b82010-06-21 21:21:01 +00002169 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
2170 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
2171 startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00002172 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
2173 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
2174 startSpecifier, specifierLen);
2175
2176 // Check the length modifier is valid with the given conversion specifier.
2177 const LengthModifier &LM = FS.getLengthModifier();
2178 if (!FS.hasValidLengthModifier())
Richard Trieu03cf7b72011-10-28 00:41:25 +00002179 EmitFormatDiagnostic(S.PDiag(diag::warn_format_nonsensical_length)
2180 << LM.toString() << CS.toString(),
2181 getLocationOfByte(LM.getStart()),
2182 /*IsStringLocation*/true,
2183 getSpecifierRange(startSpecifier, specifierLen),
2184 FixItHint::CreateRemoval(
2185 getSpecifierRange(LM.getStart(),
2186 LM.getLength())));
Tom Careb49ec692010-06-17 19:00:27 +00002187
2188 // Are we using '%n'?
Ted Kremenek516ef222010-07-20 20:04:10 +00002189 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Careb49ec692010-06-17 19:00:27 +00002190 // Issue a warning about this being a possible security issue.
Richard Trieu03cf7b72011-10-28 00:41:25 +00002191 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_write_back),
2192 getLocationOfByte(CS.getStart()),
2193 /*IsStringLocation*/true,
2194 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00002195 // Continue checking the other format specifiers.
2196 return true;
2197 }
Ted Kremenekd31b2632010-02-11 09:27:41 +00002198
Ted Kremenek9fcd8302010-01-29 01:43:31 +00002199 // The remaining checks depend on the data arguments.
2200 if (HasVAListArg)
2201 return true;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002202
Ted Kremenek6adb7e32010-07-26 19:45:42 +00002203 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek9fcd8302010-01-29 01:43:31 +00002204 return false;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002205
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002206 // Now type check the data expression that matches the
2207 // format specifier.
2208 const Expr *Ex = getDataArg(argIndex);
Nick Lewycky45ccba62011-12-02 23:21:43 +00002209 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002210 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
2211 // Check if we didn't match because of an implicit cast from a 'char'
2212 // or 'short' to an 'int'. This is done because printf is a varargs
2213 // function.
2214 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
Ted Kremenek12a37de2010-10-21 04:00:58 +00002215 if (ICE->getType() == S.Context.IntTy) {
2216 // All further checking is done on the subexpression.
2217 Ex = ICE->getSubExpr();
2218 if (ATR.matchesType(S.Context, Ex->getType()))
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002219 return true;
Ted Kremenek12a37de2010-10-21 04:00:58 +00002220 }
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002221
2222 // We may be able to offer a FixItHint if it is a supported type.
2223 PrintfSpecifier fixedFS = FS;
Hans Wennborgf99d04f2011-10-18 08:10:06 +00002224 bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002225
2226 if (success) {
2227 // Get the fix string from the fixed format specifier
2228 llvm::SmallString<128> buf;
2229 llvm::raw_svector_ostream os(buf);
2230 fixedFS.toString(os);
2231
Richard Trieu03cf7b72011-10-28 00:41:25 +00002232 EmitFormatDiagnostic(
2233 S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborg772e9272011-12-07 10:33:11 +00002234 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Richard Trieu03cf7b72011-10-28 00:41:25 +00002235 << Ex->getSourceRange(),
2236 getLocationOfByte(CS.getStart()),
2237 /*IsStringLocation*/true,
2238 getSpecifierRange(startSpecifier, specifierLen),
2239 FixItHint::CreateReplacement(
2240 getSpecifierRange(startSpecifier, specifierLen),
2241 os.str()));
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002242 }
2243 else {
2244 S.Diag(getLocationOfByte(CS.getStart()),
2245 diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborg772e9272011-12-07 10:33:11 +00002246 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00002247 << getSpecifierRange(startSpecifier, specifierLen)
2248 << Ex->getSourceRange();
2249 }
2250 }
2251
Ted Kremenekab278de2010-01-28 23:39:18 +00002252 return true;
2253}
2254
Ted Kremenek02087932010-07-16 02:11:22 +00002255//===--- CHECK: Scanf format string checking ------------------------------===//
2256
2257namespace {
2258class CheckScanfHandler : public CheckFormatHandler {
2259public:
2260 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
2261 const Expr *origFormatExpr, unsigned firstDataArg,
2262 unsigned numDataArgs, bool isObjCLiteral,
2263 const char *beg, bool hasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00002264 const CallExpr *theCall, unsigned formatIdx,
2265 bool inFunctionCall)
Ted Kremenek02087932010-07-16 02:11:22 +00002266 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
2267 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00002268 theCall, formatIdx, inFunctionCall) {}
Ted Kremenek02087932010-07-16 02:11:22 +00002269
2270 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
2271 const char *startSpecifier,
2272 unsigned specifierLen);
Ted Kremenekce815422010-07-19 21:25:57 +00002273
2274 bool HandleInvalidScanfConversionSpecifier(
2275 const analyze_scanf::ScanfSpecifier &FS,
2276 const char *startSpecifier,
2277 unsigned specifierLen);
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00002278
2279 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek02087932010-07-16 02:11:22 +00002280};
Ted Kremenek019d2242010-01-29 01:50:07 +00002281}
Ted Kremenekab278de2010-01-28 23:39:18 +00002282
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00002283void CheckScanfHandler::HandleIncompleteScanList(const char *start,
2284 const char *end) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002285 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
2286 getLocationOfByte(end), /*IsStringLocation*/true,
2287 getSpecifierRange(start, end - start));
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00002288}
2289
Ted Kremenekce815422010-07-19 21:25:57 +00002290bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
2291 const analyze_scanf::ScanfSpecifier &FS,
2292 const char *startSpecifier,
2293 unsigned specifierLen) {
2294
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002295 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00002296 FS.getConversionSpecifier();
2297
2298 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
2299 getLocationOfByte(CS.getStart()),
2300 startSpecifier, specifierLen,
2301 CS.getStart(), CS.getLength());
2302}
2303
Ted Kremenek02087932010-07-16 02:11:22 +00002304bool CheckScanfHandler::HandleScanfSpecifier(
2305 const analyze_scanf::ScanfSpecifier &FS,
2306 const char *startSpecifier,
2307 unsigned specifierLen) {
2308
2309 using namespace analyze_scanf;
2310 using namespace analyze_format_string;
2311
Ted Kremenekf03e6d852010-07-20 20:04:27 +00002312 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00002313
Ted Kremenek6cd69422010-07-19 22:01:06 +00002314 // Handle case where '%' and '*' don't consume an argument. These shouldn't
2315 // be used to decide if we are using positional arguments consistently.
2316 if (FS.consumesDataArgument()) {
2317 if (atFirstArg) {
2318 atFirstArg = false;
2319 usesPositionalArgs = FS.usesPositionalArg();
2320 }
2321 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002322 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2323 startSpecifier, specifierLen);
Ted Kremenek6cd69422010-07-19 22:01:06 +00002324 return false;
2325 }
Ted Kremenek02087932010-07-16 02:11:22 +00002326 }
2327
2328 // Check if the field with is non-zero.
2329 const OptionalAmount &Amt = FS.getFieldWidth();
2330 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
2331 if (Amt.getConstantAmount() == 0) {
2332 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
2333 Amt.getConstantLength());
Richard Trieu03cf7b72011-10-28 00:41:25 +00002334 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
2335 getLocationOfByte(Amt.getStart()),
2336 /*IsStringLocation*/true, R,
2337 FixItHint::CreateRemoval(R));
Ted Kremenek02087932010-07-16 02:11:22 +00002338 }
2339 }
2340
2341 if (!FS.consumesDataArgument()) {
2342 // FIXME: Technically specifying a precision or field width here
2343 // makes no sense. Worth issuing a warning at some point.
2344 return true;
2345 }
2346
2347 // Consume the argument.
2348 unsigned argIndex = FS.getArgIndex();
2349 if (argIndex < NumDataArgs) {
2350 // The check to see if the argIndex is valid will come later.
2351 // We set the bit here because we may exit early from this
2352 // function if we encounter some other error.
2353 CoveredArgs.set(argIndex);
2354 }
2355
Ted Kremenek4407ea42010-07-20 20:04:47 +00002356 // Check the length modifier is valid with the given conversion specifier.
2357 const LengthModifier &LM = FS.getLengthModifier();
2358 if (!FS.hasValidLengthModifier()) {
2359 S.Diag(getLocationOfByte(LM.getStart()),
2360 diag::warn_format_nonsensical_length)
2361 << LM.toString() << CS.toString()
2362 << getSpecifierRange(startSpecifier, specifierLen)
2363 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
2364 LM.getLength()));
2365 }
2366
Ted Kremenek02087932010-07-16 02:11:22 +00002367 // The remaining checks depend on the data arguments.
2368 if (HasVAListArg)
2369 return true;
2370
Ted Kremenek6adb7e32010-07-26 19:45:42 +00002371 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek02087932010-07-16 02:11:22 +00002372 return false;
Ted Kremenek02087932010-07-16 02:11:22 +00002373
2374 // FIXME: Check that the argument type matches the format specifier.
2375
2376 return true;
2377}
2378
2379void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenekfb45d352010-02-10 02:16:30 +00002380 const Expr *OrigFormatExpr,
2381 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00002382 unsigned format_idx, unsigned firstDataArg,
Richard Trieu03cf7b72011-10-28 00:41:25 +00002383 bool isPrintf, bool inFunctionCall) {
Ted Kremenek02087932010-07-16 02:11:22 +00002384
Ted Kremenekab278de2010-01-28 23:39:18 +00002385 // CHECK: is the format string a wide literal?
Douglas Gregorfb65e592011-07-27 05:40:30 +00002386 if (!FExpr->isAscii()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002387 CheckFormatHandler::EmitFormatDiagnostic(
2388 *this, inFunctionCall, TheCall->getArg(format_idx),
2389 PDiag(diag::warn_format_string_is_wide_literal), FExpr->getLocStart(),
2390 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremenekab278de2010-01-28 23:39:18 +00002391 return;
2392 }
Ted Kremenek02087932010-07-16 02:11:22 +00002393
Ted Kremenekab278de2010-01-28 23:39:18 +00002394 // Str - The format string. NOTE: this is NOT null-terminated!
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002395 StringRef StrRef = FExpr->getString();
Benjamin Kramer35b077e2010-08-17 12:54:38 +00002396 const char *Str = StrRef.data();
2397 unsigned StrLen = StrRef.size();
Ted Kremenek6e302b22011-09-29 05:52:16 +00002398 const unsigned numDataArgs = TheCall->getNumArgs() - firstDataArg;
Ted Kremenek02087932010-07-16 02:11:22 +00002399
Ted Kremenekab278de2010-01-28 23:39:18 +00002400 // CHECK: empty format string?
Ted Kremenek6e302b22011-09-29 05:52:16 +00002401 if (StrLen == 0 && numDataArgs > 0) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00002402 CheckFormatHandler::EmitFormatDiagnostic(
2403 *this, inFunctionCall, TheCall->getArg(format_idx),
2404 PDiag(diag::warn_empty_format_string), FExpr->getLocStart(),
2405 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremenekab278de2010-01-28 23:39:18 +00002406 return;
2407 }
Ted Kremenek02087932010-07-16 02:11:22 +00002408
2409 if (isPrintf) {
2410 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek6e302b22011-09-29 05:52:16 +00002411 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Richard Trieu03cf7b72011-10-28 00:41:25 +00002412 Str, HasVAListArg, TheCall, format_idx,
2413 inFunctionCall);
Ted Kremenek02087932010-07-16 02:11:22 +00002414
2415 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
2416 H.DoneProcessing();
2417 }
2418 else {
2419 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek6e302b22011-09-29 05:52:16 +00002420 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Richard Trieu03cf7b72011-10-28 00:41:25 +00002421 Str, HasVAListArg, TheCall, format_idx,
2422 inFunctionCall);
Ted Kremenek02087932010-07-16 02:11:22 +00002423
2424 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
2425 H.DoneProcessing();
2426 }
Ted Kremenekc70ee862010-01-28 01:18:22 +00002427}
2428
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002429//===--- CHECK: Standard memory functions ---------------------------------===//
2430
Douglas Gregora74926b2011-05-03 20:05:22 +00002431/// \brief Determine whether the given type is a dynamic class type (e.g.,
2432/// whether it has a vtable).
2433static bool isDynamicClassType(QualType T) {
2434 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl())
2435 if (CXXRecordDecl *Definition = Record->getDefinition())
2436 if (Definition->isDynamicClass())
2437 return true;
2438
2439 return false;
2440}
2441
Chandler Carruth889ed862011-06-21 23:04:20 +00002442/// \brief If E is a sizeof expression, returns its argument expression,
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002443/// otherwise returns NULL.
2444static const Expr *getSizeOfExprArg(const Expr* E) {
Nico Weberc5e73862011-06-14 16:14:58 +00002445 if (const UnaryExprOrTypeTraitExpr *SizeOf =
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002446 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2447 if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
2448 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
Nico Weberc5e73862011-06-14 16:14:58 +00002449
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002450 return 0;
2451}
2452
Chandler Carruth889ed862011-06-21 23:04:20 +00002453/// \brief If E is a sizeof expression, returns its argument type.
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002454static QualType getSizeOfArgType(const Expr* E) {
2455 if (const UnaryExprOrTypeTraitExpr *SizeOf =
2456 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2457 if (SizeOf->getKind() == clang::UETT_SizeOf)
2458 return SizeOf->getTypeOfArgument();
2459
2460 return QualType();
Nico Weberc5e73862011-06-14 16:14:58 +00002461}
2462
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002463/// \brief Check for dangerous or invalid arguments to memset().
2464///
Chandler Carruthac687262011-06-03 06:23:57 +00002465/// This issues warnings on known problematic, dangerous or unspecified
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +00002466/// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
2467/// function calls.
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002468///
2469/// \param Call The call expression to diagnose.
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +00002470void Sema::CheckMemaccessArguments(const CallExpr *Call,
2471 CheckedMemoryFunction CMF,
2472 IdentifierInfo *FnName) {
Ted Kremenekb5fabb22011-04-28 01:38:02 +00002473 // It is possible to have a non-standard definition of memset. Validate
Douglas Gregor18739c32011-06-16 17:56:04 +00002474 // we have enough arguments, and if not, abort further checking.
Nico Weber39bfed82011-10-13 22:30:23 +00002475 unsigned ExpectedNumArgs = (CMF == CMF_Strndup ? 2 : 3);
2476 if (Call->getNumArgs() < ExpectedNumArgs)
Ted Kremenekb5fabb22011-04-28 01:38:02 +00002477 return;
2478
Nico Weber39bfed82011-10-13 22:30:23 +00002479 unsigned LastArg = (CMF == CMF_Memset || CMF == CMF_Strndup ? 1 : 2);
2480 unsigned LenArg = (CMF == CMF_Strndup ? 1 : 2);
2481 const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002482
2483 // We have special checking when the length is a sizeof expression.
2484 QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
2485 const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
2486 llvm::FoldingSetNodeID SizeOfArgID;
2487
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002488 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
2489 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
Nico Weberc5e73862011-06-14 16:14:58 +00002490 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002491
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002492 QualType DestTy = Dest->getType();
2493 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
2494 QualType PointeeTy = DestPtrTy->getPointeeType();
John McCall31168b02011-06-15 23:02:42 +00002495
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002496 // Never warn about void type pointers. This can be used to suppress
2497 // false positives.
2498 if (PointeeTy->isVoidType())
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002499 continue;
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002500
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002501 // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
2502 // actually comparing the expressions for equality. Because computing the
2503 // expression IDs can be expensive, we only do this if the diagnostic is
2504 // enabled.
2505 if (SizeOfArg &&
2506 Diags.getDiagnosticLevel(diag::warn_sizeof_pointer_expr_memaccess,
2507 SizeOfArg->getExprLoc())) {
2508 // We only compute IDs for expressions if the warning is enabled, and
2509 // cache the sizeof arg's ID.
2510 if (SizeOfArgID == llvm::FoldingSetNodeID())
2511 SizeOfArg->Profile(SizeOfArgID, Context, true);
2512 llvm::FoldingSetNodeID DestID;
2513 Dest->Profile(DestID, Context, true);
2514 if (DestID == SizeOfArgID) {
Nico Weber39bfed82011-10-13 22:30:23 +00002515 // TODO: For strncpy() and friends, this could suggest sizeof(dst)
2516 // over sizeof(src) as well.
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002517 unsigned ActionIdx = 0; // Default is to suggest dereferencing.
2518 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
2519 if (UnaryOp->getOpcode() == UO_AddrOf)
2520 ActionIdx = 1; // If its an address-of operator, just remove it.
2521 if (Context.getTypeSize(PointeeTy) == Context.getCharWidth())
2522 ActionIdx = 2; // If the pointee's size is sizeof(char),
2523 // suggest an explicit length.
Nico Weber39bfed82011-10-13 22:30:23 +00002524 unsigned DestSrcSelect = (CMF == CMF_Strndup ? 1 : ArgIdx);
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002525 DiagRuntimeBehavior(SizeOfArg->getExprLoc(), Dest,
2526 PDiag(diag::warn_sizeof_pointer_expr_memaccess)
Nico Weber39bfed82011-10-13 22:30:23 +00002527 << FnName << DestSrcSelect << ActionIdx
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00002528 << Dest->getSourceRange()
2529 << SizeOfArg->getSourceRange());
2530 break;
2531 }
2532 }
2533
2534 // Also check for cases where the sizeof argument is the exact same
2535 // type as the memory argument, and where it points to a user-defined
2536 // record type.
2537 if (SizeOfArgTy != QualType()) {
2538 if (PointeeTy->isRecordType() &&
2539 Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
2540 DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
2541 PDiag(diag::warn_sizeof_pointer_type_memaccess)
2542 << FnName << SizeOfArgTy << ArgIdx
2543 << PointeeTy << Dest->getSourceRange()
2544 << LenExpr->getSourceRange());
2545 break;
2546 }
Nico Weberc5e73862011-06-14 16:14:58 +00002547 }
2548
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002549 // Always complain about dynamic classes.
John McCall31168b02011-06-15 23:02:42 +00002550 if (isDynamicClassType(PointeeTy))
Matt Beaumont-Gay335e6532011-08-19 20:40:18 +00002551 DiagRuntimeBehavior(
2552 Dest->getExprLoc(), Dest,
2553 PDiag(diag::warn_dyn_class_memaccess)
2554 << (CMF == CMF_Memcmp ? ArgIdx + 2 : ArgIdx) << FnName << PointeeTy
2555 // "overwritten" if we're warning about the destination for any call
2556 // but memcmp; otherwise a verb appropriate to the call.
2557 << (ArgIdx == 0 && CMF != CMF_Memcmp ? 0 : (unsigned)CMF)
2558 << Call->getCallee()->getSourceRange());
Douglas Gregor18739c32011-06-16 17:56:04 +00002559 else if (PointeeTy.hasNonTrivialObjCLifetime() && CMF != CMF_Memset)
Matt Beaumont-Gay335e6532011-08-19 20:40:18 +00002560 DiagRuntimeBehavior(
2561 Dest->getExprLoc(), Dest,
2562 PDiag(diag::warn_arc_object_memaccess)
2563 << ArgIdx << FnName << PointeeTy
2564 << Call->getCallee()->getSourceRange());
John McCall31168b02011-06-15 23:02:42 +00002565 else
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002566 continue;
John McCall31168b02011-06-15 23:02:42 +00002567
2568 DiagRuntimeBehavior(
2569 Dest->getExprLoc(), Dest,
Chandler Carruthac687262011-06-03 06:23:57 +00002570 PDiag(diag::note_bad_memaccess_silence)
Douglas Gregor3bb2a812011-05-03 20:37:33 +00002571 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
2572 break;
2573 }
Chandler Carruth53caa4d2011-04-27 07:05:31 +00002574 }
2575}
2576
Ted Kremenek6865f772011-08-18 20:55:45 +00002577// A little helper routine: ignore addition and subtraction of integer literals.
2578// This intentionally does not ignore all integer constant expressions because
2579// we don't want to remove sizeof().
2580static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
2581 Ex = Ex->IgnoreParenCasts();
2582
2583 for (;;) {
2584 const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
2585 if (!BO || !BO->isAdditiveOp())
2586 break;
2587
2588 const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
2589 const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
2590
2591 if (isa<IntegerLiteral>(RHS))
2592 Ex = LHS;
2593 else if (isa<IntegerLiteral>(LHS))
2594 Ex = RHS;
2595 else
2596 break;
2597 }
2598
2599 return Ex;
2600}
2601
2602// Warn if the user has made the 'size' argument to strlcpy or strlcat
2603// be the size of the source, instead of the destination.
2604void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
2605 IdentifierInfo *FnName) {
2606
2607 // Don't crash if the user has the wrong number of arguments
2608 if (Call->getNumArgs() != 3)
2609 return;
2610
2611 const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
2612 const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
2613 const Expr *CompareWithSrc = NULL;
2614
2615 // Look for 'strlcpy(dst, x, sizeof(x))'
2616 if (const Expr *Ex = getSizeOfExprArg(SizeArg))
2617 CompareWithSrc = Ex;
2618 else {
2619 // Look for 'strlcpy(dst, x, strlen(x))'
2620 if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
Richard Smithd62306a2011-11-10 06:34:14 +00002621 if (SizeCall->isBuiltinCall() == Builtin::BIstrlen
Ted Kremenek6865f772011-08-18 20:55:45 +00002622 && SizeCall->getNumArgs() == 1)
2623 CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
2624 }
2625 }
2626
2627 if (!CompareWithSrc)
2628 return;
2629
2630 // Determine if the argument to sizeof/strlen is equal to the source
2631 // argument. In principle there's all kinds of things you could do
2632 // here, for instance creating an == expression and evaluating it with
2633 // EvaluateAsBooleanCondition, but this uses a more direct technique:
2634 const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
2635 if (!SrcArgDRE)
2636 return;
2637
2638 const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
2639 if (!CompareWithSrcDRE ||
2640 SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
2641 return;
2642
2643 const Expr *OriginalSizeArg = Call->getArg(2);
2644 Diag(CompareWithSrcDRE->getLocStart(), diag::warn_strlcpycat_wrong_size)
2645 << OriginalSizeArg->getSourceRange() << FnName;
2646
2647 // Output a FIXIT hint if the destination is an array (rather than a
2648 // pointer to an array). This could be enhanced to handle some
2649 // pointers if we know the actual size, like if DstArg is 'array+2'
2650 // we could say 'sizeof(array)-2'.
2651 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
Ted Kremenek18db5d42011-08-18 22:48:41 +00002652 QualType DstArgTy = DstArg->getType();
Ted Kremenek6865f772011-08-18 20:55:45 +00002653
Ted Kremenek18db5d42011-08-18 22:48:41 +00002654 // Only handle constant-sized or VLAs, but not flexible members.
2655 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(DstArgTy)) {
2656 // Only issue the FIXIT for arrays of size > 1.
2657 if (CAT->getSize().getSExtValue() <= 1)
2658 return;
2659 } else if (!DstArgTy->isVariableArrayType()) {
2660 return;
Ted Kremenek6865f772011-08-18 20:55:45 +00002661 }
Ted Kremenek18db5d42011-08-18 22:48:41 +00002662
2663 llvm::SmallString<128> sizeString;
2664 llvm::raw_svector_ostream OS(sizeString);
2665 OS << "sizeof(";
Douglas Gregor75acd922011-09-27 23:30:47 +00002666 DstArg->printPretty(OS, Context, 0, getPrintingPolicy());
Ted Kremenek18db5d42011-08-18 22:48:41 +00002667 OS << ")";
2668
2669 Diag(OriginalSizeArg->getLocStart(), diag::note_strlcpycat_wrong_size)
2670 << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
2671 OS.str());
Ted Kremenek6865f772011-08-18 20:55:45 +00002672}
2673
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002674//===--- CHECK: Return Address of Stack Variable --------------------------===//
2675
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002676static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars);
2677static Expr *EvalAddr(Expr* E, SmallVectorImpl<DeclRefExpr *> &refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002678
2679/// CheckReturnStackAddr - Check if a return statement returns the address
2680/// of a stack variable.
2681void
2682Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
2683 SourceLocation ReturnLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00002684
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002685 Expr *stackE = 0;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002686 SmallVector<DeclRefExpr *, 8> refVars;
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002687
2688 // Perform checking for returned stack addresses, local blocks,
2689 // label addresses or references to temporaries.
John McCall31168b02011-06-15 23:02:42 +00002690 if (lhsType->isPointerType() ||
2691 (!getLangOptions().ObjCAutoRefCount && lhsType->isBlockPointerType())) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002692 stackE = EvalAddr(RetValExp, refVars);
Mike Stump12b8ce12009-08-04 21:02:39 +00002693 } else if (lhsType->isReferenceType()) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002694 stackE = EvalVal(RetValExp, refVars);
2695 }
2696
2697 if (stackE == 0)
2698 return; // Nothing suspicious was found.
2699
2700 SourceLocation diagLoc;
2701 SourceRange diagRange;
2702 if (refVars.empty()) {
2703 diagLoc = stackE->getLocStart();
2704 diagRange = stackE->getSourceRange();
2705 } else {
2706 // We followed through a reference variable. 'stackE' contains the
2707 // problematic expression but we will warn at the return statement pointing
2708 // at the reference variable. We will later display the "trail" of
2709 // reference variables using notes.
2710 diagLoc = refVars[0]->getLocStart();
2711 diagRange = refVars[0]->getSourceRange();
2712 }
2713
2714 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
2715 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref
2716 : diag::warn_ret_stack_addr)
2717 << DR->getDecl()->getDeclName() << diagRange;
2718 } else if (isa<BlockExpr>(stackE)) { // local block.
2719 Diag(diagLoc, diag::err_ret_local_block) << diagRange;
2720 } else if (isa<AddrLabelExpr>(stackE)) { // address of label.
2721 Diag(diagLoc, diag::warn_ret_addr_label) << diagRange;
2722 } else { // local temporary.
2723 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref
2724 : diag::warn_ret_local_temp_addr)
2725 << diagRange;
2726 }
2727
2728 // Display the "trail" of reference variables that we followed until we
2729 // found the problematic expression using notes.
2730 for (unsigned i = 0, e = refVars.size(); i != e; ++i) {
2731 VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl());
2732 // If this var binds to another reference var, show the range of the next
2733 // var, otherwise the var binds to the problematic expression, in which case
2734 // show the range of the expression.
2735 SourceRange range = (i < e-1) ? refVars[i+1]->getSourceRange()
2736 : stackE->getSourceRange();
2737 Diag(VD->getLocation(), diag::note_ref_var_local_bind)
2738 << VD->getDeclName() << range;
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002739 }
2740}
2741
2742/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
2743/// check if the expression in a return statement evaluates to an address
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002744/// to a location on the stack, a local block, an address of a label, or a
2745/// reference to local temporary. The recursion is used to traverse the
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002746/// AST of the return expression, with recursion backtracking when we
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002747/// encounter a subexpression that (1) clearly does not lead to one of the
2748/// above problematic expressions (2) is something we cannot determine leads to
2749/// a problematic expression based on such local checking.
2750///
2751/// Both EvalAddr and EvalVal follow through reference variables to evaluate
2752/// the expression that they point to. Such variables are added to the
2753/// 'refVars' vector so that we know what the reference variable "trail" was.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002754///
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00002755/// EvalAddr processes expressions that are pointers that are used as
2756/// references (and not L-values). EvalVal handles all other values.
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002757/// At the base case of the recursion is a check for the above problematic
2758/// expressions.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002759///
2760/// This implementation handles:
2761///
2762/// * pointer-to-pointer casts
2763/// * implicit conversions from array references to pointers
2764/// * taking the address of fields
2765/// * arbitrary interplay between "&" and "*" operators
2766/// * pointer arithmetic from an address of a stack variable
2767/// * taking the address of an array element where the array is on the stack
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002768static Expr *EvalAddr(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002769 if (E->isTypeDependent())
2770 return NULL;
2771
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002772 // We should only be called for evaluating pointer expressions.
David Chisnall9f57c292009-08-17 16:35:33 +00002773 assert((E->getType()->isAnyPointerType() ||
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002774 E->getType()->isBlockPointerType() ||
Ted Kremenek1b0ea822008-01-07 19:49:32 +00002775 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattner934edb22007-12-28 05:31:15 +00002776 "EvalAddr only works on pointers");
Mike Stump11289f42009-09-09 15:08:12 +00002777
Peter Collingbourne91147592011-04-15 00:35:48 +00002778 E = E->IgnoreParens();
2779
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002780 // Our "symbolic interpreter" is just a dispatch off the currently
2781 // viewed AST node. We then recursively traverse the AST by calling
2782 // EvalAddr and EvalVal appropriately.
2783 switch (E->getStmtClass()) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002784 case Stmt::DeclRefExprClass: {
2785 DeclRefExpr *DR = cast<DeclRefExpr>(E);
2786
2787 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
2788 // If this is a reference variable, follow through to the expression that
2789 // it points to.
2790 if (V->hasLocalStorage() &&
2791 V->getType()->isReferenceType() && V->hasInit()) {
2792 // Add the reference variable to the "trail".
2793 refVars.push_back(DR);
2794 return EvalAddr(V->getInit(), refVars);
2795 }
2796
2797 return NULL;
2798 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002799
Chris Lattner934edb22007-12-28 05:31:15 +00002800 case Stmt::UnaryOperatorClass: {
2801 // The only unary operator that make sense to handle here
2802 // is AddrOf. All others don't make sense as pointers.
2803 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002804
John McCalle3027922010-08-25 11:45:40 +00002805 if (U->getOpcode() == UO_AddrOf)
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002806 return EvalVal(U->getSubExpr(), refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002807 else
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002808 return NULL;
2809 }
Mike Stump11289f42009-09-09 15:08:12 +00002810
Chris Lattner934edb22007-12-28 05:31:15 +00002811 case Stmt::BinaryOperatorClass: {
2812 // Handle pointer arithmetic. All other binary operators are not valid
2813 // in this context.
2814 BinaryOperator *B = cast<BinaryOperator>(E);
John McCalle3027922010-08-25 11:45:40 +00002815 BinaryOperatorKind op = B->getOpcode();
Mike Stump11289f42009-09-09 15:08:12 +00002816
John McCalle3027922010-08-25 11:45:40 +00002817 if (op != BO_Add && op != BO_Sub)
Chris Lattner934edb22007-12-28 05:31:15 +00002818 return NULL;
Mike Stump11289f42009-09-09 15:08:12 +00002819
Chris Lattner934edb22007-12-28 05:31:15 +00002820 Expr *Base = B->getLHS();
2821
2822 // Determine which argument is the real pointer base. It could be
2823 // the RHS argument instead of the LHS.
2824 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump11289f42009-09-09 15:08:12 +00002825
Chris Lattner934edb22007-12-28 05:31:15 +00002826 assert (Base->getType()->isPointerType());
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002827 return EvalAddr(Base, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002828 }
Steve Naroff2752a172008-09-10 19:17:48 +00002829
Chris Lattner934edb22007-12-28 05:31:15 +00002830 // For conditional operators we need to see if either the LHS or RHS are
2831 // valid DeclRefExpr*s. If one of them is valid, we return it.
2832 case Stmt::ConditionalOperatorClass: {
2833 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002834
Chris Lattner934edb22007-12-28 05:31:15 +00002835 // Handle the GNU extension for missing LHS.
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002836 if (Expr *lhsExpr = C->getLHS()) {
2837 // In C++, we can have a throw-expression, which has 'void' type.
2838 if (!lhsExpr->getType()->isVoidType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002839 if (Expr* LHS = EvalAddr(lhsExpr, refVars))
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002840 return LHS;
2841 }
Chris Lattner934edb22007-12-28 05:31:15 +00002842
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002843 // In C++, we can have a throw-expression, which has 'void' type.
2844 if (C->getRHS()->getType()->isVoidType())
2845 return NULL;
2846
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002847 return EvalAddr(C->getRHS(), refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002848 }
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002849
2850 case Stmt::BlockExprClass:
John McCallc63de662011-02-02 13:00:07 +00002851 if (cast<BlockExpr>(E)->getBlockDecl()->hasCaptures())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002852 return E; // local block.
2853 return NULL;
2854
2855 case Stmt::AddrLabelExprClass:
2856 return E; // address of label.
Mike Stump11289f42009-09-09 15:08:12 +00002857
John McCall28fc7092011-11-10 05:35:25 +00002858 case Stmt::ExprWithCleanupsClass:
2859 return EvalAddr(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2860
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002861 // For casts, we need to handle conversions from arrays to
2862 // pointer values, and pointer-to-pointer conversions.
Douglas Gregore200adc2008-10-27 19:41:14 +00002863 case Stmt::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00002864 case Stmt::CStyleCastExprClass:
John McCall31168b02011-06-15 23:02:42 +00002865 case Stmt::CXXFunctionalCastExprClass:
2866 case Stmt::ObjCBridgedCastExprClass: {
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00002867 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002868 QualType T = SubExpr->getType();
Mike Stump11289f42009-09-09 15:08:12 +00002869
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002870 if (SubExpr->getType()->isPointerType() ||
2871 SubExpr->getType()->isBlockPointerType() ||
2872 SubExpr->getType()->isObjCQualifiedIdType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002873 return EvalAddr(SubExpr, refVars);
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002874 else if (T->isArrayType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002875 return EvalVal(SubExpr, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002876 else
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002877 return 0;
Chris Lattner934edb22007-12-28 05:31:15 +00002878 }
Mike Stump11289f42009-09-09 15:08:12 +00002879
Chris Lattner934edb22007-12-28 05:31:15 +00002880 // C++ casts. For dynamic casts, static casts, and const casts, we
2881 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregore200adc2008-10-27 19:41:14 +00002882 // through the cast. In the case the dynamic cast doesn't fail (and
2883 // return NULL), we take the conservative route and report cases
Chris Lattner934edb22007-12-28 05:31:15 +00002884 // where we return the address of a stack variable. For Reinterpre
Douglas Gregore200adc2008-10-27 19:41:14 +00002885 // FIXME: The comment about is wrong; we're not always converting
2886 // from pointer to pointer. I'm guessing that this code should also
Mike Stump11289f42009-09-09 15:08:12 +00002887 // handle references to objects.
2888 case Stmt::CXXStaticCastExprClass:
2889 case Stmt::CXXDynamicCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00002890 case Stmt::CXXConstCastExprClass:
2891 case Stmt::CXXReinterpretCastExprClass: {
2892 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002893 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002894 return EvalAddr(S, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002895 else
2896 return NULL;
Chris Lattner934edb22007-12-28 05:31:15 +00002897 }
Mike Stump11289f42009-09-09 15:08:12 +00002898
Douglas Gregorfe314812011-06-21 17:03:29 +00002899 case Stmt::MaterializeTemporaryExprClass:
2900 if (Expr *Result = EvalAddr(
2901 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
2902 refVars))
2903 return Result;
2904
2905 return E;
2906
Chris Lattner934edb22007-12-28 05:31:15 +00002907 // Everything else: we simply don't reason about them.
2908 default:
2909 return NULL;
2910 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002911}
Mike Stump11289f42009-09-09 15:08:12 +00002912
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002913
2914/// EvalVal - This function is complements EvalAddr in the mutual recursion.
2915/// See the comments for EvalAddr for more details.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002916static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002917do {
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00002918 // We should only be called for evaluating non-pointer expressions, or
2919 // expressions with a pointer type that are not used as references but instead
2920 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump11289f42009-09-09 15:08:12 +00002921
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002922 // Our "symbolic interpreter" is just a dispatch off the currently
2923 // viewed AST node. We then recursively traverse the AST by calling
2924 // EvalAddr and EvalVal appropriately.
Peter Collingbourne91147592011-04-15 00:35:48 +00002925
2926 E = E->IgnoreParens();
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002927 switch (E->getStmtClass()) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002928 case Stmt::ImplicitCastExprClass: {
2929 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall2536c6d2010-08-25 10:28:54 +00002930 if (IE->getValueKind() == VK_LValue) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002931 E = IE->getSubExpr();
2932 continue;
2933 }
2934 return NULL;
2935 }
2936
John McCall28fc7092011-11-10 05:35:25 +00002937 case Stmt::ExprWithCleanupsClass:
2938 return EvalVal(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2939
Douglas Gregor4bd90e52009-10-23 18:54:35 +00002940 case Stmt::DeclRefExprClass: {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002941 // When we hit a DeclRefExpr we are looking at code that refers to a
2942 // variable's name. If it's not a reference variable we check if it has
2943 // local storage within the function, and if so, return the expression.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002944 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002945
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002946 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002947 if (V->hasLocalStorage()) {
2948 if (!V->getType()->isReferenceType())
2949 return DR;
2950
2951 // Reference variable, follow through to the expression that
2952 // it points to.
2953 if (V->hasInit()) {
2954 // Add the reference variable to the "trail".
2955 refVars.push_back(DR);
2956 return EvalVal(V->getInit(), refVars);
2957 }
2958 }
Mike Stump11289f42009-09-09 15:08:12 +00002959
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002960 return NULL;
2961 }
Mike Stump11289f42009-09-09 15:08:12 +00002962
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002963 case Stmt::UnaryOperatorClass: {
2964 // The only unary operator that make sense to handle here
2965 // is Deref. All others don't resolve to a "name." This includes
2966 // handling all sorts of rvalues passed to a unary operator.
2967 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002968
John McCalle3027922010-08-25 11:45:40 +00002969 if (U->getOpcode() == UO_Deref)
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002970 return EvalAddr(U->getSubExpr(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002971
2972 return NULL;
2973 }
Mike Stump11289f42009-09-09 15:08:12 +00002974
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002975 case Stmt::ArraySubscriptExprClass: {
2976 // Array subscripts are potential references to data on the stack. We
2977 // retrieve the DeclRefExpr* for the array variable if it indeed
2978 // has local storage.
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002979 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002980 }
Mike Stump11289f42009-09-09 15:08:12 +00002981
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002982 case Stmt::ConditionalOperatorClass: {
2983 // For conditional operators we need to see if either the LHS or RHS are
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002984 // non-NULL Expr's. If one is non-NULL, we return it.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002985 ConditionalOperator *C = cast<ConditionalOperator>(E);
2986
Anders Carlsson801c5c72007-11-30 19:04:31 +00002987 // Handle the GNU extension for missing LHS.
2988 if (Expr *lhsExpr = C->getLHS())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002989 if (Expr *LHS = EvalVal(lhsExpr, refVars))
Anders Carlsson801c5c72007-11-30 19:04:31 +00002990 return LHS;
2991
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002992 return EvalVal(C->getRHS(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002993 }
Mike Stump11289f42009-09-09 15:08:12 +00002994
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002995 // Accesses to members are potential references to data on the stack.
Douglas Gregorf405d7e2009-08-31 23:41:50 +00002996 case Stmt::MemberExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002997 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002998
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002999 // Check for indirect access. We only want direct field accesses.
Ted Kremenekcbe6b0b2010-09-02 01:12:13 +00003000 if (M->isArrow())
Ted Kremenekcff94fa2007-08-17 16:46:58 +00003001 return NULL;
Ted Kremenekcbe6b0b2010-09-02 01:12:13 +00003002
3003 // Check whether the member type is itself a reference, in which case
3004 // we're not going to refer to the member, but to what the member refers to.
3005 if (M->getMemberDecl()->getType()->isReferenceType())
3006 return NULL;
3007
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00003008 return EvalVal(M->getBase(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00003009 }
Mike Stump11289f42009-09-09 15:08:12 +00003010
Douglas Gregorfe314812011-06-21 17:03:29 +00003011 case Stmt::MaterializeTemporaryExprClass:
3012 if (Expr *Result = EvalVal(
3013 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
3014 refVars))
3015 return Result;
3016
3017 return E;
3018
Ted Kremenekcff94fa2007-08-17 16:46:58 +00003019 default:
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00003020 // Check that we don't return or take the address of a reference to a
3021 // temporary. This is only useful in C++.
3022 if (!E->isTypeDependent() && E->isRValue())
3023 return E;
3024
3025 // Everything else: we simply don't reason about them.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00003026 return NULL;
3027 }
Ted Kremenekb7861562010-08-04 20:01:07 +00003028} while (true);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00003029}
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003030
3031//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
3032
3033/// Check for comparisons of floating point operands using != and ==.
3034/// Issue a warning if these are no self-comparisons, as they are not likely
3035/// to do what the programmer intended.
Richard Trieu82402a02011-09-15 21:56:47 +00003036void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003037 bool EmitWarning = true;
Mike Stump11289f42009-09-09 15:08:12 +00003038
Richard Trieu82402a02011-09-15 21:56:47 +00003039 Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
3040 Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003041
3042 // Special case: check for x == x (which is OK).
3043 // Do not emit warnings for such cases.
3044 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
3045 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
3046 if (DRL->getDecl() == DRR->getDecl())
3047 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00003048
3049
Ted Kremenekeda40e22007-11-29 00:59:04 +00003050 // Special case: check for comparisons against literals that can be exactly
3051 // represented by APFloat. In such cases, do not emit a warning. This
3052 // is a heuristic: often comparison against such literals are used to
3053 // detect if a value in a variable has not changed. This clearly can
3054 // lead to false negatives.
3055 if (EmitWarning) {
3056 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
3057 if (FLL->isExact())
3058 EmitWarning = false;
Mike Stump12b8ce12009-08-04 21:02:39 +00003059 } else
Ted Kremenekeda40e22007-11-29 00:59:04 +00003060 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
3061 if (FLR->isExact())
3062 EmitWarning = false;
3063 }
3064 }
Mike Stump11289f42009-09-09 15:08:12 +00003065
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003066 // Check for comparisons with builtin types.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003067 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003068 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Richard Smithd62306a2011-11-10 06:34:14 +00003069 if (CL->isBuiltinCall())
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003070 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00003071
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003072 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003073 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Richard Smithd62306a2011-11-10 06:34:14 +00003074 if (CR->isBuiltinCall())
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003075 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00003076
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003077 // Emit the diagnostic.
3078 if (EmitWarning)
Richard Trieu82402a02011-09-15 21:56:47 +00003079 Diag(Loc, diag::warn_floatingpoint_eq)
3080 << LHS->getSourceRange() << RHS->getSourceRange();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00003081}
John McCallca01b222010-01-04 23:21:16 +00003082
John McCall70aa5392010-01-06 05:24:50 +00003083//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
3084//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallca01b222010-01-04 23:21:16 +00003085
John McCall70aa5392010-01-06 05:24:50 +00003086namespace {
John McCallca01b222010-01-04 23:21:16 +00003087
John McCall70aa5392010-01-06 05:24:50 +00003088/// Structure recording the 'active' range of an integer-valued
3089/// expression.
3090struct IntRange {
3091 /// The number of bits active in the int.
3092 unsigned Width;
John McCallca01b222010-01-04 23:21:16 +00003093
John McCall70aa5392010-01-06 05:24:50 +00003094 /// True if the int is known not to have negative values.
3095 bool NonNegative;
John McCallca01b222010-01-04 23:21:16 +00003096
John McCall70aa5392010-01-06 05:24:50 +00003097 IntRange(unsigned Width, bool NonNegative)
3098 : Width(Width), NonNegative(NonNegative)
3099 {}
John McCallca01b222010-01-04 23:21:16 +00003100
John McCall817d4af2010-11-10 23:38:19 +00003101 /// Returns the range of the bool type.
John McCall70aa5392010-01-06 05:24:50 +00003102 static IntRange forBoolType() {
3103 return IntRange(1, true);
John McCall263a48b2010-01-04 23:31:57 +00003104 }
3105
John McCall817d4af2010-11-10 23:38:19 +00003106 /// Returns the range of an opaque value of the given integral type.
3107 static IntRange forValueOfType(ASTContext &C, QualType T) {
3108 return forValueOfCanonicalType(C,
3109 T->getCanonicalTypeInternal().getTypePtr());
John McCall263a48b2010-01-04 23:31:57 +00003110 }
3111
John McCall817d4af2010-11-10 23:38:19 +00003112 /// Returns the range of an opaque value of a canonical integral type.
3113 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
John McCall70aa5392010-01-06 05:24:50 +00003114 assert(T->isCanonicalUnqualified());
3115
3116 if (const VectorType *VT = dyn_cast<VectorType>(T))
3117 T = VT->getElementType().getTypePtr();
3118 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3119 T = CT->getElementType().getTypePtr();
John McCallcc7e5bf2010-05-06 08:58:33 +00003120
John McCall18a2c2c2010-11-09 22:22:12 +00003121 // For enum types, use the known bit width of the enumerators.
John McCallcc7e5bf2010-05-06 08:58:33 +00003122 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
3123 EnumDecl *Enum = ET->getDecl();
John McCallf937c022011-10-07 06:10:15 +00003124 if (!Enum->isCompleteDefinition())
John McCall18a2c2c2010-11-09 22:22:12 +00003125 return IntRange(C.getIntWidth(QualType(T, 0)), false);
3126
John McCallcc7e5bf2010-05-06 08:58:33 +00003127 unsigned NumPositive = Enum->getNumPositiveBits();
3128 unsigned NumNegative = Enum->getNumNegativeBits();
3129
3130 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
3131 }
John McCall70aa5392010-01-06 05:24:50 +00003132
3133 const BuiltinType *BT = cast<BuiltinType>(T);
3134 assert(BT->isInteger());
3135
3136 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3137 }
3138
John McCall817d4af2010-11-10 23:38:19 +00003139 /// Returns the "target" range of a canonical integral type, i.e.
3140 /// the range of values expressible in the type.
3141 ///
3142 /// This matches forValueOfCanonicalType except that enums have the
3143 /// full range of their type, not the range of their enumerators.
3144 static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
3145 assert(T->isCanonicalUnqualified());
3146
3147 if (const VectorType *VT = dyn_cast<VectorType>(T))
3148 T = VT->getElementType().getTypePtr();
3149 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3150 T = CT->getElementType().getTypePtr();
3151 if (const EnumType *ET = dyn_cast<EnumType>(T))
Douglas Gregor3168dcf2011-09-08 23:29:05 +00003152 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
John McCall817d4af2010-11-10 23:38:19 +00003153
3154 const BuiltinType *BT = cast<BuiltinType>(T);
3155 assert(BT->isInteger());
3156
3157 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3158 }
3159
3160 /// Returns the supremum of two ranges: i.e. their conservative merge.
John McCallff96ccd2010-02-23 19:22:29 +00003161 static IntRange join(IntRange L, IntRange R) {
John McCall70aa5392010-01-06 05:24:50 +00003162 return IntRange(std::max(L.Width, R.Width),
John McCall2ce81ad2010-01-06 22:07:33 +00003163 L.NonNegative && R.NonNegative);
3164 }
3165
John McCall817d4af2010-11-10 23:38:19 +00003166 /// Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallff96ccd2010-02-23 19:22:29 +00003167 static IntRange meet(IntRange L, IntRange R) {
John McCall2ce81ad2010-01-06 22:07:33 +00003168 return IntRange(std::min(L.Width, R.Width),
3169 L.NonNegative || R.NonNegative);
John McCall70aa5392010-01-06 05:24:50 +00003170 }
3171};
3172
3173IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
3174 if (value.isSigned() && value.isNegative())
3175 return IntRange(value.getMinSignedBits(), false);
3176
3177 if (value.getBitWidth() > MaxWidth)
Jay Foad6d4db0c2010-12-07 08:25:34 +00003178 value = value.trunc(MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00003179
3180 // isNonNegative() just checks the sign bit without considering
3181 // signedness.
3182 return IntRange(value.getActiveBits(), true);
3183}
3184
John McCall74430522010-01-06 22:57:21 +00003185IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCall70aa5392010-01-06 05:24:50 +00003186 unsigned MaxWidth) {
3187 if (result.isInt())
3188 return GetValueRange(C, result.getInt(), MaxWidth);
3189
3190 if (result.isVector()) {
John McCall74430522010-01-06 22:57:21 +00003191 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
3192 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
3193 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
3194 R = IntRange::join(R, El);
3195 }
John McCall70aa5392010-01-06 05:24:50 +00003196 return R;
3197 }
3198
3199 if (result.isComplexInt()) {
3200 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
3201 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
3202 return IntRange::join(R, I);
John McCall263a48b2010-01-04 23:31:57 +00003203 }
3204
3205 // This can happen with lossless casts to intptr_t of "based" lvalues.
3206 // Assume it might use arbitrary bits.
John McCall74430522010-01-06 22:57:21 +00003207 // FIXME: The only reason we need to pass the type in here is to get
3208 // the sign right on this one case. It would be nice if APValue
3209 // preserved this.
John McCall70aa5392010-01-06 05:24:50 +00003210 assert(result.isLValue());
Douglas Gregor61b6e492011-05-21 16:28:01 +00003211 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
John McCall263a48b2010-01-04 23:31:57 +00003212}
John McCall70aa5392010-01-06 05:24:50 +00003213
3214/// Pseudo-evaluate the given integer expression, estimating the
3215/// range of values it might take.
3216///
3217/// \param MaxWidth - the width to which the value will be truncated
3218IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
3219 E = E->IgnoreParens();
3220
3221 // Try a full evaluation first.
3222 Expr::EvalResult result;
Richard Smith7b553f12011-10-29 00:50:52 +00003223 if (E->EvaluateAsRValue(result, C))
John McCall74430522010-01-06 22:57:21 +00003224 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00003225
3226 // I think we only want to look through implicit casts here; if the
3227 // user has an explicit widening cast, we should treat the value as
3228 // being of the new, wider type.
3229 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00003230 if (CE->getCastKind() == CK_NoOp)
John McCall70aa5392010-01-06 05:24:50 +00003231 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
3232
John McCall817d4af2010-11-10 23:38:19 +00003233 IntRange OutputTypeRange = IntRange::forValueOfType(C, CE->getType());
John McCall70aa5392010-01-06 05:24:50 +00003234
John McCalle3027922010-08-25 11:45:40 +00003235 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
John McCall2ce81ad2010-01-06 22:07:33 +00003236
John McCall70aa5392010-01-06 05:24:50 +00003237 // Assume that non-integer casts can span the full range of the type.
John McCall2ce81ad2010-01-06 22:07:33 +00003238 if (!isIntegerCast)
John McCall70aa5392010-01-06 05:24:50 +00003239 return OutputTypeRange;
3240
3241 IntRange SubRange
3242 = GetExprRange(C, CE->getSubExpr(),
3243 std::min(MaxWidth, OutputTypeRange.Width));
3244
3245 // Bail out if the subexpr's range is as wide as the cast type.
3246 if (SubRange.Width >= OutputTypeRange.Width)
3247 return OutputTypeRange;
3248
3249 // Otherwise, we take the smaller width, and we're non-negative if
3250 // either the output type or the subexpr is.
3251 return IntRange(SubRange.Width,
3252 SubRange.NonNegative || OutputTypeRange.NonNegative);
3253 }
3254
3255 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
3256 // If we can fold the condition, just take that operand.
3257 bool CondResult;
3258 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
3259 return GetExprRange(C, CondResult ? CO->getTrueExpr()
3260 : CO->getFalseExpr(),
3261 MaxWidth);
3262
3263 // Otherwise, conservatively merge.
3264 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
3265 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
3266 return IntRange::join(L, R);
3267 }
3268
3269 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3270 switch (BO->getOpcode()) {
3271
3272 // Boolean-valued operations are single-bit and positive.
John McCalle3027922010-08-25 11:45:40 +00003273 case BO_LAnd:
3274 case BO_LOr:
3275 case BO_LT:
3276 case BO_GT:
3277 case BO_LE:
3278 case BO_GE:
3279 case BO_EQ:
3280 case BO_NE:
John McCall70aa5392010-01-06 05:24:50 +00003281 return IntRange::forBoolType();
3282
John McCallc3688382011-07-13 06:35:24 +00003283 // The type of the assignments is the type of the LHS, so the RHS
3284 // is not necessarily the same type.
John McCalle3027922010-08-25 11:45:40 +00003285 case BO_MulAssign:
3286 case BO_DivAssign:
3287 case BO_RemAssign:
3288 case BO_AddAssign:
3289 case BO_SubAssign:
John McCallc3688382011-07-13 06:35:24 +00003290 case BO_XorAssign:
3291 case BO_OrAssign:
3292 // TODO: bitfields?
John McCall817d4af2010-11-10 23:38:19 +00003293 return IntRange::forValueOfType(C, E->getType());
John McCallff96ccd2010-02-23 19:22:29 +00003294
John McCallc3688382011-07-13 06:35:24 +00003295 // Simple assignments just pass through the RHS, which will have
3296 // been coerced to the LHS type.
3297 case BO_Assign:
3298 // TODO: bitfields?
3299 return GetExprRange(C, BO->getRHS(), MaxWidth);
3300
John McCall70aa5392010-01-06 05:24:50 +00003301 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +00003302 case BO_PtrMemD:
3303 case BO_PtrMemI:
John McCall817d4af2010-11-10 23:38:19 +00003304 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00003305
John McCall2ce81ad2010-01-06 22:07:33 +00003306 // Bitwise-and uses the *infinum* of the two source ranges.
John McCalle3027922010-08-25 11:45:40 +00003307 case BO_And:
3308 case BO_AndAssign:
John McCall2ce81ad2010-01-06 22:07:33 +00003309 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
3310 GetExprRange(C, BO->getRHS(), MaxWidth));
3311
John McCall70aa5392010-01-06 05:24:50 +00003312 // Left shift gets black-listed based on a judgement call.
John McCalle3027922010-08-25 11:45:40 +00003313 case BO_Shl:
John McCall1bff9932010-04-07 01:14:35 +00003314 // ...except that we want to treat '1 << (blah)' as logically
3315 // positive. It's an important idiom.
3316 if (IntegerLiteral *I
3317 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
3318 if (I->getValue() == 1) {
John McCall817d4af2010-11-10 23:38:19 +00003319 IntRange R = IntRange::forValueOfType(C, E->getType());
John McCall1bff9932010-04-07 01:14:35 +00003320 return IntRange(R.Width, /*NonNegative*/ true);
3321 }
3322 }
3323 // fallthrough
3324
John McCalle3027922010-08-25 11:45:40 +00003325 case BO_ShlAssign:
John McCall817d4af2010-11-10 23:38:19 +00003326 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00003327
John McCall2ce81ad2010-01-06 22:07:33 +00003328 // Right shift by a constant can narrow its left argument.
John McCalle3027922010-08-25 11:45:40 +00003329 case BO_Shr:
3330 case BO_ShrAssign: {
John McCall2ce81ad2010-01-06 22:07:33 +00003331 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3332
3333 // If the shift amount is a positive constant, drop the width by
3334 // that much.
3335 llvm::APSInt shift;
3336 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
3337 shift.isNonNegative()) {
3338 unsigned zext = shift.getZExtValue();
3339 if (zext >= L.Width)
3340 L.Width = (L.NonNegative ? 0 : 1);
3341 else
3342 L.Width -= zext;
3343 }
3344
3345 return L;
3346 }
3347
3348 // Comma acts as its right operand.
John McCalle3027922010-08-25 11:45:40 +00003349 case BO_Comma:
John McCall70aa5392010-01-06 05:24:50 +00003350 return GetExprRange(C, BO->getRHS(), MaxWidth);
3351
John McCall2ce81ad2010-01-06 22:07:33 +00003352 // Black-list pointer subtractions.
John McCalle3027922010-08-25 11:45:40 +00003353 case BO_Sub:
John McCall70aa5392010-01-06 05:24:50 +00003354 if (BO->getLHS()->getType()->isPointerType())
John McCall817d4af2010-11-10 23:38:19 +00003355 return IntRange::forValueOfType(C, E->getType());
John McCall51431812011-07-14 22:39:48 +00003356 break;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00003357
John McCall51431812011-07-14 22:39:48 +00003358 // The width of a division result is mostly determined by the size
3359 // of the LHS.
3360 case BO_Div: {
3361 // Don't 'pre-truncate' the operands.
3362 unsigned opWidth = C.getIntWidth(E->getType());
3363 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3364
3365 // If the divisor is constant, use that.
3366 llvm::APSInt divisor;
3367 if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
3368 unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
3369 if (log2 >= L.Width)
3370 L.Width = (L.NonNegative ? 0 : 1);
3371 else
3372 L.Width = std::min(L.Width - log2, MaxWidth);
3373 return L;
3374 }
3375
3376 // Otherwise, just use the LHS's width.
3377 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3378 return IntRange(L.Width, L.NonNegative && R.NonNegative);
3379 }
3380
3381 // The result of a remainder can't be larger than the result of
3382 // either side.
3383 case BO_Rem: {
3384 // Don't 'pre-truncate' the operands.
3385 unsigned opWidth = C.getIntWidth(E->getType());
3386 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3387 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3388
3389 IntRange meet = IntRange::meet(L, R);
3390 meet.Width = std::min(meet.Width, MaxWidth);
3391 return meet;
3392 }
3393
3394 // The default behavior is okay for these.
3395 case BO_Mul:
3396 case BO_Add:
3397 case BO_Xor:
3398 case BO_Or:
John McCall70aa5392010-01-06 05:24:50 +00003399 break;
3400 }
3401
John McCall51431812011-07-14 22:39:48 +00003402 // The default case is to treat the operation as if it were closed
3403 // on the narrowest type that encompasses both operands.
John McCall70aa5392010-01-06 05:24:50 +00003404 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3405 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
3406 return IntRange::join(L, R);
3407 }
3408
3409 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
3410 switch (UO->getOpcode()) {
3411 // Boolean-valued operations are white-listed.
John McCalle3027922010-08-25 11:45:40 +00003412 case UO_LNot:
John McCall70aa5392010-01-06 05:24:50 +00003413 return IntRange::forBoolType();
3414
3415 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +00003416 case UO_Deref:
3417 case UO_AddrOf: // should be impossible
John McCall817d4af2010-11-10 23:38:19 +00003418 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00003419
3420 default:
3421 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
3422 }
3423 }
Douglas Gregor882211c2010-04-28 22:16:22 +00003424
3425 if (dyn_cast<OffsetOfExpr>(E)) {
John McCall817d4af2010-11-10 23:38:19 +00003426 IntRange::forValueOfType(C, E->getType());
Douglas Gregor882211c2010-04-28 22:16:22 +00003427 }
John McCall70aa5392010-01-06 05:24:50 +00003428
Richard Smithcaf33902011-10-10 18:28:20 +00003429 if (FieldDecl *BitField = E->getBitField())
3430 return IntRange(BitField->getBitWidthValue(C),
Douglas Gregor61b6e492011-05-21 16:28:01 +00003431 BitField->getType()->isUnsignedIntegerOrEnumerationType());
John McCall70aa5392010-01-06 05:24:50 +00003432
John McCall817d4af2010-11-10 23:38:19 +00003433 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00003434}
John McCall263a48b2010-01-04 23:31:57 +00003435
John McCallcc7e5bf2010-05-06 08:58:33 +00003436IntRange GetExprRange(ASTContext &C, Expr *E) {
3437 return GetExprRange(C, E, C.getIntWidth(E->getType()));
3438}
3439
John McCall263a48b2010-01-04 23:31:57 +00003440/// Checks whether the given value, which currently has the given
3441/// source semantics, has the same value when coerced through the
3442/// target semantics.
John McCall70aa5392010-01-06 05:24:50 +00003443bool IsSameFloatAfterCast(const llvm::APFloat &value,
3444 const llvm::fltSemantics &Src,
3445 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00003446 llvm::APFloat truncated = value;
3447
3448 bool ignored;
3449 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
3450 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
3451
3452 return truncated.bitwiseIsEqual(value);
3453}
3454
3455/// Checks whether the given value, which currently has the given
3456/// source semantics, has the same value when coerced through the
3457/// target semantics.
3458///
3459/// The value might be a vector of floats (or a complex number).
John McCall70aa5392010-01-06 05:24:50 +00003460bool IsSameFloatAfterCast(const APValue &value,
3461 const llvm::fltSemantics &Src,
3462 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00003463 if (value.isFloat())
3464 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
3465
3466 if (value.isVector()) {
3467 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
3468 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
3469 return false;
3470 return true;
3471 }
3472
3473 assert(value.isComplexFloat());
3474 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
3475 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
3476}
3477
John McCallacf0ee52010-10-08 02:01:28 +00003478void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003479
Ted Kremenek6274be42010-09-23 21:43:44 +00003480static bool IsZero(Sema &S, Expr *E) {
3481 // Suppress cases where we are comparing against an enum constant.
3482 if (const DeclRefExpr *DR =
3483 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
3484 if (isa<EnumConstantDecl>(DR->getDecl()))
3485 return false;
3486
3487 // Suppress cases where the '0' value is expanded from a macro.
3488 if (E->getLocStart().isMacroID())
3489 return false;
3490
John McCallcc7e5bf2010-05-06 08:58:33 +00003491 llvm::APSInt Value;
3492 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
3493}
3494
John McCall2551c1b2010-10-06 00:25:24 +00003495static bool HasEnumType(Expr *E) {
3496 // Strip off implicit integral promotions.
3497 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +00003498 if (ICE->getCastKind() != CK_IntegralCast &&
3499 ICE->getCastKind() != CK_NoOp)
John McCall2551c1b2010-10-06 00:25:24 +00003500 break;
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +00003501 E = ICE->getSubExpr();
John McCall2551c1b2010-10-06 00:25:24 +00003502 }
3503
3504 return E->getType()->isEnumeralType();
3505}
3506
John McCallcc7e5bf2010-05-06 08:58:33 +00003507void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +00003508 BinaryOperatorKind op = E->getOpcode();
Douglas Gregorb14dbd72010-12-21 07:22:56 +00003509 if (E->isValueDependent())
3510 return;
3511
John McCalle3027922010-08-25 11:45:40 +00003512 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003513 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00003514 << "< 0" << "false" << HasEnumType(E->getLHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00003515 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00003516 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003517 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00003518 << ">= 0" << "true" << HasEnumType(E->getLHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00003519 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00003520 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003521 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00003522 << "0 >" << "false" << HasEnumType(E->getRHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00003523 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00003524 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003525 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00003526 << "0 <=" << "true" << HasEnumType(E->getRHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00003527 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
3528 }
3529}
3530
3531/// Analyze the operands of the given comparison. Implements the
3532/// fallback case from AnalyzeComparison.
3533void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallacf0ee52010-10-08 02:01:28 +00003534 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3535 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCallcc7e5bf2010-05-06 08:58:33 +00003536}
John McCall263a48b2010-01-04 23:31:57 +00003537
John McCallca01b222010-01-04 23:21:16 +00003538/// \brief Implements -Wsign-compare.
3539///
Richard Trieu82402a02011-09-15 21:56:47 +00003540/// \param E the binary operator to check for warnings
John McCallcc7e5bf2010-05-06 08:58:33 +00003541void AnalyzeComparison(Sema &S, BinaryOperator *E) {
3542 // The type the comparison is being performed in.
3543 QualType T = E->getLHS()->getType();
3544 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
3545 && "comparison with mismatched types");
John McCallca01b222010-01-04 23:21:16 +00003546
John McCallcc7e5bf2010-05-06 08:58:33 +00003547 // We don't do anything special if this isn't an unsigned integral
3548 // comparison: we're only interested in integral comparisons, and
3549 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregor5b054542011-02-19 22:34:59 +00003550 //
3551 // We also don't care about value-dependent expressions or expressions
3552 // whose result is a constant.
3553 if (!T->hasUnsignedIntegerRepresentation()
3554 || E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
John McCallcc7e5bf2010-05-06 08:58:33 +00003555 return AnalyzeImpConvsInComparison(S, E);
John McCall70aa5392010-01-06 05:24:50 +00003556
Richard Trieu82402a02011-09-15 21:56:47 +00003557 Expr *LHS = E->getLHS()->IgnoreParenImpCasts();
3558 Expr *RHS = E->getRHS()->IgnoreParenImpCasts();
John McCallca01b222010-01-04 23:21:16 +00003559
John McCallcc7e5bf2010-05-06 08:58:33 +00003560 // Check to see if one of the (unmodified) operands is of different
3561 // signedness.
3562 Expr *signedOperand, *unsignedOperand;
Richard Trieu82402a02011-09-15 21:56:47 +00003563 if (LHS->getType()->hasSignedIntegerRepresentation()) {
3564 assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
John McCallcc7e5bf2010-05-06 08:58:33 +00003565 "unsigned comparison between two signed integer expressions?");
Richard Trieu82402a02011-09-15 21:56:47 +00003566 signedOperand = LHS;
3567 unsignedOperand = RHS;
3568 } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
3569 signedOperand = RHS;
3570 unsignedOperand = LHS;
John McCallca01b222010-01-04 23:21:16 +00003571 } else {
John McCallcc7e5bf2010-05-06 08:58:33 +00003572 CheckTrivialUnsignedComparison(S, E);
3573 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00003574 }
3575
John McCallcc7e5bf2010-05-06 08:58:33 +00003576 // Otherwise, calculate the effective range of the signed operand.
3577 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCall70aa5392010-01-06 05:24:50 +00003578
John McCallcc7e5bf2010-05-06 08:58:33 +00003579 // Go ahead and analyze implicit conversions in the operands. Note
3580 // that we skip the implicit conversions on both sides.
Richard Trieu82402a02011-09-15 21:56:47 +00003581 AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
3582 AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
John McCallca01b222010-01-04 23:21:16 +00003583
John McCallcc7e5bf2010-05-06 08:58:33 +00003584 // If the signed range is non-negative, -Wsign-compare won't fire,
3585 // but we should still check for comparisons which are always true
3586 // or false.
3587 if (signedRange.NonNegative)
3588 return CheckTrivialUnsignedComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00003589
3590 // For (in)equality comparisons, if the unsigned operand is a
3591 // constant which cannot collide with a overflowed signed operand,
3592 // then reinterpreting the signed operand as unsigned will not
3593 // change the result of the comparison.
John McCallcc7e5bf2010-05-06 08:58:33 +00003594 if (E->isEqualityOp()) {
3595 unsigned comparisonWidth = S.Context.getIntWidth(T);
3596 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallca01b222010-01-04 23:21:16 +00003597
John McCallcc7e5bf2010-05-06 08:58:33 +00003598 // We should never be unable to prove that the unsigned operand is
3599 // non-negative.
3600 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
3601
3602 if (unsignedRange.Width < comparisonWidth)
3603 return;
3604 }
3605
3606 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
Richard Trieu82402a02011-09-15 21:56:47 +00003607 << LHS->getType() << RHS->getType()
3608 << LHS->getSourceRange() << RHS->getSourceRange();
John McCallca01b222010-01-04 23:21:16 +00003609}
3610
John McCall1f425642010-11-11 03:21:53 +00003611/// Analyzes an attempt to assign the given value to a bitfield.
3612///
3613/// Returns true if there was something fishy about the attempt.
3614bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
3615 SourceLocation InitLoc) {
3616 assert(Bitfield->isBitField());
3617 if (Bitfield->isInvalidDecl())
3618 return false;
3619
John McCalldeebbcf2010-11-11 05:33:51 +00003620 // White-list bool bitfields.
3621 if (Bitfield->getType()->isBooleanType())
3622 return false;
3623
Douglas Gregor789adec2011-02-04 13:09:01 +00003624 // Ignore value- or type-dependent expressions.
3625 if (Bitfield->getBitWidth()->isValueDependent() ||
3626 Bitfield->getBitWidth()->isTypeDependent() ||
3627 Init->isValueDependent() ||
3628 Init->isTypeDependent())
3629 return false;
3630
John McCall1f425642010-11-11 03:21:53 +00003631 Expr *OriginalInit = Init->IgnoreParenImpCasts();
3632
John McCall1f425642010-11-11 03:21:53 +00003633 Expr::EvalResult InitValue;
Richard Smith7b553f12011-10-29 00:50:52 +00003634 if (!OriginalInit->EvaluateAsRValue(InitValue, S.Context) ||
John McCall1f425642010-11-11 03:21:53 +00003635 !InitValue.Val.isInt())
3636 return false;
3637
3638 const llvm::APSInt &Value = InitValue.Val.getInt();
3639 unsigned OriginalWidth = Value.getBitWidth();
Richard Smithcaf33902011-10-10 18:28:20 +00003640 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
John McCall1f425642010-11-11 03:21:53 +00003641
3642 if (OriginalWidth <= FieldWidth)
3643 return false;
3644
Jay Foad6d4db0c2010-12-07 08:25:34 +00003645 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
John McCall1f425642010-11-11 03:21:53 +00003646
3647 // It's fairly common to write values into signed bitfields
3648 // that, if sign-extended, would end up becoming a different
3649 // value. We don't want to warn about that.
3650 if (Value.isSigned() && Value.isNegative())
Jay Foad6d4db0c2010-12-07 08:25:34 +00003651 TruncatedValue = TruncatedValue.sext(OriginalWidth);
John McCall1f425642010-11-11 03:21:53 +00003652 else
Jay Foad6d4db0c2010-12-07 08:25:34 +00003653 TruncatedValue = TruncatedValue.zext(OriginalWidth);
John McCall1f425642010-11-11 03:21:53 +00003654
3655 if (Value == TruncatedValue)
3656 return false;
3657
3658 std::string PrettyValue = Value.toString(10);
3659 std::string PrettyTrunc = TruncatedValue.toString(10);
3660
3661 S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
3662 << PrettyValue << PrettyTrunc << OriginalInit->getType()
3663 << Init->getSourceRange();
3664
3665 return true;
3666}
3667
John McCalld2a53122010-11-09 23:24:47 +00003668/// Analyze the given simple or compound assignment for warning-worthy
3669/// operations.
3670void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
3671 // Just recurse on the LHS.
3672 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3673
3674 // We want to recurse on the RHS as normal unless we're assigning to
3675 // a bitfield.
3676 if (FieldDecl *Bitfield = E->getLHS()->getBitField()) {
John McCall1f425642010-11-11 03:21:53 +00003677 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
3678 E->getOperatorLoc())) {
3679 // Recurse, ignoring any implicit conversions on the RHS.
3680 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
3681 E->getOperatorLoc());
John McCalld2a53122010-11-09 23:24:47 +00003682 }
3683 }
3684
3685 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
3686}
3687
John McCall263a48b2010-01-04 23:31:57 +00003688/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Douglas Gregor364f7db2011-03-12 00:14:31 +00003689void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
3690 SourceLocation CContext, unsigned diag) {
3691 S.Diag(E->getExprLoc(), diag)
3692 << SourceType << T << E->getSourceRange() << SourceRange(CContext);
3693}
3694
Chandler Carruth7f3654f2011-04-05 06:47:57 +00003695/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
3696void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
3697 unsigned diag) {
3698 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag);
3699}
3700
Matt Beaumont-Gayc6221632011-10-14 15:36:25 +00003701/// Diagnose an implicit cast from a literal expression. Does not warn when the
3702/// cast wouldn't lose information.
Chandler Carruth016ef402011-04-10 08:36:24 +00003703void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
3704 SourceLocation CContext) {
Matt Beaumont-Gayc6221632011-10-14 15:36:25 +00003705 // Try to convert the literal exactly to an integer. If we can, don't warn.
Chandler Carruth016ef402011-04-10 08:36:24 +00003706 bool isExact = false;
Matt Beaumont-Gayc6221632011-10-14 15:36:25 +00003707 const llvm::APFloat &Value = FL->getValue();
Jeffrey Yasskind0f079d2011-07-15 17:03:07 +00003708 llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
3709 T->hasUnsignedIntegerRepresentation());
3710 if (Value.convertToInteger(IntegerValue,
Chandler Carruth016ef402011-04-10 08:36:24 +00003711 llvm::APFloat::rmTowardZero, &isExact)
Matt Beaumont-Gayc6221632011-10-14 15:36:25 +00003712 == llvm::APFloat::opOK && isExact)
Chandler Carruth016ef402011-04-10 08:36:24 +00003713 return;
3714
Matt Beaumont-Gayc6221632011-10-14 15:36:25 +00003715 S.Diag(FL->getExprLoc(), diag::warn_impcast_literal_float_to_integer)
3716 << FL->getType() << T << FL->getSourceRange() << SourceRange(CContext);
Chandler Carruth016ef402011-04-10 08:36:24 +00003717}
3718
John McCall18a2c2c2010-11-09 22:22:12 +00003719std::string PrettyPrintInRange(const llvm::APSInt &Value, IntRange Range) {
3720 if (!Range.Width) return "0";
3721
3722 llvm::APSInt ValueInRange = Value;
3723 ValueInRange.setIsSigned(!Range.NonNegative);
Jay Foad6d4db0c2010-12-07 08:25:34 +00003724 ValueInRange = ValueInRange.trunc(Range.Width);
John McCall18a2c2c2010-11-09 22:22:12 +00003725 return ValueInRange.toString(10);
3726}
3727
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003728static bool isFromSystemMacro(Sema &S, SourceLocation loc) {
3729 SourceManager &smgr = S.Context.getSourceManager();
3730 return loc.isMacroID() && smgr.isInSystemHeader(smgr.getSpellingLoc(loc));
3731}
Chandler Carruth016ef402011-04-10 08:36:24 +00003732
John McCallcc7e5bf2010-05-06 08:58:33 +00003733void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
John McCallacf0ee52010-10-08 02:01:28 +00003734 SourceLocation CC, bool *ICContext = 0) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003735 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall263a48b2010-01-04 23:31:57 +00003736
John McCallcc7e5bf2010-05-06 08:58:33 +00003737 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
3738 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
3739 if (Source == Target) return;
3740 if (Target->isDependentType()) return;
John McCall263a48b2010-01-04 23:31:57 +00003741
Chandler Carruthc22845a2011-07-26 05:40:03 +00003742 // If the conversion context location is invalid don't complain. We also
3743 // don't want to emit a warning if the issue occurs from the expansion of
3744 // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
3745 // delay this check as long as possible. Once we detect we are in that
3746 // scenario, we just return.
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003747 if (CC.isInvalid())
John McCallacf0ee52010-10-08 02:01:28 +00003748 return;
3749
Richard Trieu021baa32011-09-23 20:10:00 +00003750 // Diagnose implicit casts to bool.
3751 if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
3752 if (isa<StringLiteral>(E))
3753 // Warn on string literal to bool. Checks for string literals in logical
3754 // expressions, for instances, assert(0 && "error here"), is prevented
3755 // by a check in AnalyzeImplicitConversions().
3756 return DiagnoseImpCast(S, E, T, CC,
3757 diag::warn_impcast_string_literal_to_bool);
Lang Hamesdf5c1212011-12-05 20:49:50 +00003758 if (Source->isFunctionType()) {
3759 // Warn on function to bool. Checks free functions and static member
3760 // functions. Weakly imported functions are excluded from the check,
3761 // since it's common to test their value to check whether the linker
3762 // found a definition for them.
3763 ValueDecl *D = 0;
3764 if (DeclRefExpr* R = dyn_cast<DeclRefExpr>(E)) {
3765 D = R->getDecl();
3766 } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
3767 D = M->getMemberDecl();
3768 }
3769
3770 if (D && !D->isWeak()) {
Richard Trieu5f623222011-12-06 04:48:01 +00003771 if (FunctionDecl* F = dyn_cast<FunctionDecl>(D)) {
3772 S.Diag(E->getExprLoc(), diag::warn_impcast_function_to_bool)
3773 << F << E->getSourceRange() << SourceRange(CC);
David Blaikie10eb4b62011-12-09 21:42:37 +00003774 S.Diag(E->getExprLoc(), diag::note_function_to_bool_silence)
3775 << FixItHint::CreateInsertion(E->getExprLoc(), "&");
3776 QualType ReturnType;
3777 UnresolvedSet<4> NonTemplateOverloads;
3778 S.isExprCallable(*E, ReturnType, NonTemplateOverloads);
3779 if (!ReturnType.isNull()
3780 && ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
3781 S.Diag(E->getExprLoc(), diag::note_function_to_bool_call)
3782 << FixItHint::CreateInsertion(
3783 S.getPreprocessor().getLocForEndOfToken(E->getLocEnd()), "()");
Richard Trieu5f623222011-12-06 04:48:01 +00003784 return;
3785 }
Lang Hamesdf5c1212011-12-05 20:49:50 +00003786 }
3787 }
David Blaikie7833b7d2011-09-29 04:06:47 +00003788 return; // Other casts to bool are not checked.
Richard Trieu021baa32011-09-23 20:10:00 +00003789 }
John McCall263a48b2010-01-04 23:31:57 +00003790
3791 // Strip vector types.
3792 if (isa<VectorType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003793 if (!isa<VectorType>(Target)) {
3794 if (isFromSystemMacro(S, CC))
3795 return;
John McCallacf0ee52010-10-08 02:01:28 +00003796 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003797 }
Chris Lattneree7286f2011-06-14 04:51:15 +00003798
3799 // If the vector cast is cast between two vectors of the same size, it is
3800 // a bitcast, not a conversion.
3801 if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
3802 return;
John McCall263a48b2010-01-04 23:31:57 +00003803
3804 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
3805 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
3806 }
3807
3808 // Strip complex types.
3809 if (isa<ComplexType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003810 if (!isa<ComplexType>(Target)) {
3811 if (isFromSystemMacro(S, CC))
3812 return;
3813
John McCallacf0ee52010-10-08 02:01:28 +00003814 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003815 }
John McCall263a48b2010-01-04 23:31:57 +00003816
3817 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
3818 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
3819 }
3820
3821 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
3822 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
3823
3824 // If the source is floating point...
3825 if (SourceBT && SourceBT->isFloatingPoint()) {
3826 // ...and the target is floating point...
3827 if (TargetBT && TargetBT->isFloatingPoint()) {
3828 // ...then warn if we're dropping FP rank.
3829
3830 // Builtin FP kinds are ordered by increasing FP rank.
3831 if (SourceBT->getKind() > TargetBT->getKind()) {
3832 // Don't warn about float constants that are precisely
3833 // representable in the target type.
3834 Expr::EvalResult result;
Richard Smith7b553f12011-10-29 00:50:52 +00003835 if (E->EvaluateAsRValue(result, S.Context)) {
John McCall263a48b2010-01-04 23:31:57 +00003836 // Value might be a float, a float vector, or a float complex.
3837 if (IsSameFloatAfterCast(result.Val,
John McCallcc7e5bf2010-05-06 08:58:33 +00003838 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
3839 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall263a48b2010-01-04 23:31:57 +00003840 return;
3841 }
3842
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003843 if (isFromSystemMacro(S, CC))
3844 return;
3845
John McCallacf0ee52010-10-08 02:01:28 +00003846 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
John McCall263a48b2010-01-04 23:31:57 +00003847 }
3848 return;
3849 }
3850
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003851 // If the target is integral, always warn.
Chandler Carruth22c7a792011-02-17 11:05:49 +00003852 if ((TargetBT && TargetBT->isInteger())) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003853 if (isFromSystemMacro(S, CC))
3854 return;
3855
Chandler Carruth22c7a792011-02-17 11:05:49 +00003856 Expr *InnerE = E->IgnoreParenImpCasts();
Matt Beaumont-Gay042ce8e2011-09-08 22:30:47 +00003857 // We also want to warn on, e.g., "int i = -1.234"
3858 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
3859 if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
3860 InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
3861
Chandler Carruth016ef402011-04-10 08:36:24 +00003862 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
3863 DiagnoseFloatingLiteralImpCast(S, FL, T, CC);
Chandler Carruth22c7a792011-02-17 11:05:49 +00003864 } else {
3865 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
3866 }
3867 }
John McCall263a48b2010-01-04 23:31:57 +00003868
3869 return;
3870 }
3871
John McCall70aa5392010-01-06 05:24:50 +00003872 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall263a48b2010-01-04 23:31:57 +00003873 return;
3874
Richard Trieubeaf3452011-05-29 19:59:02 +00003875 if ((E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)
3876 == Expr::NPCK_GNUNull) && Target->isIntegerType()) {
3877 S.Diag(E->getExprLoc(), diag::warn_impcast_null_pointer_to_integer)
3878 << E->getSourceRange() << clang::SourceRange(CC);
3879 return;
3880 }
3881
John McCallcc7e5bf2010-05-06 08:58:33 +00003882 IntRange SourceRange = GetExprRange(S.Context, E);
John McCall817d4af2010-11-10 23:38:19 +00003883 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
John McCall70aa5392010-01-06 05:24:50 +00003884
3885 if (SourceRange.Width > TargetRange.Width) {
John McCall18a2c2c2010-11-09 22:22:12 +00003886 // If the source is a constant, use a default-on diagnostic.
3887 // TODO: this should happen for bitfield stores, too.
3888 llvm::APSInt Value(32);
3889 if (E->isIntegerConstantExpr(Value, S.Context)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003890 if (isFromSystemMacro(S, CC))
3891 return;
3892
John McCall18a2c2c2010-11-09 22:22:12 +00003893 std::string PrettySourceValue = Value.toString(10);
3894 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
3895
Ted Kremenek33ba9952011-10-22 02:37:33 +00003896 S.DiagRuntimeBehavior(E->getExprLoc(), E,
3897 S.PDiag(diag::warn_impcast_integer_precision_constant)
3898 << PrettySourceValue << PrettyTargetValue
3899 << E->getType() << T << E->getSourceRange()
3900 << clang::SourceRange(CC));
John McCall18a2c2c2010-11-09 22:22:12 +00003901 return;
3902 }
3903
Chris Lattneree7286f2011-06-14 04:51:15 +00003904 // People want to build with -Wshorten-64-to-32 and not -Wconversion.
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003905 if (isFromSystemMacro(S, CC))
3906 return;
3907
John McCall70aa5392010-01-06 05:24:50 +00003908 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallacf0ee52010-10-08 02:01:28 +00003909 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
3910 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCallcc7e5bf2010-05-06 08:58:33 +00003911 }
3912
3913 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
3914 (!TargetRange.NonNegative && SourceRange.NonNegative &&
3915 SourceRange.Width == TargetRange.Width)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003916
3917 if (isFromSystemMacro(S, CC))
3918 return;
3919
John McCallcc7e5bf2010-05-06 08:58:33 +00003920 unsigned DiagID = diag::warn_impcast_integer_sign;
3921
3922 // Traditionally, gcc has warned about this under -Wsign-compare.
3923 // We also want to warn about it in -Wconversion.
3924 // So if -Wconversion is off, use a completely identical diagnostic
3925 // in the sign-compare group.
3926 // The conditional-checking code will
3927 if (ICContext) {
3928 DiagID = diag::warn_impcast_integer_sign_conditional;
3929 *ICContext = true;
3930 }
3931
John McCallacf0ee52010-10-08 02:01:28 +00003932 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall263a48b2010-01-04 23:31:57 +00003933 }
3934
Douglas Gregora78f1932011-02-22 02:45:07 +00003935 // Diagnose conversions between different enumeration types.
Douglas Gregor364f7db2011-03-12 00:14:31 +00003936 // In C, we pretend that the type of an EnumConstantDecl is its enumeration
3937 // type, to give us better diagnostics.
3938 QualType SourceType = E->getType();
3939 if (!S.getLangOptions().CPlusPlus) {
3940 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
3941 if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3942 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
3943 SourceType = S.Context.getTypeDeclType(Enum);
3944 Source = S.Context.getCanonicalType(SourceType).getTypePtr();
3945 }
3946 }
3947
Douglas Gregora78f1932011-02-22 02:45:07 +00003948 if (const EnumType *SourceEnum = Source->getAs<EnumType>())
3949 if (const EnumType *TargetEnum = Target->getAs<EnumType>())
3950 if ((SourceEnum->getDecl()->getIdentifier() ||
Richard Smithdda56e42011-04-15 14:24:37 +00003951 SourceEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Douglas Gregora78f1932011-02-22 02:45:07 +00003952 (TargetEnum->getDecl()->getIdentifier() ||
Richard Smithdda56e42011-04-15 14:24:37 +00003953 TargetEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003954 SourceEnum != TargetEnum) {
3955 if (isFromSystemMacro(S, CC))
3956 return;
3957
Douglas Gregor364f7db2011-03-12 00:14:31 +00003958 return DiagnoseImpCast(S, E, SourceType, T, CC,
Douglas Gregora78f1932011-02-22 02:45:07 +00003959 diag::warn_impcast_different_enum_types);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003960 }
Douglas Gregora78f1932011-02-22 02:45:07 +00003961
John McCall263a48b2010-01-04 23:31:57 +00003962 return;
3963}
3964
John McCallcc7e5bf2010-05-06 08:58:33 +00003965void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
3966
3967void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
John McCallacf0ee52010-10-08 02:01:28 +00003968 SourceLocation CC, bool &ICContext) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003969 E = E->IgnoreParenImpCasts();
3970
3971 if (isa<ConditionalOperator>(E))
3972 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
3973
John McCallacf0ee52010-10-08 02:01:28 +00003974 AnalyzeImplicitConversions(S, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003975 if (E->getType() != T)
John McCallacf0ee52010-10-08 02:01:28 +00003976 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCallcc7e5bf2010-05-06 08:58:33 +00003977 return;
3978}
3979
3980void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
John McCallacf0ee52010-10-08 02:01:28 +00003981 SourceLocation CC = E->getQuestionLoc();
3982
3983 AnalyzeImplicitConversions(S, E->getCond(), CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003984
3985 bool Suspicious = false;
John McCallacf0ee52010-10-08 02:01:28 +00003986 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
3987 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +00003988
3989 // If -Wconversion would have warned about either of the candidates
3990 // for a signedness conversion to the context type...
3991 if (!Suspicious) return;
3992
3993 // ...but it's currently ignored...
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003994 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional,
3995 CC))
John McCallcc7e5bf2010-05-06 08:58:33 +00003996 return;
3997
John McCallcc7e5bf2010-05-06 08:58:33 +00003998 // ...then check whether it would have warned about either of the
3999 // candidates for a signedness conversion to the condition type.
Richard Trieubb43dec2011-07-21 02:46:28 +00004000 if (E->getType() == T) return;
4001
4002 Suspicious = false;
4003 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
4004 E->getType(), CC, &Suspicious);
4005 if (!Suspicious)
4006 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallacf0ee52010-10-08 02:01:28 +00004007 E->getType(), CC, &Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +00004008}
4009
4010/// AnalyzeImplicitConversions - Find and report any interesting
4011/// implicit conversions in the given expression. There are a couple
4012/// of competing diagnostics here, -Wconversion and -Wsign-compare.
John McCallacf0ee52010-10-08 02:01:28 +00004013void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
John McCallcc7e5bf2010-05-06 08:58:33 +00004014 QualType T = OrigE->getType();
4015 Expr *E = OrigE->IgnoreParenImpCasts();
4016
Douglas Gregor6e8da6a2011-10-10 17:38:18 +00004017 if (E->isTypeDependent() || E->isValueDependent())
4018 return;
4019
John McCallcc7e5bf2010-05-06 08:58:33 +00004020 // For conditional operators, we analyze the arguments as if they
4021 // were being fed directly into the output.
4022 if (isa<ConditionalOperator>(E)) {
4023 ConditionalOperator *CO = cast<ConditionalOperator>(E);
4024 CheckConditionalOperator(S, CO, T);
4025 return;
4026 }
4027
4028 // Go ahead and check any implicit conversions we might have skipped.
4029 // The non-canonical typecheck is just an optimization;
4030 // CheckImplicitConversion will filter out dead implicit conversions.
4031 if (E->getType() != T)
John McCallacf0ee52010-10-08 02:01:28 +00004032 CheckImplicitConversion(S, E, T, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00004033
4034 // Now continue drilling into this expression.
4035
4036 // Skip past explicit casts.
4037 if (isa<ExplicitCastExpr>(E)) {
4038 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
John McCallacf0ee52010-10-08 02:01:28 +00004039 return AnalyzeImplicitConversions(S, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00004040 }
4041
John McCalld2a53122010-11-09 23:24:47 +00004042 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
4043 // Do a somewhat different check with comparison operators.
4044 if (BO->isComparisonOp())
4045 return AnalyzeComparison(S, BO);
4046
4047 // And with assignments and compound assignments.
4048 if (BO->isAssignmentOp())
4049 return AnalyzeAssignment(S, BO);
4050 }
John McCallcc7e5bf2010-05-06 08:58:33 +00004051
4052 // These break the otherwise-useful invariant below. Fortunately,
4053 // we don't really need to recurse into them, because any internal
4054 // expressions should have been analyzed already when they were
4055 // built into statements.
4056 if (isa<StmtExpr>(E)) return;
4057
4058 // Don't descend into unevaluated contexts.
Peter Collingbournee190dee2011-03-11 19:24:49 +00004059 if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
John McCallcc7e5bf2010-05-06 08:58:33 +00004060
4061 // Now just recurse over the expression's children.
John McCallacf0ee52010-10-08 02:01:28 +00004062 CC = E->getExprLoc();
Richard Trieu021baa32011-09-23 20:10:00 +00004063 BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
4064 bool IsLogicalOperator = BO && BO->isLogicalOp();
4065 for (Stmt::child_range I = E->children(); I; ++I) {
4066 Expr *ChildExpr = cast<Expr>(*I);
4067 if (IsLogicalOperator &&
4068 isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
4069 // Ignore checking string literals that are in logical operators.
4070 continue;
4071 AnalyzeImplicitConversions(S, ChildExpr, CC);
4072 }
John McCallcc7e5bf2010-05-06 08:58:33 +00004073}
4074
4075} // end anonymous namespace
4076
4077/// Diagnoses "dangerous" implicit conversions within the given
4078/// expression (which is a full expression). Implements -Wconversion
4079/// and -Wsign-compare.
John McCallacf0ee52010-10-08 02:01:28 +00004080///
4081/// \param CC the "context" location of the implicit conversion, i.e.
4082/// the most location of the syntactic entity requiring the implicit
4083/// conversion
4084void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCallcc7e5bf2010-05-06 08:58:33 +00004085 // Don't diagnose in unevaluated contexts.
4086 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
4087 return;
4088
4089 // Don't diagnose for value- or type-dependent expressions.
4090 if (E->isTypeDependent() || E->isValueDependent())
4091 return;
4092
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004093 // Check for array bounds violations in cases where the check isn't triggered
4094 // elsewhere for other Expr types (like BinaryOperators), e.g. when an
4095 // ArraySubscriptExpr is on the RHS of a variable initialization.
4096 CheckArrayAccess(E);
4097
John McCallacf0ee52010-10-08 02:01:28 +00004098 // This is not the right CC for (e.g.) a variable initialization.
4099 AnalyzeImplicitConversions(*this, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00004100}
4101
John McCall1f425642010-11-11 03:21:53 +00004102void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
4103 FieldDecl *BitField,
4104 Expr *Init) {
4105 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
4106}
4107
Mike Stump0c2ec772010-01-21 03:59:47 +00004108/// CheckParmsForFunctionDef - Check that the parameters of the given
4109/// function are appropriate for the definition of a function. This
4110/// takes care of any checks that cannot be performed on the
4111/// declaration itself, e.g., that the types of each of the function
4112/// parameters are complete.
Douglas Gregorb524d902010-11-01 18:37:59 +00004113bool Sema::CheckParmsForFunctionDef(ParmVarDecl **P, ParmVarDecl **PEnd,
4114 bool CheckParameterNames) {
Mike Stump0c2ec772010-01-21 03:59:47 +00004115 bool HasInvalidParm = false;
Douglas Gregorb524d902010-11-01 18:37:59 +00004116 for (; P != PEnd; ++P) {
4117 ParmVarDecl *Param = *P;
4118
Mike Stump0c2ec772010-01-21 03:59:47 +00004119 // C99 6.7.5.3p4: the parameters in a parameter type list in a
4120 // function declarator that is part of a function definition of
4121 // that function shall not have incomplete type.
4122 //
4123 // This is also C++ [dcl.fct]p6.
4124 if (!Param->isInvalidDecl() &&
4125 RequireCompleteType(Param->getLocation(), Param->getType(),
4126 diag::err_typecheck_decl_incomplete_type)) {
4127 Param->setInvalidDecl();
4128 HasInvalidParm = true;
4129 }
4130
4131 // C99 6.9.1p5: If the declarator includes a parameter type list, the
4132 // declaration of each parameter shall include an identifier.
Douglas Gregorb524d902010-11-01 18:37:59 +00004133 if (CheckParameterNames &&
4134 Param->getIdentifier() == 0 &&
Mike Stump0c2ec772010-01-21 03:59:47 +00004135 !Param->isImplicit() &&
4136 !getLangOptions().CPlusPlus)
4137 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigdeb55d52010-02-01 05:02:49 +00004138
4139 // C99 6.7.5.3p12:
4140 // If the function declarator is not part of a definition of that
4141 // function, parameters may have incomplete type and may use the [*]
4142 // notation in their sequences of declarator specifiers to specify
4143 // variable length array types.
4144 QualType PType = Param->getOriginalType();
4145 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
4146 if (AT->getSizeModifier() == ArrayType::Star) {
4147 // FIXME: This diagnosic should point the the '[*]' if source-location
4148 // information is added for it.
4149 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
4150 }
4151 }
Mike Stump0c2ec772010-01-21 03:59:47 +00004152 }
4153
4154 return HasInvalidParm;
4155}
John McCall2b5c1b22010-08-12 21:44:57 +00004156
4157/// CheckCastAlign - Implements -Wcast-align, which warns when a
4158/// pointer cast increases the alignment requirements.
4159void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
4160 // This is actually a lot of work to potentially be doing on every
4161 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00004162 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align,
4163 TRange.getBegin())
David Blaikie9c902b52011-09-25 23:23:43 +00004164 == DiagnosticsEngine::Ignored)
John McCall2b5c1b22010-08-12 21:44:57 +00004165 return;
4166
4167 // Ignore dependent types.
4168 if (T->isDependentType() || Op->getType()->isDependentType())
4169 return;
4170
4171 // Require that the destination be a pointer type.
4172 const PointerType *DestPtr = T->getAs<PointerType>();
4173 if (!DestPtr) return;
4174
4175 // If the destination has alignment 1, we're done.
4176 QualType DestPointee = DestPtr->getPointeeType();
4177 if (DestPointee->isIncompleteType()) return;
4178 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
4179 if (DestAlign.isOne()) return;
4180
4181 // Require that the source be a pointer type.
4182 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
4183 if (!SrcPtr) return;
4184 QualType SrcPointee = SrcPtr->getPointeeType();
4185
4186 // Whitelist casts from cv void*. We already implicitly
4187 // whitelisted casts to cv void*, since they have alignment 1.
4188 // Also whitelist casts involving incomplete types, which implicitly
4189 // includes 'void'.
4190 if (SrcPointee->isIncompleteType()) return;
4191
4192 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
4193 if (SrcAlign >= DestAlign) return;
4194
4195 Diag(TRange.getBegin(), diag::warn_cast_align)
4196 << Op->getType() << T
4197 << static_cast<unsigned>(SrcAlign.getQuantity())
4198 << static_cast<unsigned>(DestAlign.getQuantity())
4199 << TRange << Op->getSourceRange();
4200}
4201
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004202static const Type* getElementType(const Expr *BaseExpr) {
4203 const Type* EltType = BaseExpr->getType().getTypePtr();
4204 if (EltType->isAnyPointerType())
4205 return EltType->getPointeeType().getTypePtr();
4206 else if (EltType->isArrayType())
4207 return EltType->getBaseElementTypeUnsafe();
4208 return EltType;
4209}
4210
Chandler Carruth28389f02011-08-05 09:10:50 +00004211/// \brief Check whether this array fits the idiom of a size-one tail padded
4212/// array member of a struct.
4213///
4214/// We avoid emitting out-of-bounds access warnings for such arrays as they are
4215/// commonly used to emulate flexible arrays in C89 code.
4216static bool IsTailPaddedMemberArray(Sema &S, llvm::APInt Size,
4217 const NamedDecl *ND) {
4218 if (Size != 1 || !ND) return false;
4219
4220 const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
4221 if (!FD) return false;
4222
4223 // Don't consider sizes resulting from macro expansions or template argument
4224 // substitution to form C89 tail-padded arrays.
4225 ConstantArrayTypeLoc TL =
4226 cast<ConstantArrayTypeLoc>(FD->getTypeSourceInfo()->getTypeLoc());
4227 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(TL.getSizeExpr());
4228 if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
4229 return false;
4230
4231 const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
Matt Beaumont-Gayc93b4892011-11-29 22:43:53 +00004232 if (!RD) return false;
4233 if (RD->isUnion()) return false;
4234 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
4235 if (!CRD->isStandardLayout()) return false;
4236 }
Chandler Carruth28389f02011-08-05 09:10:50 +00004237
Benjamin Kramer8c543672011-08-06 03:04:42 +00004238 // See if this is the last field decl in the record.
4239 const Decl *D = FD;
4240 while ((D = D->getNextDeclInContext()))
4241 if (isa<FieldDecl>(D))
4242 return false;
4243 return true;
Chandler Carruth28389f02011-08-05 09:10:50 +00004244}
4245
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004246void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
4247 bool isSubscript, bool AllowOnePastEnd) {
4248 const Type* EffectiveType = getElementType(BaseExpr);
4249 BaseExpr = BaseExpr->IgnoreParenCasts();
4250 IndexExpr = IndexExpr->IgnoreParenCasts();
4251
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004252 const ConstantArrayType *ArrayTy =
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004253 Context.getAsConstantArrayType(BaseExpr->getType());
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004254 if (!ArrayTy)
Ted Kremenek64699be2011-02-16 01:57:07 +00004255 return;
Chandler Carruth1af88f12011-02-17 21:10:52 +00004256
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004257 if (IndexExpr->isValueDependent())
Ted Kremenek64699be2011-02-16 01:57:07 +00004258 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004259 llvm::APSInt index;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004260 if (!IndexExpr->isIntegerConstantExpr(index, Context))
Ted Kremenek64699be2011-02-16 01:57:07 +00004261 return;
Ted Kremenek108b2d52011-02-16 04:01:44 +00004262
Chandler Carruth126b1552011-08-05 08:07:29 +00004263 const NamedDecl *ND = NULL;
Chandler Carruth126b1552011-08-05 08:07:29 +00004264 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4265 ND = dyn_cast<NamedDecl>(DRE->getDecl());
Chandler Carruth28389f02011-08-05 09:10:50 +00004266 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
Chandler Carruth126b1552011-08-05 08:07:29 +00004267 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
Chandler Carruth126b1552011-08-05 08:07:29 +00004268
Ted Kremeneke4b316c2011-02-23 23:06:04 +00004269 if (index.isUnsigned() || !index.isNegative()) {
Ted Kremeneka7ced2c2011-02-18 02:27:00 +00004270 llvm::APInt size = ArrayTy->getSize();
Chandler Carruth1af88f12011-02-17 21:10:52 +00004271 if (!size.isStrictlyPositive())
4272 return;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004273
4274 const Type* BaseType = getElementType(BaseExpr);
Nico Weber7c299802011-09-17 22:59:41 +00004275 if (BaseType != EffectiveType) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004276 // Make sure we're comparing apples to apples when comparing index to size
4277 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
4278 uint64_t array_typesize = Context.getTypeSize(BaseType);
Kaelyn Uhrain0fb0bb12011-08-10 19:47:25 +00004279 // Handle ptrarith_typesize being zero, such as when casting to void*
Kaelyn Uhraine5353762011-08-10 18:49:28 +00004280 if (!ptrarith_typesize) ptrarith_typesize = 1;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004281 if (ptrarith_typesize != array_typesize) {
4282 // There's a cast to a different size type involved
4283 uint64_t ratio = array_typesize / ptrarith_typesize;
4284 // TODO: Be smarter about handling cases where array_typesize is not a
4285 // multiple of ptrarith_typesize
4286 if (ptrarith_typesize * ratio == array_typesize)
4287 size *= llvm::APInt(size.getBitWidth(), ratio);
4288 }
4289 }
4290
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004291 if (size.getBitWidth() > index.getBitWidth())
4292 index = index.sext(size.getBitWidth());
Ted Kremeneka7ced2c2011-02-18 02:27:00 +00004293 else if (size.getBitWidth() < index.getBitWidth())
4294 size = size.sext(index.getBitWidth());
4295
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004296 // For array subscripting the index must be less than size, but for pointer
4297 // arithmetic also allow the index (offset) to be equal to size since
4298 // computing the next address after the end of the array is legal and
4299 // commonly done e.g. in C++ iterators and range-based for loops.
4300 if (AllowOnePastEnd ? index.sle(size) : index.slt(size))
Chandler Carruth126b1552011-08-05 08:07:29 +00004301 return;
4302
4303 // Also don't warn for arrays of size 1 which are members of some
4304 // structure. These are often used to approximate flexible arrays in C89
4305 // code.
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004306 if (IsTailPaddedMemberArray(*this, size, ND))
Ted Kremenek108b2d52011-02-16 04:01:44 +00004307 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004308
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004309 unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
4310 if (isSubscript)
4311 DiagID = diag::warn_array_index_exceeds_bounds;
4312
4313 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4314 PDiag(DiagID) << index.toString(10, true)
4315 << size.toString(10, true)
4316 << (unsigned)size.getLimitedValue(~0U)
4317 << IndexExpr->getSourceRange());
Chandler Carruth2a666fc2011-02-17 20:55:08 +00004318 } else {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004319 unsigned DiagID = diag::warn_array_index_precedes_bounds;
4320 if (!isSubscript) {
4321 DiagID = diag::warn_ptr_arith_precedes_bounds;
4322 if (index.isNegative()) index = -index;
4323 }
4324
4325 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4326 PDiag(DiagID) << index.toString(10, true)
4327 << IndexExpr->getSourceRange());
Ted Kremenek64699be2011-02-16 01:57:07 +00004328 }
Chandler Carruth1af88f12011-02-17 21:10:52 +00004329
Matt Beaumont-Gayb2339822011-11-29 19:27:11 +00004330 if (!ND) {
4331 // Try harder to find a NamedDecl to point at in the note.
4332 while (const ArraySubscriptExpr *ASE =
4333 dyn_cast<ArraySubscriptExpr>(BaseExpr))
4334 BaseExpr = ASE->getBase()->IgnoreParenCasts();
4335 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4336 ND = dyn_cast<NamedDecl>(DRE->getDecl());
4337 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
4338 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
4339 }
4340
Chandler Carruth1af88f12011-02-17 21:10:52 +00004341 if (ND)
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004342 DiagRuntimeBehavior(ND->getLocStart(), BaseExpr,
4343 PDiag(diag::note_array_index_out_of_bounds)
4344 << ND->getDeclName());
Ted Kremenek64699be2011-02-16 01:57:07 +00004345}
4346
Ted Kremenekdf26df72011-03-01 18:41:00 +00004347void Sema::CheckArrayAccess(const Expr *expr) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004348 int AllowOnePastEnd = 0;
4349 while (expr) {
4350 expr = expr->IgnoreParenImpCasts();
Ted Kremenekdf26df72011-03-01 18:41:00 +00004351 switch (expr->getStmtClass()) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004352 case Stmt::ArraySubscriptExprClass: {
4353 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
4354 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), true,
4355 AllowOnePastEnd > 0);
Ted Kremenekdf26df72011-03-01 18:41:00 +00004356 return;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004357 }
4358 case Stmt::UnaryOperatorClass: {
4359 // Only unwrap the * and & unary operators
4360 const UnaryOperator *UO = cast<UnaryOperator>(expr);
4361 expr = UO->getSubExpr();
4362 switch (UO->getOpcode()) {
4363 case UO_AddrOf:
4364 AllowOnePastEnd++;
4365 break;
4366 case UO_Deref:
4367 AllowOnePastEnd--;
4368 break;
4369 default:
4370 return;
4371 }
4372 break;
4373 }
Ted Kremenekdf26df72011-03-01 18:41:00 +00004374 case Stmt::ConditionalOperatorClass: {
4375 const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
4376 if (const Expr *lhs = cond->getLHS())
4377 CheckArrayAccess(lhs);
4378 if (const Expr *rhs = cond->getRHS())
4379 CheckArrayAccess(rhs);
4380 return;
4381 }
4382 default:
4383 return;
4384 }
Peter Collingbourne91147592011-04-15 00:35:48 +00004385 }
Ted Kremenekdf26df72011-03-01 18:41:00 +00004386}
John McCall31168b02011-06-15 23:02:42 +00004387
4388//===--- CHECK: Objective-C retain cycles ----------------------------------//
4389
4390namespace {
4391 struct RetainCycleOwner {
4392 RetainCycleOwner() : Variable(0), Indirect(false) {}
4393 VarDecl *Variable;
4394 SourceRange Range;
4395 SourceLocation Loc;
4396 bool Indirect;
4397
4398 void setLocsFrom(Expr *e) {
4399 Loc = e->getExprLoc();
4400 Range = e->getSourceRange();
4401 }
4402 };
4403}
4404
4405/// Consider whether capturing the given variable can possibly lead to
4406/// a retain cycle.
4407static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
4408 // In ARC, it's captured strongly iff the variable has __strong
4409 // lifetime. In MRR, it's captured strongly if the variable is
4410 // __block and has an appropriate type.
4411 if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4412 return false;
4413
4414 owner.Variable = var;
4415 owner.setLocsFrom(ref);
4416 return true;
4417}
4418
4419static bool findRetainCycleOwner(Expr *e, RetainCycleOwner &owner) {
4420 while (true) {
4421 e = e->IgnoreParens();
4422 if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
4423 switch (cast->getCastKind()) {
4424 case CK_BitCast:
4425 case CK_LValueBitCast:
4426 case CK_LValueToRValue:
John McCall2d637d22011-09-10 06:18:15 +00004427 case CK_ARCReclaimReturnedObject:
John McCall31168b02011-06-15 23:02:42 +00004428 e = cast->getSubExpr();
4429 continue;
4430
John McCall31168b02011-06-15 23:02:42 +00004431 default:
4432 return false;
4433 }
4434 }
4435
4436 if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
4437 ObjCIvarDecl *ivar = ref->getDecl();
4438 if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4439 return false;
4440
4441 // Try to find a retain cycle in the base.
4442 if (!findRetainCycleOwner(ref->getBase(), owner))
4443 return false;
4444
4445 if (ref->isFreeIvar()) owner.setLocsFrom(ref);
4446 owner.Indirect = true;
4447 return true;
4448 }
4449
4450 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
4451 VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
4452 if (!var) return false;
4453 return considerVariable(var, ref, owner);
4454 }
4455
4456 if (BlockDeclRefExpr *ref = dyn_cast<BlockDeclRefExpr>(e)) {
4457 owner.Variable = ref->getDecl();
4458 owner.setLocsFrom(ref);
4459 return true;
4460 }
4461
4462 if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
4463 if (member->isArrow()) return false;
4464
4465 // Don't count this as an indirect ownership.
4466 e = member->getBase();
4467 continue;
4468 }
4469
John McCallfe96e0b2011-11-06 09:01:30 +00004470 if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
4471 // Only pay attention to pseudo-objects on property references.
4472 ObjCPropertyRefExpr *pre
4473 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
4474 ->IgnoreParens());
4475 if (!pre) return false;
4476 if (pre->isImplicitProperty()) return false;
4477 ObjCPropertyDecl *property = pre->getExplicitProperty();
4478 if (!property->isRetaining() &&
4479 !(property->getPropertyIvarDecl() &&
4480 property->getPropertyIvarDecl()->getType()
4481 .getObjCLifetime() == Qualifiers::OCL_Strong))
4482 return false;
4483
4484 owner.Indirect = true;
4485 e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
4486 ->getSourceExpr());
4487 continue;
4488 }
4489
John McCall31168b02011-06-15 23:02:42 +00004490 // Array ivars?
4491
4492 return false;
4493 }
4494}
4495
4496namespace {
4497 struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
4498 FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
4499 : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
4500 Variable(variable), Capturer(0) {}
4501
4502 VarDecl *Variable;
4503 Expr *Capturer;
4504
4505 void VisitDeclRefExpr(DeclRefExpr *ref) {
4506 if (ref->getDecl() == Variable && !Capturer)
4507 Capturer = ref;
4508 }
4509
4510 void VisitBlockDeclRefExpr(BlockDeclRefExpr *ref) {
4511 if (ref->getDecl() == Variable && !Capturer)
4512 Capturer = ref;
4513 }
4514
4515 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
4516 if (Capturer) return;
4517 Visit(ref->getBase());
4518 if (Capturer && ref->isFreeIvar())
4519 Capturer = ref;
4520 }
4521
4522 void VisitBlockExpr(BlockExpr *block) {
4523 // Look inside nested blocks
4524 if (block->getBlockDecl()->capturesVariable(Variable))
4525 Visit(block->getBlockDecl()->getBody());
4526 }
4527 };
4528}
4529
4530/// Check whether the given argument is a block which captures a
4531/// variable.
4532static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
4533 assert(owner.Variable && owner.Loc.isValid());
4534
4535 e = e->IgnoreParenCasts();
4536 BlockExpr *block = dyn_cast<BlockExpr>(e);
4537 if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
4538 return 0;
4539
4540 FindCaptureVisitor visitor(S.Context, owner.Variable);
4541 visitor.Visit(block->getBlockDecl()->getBody());
4542 return visitor.Capturer;
4543}
4544
4545static void diagnoseRetainCycle(Sema &S, Expr *capturer,
4546 RetainCycleOwner &owner) {
4547 assert(capturer);
4548 assert(owner.Variable && owner.Loc.isValid());
4549
4550 S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
4551 << owner.Variable << capturer->getSourceRange();
4552 S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
4553 << owner.Indirect << owner.Range;
4554}
4555
4556/// Check for a keyword selector that starts with the word 'add' or
4557/// 'set'.
4558static bool isSetterLikeSelector(Selector sel) {
4559 if (sel.isUnarySelector()) return false;
4560
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004561 StringRef str = sel.getNameForSlot(0);
John McCall31168b02011-06-15 23:02:42 +00004562 while (!str.empty() && str.front() == '_') str = str.substr(1);
Ted Kremenek764d63a2011-12-01 00:59:21 +00004563 if (str.startswith("set"))
John McCall31168b02011-06-15 23:02:42 +00004564 str = str.substr(3);
Ted Kremenek764d63a2011-12-01 00:59:21 +00004565 else if (str.startswith("add")) {
4566 // Specially whitelist 'addOperationWithBlock:'.
4567 if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
4568 return false;
4569 str = str.substr(3);
4570 }
John McCall31168b02011-06-15 23:02:42 +00004571 else
4572 return false;
4573
4574 if (str.empty()) return true;
4575 return !islower(str.front());
4576}
4577
4578/// Check a message send to see if it's likely to cause a retain cycle.
4579void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
4580 // Only check instance methods whose selector looks like a setter.
4581 if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
4582 return;
4583
4584 // Try to find a variable that the receiver is strongly owned by.
4585 RetainCycleOwner owner;
4586 if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
4587 if (!findRetainCycleOwner(msg->getInstanceReceiver(), owner))
4588 return;
4589 } else {
4590 assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
4591 owner.Variable = getCurMethodDecl()->getSelfDecl();
4592 owner.Loc = msg->getSuperLoc();
4593 owner.Range = msg->getSuperLoc();
4594 }
4595
4596 // Check whether the receiver is captured by any of the arguments.
4597 for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i)
4598 if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner))
4599 return diagnoseRetainCycle(*this, capturer, owner);
4600}
4601
4602/// Check a property assign to see if it's likely to cause a retain cycle.
4603void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
4604 RetainCycleOwner owner;
4605 if (!findRetainCycleOwner(receiver, owner))
4606 return;
4607
4608 if (Expr *capturer = findCapturingExpr(*this, argument, owner))
4609 diagnoseRetainCycle(*this, capturer, owner);
4610}
4611
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004612bool Sema::checkUnsafeAssigns(SourceLocation Loc,
John McCall31168b02011-06-15 23:02:42 +00004613 QualType LHS, Expr *RHS) {
4614 Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
4615 if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004616 return false;
4617 // strip off any implicit cast added to get to the one arc-specific
4618 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall2d637d22011-09-10 06:18:15 +00004619 if (cast->getCastKind() == CK_ARCConsumeObject) {
John McCall31168b02011-06-15 23:02:42 +00004620 Diag(Loc, diag::warn_arc_retained_assign)
4621 << (LT == Qualifiers::OCL_ExplicitNone)
4622 << RHS->getSourceRange();
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004623 return true;
4624 }
4625 RHS = cast->getSubExpr();
4626 }
4627 return false;
John McCall31168b02011-06-15 23:02:42 +00004628}
4629
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004630void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
4631 Expr *LHS, Expr *RHS) {
4632 QualType LHSType = LHS->getType();
4633 if (checkUnsafeAssigns(Loc, LHSType, RHS))
4634 return;
4635 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
4636 // FIXME. Check for other life times.
4637 if (LT != Qualifiers::OCL_None)
4638 return;
4639
John McCall526ab472011-10-25 17:37:35 +00004640 if (ObjCPropertyRefExpr *PRE
4641 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens())) {
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004642 if (PRE->isImplicitProperty())
4643 return;
4644 const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
4645 if (!PD)
4646 return;
4647
4648 unsigned Attributes = PD->getPropertyAttributes();
4649 if (Attributes & ObjCPropertyDecl::OBJC_PR_assign)
4650 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall2d637d22011-09-10 06:18:15 +00004651 if (cast->getCastKind() == CK_ARCConsumeObject) {
Fariborz Jahanian5f98da02011-06-24 18:25:34 +00004652 Diag(Loc, diag::warn_arc_retained_property_assign)
4653 << RHS->getSourceRange();
4654 return;
4655 }
4656 RHS = cast->getSubExpr();
4657 }
4658 }
4659}