blob: b31a5b8a84da3825b4398d10d874534f522e0317 [file] [log] [blame]
Chris Lattner59907c42007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-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 Lattner59907c42007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump1eb44332009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattner59907c42007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
John McCall5f8d6042011-08-27 01:09:30 +000015#include "clang/Sema/Initialization.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Sema.h"
John McCall2d887082010-08-25 22:03:47 +000017#include "clang/Sema/SemaInternal.h"
Eli Friedman276b0612011-10-11 02:20:01 +000018#include "clang/Sema/Initialization.h"
John McCall781472f2010-08-25 08:40:02 +000019#include "clang/Sema/ScopeInfo.h"
Ted Kremenek826a3452010-07-16 02:11:22 +000020#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000021#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000022#include "clang/AST/CharUnits.h"
John McCall384aff82010-08-25 07:42:41 +000023#include "clang/AST/DeclCXX.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000024#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000025#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000026#include "clang/AST/ExprObjC.h"
John McCallf85e1932011-06-15 23:02:42 +000027#include "clang/AST/EvaluatedExprVisitor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000028#include "clang/AST/DeclObjC.h"
29#include "clang/AST/StmtCXX.h"
30#include "clang/AST/StmtObjC.h"
Chris Lattner59907c42007-08-10 20:18:51 +000031#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000032#include "llvm/ADT/BitVector.h"
33#include "llvm/ADT/STLExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000034#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000035#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000036#include "clang/Basic/TargetInfo.h"
Fariborz Jahanian7da71022010-09-07 19:38:13 +000037#include "clang/Basic/ConvertUTF.h"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000038#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000039using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000040using namespace sema;
Chris Lattner59907c42007-08-10 20:18:51 +000041
Chris Lattner60800082009-02-18 17:49:48 +000042SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
43 unsigned ByteNo) const {
Chris Lattner08f92e32010-11-17 07:37:15 +000044 return SL->getLocationOfByte(ByteNo, PP.getSourceManager(),
45 PP.getLangOptions(), PP.getTargetInfo());
Chris Lattner60800082009-02-18 17:49:48 +000046}
47
John McCall8e10f3b2011-02-26 05:39:39 +000048/// Checks that a call expression's argument count is the desired number.
49/// This is useful when doing custom type-checking. Returns true on error.
50static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
51 unsigned argCount = call->getNumArgs();
52 if (argCount == desiredArgCount) return false;
53
54 if (argCount < desiredArgCount)
55 return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
56 << 0 /*function call*/ << desiredArgCount << argCount
57 << call->getSourceRange();
58
59 // Highlight all the excess arguments.
60 SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
61 call->getArg(argCount - 1)->getLocEnd());
62
63 return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
64 << 0 /*function call*/ << desiredArgCount << argCount
65 << call->getArg(1)->getSourceRange();
66}
67
Julien Lerouge77f68bb2011-09-09 22:41:49 +000068/// CheckBuiltinAnnotationString - Checks that string argument to the builtin
69/// annotation is a non wide string literal.
70static bool CheckBuiltinAnnotationString(Sema &S, Expr *Arg) {
71 Arg = Arg->IgnoreParenCasts();
72 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
73 if (!Literal || !Literal->isAscii()) {
74 S.Diag(Arg->getLocStart(), diag::err_builtin_annotation_not_string_constant)
75 << Arg->getSourceRange();
76 return true;
77 }
78 return false;
79}
80
John McCall60d7b3a2010-08-24 06:29:42 +000081ExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +000082Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCall60d7b3a2010-08-24 06:29:42 +000083 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +000084
Chris Lattner946928f2010-10-01 23:23:24 +000085 // Find out if any arguments are required to be integer constant expressions.
86 unsigned ICEArguments = 0;
87 ASTContext::GetBuiltinTypeError Error;
88 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
89 if (Error != ASTContext::GE_None)
90 ICEArguments = 0; // Don't diagnose previously diagnosed errors.
91
92 // If any arguments are required to be ICE's, check and diagnose.
93 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
94 // Skip arguments not required to be ICE's.
95 if ((ICEArguments & (1 << ArgNo)) == 0) continue;
96
97 llvm::APSInt Result;
98 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
99 return true;
100 ICEArguments &= ~(1 << ArgNo);
101 }
102
Anders Carlssond406bf02009-08-16 01:56:34 +0000103 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000104 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000105 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000106 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000107 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000108 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000109 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000110 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000111 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000112 if (SemaBuiltinVAStart(TheCall))
113 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000114 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000115 case Builtin::BI__builtin_isgreater:
116 case Builtin::BI__builtin_isgreaterequal:
117 case Builtin::BI__builtin_isless:
118 case Builtin::BI__builtin_islessequal:
119 case Builtin::BI__builtin_islessgreater:
120 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000121 if (SemaBuiltinUnorderedCompare(TheCall))
122 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000123 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000124 case Builtin::BI__builtin_fpclassify:
125 if (SemaBuiltinFPClassification(TheCall, 6))
126 return ExprError();
127 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000128 case Builtin::BI__builtin_isfinite:
129 case Builtin::BI__builtin_isinf:
130 case Builtin::BI__builtin_isinf_sign:
131 case Builtin::BI__builtin_isnan:
132 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000133 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000134 return ExprError();
135 break;
Eli Friedmand38617c2008-05-14 19:38:39 +0000136 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000137 return SemaBuiltinShuffleVector(TheCall);
138 // TheCall will be freed by the smart pointer here, but that's fine, since
139 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000140 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000141 if (SemaBuiltinPrefetch(TheCall))
142 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000143 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000144 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000145 if (SemaBuiltinObjectSize(TheCall))
146 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000147 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000148 case Builtin::BI__builtin_longjmp:
149 if (SemaBuiltinLongjmp(TheCall))
150 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000151 break;
John McCall8e10f3b2011-02-26 05:39:39 +0000152
153 case Builtin::BI__builtin_classify_type:
154 if (checkArgCount(*this, TheCall, 1)) return true;
155 TheCall->setType(Context.IntTy);
156 break;
Chris Lattner75c29a02010-10-12 17:47:42 +0000157 case Builtin::BI__builtin_constant_p:
John McCall8e10f3b2011-02-26 05:39:39 +0000158 if (checkArgCount(*this, TheCall, 1)) return true;
159 TheCall->setType(Context.IntTy);
Chris Lattner75c29a02010-10-12 17:47:42 +0000160 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000161 case Builtin::BI__sync_fetch_and_add:
Douglas Gregora9766412011-11-28 16:30:08 +0000162 case Builtin::BI__sync_fetch_and_add_1:
163 case Builtin::BI__sync_fetch_and_add_2:
164 case Builtin::BI__sync_fetch_and_add_4:
165 case Builtin::BI__sync_fetch_and_add_8:
166 case Builtin::BI__sync_fetch_and_add_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000167 case Builtin::BI__sync_fetch_and_sub:
Douglas Gregora9766412011-11-28 16:30:08 +0000168 case Builtin::BI__sync_fetch_and_sub_1:
169 case Builtin::BI__sync_fetch_and_sub_2:
170 case Builtin::BI__sync_fetch_and_sub_4:
171 case Builtin::BI__sync_fetch_and_sub_8:
172 case Builtin::BI__sync_fetch_and_sub_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000173 case Builtin::BI__sync_fetch_and_or:
Douglas Gregora9766412011-11-28 16:30:08 +0000174 case Builtin::BI__sync_fetch_and_or_1:
175 case Builtin::BI__sync_fetch_and_or_2:
176 case Builtin::BI__sync_fetch_and_or_4:
177 case Builtin::BI__sync_fetch_and_or_8:
178 case Builtin::BI__sync_fetch_and_or_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000179 case Builtin::BI__sync_fetch_and_and:
Douglas Gregora9766412011-11-28 16:30:08 +0000180 case Builtin::BI__sync_fetch_and_and_1:
181 case Builtin::BI__sync_fetch_and_and_2:
182 case Builtin::BI__sync_fetch_and_and_4:
183 case Builtin::BI__sync_fetch_and_and_8:
184 case Builtin::BI__sync_fetch_and_and_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000185 case Builtin::BI__sync_fetch_and_xor:
Douglas Gregora9766412011-11-28 16:30:08 +0000186 case Builtin::BI__sync_fetch_and_xor_1:
187 case Builtin::BI__sync_fetch_and_xor_2:
188 case Builtin::BI__sync_fetch_and_xor_4:
189 case Builtin::BI__sync_fetch_and_xor_8:
190 case Builtin::BI__sync_fetch_and_xor_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000191 case Builtin::BI__sync_add_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000192 case Builtin::BI__sync_add_and_fetch_1:
193 case Builtin::BI__sync_add_and_fetch_2:
194 case Builtin::BI__sync_add_and_fetch_4:
195 case Builtin::BI__sync_add_and_fetch_8:
196 case Builtin::BI__sync_add_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000197 case Builtin::BI__sync_sub_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000198 case Builtin::BI__sync_sub_and_fetch_1:
199 case Builtin::BI__sync_sub_and_fetch_2:
200 case Builtin::BI__sync_sub_and_fetch_4:
201 case Builtin::BI__sync_sub_and_fetch_8:
202 case Builtin::BI__sync_sub_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000203 case Builtin::BI__sync_and_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000204 case Builtin::BI__sync_and_and_fetch_1:
205 case Builtin::BI__sync_and_and_fetch_2:
206 case Builtin::BI__sync_and_and_fetch_4:
207 case Builtin::BI__sync_and_and_fetch_8:
208 case Builtin::BI__sync_and_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000209 case Builtin::BI__sync_or_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000210 case Builtin::BI__sync_or_and_fetch_1:
211 case Builtin::BI__sync_or_and_fetch_2:
212 case Builtin::BI__sync_or_and_fetch_4:
213 case Builtin::BI__sync_or_and_fetch_8:
214 case Builtin::BI__sync_or_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000215 case Builtin::BI__sync_xor_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000216 case Builtin::BI__sync_xor_and_fetch_1:
217 case Builtin::BI__sync_xor_and_fetch_2:
218 case Builtin::BI__sync_xor_and_fetch_4:
219 case Builtin::BI__sync_xor_and_fetch_8:
220 case Builtin::BI__sync_xor_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000221 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000222 case Builtin::BI__sync_val_compare_and_swap_1:
223 case Builtin::BI__sync_val_compare_and_swap_2:
224 case Builtin::BI__sync_val_compare_and_swap_4:
225 case Builtin::BI__sync_val_compare_and_swap_8:
226 case Builtin::BI__sync_val_compare_and_swap_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000227 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000228 case Builtin::BI__sync_bool_compare_and_swap_1:
229 case Builtin::BI__sync_bool_compare_and_swap_2:
230 case Builtin::BI__sync_bool_compare_and_swap_4:
231 case Builtin::BI__sync_bool_compare_and_swap_8:
232 case Builtin::BI__sync_bool_compare_and_swap_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000233 case Builtin::BI__sync_lock_test_and_set:
Douglas Gregora9766412011-11-28 16:30:08 +0000234 case Builtin::BI__sync_lock_test_and_set_1:
235 case Builtin::BI__sync_lock_test_and_set_2:
236 case Builtin::BI__sync_lock_test_and_set_4:
237 case Builtin::BI__sync_lock_test_and_set_8:
238 case Builtin::BI__sync_lock_test_and_set_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000239 case Builtin::BI__sync_lock_release:
Douglas Gregora9766412011-11-28 16:30:08 +0000240 case Builtin::BI__sync_lock_release_1:
241 case Builtin::BI__sync_lock_release_2:
242 case Builtin::BI__sync_lock_release_4:
243 case Builtin::BI__sync_lock_release_8:
244 case Builtin::BI__sync_lock_release_16:
Chris Lattner23aa9c82011-04-09 03:57:26 +0000245 case Builtin::BI__sync_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000246 case Builtin::BI__sync_swap_1:
247 case Builtin::BI__sync_swap_2:
248 case Builtin::BI__sync_swap_4:
249 case Builtin::BI__sync_swap_8:
250 case Builtin::BI__sync_swap_16:
Chandler Carruthd2014572010-07-09 18:59:35 +0000251 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Eli Friedman276b0612011-10-11 02:20:01 +0000252 case Builtin::BI__atomic_load:
253 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Load);
254 case Builtin::BI__atomic_store:
255 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Store);
David Chisnall7a7ee302012-01-16 17:27:18 +0000256 case Builtin::BI__atomic_init:
257 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Init);
Eli Friedman276b0612011-10-11 02:20:01 +0000258 case Builtin::BI__atomic_exchange:
259 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xchg);
260 case Builtin::BI__atomic_compare_exchange_strong:
261 return SemaAtomicOpsOverloaded(move(TheCallResult),
262 AtomicExpr::CmpXchgStrong);
263 case Builtin::BI__atomic_compare_exchange_weak:
264 return SemaAtomicOpsOverloaded(move(TheCallResult),
265 AtomicExpr::CmpXchgWeak);
266 case Builtin::BI__atomic_fetch_add:
267 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Add);
268 case Builtin::BI__atomic_fetch_sub:
269 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Sub);
270 case Builtin::BI__atomic_fetch_and:
271 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::And);
272 case Builtin::BI__atomic_fetch_or:
273 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Or);
274 case Builtin::BI__atomic_fetch_xor:
275 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xor);
Julien Lerouge77f68bb2011-09-09 22:41:49 +0000276 case Builtin::BI__builtin_annotation:
277 if (CheckBuiltinAnnotationString(*this, TheCall->getArg(1)))
278 return ExprError();
279 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000280 }
281
282 // Since the target specific builtins for each arch overlap, only check those
283 // of the arch we are compiling for.
284 if (BuiltinID >= Builtin::FirstTSBuiltin) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000285 switch (Context.getTargetInfo().getTriple().getArch()) {
Nate Begeman26a31422010-06-08 02:47:44 +0000286 case llvm::Triple::arm:
287 case llvm::Triple::thumb:
288 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
289 return ExprError();
290 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000291 default:
292 break;
293 }
294 }
295
296 return move(TheCallResult);
297}
298
Nate Begeman61eecf52010-06-14 05:21:25 +0000299// Get the valid immediate range for the specified NEON type code.
300static unsigned RFT(unsigned t, bool shift = false) {
Bob Wilsonda95f732011-11-08 01:16:11 +0000301 NeonTypeFlags Type(t);
302 int IsQuad = Type.isQuad();
303 switch (Type.getEltType()) {
304 case NeonTypeFlags::Int8:
305 case NeonTypeFlags::Poly8:
306 return shift ? 7 : (8 << IsQuad) - 1;
307 case NeonTypeFlags::Int16:
308 case NeonTypeFlags::Poly16:
309 return shift ? 15 : (4 << IsQuad) - 1;
310 case NeonTypeFlags::Int32:
311 return shift ? 31 : (2 << IsQuad) - 1;
312 case NeonTypeFlags::Int64:
313 return shift ? 63 : (1 << IsQuad) - 1;
314 case NeonTypeFlags::Float16:
315 assert(!shift && "cannot shift float types!");
316 return (4 << IsQuad) - 1;
317 case NeonTypeFlags::Float32:
318 assert(!shift && "cannot shift float types!");
319 return (2 << IsQuad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000320 }
David Blaikie7530c032012-01-17 06:56:22 +0000321 llvm_unreachable("Invalid NeonTypeFlag!");
Nate Begeman61eecf52010-06-14 05:21:25 +0000322}
323
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000324/// getNeonEltType - Return the QualType corresponding to the elements of
325/// the vector type specified by the NeonTypeFlags. This is used to check
326/// the pointer arguments for Neon load/store intrinsics.
327static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context) {
328 switch (Flags.getEltType()) {
329 case NeonTypeFlags::Int8:
330 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
331 case NeonTypeFlags::Int16:
332 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
333 case NeonTypeFlags::Int32:
334 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
335 case NeonTypeFlags::Int64:
336 return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
337 case NeonTypeFlags::Poly8:
338 return Context.SignedCharTy;
339 case NeonTypeFlags::Poly16:
340 return Context.ShortTy;
341 case NeonTypeFlags::Float16:
342 return Context.UnsignedShortTy;
343 case NeonTypeFlags::Float32:
344 return Context.FloatTy;
345 }
David Blaikie7530c032012-01-17 06:56:22 +0000346 llvm_unreachable("Invalid NeonTypeFlag!");
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000347}
348
Nate Begeman26a31422010-06-08 02:47:44 +0000349bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000350 llvm::APSInt Result;
351
Nate Begeman0d15c532010-06-13 04:47:52 +0000352 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000353 unsigned TV = 0;
Bob Wilson46482552011-11-16 21:32:23 +0000354 int PtrArgNum = -1;
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000355 bool HasConstPtr = false;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000356 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000357#define GET_NEON_OVERLOAD_CHECK
358#include "clang/Basic/arm_neon.inc"
359#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000360 }
361
Nate Begeman0d15c532010-06-13 04:47:52 +0000362 // For NEON intrinsics which are overloaded on vector element type, validate
363 // the immediate which specifies which variant to emit.
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000364 unsigned ImmArg = TheCall->getNumArgs()-1;
Nate Begeman0d15c532010-06-13 04:47:52 +0000365 if (mask) {
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000366 if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
Nate Begeman0d15c532010-06-13 04:47:52 +0000367 return true;
368
Bob Wilsonda95f732011-11-08 01:16:11 +0000369 TV = Result.getLimitedValue(64);
370 if ((TV > 63) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000371 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000372 << TheCall->getArg(ImmArg)->getSourceRange();
373 }
374
Bob Wilson46482552011-11-16 21:32:23 +0000375 if (PtrArgNum >= 0) {
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000376 // Check that pointer arguments have the specified type.
Bob Wilson46482552011-11-16 21:32:23 +0000377 Expr *Arg = TheCall->getArg(PtrArgNum);
378 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
379 Arg = ICE->getSubExpr();
380 ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
381 QualType RHSTy = RHS.get()->getType();
382 QualType EltTy = getNeonEltType(NeonTypeFlags(TV), Context);
383 if (HasConstPtr)
384 EltTy = EltTy.withConst();
385 QualType LHSTy = Context.getPointerType(EltTy);
386 AssignConvertType ConvTy;
387 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
388 if (RHS.isInvalid())
389 return true;
390 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
391 RHS.get(), AA_Assigning))
392 return true;
Nate Begeman0d15c532010-06-13 04:47:52 +0000393 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000394
Nate Begeman0d15c532010-06-13 04:47:52 +0000395 // For NEON intrinsics which take an immediate value as part of the
396 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000397 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000398 switch (BuiltinID) {
399 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000400 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
401 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000402 case ARM::BI__builtin_arm_vcvtr_f:
403 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000404#define GET_NEON_IMMEDIATE_CHECK
405#include "clang/Basic/arm_neon.inc"
406#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000407 };
408
Nate Begeman61eecf52010-06-14 05:21:25 +0000409 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000410 if (SemaBuiltinConstantArg(TheCall, i, Result))
411 return true;
412
Nate Begeman61eecf52010-06-14 05:21:25 +0000413 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000414 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000415 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000416 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000417 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000418
Nate Begeman99c40bb2010-08-03 21:32:34 +0000419 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000420 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000421}
Daniel Dunbarde454282008-10-02 18:44:07 +0000422
Anders Carlssond406bf02009-08-16 01:56:34 +0000423/// CheckFunctionCall - Check a direct function call for various correctness
424/// and safety properties not strictly enforced by the C type system.
425bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
426 // Get the IdentifierInfo* for the called function.
427 IdentifierInfo *FnInfo = FDecl->getIdentifier();
428
429 // None of the checks below are needed for functions that don't have
430 // simple names (e.g., C++ conversion functions).
431 if (!FnInfo)
432 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Daniel Dunbarde454282008-10-02 18:44:07 +0000434 // FIXME: This mechanism should be abstracted to be less fragile and
435 // more efficient. For example, just map function ids to custom
436 // handlers.
437
Ted Kremenekc82faca2010-09-09 04:33:05 +0000438 // Printf and scanf checking.
439 for (specific_attr_iterator<FormatAttr>
440 i = FDecl->specific_attr_begin<FormatAttr>(),
441 e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +0000442 CheckFormatArguments(*i, TheCall);
Chris Lattner59907c42007-08-10 20:18:51 +0000443 }
Mike Stump1eb44332009-09-09 15:08:12 +0000444
Ted Kremenekc82faca2010-09-09 04:33:05 +0000445 for (specific_attr_iterator<NonNullAttr>
446 i = FDecl->specific_attr_begin<NonNullAttr>(),
447 e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
Nick Lewycky909a70d2011-03-25 01:44:32 +0000448 CheckNonNullArguments(*i, TheCall->getArgs(),
449 TheCall->getCallee()->getLocStart());
Ted Kremenekc82faca2010-09-09 04:33:05 +0000450 }
Sebastian Redl0eb23302009-01-19 00:08:26 +0000451
Anna Zaks0a151a12012-01-17 00:37:07 +0000452 unsigned CMId = FDecl->getMemoryFunctionKind();
453 if (CMId == 0)
Anna Zaksd9b859a2012-01-13 21:52:01 +0000454 return false;
Ted Kremenekbd5da9d2011-08-18 20:55:45 +0000455
Anna Zaksd9b859a2012-01-13 21:52:01 +0000456 // Handle memory setting and copying functions.
Anna Zaks0a151a12012-01-17 00:37:07 +0000457 if (CMId == Builtin::BIstrlcpy || CMId == Builtin::BIstrlcat)
Ted Kremenekbd5da9d2011-08-18 20:55:45 +0000458 CheckStrlcpycatArguments(TheCall, FnInfo);
Anna Zaksd9b859a2012-01-13 21:52:01 +0000459 else
Anna Zaks0a151a12012-01-17 00:37:07 +0000460 CheckMemaccessArguments(TheCall, CMId, FnInfo);
Chandler Carruth7ccc95b2011-04-27 07:05:31 +0000461
Anders Carlssond406bf02009-08-16 01:56:34 +0000462 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000463}
464
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +0000465bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
466 Expr **Args, unsigned NumArgs) {
467 for (specific_attr_iterator<FormatAttr>
468 i = Method->specific_attr_begin<FormatAttr>(),
469 e = Method->specific_attr_end<FormatAttr>(); i != e ; ++i) {
470
471 CheckFormatArguments(*i, Args, NumArgs, false, lbrac,
472 Method->getSourceRange());
473 }
474
475 // diagnose nonnull arguments.
476 for (specific_attr_iterator<NonNullAttr>
477 i = Method->specific_attr_begin<NonNullAttr>(),
478 e = Method->specific_attr_end<NonNullAttr>(); i != e; ++i) {
479 CheckNonNullArguments(*i, Args, lbrac);
480 }
481
482 return false;
483}
484
Anders Carlssond406bf02009-08-16 01:56:34 +0000485bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000486 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
487 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000488 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000490 QualType Ty = V->getType();
491 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000492 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Jean-Daniel Dupas43d12512012-01-25 00:55:11 +0000494 // format string checking.
495 for (specific_attr_iterator<FormatAttr>
496 i = NDecl->specific_attr_begin<FormatAttr>(),
497 e = NDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
498 CheckFormatArguments(*i, TheCall);
499 }
Anders Carlssond406bf02009-08-16 01:56:34 +0000500
501 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000502}
503
Eli Friedman276b0612011-10-11 02:20:01 +0000504ExprResult
505Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, AtomicExpr::AtomicOp Op) {
506 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
507 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
Eli Friedman276b0612011-10-11 02:20:01 +0000508
509 // All these operations take one of the following four forms:
510 // T __atomic_load(_Atomic(T)*, int) (loads)
511 // T* __atomic_add(_Atomic(T*)*, ptrdiff_t, int) (pointer add/sub)
512 // int __atomic_compare_exchange_strong(_Atomic(T)*, T*, T, int, int)
513 // (cmpxchg)
514 // T __atomic_exchange(_Atomic(T)*, T, int) (everything else)
515 // where T is an appropriate type, and the int paremeterss are for orderings.
516 unsigned NumVals = 1;
517 unsigned NumOrders = 1;
518 if (Op == AtomicExpr::Load) {
519 NumVals = 0;
520 } else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong) {
521 NumVals = 2;
522 NumOrders = 2;
523 }
David Chisnall7a7ee302012-01-16 17:27:18 +0000524 if (Op == AtomicExpr::Init)
525 NumOrders = 0;
Eli Friedman276b0612011-10-11 02:20:01 +0000526
527 if (TheCall->getNumArgs() < NumVals+NumOrders+1) {
528 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
529 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
530 << TheCall->getCallee()->getSourceRange();
531 return ExprError();
532 } else if (TheCall->getNumArgs() > NumVals+NumOrders+1) {
533 Diag(TheCall->getArg(NumVals+NumOrders+1)->getLocStart(),
534 diag::err_typecheck_call_too_many_args)
535 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
536 << TheCall->getCallee()->getSourceRange();
537 return ExprError();
538 }
539
540 // Inspect the first argument of the atomic operation. This should always be
541 // a pointer to an _Atomic type.
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000542 Expr *Ptr = TheCall->getArg(0);
Eli Friedman276b0612011-10-11 02:20:01 +0000543 Ptr = DefaultFunctionArrayLvalueConversion(Ptr).get();
544 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
545 if (!pointerType) {
546 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
547 << Ptr->getType() << Ptr->getSourceRange();
548 return ExprError();
549 }
550
551 QualType AtomTy = pointerType->getPointeeType();
552 if (!AtomTy->isAtomicType()) {
553 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
554 << Ptr->getType() << Ptr->getSourceRange();
555 return ExprError();
556 }
557 QualType ValType = AtomTy->getAs<AtomicType>()->getValueType();
558
559 if ((Op == AtomicExpr::Add || Op == AtomicExpr::Sub) &&
560 !ValType->isIntegerType() && !ValType->isPointerType()) {
561 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic_int_or_ptr)
562 << Ptr->getType() << Ptr->getSourceRange();
563 return ExprError();
564 }
565
566 if (!ValType->isIntegerType() &&
567 (Op == AtomicExpr::And || Op == AtomicExpr::Or || Op == AtomicExpr::Xor)){
568 Diag(DRE->getLocStart(), diag::err_atomic_op_logical_needs_atomic_int)
569 << Ptr->getType() << Ptr->getSourceRange();
570 return ExprError();
571 }
572
573 switch (ValType.getObjCLifetime()) {
574 case Qualifiers::OCL_None:
575 case Qualifiers::OCL_ExplicitNone:
576 // okay
577 break;
578
579 case Qualifiers::OCL_Weak:
580 case Qualifiers::OCL_Strong:
581 case Qualifiers::OCL_Autoreleasing:
582 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
583 << ValType << Ptr->getSourceRange();
584 return ExprError();
585 }
586
587 QualType ResultType = ValType;
David Chisnall7a7ee302012-01-16 17:27:18 +0000588 if (Op == AtomicExpr::Store || Op == AtomicExpr::Init)
Eli Friedman276b0612011-10-11 02:20:01 +0000589 ResultType = Context.VoidTy;
590 else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong)
591 ResultType = Context.BoolTy;
592
593 // The first argument --- the pointer --- has a fixed type; we
594 // deduce the types of the rest of the arguments accordingly. Walk
595 // the remaining arguments, converting them to the deduced value type.
596 for (unsigned i = 1; i != NumVals+NumOrders+1; ++i) {
597 ExprResult Arg = TheCall->getArg(i);
598 QualType Ty;
599 if (i < NumVals+1) {
600 // The second argument to a cmpxchg is a pointer to the data which will
601 // be exchanged. The second argument to a pointer add/subtract is the
602 // amount to add/subtract, which must be a ptrdiff_t. The third
603 // argument to a cmpxchg and the second argument in all other cases
604 // is the type of the value.
605 if (i == 1 && (Op == AtomicExpr::CmpXchgWeak ||
606 Op == AtomicExpr::CmpXchgStrong))
607 Ty = Context.getPointerType(ValType.getUnqualifiedType());
608 else if (!ValType->isIntegerType() &&
609 (Op == AtomicExpr::Add || Op == AtomicExpr::Sub))
610 Ty = Context.getPointerDiffType();
611 else
612 Ty = ValType;
613 } else {
614 // The order(s) are always converted to int.
615 Ty = Context.IntTy;
616 }
617 InitializedEntity Entity =
618 InitializedEntity::InitializeParameter(Context, Ty, false);
619 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
620 if (Arg.isInvalid())
621 return true;
622 TheCall->setArg(i, Arg.get());
623 }
624
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000625 SmallVector<Expr*, 5> SubExprs;
626 SubExprs.push_back(Ptr);
Eli Friedman276b0612011-10-11 02:20:01 +0000627 if (Op == AtomicExpr::Load) {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000628 SubExprs.push_back(TheCall->getArg(1)); // Order
David Chisnall7a7ee302012-01-16 17:27:18 +0000629 } else if (Op == AtomicExpr::Init) {
630 SubExprs.push_back(TheCall->getArg(1)); // Val1
Eli Friedman276b0612011-10-11 02:20:01 +0000631 } else if (Op != AtomicExpr::CmpXchgWeak && Op != AtomicExpr::CmpXchgStrong) {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000632 SubExprs.push_back(TheCall->getArg(2)); // Order
633 SubExprs.push_back(TheCall->getArg(1)); // Val1
Eli Friedman276b0612011-10-11 02:20:01 +0000634 } else {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000635 SubExprs.push_back(TheCall->getArg(3)); // Order
636 SubExprs.push_back(TheCall->getArg(1)); // Val1
637 SubExprs.push_back(TheCall->getArg(2)); // Val2
638 SubExprs.push_back(TheCall->getArg(4)); // OrderFail
Eli Friedman276b0612011-10-11 02:20:01 +0000639 }
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000640
641 return Owned(new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(),
642 SubExprs.data(), SubExprs.size(),
643 ResultType, Op,
644 TheCall->getRParenLoc()));
Eli Friedman276b0612011-10-11 02:20:01 +0000645}
646
647
John McCall5f8d6042011-08-27 01:09:30 +0000648/// checkBuiltinArgument - Given a call to a builtin function, perform
649/// normal type-checking on the given argument, updating the call in
650/// place. This is useful when a builtin function requires custom
651/// type-checking for some of its arguments but not necessarily all of
652/// them.
653///
654/// Returns true on error.
655static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
656 FunctionDecl *Fn = E->getDirectCallee();
657 assert(Fn && "builtin call without direct callee!");
658
659 ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
660 InitializedEntity Entity =
661 InitializedEntity::InitializeParameter(S.Context, Param);
662
663 ExprResult Arg = E->getArg(0);
664 Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
665 if (Arg.isInvalid())
666 return true;
667
668 E->setArg(ArgIndex, Arg.take());
669 return false;
670}
671
Chris Lattner5caa3702009-05-08 06:58:22 +0000672/// SemaBuiltinAtomicOverloaded - We have a call to a function like
673/// __sync_fetch_and_add, which is an overloaded function based on the pointer
674/// type of its first argument. The main ActOnCallExpr routines have already
675/// promoted the types of arguments because all of these calls are prototyped as
676/// void(...).
677///
678/// This function goes through and does final semantic checking for these
679/// builtins,
John McCall60d7b3a2010-08-24 06:29:42 +0000680ExprResult
681Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000682 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000683 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
684 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
685
686 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000687 if (TheCall->getNumArgs() < 1) {
688 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
689 << 0 << 1 << TheCall->getNumArgs()
690 << TheCall->getCallee()->getSourceRange();
691 return ExprError();
692 }
Mike Stump1eb44332009-09-09 15:08:12 +0000693
Chris Lattner5caa3702009-05-08 06:58:22 +0000694 // Inspect the first argument of the atomic builtin. This should always be
695 // a pointer type, whose element is an integral scalar or pointer type.
696 // Because it is a pointer type, we don't have to worry about any implicit
697 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000698 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000699 Expr *FirstArg = TheCall->getArg(0);
Eli Friedman8c382062012-01-23 02:35:22 +0000700 ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
701 if (FirstArgResult.isInvalid())
702 return ExprError();
703 FirstArg = FirstArgResult.take();
704 TheCall->setArg(0, FirstArg);
705
John McCallf85e1932011-06-15 23:02:42 +0000706 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
707 if (!pointerType) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000708 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
709 << FirstArg->getType() << FirstArg->getSourceRange();
710 return ExprError();
711 }
Mike Stump1eb44332009-09-09 15:08:12 +0000712
John McCallf85e1932011-06-15 23:02:42 +0000713 QualType ValType = pointerType->getPointeeType();
Chris Lattnerdd5fa7a2010-09-17 21:12:38 +0000714 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000715 !ValType->isBlockPointerType()) {
716 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
717 << FirstArg->getType() << FirstArg->getSourceRange();
718 return ExprError();
719 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000720
John McCallf85e1932011-06-15 23:02:42 +0000721 switch (ValType.getObjCLifetime()) {
722 case Qualifiers::OCL_None:
723 case Qualifiers::OCL_ExplicitNone:
724 // okay
725 break;
726
727 case Qualifiers::OCL_Weak:
728 case Qualifiers::OCL_Strong:
729 case Qualifiers::OCL_Autoreleasing:
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +0000730 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
John McCallf85e1932011-06-15 23:02:42 +0000731 << ValType << FirstArg->getSourceRange();
732 return ExprError();
733 }
734
John McCallb45ae252011-10-05 07:41:44 +0000735 // Strip any qualifiers off ValType.
736 ValType = ValType.getUnqualifiedType();
737
Chandler Carruth8d13d222010-07-18 20:54:12 +0000738 // The majority of builtins return a value, but a few have special return
739 // types, so allow them to override appropriately below.
740 QualType ResultType = ValType;
741
Chris Lattner5caa3702009-05-08 06:58:22 +0000742 // We need to figure out which concrete builtin this maps onto. For example,
743 // __sync_fetch_and_add with a 2 byte object turns into
744 // __sync_fetch_and_add_2.
745#define BUILTIN_ROW(x) \
746 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
747 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Chris Lattner5caa3702009-05-08 06:58:22 +0000749 static const unsigned BuiltinIndices[][5] = {
750 BUILTIN_ROW(__sync_fetch_and_add),
751 BUILTIN_ROW(__sync_fetch_and_sub),
752 BUILTIN_ROW(__sync_fetch_and_or),
753 BUILTIN_ROW(__sync_fetch_and_and),
754 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Chris Lattner5caa3702009-05-08 06:58:22 +0000756 BUILTIN_ROW(__sync_add_and_fetch),
757 BUILTIN_ROW(__sync_sub_and_fetch),
758 BUILTIN_ROW(__sync_and_and_fetch),
759 BUILTIN_ROW(__sync_or_and_fetch),
760 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000761
Chris Lattner5caa3702009-05-08 06:58:22 +0000762 BUILTIN_ROW(__sync_val_compare_and_swap),
763 BUILTIN_ROW(__sync_bool_compare_and_swap),
764 BUILTIN_ROW(__sync_lock_test_and_set),
Chris Lattner23aa9c82011-04-09 03:57:26 +0000765 BUILTIN_ROW(__sync_lock_release),
766 BUILTIN_ROW(__sync_swap)
Chris Lattner5caa3702009-05-08 06:58:22 +0000767 };
Mike Stump1eb44332009-09-09 15:08:12 +0000768#undef BUILTIN_ROW
769
Chris Lattner5caa3702009-05-08 06:58:22 +0000770 // Determine the index of the size.
771 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000772 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000773 case 1: SizeIndex = 0; break;
774 case 2: SizeIndex = 1; break;
775 case 4: SizeIndex = 2; break;
776 case 8: SizeIndex = 3; break;
777 case 16: SizeIndex = 4; break;
778 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000779 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
780 << FirstArg->getType() << FirstArg->getSourceRange();
781 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000782 }
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Chris Lattner5caa3702009-05-08 06:58:22 +0000784 // Each of these builtins has one pointer argument, followed by some number of
785 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
786 // that we ignore. Find out which row of BuiltinIndices to read from as well
787 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000788 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000789 unsigned BuiltinIndex, NumFixed = 1;
790 switch (BuiltinID) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000791 default: llvm_unreachable("Unknown overloaded atomic builtin!");
Douglas Gregora9766412011-11-28 16:30:08 +0000792 case Builtin::BI__sync_fetch_and_add:
793 case Builtin::BI__sync_fetch_and_add_1:
794 case Builtin::BI__sync_fetch_and_add_2:
795 case Builtin::BI__sync_fetch_and_add_4:
796 case Builtin::BI__sync_fetch_and_add_8:
797 case Builtin::BI__sync_fetch_and_add_16:
798 BuiltinIndex = 0;
799 break;
800
801 case Builtin::BI__sync_fetch_and_sub:
802 case Builtin::BI__sync_fetch_and_sub_1:
803 case Builtin::BI__sync_fetch_and_sub_2:
804 case Builtin::BI__sync_fetch_and_sub_4:
805 case Builtin::BI__sync_fetch_and_sub_8:
806 case Builtin::BI__sync_fetch_and_sub_16:
807 BuiltinIndex = 1;
808 break;
809
810 case Builtin::BI__sync_fetch_and_or:
811 case Builtin::BI__sync_fetch_and_or_1:
812 case Builtin::BI__sync_fetch_and_or_2:
813 case Builtin::BI__sync_fetch_and_or_4:
814 case Builtin::BI__sync_fetch_and_or_8:
815 case Builtin::BI__sync_fetch_and_or_16:
816 BuiltinIndex = 2;
817 break;
818
819 case Builtin::BI__sync_fetch_and_and:
820 case Builtin::BI__sync_fetch_and_and_1:
821 case Builtin::BI__sync_fetch_and_and_2:
822 case Builtin::BI__sync_fetch_and_and_4:
823 case Builtin::BI__sync_fetch_and_and_8:
824 case Builtin::BI__sync_fetch_and_and_16:
825 BuiltinIndex = 3;
826 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000827
Douglas Gregora9766412011-11-28 16:30:08 +0000828 case Builtin::BI__sync_fetch_and_xor:
829 case Builtin::BI__sync_fetch_and_xor_1:
830 case Builtin::BI__sync_fetch_and_xor_2:
831 case Builtin::BI__sync_fetch_and_xor_4:
832 case Builtin::BI__sync_fetch_and_xor_8:
833 case Builtin::BI__sync_fetch_and_xor_16:
834 BuiltinIndex = 4;
835 break;
836
837 case Builtin::BI__sync_add_and_fetch:
838 case Builtin::BI__sync_add_and_fetch_1:
839 case Builtin::BI__sync_add_and_fetch_2:
840 case Builtin::BI__sync_add_and_fetch_4:
841 case Builtin::BI__sync_add_and_fetch_8:
842 case Builtin::BI__sync_add_and_fetch_16:
843 BuiltinIndex = 5;
844 break;
845
846 case Builtin::BI__sync_sub_and_fetch:
847 case Builtin::BI__sync_sub_and_fetch_1:
848 case Builtin::BI__sync_sub_and_fetch_2:
849 case Builtin::BI__sync_sub_and_fetch_4:
850 case Builtin::BI__sync_sub_and_fetch_8:
851 case Builtin::BI__sync_sub_and_fetch_16:
852 BuiltinIndex = 6;
853 break;
854
855 case Builtin::BI__sync_and_and_fetch:
856 case Builtin::BI__sync_and_and_fetch_1:
857 case Builtin::BI__sync_and_and_fetch_2:
858 case Builtin::BI__sync_and_and_fetch_4:
859 case Builtin::BI__sync_and_and_fetch_8:
860 case Builtin::BI__sync_and_and_fetch_16:
861 BuiltinIndex = 7;
862 break;
863
864 case Builtin::BI__sync_or_and_fetch:
865 case Builtin::BI__sync_or_and_fetch_1:
866 case Builtin::BI__sync_or_and_fetch_2:
867 case Builtin::BI__sync_or_and_fetch_4:
868 case Builtin::BI__sync_or_and_fetch_8:
869 case Builtin::BI__sync_or_and_fetch_16:
870 BuiltinIndex = 8;
871 break;
872
873 case Builtin::BI__sync_xor_and_fetch:
874 case Builtin::BI__sync_xor_and_fetch_1:
875 case Builtin::BI__sync_xor_and_fetch_2:
876 case Builtin::BI__sync_xor_and_fetch_4:
877 case Builtin::BI__sync_xor_and_fetch_8:
878 case Builtin::BI__sync_xor_and_fetch_16:
879 BuiltinIndex = 9;
880 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000881
Chris Lattner5caa3702009-05-08 06:58:22 +0000882 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000883 case Builtin::BI__sync_val_compare_and_swap_1:
884 case Builtin::BI__sync_val_compare_and_swap_2:
885 case Builtin::BI__sync_val_compare_and_swap_4:
886 case Builtin::BI__sync_val_compare_and_swap_8:
887 case Builtin::BI__sync_val_compare_and_swap_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000888 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000889 NumFixed = 2;
890 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000891
Chris Lattner5caa3702009-05-08 06:58:22 +0000892 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000893 case Builtin::BI__sync_bool_compare_and_swap_1:
894 case Builtin::BI__sync_bool_compare_and_swap_2:
895 case Builtin::BI__sync_bool_compare_and_swap_4:
896 case Builtin::BI__sync_bool_compare_and_swap_8:
897 case Builtin::BI__sync_bool_compare_and_swap_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000898 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000899 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000900 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000901 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000902
903 case Builtin::BI__sync_lock_test_and_set:
904 case Builtin::BI__sync_lock_test_and_set_1:
905 case Builtin::BI__sync_lock_test_and_set_2:
906 case Builtin::BI__sync_lock_test_and_set_4:
907 case Builtin::BI__sync_lock_test_and_set_8:
908 case Builtin::BI__sync_lock_test_and_set_16:
909 BuiltinIndex = 12;
910 break;
911
Chris Lattner5caa3702009-05-08 06:58:22 +0000912 case Builtin::BI__sync_lock_release:
Douglas Gregora9766412011-11-28 16:30:08 +0000913 case Builtin::BI__sync_lock_release_1:
914 case Builtin::BI__sync_lock_release_2:
915 case Builtin::BI__sync_lock_release_4:
916 case Builtin::BI__sync_lock_release_8:
917 case Builtin::BI__sync_lock_release_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000918 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000919 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000920 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000921 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000922
923 case Builtin::BI__sync_swap:
924 case Builtin::BI__sync_swap_1:
925 case Builtin::BI__sync_swap_2:
926 case Builtin::BI__sync_swap_4:
927 case Builtin::BI__sync_swap_8:
928 case Builtin::BI__sync_swap_16:
929 BuiltinIndex = 14;
930 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000931 }
Mike Stump1eb44332009-09-09 15:08:12 +0000932
Chris Lattner5caa3702009-05-08 06:58:22 +0000933 // Now that we know how many fixed arguments we expect, first check that we
934 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000935 if (TheCall->getNumArgs() < 1+NumFixed) {
936 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
937 << 0 << 1+NumFixed << TheCall->getNumArgs()
938 << TheCall->getCallee()->getSourceRange();
939 return ExprError();
940 }
Mike Stump1eb44332009-09-09 15:08:12 +0000941
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000942 // Get the decl for the concrete builtin from this, we can tell what the
943 // concrete integer type we should convert to is.
944 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
945 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
946 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000947 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000948 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
949 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000950
John McCallf871d0c2010-08-07 06:22:56 +0000951 // The first argument --- the pointer --- has a fixed type; we
952 // deduce the types of the rest of the arguments accordingly. Walk
953 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000954 for (unsigned i = 0; i != NumFixed; ++i) {
John Wiegley429bb272011-04-08 18:41:53 +0000955 ExprResult Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Chris Lattner5caa3702009-05-08 06:58:22 +0000957 // GCC does an implicit conversion to the pointer or integer ValType. This
958 // can fail in some cases (1i -> int**), check for this error case now.
John McCallb45ae252011-10-05 07:41:44 +0000959 // Initialize the argument.
960 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
961 ValType, /*consume*/ false);
962 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
John Wiegley429bb272011-04-08 18:41:53 +0000963 if (Arg.isInvalid())
Chandler Carruthd2014572010-07-09 18:59:35 +0000964 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Chris Lattner5caa3702009-05-08 06:58:22 +0000966 // Okay, we have something that *can* be converted to the right type. Check
967 // to see if there is a potentially weird extension going on here. This can
968 // happen when you do an atomic operation on something like an char* and
969 // pass in 42. The 42 gets converted to char. This is even more strange
970 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000971 // FIXME: Do this check.
John McCallb45ae252011-10-05 07:41:44 +0000972 TheCall->setArg(i+1, Arg.take());
Chris Lattner5caa3702009-05-08 06:58:22 +0000973 }
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Douglas Gregorbbcb7ea2011-09-09 16:51:10 +0000975 ASTContext& Context = this->getASTContext();
976
977 // Create a new DeclRefExpr to refer to the new decl.
978 DeclRefExpr* NewDRE = DeclRefExpr::Create(
979 Context,
980 DRE->getQualifierLoc(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000981 SourceLocation(),
Douglas Gregorbbcb7ea2011-09-09 16:51:10 +0000982 NewBuiltinDecl,
983 DRE->getLocation(),
984 NewBuiltinDecl->getType(),
985 DRE->getValueKind());
Mike Stump1eb44332009-09-09 15:08:12 +0000986
Chris Lattner5caa3702009-05-08 06:58:22 +0000987 // Set the callee in the CallExpr.
988 // FIXME: This leaks the original parens and implicit casts.
Douglas Gregorbbcb7ea2011-09-09 16:51:10 +0000989 ExprResult PromotedCall = UsualUnaryConversions(NewDRE);
John Wiegley429bb272011-04-08 18:41:53 +0000990 if (PromotedCall.isInvalid())
991 return ExprError();
992 TheCall->setCallee(PromotedCall.take());
Mike Stump1eb44332009-09-09 15:08:12 +0000993
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000994 // Change the result type of the call to match the original value type. This
995 // is arbitrary, but the codegen for these builtins ins design to handle it
996 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000997 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000998
999 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +00001000}
1001
Chris Lattner69039812009-02-18 06:01:06 +00001002/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +00001003/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +00001004/// Note: It might also make sense to do the UTF-16 conversion here (would
1005/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +00001006bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +00001007 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +00001008 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
1009
Douglas Gregor5cee1192011-07-27 05:40:30 +00001010 if (!Literal || !Literal->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001011 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
1012 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +00001013 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +00001014 }
Mike Stump1eb44332009-09-09 15:08:12 +00001015
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001016 if (Literal->containsNonAsciiOrNull()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001017 StringRef String = Literal->getString();
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001018 unsigned NumBytes = String.size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001019 SmallVector<UTF16, 128> ToBuf(NumBytes);
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001020 const UTF8 *FromPtr = (UTF8 *)String.data();
1021 UTF16 *ToPtr = &ToBuf[0];
1022
1023 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
1024 &ToPtr, ToPtr + NumBytes,
1025 strictConversion);
1026 // Check for conversion failure.
1027 if (Result != conversionOK)
1028 Diag(Arg->getLocStart(),
1029 diag::warn_cfstring_truncated) << Arg->getSourceRange();
1030 }
Anders Carlsson9cdc4d32007-08-17 15:44:17 +00001031 return false;
Chris Lattner59907c42007-08-10 20:18:51 +00001032}
1033
Chris Lattnerc27c6652007-12-20 00:05:45 +00001034/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
1035/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +00001036bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
1037 Expr *Fn = TheCall->getCallee();
1038 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +00001039 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001040 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001041 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
1042 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +00001043 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001044 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +00001045 return true;
1046 }
Eli Friedman56f20ae2008-12-15 22:05:35 +00001047
1048 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +00001049 return Diag(TheCall->getLocEnd(),
1050 diag::err_typecheck_call_too_few_args_at_least)
1051 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +00001052 }
1053
John McCall5f8d6042011-08-27 01:09:30 +00001054 // Type-check the first argument normally.
1055 if (checkBuiltinArgument(*this, TheCall, 0))
1056 return true;
1057
Chris Lattnerc27c6652007-12-20 00:05:45 +00001058 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00001059 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +00001060 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +00001061 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +00001062 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +00001063 else if (FunctionDecl *FD = getCurFunctionDecl())
1064 isVariadic = FD->isVariadic();
1065 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001066 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Chris Lattnerc27c6652007-12-20 00:05:45 +00001068 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +00001069 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
1070 return true;
1071 }
Mike Stump1eb44332009-09-09 15:08:12 +00001072
Chris Lattner30ce3442007-12-19 23:59:04 +00001073 // Verify that the second argument to the builtin is the last argument of the
1074 // current function or method.
1075 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +00001076 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Anders Carlsson88cf2262008-02-11 04:20:54 +00001078 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
1079 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +00001080 // FIXME: This isn't correct for methods (results in bogus warning).
1081 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +00001082 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +00001083 if (CurBlock)
1084 LastArg = *(CurBlock->TheDecl->param_end()-1);
1085 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +00001086 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +00001087 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001088 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +00001089 SecondArgIsLastNamedArgument = PV == LastArg;
1090 }
1091 }
Mike Stump1eb44332009-09-09 15:08:12 +00001092
Chris Lattner30ce3442007-12-19 23:59:04 +00001093 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001094 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +00001095 diag::warn_second_parameter_of_va_start_not_last_named_argument);
1096 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +00001097}
Chris Lattner30ce3442007-12-19 23:59:04 +00001098
Chris Lattner1b9a0792007-12-20 00:26:33 +00001099/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
1100/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +00001101bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
1102 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +00001103 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +00001104 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +00001105 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +00001106 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001107 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001108 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001109 << SourceRange(TheCall->getArg(2)->getLocStart(),
1110 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00001111
John Wiegley429bb272011-04-08 18:41:53 +00001112 ExprResult OrigArg0 = TheCall->getArg(0);
1113 ExprResult OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +00001114
Chris Lattner1b9a0792007-12-20 00:26:33 +00001115 // Do standard promotions between the two arguments, returning their common
1116 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +00001117 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
John Wiegley429bb272011-04-08 18:41:53 +00001118 if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
1119 return true;
Daniel Dunbar403bc2b2009-02-19 19:28:43 +00001120
1121 // Make sure any conversions are pushed back into the call; this is
1122 // type safe since unordered compare builtins are declared as "_Bool
1123 // foo(...)".
John Wiegley429bb272011-04-08 18:41:53 +00001124 TheCall->setArg(0, OrigArg0.get());
1125 TheCall->setArg(1, OrigArg1.get());
Mike Stump1eb44332009-09-09 15:08:12 +00001126
John Wiegley429bb272011-04-08 18:41:53 +00001127 if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
Douglas Gregorcde01732009-05-19 22:10:17 +00001128 return false;
1129
Chris Lattner1b9a0792007-12-20 00:26:33 +00001130 // If the common type isn't a real floating type, then the arguments were
1131 // invalid for this operation.
1132 if (!Res->isRealFloatingType())
John Wiegley429bb272011-04-08 18:41:53 +00001133 return Diag(OrigArg0.get()->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001134 diag::err_typecheck_call_invalid_ordered_compare)
John Wiegley429bb272011-04-08 18:41:53 +00001135 << OrigArg0.get()->getType() << OrigArg1.get()->getType()
1136 << SourceRange(OrigArg0.get()->getLocStart(), OrigArg1.get()->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Chris Lattner1b9a0792007-12-20 00:26:33 +00001138 return false;
1139}
1140
Benjamin Kramere771a7a2010-02-15 22:42:31 +00001141/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
1142/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001143/// to check everything. We expect the last argument to be a floating point
1144/// value.
1145bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
1146 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +00001147 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +00001148 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001149 if (TheCall->getNumArgs() > NumArgs)
1150 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001151 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001152 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001153 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001154 (*(TheCall->arg_end()-1))->getLocEnd());
1155
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001156 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +00001157
Eli Friedman9ac6f622009-08-31 20:06:00 +00001158 if (OrigArg->isTypeDependent())
1159 return false;
1160
Chris Lattner81368fb2010-05-06 05:50:07 +00001161 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +00001162 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +00001163 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001164 diag::err_typecheck_call_invalid_unary_fp)
1165 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Chris Lattner81368fb2010-05-06 05:50:07 +00001167 // If this is an implicit conversion from float -> double, remove it.
1168 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
1169 Expr *CastArg = Cast->getSubExpr();
1170 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
1171 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
1172 "promotion from float to double is the only expected cast here");
1173 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +00001174 TheCall->setArg(NumArgs-1, CastArg);
1175 OrigArg = CastArg;
1176 }
1177 }
1178
Eli Friedman9ac6f622009-08-31 20:06:00 +00001179 return false;
1180}
1181
Eli Friedmand38617c2008-05-14 19:38:39 +00001182/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
1183// This is declared to take (...), so we have to check everything.
John McCall60d7b3a2010-08-24 06:29:42 +00001184ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +00001185 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001186 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +00001187 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +00001188 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +00001189 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +00001190
Nate Begeman37b6a572010-06-08 00:16:34 +00001191 // Determine which of the following types of shufflevector we're checking:
1192 // 1) unary, vector mask: (lhs, mask)
1193 // 2) binary, vector mask: (lhs, rhs, mask)
1194 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
1195 QualType resType = TheCall->getArg(0)->getType();
1196 unsigned numElements = 0;
1197
Douglas Gregorcde01732009-05-19 22:10:17 +00001198 if (!TheCall->getArg(0)->isTypeDependent() &&
1199 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +00001200 QualType LHSType = TheCall->getArg(0)->getType();
1201 QualType RHSType = TheCall->getArg(1)->getType();
1202
1203 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001204 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +00001205 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +00001206 TheCall->getArg(1)->getLocEnd());
1207 return ExprError();
1208 }
Nate Begeman37b6a572010-06-08 00:16:34 +00001209
1210 numElements = LHSType->getAs<VectorType>()->getNumElements();
1211 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Nate Begeman37b6a572010-06-08 00:16:34 +00001213 // Check to see if we have a call with 2 vector arguments, the unary shuffle
1214 // with mask. If so, verify that RHS is an integer vector type with the
1215 // same number of elts as lhs.
1216 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +00001217 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +00001218 RHSType->getAs<VectorType>()->getNumElements() != numElements)
1219 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
1220 << SourceRange(TheCall->getArg(1)->getLocStart(),
1221 TheCall->getArg(1)->getLocEnd());
1222 numResElements = numElements;
1223 }
1224 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001225 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +00001226 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +00001227 TheCall->getArg(1)->getLocEnd());
1228 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +00001229 } else if (numElements != numResElements) {
1230 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +00001231 resType = Context.getVectorType(eltType, numResElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00001232 VectorType::GenericVector);
Douglas Gregorcde01732009-05-19 22:10:17 +00001233 }
Eli Friedmand38617c2008-05-14 19:38:39 +00001234 }
1235
1236 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001237 if (TheCall->getArg(i)->isTypeDependent() ||
1238 TheCall->getArg(i)->isValueDependent())
1239 continue;
1240
Nate Begeman37b6a572010-06-08 00:16:34 +00001241 llvm::APSInt Result(32);
1242 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
1243 return ExprError(Diag(TheCall->getLocStart(),
1244 diag::err_shufflevector_nonconstant_argument)
1245 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001246
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +00001247 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001248 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001249 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001250 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +00001251 }
1252
Chris Lattner5f9e2722011-07-23 10:55:15 +00001253 SmallVector<Expr*, 32> exprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001254
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +00001255 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +00001256 exprs.push_back(TheCall->getArg(i));
1257 TheCall->setArg(i, 0);
1258 }
1259
Nate Begemana88dc302009-08-12 02:10:25 +00001260 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +00001261 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +00001262 TheCall->getCallee()->getLocStart(),
1263 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +00001264}
Chris Lattner30ce3442007-12-19 23:59:04 +00001265
Daniel Dunbar4493f792008-07-21 22:59:13 +00001266/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
1267// This is declared to take (const void*, ...) and can take two
1268// optional constant int args.
1269bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001270 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001271
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001272 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +00001273 return Diag(TheCall->getLocEnd(),
1274 diag::err_typecheck_call_too_many_args_at_most)
1275 << 0 /*function call*/ << 3 << NumArgs
1276 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001277
1278 // Argument 0 is checked for us and the remaining arguments must be
1279 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001280 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +00001281 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +00001282
Eli Friedman9aef7262009-12-04 00:30:06 +00001283 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +00001284 if (SemaBuiltinConstantArg(TheCall, i, Result))
1285 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001286
Daniel Dunbar4493f792008-07-21 22:59:13 +00001287 // FIXME: gcc issues a warning and rewrites these to 0. These
1288 // seems especially odd for the third argument since the default
1289 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001290 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +00001291 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001292 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +00001293 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001294 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +00001295 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001296 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +00001297 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001298 }
1299 }
1300
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001301 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +00001302}
1303
Eric Christopher691ebc32010-04-17 02:26:23 +00001304/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
1305/// TheCall is a constant expression.
1306bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
1307 llvm::APSInt &Result) {
1308 Expr *Arg = TheCall->getArg(ArgNum);
1309 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
1310 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
1311
1312 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
1313
1314 if (!Arg->isIntegerConstantExpr(Result, Context))
1315 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +00001316 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +00001317
Chris Lattner21fb98e2009-09-23 06:06:36 +00001318 return false;
1319}
1320
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001321/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
1322/// int type). This simply type checks that type is one of the defined
1323/// constants (0-3).
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001324// For compatibility check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001325bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +00001326 llvm::APSInt Result;
1327
1328 // Check constant-ness first.
1329 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1330 return true;
1331
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001332 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001333 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001334 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
1335 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001336 }
1337
1338 return false;
1339}
1340
Eli Friedman586d6a82009-05-03 06:04:26 +00001341/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +00001342/// This checks that val is a constant 1.
1343bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
1344 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +00001345 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +00001346
Eric Christopher691ebc32010-04-17 02:26:23 +00001347 // TODO: This is less than ideal. Overload this to take a value.
1348 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1349 return true;
1350
1351 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +00001352 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
1353 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
1354
1355 return false;
1356}
1357
Ted Kremenekb43e8ad2011-02-24 23:03:04 +00001358// Handle i > 1 ? "x" : "y", recursively.
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001359bool Sema::SemaCheckStringLiteral(const Expr *E, Expr **Args,
1360 unsigned NumArgs, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001361 unsigned format_idx, unsigned firstDataArg,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001362 FormatStringType Type, bool inFunctionCall) {
Ted Kremenek4fe64412010-09-09 03:51:39 +00001363 tryAgain:
Douglas Gregorcde01732009-05-19 22:10:17 +00001364 if (E->isTypeDependent() || E->isValueDependent())
1365 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001366
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001367 E = E->IgnoreParenCasts();
Peter Collingbournef111d932011-04-15 00:35:48 +00001368
Ted Kremenekd30ef872009-01-12 23:09:09 +00001369 switch (E->getStmtClass()) {
John McCall56ca35d2011-02-17 10:25:35 +00001370 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenekd30ef872009-01-12 23:09:09 +00001371 case Stmt::ConditionalOperatorClass: {
John McCall56ca35d2011-02-17 10:25:35 +00001372 const AbstractConditionalOperator *C = cast<AbstractConditionalOperator>(E);
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001373 return SemaCheckStringLiteral(C->getTrueExpr(), Args, NumArgs, HasVAListArg,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001374 format_idx, firstDataArg, Type,
Richard Trieu55733de2011-10-28 00:41:25 +00001375 inFunctionCall)
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001376 && SemaCheckStringLiteral(C->getFalseExpr(), Args, NumArgs, HasVAListArg,
1377 format_idx, firstDataArg, Type,
1378 inFunctionCall);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001379 }
1380
Ted Kremenek95355bb2010-09-09 03:51:42 +00001381 case Stmt::IntegerLiteralClass:
1382 // Technically -Wformat-nonliteral does not warn about this case.
1383 // The behavior of printf and friends in this case is implementation
1384 // dependent. Ideally if the format string cannot be null then
1385 // it should have a 'nonnull' attribute in the function prototype.
1386 return true;
1387
Ted Kremenekd30ef872009-01-12 23:09:09 +00001388 case Stmt::ImplicitCastExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +00001389 E = cast<ImplicitCastExpr>(E)->getSubExpr();
1390 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001391 }
1392
John McCall56ca35d2011-02-17 10:25:35 +00001393 case Stmt::OpaqueValueExprClass:
1394 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
1395 E = src;
1396 goto tryAgain;
1397 }
1398 return false;
1399
Ted Kremenekb43e8ad2011-02-24 23:03:04 +00001400 case Stmt::PredefinedExprClass:
1401 // While __func__, etc., are technically not string literals, they
1402 // cannot contain format specifiers and thus are not a security
1403 // liability.
1404 return true;
1405
Ted Kremenek082d9362009-03-20 21:35:28 +00001406 case Stmt::DeclRefExprClass: {
1407 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001408
Ted Kremenek082d9362009-03-20 21:35:28 +00001409 // As an exception, do not flag errors for variables binding to
1410 // const string literals.
1411 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1412 bool isConstant = false;
1413 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001414
Ted Kremenek082d9362009-03-20 21:35:28 +00001415 if (const ArrayType *AT = Context.getAsArrayType(T)) {
1416 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001417 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001418 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +00001419 PT->getPointeeType().isConstant(Context);
Jean-Daniel Dupase98e5b52012-01-25 10:35:33 +00001420 } else if (T->isObjCObjectPointerType()) {
1421 // In ObjC, there is usually no "const ObjectPointer" type,
1422 // so don't check if the pointee type is constant.
1423 isConstant = T.isConstant(Context);
Ted Kremenek082d9362009-03-20 21:35:28 +00001424 }
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Ted Kremenek082d9362009-03-20 21:35:28 +00001426 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001427 if (const Expr *Init = VD->getAnyInitializer())
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001428 return SemaCheckStringLiteral(Init, Args, NumArgs,
Ted Kremenek826a3452010-07-16 02:11:22 +00001429 HasVAListArg, format_idx, firstDataArg,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001430 Type, /*inFunctionCall*/false);
Ted Kremenek082d9362009-03-20 21:35:28 +00001431 }
Mike Stump1eb44332009-09-09 15:08:12 +00001432
Anders Carlssond966a552009-06-28 19:55:58 +00001433 // For vprintf* functions (i.e., HasVAListArg==true), we add a
1434 // special check to see if the format string is a function parameter
1435 // of the function calling the printf function. If the function
1436 // has an attribute indicating it is a printf-like function, then we
1437 // should suppress warnings concerning non-literals being used in a call
1438 // to a vprintf function. For example:
1439 //
1440 // void
1441 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1442 // va_list ap;
1443 // va_start(ap, fmt);
1444 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1445 // ...
1446 //
1447 //
1448 // FIXME: We don't have full attribute support yet, so just check to see
1449 // if the argument is a DeclRefExpr that references a parameter. We'll
1450 // add proper support for checking the attribute later.
1451 if (HasVAListArg)
1452 if (isa<ParmVarDecl>(VD))
1453 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001454 }
Mike Stump1eb44332009-09-09 15:08:12 +00001455
Ted Kremenek082d9362009-03-20 21:35:28 +00001456 return false;
1457 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001458
Anders Carlsson8f031b32009-06-27 04:05:33 +00001459 case Stmt::CallExprClass: {
1460 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001461 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001462 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1463 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1464 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001465 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001466 unsigned ArgIndex = FA->getFormatIdx();
1467 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001468
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001469 return SemaCheckStringLiteral(Arg, Args, NumArgs, HasVAListArg,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001470 format_idx, firstDataArg, Type,
Richard Trieu55733de2011-10-28 00:41:25 +00001471 inFunctionCall);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001472 }
1473 }
1474 }
1475 }
Mike Stump1eb44332009-09-09 15:08:12 +00001476
Anders Carlsson8f031b32009-06-27 04:05:33 +00001477 return false;
1478 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001479 case Stmt::ObjCStringLiteralClass:
1480 case Stmt::StringLiteralClass: {
1481 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001482
Ted Kremenek082d9362009-03-20 21:35:28 +00001483 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001484 StrE = ObjCFExpr->getString();
1485 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001486 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001487
Ted Kremenekd30ef872009-01-12 23:09:09 +00001488 if (StrE) {
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001489 CheckFormatString(StrE, E, Args, NumArgs, HasVAListArg, format_idx,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001490 firstDataArg, Type, inFunctionCall);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001491 return true;
1492 }
Mike Stump1eb44332009-09-09 15:08:12 +00001493
Ted Kremenekd30ef872009-01-12 23:09:09 +00001494 return false;
1495 }
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Ted Kremenek082d9362009-03-20 21:35:28 +00001497 default:
1498 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001499 }
1500}
1501
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001502void
Mike Stump1eb44332009-09-09 15:08:12 +00001503Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
Nick Lewycky909a70d2011-03-25 01:44:32 +00001504 const Expr * const *ExprArgs,
1505 SourceLocation CallSiteLoc) {
Sean Huntcf807c42010-08-18 23:23:40 +00001506 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1507 e = NonNull->args_end();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001508 i != e; ++i) {
Nick Lewycky909a70d2011-03-25 01:44:32 +00001509 const Expr *ArgExpr = ExprArgs[*i];
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001510 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001511 Expr::NPC_ValueDependentIsNotNull))
Nick Lewycky909a70d2011-03-25 01:44:32 +00001512 Diag(CallSiteLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001513 }
1514}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001515
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001516Sema::FormatStringType Sema::GetFormatStringType(const FormatAttr *Format) {
1517 return llvm::StringSwitch<FormatStringType>(Format->getType())
1518 .Case("scanf", FST_Scanf)
1519 .Cases("printf", "printf0", FST_Printf)
1520 .Cases("NSString", "CFString", FST_NSString)
1521 .Case("strftime", FST_Strftime)
1522 .Case("strfmon", FST_Strfmon)
1523 .Cases("kprintf", "cmn_err", "vcmn_err", "zcmn_err", FST_Kprintf)
1524 .Default(FST_Unknown);
1525}
1526
Ted Kremenek826a3452010-07-16 02:11:22 +00001527/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1528/// functions) for correct use of format strings.
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001529void Sema::CheckFormatArguments(const FormatAttr *Format, CallExpr *TheCall) {
1530 bool IsCXXMember = false;
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001531 // The way the format attribute works in GCC, the implicit this argument
1532 // of member functions is counted. However, it doesn't appear in our own
1533 // lists, so decrement format_idx in that case.
1534 if (isa<CXXMemberCallExpr>(TheCall)) {
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001535 const CXXMethodDecl *method_decl =
1536 dyn_cast<CXXMethodDecl>(TheCall->getCalleeDecl());
1537 IsCXXMember = method_decl && method_decl->isInstance();
1538 }
1539 CheckFormatArguments(Format, TheCall->getArgs(), TheCall->getNumArgs(),
1540 IsCXXMember, TheCall->getRParenLoc(),
1541 TheCall->getCallee()->getSourceRange());
1542}
1543
1544void Sema::CheckFormatArguments(const FormatAttr *Format, Expr **Args,
1545 unsigned NumArgs, bool IsCXXMember,
1546 SourceLocation Loc, SourceRange Range) {
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001547 bool HasVAListArg = Format->getFirstArg() == 0;
1548 unsigned format_idx = Format->getFormatIdx() - 1;
1549 unsigned firstDataArg = HasVAListArg ? 0 : Format->getFirstArg() - 1;
1550 if (IsCXXMember) {
1551 if (format_idx == 0)
1552 return;
1553 --format_idx;
1554 if(firstDataArg != 0)
1555 --firstDataArg;
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001556 }
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001557 CheckFormatArguments(Args, NumArgs, HasVAListArg, format_idx,
1558 firstDataArg, GetFormatStringType(Format), Loc, Range);
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001559}
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001560
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001561void Sema::CheckFormatArguments(Expr **Args, unsigned NumArgs,
1562 bool HasVAListArg, unsigned format_idx,
1563 unsigned firstDataArg, FormatStringType Type,
1564 SourceLocation Loc, SourceRange Range) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001565 // CHECK: printf/scanf-like function is called with no format string.
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001566 if (format_idx >= NumArgs) {
1567 Diag(Loc, diag::warn_missing_format_string) << Range;
Ted Kremenek71895b92007-08-14 17:39:48 +00001568 return;
1569 }
Mike Stump1eb44332009-09-09 15:08:12 +00001570
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001571 const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Chris Lattner59907c42007-08-10 20:18:51 +00001573 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001574 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001575 // Dynamically generated format strings are difficult to
1576 // automatically vet at compile time. Requiring that format strings
1577 // are string literals: (1) permits the checking of format strings by
1578 // the compiler and thereby (2) can practically remove the source of
1579 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001580
Mike Stump1eb44332009-09-09 15:08:12 +00001581 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001582 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001583 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001584 // the same format string checking logic for both ObjC and C strings.
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001585 if (SemaCheckStringLiteral(OrigFormatExpr, Args, NumArgs, HasVAListArg,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00001586 format_idx, firstDataArg, Type))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001587 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001588
Chris Lattner655f1412009-04-29 04:59:47 +00001589 // If there are no arguments specified, warn with -Wformat-security, otherwise
1590 // warn only with -Wformat-nonliteral.
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001591 if (NumArgs == format_idx+1)
1592 Diag(Args[format_idx]->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001593 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001594 << OrigFormatExpr->getSourceRange();
1595 else
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001596 Diag(Args[format_idx]->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001597 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001598 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001599}
Ted Kremenek71895b92007-08-14 17:39:48 +00001600
Ted Kremeneke0e53132010-01-28 23:39:18 +00001601namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001602class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1603protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001604 Sema &S;
1605 const StringLiteral *FExpr;
1606 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001607 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001608 const unsigned NumDataArgs;
1609 const bool IsObjCLiteral;
1610 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001611 const bool HasVAListArg;
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001612 const Expr * const *Args;
1613 const unsigned NumArgs;
Ted Kremenek0d277352010-01-29 01:06:55 +00001614 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001615 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001616 bool usesPositionalArgs;
1617 bool atFirstArg;
Richard Trieu55733de2011-10-28 00:41:25 +00001618 bool inFunctionCall;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001619public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001620 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001621 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001622 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001623 const char *beg, bool hasVAListArg,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001624 Expr **args, unsigned numArgs,
1625 unsigned formatIdx, bool inFunctionCall)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001626 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001627 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001628 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001629 IsObjCLiteral(isObjCLiteral), Beg(beg),
1630 HasVAListArg(hasVAListArg),
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001631 Args(args), NumArgs(numArgs), FormatIdx(formatIdx),
Richard Trieu55733de2011-10-28 00:41:25 +00001632 usesPositionalArgs(false), atFirstArg(true),
1633 inFunctionCall(inFunctionCall) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001634 CoveredArgs.resize(numDataArgs);
1635 CoveredArgs.reset();
1636 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001637
Ted Kremenek07d161f2010-01-29 01:50:07 +00001638 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001639
Ted Kremenek826a3452010-07-16 02:11:22 +00001640 void HandleIncompleteSpecifier(const char *startSpecifier,
1641 unsigned specifierLen);
1642
Ted Kremenekefaff192010-02-27 01:41:03 +00001643 virtual void HandleInvalidPosition(const char *startSpecifier,
1644 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001645 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001646
1647 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1648
Ted Kremeneke0e53132010-01-28 23:39:18 +00001649 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001650
Richard Trieu55733de2011-10-28 00:41:25 +00001651 template <typename Range>
1652 static void EmitFormatDiagnostic(Sema &S, bool inFunctionCall,
1653 const Expr *ArgumentExpr,
1654 PartialDiagnostic PDiag,
1655 SourceLocation StringLoc,
1656 bool IsStringLocation, Range StringRange,
1657 FixItHint Fixit = FixItHint());
1658
Ted Kremenek826a3452010-07-16 02:11:22 +00001659protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001660 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1661 const char *startSpec,
1662 unsigned specifierLen,
1663 const char *csStart, unsigned csLen);
Richard Trieu55733de2011-10-28 00:41:25 +00001664
1665 void HandlePositionalNonpositionalArgs(SourceLocation Loc,
1666 const char *startSpec,
1667 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001668
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001669 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001670 CharSourceRange getSpecifierRange(const char *startSpecifier,
1671 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001672 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001673
Ted Kremenek0d277352010-01-29 01:06:55 +00001674 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001675
1676 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1677 const analyze_format_string::ConversionSpecifier &CS,
1678 const char *startSpecifier, unsigned specifierLen,
1679 unsigned argIndex);
Richard Trieu55733de2011-10-28 00:41:25 +00001680
1681 template <typename Range>
1682 void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
1683 bool IsStringLocation, Range StringRange,
1684 FixItHint Fixit = FixItHint());
1685
1686 void CheckPositionalAndNonpositionalArgs(
1687 const analyze_format_string::FormatSpecifier *FS);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001688};
1689}
1690
Ted Kremenek826a3452010-07-16 02:11:22 +00001691SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001692 return OrigFormatExpr->getSourceRange();
1693}
1694
Ted Kremenek826a3452010-07-16 02:11:22 +00001695CharSourceRange CheckFormatHandler::
1696getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001697 SourceLocation Start = getLocationOfByte(startSpecifier);
1698 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1699
1700 // Advance the end SourceLocation by one due to half-open ranges.
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00001701 End = End.getLocWithOffset(1);
Tom Care45f9b7e2010-06-21 21:21:01 +00001702
1703 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001704}
1705
Ted Kremenek826a3452010-07-16 02:11:22 +00001706SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001707 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001708}
1709
Ted Kremenek826a3452010-07-16 02:11:22 +00001710void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1711 unsigned specifierLen){
Richard Trieu55733de2011-10-28 00:41:25 +00001712 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
1713 getLocationOfByte(startSpecifier),
1714 /*IsStringLocation*/true,
1715 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek808015a2010-01-29 03:16:21 +00001716}
1717
Ted Kremenekefaff192010-02-27 01:41:03 +00001718void
Ted Kremenek826a3452010-07-16 02:11:22 +00001719CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1720 analyze_format_string::PositionContext p) {
Richard Trieu55733de2011-10-28 00:41:25 +00001721 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
1722 << (unsigned) p,
1723 getLocationOfByte(startPos), /*IsStringLocation*/true,
1724 getSpecifierRange(startPos, posLen));
Ted Kremenekefaff192010-02-27 01:41:03 +00001725}
1726
Ted Kremenek826a3452010-07-16 02:11:22 +00001727void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001728 unsigned posLen) {
Richard Trieu55733de2011-10-28 00:41:25 +00001729 EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
1730 getLocationOfByte(startPos),
1731 /*IsStringLocation*/true,
1732 getSpecifierRange(startPos, posLen));
Ted Kremenekefaff192010-02-27 01:41:03 +00001733}
1734
Ted Kremenek826a3452010-07-16 02:11:22 +00001735void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
Ted Kremenek0c069442011-03-15 21:18:48 +00001736 if (!IsObjCLiteral) {
1737 // The presence of a null character is likely an error.
Richard Trieu55733de2011-10-28 00:41:25 +00001738 EmitFormatDiagnostic(
1739 S.PDiag(diag::warn_printf_format_string_contains_null_char),
1740 getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
1741 getFormatStringRange());
Ted Kremenek0c069442011-03-15 21:18:48 +00001742 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001743}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001744
Ted Kremenek826a3452010-07-16 02:11:22 +00001745const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001746 return Args[FirstDataArg + i];
Ted Kremenek826a3452010-07-16 02:11:22 +00001747}
1748
1749void CheckFormatHandler::DoneProcessing() {
1750 // Does the number of data arguments exceed the number of
1751 // format conversions in the format string?
1752 if (!HasVAListArg) {
1753 // Find any arguments that weren't covered.
1754 CoveredArgs.flip();
1755 signed notCoveredArg = CoveredArgs.find_first();
1756 if (notCoveredArg >= 0) {
1757 assert((unsigned)notCoveredArg < NumDataArgs);
Richard Trieu55733de2011-10-28 00:41:25 +00001758 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_data_arg_not_used),
1759 getDataArg((unsigned) notCoveredArg)->getLocStart(),
1760 /*IsStringLocation*/false, getFormatStringRange());
Ted Kremenek826a3452010-07-16 02:11:22 +00001761 }
1762 }
1763}
1764
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001765bool
1766CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1767 SourceLocation Loc,
1768 const char *startSpec,
1769 unsigned specifierLen,
1770 const char *csStart,
1771 unsigned csLen) {
1772
1773 bool keepGoing = true;
1774 if (argIndex < NumDataArgs) {
1775 // Consider the argument coverered, even though the specifier doesn't
1776 // make sense.
1777 CoveredArgs.set(argIndex);
1778 }
1779 else {
1780 // If argIndex exceeds the number of data arguments we
1781 // don't issue a warning because that is just a cascade of warnings (and
1782 // they may have intended '%%' anyway). We don't want to continue processing
1783 // the format string after this point, however, as we will like just get
1784 // gibberish when trying to match arguments.
1785 keepGoing = false;
1786 }
1787
Richard Trieu55733de2011-10-28 00:41:25 +00001788 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_conversion)
1789 << StringRef(csStart, csLen),
1790 Loc, /*IsStringLocation*/true,
1791 getSpecifierRange(startSpec, specifierLen));
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001792
1793 return keepGoing;
1794}
1795
Richard Trieu55733de2011-10-28 00:41:25 +00001796void
1797CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
1798 const char *startSpec,
1799 unsigned specifierLen) {
1800 EmitFormatDiagnostic(
1801 S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
1802 Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
1803}
1804
Ted Kremenek666a1972010-07-26 19:45:42 +00001805bool
1806CheckFormatHandler::CheckNumArgs(
1807 const analyze_format_string::FormatSpecifier &FS,
1808 const analyze_format_string::ConversionSpecifier &CS,
1809 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1810
1811 if (argIndex >= NumDataArgs) {
Richard Trieu55733de2011-10-28 00:41:25 +00001812 PartialDiagnostic PDiag = FS.usesPositionalArg()
1813 ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
1814 << (argIndex+1) << NumDataArgs)
1815 : S.PDiag(diag::warn_printf_insufficient_data_args);
1816 EmitFormatDiagnostic(
1817 PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
1818 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek666a1972010-07-26 19:45:42 +00001819 return false;
1820 }
1821 return true;
1822}
1823
Richard Trieu55733de2011-10-28 00:41:25 +00001824template<typename Range>
1825void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
1826 SourceLocation Loc,
1827 bool IsStringLocation,
1828 Range StringRange,
1829 FixItHint FixIt) {
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001830 EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag,
Richard Trieu55733de2011-10-28 00:41:25 +00001831 Loc, IsStringLocation, StringRange, FixIt);
1832}
1833
1834/// \brief If the format string is not within the funcion call, emit a note
1835/// so that the function call and string are in diagnostic messages.
1836///
1837/// \param inFunctionCall if true, the format string is within the function
1838/// call and only one diagnostic message will be produced. Otherwise, an
1839/// extra note will be emitted pointing to location of the format string.
1840///
1841/// \param ArgumentExpr the expression that is passed as the format string
1842/// argument in the function call. Used for getting locations when two
1843/// diagnostics are emitted.
1844///
1845/// \param PDiag the callee should already have provided any strings for the
1846/// diagnostic message. This function only adds locations and fixits
1847/// to diagnostics.
1848///
1849/// \param Loc primary location for diagnostic. If two diagnostics are
1850/// required, one will be at Loc and a new SourceLocation will be created for
1851/// the other one.
1852///
1853/// \param IsStringLocation if true, Loc points to the format string should be
1854/// used for the note. Otherwise, Loc points to the argument list and will
1855/// be used with PDiag.
1856///
1857/// \param StringRange some or all of the string to highlight. This is
1858/// templated so it can accept either a CharSourceRange or a SourceRange.
1859///
1860/// \param Fixit optional fix it hint for the format string.
1861template<typename Range>
1862void CheckFormatHandler::EmitFormatDiagnostic(Sema &S, bool InFunctionCall,
1863 const Expr *ArgumentExpr,
1864 PartialDiagnostic PDiag,
1865 SourceLocation Loc,
1866 bool IsStringLocation,
1867 Range StringRange,
1868 FixItHint FixIt) {
1869 if (InFunctionCall)
1870 S.Diag(Loc, PDiag) << StringRange << FixIt;
1871 else {
1872 S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
1873 << ArgumentExpr->getSourceRange();
1874 S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
1875 diag::note_format_string_defined)
1876 << StringRange << FixIt;
1877 }
1878}
1879
Ted Kremenek826a3452010-07-16 02:11:22 +00001880//===--- CHECK: Printf format string checking ------------------------------===//
1881
1882namespace {
1883class CheckPrintfHandler : public CheckFormatHandler {
1884public:
1885 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1886 const Expr *origFormatExpr, unsigned firstDataArg,
1887 unsigned numDataArgs, bool isObjCLiteral,
1888 const char *beg, bool hasVAListArg,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001889 Expr **Args, unsigned NumArgs,
1890 unsigned formatIdx, bool inFunctionCall)
Ted Kremenek826a3452010-07-16 02:11:22 +00001891 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1892 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00001893 Args, NumArgs, formatIdx, inFunctionCall) {}
Ted Kremenek826a3452010-07-16 02:11:22 +00001894
1895
1896 bool HandleInvalidPrintfConversionSpecifier(
1897 const analyze_printf::PrintfSpecifier &FS,
1898 const char *startSpecifier,
1899 unsigned specifierLen);
1900
1901 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1902 const char *startSpecifier,
1903 unsigned specifierLen);
1904
1905 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1906 const char *startSpecifier, unsigned specifierLen);
1907 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1908 const analyze_printf::OptionalAmount &Amt,
1909 unsigned type,
1910 const char *startSpecifier, unsigned specifierLen);
1911 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1912 const analyze_printf::OptionalFlag &flag,
1913 const char *startSpecifier, unsigned specifierLen);
1914 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1915 const analyze_printf::OptionalFlag &ignoredFlag,
1916 const analyze_printf::OptionalFlag &flag,
1917 const char *startSpecifier, unsigned specifierLen);
1918};
1919}
1920
1921bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1922 const analyze_printf::PrintfSpecifier &FS,
1923 const char *startSpecifier,
1924 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001925 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001926 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001927
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001928 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1929 getLocationOfByte(CS.getStart()),
1930 startSpecifier, specifierLen,
1931 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001932}
1933
Ted Kremenek826a3452010-07-16 02:11:22 +00001934bool CheckPrintfHandler::HandleAmount(
1935 const analyze_format_string::OptionalAmount &Amt,
1936 unsigned k, const char *startSpecifier,
1937 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001938
1939 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001940 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001941 unsigned argIndex = Amt.getArgIndex();
1942 if (argIndex >= NumDataArgs) {
Richard Trieu55733de2011-10-28 00:41:25 +00001943 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
1944 << k,
1945 getLocationOfByte(Amt.getStart()),
1946 /*IsStringLocation*/true,
1947 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek0d277352010-01-29 01:06:55 +00001948 // Don't do any more checking. We will just emit
1949 // spurious errors.
1950 return false;
1951 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001952
Ted Kremenek0d277352010-01-29 01:06:55 +00001953 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001954 // Although not in conformance with C99, we also allow the argument to be
1955 // an 'unsigned int' as that is a reasonably safe case. GCC also
1956 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001957 CoveredArgs.set(argIndex);
1958 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001959 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001960
1961 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1962 assert(ATR.isValid());
1963
1964 if (!ATR.matchesType(S.Context, T)) {
Richard Trieu55733de2011-10-28 00:41:25 +00001965 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
Hans Wennborga792aff2011-12-07 10:33:11 +00001966 << k << ATR.getRepresentativeTypeName(S.Context)
Richard Trieu55733de2011-10-28 00:41:25 +00001967 << T << Arg->getSourceRange(),
1968 getLocationOfByte(Amt.getStart()),
1969 /*IsStringLocation*/true,
1970 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek0d277352010-01-29 01:06:55 +00001971 // Don't do any more checking. We will just emit
1972 // spurious errors.
1973 return false;
1974 }
1975 }
1976 }
1977 return true;
1978}
Ted Kremenek0d277352010-01-29 01:06:55 +00001979
Tom Caree4ee9662010-06-17 19:00:27 +00001980void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001981 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001982 const analyze_printf::OptionalAmount &Amt,
1983 unsigned type,
1984 const char *startSpecifier,
1985 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001986 const analyze_printf::PrintfConversionSpecifier &CS =
1987 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001988
Richard Trieu55733de2011-10-28 00:41:25 +00001989 FixItHint fixit =
1990 Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
1991 ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
1992 Amt.getConstantLength()))
1993 : FixItHint();
1994
1995 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
1996 << type << CS.toString(),
1997 getLocationOfByte(Amt.getStart()),
1998 /*IsStringLocation*/true,
1999 getSpecifierRange(startSpecifier, specifierLen),
2000 fixit);
Tom Caree4ee9662010-06-17 19:00:27 +00002001}
2002
Ted Kremenek826a3452010-07-16 02:11:22 +00002003void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00002004 const analyze_printf::OptionalFlag &flag,
2005 const char *startSpecifier,
2006 unsigned specifierLen) {
2007 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002008 const analyze_printf::PrintfConversionSpecifier &CS =
2009 FS.getConversionSpecifier();
Richard Trieu55733de2011-10-28 00:41:25 +00002010 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
2011 << flag.toString() << CS.toString(),
2012 getLocationOfByte(flag.getPosition()),
2013 /*IsStringLocation*/true,
2014 getSpecifierRange(startSpecifier, specifierLen),
2015 FixItHint::CreateRemoval(
2016 getSpecifierRange(flag.getPosition(), 1)));
Tom Caree4ee9662010-06-17 19:00:27 +00002017}
2018
2019void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00002020 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00002021 const analyze_printf::OptionalFlag &ignoredFlag,
2022 const analyze_printf::OptionalFlag &flag,
2023 const char *startSpecifier,
2024 unsigned specifierLen) {
2025 // Warn about ignored flag with a fixit removal.
Richard Trieu55733de2011-10-28 00:41:25 +00002026 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
2027 << ignoredFlag.toString() << flag.toString(),
2028 getLocationOfByte(ignoredFlag.getPosition()),
2029 /*IsStringLocation*/true,
2030 getSpecifierRange(startSpecifier, specifierLen),
2031 FixItHint::CreateRemoval(
2032 getSpecifierRange(ignoredFlag.getPosition(), 1)));
Tom Caree4ee9662010-06-17 19:00:27 +00002033}
2034
Ted Kremeneke0e53132010-01-28 23:39:18 +00002035bool
Ted Kremenek826a3452010-07-16 02:11:22 +00002036CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00002037 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00002038 const char *startSpecifier,
2039 unsigned specifierLen) {
2040
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002041 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00002042 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002043 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00002044
Ted Kremenekbaa40062010-07-19 22:01:06 +00002045 if (FS.consumesDataArgument()) {
2046 if (atFirstArg) {
2047 atFirstArg = false;
2048 usesPositionalArgs = FS.usesPositionalArg();
2049 }
2050 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002051 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2052 startSpecifier, specifierLen);
Ted Kremenekbaa40062010-07-19 22:01:06 +00002053 return false;
2054 }
Ted Kremenek0d277352010-01-29 01:06:55 +00002055 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002056
Ted Kremenekefaff192010-02-27 01:41:03 +00002057 // First check if the field width, precision, and conversion specifier
2058 // have matching data arguments.
2059 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
2060 startSpecifier, specifierLen)) {
2061 return false;
2062 }
2063
2064 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
2065 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00002066 return false;
2067 }
2068
Ted Kremenekf88c8e02010-01-29 20:55:36 +00002069 if (!CS.consumesDataArgument()) {
2070 // FIXME: Technically specifying a precision or field width here
2071 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00002072 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00002073 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002074
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002075 // Consume the argument.
2076 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00002077 if (argIndex < NumDataArgs) {
2078 // The check to see if the argIndex is valid will come later.
2079 // We set the bit here because we may exit early from this
2080 // function if we encounter some other error.
2081 CoveredArgs.set(argIndex);
2082 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002083
2084 // Check for using an Objective-C specific conversion specifier
2085 // in a non-ObjC literal.
2086 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002087 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
2088 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002089 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002090
Tom Caree4ee9662010-06-17 19:00:27 +00002091 // Check for invalid use of field width
2092 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00002093 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00002094 startSpecifier, specifierLen);
2095 }
2096
2097 // Check for invalid use of precision
2098 if (!FS.hasValidPrecision()) {
2099 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
2100 startSpecifier, specifierLen);
2101 }
2102
2103 // Check each flag does not conflict with any other component.
Ted Kremenek65197b42011-01-08 05:28:46 +00002104 if (!FS.hasValidThousandsGroupingPrefix())
2105 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002106 if (!FS.hasValidLeadingZeros())
2107 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
2108 if (!FS.hasValidPlusPrefix())
2109 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00002110 if (!FS.hasValidSpacePrefix())
2111 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002112 if (!FS.hasValidAlternativeForm())
2113 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
2114 if (!FS.hasValidLeftJustified())
2115 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
2116
2117 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00002118 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
2119 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
2120 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002121 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
2122 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
2123 startSpecifier, specifierLen);
2124
2125 // Check the length modifier is valid with the given conversion specifier.
2126 const LengthModifier &LM = FS.getLengthModifier();
2127 if (!FS.hasValidLengthModifier())
Richard Trieu55733de2011-10-28 00:41:25 +00002128 EmitFormatDiagnostic(S.PDiag(diag::warn_format_nonsensical_length)
2129 << LM.toString() << CS.toString(),
2130 getLocationOfByte(LM.getStart()),
2131 /*IsStringLocation*/true,
2132 getSpecifierRange(startSpecifier, specifierLen),
2133 FixItHint::CreateRemoval(
2134 getSpecifierRange(LM.getStart(),
2135 LM.getLength())));
Tom Caree4ee9662010-06-17 19:00:27 +00002136
2137 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00002138 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00002139 // Issue a warning about this being a possible security issue.
Richard Trieu55733de2011-10-28 00:41:25 +00002140 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_write_back),
2141 getLocationOfByte(CS.getStart()),
2142 /*IsStringLocation*/true,
2143 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremeneke82d8042010-01-29 01:35:25 +00002144 // Continue checking the other format specifiers.
2145 return true;
2146 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00002147
Ted Kremenekda51f0d2010-01-29 01:43:31 +00002148 // The remaining checks depend on the data arguments.
2149 if (HasVAListArg)
2150 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002151
Ted Kremenek666a1972010-07-26 19:45:42 +00002152 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00002153 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002154
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002155 // Now type check the data expression that matches the
2156 // format specifier.
2157 const Expr *Ex = getDataArg(argIndex);
Nick Lewycky687b5df2011-12-02 23:21:43 +00002158 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002159 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
2160 // Check if we didn't match because of an implicit cast from a 'char'
2161 // or 'short' to an 'int'. This is done because printf is a varargs
2162 // function.
2163 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00002164 if (ICE->getType() == S.Context.IntTy) {
2165 // All further checking is done on the subexpression.
2166 Ex = ICE->getSubExpr();
2167 if (ATR.matchesType(S.Context, Ex->getType()))
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002168 return true;
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00002169 }
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002170
2171 // We may be able to offer a FixItHint if it is a supported type.
2172 PrintfSpecifier fixedFS = FS;
Hans Wennborga7da2152011-10-18 08:10:06 +00002173 bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002174
2175 if (success) {
2176 // Get the fix string from the fixed format specifier
2177 llvm::SmallString<128> buf;
2178 llvm::raw_svector_ostream os(buf);
2179 fixedFS.toString(os);
2180
Richard Trieu55733de2011-10-28 00:41:25 +00002181 EmitFormatDiagnostic(
2182 S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborga792aff2011-12-07 10:33:11 +00002183 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Richard Trieu55733de2011-10-28 00:41:25 +00002184 << Ex->getSourceRange(),
2185 getLocationOfByte(CS.getStart()),
2186 /*IsStringLocation*/true,
2187 getSpecifierRange(startSpecifier, specifierLen),
2188 FixItHint::CreateReplacement(
2189 getSpecifierRange(startSpecifier, specifierLen),
2190 os.str()));
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002191 }
2192 else {
2193 S.Diag(getLocationOfByte(CS.getStart()),
2194 diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborga792aff2011-12-07 10:33:11 +00002195 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002196 << getSpecifierRange(startSpecifier, specifierLen)
2197 << Ex->getSourceRange();
2198 }
2199 }
2200
Ted Kremeneke0e53132010-01-28 23:39:18 +00002201 return true;
2202}
2203
Ted Kremenek826a3452010-07-16 02:11:22 +00002204//===--- CHECK: Scanf format string checking ------------------------------===//
2205
2206namespace {
2207class CheckScanfHandler : public CheckFormatHandler {
2208public:
2209 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
2210 const Expr *origFormatExpr, unsigned firstDataArg,
2211 unsigned numDataArgs, bool isObjCLiteral,
2212 const char *beg, bool hasVAListArg,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002213 Expr **Args, unsigned NumArgs,
2214 unsigned formatIdx, bool inFunctionCall)
Ted Kremenek826a3452010-07-16 02:11:22 +00002215 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
2216 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002217 Args, NumArgs, formatIdx, inFunctionCall) {}
Ted Kremenek826a3452010-07-16 02:11:22 +00002218
2219 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
2220 const char *startSpecifier,
2221 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002222
2223 bool HandleInvalidScanfConversionSpecifier(
2224 const analyze_scanf::ScanfSpecifier &FS,
2225 const char *startSpecifier,
2226 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00002227
2228 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00002229};
Ted Kremenek07d161f2010-01-29 01:50:07 +00002230}
Ted Kremeneke0e53132010-01-28 23:39:18 +00002231
Ted Kremenekb7c21012010-07-16 18:28:03 +00002232void CheckScanfHandler::HandleIncompleteScanList(const char *start,
2233 const char *end) {
Richard Trieu55733de2011-10-28 00:41:25 +00002234 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
2235 getLocationOfByte(end), /*IsStringLocation*/true,
2236 getSpecifierRange(start, end - start));
Ted Kremenekb7c21012010-07-16 18:28:03 +00002237}
2238
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002239bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
2240 const analyze_scanf::ScanfSpecifier &FS,
2241 const char *startSpecifier,
2242 unsigned specifierLen) {
2243
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002244 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002245 FS.getConversionSpecifier();
2246
2247 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
2248 getLocationOfByte(CS.getStart()),
2249 startSpecifier, specifierLen,
2250 CS.getStart(), CS.getLength());
2251}
2252
Ted Kremenek826a3452010-07-16 02:11:22 +00002253bool CheckScanfHandler::HandleScanfSpecifier(
2254 const analyze_scanf::ScanfSpecifier &FS,
2255 const char *startSpecifier,
2256 unsigned specifierLen) {
2257
2258 using namespace analyze_scanf;
2259 using namespace analyze_format_string;
2260
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002261 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00002262
Ted Kremenekbaa40062010-07-19 22:01:06 +00002263 // Handle case where '%' and '*' don't consume an argument. These shouldn't
2264 // be used to decide if we are using positional arguments consistently.
2265 if (FS.consumesDataArgument()) {
2266 if (atFirstArg) {
2267 atFirstArg = false;
2268 usesPositionalArgs = FS.usesPositionalArg();
2269 }
2270 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002271 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2272 startSpecifier, specifierLen);
Ted Kremenekbaa40062010-07-19 22:01:06 +00002273 return false;
2274 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002275 }
2276
2277 // Check if the field with is non-zero.
2278 const OptionalAmount &Amt = FS.getFieldWidth();
2279 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
2280 if (Amt.getConstantAmount() == 0) {
2281 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
2282 Amt.getConstantLength());
Richard Trieu55733de2011-10-28 00:41:25 +00002283 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
2284 getLocationOfByte(Amt.getStart()),
2285 /*IsStringLocation*/true, R,
2286 FixItHint::CreateRemoval(R));
Ted Kremenek826a3452010-07-16 02:11:22 +00002287 }
2288 }
2289
2290 if (!FS.consumesDataArgument()) {
2291 // FIXME: Technically specifying a precision or field width here
2292 // makes no sense. Worth issuing a warning at some point.
2293 return true;
2294 }
2295
2296 // Consume the argument.
2297 unsigned argIndex = FS.getArgIndex();
2298 if (argIndex < NumDataArgs) {
2299 // The check to see if the argIndex is valid will come later.
2300 // We set the bit here because we may exit early from this
2301 // function if we encounter some other error.
2302 CoveredArgs.set(argIndex);
2303 }
2304
Ted Kremenek1e51c202010-07-20 20:04:47 +00002305 // Check the length modifier is valid with the given conversion specifier.
2306 const LengthModifier &LM = FS.getLengthModifier();
2307 if (!FS.hasValidLengthModifier()) {
2308 S.Diag(getLocationOfByte(LM.getStart()),
2309 diag::warn_format_nonsensical_length)
2310 << LM.toString() << CS.toString()
2311 << getSpecifierRange(startSpecifier, specifierLen)
2312 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
2313 LM.getLength()));
2314 }
2315
Ted Kremenek826a3452010-07-16 02:11:22 +00002316 // The remaining checks depend on the data arguments.
2317 if (HasVAListArg)
2318 return true;
2319
Ted Kremenek666a1972010-07-26 19:45:42 +00002320 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00002321 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00002322
Hans Wennborg6fcd9322011-12-10 13:20:11 +00002323 // Check that the argument type matches the format specifier.
2324 const Expr *Ex = getDataArg(argIndex);
2325 const analyze_scanf::ScanfArgTypeResult &ATR = FS.getArgType(S.Context);
2326 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
2327 ScanfSpecifier fixedFS = FS;
2328 bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
2329
2330 if (success) {
2331 // Get the fix string from the fixed format specifier.
2332 llvm::SmallString<128> buf;
2333 llvm::raw_svector_ostream os(buf);
2334 fixedFS.toString(os);
2335
2336 EmitFormatDiagnostic(
2337 S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
2338 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
2339 << Ex->getSourceRange(),
2340 getLocationOfByte(CS.getStart()),
2341 /*IsStringLocation*/true,
2342 getSpecifierRange(startSpecifier, specifierLen),
2343 FixItHint::CreateReplacement(
2344 getSpecifierRange(startSpecifier, specifierLen),
2345 os.str()));
2346 } else {
2347 S.Diag(getLocationOfByte(CS.getStart()),
2348 diag::warn_printf_conversion_argument_type_mismatch)
2349 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
2350 << getSpecifierRange(startSpecifier, specifierLen)
2351 << Ex->getSourceRange();
2352 }
2353 }
2354
Ted Kremenek826a3452010-07-16 02:11:22 +00002355 return true;
2356}
2357
2358void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00002359 const Expr *OrigFormatExpr,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002360 Expr **Args, unsigned NumArgs,
2361 bool HasVAListArg, unsigned format_idx,
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00002362 unsigned firstDataArg, FormatStringType Type,
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002363 bool inFunctionCall) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002364
Ted Kremeneke0e53132010-01-28 23:39:18 +00002365 // CHECK: is the format string a wide literal?
Douglas Gregor5cee1192011-07-27 05:40:30 +00002366 if (!FExpr->isAscii()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002367 CheckFormatHandler::EmitFormatDiagnostic(
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002368 *this, inFunctionCall, Args[format_idx],
Richard Trieu55733de2011-10-28 00:41:25 +00002369 PDiag(diag::warn_format_string_is_wide_literal), FExpr->getLocStart(),
2370 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremeneke0e53132010-01-28 23:39:18 +00002371 return;
2372 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002373
Ted Kremeneke0e53132010-01-28 23:39:18 +00002374 // Str - The format string. NOTE: this is NOT null-terminated!
Chris Lattner5f9e2722011-07-23 10:55:15 +00002375 StringRef StrRef = FExpr->getString();
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00002376 const char *Str = StrRef.data();
2377 unsigned StrLen = StrRef.size();
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002378 const unsigned numDataArgs = NumArgs - firstDataArg;
Ted Kremenek826a3452010-07-16 02:11:22 +00002379
Ted Kremeneke0e53132010-01-28 23:39:18 +00002380 // CHECK: empty format string?
Ted Kremenek4cd57912011-09-29 05:52:16 +00002381 if (StrLen == 0 && numDataArgs > 0) {
Richard Trieu55733de2011-10-28 00:41:25 +00002382 CheckFormatHandler::EmitFormatDiagnostic(
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002383 *this, inFunctionCall, Args[format_idx],
Richard Trieu55733de2011-10-28 00:41:25 +00002384 PDiag(diag::warn_empty_format_string), FExpr->getLocStart(),
2385 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremeneke0e53132010-01-28 23:39:18 +00002386 return;
2387 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002388
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00002389 if (Type == FST_Printf || Type == FST_NSString) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002390 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek4cd57912011-09-29 05:52:16 +00002391 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002392 Str, HasVAListArg, Args, NumArgs, format_idx,
Richard Trieu55733de2011-10-28 00:41:25 +00002393 inFunctionCall);
Ted Kremenek826a3452010-07-16 02:11:22 +00002394
Hans Wennborgd02deeb2011-12-15 10:25:47 +00002395 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
2396 getLangOptions()))
Ted Kremenek826a3452010-07-16 02:11:22 +00002397 H.DoneProcessing();
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00002398 } else if (Type == FST_Scanf) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002399 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek4cd57912011-09-29 05:52:16 +00002400 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Jean-Daniel Dupas29c3f812012-01-17 20:03:31 +00002401 Str, HasVAListArg, Args, NumArgs, format_idx,
Richard Trieu55733de2011-10-28 00:41:25 +00002402 inFunctionCall);
Ted Kremenek826a3452010-07-16 02:11:22 +00002403
Hans Wennborgd02deeb2011-12-15 10:25:47 +00002404 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
2405 getLangOptions()))
Ted Kremenek826a3452010-07-16 02:11:22 +00002406 H.DoneProcessing();
Jean-Daniel Dupas34269df2012-01-30 08:46:47 +00002407 } // TODO: handle other formats
Ted Kremenekce7024e2010-01-28 01:18:22 +00002408}
2409
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002410//===--- CHECK: Standard memory functions ---------------------------------===//
2411
Douglas Gregor2a053a32011-05-03 20:05:22 +00002412/// \brief Determine whether the given type is a dynamic class type (e.g.,
2413/// whether it has a vtable).
2414static bool isDynamicClassType(QualType T) {
2415 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl())
2416 if (CXXRecordDecl *Definition = Record->getDefinition())
2417 if (Definition->isDynamicClass())
2418 return true;
2419
2420 return false;
2421}
2422
Chandler Carrutha72a12f2011-06-21 23:04:20 +00002423/// \brief If E is a sizeof expression, returns its argument expression,
Chandler Carruth000d4282011-06-16 09:09:40 +00002424/// otherwise returns NULL.
2425static const Expr *getSizeOfExprArg(const Expr* E) {
Nico Webere4a1c642011-06-14 16:14:58 +00002426 if (const UnaryExprOrTypeTraitExpr *SizeOf =
Chandler Carruth000d4282011-06-16 09:09:40 +00002427 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2428 if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
2429 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
Nico Webere4a1c642011-06-14 16:14:58 +00002430
Chandler Carruth000d4282011-06-16 09:09:40 +00002431 return 0;
2432}
2433
Chandler Carrutha72a12f2011-06-21 23:04:20 +00002434/// \brief If E is a sizeof expression, returns its argument type.
Chandler Carruth000d4282011-06-16 09:09:40 +00002435static QualType getSizeOfArgType(const Expr* E) {
2436 if (const UnaryExprOrTypeTraitExpr *SizeOf =
2437 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2438 if (SizeOf->getKind() == clang::UETT_SizeOf)
2439 return SizeOf->getTypeOfArgument();
2440
2441 return QualType();
Nico Webere4a1c642011-06-14 16:14:58 +00002442}
2443
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002444/// \brief Check for dangerous or invalid arguments to memset().
2445///
Chandler Carruth929f0132011-06-03 06:23:57 +00002446/// This issues warnings on known problematic, dangerous or unspecified
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002447/// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
2448/// function calls.
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002449///
2450/// \param Call The call expression to diagnose.
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002451void Sema::CheckMemaccessArguments(const CallExpr *Call,
Anna Zaks0a151a12012-01-17 00:37:07 +00002452 unsigned BId,
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002453 IdentifierInfo *FnName) {
Anna Zaks0a151a12012-01-17 00:37:07 +00002454 assert(BId != 0);
2455
Ted Kremenek1d59f7f2011-04-28 01:38:02 +00002456 // It is possible to have a non-standard definition of memset. Validate
Douglas Gregor707a23e2011-06-16 17:56:04 +00002457 // we have enough arguments, and if not, abort further checking.
Anna Zaks0a151a12012-01-17 00:37:07 +00002458 unsigned ExpectedNumArgs = (BId == Builtin::BIstrndup ? 2 : 3);
Nico Webercda57822011-10-13 22:30:23 +00002459 if (Call->getNumArgs() < ExpectedNumArgs)
Ted Kremenek1d59f7f2011-04-28 01:38:02 +00002460 return;
2461
Anna Zaks0a151a12012-01-17 00:37:07 +00002462 unsigned LastArg = (BId == Builtin::BImemset ||
2463 BId == Builtin::BIstrndup ? 1 : 2);
2464 unsigned LenArg = (BId == Builtin::BIstrndup ? 1 : 2);
Nico Webercda57822011-10-13 22:30:23 +00002465 const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
Chandler Carruth000d4282011-06-16 09:09:40 +00002466
2467 // We have special checking when the length is a sizeof expression.
2468 QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
2469 const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
2470 llvm::FoldingSetNodeID SizeOfArgID;
2471
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002472 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
2473 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
Nico Webere4a1c642011-06-14 16:14:58 +00002474 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002475
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002476 QualType DestTy = Dest->getType();
2477 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
2478 QualType PointeeTy = DestPtrTy->getPointeeType();
John McCallf85e1932011-06-15 23:02:42 +00002479
Chandler Carruth000d4282011-06-16 09:09:40 +00002480 // Never warn about void type pointers. This can be used to suppress
2481 // false positives.
2482 if (PointeeTy->isVoidType())
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002483 continue;
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002484
Chandler Carruth000d4282011-06-16 09:09:40 +00002485 // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
2486 // actually comparing the expressions for equality. Because computing the
2487 // expression IDs can be expensive, we only do this if the diagnostic is
2488 // enabled.
2489 if (SizeOfArg &&
2490 Diags.getDiagnosticLevel(diag::warn_sizeof_pointer_expr_memaccess,
2491 SizeOfArg->getExprLoc())) {
2492 // We only compute IDs for expressions if the warning is enabled, and
2493 // cache the sizeof arg's ID.
2494 if (SizeOfArgID == llvm::FoldingSetNodeID())
2495 SizeOfArg->Profile(SizeOfArgID, Context, true);
2496 llvm::FoldingSetNodeID DestID;
2497 Dest->Profile(DestID, Context, true);
2498 if (DestID == SizeOfArgID) {
Nico Webercda57822011-10-13 22:30:23 +00002499 // TODO: For strncpy() and friends, this could suggest sizeof(dst)
2500 // over sizeof(src) as well.
Chandler Carruth000d4282011-06-16 09:09:40 +00002501 unsigned ActionIdx = 0; // Default is to suggest dereferencing.
2502 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
2503 if (UnaryOp->getOpcode() == UO_AddrOf)
2504 ActionIdx = 1; // If its an address-of operator, just remove it.
2505 if (Context.getTypeSize(PointeeTy) == Context.getCharWidth())
2506 ActionIdx = 2; // If the pointee's size is sizeof(char),
2507 // suggest an explicit length.
Anna Zaksd9b859a2012-01-13 21:52:01 +00002508 unsigned DestSrcSelect =
Anna Zaks0a151a12012-01-17 00:37:07 +00002509 (BId == Builtin::BIstrndup ? 1 : ArgIdx);
Chandler Carruth000d4282011-06-16 09:09:40 +00002510 DiagRuntimeBehavior(SizeOfArg->getExprLoc(), Dest,
2511 PDiag(diag::warn_sizeof_pointer_expr_memaccess)
Nico Webercda57822011-10-13 22:30:23 +00002512 << FnName << DestSrcSelect << ActionIdx
Chandler Carruth000d4282011-06-16 09:09:40 +00002513 << Dest->getSourceRange()
2514 << SizeOfArg->getSourceRange());
2515 break;
2516 }
2517 }
2518
2519 // Also check for cases where the sizeof argument is the exact same
2520 // type as the memory argument, and where it points to a user-defined
2521 // record type.
2522 if (SizeOfArgTy != QualType()) {
2523 if (PointeeTy->isRecordType() &&
2524 Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
2525 DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
2526 PDiag(diag::warn_sizeof_pointer_type_memaccess)
2527 << FnName << SizeOfArgTy << ArgIdx
2528 << PointeeTy << Dest->getSourceRange()
2529 << LenExpr->getSourceRange());
2530 break;
2531 }
Nico Webere4a1c642011-06-14 16:14:58 +00002532 }
2533
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002534 // Always complain about dynamic classes.
Anna Zaks0a151a12012-01-17 00:37:07 +00002535 if (isDynamicClassType(PointeeTy)) {
2536
2537 unsigned OperationType = 0;
2538 // "overwritten" if we're warning about the destination for any call
2539 // but memcmp; otherwise a verb appropriate to the call.
2540 if (ArgIdx != 0 || BId == Builtin::BImemcmp) {
2541 if (BId == Builtin::BImemcpy)
2542 OperationType = 1;
2543 else if(BId == Builtin::BImemmove)
2544 OperationType = 2;
2545 else if (BId == Builtin::BImemcmp)
2546 OperationType = 3;
2547 }
2548
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002549 DiagRuntimeBehavior(
2550 Dest->getExprLoc(), Dest,
2551 PDiag(diag::warn_dyn_class_memaccess)
Anna Zaks0a151a12012-01-17 00:37:07 +00002552 << (BId == Builtin::BImemcmp ? ArgIdx + 2 : ArgIdx)
Anna Zaksd9b859a2012-01-13 21:52:01 +00002553 << FnName << PointeeTy
Anna Zaks0a151a12012-01-17 00:37:07 +00002554 << OperationType
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002555 << Call->getCallee()->getSourceRange());
Anna Zaks0a151a12012-01-17 00:37:07 +00002556 } else if (PointeeTy.hasNonTrivialObjCLifetime() &&
2557 BId != Builtin::BImemset)
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002558 DiagRuntimeBehavior(
2559 Dest->getExprLoc(), Dest,
2560 PDiag(diag::warn_arc_object_memaccess)
2561 << ArgIdx << FnName << PointeeTy
2562 << Call->getCallee()->getSourceRange());
John McCallf85e1932011-06-15 23:02:42 +00002563 else
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002564 continue;
John McCallf85e1932011-06-15 23:02:42 +00002565
2566 DiagRuntimeBehavior(
2567 Dest->getExprLoc(), Dest,
Chandler Carruth929f0132011-06-03 06:23:57 +00002568 PDiag(diag::note_bad_memaccess_silence)
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002569 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
2570 break;
2571 }
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002572 }
2573}
2574
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002575// A little helper routine: ignore addition and subtraction of integer literals.
2576// This intentionally does not ignore all integer constant expressions because
2577// we don't want to remove sizeof().
2578static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
2579 Ex = Ex->IgnoreParenCasts();
2580
2581 for (;;) {
2582 const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
2583 if (!BO || !BO->isAdditiveOp())
2584 break;
2585
2586 const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
2587 const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
2588
2589 if (isa<IntegerLiteral>(RHS))
2590 Ex = LHS;
2591 else if (isa<IntegerLiteral>(LHS))
2592 Ex = RHS;
2593 else
2594 break;
2595 }
2596
2597 return Ex;
2598}
2599
2600// Warn if the user has made the 'size' argument to strlcpy or strlcat
2601// be the size of the source, instead of the destination.
2602void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
2603 IdentifierInfo *FnName) {
2604
2605 // Don't crash if the user has the wrong number of arguments
2606 if (Call->getNumArgs() != 3)
2607 return;
2608
2609 const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
2610 const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
2611 const Expr *CompareWithSrc = NULL;
2612
2613 // Look for 'strlcpy(dst, x, sizeof(x))'
2614 if (const Expr *Ex = getSizeOfExprArg(SizeArg))
2615 CompareWithSrc = Ex;
2616 else {
2617 // Look for 'strlcpy(dst, x, strlen(x))'
2618 if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
Richard Smith180f4792011-11-10 06:34:14 +00002619 if (SizeCall->isBuiltinCall() == Builtin::BIstrlen
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002620 && SizeCall->getNumArgs() == 1)
2621 CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
2622 }
2623 }
2624
2625 if (!CompareWithSrc)
2626 return;
2627
2628 // Determine if the argument to sizeof/strlen is equal to the source
2629 // argument. In principle there's all kinds of things you could do
2630 // here, for instance creating an == expression and evaluating it with
2631 // EvaluateAsBooleanCondition, but this uses a more direct technique:
2632 const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
2633 if (!SrcArgDRE)
2634 return;
2635
2636 const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
2637 if (!CompareWithSrcDRE ||
2638 SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
2639 return;
2640
2641 const Expr *OriginalSizeArg = Call->getArg(2);
2642 Diag(CompareWithSrcDRE->getLocStart(), diag::warn_strlcpycat_wrong_size)
2643 << OriginalSizeArg->getSourceRange() << FnName;
2644
2645 // Output a FIXIT hint if the destination is an array (rather than a
2646 // pointer to an array). This could be enhanced to handle some
2647 // pointers if we know the actual size, like if DstArg is 'array+2'
2648 // we could say 'sizeof(array)-2'.
2649 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
Ted Kremenek8f746222011-08-18 22:48:41 +00002650 QualType DstArgTy = DstArg->getType();
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002651
Ted Kremenek8f746222011-08-18 22:48:41 +00002652 // Only handle constant-sized or VLAs, but not flexible members.
2653 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(DstArgTy)) {
2654 // Only issue the FIXIT for arrays of size > 1.
2655 if (CAT->getSize().getSExtValue() <= 1)
2656 return;
2657 } else if (!DstArgTy->isVariableArrayType()) {
2658 return;
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002659 }
Ted Kremenek8f746222011-08-18 22:48:41 +00002660
2661 llvm::SmallString<128> sizeString;
2662 llvm::raw_svector_ostream OS(sizeString);
2663 OS << "sizeof(";
Douglas Gregor8987b232011-09-27 23:30:47 +00002664 DstArg->printPretty(OS, Context, 0, getPrintingPolicy());
Ted Kremenek8f746222011-08-18 22:48:41 +00002665 OS << ")";
2666
2667 Diag(OriginalSizeArg->getLocStart(), diag::note_strlcpycat_wrong_size)
2668 << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
2669 OS.str());
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002670}
2671
Ted Kremenek06de2762007-08-17 16:46:58 +00002672//===--- CHECK: Return Address of Stack Variable --------------------------===//
2673
Chris Lattner5f9e2722011-07-23 10:55:15 +00002674static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars);
2675static Expr *EvalAddr(Expr* E, SmallVectorImpl<DeclRefExpr *> &refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002676
2677/// CheckReturnStackAddr - Check if a return statement returns the address
2678/// of a stack variable.
2679void
2680Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
2681 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00002682
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002683 Expr *stackE = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002684 SmallVector<DeclRefExpr *, 8> refVars;
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002685
2686 // Perform checking for returned stack addresses, local blocks,
2687 // label addresses or references to temporaries.
John McCallf85e1932011-06-15 23:02:42 +00002688 if (lhsType->isPointerType() ||
2689 (!getLangOptions().ObjCAutoRefCount && lhsType->isBlockPointerType())) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002690 stackE = EvalAddr(RetValExp, refVars);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002691 } else if (lhsType->isReferenceType()) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002692 stackE = EvalVal(RetValExp, refVars);
2693 }
2694
2695 if (stackE == 0)
2696 return; // Nothing suspicious was found.
2697
2698 SourceLocation diagLoc;
2699 SourceRange diagRange;
2700 if (refVars.empty()) {
2701 diagLoc = stackE->getLocStart();
2702 diagRange = stackE->getSourceRange();
2703 } else {
2704 // We followed through a reference variable. 'stackE' contains the
2705 // problematic expression but we will warn at the return statement pointing
2706 // at the reference variable. We will later display the "trail" of
2707 // reference variables using notes.
2708 diagLoc = refVars[0]->getLocStart();
2709 diagRange = refVars[0]->getSourceRange();
2710 }
2711
2712 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
2713 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref
2714 : diag::warn_ret_stack_addr)
2715 << DR->getDecl()->getDeclName() << diagRange;
2716 } else if (isa<BlockExpr>(stackE)) { // local block.
2717 Diag(diagLoc, diag::err_ret_local_block) << diagRange;
2718 } else if (isa<AddrLabelExpr>(stackE)) { // address of label.
2719 Diag(diagLoc, diag::warn_ret_addr_label) << diagRange;
2720 } else { // local temporary.
2721 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref
2722 : diag::warn_ret_local_temp_addr)
2723 << diagRange;
2724 }
2725
2726 // Display the "trail" of reference variables that we followed until we
2727 // found the problematic expression using notes.
2728 for (unsigned i = 0, e = refVars.size(); i != e; ++i) {
2729 VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl());
2730 // If this var binds to another reference var, show the range of the next
2731 // var, otherwise the var binds to the problematic expression, in which case
2732 // show the range of the expression.
2733 SourceRange range = (i < e-1) ? refVars[i+1]->getSourceRange()
2734 : stackE->getSourceRange();
2735 Diag(VD->getLocation(), diag::note_ref_var_local_bind)
2736 << VD->getDeclName() << range;
Ted Kremenek06de2762007-08-17 16:46:58 +00002737 }
2738}
2739
2740/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
2741/// check if the expression in a return statement evaluates to an address
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002742/// to a location on the stack, a local block, an address of a label, or a
2743/// reference to local temporary. The recursion is used to traverse the
Ted Kremenek06de2762007-08-17 16:46:58 +00002744/// AST of the return expression, with recursion backtracking when we
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002745/// encounter a subexpression that (1) clearly does not lead to one of the
2746/// above problematic expressions (2) is something we cannot determine leads to
2747/// a problematic expression based on such local checking.
2748///
2749/// Both EvalAddr and EvalVal follow through reference variables to evaluate
2750/// the expression that they point to. Such variables are added to the
2751/// 'refVars' vector so that we know what the reference variable "trail" was.
Ted Kremenek06de2762007-08-17 16:46:58 +00002752///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00002753/// EvalAddr processes expressions that are pointers that are used as
2754/// references (and not L-values). EvalVal handles all other values.
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002755/// At the base case of the recursion is a check for the above problematic
2756/// expressions.
Ted Kremenek06de2762007-08-17 16:46:58 +00002757///
2758/// This implementation handles:
2759///
2760/// * pointer-to-pointer casts
2761/// * implicit conversions from array references to pointers
2762/// * taking the address of fields
2763/// * arbitrary interplay between "&" and "*" operators
2764/// * pointer arithmetic from an address of a stack variable
2765/// * taking the address of an array element where the array is on the stack
Chris Lattner5f9e2722011-07-23 10:55:15 +00002766static Expr *EvalAddr(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002767 if (E->isTypeDependent())
2768 return NULL;
2769
Ted Kremenek06de2762007-08-17 16:46:58 +00002770 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00002771 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00002772 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002773 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002774 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00002775
Peter Collingbournef111d932011-04-15 00:35:48 +00002776 E = E->IgnoreParens();
2777
Ted Kremenek06de2762007-08-17 16:46:58 +00002778 // Our "symbolic interpreter" is just a dispatch off the currently
2779 // viewed AST node. We then recursively traverse the AST by calling
2780 // EvalAddr and EvalVal appropriately.
2781 switch (E->getStmtClass()) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002782 case Stmt::DeclRefExprClass: {
2783 DeclRefExpr *DR = cast<DeclRefExpr>(E);
2784
2785 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
2786 // If this is a reference variable, follow through to the expression that
2787 // it points to.
2788 if (V->hasLocalStorage() &&
2789 V->getType()->isReferenceType() && V->hasInit()) {
2790 // Add the reference variable to the "trail".
2791 refVars.push_back(DR);
2792 return EvalAddr(V->getInit(), refVars);
2793 }
2794
2795 return NULL;
2796 }
Ted Kremenek06de2762007-08-17 16:46:58 +00002797
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002798 case Stmt::UnaryOperatorClass: {
2799 // The only unary operator that make sense to handle here
2800 // is AddrOf. All others don't make sense as pointers.
2801 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002802
John McCall2de56d12010-08-25 11:45:40 +00002803 if (U->getOpcode() == UO_AddrOf)
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002804 return EvalVal(U->getSubExpr(), refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002805 else
Ted Kremenek06de2762007-08-17 16:46:58 +00002806 return NULL;
2807 }
Mike Stump1eb44332009-09-09 15:08:12 +00002808
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002809 case Stmt::BinaryOperatorClass: {
2810 // Handle pointer arithmetic. All other binary operators are not valid
2811 // in this context.
2812 BinaryOperator *B = cast<BinaryOperator>(E);
John McCall2de56d12010-08-25 11:45:40 +00002813 BinaryOperatorKind op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00002814
John McCall2de56d12010-08-25 11:45:40 +00002815 if (op != BO_Add && op != BO_Sub)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002816 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00002817
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002818 Expr *Base = B->getLHS();
2819
2820 // Determine which argument is the real pointer base. It could be
2821 // the RHS argument instead of the LHS.
2822 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00002823
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002824 assert (Base->getType()->isPointerType());
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002825 return EvalAddr(Base, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002826 }
Steve Naroff61f40a22008-09-10 19:17:48 +00002827
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002828 // For conditional operators we need to see if either the LHS or RHS are
2829 // valid DeclRefExpr*s. If one of them is valid, we return it.
2830 case Stmt::ConditionalOperatorClass: {
2831 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002832
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002833 // Handle the GNU extension for missing LHS.
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002834 if (Expr *lhsExpr = C->getLHS()) {
2835 // In C++, we can have a throw-expression, which has 'void' type.
2836 if (!lhsExpr->getType()->isVoidType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002837 if (Expr* LHS = EvalAddr(lhsExpr, refVars))
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002838 return LHS;
2839 }
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002840
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002841 // In C++, we can have a throw-expression, which has 'void' type.
2842 if (C->getRHS()->getType()->isVoidType())
2843 return NULL;
2844
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002845 return EvalAddr(C->getRHS(), refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002846 }
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002847
2848 case Stmt::BlockExprClass:
John McCall469a1eb2011-02-02 13:00:07 +00002849 if (cast<BlockExpr>(E)->getBlockDecl()->hasCaptures())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002850 return E; // local block.
2851 return NULL;
2852
2853 case Stmt::AddrLabelExprClass:
2854 return E; // address of label.
Mike Stump1eb44332009-09-09 15:08:12 +00002855
John McCall80ee6e82011-11-10 05:35:25 +00002856 case Stmt::ExprWithCleanupsClass:
2857 return EvalAddr(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2858
Ted Kremenek54b52742008-08-07 00:49:01 +00002859 // For casts, we need to handle conversions from arrays to
2860 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00002861 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00002862 case Stmt::CStyleCastExprClass:
John McCallf85e1932011-06-15 23:02:42 +00002863 case Stmt::CXXFunctionalCastExprClass:
2864 case Stmt::ObjCBridgedCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002865 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00002866 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002867
Steve Naroffdd972f22008-09-05 22:11:13 +00002868 if (SubExpr->getType()->isPointerType() ||
2869 SubExpr->getType()->isBlockPointerType() ||
2870 SubExpr->getType()->isObjCQualifiedIdType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002871 return EvalAddr(SubExpr, refVars);
Ted Kremenek54b52742008-08-07 00:49:01 +00002872 else if (T->isArrayType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002873 return EvalVal(SubExpr, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002874 else
Ted Kremenek54b52742008-08-07 00:49:01 +00002875 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002876 }
Mike Stump1eb44332009-09-09 15:08:12 +00002877
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002878 // C++ casts. For dynamic casts, static casts, and const casts, we
2879 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00002880 // through the cast. In the case the dynamic cast doesn't fail (and
2881 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002882 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00002883 // FIXME: The comment about is wrong; we're not always converting
2884 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00002885 // handle references to objects.
2886 case Stmt::CXXStaticCastExprClass:
2887 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00002888 case Stmt::CXXConstCastExprClass:
2889 case Stmt::CXXReinterpretCastExprClass: {
2890 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00002891 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002892 return EvalAddr(S, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002893 else
2894 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002895 }
Mike Stump1eb44332009-09-09 15:08:12 +00002896
Douglas Gregor03e80032011-06-21 17:03:29 +00002897 case Stmt::MaterializeTemporaryExprClass:
2898 if (Expr *Result = EvalAddr(
2899 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
2900 refVars))
2901 return Result;
2902
2903 return E;
2904
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002905 // Everything else: we simply don't reason about them.
2906 default:
2907 return NULL;
2908 }
Ted Kremenek06de2762007-08-17 16:46:58 +00002909}
Mike Stump1eb44332009-09-09 15:08:12 +00002910
Ted Kremenek06de2762007-08-17 16:46:58 +00002911
2912/// EvalVal - This function is complements EvalAddr in the mutual recursion.
2913/// See the comments for EvalAddr for more details.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002914static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002915do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00002916 // We should only be called for evaluating non-pointer expressions, or
2917 // expressions with a pointer type that are not used as references but instead
2918 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00002919
Ted Kremenek06de2762007-08-17 16:46:58 +00002920 // Our "symbolic interpreter" is just a dispatch off the currently
2921 // viewed AST node. We then recursively traverse the AST by calling
2922 // EvalAddr and EvalVal appropriately.
Peter Collingbournef111d932011-04-15 00:35:48 +00002923
2924 E = E->IgnoreParens();
Ted Kremenek06de2762007-08-17 16:46:58 +00002925 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002926 case Stmt::ImplicitCastExprClass: {
2927 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall5baba9d2010-08-25 10:28:54 +00002928 if (IE->getValueKind() == VK_LValue) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002929 E = IE->getSubExpr();
2930 continue;
2931 }
2932 return NULL;
2933 }
2934
John McCall80ee6e82011-11-10 05:35:25 +00002935 case Stmt::ExprWithCleanupsClass:
2936 return EvalVal(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2937
Douglas Gregora2813ce2009-10-23 18:54:35 +00002938 case Stmt::DeclRefExprClass: {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002939 // When we hit a DeclRefExpr we are looking at code that refers to a
2940 // variable's name. If it's not a reference variable we check if it has
2941 // local storage within the function, and if so, return the expression.
Ted Kremenek06de2762007-08-17 16:46:58 +00002942 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002943
Ted Kremenek06de2762007-08-17 16:46:58 +00002944 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002945 if (V->hasLocalStorage()) {
2946 if (!V->getType()->isReferenceType())
2947 return DR;
2948
2949 // Reference variable, follow through to the expression that
2950 // it points to.
2951 if (V->hasInit()) {
2952 // Add the reference variable to the "trail".
2953 refVars.push_back(DR);
2954 return EvalVal(V->getInit(), refVars);
2955 }
2956 }
Mike Stump1eb44332009-09-09 15:08:12 +00002957
Ted Kremenek06de2762007-08-17 16:46:58 +00002958 return NULL;
2959 }
Mike Stump1eb44332009-09-09 15:08:12 +00002960
Ted Kremenek06de2762007-08-17 16:46:58 +00002961 case Stmt::UnaryOperatorClass: {
2962 // The only unary operator that make sense to handle here
2963 // is Deref. All others don't resolve to a "name." This includes
2964 // handling all sorts of rvalues passed to a unary operator.
2965 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002966
John McCall2de56d12010-08-25 11:45:40 +00002967 if (U->getOpcode() == UO_Deref)
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002968 return EvalAddr(U->getSubExpr(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002969
2970 return NULL;
2971 }
Mike Stump1eb44332009-09-09 15:08:12 +00002972
Ted Kremenek06de2762007-08-17 16:46:58 +00002973 case Stmt::ArraySubscriptExprClass: {
2974 // Array subscripts are potential references to data on the stack. We
2975 // retrieve the DeclRefExpr* for the array variable if it indeed
2976 // has local storage.
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002977 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002978 }
Mike Stump1eb44332009-09-09 15:08:12 +00002979
Ted Kremenek06de2762007-08-17 16:46:58 +00002980 case Stmt::ConditionalOperatorClass: {
2981 // For conditional operators we need to see if either the LHS or RHS are
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002982 // non-NULL Expr's. If one is non-NULL, we return it.
Ted Kremenek06de2762007-08-17 16:46:58 +00002983 ConditionalOperator *C = cast<ConditionalOperator>(E);
2984
Anders Carlsson39073232007-11-30 19:04:31 +00002985 // Handle the GNU extension for missing LHS.
2986 if (Expr *lhsExpr = C->getLHS())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002987 if (Expr *LHS = EvalVal(lhsExpr, refVars))
Anders Carlsson39073232007-11-30 19:04:31 +00002988 return LHS;
2989
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002990 return EvalVal(C->getRHS(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002991 }
Mike Stump1eb44332009-09-09 15:08:12 +00002992
Ted Kremenek06de2762007-08-17 16:46:58 +00002993 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002994 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002995 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002996
Ted Kremenek06de2762007-08-17 16:46:58 +00002997 // Check for indirect access. We only want direct field accesses.
Ted Kremeneka423e812010-09-02 01:12:13 +00002998 if (M->isArrow())
Ted Kremenek06de2762007-08-17 16:46:58 +00002999 return NULL;
Ted Kremeneka423e812010-09-02 01:12:13 +00003000
3001 // Check whether the member type is itself a reference, in which case
3002 // we're not going to refer to the member, but to what the member refers to.
3003 if (M->getMemberDecl()->getType()->isReferenceType())
3004 return NULL;
3005
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00003006 return EvalVal(M->getBase(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00003007 }
Mike Stump1eb44332009-09-09 15:08:12 +00003008
Douglas Gregor03e80032011-06-21 17:03:29 +00003009 case Stmt::MaterializeTemporaryExprClass:
3010 if (Expr *Result = EvalVal(
3011 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
3012 refVars))
3013 return Result;
3014
3015 return E;
3016
Ted Kremenek06de2762007-08-17 16:46:58 +00003017 default:
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00003018 // Check that we don't return or take the address of a reference to a
3019 // temporary. This is only useful in C++.
3020 if (!E->isTypeDependent() && E->isRValue())
3021 return E;
3022
3023 // Everything else: we simply don't reason about them.
Ted Kremenek06de2762007-08-17 16:46:58 +00003024 return NULL;
3025 }
Ted Kremenek68957a92010-08-04 20:01:07 +00003026} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00003027}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003028
3029//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
3030
3031/// Check for comparisons of floating point operands using != and ==.
3032/// Issue a warning if these are no self-comparisons, as they are not likely
3033/// to do what the programmer intended.
Richard Trieudd225092011-09-15 21:56:47 +00003034void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003035 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00003036
Richard Trieudd225092011-09-15 21:56:47 +00003037 Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
3038 Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003039
3040 // Special case: check for x == x (which is OK).
3041 // Do not emit warnings for such cases.
3042 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
3043 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
3044 if (DRL->getDecl() == DRR->getDecl())
3045 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003046
3047
Ted Kremenek1b500bb2007-11-29 00:59:04 +00003048 // Special case: check for comparisons against literals that can be exactly
3049 // represented by APFloat. In such cases, do not emit a warning. This
3050 // is a heuristic: often comparison against such literals are used to
3051 // detect if a value in a variable has not changed. This clearly can
3052 // lead to false negatives.
3053 if (EmitWarning) {
3054 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
3055 if (FLL->isExact())
3056 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003057 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00003058 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
3059 if (FLR->isExact())
3060 EmitWarning = false;
3061 }
3062 }
Mike Stump1eb44332009-09-09 15:08:12 +00003063
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003064 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00003065 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003066 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Richard Smith180f4792011-11-10 06:34:14 +00003067 if (CL->isBuiltinCall())
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003068 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003069
Sebastian Redl0eb23302009-01-19 00:08:26 +00003070 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003071 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Richard Smith180f4792011-11-10 06:34:14 +00003072 if (CR->isBuiltinCall())
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003073 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003074
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003075 // Emit the diagnostic.
3076 if (EmitWarning)
Richard Trieudd225092011-09-15 21:56:47 +00003077 Diag(Loc, diag::warn_floatingpoint_eq)
3078 << LHS->getSourceRange() << RHS->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003079}
John McCallba26e582010-01-04 23:21:16 +00003080
John McCallf2370c92010-01-06 05:24:50 +00003081//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
3082//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00003083
John McCallf2370c92010-01-06 05:24:50 +00003084namespace {
John McCallba26e582010-01-04 23:21:16 +00003085
John McCallf2370c92010-01-06 05:24:50 +00003086/// Structure recording the 'active' range of an integer-valued
3087/// expression.
3088struct IntRange {
3089 /// The number of bits active in the int.
3090 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00003091
John McCallf2370c92010-01-06 05:24:50 +00003092 /// True if the int is known not to have negative values.
3093 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00003094
John McCallf2370c92010-01-06 05:24:50 +00003095 IntRange(unsigned Width, bool NonNegative)
3096 : Width(Width), NonNegative(NonNegative)
3097 {}
John McCallba26e582010-01-04 23:21:16 +00003098
John McCall1844a6e2010-11-10 23:38:19 +00003099 /// Returns the range of the bool type.
John McCallf2370c92010-01-06 05:24:50 +00003100 static IntRange forBoolType() {
3101 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00003102 }
3103
John McCall1844a6e2010-11-10 23:38:19 +00003104 /// Returns the range of an opaque value of the given integral type.
3105 static IntRange forValueOfType(ASTContext &C, QualType T) {
3106 return forValueOfCanonicalType(C,
3107 T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00003108 }
3109
John McCall1844a6e2010-11-10 23:38:19 +00003110 /// Returns the range of an opaque value of a canonical integral type.
3111 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
John McCallf2370c92010-01-06 05:24:50 +00003112 assert(T->isCanonicalUnqualified());
3113
3114 if (const VectorType *VT = dyn_cast<VectorType>(T))
3115 T = VT->getElementType().getTypePtr();
3116 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3117 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00003118
John McCall091f23f2010-11-09 22:22:12 +00003119 // For enum types, use the known bit width of the enumerators.
John McCall323ed742010-05-06 08:58:33 +00003120 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
3121 EnumDecl *Enum = ET->getDecl();
John McCall5e1cdac2011-10-07 06:10:15 +00003122 if (!Enum->isCompleteDefinition())
John McCall091f23f2010-11-09 22:22:12 +00003123 return IntRange(C.getIntWidth(QualType(T, 0)), false);
3124
John McCall323ed742010-05-06 08:58:33 +00003125 unsigned NumPositive = Enum->getNumPositiveBits();
3126 unsigned NumNegative = Enum->getNumNegativeBits();
3127
3128 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
3129 }
John McCallf2370c92010-01-06 05:24:50 +00003130
3131 const BuiltinType *BT = cast<BuiltinType>(T);
3132 assert(BT->isInteger());
3133
3134 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3135 }
3136
John McCall1844a6e2010-11-10 23:38:19 +00003137 /// Returns the "target" range of a canonical integral type, i.e.
3138 /// the range of values expressible in the type.
3139 ///
3140 /// This matches forValueOfCanonicalType except that enums have the
3141 /// full range of their type, not the range of their enumerators.
3142 static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
3143 assert(T->isCanonicalUnqualified());
3144
3145 if (const VectorType *VT = dyn_cast<VectorType>(T))
3146 T = VT->getElementType().getTypePtr();
3147 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3148 T = CT->getElementType().getTypePtr();
3149 if (const EnumType *ET = dyn_cast<EnumType>(T))
Douglas Gregor69ff26b2011-09-08 23:29:05 +00003150 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
John McCall1844a6e2010-11-10 23:38:19 +00003151
3152 const BuiltinType *BT = cast<BuiltinType>(T);
3153 assert(BT->isInteger());
3154
3155 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3156 }
3157
3158 /// Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00003159 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00003160 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00003161 L.NonNegative && R.NonNegative);
3162 }
3163
John McCall1844a6e2010-11-10 23:38:19 +00003164 /// Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00003165 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00003166 return IntRange(std::min(L.Width, R.Width),
3167 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00003168 }
3169};
3170
3171IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
3172 if (value.isSigned() && value.isNegative())
3173 return IntRange(value.getMinSignedBits(), false);
3174
3175 if (value.getBitWidth() > MaxWidth)
Jay Foad9f71a8f2010-12-07 08:25:34 +00003176 value = value.trunc(MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00003177
3178 // isNonNegative() just checks the sign bit without considering
3179 // signedness.
3180 return IntRange(value.getActiveBits(), true);
3181}
3182
John McCall0acc3112010-01-06 22:57:21 +00003183IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00003184 unsigned MaxWidth) {
3185 if (result.isInt())
3186 return GetValueRange(C, result.getInt(), MaxWidth);
3187
3188 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00003189 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
3190 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
3191 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
3192 R = IntRange::join(R, El);
3193 }
John McCallf2370c92010-01-06 05:24:50 +00003194 return R;
3195 }
3196
3197 if (result.isComplexInt()) {
3198 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
3199 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
3200 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00003201 }
3202
3203 // This can happen with lossless casts to intptr_t of "based" lvalues.
3204 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00003205 // FIXME: The only reason we need to pass the type in here is to get
3206 // the sign right on this one case. It would be nice if APValue
3207 // preserved this.
Eli Friedman65639282012-01-04 23:13:47 +00003208 assert(result.isLValue() || result.isAddrLabelDiff());
Douglas Gregor5e9ebb32011-05-21 16:28:01 +00003209 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
John McCall51313c32010-01-04 23:31:57 +00003210}
John McCallf2370c92010-01-06 05:24:50 +00003211
3212/// Pseudo-evaluate the given integer expression, estimating the
3213/// range of values it might take.
3214///
3215/// \param MaxWidth - the width to which the value will be truncated
3216IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
3217 E = E->IgnoreParens();
3218
3219 // Try a full evaluation first.
3220 Expr::EvalResult result;
Richard Smith51f47082011-10-29 00:50:52 +00003221 if (E->EvaluateAsRValue(result, C))
John McCall0acc3112010-01-06 22:57:21 +00003222 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00003223
3224 // I think we only want to look through implicit casts here; if the
3225 // user has an explicit widening cast, we should treat the value as
3226 // being of the new, wider type.
3227 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
Eli Friedmanb17ee5b2011-12-15 02:41:52 +00003228 if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
John McCallf2370c92010-01-06 05:24:50 +00003229 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
3230
John McCall1844a6e2010-11-10 23:38:19 +00003231 IntRange OutputTypeRange = IntRange::forValueOfType(C, CE->getType());
John McCallf2370c92010-01-06 05:24:50 +00003232
John McCall2de56d12010-08-25 11:45:40 +00003233 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
John McCall60fad452010-01-06 22:07:33 +00003234
John McCallf2370c92010-01-06 05:24:50 +00003235 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00003236 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00003237 return OutputTypeRange;
3238
3239 IntRange SubRange
3240 = GetExprRange(C, CE->getSubExpr(),
3241 std::min(MaxWidth, OutputTypeRange.Width));
3242
3243 // Bail out if the subexpr's range is as wide as the cast type.
3244 if (SubRange.Width >= OutputTypeRange.Width)
3245 return OutputTypeRange;
3246
3247 // Otherwise, we take the smaller width, and we're non-negative if
3248 // either the output type or the subexpr is.
3249 return IntRange(SubRange.Width,
3250 SubRange.NonNegative || OutputTypeRange.NonNegative);
3251 }
3252
3253 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
3254 // If we can fold the condition, just take that operand.
3255 bool CondResult;
3256 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
3257 return GetExprRange(C, CondResult ? CO->getTrueExpr()
3258 : CO->getFalseExpr(),
3259 MaxWidth);
3260
3261 // Otherwise, conservatively merge.
3262 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
3263 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
3264 return IntRange::join(L, R);
3265 }
3266
3267 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3268 switch (BO->getOpcode()) {
3269
3270 // Boolean-valued operations are single-bit and positive.
John McCall2de56d12010-08-25 11:45:40 +00003271 case BO_LAnd:
3272 case BO_LOr:
3273 case BO_LT:
3274 case BO_GT:
3275 case BO_LE:
3276 case BO_GE:
3277 case BO_EQ:
3278 case BO_NE:
John McCallf2370c92010-01-06 05:24:50 +00003279 return IntRange::forBoolType();
3280
John McCall862ff872011-07-13 06:35:24 +00003281 // The type of the assignments is the type of the LHS, so the RHS
3282 // is not necessarily the same type.
John McCall2de56d12010-08-25 11:45:40 +00003283 case BO_MulAssign:
3284 case BO_DivAssign:
3285 case BO_RemAssign:
3286 case BO_AddAssign:
3287 case BO_SubAssign:
John McCall862ff872011-07-13 06:35:24 +00003288 case BO_XorAssign:
3289 case BO_OrAssign:
3290 // TODO: bitfields?
John McCall1844a6e2010-11-10 23:38:19 +00003291 return IntRange::forValueOfType(C, E->getType());
John McCallc0cd21d2010-02-23 19:22:29 +00003292
John McCall862ff872011-07-13 06:35:24 +00003293 // Simple assignments just pass through the RHS, which will have
3294 // been coerced to the LHS type.
3295 case BO_Assign:
3296 // TODO: bitfields?
3297 return GetExprRange(C, BO->getRHS(), MaxWidth);
3298
John McCallf2370c92010-01-06 05:24:50 +00003299 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00003300 case BO_PtrMemD:
3301 case BO_PtrMemI:
John McCall1844a6e2010-11-10 23:38:19 +00003302 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003303
John McCall60fad452010-01-06 22:07:33 +00003304 // Bitwise-and uses the *infinum* of the two source ranges.
John McCall2de56d12010-08-25 11:45:40 +00003305 case BO_And:
3306 case BO_AndAssign:
John McCall60fad452010-01-06 22:07:33 +00003307 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
3308 GetExprRange(C, BO->getRHS(), MaxWidth));
3309
John McCallf2370c92010-01-06 05:24:50 +00003310 // Left shift gets black-listed based on a judgement call.
John McCall2de56d12010-08-25 11:45:40 +00003311 case BO_Shl:
John McCall3aae6092010-04-07 01:14:35 +00003312 // ...except that we want to treat '1 << (blah)' as logically
3313 // positive. It's an important idiom.
3314 if (IntegerLiteral *I
3315 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
3316 if (I->getValue() == 1) {
John McCall1844a6e2010-11-10 23:38:19 +00003317 IntRange R = IntRange::forValueOfType(C, E->getType());
John McCall3aae6092010-04-07 01:14:35 +00003318 return IntRange(R.Width, /*NonNegative*/ true);
3319 }
3320 }
3321 // fallthrough
3322
John McCall2de56d12010-08-25 11:45:40 +00003323 case BO_ShlAssign:
John McCall1844a6e2010-11-10 23:38:19 +00003324 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003325
John McCall60fad452010-01-06 22:07:33 +00003326 // Right shift by a constant can narrow its left argument.
John McCall2de56d12010-08-25 11:45:40 +00003327 case BO_Shr:
3328 case BO_ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00003329 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3330
3331 // If the shift amount is a positive constant, drop the width by
3332 // that much.
3333 llvm::APSInt shift;
3334 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
3335 shift.isNonNegative()) {
3336 unsigned zext = shift.getZExtValue();
3337 if (zext >= L.Width)
3338 L.Width = (L.NonNegative ? 0 : 1);
3339 else
3340 L.Width -= zext;
3341 }
3342
3343 return L;
3344 }
3345
3346 // Comma acts as its right operand.
John McCall2de56d12010-08-25 11:45:40 +00003347 case BO_Comma:
John McCallf2370c92010-01-06 05:24:50 +00003348 return GetExprRange(C, BO->getRHS(), MaxWidth);
3349
John McCall60fad452010-01-06 22:07:33 +00003350 // Black-list pointer subtractions.
John McCall2de56d12010-08-25 11:45:40 +00003351 case BO_Sub:
John McCallf2370c92010-01-06 05:24:50 +00003352 if (BO->getLHS()->getType()->isPointerType())
John McCall1844a6e2010-11-10 23:38:19 +00003353 return IntRange::forValueOfType(C, E->getType());
John McCall00fe7612011-07-14 22:39:48 +00003354 break;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00003355
John McCall00fe7612011-07-14 22:39:48 +00003356 // The width of a division result is mostly determined by the size
3357 // of the LHS.
3358 case BO_Div: {
3359 // Don't 'pre-truncate' the operands.
3360 unsigned opWidth = C.getIntWidth(E->getType());
3361 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3362
3363 // If the divisor is constant, use that.
3364 llvm::APSInt divisor;
3365 if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
3366 unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
3367 if (log2 >= L.Width)
3368 L.Width = (L.NonNegative ? 0 : 1);
3369 else
3370 L.Width = std::min(L.Width - log2, MaxWidth);
3371 return L;
3372 }
3373
3374 // Otherwise, just use the LHS's width.
3375 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3376 return IntRange(L.Width, L.NonNegative && R.NonNegative);
3377 }
3378
3379 // The result of a remainder can't be larger than the result of
3380 // either side.
3381 case BO_Rem: {
3382 // Don't 'pre-truncate' the operands.
3383 unsigned opWidth = C.getIntWidth(E->getType());
3384 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3385 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3386
3387 IntRange meet = IntRange::meet(L, R);
3388 meet.Width = std::min(meet.Width, MaxWidth);
3389 return meet;
3390 }
3391
3392 // The default behavior is okay for these.
3393 case BO_Mul:
3394 case BO_Add:
3395 case BO_Xor:
3396 case BO_Or:
John McCallf2370c92010-01-06 05:24:50 +00003397 break;
3398 }
3399
John McCall00fe7612011-07-14 22:39:48 +00003400 // The default case is to treat the operation as if it were closed
3401 // on the narrowest type that encompasses both operands.
John McCallf2370c92010-01-06 05:24:50 +00003402 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3403 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
3404 return IntRange::join(L, R);
3405 }
3406
3407 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
3408 switch (UO->getOpcode()) {
3409 // Boolean-valued operations are white-listed.
John McCall2de56d12010-08-25 11:45:40 +00003410 case UO_LNot:
John McCallf2370c92010-01-06 05:24:50 +00003411 return IntRange::forBoolType();
3412
3413 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00003414 case UO_Deref:
3415 case UO_AddrOf: // should be impossible
John McCall1844a6e2010-11-10 23:38:19 +00003416 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003417
3418 default:
3419 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
3420 }
3421 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00003422
3423 if (dyn_cast<OffsetOfExpr>(E)) {
John McCall1844a6e2010-11-10 23:38:19 +00003424 IntRange::forValueOfType(C, E->getType());
Douglas Gregor8ecdb652010-04-28 22:16:22 +00003425 }
John McCallf2370c92010-01-06 05:24:50 +00003426
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003427 if (FieldDecl *BitField = E->getBitField())
3428 return IntRange(BitField->getBitWidthValue(C),
Douglas Gregor5e9ebb32011-05-21 16:28:01 +00003429 BitField->getType()->isUnsignedIntegerOrEnumerationType());
John McCallf2370c92010-01-06 05:24:50 +00003430
John McCall1844a6e2010-11-10 23:38:19 +00003431 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003432}
John McCall51313c32010-01-04 23:31:57 +00003433
John McCall323ed742010-05-06 08:58:33 +00003434IntRange GetExprRange(ASTContext &C, Expr *E) {
3435 return GetExprRange(C, E, C.getIntWidth(E->getType()));
3436}
3437
John McCall51313c32010-01-04 23:31:57 +00003438/// Checks whether the given value, which currently has the given
3439/// source semantics, has the same value when coerced through the
3440/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00003441bool IsSameFloatAfterCast(const llvm::APFloat &value,
3442 const llvm::fltSemantics &Src,
3443 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00003444 llvm::APFloat truncated = value;
3445
3446 bool ignored;
3447 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
3448 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
3449
3450 return truncated.bitwiseIsEqual(value);
3451}
3452
3453/// Checks whether the given value, which currently has the given
3454/// source semantics, has the same value when coerced through the
3455/// target semantics.
3456///
3457/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00003458bool IsSameFloatAfterCast(const APValue &value,
3459 const llvm::fltSemantics &Src,
3460 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00003461 if (value.isFloat())
3462 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
3463
3464 if (value.isVector()) {
3465 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
3466 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
3467 return false;
3468 return true;
3469 }
3470
3471 assert(value.isComplexFloat());
3472 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
3473 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
3474}
3475
John McCallb4eb64d2010-10-08 02:01:28 +00003476void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
John McCall323ed742010-05-06 08:58:33 +00003477
Ted Kremeneke3b159c2010-09-23 21:43:44 +00003478static bool IsZero(Sema &S, Expr *E) {
3479 // Suppress cases where we are comparing against an enum constant.
3480 if (const DeclRefExpr *DR =
3481 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
3482 if (isa<EnumConstantDecl>(DR->getDecl()))
3483 return false;
3484
3485 // Suppress cases where the '0' value is expanded from a macro.
3486 if (E->getLocStart().isMacroID())
3487 return false;
3488
John McCall323ed742010-05-06 08:58:33 +00003489 llvm::APSInt Value;
3490 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
3491}
3492
John McCall372e1032010-10-06 00:25:24 +00003493static bool HasEnumType(Expr *E) {
3494 // Strip off implicit integral promotions.
3495 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00003496 if (ICE->getCastKind() != CK_IntegralCast &&
3497 ICE->getCastKind() != CK_NoOp)
John McCall372e1032010-10-06 00:25:24 +00003498 break;
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00003499 E = ICE->getSubExpr();
John McCall372e1032010-10-06 00:25:24 +00003500 }
3501
3502 return E->getType()->isEnumeralType();
3503}
3504
John McCall323ed742010-05-06 08:58:33 +00003505void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00003506 BinaryOperatorKind op = E->getOpcode();
Douglas Gregor14af91a2010-12-21 07:22:56 +00003507 if (E->isValueDependent())
3508 return;
3509
John McCall2de56d12010-08-25 11:45:40 +00003510 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00003511 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003512 << "< 0" << "false" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00003513 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003514 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00003515 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003516 << ">= 0" << "true" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00003517 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003518 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00003519 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003520 << "0 >" << "false" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00003521 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003522 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00003523 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003524 << "0 <=" << "true" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00003525 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
3526 }
3527}
3528
3529/// Analyze the operands of the given comparison. Implements the
3530/// fallback case from AnalyzeComparison.
3531void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallb4eb64d2010-10-08 02:01:28 +00003532 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3533 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCall323ed742010-05-06 08:58:33 +00003534}
John McCall51313c32010-01-04 23:31:57 +00003535
John McCallba26e582010-01-04 23:21:16 +00003536/// \brief Implements -Wsign-compare.
3537///
Richard Trieudd225092011-09-15 21:56:47 +00003538/// \param E the binary operator to check for warnings
John McCall323ed742010-05-06 08:58:33 +00003539void AnalyzeComparison(Sema &S, BinaryOperator *E) {
3540 // The type the comparison is being performed in.
3541 QualType T = E->getLHS()->getType();
3542 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
3543 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00003544
John McCall323ed742010-05-06 08:58:33 +00003545 // We don't do anything special if this isn't an unsigned integral
3546 // comparison: we're only interested in integral comparisons, and
3547 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregor3e026e32011-02-19 22:34:59 +00003548 //
3549 // We also don't care about value-dependent expressions or expressions
3550 // whose result is a constant.
3551 if (!T->hasUnsignedIntegerRepresentation()
3552 || E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
John McCall323ed742010-05-06 08:58:33 +00003553 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00003554
Richard Trieudd225092011-09-15 21:56:47 +00003555 Expr *LHS = E->getLHS()->IgnoreParenImpCasts();
3556 Expr *RHS = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00003557
John McCall323ed742010-05-06 08:58:33 +00003558 // Check to see if one of the (unmodified) operands is of different
3559 // signedness.
3560 Expr *signedOperand, *unsignedOperand;
Richard Trieudd225092011-09-15 21:56:47 +00003561 if (LHS->getType()->hasSignedIntegerRepresentation()) {
3562 assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00003563 "unsigned comparison between two signed integer expressions?");
Richard Trieudd225092011-09-15 21:56:47 +00003564 signedOperand = LHS;
3565 unsignedOperand = RHS;
3566 } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
3567 signedOperand = RHS;
3568 unsignedOperand = LHS;
John McCallba26e582010-01-04 23:21:16 +00003569 } else {
John McCall323ed742010-05-06 08:58:33 +00003570 CheckTrivialUnsignedComparison(S, E);
3571 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00003572 }
3573
John McCall323ed742010-05-06 08:58:33 +00003574 // Otherwise, calculate the effective range of the signed operand.
3575 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00003576
John McCall323ed742010-05-06 08:58:33 +00003577 // Go ahead and analyze implicit conversions in the operands. Note
3578 // that we skip the implicit conversions on both sides.
Richard Trieudd225092011-09-15 21:56:47 +00003579 AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
3580 AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
John McCallba26e582010-01-04 23:21:16 +00003581
John McCall323ed742010-05-06 08:58:33 +00003582 // If the signed range is non-negative, -Wsign-compare won't fire,
3583 // but we should still check for comparisons which are always true
3584 // or false.
3585 if (signedRange.NonNegative)
3586 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00003587
3588 // For (in)equality comparisons, if the unsigned operand is a
3589 // constant which cannot collide with a overflowed signed operand,
3590 // then reinterpreting the signed operand as unsigned will not
3591 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00003592 if (E->isEqualityOp()) {
3593 unsigned comparisonWidth = S.Context.getIntWidth(T);
3594 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00003595
John McCall323ed742010-05-06 08:58:33 +00003596 // We should never be unable to prove that the unsigned operand is
3597 // non-negative.
3598 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
3599
3600 if (unsignedRange.Width < comparisonWidth)
3601 return;
3602 }
3603
3604 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
Richard Trieudd225092011-09-15 21:56:47 +00003605 << LHS->getType() << RHS->getType()
3606 << LHS->getSourceRange() << RHS->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00003607}
3608
John McCall15d7d122010-11-11 03:21:53 +00003609/// Analyzes an attempt to assign the given value to a bitfield.
3610///
3611/// Returns true if there was something fishy about the attempt.
3612bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
3613 SourceLocation InitLoc) {
3614 assert(Bitfield->isBitField());
3615 if (Bitfield->isInvalidDecl())
3616 return false;
3617
John McCall91b60142010-11-11 05:33:51 +00003618 // White-list bool bitfields.
3619 if (Bitfield->getType()->isBooleanType())
3620 return false;
3621
Douglas Gregor46ff3032011-02-04 13:09:01 +00003622 // Ignore value- or type-dependent expressions.
3623 if (Bitfield->getBitWidth()->isValueDependent() ||
3624 Bitfield->getBitWidth()->isTypeDependent() ||
3625 Init->isValueDependent() ||
3626 Init->isTypeDependent())
3627 return false;
3628
John McCall15d7d122010-11-11 03:21:53 +00003629 Expr *OriginalInit = Init->IgnoreParenImpCasts();
3630
Richard Smith80d4b552011-12-28 19:48:30 +00003631 llvm::APSInt Value;
3632 if (!OriginalInit->EvaluateAsInt(Value, S.Context, Expr::SE_AllowSideEffects))
John McCall15d7d122010-11-11 03:21:53 +00003633 return false;
3634
John McCall15d7d122010-11-11 03:21:53 +00003635 unsigned OriginalWidth = Value.getBitWidth();
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003636 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
John McCall15d7d122010-11-11 03:21:53 +00003637
3638 if (OriginalWidth <= FieldWidth)
3639 return false;
3640
Eli Friedman3a643af2012-01-26 23:11:39 +00003641 // Compute the value which the bitfield will contain.
Jay Foad9f71a8f2010-12-07 08:25:34 +00003642 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
Eli Friedman3a643af2012-01-26 23:11:39 +00003643 TruncatedValue.setIsSigned(Bitfield->getType()->isSignedIntegerType());
John McCall15d7d122010-11-11 03:21:53 +00003644
Eli Friedman3a643af2012-01-26 23:11:39 +00003645 // Check whether the stored value is equal to the original value.
3646 TruncatedValue = TruncatedValue.extend(OriginalWidth);
John McCall15d7d122010-11-11 03:21:53 +00003647 if (Value == TruncatedValue)
3648 return false;
3649
Eli Friedman3a643af2012-01-26 23:11:39 +00003650 // Special-case bitfields of width 1: booleans are naturally 0/1, and
3651 // therefore don't strictly fit into a bitfield of width 1.
3652 if (FieldWidth == 1 && Value.getBoolValue() == TruncatedValue.getBoolValue())
3653 return false;
3654
John McCall15d7d122010-11-11 03:21:53 +00003655 std::string PrettyValue = Value.toString(10);
3656 std::string PrettyTrunc = TruncatedValue.toString(10);
3657
3658 S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
3659 << PrettyValue << PrettyTrunc << OriginalInit->getType()
3660 << Init->getSourceRange();
3661
3662 return true;
3663}
3664
John McCallbeb22aa2010-11-09 23:24:47 +00003665/// Analyze the given simple or compound assignment for warning-worthy
3666/// operations.
3667void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
3668 // Just recurse on the LHS.
3669 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3670
3671 // We want to recurse on the RHS as normal unless we're assigning to
3672 // a bitfield.
3673 if (FieldDecl *Bitfield = E->getLHS()->getBitField()) {
John McCall15d7d122010-11-11 03:21:53 +00003674 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
3675 E->getOperatorLoc())) {
3676 // Recurse, ignoring any implicit conversions on the RHS.
3677 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
3678 E->getOperatorLoc());
John McCallbeb22aa2010-11-09 23:24:47 +00003679 }
3680 }
3681
3682 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
3683}
3684
John McCall51313c32010-01-04 23:31:57 +00003685/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003686void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
3687 SourceLocation CContext, unsigned diag) {
3688 S.Diag(E->getExprLoc(), diag)
3689 << SourceType << T << E->getSourceRange() << SourceRange(CContext);
3690}
3691
Chandler Carruthe1b02e02011-04-05 06:47:57 +00003692/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
3693void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
3694 unsigned diag) {
3695 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag);
3696}
3697
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003698/// Diagnose an implicit cast from a literal expression. Does not warn when the
3699/// cast wouldn't lose information.
Chandler Carruthf65076e2011-04-10 08:36:24 +00003700void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
3701 SourceLocation CContext) {
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003702 // Try to convert the literal exactly to an integer. If we can, don't warn.
Chandler Carruthf65076e2011-04-10 08:36:24 +00003703 bool isExact = false;
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003704 const llvm::APFloat &Value = FL->getValue();
Jeffrey Yasskin3e1ef782011-07-15 17:03:07 +00003705 llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
3706 T->hasUnsignedIntegerRepresentation());
3707 if (Value.convertToInteger(IntegerValue,
Chandler Carruthf65076e2011-04-10 08:36:24 +00003708 llvm::APFloat::rmTowardZero, &isExact)
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003709 == llvm::APFloat::opOK && isExact)
Chandler Carruthf65076e2011-04-10 08:36:24 +00003710 return;
3711
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003712 S.Diag(FL->getExprLoc(), diag::warn_impcast_literal_float_to_integer)
3713 << FL->getType() << T << FL->getSourceRange() << SourceRange(CContext);
Chandler Carruthf65076e2011-04-10 08:36:24 +00003714}
3715
John McCall091f23f2010-11-09 22:22:12 +00003716std::string PrettyPrintInRange(const llvm::APSInt &Value, IntRange Range) {
3717 if (!Range.Width) return "0";
3718
3719 llvm::APSInt ValueInRange = Value;
3720 ValueInRange.setIsSigned(!Range.NonNegative);
Jay Foad9f71a8f2010-12-07 08:25:34 +00003721 ValueInRange = ValueInRange.trunc(Range.Width);
John McCall091f23f2010-11-09 22:22:12 +00003722 return ValueInRange.toString(10);
3723}
3724
John McCall323ed742010-05-06 08:58:33 +00003725void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00003726 SourceLocation CC, bool *ICContext = 0) {
John McCall323ed742010-05-06 08:58:33 +00003727 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00003728
John McCall323ed742010-05-06 08:58:33 +00003729 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
3730 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
3731 if (Source == Target) return;
3732 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00003733
Chandler Carruth108f7562011-07-26 05:40:03 +00003734 // If the conversion context location is invalid don't complain. We also
3735 // don't want to emit a warning if the issue occurs from the expansion of
3736 // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
3737 // delay this check as long as possible. Once we detect we are in that
3738 // scenario, we just return.
Ted Kremenekef9ff882011-03-10 20:03:42 +00003739 if (CC.isInvalid())
John McCallb4eb64d2010-10-08 02:01:28 +00003740 return;
3741
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00003742 // Diagnose implicit casts to bool.
3743 if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
3744 if (isa<StringLiteral>(E))
3745 // Warn on string literal to bool. Checks for string literals in logical
3746 // expressions, for instances, assert(0 && "error here"), is prevented
3747 // by a check in AnalyzeImplicitConversions().
3748 return DiagnoseImpCast(S, E, T, CC,
3749 diag::warn_impcast_string_literal_to_bool);
Lang Hamese14ca9f2011-12-05 20:49:50 +00003750 if (Source->isFunctionType()) {
3751 // Warn on function to bool. Checks free functions and static member
3752 // functions. Weakly imported functions are excluded from the check,
3753 // since it's common to test their value to check whether the linker
3754 // found a definition for them.
3755 ValueDecl *D = 0;
3756 if (DeclRefExpr* R = dyn_cast<DeclRefExpr>(E)) {
3757 D = R->getDecl();
3758 } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
3759 D = M->getMemberDecl();
3760 }
3761
3762 if (D && !D->isWeak()) {
Richard Trieu26b45d82011-12-06 04:48:01 +00003763 if (FunctionDecl* F = dyn_cast<FunctionDecl>(D)) {
3764 S.Diag(E->getExprLoc(), diag::warn_impcast_function_to_bool)
3765 << F << E->getSourceRange() << SourceRange(CC);
David Blaikie2def7732011-12-09 21:42:37 +00003766 S.Diag(E->getExprLoc(), diag::note_function_to_bool_silence)
3767 << FixItHint::CreateInsertion(E->getExprLoc(), "&");
3768 QualType ReturnType;
3769 UnresolvedSet<4> NonTemplateOverloads;
3770 S.isExprCallable(*E, ReturnType, NonTemplateOverloads);
3771 if (!ReturnType.isNull()
3772 && ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
3773 S.Diag(E->getExprLoc(), diag::note_function_to_bool_call)
3774 << FixItHint::CreateInsertion(
3775 S.getPreprocessor().getLocForEndOfToken(E->getLocEnd()), "()");
Richard Trieu26b45d82011-12-06 04:48:01 +00003776 return;
3777 }
Lang Hamese14ca9f2011-12-05 20:49:50 +00003778 }
3779 }
David Blaikiee37cdc42011-09-29 04:06:47 +00003780 return; // Other casts to bool are not checked.
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00003781 }
John McCall51313c32010-01-04 23:31:57 +00003782
3783 // Strip vector types.
3784 if (isa<VectorType>(Source)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003785 if (!isa<VectorType>(Target)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003786 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003787 return;
John McCallb4eb64d2010-10-08 02:01:28 +00003788 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003789 }
Chris Lattnerb792b302011-06-14 04:51:15 +00003790
3791 // If the vector cast is cast between two vectors of the same size, it is
3792 // a bitcast, not a conversion.
3793 if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
3794 return;
John McCall51313c32010-01-04 23:31:57 +00003795
3796 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
3797 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
3798 }
3799
3800 // Strip complex types.
3801 if (isa<ComplexType>(Source)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003802 if (!isa<ComplexType>(Target)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003803 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003804 return;
3805
John McCallb4eb64d2010-10-08 02:01:28 +00003806 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003807 }
John McCall51313c32010-01-04 23:31:57 +00003808
3809 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
3810 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
3811 }
3812
3813 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
3814 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
3815
3816 // If the source is floating point...
3817 if (SourceBT && SourceBT->isFloatingPoint()) {
3818 // ...and the target is floating point...
3819 if (TargetBT && TargetBT->isFloatingPoint()) {
3820 // ...then warn if we're dropping FP rank.
3821
3822 // Builtin FP kinds are ordered by increasing FP rank.
3823 if (SourceBT->getKind() > TargetBT->getKind()) {
3824 // Don't warn about float constants that are precisely
3825 // representable in the target type.
3826 Expr::EvalResult result;
Richard Smith51f47082011-10-29 00:50:52 +00003827 if (E->EvaluateAsRValue(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00003828 // Value might be a float, a float vector, or a float complex.
3829 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00003830 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
3831 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00003832 return;
3833 }
3834
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003835 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003836 return;
3837
John McCallb4eb64d2010-10-08 02:01:28 +00003838 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00003839 }
3840 return;
3841 }
3842
Ted Kremenekef9ff882011-03-10 20:03:42 +00003843 // If the target is integral, always warn.
Chandler Carrutha5b93322011-02-17 11:05:49 +00003844 if ((TargetBT && TargetBT->isInteger())) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003845 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003846 return;
3847
Chandler Carrutha5b93322011-02-17 11:05:49 +00003848 Expr *InnerE = E->IgnoreParenImpCasts();
Matt Beaumont-Gay634c8af2011-09-08 22:30:47 +00003849 // We also want to warn on, e.g., "int i = -1.234"
3850 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
3851 if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
3852 InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
3853
Chandler Carruthf65076e2011-04-10 08:36:24 +00003854 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
3855 DiagnoseFloatingLiteralImpCast(S, FL, T, CC);
Chandler Carrutha5b93322011-02-17 11:05:49 +00003856 } else {
3857 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
3858 }
3859 }
John McCall51313c32010-01-04 23:31:57 +00003860
3861 return;
3862 }
3863
John McCallf2370c92010-01-06 05:24:50 +00003864 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00003865 return;
3866
Richard Trieu1838ca52011-05-29 19:59:02 +00003867 if ((E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)
3868 == Expr::NPCK_GNUNull) && Target->isIntegerType()) {
3869 S.Diag(E->getExprLoc(), diag::warn_impcast_null_pointer_to_integer)
3870 << E->getSourceRange() << clang::SourceRange(CC);
3871 return;
3872 }
3873
John McCall323ed742010-05-06 08:58:33 +00003874 IntRange SourceRange = GetExprRange(S.Context, E);
John McCall1844a6e2010-11-10 23:38:19 +00003875 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00003876
3877 if (SourceRange.Width > TargetRange.Width) {
John McCall091f23f2010-11-09 22:22:12 +00003878 // If the source is a constant, use a default-on diagnostic.
3879 // TODO: this should happen for bitfield stores, too.
3880 llvm::APSInt Value(32);
3881 if (E->isIntegerConstantExpr(Value, S.Context)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003882 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003883 return;
3884
John McCall091f23f2010-11-09 22:22:12 +00003885 std::string PrettySourceValue = Value.toString(10);
3886 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
3887
Ted Kremenek5e745da2011-10-22 02:37:33 +00003888 S.DiagRuntimeBehavior(E->getExprLoc(), E,
3889 S.PDiag(diag::warn_impcast_integer_precision_constant)
3890 << PrettySourceValue << PrettyTargetValue
3891 << E->getType() << T << E->getSourceRange()
3892 << clang::SourceRange(CC));
John McCall091f23f2010-11-09 22:22:12 +00003893 return;
3894 }
3895
Chris Lattnerb792b302011-06-14 04:51:15 +00003896 // People want to build with -Wshorten-64-to-32 and not -Wconversion.
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003897 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003898 return;
3899
John McCallf2370c92010-01-06 05:24:50 +00003900 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallb4eb64d2010-10-08 02:01:28 +00003901 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
3902 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCall323ed742010-05-06 08:58:33 +00003903 }
3904
3905 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
3906 (!TargetRange.NonNegative && SourceRange.NonNegative &&
3907 SourceRange.Width == TargetRange.Width)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003908
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003909 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003910 return;
3911
John McCall323ed742010-05-06 08:58:33 +00003912 unsigned DiagID = diag::warn_impcast_integer_sign;
3913
3914 // Traditionally, gcc has warned about this under -Wsign-compare.
3915 // We also want to warn about it in -Wconversion.
3916 // So if -Wconversion is off, use a completely identical diagnostic
3917 // in the sign-compare group.
3918 // The conditional-checking code will
3919 if (ICContext) {
3920 DiagID = diag::warn_impcast_integer_sign_conditional;
3921 *ICContext = true;
3922 }
3923
John McCallb4eb64d2010-10-08 02:01:28 +00003924 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall51313c32010-01-04 23:31:57 +00003925 }
3926
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003927 // Diagnose conversions between different enumeration types.
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003928 // In C, we pretend that the type of an EnumConstantDecl is its enumeration
3929 // type, to give us better diagnostics.
3930 QualType SourceType = E->getType();
3931 if (!S.getLangOptions().CPlusPlus) {
3932 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
3933 if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3934 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
3935 SourceType = S.Context.getTypeDeclType(Enum);
3936 Source = S.Context.getCanonicalType(SourceType).getTypePtr();
3937 }
3938 }
3939
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003940 if (const EnumType *SourceEnum = Source->getAs<EnumType>())
3941 if (const EnumType *TargetEnum = Target->getAs<EnumType>())
3942 if ((SourceEnum->getDecl()->getIdentifier() ||
Richard Smith162e1c12011-04-15 14:24:37 +00003943 SourceEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003944 (TargetEnum->getDecl()->getIdentifier() ||
Richard Smith162e1c12011-04-15 14:24:37 +00003945 TargetEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Ted Kremenekef9ff882011-03-10 20:03:42 +00003946 SourceEnum != TargetEnum) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003947 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003948 return;
3949
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003950 return DiagnoseImpCast(S, E, SourceType, T, CC,
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003951 diag::warn_impcast_different_enum_types);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003952 }
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003953
John McCall51313c32010-01-04 23:31:57 +00003954 return;
3955}
3956
John McCall323ed742010-05-06 08:58:33 +00003957void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
3958
3959void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00003960 SourceLocation CC, bool &ICContext) {
John McCall323ed742010-05-06 08:58:33 +00003961 E = E->IgnoreParenImpCasts();
3962
3963 if (isa<ConditionalOperator>(E))
3964 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
3965
John McCallb4eb64d2010-10-08 02:01:28 +00003966 AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00003967 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00003968 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCall323ed742010-05-06 08:58:33 +00003969 return;
3970}
3971
3972void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
John McCallb4eb64d2010-10-08 02:01:28 +00003973 SourceLocation CC = E->getQuestionLoc();
3974
3975 AnalyzeImplicitConversions(S, E->getCond(), CC);
John McCall323ed742010-05-06 08:58:33 +00003976
3977 bool Suspicious = false;
John McCallb4eb64d2010-10-08 02:01:28 +00003978 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
3979 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCall323ed742010-05-06 08:58:33 +00003980
3981 // If -Wconversion would have warned about either of the candidates
3982 // for a signedness conversion to the context type...
3983 if (!Suspicious) return;
3984
3985 // ...but it's currently ignored...
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003986 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional,
3987 CC))
John McCall323ed742010-05-06 08:58:33 +00003988 return;
3989
John McCall323ed742010-05-06 08:58:33 +00003990 // ...then check whether it would have warned about either of the
3991 // candidates for a signedness conversion to the condition type.
Richard Trieu52541612011-07-21 02:46:28 +00003992 if (E->getType() == T) return;
3993
3994 Suspicious = false;
3995 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
3996 E->getType(), CC, &Suspicious);
3997 if (!Suspicious)
3998 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallb4eb64d2010-10-08 02:01:28 +00003999 E->getType(), CC, &Suspicious);
John McCall323ed742010-05-06 08:58:33 +00004000}
4001
4002/// AnalyzeImplicitConversions - Find and report any interesting
4003/// implicit conversions in the given expression. There are a couple
4004/// of competing diagnostics here, -Wconversion and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00004005void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00004006 QualType T = OrigE->getType();
4007 Expr *E = OrigE->IgnoreParenImpCasts();
4008
Douglas Gregorf8b6e152011-10-10 17:38:18 +00004009 if (E->isTypeDependent() || E->isValueDependent())
4010 return;
4011
John McCall323ed742010-05-06 08:58:33 +00004012 // For conditional operators, we analyze the arguments as if they
4013 // were being fed directly into the output.
4014 if (isa<ConditionalOperator>(E)) {
4015 ConditionalOperator *CO = cast<ConditionalOperator>(E);
4016 CheckConditionalOperator(S, CO, T);
4017 return;
4018 }
4019
4020 // Go ahead and check any implicit conversions we might have skipped.
4021 // The non-canonical typecheck is just an optimization;
4022 // CheckImplicitConversion will filter out dead implicit conversions.
4023 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00004024 CheckImplicitConversion(S, E, T, CC);
John McCall323ed742010-05-06 08:58:33 +00004025
4026 // Now continue drilling into this expression.
4027
4028 // Skip past explicit casts.
4029 if (isa<ExplicitCastExpr>(E)) {
4030 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
John McCallb4eb64d2010-10-08 02:01:28 +00004031 return AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00004032 }
4033
John McCallbeb22aa2010-11-09 23:24:47 +00004034 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
4035 // Do a somewhat different check with comparison operators.
4036 if (BO->isComparisonOp())
4037 return AnalyzeComparison(S, BO);
4038
Eli Friedman0fa06382012-01-26 23:34:06 +00004039 // And with simple assignments.
4040 if (BO->getOpcode() == BO_Assign)
John McCallbeb22aa2010-11-09 23:24:47 +00004041 return AnalyzeAssignment(S, BO);
4042 }
John McCall323ed742010-05-06 08:58:33 +00004043
4044 // These break the otherwise-useful invariant below. Fortunately,
4045 // we don't really need to recurse into them, because any internal
4046 // expressions should have been analyzed already when they were
4047 // built into statements.
4048 if (isa<StmtExpr>(E)) return;
4049
4050 // Don't descend into unevaluated contexts.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00004051 if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
John McCall323ed742010-05-06 08:58:33 +00004052
4053 // Now just recurse over the expression's children.
John McCallb4eb64d2010-10-08 02:01:28 +00004054 CC = E->getExprLoc();
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00004055 BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
4056 bool IsLogicalOperator = BO && BO->isLogicalOp();
4057 for (Stmt::child_range I = E->children(); I; ++I) {
4058 Expr *ChildExpr = cast<Expr>(*I);
4059 if (IsLogicalOperator &&
4060 isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
4061 // Ignore checking string literals that are in logical operators.
4062 continue;
4063 AnalyzeImplicitConversions(S, ChildExpr, CC);
4064 }
John McCall323ed742010-05-06 08:58:33 +00004065}
4066
4067} // end anonymous namespace
4068
4069/// Diagnoses "dangerous" implicit conversions within the given
4070/// expression (which is a full expression). Implements -Wconversion
4071/// and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00004072///
4073/// \param CC the "context" location of the implicit conversion, i.e.
4074/// the most location of the syntactic entity requiring the implicit
4075/// conversion
4076void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00004077 // Don't diagnose in unevaluated contexts.
4078 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
4079 return;
4080
4081 // Don't diagnose for value- or type-dependent expressions.
4082 if (E->isTypeDependent() || E->isValueDependent())
4083 return;
4084
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004085 // Check for array bounds violations in cases where the check isn't triggered
4086 // elsewhere for other Expr types (like BinaryOperators), e.g. when an
4087 // ArraySubscriptExpr is on the RHS of a variable initialization.
4088 CheckArrayAccess(E);
4089
John McCallb4eb64d2010-10-08 02:01:28 +00004090 // This is not the right CC for (e.g.) a variable initialization.
4091 AnalyzeImplicitConversions(*this, E, CC);
John McCall323ed742010-05-06 08:58:33 +00004092}
4093
John McCall15d7d122010-11-11 03:21:53 +00004094void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
4095 FieldDecl *BitField,
4096 Expr *Init) {
4097 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
4098}
4099
Mike Stumpf8c49212010-01-21 03:59:47 +00004100/// CheckParmsForFunctionDef - Check that the parameters of the given
4101/// function are appropriate for the definition of a function. This
4102/// takes care of any checks that cannot be performed on the
4103/// declaration itself, e.g., that the types of each of the function
4104/// parameters are complete.
Douglas Gregor82aa7132010-11-01 18:37:59 +00004105bool Sema::CheckParmsForFunctionDef(ParmVarDecl **P, ParmVarDecl **PEnd,
4106 bool CheckParameterNames) {
Mike Stumpf8c49212010-01-21 03:59:47 +00004107 bool HasInvalidParm = false;
Douglas Gregor82aa7132010-11-01 18:37:59 +00004108 for (; P != PEnd; ++P) {
4109 ParmVarDecl *Param = *P;
4110
Mike Stumpf8c49212010-01-21 03:59:47 +00004111 // C99 6.7.5.3p4: the parameters in a parameter type list in a
4112 // function declarator that is part of a function definition of
4113 // that function shall not have incomplete type.
4114 //
4115 // This is also C++ [dcl.fct]p6.
4116 if (!Param->isInvalidDecl() &&
4117 RequireCompleteType(Param->getLocation(), Param->getType(),
4118 diag::err_typecheck_decl_incomplete_type)) {
4119 Param->setInvalidDecl();
4120 HasInvalidParm = true;
4121 }
4122
4123 // C99 6.9.1p5: If the declarator includes a parameter type list, the
4124 // declaration of each parameter shall include an identifier.
Douglas Gregor82aa7132010-11-01 18:37:59 +00004125 if (CheckParameterNames &&
4126 Param->getIdentifier() == 0 &&
Mike Stumpf8c49212010-01-21 03:59:47 +00004127 !Param->isImplicit() &&
4128 !getLangOptions().CPlusPlus)
4129 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00004130
4131 // C99 6.7.5.3p12:
4132 // If the function declarator is not part of a definition of that
4133 // function, parameters may have incomplete type and may use the [*]
4134 // notation in their sequences of declarator specifiers to specify
4135 // variable length array types.
4136 QualType PType = Param->getOriginalType();
4137 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
4138 if (AT->getSizeModifier() == ArrayType::Star) {
4139 // FIXME: This diagnosic should point the the '[*]' if source-location
4140 // information is added for it.
4141 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
4142 }
4143 }
Mike Stumpf8c49212010-01-21 03:59:47 +00004144 }
4145
4146 return HasInvalidParm;
4147}
John McCallb7f4ffe2010-08-12 21:44:57 +00004148
4149/// CheckCastAlign - Implements -Wcast-align, which warns when a
4150/// pointer cast increases the alignment requirements.
4151void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
4152 // This is actually a lot of work to potentially be doing on every
4153 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00004154 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align,
4155 TRange.getBegin())
David Blaikied6471f72011-09-25 23:23:43 +00004156 == DiagnosticsEngine::Ignored)
John McCallb7f4ffe2010-08-12 21:44:57 +00004157 return;
4158
4159 // Ignore dependent types.
4160 if (T->isDependentType() || Op->getType()->isDependentType())
4161 return;
4162
4163 // Require that the destination be a pointer type.
4164 const PointerType *DestPtr = T->getAs<PointerType>();
4165 if (!DestPtr) return;
4166
4167 // If the destination has alignment 1, we're done.
4168 QualType DestPointee = DestPtr->getPointeeType();
4169 if (DestPointee->isIncompleteType()) return;
4170 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
4171 if (DestAlign.isOne()) return;
4172
4173 // Require that the source be a pointer type.
4174 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
4175 if (!SrcPtr) return;
4176 QualType SrcPointee = SrcPtr->getPointeeType();
4177
4178 // Whitelist casts from cv void*. We already implicitly
4179 // whitelisted casts to cv void*, since they have alignment 1.
4180 // Also whitelist casts involving incomplete types, which implicitly
4181 // includes 'void'.
4182 if (SrcPointee->isIncompleteType()) return;
4183
4184 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
4185 if (SrcAlign >= DestAlign) return;
4186
4187 Diag(TRange.getBegin(), diag::warn_cast_align)
4188 << Op->getType() << T
4189 << static_cast<unsigned>(SrcAlign.getQuantity())
4190 << static_cast<unsigned>(DestAlign.getQuantity())
4191 << TRange << Op->getSourceRange();
4192}
4193
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004194static const Type* getElementType(const Expr *BaseExpr) {
4195 const Type* EltType = BaseExpr->getType().getTypePtr();
4196 if (EltType->isAnyPointerType())
4197 return EltType->getPointeeType().getTypePtr();
4198 else if (EltType->isArrayType())
4199 return EltType->getBaseElementTypeUnsafe();
4200 return EltType;
4201}
4202
Chandler Carruthc2684342011-08-05 09:10:50 +00004203/// \brief Check whether this array fits the idiom of a size-one tail padded
4204/// array member of a struct.
4205///
4206/// We avoid emitting out-of-bounds access warnings for such arrays as they are
4207/// commonly used to emulate flexible arrays in C89 code.
4208static bool IsTailPaddedMemberArray(Sema &S, llvm::APInt Size,
4209 const NamedDecl *ND) {
4210 if (Size != 1 || !ND) return false;
4211
4212 const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
4213 if (!FD) return false;
4214
4215 // Don't consider sizes resulting from macro expansions or template argument
4216 // substitution to form C89 tail-padded arrays.
4217 ConstantArrayTypeLoc TL =
4218 cast<ConstantArrayTypeLoc>(FD->getTypeSourceInfo()->getTypeLoc());
4219 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(TL.getSizeExpr());
4220 if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
4221 return false;
4222
4223 const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
Matt Beaumont-Gay381711c2011-11-29 22:43:53 +00004224 if (!RD) return false;
4225 if (RD->isUnion()) return false;
4226 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
4227 if (!CRD->isStandardLayout()) return false;
4228 }
Chandler Carruthc2684342011-08-05 09:10:50 +00004229
Benjamin Kramer22d4fed2011-08-06 03:04:42 +00004230 // See if this is the last field decl in the record.
4231 const Decl *D = FD;
4232 while ((D = D->getNextDeclInContext()))
4233 if (isa<FieldDecl>(D))
4234 return false;
4235 return true;
Chandler Carruthc2684342011-08-05 09:10:50 +00004236}
4237
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004238void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004239 const ArraySubscriptExpr *ASE,
Richard Smith25b009a2011-12-16 19:31:14 +00004240 bool AllowOnePastEnd, bool IndexNegated) {
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004241 IndexExpr = IndexExpr->IgnoreParenCasts();
4242 if (IndexExpr->isValueDependent())
4243 return;
4244
Matt Beaumont-Gay8ef8f432011-12-12 22:35:02 +00004245 const Type *EffectiveType = getElementType(BaseExpr);
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004246 BaseExpr = BaseExpr->IgnoreParenCasts();
Chandler Carruth34064582011-02-17 20:55:08 +00004247 const ConstantArrayType *ArrayTy =
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004248 Context.getAsConstantArrayType(BaseExpr->getType());
Chandler Carruth34064582011-02-17 20:55:08 +00004249 if (!ArrayTy)
Ted Kremeneka0125d82011-02-16 01:57:07 +00004250 return;
Chandler Carruth35001ca2011-02-17 21:10:52 +00004251
Chandler Carruth34064582011-02-17 20:55:08 +00004252 llvm::APSInt index;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004253 if (!IndexExpr->EvaluateAsInt(index, Context))
Ted Kremeneka0125d82011-02-16 01:57:07 +00004254 return;
Richard Smith25b009a2011-12-16 19:31:14 +00004255 if (IndexNegated)
4256 index = -index;
Ted Kremenek8fd0a5d2011-02-16 04:01:44 +00004257
Chandler Carruthba447122011-08-05 08:07:29 +00004258 const NamedDecl *ND = NULL;
Chandler Carruthba447122011-08-05 08:07:29 +00004259 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4260 ND = dyn_cast<NamedDecl>(DRE->getDecl());
Chandler Carruthc2684342011-08-05 09:10:50 +00004261 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
Chandler Carruthba447122011-08-05 08:07:29 +00004262 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
Chandler Carruthba447122011-08-05 08:07:29 +00004263
Ted Kremenek9e060ca2011-02-23 23:06:04 +00004264 if (index.isUnsigned() || !index.isNegative()) {
Ted Kremenek25b3b842011-02-18 02:27:00 +00004265 llvm::APInt size = ArrayTy->getSize();
Chandler Carruth35001ca2011-02-17 21:10:52 +00004266 if (!size.isStrictlyPositive())
4267 return;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004268
4269 const Type* BaseType = getElementType(BaseExpr);
Nico Weberde5998f2011-09-17 22:59:41 +00004270 if (BaseType != EffectiveType) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004271 // Make sure we're comparing apples to apples when comparing index to size
4272 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
4273 uint64_t array_typesize = Context.getTypeSize(BaseType);
Kaelyn Uhraind10f4bc2011-08-10 19:47:25 +00004274 // Handle ptrarith_typesize being zero, such as when casting to void*
Kaelyn Uhrain18f16972011-08-10 18:49:28 +00004275 if (!ptrarith_typesize) ptrarith_typesize = 1;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004276 if (ptrarith_typesize != array_typesize) {
4277 // There's a cast to a different size type involved
4278 uint64_t ratio = array_typesize / ptrarith_typesize;
4279 // TODO: Be smarter about handling cases where array_typesize is not a
4280 // multiple of ptrarith_typesize
4281 if (ptrarith_typesize * ratio == array_typesize)
4282 size *= llvm::APInt(size.getBitWidth(), ratio);
4283 }
4284 }
4285
Chandler Carruth34064582011-02-17 20:55:08 +00004286 if (size.getBitWidth() > index.getBitWidth())
4287 index = index.sext(size.getBitWidth());
Ted Kremenek25b3b842011-02-18 02:27:00 +00004288 else if (size.getBitWidth() < index.getBitWidth())
4289 size = size.sext(index.getBitWidth());
4290
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004291 // For array subscripting the index must be less than size, but for pointer
4292 // arithmetic also allow the index (offset) to be equal to size since
4293 // computing the next address after the end of the array is legal and
4294 // commonly done e.g. in C++ iterators and range-based for loops.
4295 if (AllowOnePastEnd ? index.sle(size) : index.slt(size))
Chandler Carruthba447122011-08-05 08:07:29 +00004296 return;
4297
4298 // Also don't warn for arrays of size 1 which are members of some
4299 // structure. These are often used to approximate flexible arrays in C89
4300 // code.
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004301 if (IsTailPaddedMemberArray(*this, size, ND))
Ted Kremenek8fd0a5d2011-02-16 04:01:44 +00004302 return;
Chandler Carruth34064582011-02-17 20:55:08 +00004303
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004304 // Suppress the warning if the subscript expression (as identified by the
4305 // ']' location) and the index expression are both from macro expansions
4306 // within a system header.
4307 if (ASE) {
4308 SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
4309 ASE->getRBracketLoc());
4310 if (SourceMgr.isInSystemHeader(RBracketLoc)) {
4311 SourceLocation IndexLoc = SourceMgr.getSpellingLoc(
4312 IndexExpr->getLocStart());
4313 if (SourceMgr.isFromSameFile(RBracketLoc, IndexLoc))
4314 return;
4315 }
4316 }
4317
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004318 unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004319 if (ASE)
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004320 DiagID = diag::warn_array_index_exceeds_bounds;
4321
4322 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4323 PDiag(DiagID) << index.toString(10, true)
4324 << size.toString(10, true)
4325 << (unsigned)size.getLimitedValue(~0U)
4326 << IndexExpr->getSourceRange());
Chandler Carruth34064582011-02-17 20:55:08 +00004327 } else {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004328 unsigned DiagID = diag::warn_array_index_precedes_bounds;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004329 if (!ASE) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004330 DiagID = diag::warn_ptr_arith_precedes_bounds;
4331 if (index.isNegative()) index = -index;
4332 }
4333
4334 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4335 PDiag(DiagID) << index.toString(10, true)
4336 << IndexExpr->getSourceRange());
Ted Kremeneka0125d82011-02-16 01:57:07 +00004337 }
Chandler Carruth35001ca2011-02-17 21:10:52 +00004338
Matt Beaumont-Gaycfbc5b52011-11-29 19:27:11 +00004339 if (!ND) {
4340 // Try harder to find a NamedDecl to point at in the note.
4341 while (const ArraySubscriptExpr *ASE =
4342 dyn_cast<ArraySubscriptExpr>(BaseExpr))
4343 BaseExpr = ASE->getBase()->IgnoreParenCasts();
4344 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4345 ND = dyn_cast<NamedDecl>(DRE->getDecl());
4346 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
4347 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
4348 }
4349
Chandler Carruth35001ca2011-02-17 21:10:52 +00004350 if (ND)
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004351 DiagRuntimeBehavior(ND->getLocStart(), BaseExpr,
4352 PDiag(diag::note_array_index_out_of_bounds)
4353 << ND->getDeclName());
Ted Kremeneka0125d82011-02-16 01:57:07 +00004354}
4355
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004356void Sema::CheckArrayAccess(const Expr *expr) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004357 int AllowOnePastEnd = 0;
4358 while (expr) {
4359 expr = expr->IgnoreParenImpCasts();
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004360 switch (expr->getStmtClass()) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004361 case Stmt::ArraySubscriptExprClass: {
4362 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004363 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004364 AllowOnePastEnd > 0);
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004365 return;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004366 }
4367 case Stmt::UnaryOperatorClass: {
4368 // Only unwrap the * and & unary operators
4369 const UnaryOperator *UO = cast<UnaryOperator>(expr);
4370 expr = UO->getSubExpr();
4371 switch (UO->getOpcode()) {
4372 case UO_AddrOf:
4373 AllowOnePastEnd++;
4374 break;
4375 case UO_Deref:
4376 AllowOnePastEnd--;
4377 break;
4378 default:
4379 return;
4380 }
4381 break;
4382 }
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004383 case Stmt::ConditionalOperatorClass: {
4384 const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
4385 if (const Expr *lhs = cond->getLHS())
4386 CheckArrayAccess(lhs);
4387 if (const Expr *rhs = cond->getRHS())
4388 CheckArrayAccess(rhs);
4389 return;
4390 }
4391 default:
4392 return;
4393 }
Peter Collingbournef111d932011-04-15 00:35:48 +00004394 }
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004395}
John McCallf85e1932011-06-15 23:02:42 +00004396
4397//===--- CHECK: Objective-C retain cycles ----------------------------------//
4398
4399namespace {
4400 struct RetainCycleOwner {
4401 RetainCycleOwner() : Variable(0), Indirect(false) {}
4402 VarDecl *Variable;
4403 SourceRange Range;
4404 SourceLocation Loc;
4405 bool Indirect;
4406
4407 void setLocsFrom(Expr *e) {
4408 Loc = e->getExprLoc();
4409 Range = e->getSourceRange();
4410 }
4411 };
4412}
4413
4414/// Consider whether capturing the given variable can possibly lead to
4415/// a retain cycle.
4416static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
4417 // In ARC, it's captured strongly iff the variable has __strong
4418 // lifetime. In MRR, it's captured strongly if the variable is
4419 // __block and has an appropriate type.
4420 if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4421 return false;
4422
4423 owner.Variable = var;
4424 owner.setLocsFrom(ref);
4425 return true;
4426}
4427
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004428static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
John McCallf85e1932011-06-15 23:02:42 +00004429 while (true) {
4430 e = e->IgnoreParens();
4431 if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
4432 switch (cast->getCastKind()) {
4433 case CK_BitCast:
4434 case CK_LValueBitCast:
4435 case CK_LValueToRValue:
John McCall33e56f32011-09-10 06:18:15 +00004436 case CK_ARCReclaimReturnedObject:
John McCallf85e1932011-06-15 23:02:42 +00004437 e = cast->getSubExpr();
4438 continue;
4439
John McCallf85e1932011-06-15 23:02:42 +00004440 default:
4441 return false;
4442 }
4443 }
4444
4445 if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
4446 ObjCIvarDecl *ivar = ref->getDecl();
4447 if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4448 return false;
4449
4450 // Try to find a retain cycle in the base.
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004451 if (!findRetainCycleOwner(S, ref->getBase(), owner))
John McCallf85e1932011-06-15 23:02:42 +00004452 return false;
4453
4454 if (ref->isFreeIvar()) owner.setLocsFrom(ref);
4455 owner.Indirect = true;
4456 return true;
4457 }
4458
4459 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
4460 VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
4461 if (!var) return false;
4462 return considerVariable(var, ref, owner);
4463 }
4464
4465 if (BlockDeclRefExpr *ref = dyn_cast<BlockDeclRefExpr>(e)) {
4466 owner.Variable = ref->getDecl();
4467 owner.setLocsFrom(ref);
4468 return true;
4469 }
4470
4471 if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
4472 if (member->isArrow()) return false;
4473
4474 // Don't count this as an indirect ownership.
4475 e = member->getBase();
4476 continue;
4477 }
4478
John McCall4b9c2d22011-11-06 09:01:30 +00004479 if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
4480 // Only pay attention to pseudo-objects on property references.
4481 ObjCPropertyRefExpr *pre
4482 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
4483 ->IgnoreParens());
4484 if (!pre) return false;
4485 if (pre->isImplicitProperty()) return false;
4486 ObjCPropertyDecl *property = pre->getExplicitProperty();
4487 if (!property->isRetaining() &&
4488 !(property->getPropertyIvarDecl() &&
4489 property->getPropertyIvarDecl()->getType()
4490 .getObjCLifetime() == Qualifiers::OCL_Strong))
4491 return false;
4492
4493 owner.Indirect = true;
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004494 if (pre->isSuperReceiver()) {
4495 owner.Variable = S.getCurMethodDecl()->getSelfDecl();
4496 if (!owner.Variable)
4497 return false;
4498 owner.Loc = pre->getLocation();
4499 owner.Range = pre->getSourceRange();
4500 return true;
4501 }
John McCall4b9c2d22011-11-06 09:01:30 +00004502 e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
4503 ->getSourceExpr());
4504 continue;
4505 }
4506
John McCallf85e1932011-06-15 23:02:42 +00004507 // Array ivars?
4508
4509 return false;
4510 }
4511}
4512
4513namespace {
4514 struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
4515 FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
4516 : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
4517 Variable(variable), Capturer(0) {}
4518
4519 VarDecl *Variable;
4520 Expr *Capturer;
4521
4522 void VisitDeclRefExpr(DeclRefExpr *ref) {
4523 if (ref->getDecl() == Variable && !Capturer)
4524 Capturer = ref;
4525 }
4526
4527 void VisitBlockDeclRefExpr(BlockDeclRefExpr *ref) {
4528 if (ref->getDecl() == Variable && !Capturer)
4529 Capturer = ref;
4530 }
4531
4532 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
4533 if (Capturer) return;
4534 Visit(ref->getBase());
4535 if (Capturer && ref->isFreeIvar())
4536 Capturer = ref;
4537 }
4538
4539 void VisitBlockExpr(BlockExpr *block) {
4540 // Look inside nested blocks
4541 if (block->getBlockDecl()->capturesVariable(Variable))
4542 Visit(block->getBlockDecl()->getBody());
4543 }
4544 };
4545}
4546
4547/// Check whether the given argument is a block which captures a
4548/// variable.
4549static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
4550 assert(owner.Variable && owner.Loc.isValid());
4551
4552 e = e->IgnoreParenCasts();
4553 BlockExpr *block = dyn_cast<BlockExpr>(e);
4554 if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
4555 return 0;
4556
4557 FindCaptureVisitor visitor(S.Context, owner.Variable);
4558 visitor.Visit(block->getBlockDecl()->getBody());
4559 return visitor.Capturer;
4560}
4561
4562static void diagnoseRetainCycle(Sema &S, Expr *capturer,
4563 RetainCycleOwner &owner) {
4564 assert(capturer);
4565 assert(owner.Variable && owner.Loc.isValid());
4566
4567 S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
4568 << owner.Variable << capturer->getSourceRange();
4569 S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
4570 << owner.Indirect << owner.Range;
4571}
4572
4573/// Check for a keyword selector that starts with the word 'add' or
4574/// 'set'.
4575static bool isSetterLikeSelector(Selector sel) {
4576 if (sel.isUnarySelector()) return false;
4577
Chris Lattner5f9e2722011-07-23 10:55:15 +00004578 StringRef str = sel.getNameForSlot(0);
John McCallf85e1932011-06-15 23:02:42 +00004579 while (!str.empty() && str.front() == '_') str = str.substr(1);
Ted Kremenek968a0ee2011-12-01 00:59:21 +00004580 if (str.startswith("set"))
John McCallf85e1932011-06-15 23:02:42 +00004581 str = str.substr(3);
Ted Kremenek968a0ee2011-12-01 00:59:21 +00004582 else if (str.startswith("add")) {
4583 // Specially whitelist 'addOperationWithBlock:'.
4584 if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
4585 return false;
4586 str = str.substr(3);
4587 }
John McCallf85e1932011-06-15 23:02:42 +00004588 else
4589 return false;
4590
4591 if (str.empty()) return true;
4592 return !islower(str.front());
4593}
4594
4595/// Check a message send to see if it's likely to cause a retain cycle.
4596void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
4597 // Only check instance methods whose selector looks like a setter.
4598 if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
4599 return;
4600
4601 // Try to find a variable that the receiver is strongly owned by.
4602 RetainCycleOwner owner;
4603 if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004604 if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
John McCallf85e1932011-06-15 23:02:42 +00004605 return;
4606 } else {
4607 assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
4608 owner.Variable = getCurMethodDecl()->getSelfDecl();
4609 owner.Loc = msg->getSuperLoc();
4610 owner.Range = msg->getSuperLoc();
4611 }
4612
4613 // Check whether the receiver is captured by any of the arguments.
4614 for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i)
4615 if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner))
4616 return diagnoseRetainCycle(*this, capturer, owner);
4617}
4618
4619/// Check a property assign to see if it's likely to cause a retain cycle.
4620void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
4621 RetainCycleOwner owner;
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004622 if (!findRetainCycleOwner(*this, receiver, owner))
John McCallf85e1932011-06-15 23:02:42 +00004623 return;
4624
4625 if (Expr *capturer = findCapturingExpr(*this, argument, owner))
4626 diagnoseRetainCycle(*this, capturer, owner);
4627}
4628
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004629bool Sema::checkUnsafeAssigns(SourceLocation Loc,
John McCallf85e1932011-06-15 23:02:42 +00004630 QualType LHS, Expr *RHS) {
4631 Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
4632 if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004633 return false;
4634 // strip off any implicit cast added to get to the one arc-specific
4635 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall33e56f32011-09-10 06:18:15 +00004636 if (cast->getCastKind() == CK_ARCConsumeObject) {
John McCallf85e1932011-06-15 23:02:42 +00004637 Diag(Loc, diag::warn_arc_retained_assign)
4638 << (LT == Qualifiers::OCL_ExplicitNone)
4639 << RHS->getSourceRange();
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004640 return true;
4641 }
4642 RHS = cast->getSubExpr();
4643 }
4644 return false;
John McCallf85e1932011-06-15 23:02:42 +00004645}
4646
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004647void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
4648 Expr *LHS, Expr *RHS) {
Fariborz Jahanian87eaf722012-01-17 22:58:16 +00004649 QualType LHSType;
4650 // PropertyRef on LHS type need be directly obtained from
4651 // its declaration as it has a PsuedoType.
4652 ObjCPropertyRefExpr *PRE
4653 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens());
4654 if (PRE && !PRE->isImplicitProperty()) {
4655 const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
4656 if (PD)
4657 LHSType = PD->getType();
4658 }
4659
4660 if (LHSType.isNull())
4661 LHSType = LHS->getType();
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004662 if (checkUnsafeAssigns(Loc, LHSType, RHS))
4663 return;
4664 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
4665 // FIXME. Check for other life times.
4666 if (LT != Qualifiers::OCL_None)
4667 return;
4668
Fariborz Jahanian87eaf722012-01-17 22:58:16 +00004669 if (PRE) {
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004670 if (PRE->isImplicitProperty())
4671 return;
4672 const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
4673 if (!PD)
4674 return;
4675
4676 unsigned Attributes = PD->getPropertyAttributes();
Fariborz Jahanian87eaf722012-01-17 22:58:16 +00004677 if (Attributes & ObjCPropertyDecl::OBJC_PR_assign) {
4678 // when 'assign' attribute was not explicitly specified
4679 // by user, ignore it and rely on property type itself
4680 // for lifetime info.
4681 unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten();
4682 if (!(AsWrittenAttr & ObjCPropertyDecl::OBJC_PR_assign) &&
4683 LHSType->isObjCRetainableType())
4684 return;
4685
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004686 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall33e56f32011-09-10 06:18:15 +00004687 if (cast->getCastKind() == CK_ARCConsumeObject) {
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004688 Diag(Loc, diag::warn_arc_retained_property_assign)
4689 << RHS->getSourceRange();
4690 return;
4691 }
4692 RHS = cast->getSubExpr();
4693 }
Fariborz Jahanian87eaf722012-01-17 22:58:16 +00004694 }
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004695 }
4696}