blob: 90ad03755b813fbfdc447b2d097cae90780f8911 [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}
Chris Lattner08f92e32010-11-17 07:37:15 +000047
Chris Lattner60800082009-02-18 17:49:48 +000048
Ryan Flynn4403a5e2009-08-06 03:00:50 +000049/// CheckablePrintfAttr - does a function call have a "printf" attribute
50/// and arguments that merit checking?
51bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
52 if (Format->getType() == "printf") return true;
53 if (Format->getType() == "printf0") {
54 // printf0 allows null "format" string; if so don't check format/args
55 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +000056 // Does the index refer to the implicit object argument?
57 if (isa<CXXMemberCallExpr>(TheCall)) {
58 if (format_idx == 0)
59 return false;
60 --format_idx;
61 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +000062 if (format_idx < TheCall->getNumArgs()) {
63 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +000064 if (!Format->isNullPointerConstant(Context,
65 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +000066 return true;
67 }
68 }
69 return false;
70}
Chris Lattner60800082009-02-18 17:49:48 +000071
John McCall8e10f3b2011-02-26 05:39:39 +000072/// Checks that a call expression's argument count is the desired number.
73/// This is useful when doing custom type-checking. Returns true on error.
74static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
75 unsigned argCount = call->getNumArgs();
76 if (argCount == desiredArgCount) return false;
77
78 if (argCount < desiredArgCount)
79 return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
80 << 0 /*function call*/ << desiredArgCount << argCount
81 << call->getSourceRange();
82
83 // Highlight all the excess arguments.
84 SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
85 call->getArg(argCount - 1)->getLocEnd());
86
87 return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
88 << 0 /*function call*/ << desiredArgCount << argCount
89 << call->getArg(1)->getSourceRange();
90}
91
Julien Lerouge77f68bb2011-09-09 22:41:49 +000092/// CheckBuiltinAnnotationString - Checks that string argument to the builtin
93/// annotation is a non wide string literal.
94static bool CheckBuiltinAnnotationString(Sema &S, Expr *Arg) {
95 Arg = Arg->IgnoreParenCasts();
96 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
97 if (!Literal || !Literal->isAscii()) {
98 S.Diag(Arg->getLocStart(), diag::err_builtin_annotation_not_string_constant)
99 << Arg->getSourceRange();
100 return true;
101 }
102 return false;
103}
104
John McCall60d7b3a2010-08-24 06:29:42 +0000105ExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000106Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCall60d7b3a2010-08-24 06:29:42 +0000107 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000108
Chris Lattner946928f2010-10-01 23:23:24 +0000109 // Find out if any arguments are required to be integer constant expressions.
110 unsigned ICEArguments = 0;
111 ASTContext::GetBuiltinTypeError Error;
112 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
113 if (Error != ASTContext::GE_None)
114 ICEArguments = 0; // Don't diagnose previously diagnosed errors.
115
116 // If any arguments are required to be ICE's, check and diagnose.
117 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
118 // Skip arguments not required to be ICE's.
119 if ((ICEArguments & (1 << ArgNo)) == 0) continue;
120
121 llvm::APSInt Result;
122 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
123 return true;
124 ICEArguments &= ~(1 << ArgNo);
125 }
126
Anders Carlssond406bf02009-08-16 01:56:34 +0000127 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000128 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000129 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000130 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000131 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000132 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000133 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000134 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000135 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000136 if (SemaBuiltinVAStart(TheCall))
137 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000138 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000139 case Builtin::BI__builtin_isgreater:
140 case Builtin::BI__builtin_isgreaterequal:
141 case Builtin::BI__builtin_isless:
142 case Builtin::BI__builtin_islessequal:
143 case Builtin::BI__builtin_islessgreater:
144 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000145 if (SemaBuiltinUnorderedCompare(TheCall))
146 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000147 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000148 case Builtin::BI__builtin_fpclassify:
149 if (SemaBuiltinFPClassification(TheCall, 6))
150 return ExprError();
151 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000152 case Builtin::BI__builtin_isfinite:
153 case Builtin::BI__builtin_isinf:
154 case Builtin::BI__builtin_isinf_sign:
155 case Builtin::BI__builtin_isnan:
156 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000157 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000158 return ExprError();
159 break;
Eli Friedmand38617c2008-05-14 19:38:39 +0000160 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000161 return SemaBuiltinShuffleVector(TheCall);
162 // TheCall will be freed by the smart pointer here, but that's fine, since
163 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000164 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000165 if (SemaBuiltinPrefetch(TheCall))
166 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000167 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000168 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000169 if (SemaBuiltinObjectSize(TheCall))
170 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000171 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000172 case Builtin::BI__builtin_longjmp:
173 if (SemaBuiltinLongjmp(TheCall))
174 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000175 break;
John McCall8e10f3b2011-02-26 05:39:39 +0000176
177 case Builtin::BI__builtin_classify_type:
178 if (checkArgCount(*this, TheCall, 1)) return true;
179 TheCall->setType(Context.IntTy);
180 break;
Chris Lattner75c29a02010-10-12 17:47:42 +0000181 case Builtin::BI__builtin_constant_p:
John McCall8e10f3b2011-02-26 05:39:39 +0000182 if (checkArgCount(*this, TheCall, 1)) return true;
183 TheCall->setType(Context.IntTy);
Chris Lattner75c29a02010-10-12 17:47:42 +0000184 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000185 case Builtin::BI__sync_fetch_and_add:
Douglas Gregora9766412011-11-28 16:30:08 +0000186 case Builtin::BI__sync_fetch_and_add_1:
187 case Builtin::BI__sync_fetch_and_add_2:
188 case Builtin::BI__sync_fetch_and_add_4:
189 case Builtin::BI__sync_fetch_and_add_8:
190 case Builtin::BI__sync_fetch_and_add_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000191 case Builtin::BI__sync_fetch_and_sub:
Douglas Gregora9766412011-11-28 16:30:08 +0000192 case Builtin::BI__sync_fetch_and_sub_1:
193 case Builtin::BI__sync_fetch_and_sub_2:
194 case Builtin::BI__sync_fetch_and_sub_4:
195 case Builtin::BI__sync_fetch_and_sub_8:
196 case Builtin::BI__sync_fetch_and_sub_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000197 case Builtin::BI__sync_fetch_and_or:
Douglas Gregora9766412011-11-28 16:30:08 +0000198 case Builtin::BI__sync_fetch_and_or_1:
199 case Builtin::BI__sync_fetch_and_or_2:
200 case Builtin::BI__sync_fetch_and_or_4:
201 case Builtin::BI__sync_fetch_and_or_8:
202 case Builtin::BI__sync_fetch_and_or_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000203 case Builtin::BI__sync_fetch_and_and:
Douglas Gregora9766412011-11-28 16:30:08 +0000204 case Builtin::BI__sync_fetch_and_and_1:
205 case Builtin::BI__sync_fetch_and_and_2:
206 case Builtin::BI__sync_fetch_and_and_4:
207 case Builtin::BI__sync_fetch_and_and_8:
208 case Builtin::BI__sync_fetch_and_and_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000209 case Builtin::BI__sync_fetch_and_xor:
Douglas Gregora9766412011-11-28 16:30:08 +0000210 case Builtin::BI__sync_fetch_and_xor_1:
211 case Builtin::BI__sync_fetch_and_xor_2:
212 case Builtin::BI__sync_fetch_and_xor_4:
213 case Builtin::BI__sync_fetch_and_xor_8:
214 case Builtin::BI__sync_fetch_and_xor_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000215 case Builtin::BI__sync_add_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000216 case Builtin::BI__sync_add_and_fetch_1:
217 case Builtin::BI__sync_add_and_fetch_2:
218 case Builtin::BI__sync_add_and_fetch_4:
219 case Builtin::BI__sync_add_and_fetch_8:
220 case Builtin::BI__sync_add_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000221 case Builtin::BI__sync_sub_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000222 case Builtin::BI__sync_sub_and_fetch_1:
223 case Builtin::BI__sync_sub_and_fetch_2:
224 case Builtin::BI__sync_sub_and_fetch_4:
225 case Builtin::BI__sync_sub_and_fetch_8:
226 case Builtin::BI__sync_sub_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000227 case Builtin::BI__sync_and_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000228 case Builtin::BI__sync_and_and_fetch_1:
229 case Builtin::BI__sync_and_and_fetch_2:
230 case Builtin::BI__sync_and_and_fetch_4:
231 case Builtin::BI__sync_and_and_fetch_8:
232 case Builtin::BI__sync_and_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000233 case Builtin::BI__sync_or_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000234 case Builtin::BI__sync_or_and_fetch_1:
235 case Builtin::BI__sync_or_and_fetch_2:
236 case Builtin::BI__sync_or_and_fetch_4:
237 case Builtin::BI__sync_or_and_fetch_8:
238 case Builtin::BI__sync_or_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000239 case Builtin::BI__sync_xor_and_fetch:
Douglas Gregora9766412011-11-28 16:30:08 +0000240 case Builtin::BI__sync_xor_and_fetch_1:
241 case Builtin::BI__sync_xor_and_fetch_2:
242 case Builtin::BI__sync_xor_and_fetch_4:
243 case Builtin::BI__sync_xor_and_fetch_8:
244 case Builtin::BI__sync_xor_and_fetch_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000245 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000246 case Builtin::BI__sync_val_compare_and_swap_1:
247 case Builtin::BI__sync_val_compare_and_swap_2:
248 case Builtin::BI__sync_val_compare_and_swap_4:
249 case Builtin::BI__sync_val_compare_and_swap_8:
250 case Builtin::BI__sync_val_compare_and_swap_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000251 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000252 case Builtin::BI__sync_bool_compare_and_swap_1:
253 case Builtin::BI__sync_bool_compare_and_swap_2:
254 case Builtin::BI__sync_bool_compare_and_swap_4:
255 case Builtin::BI__sync_bool_compare_and_swap_8:
256 case Builtin::BI__sync_bool_compare_and_swap_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000257 case Builtin::BI__sync_lock_test_and_set:
Douglas Gregora9766412011-11-28 16:30:08 +0000258 case Builtin::BI__sync_lock_test_and_set_1:
259 case Builtin::BI__sync_lock_test_and_set_2:
260 case Builtin::BI__sync_lock_test_and_set_4:
261 case Builtin::BI__sync_lock_test_and_set_8:
262 case Builtin::BI__sync_lock_test_and_set_16:
Chris Lattner5caa3702009-05-08 06:58:22 +0000263 case Builtin::BI__sync_lock_release:
Douglas Gregora9766412011-11-28 16:30:08 +0000264 case Builtin::BI__sync_lock_release_1:
265 case Builtin::BI__sync_lock_release_2:
266 case Builtin::BI__sync_lock_release_4:
267 case Builtin::BI__sync_lock_release_8:
268 case Builtin::BI__sync_lock_release_16:
Chris Lattner23aa9c82011-04-09 03:57:26 +0000269 case Builtin::BI__sync_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000270 case Builtin::BI__sync_swap_1:
271 case Builtin::BI__sync_swap_2:
272 case Builtin::BI__sync_swap_4:
273 case Builtin::BI__sync_swap_8:
274 case Builtin::BI__sync_swap_16:
Chandler Carruthd2014572010-07-09 18:59:35 +0000275 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Eli Friedman276b0612011-10-11 02:20:01 +0000276 case Builtin::BI__atomic_load:
277 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Load);
278 case Builtin::BI__atomic_store:
279 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Store);
280 case Builtin::BI__atomic_exchange:
281 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xchg);
282 case Builtin::BI__atomic_compare_exchange_strong:
283 return SemaAtomicOpsOverloaded(move(TheCallResult),
284 AtomicExpr::CmpXchgStrong);
285 case Builtin::BI__atomic_compare_exchange_weak:
286 return SemaAtomicOpsOverloaded(move(TheCallResult),
287 AtomicExpr::CmpXchgWeak);
288 case Builtin::BI__atomic_fetch_add:
289 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Add);
290 case Builtin::BI__atomic_fetch_sub:
291 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Sub);
292 case Builtin::BI__atomic_fetch_and:
293 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::And);
294 case Builtin::BI__atomic_fetch_or:
295 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Or);
296 case Builtin::BI__atomic_fetch_xor:
297 return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xor);
Julien Lerouge77f68bb2011-09-09 22:41:49 +0000298 case Builtin::BI__builtin_annotation:
299 if (CheckBuiltinAnnotationString(*this, TheCall->getArg(1)))
300 return ExprError();
301 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000302 }
303
304 // Since the target specific builtins for each arch overlap, only check those
305 // of the arch we are compiling for.
306 if (BuiltinID >= Builtin::FirstTSBuiltin) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000307 switch (Context.getTargetInfo().getTriple().getArch()) {
Nate Begeman26a31422010-06-08 02:47:44 +0000308 case llvm::Triple::arm:
309 case llvm::Triple::thumb:
310 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
311 return ExprError();
312 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000313 default:
314 break;
315 }
316 }
317
318 return move(TheCallResult);
319}
320
Nate Begeman61eecf52010-06-14 05:21:25 +0000321// Get the valid immediate range for the specified NEON type code.
322static unsigned RFT(unsigned t, bool shift = false) {
Bob Wilsonda95f732011-11-08 01:16:11 +0000323 NeonTypeFlags Type(t);
324 int IsQuad = Type.isQuad();
325 switch (Type.getEltType()) {
326 case NeonTypeFlags::Int8:
327 case NeonTypeFlags::Poly8:
328 return shift ? 7 : (8 << IsQuad) - 1;
329 case NeonTypeFlags::Int16:
330 case NeonTypeFlags::Poly16:
331 return shift ? 15 : (4 << IsQuad) - 1;
332 case NeonTypeFlags::Int32:
333 return shift ? 31 : (2 << IsQuad) - 1;
334 case NeonTypeFlags::Int64:
335 return shift ? 63 : (1 << IsQuad) - 1;
336 case NeonTypeFlags::Float16:
337 assert(!shift && "cannot shift float types!");
338 return (4 << IsQuad) - 1;
339 case NeonTypeFlags::Float32:
340 assert(!shift && "cannot shift float types!");
341 return (2 << IsQuad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000342 }
343 return 0;
344}
345
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000346/// getNeonEltType - Return the QualType corresponding to the elements of
347/// the vector type specified by the NeonTypeFlags. This is used to check
348/// the pointer arguments for Neon load/store intrinsics.
349static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context) {
350 switch (Flags.getEltType()) {
351 case NeonTypeFlags::Int8:
352 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
353 case NeonTypeFlags::Int16:
354 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
355 case NeonTypeFlags::Int32:
356 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
357 case NeonTypeFlags::Int64:
358 return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
359 case NeonTypeFlags::Poly8:
360 return Context.SignedCharTy;
361 case NeonTypeFlags::Poly16:
362 return Context.ShortTy;
363 case NeonTypeFlags::Float16:
364 return Context.UnsignedShortTy;
365 case NeonTypeFlags::Float32:
366 return Context.FloatTy;
367 }
368 return QualType();
369}
370
Nate Begeman26a31422010-06-08 02:47:44 +0000371bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000372 llvm::APSInt Result;
373
Nate Begeman0d15c532010-06-13 04:47:52 +0000374 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000375 unsigned TV = 0;
Bob Wilson46482552011-11-16 21:32:23 +0000376 int PtrArgNum = -1;
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000377 bool HasConstPtr = false;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000378 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000379#define GET_NEON_OVERLOAD_CHECK
380#include "clang/Basic/arm_neon.inc"
381#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000382 }
383
Nate Begeman0d15c532010-06-13 04:47:52 +0000384 // For NEON intrinsics which are overloaded on vector element type, validate
385 // the immediate which specifies which variant to emit.
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000386 unsigned ImmArg = TheCall->getNumArgs()-1;
Nate Begeman0d15c532010-06-13 04:47:52 +0000387 if (mask) {
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000388 if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
Nate Begeman0d15c532010-06-13 04:47:52 +0000389 return true;
390
Bob Wilsonda95f732011-11-08 01:16:11 +0000391 TV = Result.getLimitedValue(64);
392 if ((TV > 63) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000393 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000394 << TheCall->getArg(ImmArg)->getSourceRange();
395 }
396
Bob Wilson46482552011-11-16 21:32:23 +0000397 if (PtrArgNum >= 0) {
Bob Wilson6f9f03e2011-11-08 05:04:11 +0000398 // Check that pointer arguments have the specified type.
Bob Wilson46482552011-11-16 21:32:23 +0000399 Expr *Arg = TheCall->getArg(PtrArgNum);
400 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
401 Arg = ICE->getSubExpr();
402 ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
403 QualType RHSTy = RHS.get()->getType();
404 QualType EltTy = getNeonEltType(NeonTypeFlags(TV), Context);
405 if (HasConstPtr)
406 EltTy = EltTy.withConst();
407 QualType LHSTy = Context.getPointerType(EltTy);
408 AssignConvertType ConvTy;
409 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
410 if (RHS.isInvalid())
411 return true;
412 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
413 RHS.get(), AA_Assigning))
414 return true;
Nate Begeman0d15c532010-06-13 04:47:52 +0000415 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000416
Nate Begeman0d15c532010-06-13 04:47:52 +0000417 // For NEON intrinsics which take an immediate value as part of the
418 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000419 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000420 switch (BuiltinID) {
421 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000422 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
423 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000424 case ARM::BI__builtin_arm_vcvtr_f:
425 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000426#define GET_NEON_IMMEDIATE_CHECK
427#include "clang/Basic/arm_neon.inc"
428#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000429 };
430
Nate Begeman61eecf52010-06-14 05:21:25 +0000431 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000432 if (SemaBuiltinConstantArg(TheCall, i, Result))
433 return true;
434
Nate Begeman61eecf52010-06-14 05:21:25 +0000435 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000436 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000437 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000438 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000439 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000440
Nate Begeman99c40bb2010-08-03 21:32:34 +0000441 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000442 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000443}
Daniel Dunbarde454282008-10-02 18:44:07 +0000444
Anders Carlssond406bf02009-08-16 01:56:34 +0000445/// CheckFunctionCall - Check a direct function call for various correctness
446/// and safety properties not strictly enforced by the C type system.
447bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
448 // Get the IdentifierInfo* for the called function.
449 IdentifierInfo *FnInfo = FDecl->getIdentifier();
450
451 // None of the checks below are needed for functions that don't have
452 // simple names (e.g., C++ conversion functions).
453 if (!FnInfo)
454 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Daniel Dunbarde454282008-10-02 18:44:07 +0000456 // FIXME: This mechanism should be abstracted to be less fragile and
457 // more efficient. For example, just map function ids to custom
458 // handlers.
459
Ted Kremenekc82faca2010-09-09 04:33:05 +0000460 // Printf and scanf checking.
461 for (specific_attr_iterator<FormatAttr>
462 i = FDecl->specific_attr_begin<FormatAttr>(),
463 e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
464
465 const FormatAttr *Format = *i;
Ted Kremenek826a3452010-07-16 02:11:22 +0000466 const bool b = Format->getType() == "scanf";
467 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000468 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000469 CheckPrintfScanfArguments(TheCall, HasVAListArg,
470 Format->getFormatIdx() - 1,
471 HasVAListArg ? 0 : Format->getFirstArg() - 1,
472 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000473 }
Chris Lattner59907c42007-08-10 20:18:51 +0000474 }
Mike Stump1eb44332009-09-09 15:08:12 +0000475
Ted Kremenekc82faca2010-09-09 04:33:05 +0000476 for (specific_attr_iterator<NonNullAttr>
477 i = FDecl->specific_attr_begin<NonNullAttr>(),
478 e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
Nick Lewycky909a70d2011-03-25 01:44:32 +0000479 CheckNonNullArguments(*i, TheCall->getArgs(),
480 TheCall->getCallee()->getLocStart());
Ted Kremenekc82faca2010-09-09 04:33:05 +0000481 }
Sebastian Redl0eb23302009-01-19 00:08:26 +0000482
Anna Zaksd9b859a2012-01-13 21:52:01 +0000483 FunctionDecl::MemoryFunctionKind CMF = FDecl->getMemoryFunctionKind();
484 if (CMF == FunctionDecl::MFK_Invalid)
485 return false;
Ted Kremenekbd5da9d2011-08-18 20:55:45 +0000486
Anna Zaksd9b859a2012-01-13 21:52:01 +0000487 // Handle memory setting and copying functions.
488 if (CMF == FunctionDecl::MFK_Strlcpy || CMF == FunctionDecl::MFK_Strlcat)
Ted Kremenekbd5da9d2011-08-18 20:55:45 +0000489 CheckStrlcpycatArguments(TheCall, FnInfo);
Anna Zaksd9b859a2012-01-13 21:52:01 +0000490 else
491 CheckMemaccessArguments(TheCall, CMF, FnInfo);
Chandler Carruth7ccc95b2011-04-27 07:05:31 +0000492
Anders Carlssond406bf02009-08-16 01:56:34 +0000493 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000494}
495
Anders Carlssond406bf02009-08-16 01:56:34 +0000496bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000497 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000498 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000499 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000500 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000502 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
503 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000504 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000505
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000506 QualType Ty = V->getType();
507 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000508 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000509
Ted Kremenek826a3452010-07-16 02:11:22 +0000510 const bool b = Format->getType() == "scanf";
511 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000512 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Anders Carlssond406bf02009-08-16 01:56:34 +0000514 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000515 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
516 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000517
518 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000519}
520
Eli Friedman276b0612011-10-11 02:20:01 +0000521ExprResult
522Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, AtomicExpr::AtomicOp Op) {
523 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
524 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
Eli Friedman276b0612011-10-11 02:20:01 +0000525
526 // All these operations take one of the following four forms:
527 // T __atomic_load(_Atomic(T)*, int) (loads)
528 // T* __atomic_add(_Atomic(T*)*, ptrdiff_t, int) (pointer add/sub)
529 // int __atomic_compare_exchange_strong(_Atomic(T)*, T*, T, int, int)
530 // (cmpxchg)
531 // T __atomic_exchange(_Atomic(T)*, T, int) (everything else)
532 // where T is an appropriate type, and the int paremeterss are for orderings.
533 unsigned NumVals = 1;
534 unsigned NumOrders = 1;
535 if (Op == AtomicExpr::Load) {
536 NumVals = 0;
537 } else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong) {
538 NumVals = 2;
539 NumOrders = 2;
540 }
541
542 if (TheCall->getNumArgs() < NumVals+NumOrders+1) {
543 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
544 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
545 << TheCall->getCallee()->getSourceRange();
546 return ExprError();
547 } else if (TheCall->getNumArgs() > NumVals+NumOrders+1) {
548 Diag(TheCall->getArg(NumVals+NumOrders+1)->getLocStart(),
549 diag::err_typecheck_call_too_many_args)
550 << 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
551 << TheCall->getCallee()->getSourceRange();
552 return ExprError();
553 }
554
555 // Inspect the first argument of the atomic operation. This should always be
556 // a pointer to an _Atomic type.
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000557 Expr *Ptr = TheCall->getArg(0);
Eli Friedman276b0612011-10-11 02:20:01 +0000558 Ptr = DefaultFunctionArrayLvalueConversion(Ptr).get();
559 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
560 if (!pointerType) {
561 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
562 << Ptr->getType() << Ptr->getSourceRange();
563 return ExprError();
564 }
565
566 QualType AtomTy = pointerType->getPointeeType();
567 if (!AtomTy->isAtomicType()) {
568 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
569 << Ptr->getType() << Ptr->getSourceRange();
570 return ExprError();
571 }
572 QualType ValType = AtomTy->getAs<AtomicType>()->getValueType();
573
574 if ((Op == AtomicExpr::Add || Op == AtomicExpr::Sub) &&
575 !ValType->isIntegerType() && !ValType->isPointerType()) {
576 Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic_int_or_ptr)
577 << Ptr->getType() << Ptr->getSourceRange();
578 return ExprError();
579 }
580
581 if (!ValType->isIntegerType() &&
582 (Op == AtomicExpr::And || Op == AtomicExpr::Or || Op == AtomicExpr::Xor)){
583 Diag(DRE->getLocStart(), diag::err_atomic_op_logical_needs_atomic_int)
584 << Ptr->getType() << Ptr->getSourceRange();
585 return ExprError();
586 }
587
588 switch (ValType.getObjCLifetime()) {
589 case Qualifiers::OCL_None:
590 case Qualifiers::OCL_ExplicitNone:
591 // okay
592 break;
593
594 case Qualifiers::OCL_Weak:
595 case Qualifiers::OCL_Strong:
596 case Qualifiers::OCL_Autoreleasing:
597 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
598 << ValType << Ptr->getSourceRange();
599 return ExprError();
600 }
601
602 QualType ResultType = ValType;
603 if (Op == AtomicExpr::Store)
604 ResultType = Context.VoidTy;
605 else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong)
606 ResultType = Context.BoolTy;
607
608 // The first argument --- the pointer --- has a fixed type; we
609 // deduce the types of the rest of the arguments accordingly. Walk
610 // the remaining arguments, converting them to the deduced value type.
611 for (unsigned i = 1; i != NumVals+NumOrders+1; ++i) {
612 ExprResult Arg = TheCall->getArg(i);
613 QualType Ty;
614 if (i < NumVals+1) {
615 // The second argument to a cmpxchg is a pointer to the data which will
616 // be exchanged. The second argument to a pointer add/subtract is the
617 // amount to add/subtract, which must be a ptrdiff_t. The third
618 // argument to a cmpxchg and the second argument in all other cases
619 // is the type of the value.
620 if (i == 1 && (Op == AtomicExpr::CmpXchgWeak ||
621 Op == AtomicExpr::CmpXchgStrong))
622 Ty = Context.getPointerType(ValType.getUnqualifiedType());
623 else if (!ValType->isIntegerType() &&
624 (Op == AtomicExpr::Add || Op == AtomicExpr::Sub))
625 Ty = Context.getPointerDiffType();
626 else
627 Ty = ValType;
628 } else {
629 // The order(s) are always converted to int.
630 Ty = Context.IntTy;
631 }
632 InitializedEntity Entity =
633 InitializedEntity::InitializeParameter(Context, Ty, false);
634 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
635 if (Arg.isInvalid())
636 return true;
637 TheCall->setArg(i, Arg.get());
638 }
639
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000640 SmallVector<Expr*, 5> SubExprs;
641 SubExprs.push_back(Ptr);
Eli Friedman276b0612011-10-11 02:20:01 +0000642 if (Op == AtomicExpr::Load) {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000643 SubExprs.push_back(TheCall->getArg(1)); // Order
Eli Friedman276b0612011-10-11 02:20:01 +0000644 } else if (Op != AtomicExpr::CmpXchgWeak && Op != AtomicExpr::CmpXchgStrong) {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000645 SubExprs.push_back(TheCall->getArg(2)); // Order
646 SubExprs.push_back(TheCall->getArg(1)); // Val1
Eli Friedman276b0612011-10-11 02:20:01 +0000647 } else {
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000648 SubExprs.push_back(TheCall->getArg(3)); // Order
649 SubExprs.push_back(TheCall->getArg(1)); // Val1
650 SubExprs.push_back(TheCall->getArg(2)); // Val2
651 SubExprs.push_back(TheCall->getArg(4)); // OrderFail
Eli Friedman276b0612011-10-11 02:20:01 +0000652 }
Eli Friedmandfa64ba2011-10-14 22:48:56 +0000653
654 return Owned(new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(),
655 SubExprs.data(), SubExprs.size(),
656 ResultType, Op,
657 TheCall->getRParenLoc()));
Eli Friedman276b0612011-10-11 02:20:01 +0000658}
659
660
John McCall5f8d6042011-08-27 01:09:30 +0000661/// checkBuiltinArgument - Given a call to a builtin function, perform
662/// normal type-checking on the given argument, updating the call in
663/// place. This is useful when a builtin function requires custom
664/// type-checking for some of its arguments but not necessarily all of
665/// them.
666///
667/// Returns true on error.
668static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
669 FunctionDecl *Fn = E->getDirectCallee();
670 assert(Fn && "builtin call without direct callee!");
671
672 ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
673 InitializedEntity Entity =
674 InitializedEntity::InitializeParameter(S.Context, Param);
675
676 ExprResult Arg = E->getArg(0);
677 Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
678 if (Arg.isInvalid())
679 return true;
680
681 E->setArg(ArgIndex, Arg.take());
682 return false;
683}
684
Chris Lattner5caa3702009-05-08 06:58:22 +0000685/// SemaBuiltinAtomicOverloaded - We have a call to a function like
686/// __sync_fetch_and_add, which is an overloaded function based on the pointer
687/// type of its first argument. The main ActOnCallExpr routines have already
688/// promoted the types of arguments because all of these calls are prototyped as
689/// void(...).
690///
691/// This function goes through and does final semantic checking for these
692/// builtins,
John McCall60d7b3a2010-08-24 06:29:42 +0000693ExprResult
694Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000695 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000696 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
697 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
698
699 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000700 if (TheCall->getNumArgs() < 1) {
701 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
702 << 0 << 1 << TheCall->getNumArgs()
703 << TheCall->getCallee()->getSourceRange();
704 return ExprError();
705 }
Mike Stump1eb44332009-09-09 15:08:12 +0000706
Chris Lattner5caa3702009-05-08 06:58:22 +0000707 // Inspect the first argument of the atomic builtin. This should always be
708 // a pointer type, whose element is an integral scalar or pointer type.
709 // Because it is a pointer type, we don't have to worry about any implicit
710 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000711 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000712 Expr *FirstArg = TheCall->getArg(0);
John McCallf85e1932011-06-15 23:02:42 +0000713 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
714 if (!pointerType) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000715 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
716 << FirstArg->getType() << FirstArg->getSourceRange();
717 return ExprError();
718 }
Mike Stump1eb44332009-09-09 15:08:12 +0000719
John McCallf85e1932011-06-15 23:02:42 +0000720 QualType ValType = pointerType->getPointeeType();
Chris Lattnerdd5fa7a2010-09-17 21:12:38 +0000721 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000722 !ValType->isBlockPointerType()) {
723 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
724 << FirstArg->getType() << FirstArg->getSourceRange();
725 return ExprError();
726 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000727
John McCallf85e1932011-06-15 23:02:42 +0000728 switch (ValType.getObjCLifetime()) {
729 case Qualifiers::OCL_None:
730 case Qualifiers::OCL_ExplicitNone:
731 // okay
732 break;
733
734 case Qualifiers::OCL_Weak:
735 case Qualifiers::OCL_Strong:
736 case Qualifiers::OCL_Autoreleasing:
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +0000737 Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
John McCallf85e1932011-06-15 23:02:42 +0000738 << ValType << FirstArg->getSourceRange();
739 return ExprError();
740 }
741
John McCallb45ae252011-10-05 07:41:44 +0000742 // Strip any qualifiers off ValType.
743 ValType = ValType.getUnqualifiedType();
744
Chandler Carruth8d13d222010-07-18 20:54:12 +0000745 // The majority of builtins return a value, but a few have special return
746 // types, so allow them to override appropriately below.
747 QualType ResultType = ValType;
748
Chris Lattner5caa3702009-05-08 06:58:22 +0000749 // We need to figure out which concrete builtin this maps onto. For example,
750 // __sync_fetch_and_add with a 2 byte object turns into
751 // __sync_fetch_and_add_2.
752#define BUILTIN_ROW(x) \
753 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
754 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Chris Lattner5caa3702009-05-08 06:58:22 +0000756 static const unsigned BuiltinIndices[][5] = {
757 BUILTIN_ROW(__sync_fetch_and_add),
758 BUILTIN_ROW(__sync_fetch_and_sub),
759 BUILTIN_ROW(__sync_fetch_and_or),
760 BUILTIN_ROW(__sync_fetch_and_and),
761 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000762
Chris Lattner5caa3702009-05-08 06:58:22 +0000763 BUILTIN_ROW(__sync_add_and_fetch),
764 BUILTIN_ROW(__sync_sub_and_fetch),
765 BUILTIN_ROW(__sync_and_and_fetch),
766 BUILTIN_ROW(__sync_or_and_fetch),
767 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000768
Chris Lattner5caa3702009-05-08 06:58:22 +0000769 BUILTIN_ROW(__sync_val_compare_and_swap),
770 BUILTIN_ROW(__sync_bool_compare_and_swap),
771 BUILTIN_ROW(__sync_lock_test_and_set),
Chris Lattner23aa9c82011-04-09 03:57:26 +0000772 BUILTIN_ROW(__sync_lock_release),
773 BUILTIN_ROW(__sync_swap)
Chris Lattner5caa3702009-05-08 06:58:22 +0000774 };
Mike Stump1eb44332009-09-09 15:08:12 +0000775#undef BUILTIN_ROW
776
Chris Lattner5caa3702009-05-08 06:58:22 +0000777 // Determine the index of the size.
778 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000779 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000780 case 1: SizeIndex = 0; break;
781 case 2: SizeIndex = 1; break;
782 case 4: SizeIndex = 2; break;
783 case 8: SizeIndex = 3; break;
784 case 16: SizeIndex = 4; break;
785 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000786 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
787 << FirstArg->getType() << FirstArg->getSourceRange();
788 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000789 }
Mike Stump1eb44332009-09-09 15:08:12 +0000790
Chris Lattner5caa3702009-05-08 06:58:22 +0000791 // Each of these builtins has one pointer argument, followed by some number of
792 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
793 // that we ignore. Find out which row of BuiltinIndices to read from as well
794 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000795 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000796 unsigned BuiltinIndex, NumFixed = 1;
797 switch (BuiltinID) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000798 default: llvm_unreachable("Unknown overloaded atomic builtin!");
Douglas Gregora9766412011-11-28 16:30:08 +0000799 case Builtin::BI__sync_fetch_and_add:
800 case Builtin::BI__sync_fetch_and_add_1:
801 case Builtin::BI__sync_fetch_and_add_2:
802 case Builtin::BI__sync_fetch_and_add_4:
803 case Builtin::BI__sync_fetch_and_add_8:
804 case Builtin::BI__sync_fetch_and_add_16:
805 BuiltinIndex = 0;
806 break;
807
808 case Builtin::BI__sync_fetch_and_sub:
809 case Builtin::BI__sync_fetch_and_sub_1:
810 case Builtin::BI__sync_fetch_and_sub_2:
811 case Builtin::BI__sync_fetch_and_sub_4:
812 case Builtin::BI__sync_fetch_and_sub_8:
813 case Builtin::BI__sync_fetch_and_sub_16:
814 BuiltinIndex = 1;
815 break;
816
817 case Builtin::BI__sync_fetch_and_or:
818 case Builtin::BI__sync_fetch_and_or_1:
819 case Builtin::BI__sync_fetch_and_or_2:
820 case Builtin::BI__sync_fetch_and_or_4:
821 case Builtin::BI__sync_fetch_and_or_8:
822 case Builtin::BI__sync_fetch_and_or_16:
823 BuiltinIndex = 2;
824 break;
825
826 case Builtin::BI__sync_fetch_and_and:
827 case Builtin::BI__sync_fetch_and_and_1:
828 case Builtin::BI__sync_fetch_and_and_2:
829 case Builtin::BI__sync_fetch_and_and_4:
830 case Builtin::BI__sync_fetch_and_and_8:
831 case Builtin::BI__sync_fetch_and_and_16:
832 BuiltinIndex = 3;
833 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Douglas Gregora9766412011-11-28 16:30:08 +0000835 case Builtin::BI__sync_fetch_and_xor:
836 case Builtin::BI__sync_fetch_and_xor_1:
837 case Builtin::BI__sync_fetch_and_xor_2:
838 case Builtin::BI__sync_fetch_and_xor_4:
839 case Builtin::BI__sync_fetch_and_xor_8:
840 case Builtin::BI__sync_fetch_and_xor_16:
841 BuiltinIndex = 4;
842 break;
843
844 case Builtin::BI__sync_add_and_fetch:
845 case Builtin::BI__sync_add_and_fetch_1:
846 case Builtin::BI__sync_add_and_fetch_2:
847 case Builtin::BI__sync_add_and_fetch_4:
848 case Builtin::BI__sync_add_and_fetch_8:
849 case Builtin::BI__sync_add_and_fetch_16:
850 BuiltinIndex = 5;
851 break;
852
853 case Builtin::BI__sync_sub_and_fetch:
854 case Builtin::BI__sync_sub_and_fetch_1:
855 case Builtin::BI__sync_sub_and_fetch_2:
856 case Builtin::BI__sync_sub_and_fetch_4:
857 case Builtin::BI__sync_sub_and_fetch_8:
858 case Builtin::BI__sync_sub_and_fetch_16:
859 BuiltinIndex = 6;
860 break;
861
862 case Builtin::BI__sync_and_and_fetch:
863 case Builtin::BI__sync_and_and_fetch_1:
864 case Builtin::BI__sync_and_and_fetch_2:
865 case Builtin::BI__sync_and_and_fetch_4:
866 case Builtin::BI__sync_and_and_fetch_8:
867 case Builtin::BI__sync_and_and_fetch_16:
868 BuiltinIndex = 7;
869 break;
870
871 case Builtin::BI__sync_or_and_fetch:
872 case Builtin::BI__sync_or_and_fetch_1:
873 case Builtin::BI__sync_or_and_fetch_2:
874 case Builtin::BI__sync_or_and_fetch_4:
875 case Builtin::BI__sync_or_and_fetch_8:
876 case Builtin::BI__sync_or_and_fetch_16:
877 BuiltinIndex = 8;
878 break;
879
880 case Builtin::BI__sync_xor_and_fetch:
881 case Builtin::BI__sync_xor_and_fetch_1:
882 case Builtin::BI__sync_xor_and_fetch_2:
883 case Builtin::BI__sync_xor_and_fetch_4:
884 case Builtin::BI__sync_xor_and_fetch_8:
885 case Builtin::BI__sync_xor_and_fetch_16:
886 BuiltinIndex = 9;
887 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000888
Chris Lattner5caa3702009-05-08 06:58:22 +0000889 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000890 case Builtin::BI__sync_val_compare_and_swap_1:
891 case Builtin::BI__sync_val_compare_and_swap_2:
892 case Builtin::BI__sync_val_compare_and_swap_4:
893 case Builtin::BI__sync_val_compare_and_swap_8:
894 case Builtin::BI__sync_val_compare_and_swap_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000895 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000896 NumFixed = 2;
897 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000898
Chris Lattner5caa3702009-05-08 06:58:22 +0000899 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregora9766412011-11-28 16:30:08 +0000900 case Builtin::BI__sync_bool_compare_and_swap_1:
901 case Builtin::BI__sync_bool_compare_and_swap_2:
902 case Builtin::BI__sync_bool_compare_and_swap_4:
903 case Builtin::BI__sync_bool_compare_and_swap_8:
904 case Builtin::BI__sync_bool_compare_and_swap_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000905 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000906 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000907 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000908 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000909
910 case Builtin::BI__sync_lock_test_and_set:
911 case Builtin::BI__sync_lock_test_and_set_1:
912 case Builtin::BI__sync_lock_test_and_set_2:
913 case Builtin::BI__sync_lock_test_and_set_4:
914 case Builtin::BI__sync_lock_test_and_set_8:
915 case Builtin::BI__sync_lock_test_and_set_16:
916 BuiltinIndex = 12;
917 break;
918
Chris Lattner5caa3702009-05-08 06:58:22 +0000919 case Builtin::BI__sync_lock_release:
Douglas Gregora9766412011-11-28 16:30:08 +0000920 case Builtin::BI__sync_lock_release_1:
921 case Builtin::BI__sync_lock_release_2:
922 case Builtin::BI__sync_lock_release_4:
923 case Builtin::BI__sync_lock_release_8:
924 case Builtin::BI__sync_lock_release_16:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000925 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000926 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000927 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000928 break;
Douglas Gregora9766412011-11-28 16:30:08 +0000929
930 case Builtin::BI__sync_swap:
931 case Builtin::BI__sync_swap_1:
932 case Builtin::BI__sync_swap_2:
933 case Builtin::BI__sync_swap_4:
934 case Builtin::BI__sync_swap_8:
935 case Builtin::BI__sync_swap_16:
936 BuiltinIndex = 14;
937 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000938 }
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Chris Lattner5caa3702009-05-08 06:58:22 +0000940 // Now that we know how many fixed arguments we expect, first check that we
941 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000942 if (TheCall->getNumArgs() < 1+NumFixed) {
943 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
944 << 0 << 1+NumFixed << TheCall->getNumArgs()
945 << TheCall->getCallee()->getSourceRange();
946 return ExprError();
947 }
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000949 // Get the decl for the concrete builtin from this, we can tell what the
950 // concrete integer type we should convert to is.
951 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
952 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
953 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000954 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000955 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
956 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000957
John McCallf871d0c2010-08-07 06:22:56 +0000958 // The first argument --- the pointer --- has a fixed type; we
959 // deduce the types of the rest of the arguments accordingly. Walk
960 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000961 for (unsigned i = 0; i != NumFixed; ++i) {
John Wiegley429bb272011-04-08 18:41:53 +0000962 ExprResult Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000963
Chris Lattner5caa3702009-05-08 06:58:22 +0000964 // GCC does an implicit conversion to the pointer or integer ValType. This
965 // can fail in some cases (1i -> int**), check for this error case now.
John McCallb45ae252011-10-05 07:41:44 +0000966 // Initialize the argument.
967 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
968 ValType, /*consume*/ false);
969 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
John Wiegley429bb272011-04-08 18:41:53 +0000970 if (Arg.isInvalid())
Chandler Carruthd2014572010-07-09 18:59:35 +0000971 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Chris Lattner5caa3702009-05-08 06:58:22 +0000973 // Okay, we have something that *can* be converted to the right type. Check
974 // to see if there is a potentially weird extension going on here. This can
975 // happen when you do an atomic operation on something like an char* and
976 // pass in 42. The 42 gets converted to char. This is even more strange
977 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000978 // FIXME: Do this check.
John McCallb45ae252011-10-05 07:41:44 +0000979 TheCall->setArg(i+1, Arg.take());
Chris Lattner5caa3702009-05-08 06:58:22 +0000980 }
Mike Stump1eb44332009-09-09 15:08:12 +0000981
Douglas Gregorbbcb7ea2011-09-09 16:51:10 +0000982 ASTContext& Context = this->getASTContext();
983
984 // Create a new DeclRefExpr to refer to the new decl.
985 DeclRefExpr* NewDRE = DeclRefExpr::Create(
986 Context,
987 DRE->getQualifierLoc(),
988 NewBuiltinDecl,
989 DRE->getLocation(),
990 NewBuiltinDecl->getType(),
991 DRE->getValueKind());
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Chris Lattner5caa3702009-05-08 06:58:22 +0000993 // Set the callee in the CallExpr.
994 // FIXME: This leaks the original parens and implicit casts.
Douglas Gregorbbcb7ea2011-09-09 16:51:10 +0000995 ExprResult PromotedCall = UsualUnaryConversions(NewDRE);
John Wiegley429bb272011-04-08 18:41:53 +0000996 if (PromotedCall.isInvalid())
997 return ExprError();
998 TheCall->setCallee(PromotedCall.take());
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Chandler Carruthdb4325b2010-07-18 07:23:17 +00001000 // Change the result type of the call to match the original value type. This
1001 // is arbitrary, but the codegen for these builtins ins design to handle it
1002 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +00001003 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +00001004
1005 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +00001006}
1007
Chris Lattner69039812009-02-18 06:01:06 +00001008/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +00001009/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +00001010/// Note: It might also make sense to do the UTF-16 conversion here (would
1011/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +00001012bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +00001013 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +00001014 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
1015
Douglas Gregor5cee1192011-07-27 05:40:30 +00001016 if (!Literal || !Literal->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001017 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
1018 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +00001019 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +00001020 }
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001022 if (Literal->containsNonAsciiOrNull()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001023 StringRef String = Literal->getString();
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001024 unsigned NumBytes = String.size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001025 SmallVector<UTF16, 128> ToBuf(NumBytes);
Fariborz Jahanian7da71022010-09-07 19:38:13 +00001026 const UTF8 *FromPtr = (UTF8 *)String.data();
1027 UTF16 *ToPtr = &ToBuf[0];
1028
1029 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
1030 &ToPtr, ToPtr + NumBytes,
1031 strictConversion);
1032 // Check for conversion failure.
1033 if (Result != conversionOK)
1034 Diag(Arg->getLocStart(),
1035 diag::warn_cfstring_truncated) << Arg->getSourceRange();
1036 }
Anders Carlsson9cdc4d32007-08-17 15:44:17 +00001037 return false;
Chris Lattner59907c42007-08-10 20:18:51 +00001038}
1039
Chris Lattnerc27c6652007-12-20 00:05:45 +00001040/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
1041/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +00001042bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
1043 Expr *Fn = TheCall->getCallee();
1044 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +00001045 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001046 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001047 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
1048 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +00001049 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001050 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +00001051 return true;
1052 }
Eli Friedman56f20ae2008-12-15 22:05:35 +00001053
1054 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +00001055 return Diag(TheCall->getLocEnd(),
1056 diag::err_typecheck_call_too_few_args_at_least)
1057 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +00001058 }
1059
John McCall5f8d6042011-08-27 01:09:30 +00001060 // Type-check the first argument normally.
1061 if (checkBuiltinArgument(*this, TheCall, 0))
1062 return true;
1063
Chris Lattnerc27c6652007-12-20 00:05:45 +00001064 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00001065 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +00001066 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +00001067 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +00001068 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +00001069 else if (FunctionDecl *FD = getCurFunctionDecl())
1070 isVariadic = FD->isVariadic();
1071 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001072 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Chris Lattnerc27c6652007-12-20 00:05:45 +00001074 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +00001075 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
1076 return true;
1077 }
Mike Stump1eb44332009-09-09 15:08:12 +00001078
Chris Lattner30ce3442007-12-19 23:59:04 +00001079 // Verify that the second argument to the builtin is the last argument of the
1080 // current function or method.
1081 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +00001082 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001083
Anders Carlsson88cf2262008-02-11 04:20:54 +00001084 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
1085 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +00001086 // FIXME: This isn't correct for methods (results in bogus warning).
1087 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +00001088 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +00001089 if (CurBlock)
1090 LastArg = *(CurBlock->TheDecl->param_end()-1);
1091 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +00001092 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +00001093 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001094 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +00001095 SecondArgIsLastNamedArgument = PV == LastArg;
1096 }
1097 }
Mike Stump1eb44332009-09-09 15:08:12 +00001098
Chris Lattner30ce3442007-12-19 23:59:04 +00001099 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +00001100 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +00001101 diag::warn_second_parameter_of_va_start_not_last_named_argument);
1102 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +00001103}
Chris Lattner30ce3442007-12-19 23:59:04 +00001104
Chris Lattner1b9a0792007-12-20 00:26:33 +00001105/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
1106/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +00001107bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
1108 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +00001109 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +00001110 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +00001111 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +00001112 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001113 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001114 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001115 << SourceRange(TheCall->getArg(2)->getLocStart(),
1116 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00001117
John Wiegley429bb272011-04-08 18:41:53 +00001118 ExprResult OrigArg0 = TheCall->getArg(0);
1119 ExprResult OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +00001120
Chris Lattner1b9a0792007-12-20 00:26:33 +00001121 // Do standard promotions between the two arguments, returning their common
1122 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +00001123 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
John Wiegley429bb272011-04-08 18:41:53 +00001124 if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
1125 return true;
Daniel Dunbar403bc2b2009-02-19 19:28:43 +00001126
1127 // Make sure any conversions are pushed back into the call; this is
1128 // type safe since unordered compare builtins are declared as "_Bool
1129 // foo(...)".
John Wiegley429bb272011-04-08 18:41:53 +00001130 TheCall->setArg(0, OrigArg0.get());
1131 TheCall->setArg(1, OrigArg1.get());
Mike Stump1eb44332009-09-09 15:08:12 +00001132
John Wiegley429bb272011-04-08 18:41:53 +00001133 if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
Douglas Gregorcde01732009-05-19 22:10:17 +00001134 return false;
1135
Chris Lattner1b9a0792007-12-20 00:26:33 +00001136 // If the common type isn't a real floating type, then the arguments were
1137 // invalid for this operation.
1138 if (!Res->isRealFloatingType())
John Wiegley429bb272011-04-08 18:41:53 +00001139 return Diag(OrigArg0.get()->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001140 diag::err_typecheck_call_invalid_ordered_compare)
John Wiegley429bb272011-04-08 18:41:53 +00001141 << OrigArg0.get()->getType() << OrigArg1.get()->getType()
1142 << SourceRange(OrigArg0.get()->getLocStart(), OrigArg1.get()->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Chris Lattner1b9a0792007-12-20 00:26:33 +00001144 return false;
1145}
1146
Benjamin Kramere771a7a2010-02-15 22:42:31 +00001147/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
1148/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001149/// to check everything. We expect the last argument to be a floating point
1150/// value.
1151bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
1152 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +00001153 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +00001154 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001155 if (TheCall->getNumArgs() > NumArgs)
1156 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001157 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +00001158 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001159 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001160 (*(TheCall->arg_end()-1))->getLocEnd());
1161
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +00001162 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Eli Friedman9ac6f622009-08-31 20:06:00 +00001164 if (OrigArg->isTypeDependent())
1165 return false;
1166
Chris Lattner81368fb2010-05-06 05:50:07 +00001167 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +00001168 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +00001169 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +00001170 diag::err_typecheck_call_invalid_unary_fp)
1171 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001172
Chris Lattner81368fb2010-05-06 05:50:07 +00001173 // If this is an implicit conversion from float -> double, remove it.
1174 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
1175 Expr *CastArg = Cast->getSubExpr();
1176 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
1177 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
1178 "promotion from float to double is the only expected cast here");
1179 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +00001180 TheCall->setArg(NumArgs-1, CastArg);
1181 OrigArg = CastArg;
1182 }
1183 }
1184
Eli Friedman9ac6f622009-08-31 20:06:00 +00001185 return false;
1186}
1187
Eli Friedmand38617c2008-05-14 19:38:39 +00001188/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
1189// This is declared to take (...), so we have to check everything.
John McCall60d7b3a2010-08-24 06:29:42 +00001190ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +00001191 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001192 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +00001193 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +00001194 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +00001195 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +00001196
Nate Begeman37b6a572010-06-08 00:16:34 +00001197 // Determine which of the following types of shufflevector we're checking:
1198 // 1) unary, vector mask: (lhs, mask)
1199 // 2) binary, vector mask: (lhs, rhs, mask)
1200 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
1201 QualType resType = TheCall->getArg(0)->getType();
1202 unsigned numElements = 0;
1203
Douglas Gregorcde01732009-05-19 22:10:17 +00001204 if (!TheCall->getArg(0)->isTypeDependent() &&
1205 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +00001206 QualType LHSType = TheCall->getArg(0)->getType();
1207 QualType RHSType = TheCall->getArg(1)->getType();
1208
1209 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001210 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +00001211 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +00001212 TheCall->getArg(1)->getLocEnd());
1213 return ExprError();
1214 }
Nate Begeman37b6a572010-06-08 00:16:34 +00001215
1216 numElements = LHSType->getAs<VectorType>()->getNumElements();
1217 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +00001218
Nate Begeman37b6a572010-06-08 00:16:34 +00001219 // Check to see if we have a call with 2 vector arguments, the unary shuffle
1220 // with mask. If so, verify that RHS is an integer vector type with the
1221 // same number of elts as lhs.
1222 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +00001223 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +00001224 RHSType->getAs<VectorType>()->getNumElements() != numElements)
1225 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
1226 << SourceRange(TheCall->getArg(1)->getLocStart(),
1227 TheCall->getArg(1)->getLocEnd());
1228 numResElements = numElements;
1229 }
1230 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001231 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +00001232 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +00001233 TheCall->getArg(1)->getLocEnd());
1234 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +00001235 } else if (numElements != numResElements) {
1236 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +00001237 resType = Context.getVectorType(eltType, numResElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00001238 VectorType::GenericVector);
Douglas Gregorcde01732009-05-19 22:10:17 +00001239 }
Eli Friedmand38617c2008-05-14 19:38:39 +00001240 }
1241
1242 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +00001243 if (TheCall->getArg(i)->isTypeDependent() ||
1244 TheCall->getArg(i)->isValueDependent())
1245 continue;
1246
Nate Begeman37b6a572010-06-08 00:16:34 +00001247 llvm::APSInt Result(32);
1248 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
1249 return ExprError(Diag(TheCall->getLocStart(),
1250 diag::err_shufflevector_nonconstant_argument)
1251 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001252
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +00001253 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001254 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001255 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +00001256 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +00001257 }
1258
Chris Lattner5f9e2722011-07-23 10:55:15 +00001259 SmallVector<Expr*, 32> exprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001260
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +00001261 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +00001262 exprs.push_back(TheCall->getArg(i));
1263 TheCall->setArg(i, 0);
1264 }
1265
Nate Begemana88dc302009-08-12 02:10:25 +00001266 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +00001267 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +00001268 TheCall->getCallee()->getLocStart(),
1269 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +00001270}
Chris Lattner30ce3442007-12-19 23:59:04 +00001271
Daniel Dunbar4493f792008-07-21 22:59:13 +00001272/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
1273// This is declared to take (const void*, ...) and can take two
1274// optional constant int args.
1275bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001276 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001277
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001278 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +00001279 return Diag(TheCall->getLocEnd(),
1280 diag::err_typecheck_call_too_many_args_at_most)
1281 << 0 /*function call*/ << 3 << NumArgs
1282 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001283
1284 // Argument 0 is checked for us and the remaining arguments must be
1285 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001286 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +00001287 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +00001288
Eli Friedman9aef7262009-12-04 00:30:06 +00001289 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +00001290 if (SemaBuiltinConstantArg(TheCall, i, Result))
1291 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001292
Daniel Dunbar4493f792008-07-21 22:59:13 +00001293 // FIXME: gcc issues a warning and rewrites these to 0. These
1294 // seems especially odd for the third argument since the default
1295 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001296 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +00001297 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001298 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +00001299 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001300 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +00001301 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001302 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +00001303 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +00001304 }
1305 }
1306
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001307 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +00001308}
1309
Eric Christopher691ebc32010-04-17 02:26:23 +00001310/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
1311/// TheCall is a constant expression.
1312bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
1313 llvm::APSInt &Result) {
1314 Expr *Arg = TheCall->getArg(ArgNum);
1315 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
1316 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
1317
1318 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
1319
1320 if (!Arg->isIntegerConstantExpr(Result, Context))
1321 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +00001322 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +00001323
Chris Lattner21fb98e2009-09-23 06:06:36 +00001324 return false;
1325}
1326
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001327/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
1328/// int type). This simply type checks that type is one of the defined
1329/// constants (0-3).
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001330// For compatibility check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001331bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +00001332 llvm::APSInt Result;
1333
1334 // Check constant-ness first.
1335 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1336 return true;
1337
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001338 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001339 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001340 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
1341 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +00001342 }
1343
1344 return false;
1345}
1346
Eli Friedman586d6a82009-05-03 06:04:26 +00001347/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +00001348/// This checks that val is a constant 1.
1349bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
1350 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +00001351 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +00001352
Eric Christopher691ebc32010-04-17 02:26:23 +00001353 // TODO: This is less than ideal. Overload this to take a value.
1354 if (SemaBuiltinConstantArg(TheCall, 1, Result))
1355 return true;
1356
1357 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +00001358 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
1359 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
1360
1361 return false;
1362}
1363
Ted Kremenekb43e8ad2011-02-24 23:03:04 +00001364// Handle i > 1 ? "x" : "y", recursively.
Ted Kremenek082d9362009-03-20 21:35:28 +00001365bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
1366 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001367 unsigned format_idx, unsigned firstDataArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001368 bool isPrintf, bool inFunctionCall) {
Ted Kremenek4fe64412010-09-09 03:51:39 +00001369 tryAgain:
Douglas Gregorcde01732009-05-19 22:10:17 +00001370 if (E->isTypeDependent() || E->isValueDependent())
1371 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001372
Peter Collingbournef111d932011-04-15 00:35:48 +00001373 E = E->IgnoreParens();
1374
Ted Kremenekd30ef872009-01-12 23:09:09 +00001375 switch (E->getStmtClass()) {
John McCall56ca35d2011-02-17 10:25:35 +00001376 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenekd30ef872009-01-12 23:09:09 +00001377 case Stmt::ConditionalOperatorClass: {
John McCall56ca35d2011-02-17 10:25:35 +00001378 const AbstractConditionalOperator *C = cast<AbstractConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +00001379 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001380 format_idx, firstDataArg, isPrintf,
1381 inFunctionCall)
John McCall56ca35d2011-02-17 10:25:35 +00001382 && SemaCheckStringLiteral(C->getFalseExpr(), TheCall, HasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001383 format_idx, firstDataArg, isPrintf,
1384 inFunctionCall);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001385 }
1386
Ted Kremenek95355bb2010-09-09 03:51:42 +00001387 case Stmt::IntegerLiteralClass:
1388 // Technically -Wformat-nonliteral does not warn about this case.
1389 // The behavior of printf and friends in this case is implementation
1390 // dependent. Ideally if the format string cannot be null then
1391 // it should have a 'nonnull' attribute in the function prototype.
1392 return true;
1393
Ted Kremenekd30ef872009-01-12 23:09:09 +00001394 case Stmt::ImplicitCastExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +00001395 E = cast<ImplicitCastExpr>(E)->getSubExpr();
1396 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001397 }
1398
John McCall56ca35d2011-02-17 10:25:35 +00001399 case Stmt::OpaqueValueExprClass:
1400 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
1401 E = src;
1402 goto tryAgain;
1403 }
1404 return false;
1405
Ted Kremenekb43e8ad2011-02-24 23:03:04 +00001406 case Stmt::PredefinedExprClass:
1407 // While __func__, etc., are technically not string literals, they
1408 // cannot contain format specifiers and thus are not a security
1409 // liability.
1410 return true;
1411
Ted Kremenek082d9362009-03-20 21:35:28 +00001412 case Stmt::DeclRefExprClass: {
1413 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001414
Ted Kremenek082d9362009-03-20 21:35:28 +00001415 // As an exception, do not flag errors for variables binding to
1416 // const string literals.
1417 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1418 bool isConstant = false;
1419 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001420
Ted Kremenek082d9362009-03-20 21:35:28 +00001421 if (const ArrayType *AT = Context.getAsArrayType(T)) {
1422 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001423 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001424 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +00001425 PT->getPointeeType().isConstant(Context);
1426 }
Mike Stump1eb44332009-09-09 15:08:12 +00001427
Ted Kremenek082d9362009-03-20 21:35:28 +00001428 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001429 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +00001430 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +00001431 HasVAListArg, format_idx, firstDataArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001432 isPrintf, /*inFunctionCall*/false);
Ted Kremenek082d9362009-03-20 21:35:28 +00001433 }
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Anders Carlssond966a552009-06-28 19:55:58 +00001435 // For vprintf* functions (i.e., HasVAListArg==true), we add a
1436 // special check to see if the format string is a function parameter
1437 // of the function calling the printf function. If the function
1438 // has an attribute indicating it is a printf-like function, then we
1439 // should suppress warnings concerning non-literals being used in a call
1440 // to a vprintf function. For example:
1441 //
1442 // void
1443 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1444 // va_list ap;
1445 // va_start(ap, fmt);
1446 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1447 // ...
1448 //
1449 //
1450 // FIXME: We don't have full attribute support yet, so just check to see
1451 // if the argument is a DeclRefExpr that references a parameter. We'll
1452 // add proper support for checking the attribute later.
1453 if (HasVAListArg)
1454 if (isa<ParmVarDecl>(VD))
1455 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001456 }
Mike Stump1eb44332009-09-09 15:08:12 +00001457
Ted Kremenek082d9362009-03-20 21:35:28 +00001458 return false;
1459 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001460
Anders Carlsson8f031b32009-06-27 04:05:33 +00001461 case Stmt::CallExprClass: {
1462 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001463 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001464 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1465 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1466 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001467 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001468 unsigned ArgIndex = FA->getFormatIdx();
1469 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001470
1471 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001472 format_idx, firstDataArg, isPrintf,
1473 inFunctionCall);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001474 }
1475 }
1476 }
1477 }
Mike Stump1eb44332009-09-09 15:08:12 +00001478
Anders Carlsson8f031b32009-06-27 04:05:33 +00001479 return false;
1480 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001481 case Stmt::ObjCStringLiteralClass:
1482 case Stmt::StringLiteralClass: {
1483 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001484
Ted Kremenek082d9362009-03-20 21:35:28 +00001485 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001486 StrE = ObjCFExpr->getString();
1487 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001488 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Ted Kremenekd30ef872009-01-12 23:09:09 +00001490 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001491 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
Richard Trieu55733de2011-10-28 00:41:25 +00001492 firstDataArg, isPrintf, inFunctionCall);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001493 return true;
1494 }
Mike Stump1eb44332009-09-09 15:08:12 +00001495
Ted Kremenekd30ef872009-01-12 23:09:09 +00001496 return false;
1497 }
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Ted Kremenek082d9362009-03-20 21:35:28 +00001499 default:
1500 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001501 }
1502}
1503
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001504void
Mike Stump1eb44332009-09-09 15:08:12 +00001505Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
Nick Lewycky909a70d2011-03-25 01:44:32 +00001506 const Expr * const *ExprArgs,
1507 SourceLocation CallSiteLoc) {
Sean Huntcf807c42010-08-18 23:23:40 +00001508 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1509 e = NonNull->args_end();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001510 i != e; ++i) {
Nick Lewycky909a70d2011-03-25 01:44:32 +00001511 const Expr *ArgExpr = ExprArgs[*i];
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001512 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001513 Expr::NPC_ValueDependentIsNotNull))
Nick Lewycky909a70d2011-03-25 01:44:32 +00001514 Diag(CallSiteLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001515 }
1516}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001517
Ted Kremenek826a3452010-07-16 02:11:22 +00001518/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1519/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001520void
Ted Kremenek826a3452010-07-16 02:11:22 +00001521Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1522 unsigned format_idx, unsigned firstDataArg,
1523 bool isPrintf) {
1524
Ted Kremenek082d9362009-03-20 21:35:28 +00001525 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001526
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001527 // The way the format attribute works in GCC, the implicit this argument
1528 // of member functions is counted. However, it doesn't appear in our own
1529 // lists, so decrement format_idx in that case.
1530 if (isa<CXXMemberCallExpr>(TheCall)) {
Chandler Carruth9263a302010-11-16 08:49:43 +00001531 const CXXMethodDecl *method_decl =
1532 dyn_cast<CXXMethodDecl>(TheCall->getCalleeDecl());
1533 if (method_decl && method_decl->isInstance()) {
1534 // Catch a format attribute mistakenly referring to the object argument.
1535 if (format_idx == 0)
1536 return;
1537 --format_idx;
1538 if(firstDataArg != 0)
1539 --firstDataArg;
1540 }
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001541 }
1542
Ted Kremenek826a3452010-07-16 02:11:22 +00001543 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001544 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001545 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001546 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001547 return;
1548 }
Mike Stump1eb44332009-09-09 15:08:12 +00001549
Ted Kremenek082d9362009-03-20 21:35:28 +00001550 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001551
Chris Lattner59907c42007-08-10 20:18:51 +00001552 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001553 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001554 // Dynamically generated format strings are difficult to
1555 // automatically vet at compile time. Requiring that format strings
1556 // are string literals: (1) permits the checking of format strings by
1557 // the compiler and thereby (2) can practically remove the source of
1558 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001559
Mike Stump1eb44332009-09-09 15:08:12 +00001560 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001561 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001562 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001563 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001564 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001565 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001566 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001567
Chris Lattner655f1412009-04-29 04:59:47 +00001568 // If there are no arguments specified, warn with -Wformat-security, otherwise
1569 // warn only with -Wformat-nonliteral.
1570 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001571 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001572 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001573 << OrigFormatExpr->getSourceRange();
1574 else
Mike Stump1eb44332009-09-09 15:08:12 +00001575 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001576 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001577 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001578}
Ted Kremenek71895b92007-08-14 17:39:48 +00001579
Ted Kremeneke0e53132010-01-28 23:39:18 +00001580namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001581class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1582protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001583 Sema &S;
1584 const StringLiteral *FExpr;
1585 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001586 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001587 const unsigned NumDataArgs;
1588 const bool IsObjCLiteral;
1589 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001590 const bool HasVAListArg;
1591 const CallExpr *TheCall;
1592 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001593 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001594 bool usesPositionalArgs;
1595 bool atFirstArg;
Richard Trieu55733de2011-10-28 00:41:25 +00001596 bool inFunctionCall;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001597public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001598 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001599 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001600 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001601 const char *beg, bool hasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001602 const CallExpr *theCall, unsigned formatIdx,
1603 bool inFunctionCall)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001604 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001605 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001606 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001607 IsObjCLiteral(isObjCLiteral), Beg(beg),
1608 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001609 TheCall(theCall), FormatIdx(formatIdx),
Richard Trieu55733de2011-10-28 00:41:25 +00001610 usesPositionalArgs(false), atFirstArg(true),
1611 inFunctionCall(inFunctionCall) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001612 CoveredArgs.resize(numDataArgs);
1613 CoveredArgs.reset();
1614 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001615
Ted Kremenek07d161f2010-01-29 01:50:07 +00001616 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001617
Ted Kremenek826a3452010-07-16 02:11:22 +00001618 void HandleIncompleteSpecifier(const char *startSpecifier,
1619 unsigned specifierLen);
1620
Ted Kremenekefaff192010-02-27 01:41:03 +00001621 virtual void HandleInvalidPosition(const char *startSpecifier,
1622 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001623 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001624
1625 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1626
Ted Kremeneke0e53132010-01-28 23:39:18 +00001627 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001628
Richard Trieu55733de2011-10-28 00:41:25 +00001629 template <typename Range>
1630 static void EmitFormatDiagnostic(Sema &S, bool inFunctionCall,
1631 const Expr *ArgumentExpr,
1632 PartialDiagnostic PDiag,
1633 SourceLocation StringLoc,
1634 bool IsStringLocation, Range StringRange,
1635 FixItHint Fixit = FixItHint());
1636
Ted Kremenek826a3452010-07-16 02:11:22 +00001637protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001638 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1639 const char *startSpec,
1640 unsigned specifierLen,
1641 const char *csStart, unsigned csLen);
Richard Trieu55733de2011-10-28 00:41:25 +00001642
1643 void HandlePositionalNonpositionalArgs(SourceLocation Loc,
1644 const char *startSpec,
1645 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001646
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001647 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001648 CharSourceRange getSpecifierRange(const char *startSpecifier,
1649 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001650 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001651
Ted Kremenek0d277352010-01-29 01:06:55 +00001652 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001653
1654 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1655 const analyze_format_string::ConversionSpecifier &CS,
1656 const char *startSpecifier, unsigned specifierLen,
1657 unsigned argIndex);
Richard Trieu55733de2011-10-28 00:41:25 +00001658
1659 template <typename Range>
1660 void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
1661 bool IsStringLocation, Range StringRange,
1662 FixItHint Fixit = FixItHint());
1663
1664 void CheckPositionalAndNonpositionalArgs(
1665 const analyze_format_string::FormatSpecifier *FS);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001666};
1667}
1668
Ted Kremenek826a3452010-07-16 02:11:22 +00001669SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001670 return OrigFormatExpr->getSourceRange();
1671}
1672
Ted Kremenek826a3452010-07-16 02:11:22 +00001673CharSourceRange CheckFormatHandler::
1674getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001675 SourceLocation Start = getLocationOfByte(startSpecifier);
1676 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1677
1678 // Advance the end SourceLocation by one due to half-open ranges.
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00001679 End = End.getLocWithOffset(1);
Tom Care45f9b7e2010-06-21 21:21:01 +00001680
1681 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001682}
1683
Ted Kremenek826a3452010-07-16 02:11:22 +00001684SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001685 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001686}
1687
Ted Kremenek826a3452010-07-16 02:11:22 +00001688void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1689 unsigned specifierLen){
Richard Trieu55733de2011-10-28 00:41:25 +00001690 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
1691 getLocationOfByte(startSpecifier),
1692 /*IsStringLocation*/true,
1693 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek808015a2010-01-29 03:16:21 +00001694}
1695
Ted Kremenekefaff192010-02-27 01:41:03 +00001696void
Ted Kremenek826a3452010-07-16 02:11:22 +00001697CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1698 analyze_format_string::PositionContext p) {
Richard Trieu55733de2011-10-28 00:41:25 +00001699 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
1700 << (unsigned) p,
1701 getLocationOfByte(startPos), /*IsStringLocation*/true,
1702 getSpecifierRange(startPos, posLen));
Ted Kremenekefaff192010-02-27 01:41:03 +00001703}
1704
Ted Kremenek826a3452010-07-16 02:11:22 +00001705void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001706 unsigned posLen) {
Richard Trieu55733de2011-10-28 00:41:25 +00001707 EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
1708 getLocationOfByte(startPos),
1709 /*IsStringLocation*/true,
1710 getSpecifierRange(startPos, posLen));
Ted Kremenekefaff192010-02-27 01:41:03 +00001711}
1712
Ted Kremenek826a3452010-07-16 02:11:22 +00001713void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
Ted Kremenek0c069442011-03-15 21:18:48 +00001714 if (!IsObjCLiteral) {
1715 // The presence of a null character is likely an error.
Richard Trieu55733de2011-10-28 00:41:25 +00001716 EmitFormatDiagnostic(
1717 S.PDiag(diag::warn_printf_format_string_contains_null_char),
1718 getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
1719 getFormatStringRange());
Ted Kremenek0c069442011-03-15 21:18:48 +00001720 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001721}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001722
Ted Kremenek826a3452010-07-16 02:11:22 +00001723const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1724 return TheCall->getArg(FirstDataArg + i);
1725}
1726
1727void CheckFormatHandler::DoneProcessing() {
1728 // Does the number of data arguments exceed the number of
1729 // format conversions in the format string?
1730 if (!HasVAListArg) {
1731 // Find any arguments that weren't covered.
1732 CoveredArgs.flip();
1733 signed notCoveredArg = CoveredArgs.find_first();
1734 if (notCoveredArg >= 0) {
1735 assert((unsigned)notCoveredArg < NumDataArgs);
Richard Trieu55733de2011-10-28 00:41:25 +00001736 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_data_arg_not_used),
1737 getDataArg((unsigned) notCoveredArg)->getLocStart(),
1738 /*IsStringLocation*/false, getFormatStringRange());
Ted Kremenek826a3452010-07-16 02:11:22 +00001739 }
1740 }
1741}
1742
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001743bool
1744CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1745 SourceLocation Loc,
1746 const char *startSpec,
1747 unsigned specifierLen,
1748 const char *csStart,
1749 unsigned csLen) {
1750
1751 bool keepGoing = true;
1752 if (argIndex < NumDataArgs) {
1753 // Consider the argument coverered, even though the specifier doesn't
1754 // make sense.
1755 CoveredArgs.set(argIndex);
1756 }
1757 else {
1758 // If argIndex exceeds the number of data arguments we
1759 // don't issue a warning because that is just a cascade of warnings (and
1760 // they may have intended '%%' anyway). We don't want to continue processing
1761 // the format string after this point, however, as we will like just get
1762 // gibberish when trying to match arguments.
1763 keepGoing = false;
1764 }
1765
Richard Trieu55733de2011-10-28 00:41:25 +00001766 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_conversion)
1767 << StringRef(csStart, csLen),
1768 Loc, /*IsStringLocation*/true,
1769 getSpecifierRange(startSpec, specifierLen));
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001770
1771 return keepGoing;
1772}
1773
Richard Trieu55733de2011-10-28 00:41:25 +00001774void
1775CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
1776 const char *startSpec,
1777 unsigned specifierLen) {
1778 EmitFormatDiagnostic(
1779 S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
1780 Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
1781}
1782
Ted Kremenek666a1972010-07-26 19:45:42 +00001783bool
1784CheckFormatHandler::CheckNumArgs(
1785 const analyze_format_string::FormatSpecifier &FS,
1786 const analyze_format_string::ConversionSpecifier &CS,
1787 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1788
1789 if (argIndex >= NumDataArgs) {
Richard Trieu55733de2011-10-28 00:41:25 +00001790 PartialDiagnostic PDiag = FS.usesPositionalArg()
1791 ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
1792 << (argIndex+1) << NumDataArgs)
1793 : S.PDiag(diag::warn_printf_insufficient_data_args);
1794 EmitFormatDiagnostic(
1795 PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
1796 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek666a1972010-07-26 19:45:42 +00001797 return false;
1798 }
1799 return true;
1800}
1801
Richard Trieu55733de2011-10-28 00:41:25 +00001802template<typename Range>
1803void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
1804 SourceLocation Loc,
1805 bool IsStringLocation,
1806 Range StringRange,
1807 FixItHint FixIt) {
1808 EmitFormatDiagnostic(S, inFunctionCall, TheCall->getArg(FormatIdx), PDiag,
1809 Loc, IsStringLocation, StringRange, FixIt);
1810}
1811
1812/// \brief If the format string is not within the funcion call, emit a note
1813/// so that the function call and string are in diagnostic messages.
1814///
1815/// \param inFunctionCall if true, the format string is within the function
1816/// call and only one diagnostic message will be produced. Otherwise, an
1817/// extra note will be emitted pointing to location of the format string.
1818///
1819/// \param ArgumentExpr the expression that is passed as the format string
1820/// argument in the function call. Used for getting locations when two
1821/// diagnostics are emitted.
1822///
1823/// \param PDiag the callee should already have provided any strings for the
1824/// diagnostic message. This function only adds locations and fixits
1825/// to diagnostics.
1826///
1827/// \param Loc primary location for diagnostic. If two diagnostics are
1828/// required, one will be at Loc and a new SourceLocation will be created for
1829/// the other one.
1830///
1831/// \param IsStringLocation if true, Loc points to the format string should be
1832/// used for the note. Otherwise, Loc points to the argument list and will
1833/// be used with PDiag.
1834///
1835/// \param StringRange some or all of the string to highlight. This is
1836/// templated so it can accept either a CharSourceRange or a SourceRange.
1837///
1838/// \param Fixit optional fix it hint for the format string.
1839template<typename Range>
1840void CheckFormatHandler::EmitFormatDiagnostic(Sema &S, bool InFunctionCall,
1841 const Expr *ArgumentExpr,
1842 PartialDiagnostic PDiag,
1843 SourceLocation Loc,
1844 bool IsStringLocation,
1845 Range StringRange,
1846 FixItHint FixIt) {
1847 if (InFunctionCall)
1848 S.Diag(Loc, PDiag) << StringRange << FixIt;
1849 else {
1850 S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
1851 << ArgumentExpr->getSourceRange();
1852 S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
1853 diag::note_format_string_defined)
1854 << StringRange << FixIt;
1855 }
1856}
1857
Ted Kremenek826a3452010-07-16 02:11:22 +00001858//===--- CHECK: Printf format string checking ------------------------------===//
1859
1860namespace {
1861class CheckPrintfHandler : public CheckFormatHandler {
1862public:
1863 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1864 const Expr *origFormatExpr, unsigned firstDataArg,
1865 unsigned numDataArgs, bool isObjCLiteral,
1866 const char *beg, bool hasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001867 const CallExpr *theCall, unsigned formatIdx,
1868 bool inFunctionCall)
Ted Kremenek826a3452010-07-16 02:11:22 +00001869 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1870 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00001871 theCall, formatIdx, inFunctionCall) {}
Ted Kremenek826a3452010-07-16 02:11:22 +00001872
1873
1874 bool HandleInvalidPrintfConversionSpecifier(
1875 const analyze_printf::PrintfSpecifier &FS,
1876 const char *startSpecifier,
1877 unsigned specifierLen);
1878
1879 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1880 const char *startSpecifier,
1881 unsigned specifierLen);
1882
1883 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1884 const char *startSpecifier, unsigned specifierLen);
1885 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1886 const analyze_printf::OptionalAmount &Amt,
1887 unsigned type,
1888 const char *startSpecifier, unsigned specifierLen);
1889 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1890 const analyze_printf::OptionalFlag &flag,
1891 const char *startSpecifier, unsigned specifierLen);
1892 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1893 const analyze_printf::OptionalFlag &ignoredFlag,
1894 const analyze_printf::OptionalFlag &flag,
1895 const char *startSpecifier, unsigned specifierLen);
1896};
1897}
1898
1899bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1900 const analyze_printf::PrintfSpecifier &FS,
1901 const char *startSpecifier,
1902 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001903 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001904 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001905
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001906 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1907 getLocationOfByte(CS.getStart()),
1908 startSpecifier, specifierLen,
1909 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001910}
1911
Ted Kremenek826a3452010-07-16 02:11:22 +00001912bool CheckPrintfHandler::HandleAmount(
1913 const analyze_format_string::OptionalAmount &Amt,
1914 unsigned k, const char *startSpecifier,
1915 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001916
1917 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001918 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001919 unsigned argIndex = Amt.getArgIndex();
1920 if (argIndex >= NumDataArgs) {
Richard Trieu55733de2011-10-28 00:41:25 +00001921 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
1922 << k,
1923 getLocationOfByte(Amt.getStart()),
1924 /*IsStringLocation*/true,
1925 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek0d277352010-01-29 01:06:55 +00001926 // Don't do any more checking. We will just emit
1927 // spurious errors.
1928 return false;
1929 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001930
Ted Kremenek0d277352010-01-29 01:06:55 +00001931 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001932 // Although not in conformance with C99, we also allow the argument to be
1933 // an 'unsigned int' as that is a reasonably safe case. GCC also
1934 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001935 CoveredArgs.set(argIndex);
1936 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001937 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001938
1939 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1940 assert(ATR.isValid());
1941
1942 if (!ATR.matchesType(S.Context, T)) {
Richard Trieu55733de2011-10-28 00:41:25 +00001943 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
Hans Wennborga792aff2011-12-07 10:33:11 +00001944 << k << ATR.getRepresentativeTypeName(S.Context)
Richard Trieu55733de2011-10-28 00:41:25 +00001945 << T << Arg->getSourceRange(),
1946 getLocationOfByte(Amt.getStart()),
1947 /*IsStringLocation*/true,
1948 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek0d277352010-01-29 01:06:55 +00001949 // Don't do any more checking. We will just emit
1950 // spurious errors.
1951 return false;
1952 }
1953 }
1954 }
1955 return true;
1956}
Ted Kremenek0d277352010-01-29 01:06:55 +00001957
Tom Caree4ee9662010-06-17 19:00:27 +00001958void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001959 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001960 const analyze_printf::OptionalAmount &Amt,
1961 unsigned type,
1962 const char *startSpecifier,
1963 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001964 const analyze_printf::PrintfConversionSpecifier &CS =
1965 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001966
Richard Trieu55733de2011-10-28 00:41:25 +00001967 FixItHint fixit =
1968 Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
1969 ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
1970 Amt.getConstantLength()))
1971 : FixItHint();
1972
1973 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
1974 << type << CS.toString(),
1975 getLocationOfByte(Amt.getStart()),
1976 /*IsStringLocation*/true,
1977 getSpecifierRange(startSpecifier, specifierLen),
1978 fixit);
Tom Caree4ee9662010-06-17 19:00:27 +00001979}
1980
Ted Kremenek826a3452010-07-16 02:11:22 +00001981void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001982 const analyze_printf::OptionalFlag &flag,
1983 const char *startSpecifier,
1984 unsigned specifierLen) {
1985 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001986 const analyze_printf::PrintfConversionSpecifier &CS =
1987 FS.getConversionSpecifier();
Richard Trieu55733de2011-10-28 00:41:25 +00001988 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
1989 << flag.toString() << CS.toString(),
1990 getLocationOfByte(flag.getPosition()),
1991 /*IsStringLocation*/true,
1992 getSpecifierRange(startSpecifier, specifierLen),
1993 FixItHint::CreateRemoval(
1994 getSpecifierRange(flag.getPosition(), 1)));
Tom Caree4ee9662010-06-17 19:00:27 +00001995}
1996
1997void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001998 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001999 const analyze_printf::OptionalFlag &ignoredFlag,
2000 const analyze_printf::OptionalFlag &flag,
2001 const char *startSpecifier,
2002 unsigned specifierLen) {
2003 // Warn about ignored flag with a fixit removal.
Richard Trieu55733de2011-10-28 00:41:25 +00002004 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
2005 << ignoredFlag.toString() << flag.toString(),
2006 getLocationOfByte(ignoredFlag.getPosition()),
2007 /*IsStringLocation*/true,
2008 getSpecifierRange(startSpecifier, specifierLen),
2009 FixItHint::CreateRemoval(
2010 getSpecifierRange(ignoredFlag.getPosition(), 1)));
Tom Caree4ee9662010-06-17 19:00:27 +00002011}
2012
Ted Kremeneke0e53132010-01-28 23:39:18 +00002013bool
Ted Kremenek826a3452010-07-16 02:11:22 +00002014CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00002015 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00002016 const char *startSpecifier,
2017 unsigned specifierLen) {
2018
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002019 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00002020 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002021 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00002022
Ted Kremenekbaa40062010-07-19 22:01:06 +00002023 if (FS.consumesDataArgument()) {
2024 if (atFirstArg) {
2025 atFirstArg = false;
2026 usesPositionalArgs = FS.usesPositionalArg();
2027 }
2028 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002029 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2030 startSpecifier, specifierLen);
Ted Kremenekbaa40062010-07-19 22:01:06 +00002031 return false;
2032 }
Ted Kremenek0d277352010-01-29 01:06:55 +00002033 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002034
Ted Kremenekefaff192010-02-27 01:41:03 +00002035 // First check if the field width, precision, and conversion specifier
2036 // have matching data arguments.
2037 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
2038 startSpecifier, specifierLen)) {
2039 return false;
2040 }
2041
2042 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
2043 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00002044 return false;
2045 }
2046
Ted Kremenekf88c8e02010-01-29 20:55:36 +00002047 if (!CS.consumesDataArgument()) {
2048 // FIXME: Technically specifying a precision or field width here
2049 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00002050 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00002051 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002052
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002053 // Consume the argument.
2054 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00002055 if (argIndex < NumDataArgs) {
2056 // The check to see if the argIndex is valid will come later.
2057 // We set the bit here because we may exit early from this
2058 // function if we encounter some other error.
2059 CoveredArgs.set(argIndex);
2060 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002061
2062 // Check for using an Objective-C specific conversion specifier
2063 // in a non-ObjC literal.
2064 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002065 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
2066 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00002067 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002068
Tom Caree4ee9662010-06-17 19:00:27 +00002069 // Check for invalid use of field width
2070 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00002071 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00002072 startSpecifier, specifierLen);
2073 }
2074
2075 // Check for invalid use of precision
2076 if (!FS.hasValidPrecision()) {
2077 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
2078 startSpecifier, specifierLen);
2079 }
2080
2081 // Check each flag does not conflict with any other component.
Ted Kremenek65197b42011-01-08 05:28:46 +00002082 if (!FS.hasValidThousandsGroupingPrefix())
2083 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002084 if (!FS.hasValidLeadingZeros())
2085 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
2086 if (!FS.hasValidPlusPrefix())
2087 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00002088 if (!FS.hasValidSpacePrefix())
2089 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002090 if (!FS.hasValidAlternativeForm())
2091 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
2092 if (!FS.hasValidLeftJustified())
2093 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
2094
2095 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00002096 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
2097 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
2098 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00002099 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
2100 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
2101 startSpecifier, specifierLen);
2102
2103 // Check the length modifier is valid with the given conversion specifier.
2104 const LengthModifier &LM = FS.getLengthModifier();
2105 if (!FS.hasValidLengthModifier())
Richard Trieu55733de2011-10-28 00:41:25 +00002106 EmitFormatDiagnostic(S.PDiag(diag::warn_format_nonsensical_length)
2107 << LM.toString() << CS.toString(),
2108 getLocationOfByte(LM.getStart()),
2109 /*IsStringLocation*/true,
2110 getSpecifierRange(startSpecifier, specifierLen),
2111 FixItHint::CreateRemoval(
2112 getSpecifierRange(LM.getStart(),
2113 LM.getLength())));
Tom Caree4ee9662010-06-17 19:00:27 +00002114
2115 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00002116 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00002117 // Issue a warning about this being a possible security issue.
Richard Trieu55733de2011-10-28 00:41:25 +00002118 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_write_back),
2119 getLocationOfByte(CS.getStart()),
2120 /*IsStringLocation*/true,
2121 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremeneke82d8042010-01-29 01:35:25 +00002122 // Continue checking the other format specifiers.
2123 return true;
2124 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00002125
Ted Kremenekda51f0d2010-01-29 01:43:31 +00002126 // The remaining checks depend on the data arguments.
2127 if (HasVAListArg)
2128 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002129
Ted Kremenek666a1972010-07-26 19:45:42 +00002130 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00002131 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002132
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002133 // Now type check the data expression that matches the
2134 // format specifier.
2135 const Expr *Ex = getDataArg(argIndex);
Nick Lewycky687b5df2011-12-02 23:21:43 +00002136 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002137 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
2138 // Check if we didn't match because of an implicit cast from a 'char'
2139 // or 'short' to an 'int'. This is done because printf is a varargs
2140 // function.
2141 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00002142 if (ICE->getType() == S.Context.IntTy) {
2143 // All further checking is done on the subexpression.
2144 Ex = ICE->getSubExpr();
2145 if (ATR.matchesType(S.Context, Ex->getType()))
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002146 return true;
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00002147 }
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002148
2149 // We may be able to offer a FixItHint if it is a supported type.
2150 PrintfSpecifier fixedFS = FS;
Hans Wennborga7da2152011-10-18 08:10:06 +00002151 bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002152
2153 if (success) {
2154 // Get the fix string from the fixed format specifier
2155 llvm::SmallString<128> buf;
2156 llvm::raw_svector_ostream os(buf);
2157 fixedFS.toString(os);
2158
Richard Trieu55733de2011-10-28 00:41:25 +00002159 EmitFormatDiagnostic(
2160 S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborga792aff2011-12-07 10:33:11 +00002161 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Richard Trieu55733de2011-10-28 00:41:25 +00002162 << Ex->getSourceRange(),
2163 getLocationOfByte(CS.getStart()),
2164 /*IsStringLocation*/true,
2165 getSpecifierRange(startSpecifier, specifierLen),
2166 FixItHint::CreateReplacement(
2167 getSpecifierRange(startSpecifier, specifierLen),
2168 os.str()));
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002169 }
2170 else {
2171 S.Diag(getLocationOfByte(CS.getStart()),
2172 diag::warn_printf_conversion_argument_type_mismatch)
Hans Wennborga792aff2011-12-07 10:33:11 +00002173 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
Michael J. Spencer96827eb2010-07-27 04:46:02 +00002174 << getSpecifierRange(startSpecifier, specifierLen)
2175 << Ex->getSourceRange();
2176 }
2177 }
2178
Ted Kremeneke0e53132010-01-28 23:39:18 +00002179 return true;
2180}
2181
Ted Kremenek826a3452010-07-16 02:11:22 +00002182//===--- CHECK: Scanf format string checking ------------------------------===//
2183
2184namespace {
2185class CheckScanfHandler : public CheckFormatHandler {
2186public:
2187 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
2188 const Expr *origFormatExpr, unsigned firstDataArg,
2189 unsigned numDataArgs, bool isObjCLiteral,
2190 const char *beg, bool hasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00002191 const CallExpr *theCall, unsigned formatIdx,
2192 bool inFunctionCall)
Ted Kremenek826a3452010-07-16 02:11:22 +00002193 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
2194 numDataArgs, isObjCLiteral, beg, hasVAListArg,
Richard Trieu55733de2011-10-28 00:41:25 +00002195 theCall, formatIdx, inFunctionCall) {}
Ted Kremenek826a3452010-07-16 02:11:22 +00002196
2197 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
2198 const char *startSpecifier,
2199 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002200
2201 bool HandleInvalidScanfConversionSpecifier(
2202 const analyze_scanf::ScanfSpecifier &FS,
2203 const char *startSpecifier,
2204 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00002205
2206 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00002207};
Ted Kremenek07d161f2010-01-29 01:50:07 +00002208}
Ted Kremeneke0e53132010-01-28 23:39:18 +00002209
Ted Kremenekb7c21012010-07-16 18:28:03 +00002210void CheckScanfHandler::HandleIncompleteScanList(const char *start,
2211 const char *end) {
Richard Trieu55733de2011-10-28 00:41:25 +00002212 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
2213 getLocationOfByte(end), /*IsStringLocation*/true,
2214 getSpecifierRange(start, end - start));
Ted Kremenekb7c21012010-07-16 18:28:03 +00002215}
2216
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002217bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
2218 const analyze_scanf::ScanfSpecifier &FS,
2219 const char *startSpecifier,
2220 unsigned specifierLen) {
2221
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002222 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00002223 FS.getConversionSpecifier();
2224
2225 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
2226 getLocationOfByte(CS.getStart()),
2227 startSpecifier, specifierLen,
2228 CS.getStart(), CS.getLength());
2229}
2230
Ted Kremenek826a3452010-07-16 02:11:22 +00002231bool CheckScanfHandler::HandleScanfSpecifier(
2232 const analyze_scanf::ScanfSpecifier &FS,
2233 const char *startSpecifier,
2234 unsigned specifierLen) {
2235
2236 using namespace analyze_scanf;
2237 using namespace analyze_format_string;
2238
Ted Kremenek6ecb9502010-07-20 20:04:27 +00002239 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00002240
Ted Kremenekbaa40062010-07-19 22:01:06 +00002241 // Handle case where '%' and '*' don't consume an argument. These shouldn't
2242 // be used to decide if we are using positional arguments consistently.
2243 if (FS.consumesDataArgument()) {
2244 if (atFirstArg) {
2245 atFirstArg = false;
2246 usesPositionalArgs = FS.usesPositionalArg();
2247 }
2248 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002249 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
2250 startSpecifier, specifierLen);
Ted Kremenekbaa40062010-07-19 22:01:06 +00002251 return false;
2252 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002253 }
2254
2255 // Check if the field with is non-zero.
2256 const OptionalAmount &Amt = FS.getFieldWidth();
2257 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
2258 if (Amt.getConstantAmount() == 0) {
2259 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
2260 Amt.getConstantLength());
Richard Trieu55733de2011-10-28 00:41:25 +00002261 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
2262 getLocationOfByte(Amt.getStart()),
2263 /*IsStringLocation*/true, R,
2264 FixItHint::CreateRemoval(R));
Ted Kremenek826a3452010-07-16 02:11:22 +00002265 }
2266 }
2267
2268 if (!FS.consumesDataArgument()) {
2269 // FIXME: Technically specifying a precision or field width here
2270 // makes no sense. Worth issuing a warning at some point.
2271 return true;
2272 }
2273
2274 // Consume the argument.
2275 unsigned argIndex = FS.getArgIndex();
2276 if (argIndex < NumDataArgs) {
2277 // The check to see if the argIndex is valid will come later.
2278 // We set the bit here because we may exit early from this
2279 // function if we encounter some other error.
2280 CoveredArgs.set(argIndex);
2281 }
2282
Ted Kremenek1e51c202010-07-20 20:04:47 +00002283 // Check the length modifier is valid with the given conversion specifier.
2284 const LengthModifier &LM = FS.getLengthModifier();
2285 if (!FS.hasValidLengthModifier()) {
2286 S.Diag(getLocationOfByte(LM.getStart()),
2287 diag::warn_format_nonsensical_length)
2288 << LM.toString() << CS.toString()
2289 << getSpecifierRange(startSpecifier, specifierLen)
2290 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
2291 LM.getLength()));
2292 }
2293
Ted Kremenek826a3452010-07-16 02:11:22 +00002294 // The remaining checks depend on the data arguments.
2295 if (HasVAListArg)
2296 return true;
2297
Ted Kremenek666a1972010-07-26 19:45:42 +00002298 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00002299 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00002300
Hans Wennborg6fcd9322011-12-10 13:20:11 +00002301 // Check that the argument type matches the format specifier.
2302 const Expr *Ex = getDataArg(argIndex);
2303 const analyze_scanf::ScanfArgTypeResult &ATR = FS.getArgType(S.Context);
2304 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
2305 ScanfSpecifier fixedFS = FS;
2306 bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
2307
2308 if (success) {
2309 // Get the fix string from the fixed format specifier.
2310 llvm::SmallString<128> buf;
2311 llvm::raw_svector_ostream os(buf);
2312 fixedFS.toString(os);
2313
2314 EmitFormatDiagnostic(
2315 S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
2316 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
2317 << Ex->getSourceRange(),
2318 getLocationOfByte(CS.getStart()),
2319 /*IsStringLocation*/true,
2320 getSpecifierRange(startSpecifier, specifierLen),
2321 FixItHint::CreateReplacement(
2322 getSpecifierRange(startSpecifier, specifierLen),
2323 os.str()));
2324 } else {
2325 S.Diag(getLocationOfByte(CS.getStart()),
2326 diag::warn_printf_conversion_argument_type_mismatch)
2327 << ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
2328 << getSpecifierRange(startSpecifier, specifierLen)
2329 << Ex->getSourceRange();
2330 }
2331 }
2332
Ted Kremenek826a3452010-07-16 02:11:22 +00002333 return true;
2334}
2335
2336void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00002337 const Expr *OrigFormatExpr,
2338 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00002339 unsigned format_idx, unsigned firstDataArg,
Richard Trieu55733de2011-10-28 00:41:25 +00002340 bool isPrintf, bool inFunctionCall) {
Ted Kremenek826a3452010-07-16 02:11:22 +00002341
Ted Kremeneke0e53132010-01-28 23:39:18 +00002342 // CHECK: is the format string a wide literal?
Douglas Gregor5cee1192011-07-27 05:40:30 +00002343 if (!FExpr->isAscii()) {
Richard Trieu55733de2011-10-28 00:41:25 +00002344 CheckFormatHandler::EmitFormatDiagnostic(
2345 *this, inFunctionCall, TheCall->getArg(format_idx),
2346 PDiag(diag::warn_format_string_is_wide_literal), FExpr->getLocStart(),
2347 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremeneke0e53132010-01-28 23:39:18 +00002348 return;
2349 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002350
Ted Kremeneke0e53132010-01-28 23:39:18 +00002351 // Str - The format string. NOTE: this is NOT null-terminated!
Chris Lattner5f9e2722011-07-23 10:55:15 +00002352 StringRef StrRef = FExpr->getString();
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00002353 const char *Str = StrRef.data();
2354 unsigned StrLen = StrRef.size();
Ted Kremenek4cd57912011-09-29 05:52:16 +00002355 const unsigned numDataArgs = TheCall->getNumArgs() - firstDataArg;
Ted Kremenek826a3452010-07-16 02:11:22 +00002356
Ted Kremeneke0e53132010-01-28 23:39:18 +00002357 // CHECK: empty format string?
Ted Kremenek4cd57912011-09-29 05:52:16 +00002358 if (StrLen == 0 && numDataArgs > 0) {
Richard Trieu55733de2011-10-28 00:41:25 +00002359 CheckFormatHandler::EmitFormatDiagnostic(
2360 *this, inFunctionCall, TheCall->getArg(format_idx),
2361 PDiag(diag::warn_empty_format_string), FExpr->getLocStart(),
2362 /*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
Ted Kremeneke0e53132010-01-28 23:39:18 +00002363 return;
2364 }
Ted Kremenek826a3452010-07-16 02:11:22 +00002365
2366 if (isPrintf) {
2367 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek4cd57912011-09-29 05:52:16 +00002368 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Richard Trieu55733de2011-10-28 00:41:25 +00002369 Str, HasVAListArg, TheCall, format_idx,
2370 inFunctionCall);
Ted Kremenek826a3452010-07-16 02:11:22 +00002371
Hans Wennborgd02deeb2011-12-15 10:25:47 +00002372 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
2373 getLangOptions()))
Ted Kremenek826a3452010-07-16 02:11:22 +00002374 H.DoneProcessing();
2375 }
2376 else {
2377 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenek4cd57912011-09-29 05:52:16 +00002378 numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
Richard Trieu55733de2011-10-28 00:41:25 +00002379 Str, HasVAListArg, TheCall, format_idx,
2380 inFunctionCall);
Ted Kremenek826a3452010-07-16 02:11:22 +00002381
Hans Wennborgd02deeb2011-12-15 10:25:47 +00002382 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
2383 getLangOptions()))
Ted Kremenek826a3452010-07-16 02:11:22 +00002384 H.DoneProcessing();
2385 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00002386}
2387
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002388//===--- CHECK: Standard memory functions ---------------------------------===//
2389
Douglas Gregor2a053a32011-05-03 20:05:22 +00002390/// \brief Determine whether the given type is a dynamic class type (e.g.,
2391/// whether it has a vtable).
2392static bool isDynamicClassType(QualType T) {
2393 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl())
2394 if (CXXRecordDecl *Definition = Record->getDefinition())
2395 if (Definition->isDynamicClass())
2396 return true;
2397
2398 return false;
2399}
2400
Chandler Carrutha72a12f2011-06-21 23:04:20 +00002401/// \brief If E is a sizeof expression, returns its argument expression,
Chandler Carruth000d4282011-06-16 09:09:40 +00002402/// otherwise returns NULL.
2403static const Expr *getSizeOfExprArg(const Expr* E) {
Nico Webere4a1c642011-06-14 16:14:58 +00002404 if (const UnaryExprOrTypeTraitExpr *SizeOf =
Chandler Carruth000d4282011-06-16 09:09:40 +00002405 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2406 if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
2407 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
Nico Webere4a1c642011-06-14 16:14:58 +00002408
Chandler Carruth000d4282011-06-16 09:09:40 +00002409 return 0;
2410}
2411
Chandler Carrutha72a12f2011-06-21 23:04:20 +00002412/// \brief If E is a sizeof expression, returns its argument type.
Chandler Carruth000d4282011-06-16 09:09:40 +00002413static QualType getSizeOfArgType(const Expr* E) {
2414 if (const UnaryExprOrTypeTraitExpr *SizeOf =
2415 dyn_cast<UnaryExprOrTypeTraitExpr>(E))
2416 if (SizeOf->getKind() == clang::UETT_SizeOf)
2417 return SizeOf->getTypeOfArgument();
2418
2419 return QualType();
Nico Webere4a1c642011-06-14 16:14:58 +00002420}
2421
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002422/// \brief Check for dangerous or invalid arguments to memset().
2423///
Chandler Carruth929f0132011-06-03 06:23:57 +00002424/// This issues warnings on known problematic, dangerous or unspecified
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002425/// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
2426/// function calls.
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002427///
2428/// \param Call The call expression to diagnose.
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002429void Sema::CheckMemaccessArguments(const CallExpr *Call,
Anna Zaksd9b859a2012-01-13 21:52:01 +00002430 FunctionDecl::MemoryFunctionKind CMF,
Matt Beaumont-Gaycc2f30c2011-08-05 00:22:34 +00002431 IdentifierInfo *FnName) {
Ted Kremenek1d59f7f2011-04-28 01:38:02 +00002432 // It is possible to have a non-standard definition of memset. Validate
Douglas Gregor707a23e2011-06-16 17:56:04 +00002433 // we have enough arguments, and if not, abort further checking.
Anna Zaksd9b859a2012-01-13 21:52:01 +00002434 unsigned ExpectedNumArgs = (CMF == FunctionDecl::MFK_Strndup ? 2 : 3);
Nico Webercda57822011-10-13 22:30:23 +00002435 if (Call->getNumArgs() < ExpectedNumArgs)
Ted Kremenek1d59f7f2011-04-28 01:38:02 +00002436 return;
2437
Anna Zaksd9b859a2012-01-13 21:52:01 +00002438 unsigned LastArg = (CMF == FunctionDecl::MFK_Memset ||
2439 CMF == FunctionDecl::MFK_Strndup ? 1 : 2);
2440 unsigned LenArg = (CMF == FunctionDecl::MFK_Strndup ? 1 : 2);
Nico Webercda57822011-10-13 22:30:23 +00002441 const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
Chandler Carruth000d4282011-06-16 09:09:40 +00002442
2443 // We have special checking when the length is a sizeof expression.
2444 QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
2445 const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
2446 llvm::FoldingSetNodeID SizeOfArgID;
2447
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002448 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
2449 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
Nico Webere4a1c642011-06-14 16:14:58 +00002450 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002451
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002452 QualType DestTy = Dest->getType();
2453 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
2454 QualType PointeeTy = DestPtrTy->getPointeeType();
John McCallf85e1932011-06-15 23:02:42 +00002455
Chandler Carruth000d4282011-06-16 09:09:40 +00002456 // Never warn about void type pointers. This can be used to suppress
2457 // false positives.
2458 if (PointeeTy->isVoidType())
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002459 continue;
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002460
Chandler Carruth000d4282011-06-16 09:09:40 +00002461 // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
2462 // actually comparing the expressions for equality. Because computing the
2463 // expression IDs can be expensive, we only do this if the diagnostic is
2464 // enabled.
2465 if (SizeOfArg &&
2466 Diags.getDiagnosticLevel(diag::warn_sizeof_pointer_expr_memaccess,
2467 SizeOfArg->getExprLoc())) {
2468 // We only compute IDs for expressions if the warning is enabled, and
2469 // cache the sizeof arg's ID.
2470 if (SizeOfArgID == llvm::FoldingSetNodeID())
2471 SizeOfArg->Profile(SizeOfArgID, Context, true);
2472 llvm::FoldingSetNodeID DestID;
2473 Dest->Profile(DestID, Context, true);
2474 if (DestID == SizeOfArgID) {
Nico Webercda57822011-10-13 22:30:23 +00002475 // TODO: For strncpy() and friends, this could suggest sizeof(dst)
2476 // over sizeof(src) as well.
Chandler Carruth000d4282011-06-16 09:09:40 +00002477 unsigned ActionIdx = 0; // Default is to suggest dereferencing.
2478 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
2479 if (UnaryOp->getOpcode() == UO_AddrOf)
2480 ActionIdx = 1; // If its an address-of operator, just remove it.
2481 if (Context.getTypeSize(PointeeTy) == Context.getCharWidth())
2482 ActionIdx = 2; // If the pointee's size is sizeof(char),
2483 // suggest an explicit length.
Anna Zaksd9b859a2012-01-13 21:52:01 +00002484 unsigned DestSrcSelect =
2485 (CMF == FunctionDecl::MFK_Strndup ? 1 : ArgIdx);
Chandler Carruth000d4282011-06-16 09:09:40 +00002486 DiagRuntimeBehavior(SizeOfArg->getExprLoc(), Dest,
2487 PDiag(diag::warn_sizeof_pointer_expr_memaccess)
Nico Webercda57822011-10-13 22:30:23 +00002488 << FnName << DestSrcSelect << ActionIdx
Chandler Carruth000d4282011-06-16 09:09:40 +00002489 << Dest->getSourceRange()
2490 << SizeOfArg->getSourceRange());
2491 break;
2492 }
2493 }
2494
2495 // Also check for cases where the sizeof argument is the exact same
2496 // type as the memory argument, and where it points to a user-defined
2497 // record type.
2498 if (SizeOfArgTy != QualType()) {
2499 if (PointeeTy->isRecordType() &&
2500 Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
2501 DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
2502 PDiag(diag::warn_sizeof_pointer_type_memaccess)
2503 << FnName << SizeOfArgTy << ArgIdx
2504 << PointeeTy << Dest->getSourceRange()
2505 << LenExpr->getSourceRange());
2506 break;
2507 }
Nico Webere4a1c642011-06-14 16:14:58 +00002508 }
2509
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002510 // Always complain about dynamic classes.
John McCallf85e1932011-06-15 23:02:42 +00002511 if (isDynamicClassType(PointeeTy))
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002512 DiagRuntimeBehavior(
2513 Dest->getExprLoc(), Dest,
2514 PDiag(diag::warn_dyn_class_memaccess)
Anna Zaksd9b859a2012-01-13 21:52:01 +00002515 << (CMF == FunctionDecl::MFK_Memcmp ? ArgIdx + 2 : ArgIdx)
2516 << FnName << PointeeTy
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002517 // "overwritten" if we're warning about the destination for any call
2518 // but memcmp; otherwise a verb appropriate to the call.
Anna Zaksd9b859a2012-01-13 21:52:01 +00002519 << (ArgIdx == 0 &&
2520 CMF != FunctionDecl::MFK_Memcmp ? 0 : (unsigned)CMF)
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002521 << Call->getCallee()->getSourceRange());
Anna Zaksd9b859a2012-01-13 21:52:01 +00002522 else if (PointeeTy.hasNonTrivialObjCLifetime() &&
2523 CMF != FunctionDecl::MFK_Memset)
Matt Beaumont-Gay5c5218e2011-08-19 20:40:18 +00002524 DiagRuntimeBehavior(
2525 Dest->getExprLoc(), Dest,
2526 PDiag(diag::warn_arc_object_memaccess)
2527 << ArgIdx << FnName << PointeeTy
2528 << Call->getCallee()->getSourceRange());
John McCallf85e1932011-06-15 23:02:42 +00002529 else
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002530 continue;
John McCallf85e1932011-06-15 23:02:42 +00002531
2532 DiagRuntimeBehavior(
2533 Dest->getExprLoc(), Dest,
Chandler Carruth929f0132011-06-03 06:23:57 +00002534 PDiag(diag::note_bad_memaccess_silence)
Douglas Gregor06bc9eb2011-05-03 20:37:33 +00002535 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
2536 break;
2537 }
Chandler Carruth7ccc95b2011-04-27 07:05:31 +00002538 }
2539}
2540
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002541// A little helper routine: ignore addition and subtraction of integer literals.
2542// This intentionally does not ignore all integer constant expressions because
2543// we don't want to remove sizeof().
2544static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
2545 Ex = Ex->IgnoreParenCasts();
2546
2547 for (;;) {
2548 const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
2549 if (!BO || !BO->isAdditiveOp())
2550 break;
2551
2552 const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
2553 const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
2554
2555 if (isa<IntegerLiteral>(RHS))
2556 Ex = LHS;
2557 else if (isa<IntegerLiteral>(LHS))
2558 Ex = RHS;
2559 else
2560 break;
2561 }
2562
2563 return Ex;
2564}
2565
2566// Warn if the user has made the 'size' argument to strlcpy or strlcat
2567// be the size of the source, instead of the destination.
2568void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
2569 IdentifierInfo *FnName) {
2570
2571 // Don't crash if the user has the wrong number of arguments
2572 if (Call->getNumArgs() != 3)
2573 return;
2574
2575 const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
2576 const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
2577 const Expr *CompareWithSrc = NULL;
2578
2579 // Look for 'strlcpy(dst, x, sizeof(x))'
2580 if (const Expr *Ex = getSizeOfExprArg(SizeArg))
2581 CompareWithSrc = Ex;
2582 else {
2583 // Look for 'strlcpy(dst, x, strlen(x))'
2584 if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
Richard Smith180f4792011-11-10 06:34:14 +00002585 if (SizeCall->isBuiltinCall() == Builtin::BIstrlen
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002586 && SizeCall->getNumArgs() == 1)
2587 CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
2588 }
2589 }
2590
2591 if (!CompareWithSrc)
2592 return;
2593
2594 // Determine if the argument to sizeof/strlen is equal to the source
2595 // argument. In principle there's all kinds of things you could do
2596 // here, for instance creating an == expression and evaluating it with
2597 // EvaluateAsBooleanCondition, but this uses a more direct technique:
2598 const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
2599 if (!SrcArgDRE)
2600 return;
2601
2602 const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
2603 if (!CompareWithSrcDRE ||
2604 SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
2605 return;
2606
2607 const Expr *OriginalSizeArg = Call->getArg(2);
2608 Diag(CompareWithSrcDRE->getLocStart(), diag::warn_strlcpycat_wrong_size)
2609 << OriginalSizeArg->getSourceRange() << FnName;
2610
2611 // Output a FIXIT hint if the destination is an array (rather than a
2612 // pointer to an array). This could be enhanced to handle some
2613 // pointers if we know the actual size, like if DstArg is 'array+2'
2614 // we could say 'sizeof(array)-2'.
2615 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
Ted Kremenek8f746222011-08-18 22:48:41 +00002616 QualType DstArgTy = DstArg->getType();
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002617
Ted Kremenek8f746222011-08-18 22:48:41 +00002618 // Only handle constant-sized or VLAs, but not flexible members.
2619 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(DstArgTy)) {
2620 // Only issue the FIXIT for arrays of size > 1.
2621 if (CAT->getSize().getSExtValue() <= 1)
2622 return;
2623 } else if (!DstArgTy->isVariableArrayType()) {
2624 return;
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002625 }
Ted Kremenek8f746222011-08-18 22:48:41 +00002626
2627 llvm::SmallString<128> sizeString;
2628 llvm::raw_svector_ostream OS(sizeString);
2629 OS << "sizeof(";
Douglas Gregor8987b232011-09-27 23:30:47 +00002630 DstArg->printPretty(OS, Context, 0, getPrintingPolicy());
Ted Kremenek8f746222011-08-18 22:48:41 +00002631 OS << ")";
2632
2633 Diag(OriginalSizeArg->getLocStart(), diag::note_strlcpycat_wrong_size)
2634 << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
2635 OS.str());
Ted Kremenekbd5da9d2011-08-18 20:55:45 +00002636}
2637
Ted Kremenek06de2762007-08-17 16:46:58 +00002638//===--- CHECK: Return Address of Stack Variable --------------------------===//
2639
Chris Lattner5f9e2722011-07-23 10:55:15 +00002640static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars);
2641static Expr *EvalAddr(Expr* E, SmallVectorImpl<DeclRefExpr *> &refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002642
2643/// CheckReturnStackAddr - Check if a return statement returns the address
2644/// of a stack variable.
2645void
2646Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
2647 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00002648
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002649 Expr *stackE = 0;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002650 SmallVector<DeclRefExpr *, 8> refVars;
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002651
2652 // Perform checking for returned stack addresses, local blocks,
2653 // label addresses or references to temporaries.
John McCallf85e1932011-06-15 23:02:42 +00002654 if (lhsType->isPointerType() ||
2655 (!getLangOptions().ObjCAutoRefCount && lhsType->isBlockPointerType())) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002656 stackE = EvalAddr(RetValExp, refVars);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002657 } else if (lhsType->isReferenceType()) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002658 stackE = EvalVal(RetValExp, refVars);
2659 }
2660
2661 if (stackE == 0)
2662 return; // Nothing suspicious was found.
2663
2664 SourceLocation diagLoc;
2665 SourceRange diagRange;
2666 if (refVars.empty()) {
2667 diagLoc = stackE->getLocStart();
2668 diagRange = stackE->getSourceRange();
2669 } else {
2670 // We followed through a reference variable. 'stackE' contains the
2671 // problematic expression but we will warn at the return statement pointing
2672 // at the reference variable. We will later display the "trail" of
2673 // reference variables using notes.
2674 diagLoc = refVars[0]->getLocStart();
2675 diagRange = refVars[0]->getSourceRange();
2676 }
2677
2678 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
2679 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref
2680 : diag::warn_ret_stack_addr)
2681 << DR->getDecl()->getDeclName() << diagRange;
2682 } else if (isa<BlockExpr>(stackE)) { // local block.
2683 Diag(diagLoc, diag::err_ret_local_block) << diagRange;
2684 } else if (isa<AddrLabelExpr>(stackE)) { // address of label.
2685 Diag(diagLoc, diag::warn_ret_addr_label) << diagRange;
2686 } else { // local temporary.
2687 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref
2688 : diag::warn_ret_local_temp_addr)
2689 << diagRange;
2690 }
2691
2692 // Display the "trail" of reference variables that we followed until we
2693 // found the problematic expression using notes.
2694 for (unsigned i = 0, e = refVars.size(); i != e; ++i) {
2695 VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl());
2696 // If this var binds to another reference var, show the range of the next
2697 // var, otherwise the var binds to the problematic expression, in which case
2698 // show the range of the expression.
2699 SourceRange range = (i < e-1) ? refVars[i+1]->getSourceRange()
2700 : stackE->getSourceRange();
2701 Diag(VD->getLocation(), diag::note_ref_var_local_bind)
2702 << VD->getDeclName() << range;
Ted Kremenek06de2762007-08-17 16:46:58 +00002703 }
2704}
2705
2706/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
2707/// check if the expression in a return statement evaluates to an address
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002708/// to a location on the stack, a local block, an address of a label, or a
2709/// reference to local temporary. The recursion is used to traverse the
Ted Kremenek06de2762007-08-17 16:46:58 +00002710/// AST of the return expression, with recursion backtracking when we
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002711/// encounter a subexpression that (1) clearly does not lead to one of the
2712/// above problematic expressions (2) is something we cannot determine leads to
2713/// a problematic expression based on such local checking.
2714///
2715/// Both EvalAddr and EvalVal follow through reference variables to evaluate
2716/// the expression that they point to. Such variables are added to the
2717/// 'refVars' vector so that we know what the reference variable "trail" was.
Ted Kremenek06de2762007-08-17 16:46:58 +00002718///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00002719/// EvalAddr processes expressions that are pointers that are used as
2720/// references (and not L-values). EvalVal handles all other values.
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002721/// At the base case of the recursion is a check for the above problematic
2722/// expressions.
Ted Kremenek06de2762007-08-17 16:46:58 +00002723///
2724/// This implementation handles:
2725///
2726/// * pointer-to-pointer casts
2727/// * implicit conversions from array references to pointers
2728/// * taking the address of fields
2729/// * arbitrary interplay between "&" and "*" operators
2730/// * pointer arithmetic from an address of a stack variable
2731/// * taking the address of an array element where the array is on the stack
Chris Lattner5f9e2722011-07-23 10:55:15 +00002732static Expr *EvalAddr(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002733 if (E->isTypeDependent())
2734 return NULL;
2735
Ted Kremenek06de2762007-08-17 16:46:58 +00002736 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00002737 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00002738 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002739 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002740 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00002741
Peter Collingbournef111d932011-04-15 00:35:48 +00002742 E = E->IgnoreParens();
2743
Ted Kremenek06de2762007-08-17 16:46:58 +00002744 // Our "symbolic interpreter" is just a dispatch off the currently
2745 // viewed AST node. We then recursively traverse the AST by calling
2746 // EvalAddr and EvalVal appropriately.
2747 switch (E->getStmtClass()) {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002748 case Stmt::DeclRefExprClass: {
2749 DeclRefExpr *DR = cast<DeclRefExpr>(E);
2750
2751 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
2752 // If this is a reference variable, follow through to the expression that
2753 // it points to.
2754 if (V->hasLocalStorage() &&
2755 V->getType()->isReferenceType() && V->hasInit()) {
2756 // Add the reference variable to the "trail".
2757 refVars.push_back(DR);
2758 return EvalAddr(V->getInit(), refVars);
2759 }
2760
2761 return NULL;
2762 }
Ted Kremenek06de2762007-08-17 16:46:58 +00002763
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002764 case Stmt::UnaryOperatorClass: {
2765 // The only unary operator that make sense to handle here
2766 // is AddrOf. All others don't make sense as pointers.
2767 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002768
John McCall2de56d12010-08-25 11:45:40 +00002769 if (U->getOpcode() == UO_AddrOf)
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002770 return EvalVal(U->getSubExpr(), refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002771 else
Ted Kremenek06de2762007-08-17 16:46:58 +00002772 return NULL;
2773 }
Mike Stump1eb44332009-09-09 15:08:12 +00002774
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002775 case Stmt::BinaryOperatorClass: {
2776 // Handle pointer arithmetic. All other binary operators are not valid
2777 // in this context.
2778 BinaryOperator *B = cast<BinaryOperator>(E);
John McCall2de56d12010-08-25 11:45:40 +00002779 BinaryOperatorKind op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00002780
John McCall2de56d12010-08-25 11:45:40 +00002781 if (op != BO_Add && op != BO_Sub)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002782 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00002783
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002784 Expr *Base = B->getLHS();
2785
2786 // Determine which argument is the real pointer base. It could be
2787 // the RHS argument instead of the LHS.
2788 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00002789
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002790 assert (Base->getType()->isPointerType());
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002791 return EvalAddr(Base, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002792 }
Steve Naroff61f40a22008-09-10 19:17:48 +00002793
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002794 // For conditional operators we need to see if either the LHS or RHS are
2795 // valid DeclRefExpr*s. If one of them is valid, we return it.
2796 case Stmt::ConditionalOperatorClass: {
2797 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002798
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002799 // Handle the GNU extension for missing LHS.
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002800 if (Expr *lhsExpr = C->getLHS()) {
2801 // In C++, we can have a throw-expression, which has 'void' type.
2802 if (!lhsExpr->getType()->isVoidType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002803 if (Expr* LHS = EvalAddr(lhsExpr, refVars))
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002804 return LHS;
2805 }
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002806
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00002807 // In C++, we can have a throw-expression, which has 'void' type.
2808 if (C->getRHS()->getType()->isVoidType())
2809 return NULL;
2810
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002811 return EvalAddr(C->getRHS(), refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002812 }
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002813
2814 case Stmt::BlockExprClass:
John McCall469a1eb2011-02-02 13:00:07 +00002815 if (cast<BlockExpr>(E)->getBlockDecl()->hasCaptures())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002816 return E; // local block.
2817 return NULL;
2818
2819 case Stmt::AddrLabelExprClass:
2820 return E; // address of label.
Mike Stump1eb44332009-09-09 15:08:12 +00002821
John McCall80ee6e82011-11-10 05:35:25 +00002822 case Stmt::ExprWithCleanupsClass:
2823 return EvalAddr(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2824
Ted Kremenek54b52742008-08-07 00:49:01 +00002825 // For casts, we need to handle conversions from arrays to
2826 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00002827 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00002828 case Stmt::CStyleCastExprClass:
John McCallf85e1932011-06-15 23:02:42 +00002829 case Stmt::CXXFunctionalCastExprClass:
2830 case Stmt::ObjCBridgedCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002831 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00002832 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002833
Steve Naroffdd972f22008-09-05 22:11:13 +00002834 if (SubExpr->getType()->isPointerType() ||
2835 SubExpr->getType()->isBlockPointerType() ||
2836 SubExpr->getType()->isObjCQualifiedIdType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002837 return EvalAddr(SubExpr, refVars);
Ted Kremenek54b52742008-08-07 00:49:01 +00002838 else if (T->isArrayType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002839 return EvalVal(SubExpr, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002840 else
Ted Kremenek54b52742008-08-07 00:49:01 +00002841 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002842 }
Mike Stump1eb44332009-09-09 15:08:12 +00002843
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002844 // C++ casts. For dynamic casts, static casts, and const casts, we
2845 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00002846 // through the cast. In the case the dynamic cast doesn't fail (and
2847 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002848 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00002849 // FIXME: The comment about is wrong; we're not always converting
2850 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00002851 // handle references to objects.
2852 case Stmt::CXXStaticCastExprClass:
2853 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00002854 case Stmt::CXXConstCastExprClass:
2855 case Stmt::CXXReinterpretCastExprClass: {
2856 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00002857 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002858 return EvalAddr(S, refVars);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002859 else
2860 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002861 }
Mike Stump1eb44332009-09-09 15:08:12 +00002862
Douglas Gregor03e80032011-06-21 17:03:29 +00002863 case Stmt::MaterializeTemporaryExprClass:
2864 if (Expr *Result = EvalAddr(
2865 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
2866 refVars))
2867 return Result;
2868
2869 return E;
2870
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00002871 // Everything else: we simply don't reason about them.
2872 default:
2873 return NULL;
2874 }
Ted Kremenek06de2762007-08-17 16:46:58 +00002875}
Mike Stump1eb44332009-09-09 15:08:12 +00002876
Ted Kremenek06de2762007-08-17 16:46:58 +00002877
2878/// EvalVal - This function is complements EvalAddr in the mutual recursion.
2879/// See the comments for EvalAddr for more details.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002880static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002881do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00002882 // We should only be called for evaluating non-pointer expressions, or
2883 // expressions with a pointer type that are not used as references but instead
2884 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00002885
Ted Kremenek06de2762007-08-17 16:46:58 +00002886 // Our "symbolic interpreter" is just a dispatch off the currently
2887 // viewed AST node. We then recursively traverse the AST by calling
2888 // EvalAddr and EvalVal appropriately.
Peter Collingbournef111d932011-04-15 00:35:48 +00002889
2890 E = E->IgnoreParens();
Ted Kremenek06de2762007-08-17 16:46:58 +00002891 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002892 case Stmt::ImplicitCastExprClass: {
2893 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall5baba9d2010-08-25 10:28:54 +00002894 if (IE->getValueKind() == VK_LValue) {
Ted Kremenek68957a92010-08-04 20:01:07 +00002895 E = IE->getSubExpr();
2896 continue;
2897 }
2898 return NULL;
2899 }
2900
John McCall80ee6e82011-11-10 05:35:25 +00002901 case Stmt::ExprWithCleanupsClass:
2902 return EvalVal(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
2903
Douglas Gregora2813ce2009-10-23 18:54:35 +00002904 case Stmt::DeclRefExprClass: {
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002905 // When we hit a DeclRefExpr we are looking at code that refers to a
2906 // variable's name. If it's not a reference variable we check if it has
2907 // local storage within the function, and if so, return the expression.
Ted Kremenek06de2762007-08-17 16:46:58 +00002908 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002909
Ted Kremenek06de2762007-08-17 16:46:58 +00002910 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002911 if (V->hasLocalStorage()) {
2912 if (!V->getType()->isReferenceType())
2913 return DR;
2914
2915 // Reference variable, follow through to the expression that
2916 // it points to.
2917 if (V->hasInit()) {
2918 // Add the reference variable to the "trail".
2919 refVars.push_back(DR);
2920 return EvalVal(V->getInit(), refVars);
2921 }
2922 }
Mike Stump1eb44332009-09-09 15:08:12 +00002923
Ted Kremenek06de2762007-08-17 16:46:58 +00002924 return NULL;
2925 }
Mike Stump1eb44332009-09-09 15:08:12 +00002926
Ted Kremenek06de2762007-08-17 16:46:58 +00002927 case Stmt::UnaryOperatorClass: {
2928 // The only unary operator that make sense to handle here
2929 // is Deref. All others don't resolve to a "name." This includes
2930 // handling all sorts of rvalues passed to a unary operator.
2931 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002932
John McCall2de56d12010-08-25 11:45:40 +00002933 if (U->getOpcode() == UO_Deref)
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002934 return EvalAddr(U->getSubExpr(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002935
2936 return NULL;
2937 }
Mike Stump1eb44332009-09-09 15:08:12 +00002938
Ted Kremenek06de2762007-08-17 16:46:58 +00002939 case Stmt::ArraySubscriptExprClass: {
2940 // Array subscripts are potential references to data on the stack. We
2941 // retrieve the DeclRefExpr* for the array variable if it indeed
2942 // has local storage.
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002943 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002944 }
Mike Stump1eb44332009-09-09 15:08:12 +00002945
Ted Kremenek06de2762007-08-17 16:46:58 +00002946 case Stmt::ConditionalOperatorClass: {
2947 // For conditional operators we need to see if either the LHS or RHS are
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002948 // non-NULL Expr's. If one is non-NULL, we return it.
Ted Kremenek06de2762007-08-17 16:46:58 +00002949 ConditionalOperator *C = cast<ConditionalOperator>(E);
2950
Anders Carlsson39073232007-11-30 19:04:31 +00002951 // Handle the GNU extension for missing LHS.
2952 if (Expr *lhsExpr = C->getLHS())
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002953 if (Expr *LHS = EvalVal(lhsExpr, refVars))
Anders Carlsson39073232007-11-30 19:04:31 +00002954 return LHS;
2955
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002956 return EvalVal(C->getRHS(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002957 }
Mike Stump1eb44332009-09-09 15:08:12 +00002958
Ted Kremenek06de2762007-08-17 16:46:58 +00002959 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002960 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002961 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002962
Ted Kremenek06de2762007-08-17 16:46:58 +00002963 // Check for indirect access. We only want direct field accesses.
Ted Kremeneka423e812010-09-02 01:12:13 +00002964 if (M->isArrow())
Ted Kremenek06de2762007-08-17 16:46:58 +00002965 return NULL;
Ted Kremeneka423e812010-09-02 01:12:13 +00002966
2967 // Check whether the member type is itself a reference, in which case
2968 // we're not going to refer to the member, but to what the member refers to.
2969 if (M->getMemberDecl()->getType()->isReferenceType())
2970 return NULL;
2971
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002972 return EvalVal(M->getBase(), refVars);
Ted Kremenek06de2762007-08-17 16:46:58 +00002973 }
Mike Stump1eb44332009-09-09 15:08:12 +00002974
Douglas Gregor03e80032011-06-21 17:03:29 +00002975 case Stmt::MaterializeTemporaryExprClass:
2976 if (Expr *Result = EvalVal(
2977 cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
2978 refVars))
2979 return Result;
2980
2981 return E;
2982
Ted Kremenek06de2762007-08-17 16:46:58 +00002983 default:
Argyrios Kyrtzidis26e10be2010-11-30 22:57:32 +00002984 // Check that we don't return or take the address of a reference to a
2985 // temporary. This is only useful in C++.
2986 if (!E->isTypeDependent() && E->isRValue())
2987 return E;
2988
2989 // Everything else: we simply don't reason about them.
Ted Kremenek06de2762007-08-17 16:46:58 +00002990 return NULL;
2991 }
Ted Kremenek68957a92010-08-04 20:01:07 +00002992} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00002993}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002994
2995//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2996
2997/// Check for comparisons of floating point operands using != and ==.
2998/// Issue a warning if these are no self-comparisons, as they are not likely
2999/// to do what the programmer intended.
Richard Trieudd225092011-09-15 21:56:47 +00003000void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003001 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00003002
Richard Trieudd225092011-09-15 21:56:47 +00003003 Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
3004 Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003005
3006 // Special case: check for x == x (which is OK).
3007 // Do not emit warnings for such cases.
3008 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
3009 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
3010 if (DRL->getDecl() == DRR->getDecl())
3011 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003012
3013
Ted Kremenek1b500bb2007-11-29 00:59:04 +00003014 // Special case: check for comparisons against literals that can be exactly
3015 // represented by APFloat. In such cases, do not emit a warning. This
3016 // is a heuristic: often comparison against such literals are used to
3017 // detect if a value in a variable has not changed. This clearly can
3018 // lead to false negatives.
3019 if (EmitWarning) {
3020 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
3021 if (FLL->isExact())
3022 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003023 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00003024 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
3025 if (FLR->isExact())
3026 EmitWarning = false;
3027 }
3028 }
Mike Stump1eb44332009-09-09 15:08:12 +00003029
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003030 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00003031 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003032 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Richard Smith180f4792011-11-10 06:34:14 +00003033 if (CL->isBuiltinCall())
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003034 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003035
Sebastian Redl0eb23302009-01-19 00:08:26 +00003036 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003037 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Richard Smith180f4792011-11-10 06:34:14 +00003038 if (CR->isBuiltinCall())
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003039 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003040
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003041 // Emit the diagnostic.
3042 if (EmitWarning)
Richard Trieudd225092011-09-15 21:56:47 +00003043 Diag(Loc, diag::warn_floatingpoint_eq)
3044 << LHS->getSourceRange() << RHS->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00003045}
John McCallba26e582010-01-04 23:21:16 +00003046
John McCallf2370c92010-01-06 05:24:50 +00003047//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
3048//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00003049
John McCallf2370c92010-01-06 05:24:50 +00003050namespace {
John McCallba26e582010-01-04 23:21:16 +00003051
John McCallf2370c92010-01-06 05:24:50 +00003052/// Structure recording the 'active' range of an integer-valued
3053/// expression.
3054struct IntRange {
3055 /// The number of bits active in the int.
3056 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00003057
John McCallf2370c92010-01-06 05:24:50 +00003058 /// True if the int is known not to have negative values.
3059 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00003060
John McCallf2370c92010-01-06 05:24:50 +00003061 IntRange(unsigned Width, bool NonNegative)
3062 : Width(Width), NonNegative(NonNegative)
3063 {}
John McCallba26e582010-01-04 23:21:16 +00003064
John McCall1844a6e2010-11-10 23:38:19 +00003065 /// Returns the range of the bool type.
John McCallf2370c92010-01-06 05:24:50 +00003066 static IntRange forBoolType() {
3067 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00003068 }
3069
John McCall1844a6e2010-11-10 23:38:19 +00003070 /// Returns the range of an opaque value of the given integral type.
3071 static IntRange forValueOfType(ASTContext &C, QualType T) {
3072 return forValueOfCanonicalType(C,
3073 T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00003074 }
3075
John McCall1844a6e2010-11-10 23:38:19 +00003076 /// Returns the range of an opaque value of a canonical integral type.
3077 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
John McCallf2370c92010-01-06 05:24:50 +00003078 assert(T->isCanonicalUnqualified());
3079
3080 if (const VectorType *VT = dyn_cast<VectorType>(T))
3081 T = VT->getElementType().getTypePtr();
3082 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3083 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00003084
John McCall091f23f2010-11-09 22:22:12 +00003085 // For enum types, use the known bit width of the enumerators.
John McCall323ed742010-05-06 08:58:33 +00003086 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
3087 EnumDecl *Enum = ET->getDecl();
John McCall5e1cdac2011-10-07 06:10:15 +00003088 if (!Enum->isCompleteDefinition())
John McCall091f23f2010-11-09 22:22:12 +00003089 return IntRange(C.getIntWidth(QualType(T, 0)), false);
3090
John McCall323ed742010-05-06 08:58:33 +00003091 unsigned NumPositive = Enum->getNumPositiveBits();
3092 unsigned NumNegative = Enum->getNumNegativeBits();
3093
3094 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
3095 }
John McCallf2370c92010-01-06 05:24:50 +00003096
3097 const BuiltinType *BT = cast<BuiltinType>(T);
3098 assert(BT->isInteger());
3099
3100 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3101 }
3102
John McCall1844a6e2010-11-10 23:38:19 +00003103 /// Returns the "target" range of a canonical integral type, i.e.
3104 /// the range of values expressible in the type.
3105 ///
3106 /// This matches forValueOfCanonicalType except that enums have the
3107 /// full range of their type, not the range of their enumerators.
3108 static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
3109 assert(T->isCanonicalUnqualified());
3110
3111 if (const VectorType *VT = dyn_cast<VectorType>(T))
3112 T = VT->getElementType().getTypePtr();
3113 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
3114 T = CT->getElementType().getTypePtr();
3115 if (const EnumType *ET = dyn_cast<EnumType>(T))
Douglas Gregor69ff26b2011-09-08 23:29:05 +00003116 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
John McCall1844a6e2010-11-10 23:38:19 +00003117
3118 const BuiltinType *BT = cast<BuiltinType>(T);
3119 assert(BT->isInteger());
3120
3121 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
3122 }
3123
3124 /// Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00003125 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00003126 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00003127 L.NonNegative && R.NonNegative);
3128 }
3129
John McCall1844a6e2010-11-10 23:38:19 +00003130 /// Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00003131 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00003132 return IntRange(std::min(L.Width, R.Width),
3133 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00003134 }
3135};
3136
3137IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
3138 if (value.isSigned() && value.isNegative())
3139 return IntRange(value.getMinSignedBits(), false);
3140
3141 if (value.getBitWidth() > MaxWidth)
Jay Foad9f71a8f2010-12-07 08:25:34 +00003142 value = value.trunc(MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00003143
3144 // isNonNegative() just checks the sign bit without considering
3145 // signedness.
3146 return IntRange(value.getActiveBits(), true);
3147}
3148
John McCall0acc3112010-01-06 22:57:21 +00003149IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00003150 unsigned MaxWidth) {
3151 if (result.isInt())
3152 return GetValueRange(C, result.getInt(), MaxWidth);
3153
3154 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00003155 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
3156 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
3157 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
3158 R = IntRange::join(R, El);
3159 }
John McCallf2370c92010-01-06 05:24:50 +00003160 return R;
3161 }
3162
3163 if (result.isComplexInt()) {
3164 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
3165 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
3166 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00003167 }
3168
3169 // This can happen with lossless casts to intptr_t of "based" lvalues.
3170 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00003171 // FIXME: The only reason we need to pass the type in here is to get
3172 // the sign right on this one case. It would be nice if APValue
3173 // preserved this.
Eli Friedman65639282012-01-04 23:13:47 +00003174 assert(result.isLValue() || result.isAddrLabelDiff());
Douglas Gregor5e9ebb32011-05-21 16:28:01 +00003175 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
John McCall51313c32010-01-04 23:31:57 +00003176}
John McCallf2370c92010-01-06 05:24:50 +00003177
3178/// Pseudo-evaluate the given integer expression, estimating the
3179/// range of values it might take.
3180///
3181/// \param MaxWidth - the width to which the value will be truncated
3182IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
3183 E = E->IgnoreParens();
3184
3185 // Try a full evaluation first.
3186 Expr::EvalResult result;
Richard Smith51f47082011-10-29 00:50:52 +00003187 if (E->EvaluateAsRValue(result, C))
John McCall0acc3112010-01-06 22:57:21 +00003188 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00003189
3190 // I think we only want to look through implicit casts here; if the
3191 // user has an explicit widening cast, we should treat the value as
3192 // being of the new, wider type.
3193 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
Eli Friedmanb17ee5b2011-12-15 02:41:52 +00003194 if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
John McCallf2370c92010-01-06 05:24:50 +00003195 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
3196
John McCall1844a6e2010-11-10 23:38:19 +00003197 IntRange OutputTypeRange = IntRange::forValueOfType(C, CE->getType());
John McCallf2370c92010-01-06 05:24:50 +00003198
John McCall2de56d12010-08-25 11:45:40 +00003199 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
John McCall60fad452010-01-06 22:07:33 +00003200
John McCallf2370c92010-01-06 05:24:50 +00003201 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00003202 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00003203 return OutputTypeRange;
3204
3205 IntRange SubRange
3206 = GetExprRange(C, CE->getSubExpr(),
3207 std::min(MaxWidth, OutputTypeRange.Width));
3208
3209 // Bail out if the subexpr's range is as wide as the cast type.
3210 if (SubRange.Width >= OutputTypeRange.Width)
3211 return OutputTypeRange;
3212
3213 // Otherwise, we take the smaller width, and we're non-negative if
3214 // either the output type or the subexpr is.
3215 return IntRange(SubRange.Width,
3216 SubRange.NonNegative || OutputTypeRange.NonNegative);
3217 }
3218
3219 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
3220 // If we can fold the condition, just take that operand.
3221 bool CondResult;
3222 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
3223 return GetExprRange(C, CondResult ? CO->getTrueExpr()
3224 : CO->getFalseExpr(),
3225 MaxWidth);
3226
3227 // Otherwise, conservatively merge.
3228 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
3229 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
3230 return IntRange::join(L, R);
3231 }
3232
3233 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3234 switch (BO->getOpcode()) {
3235
3236 // Boolean-valued operations are single-bit and positive.
John McCall2de56d12010-08-25 11:45:40 +00003237 case BO_LAnd:
3238 case BO_LOr:
3239 case BO_LT:
3240 case BO_GT:
3241 case BO_LE:
3242 case BO_GE:
3243 case BO_EQ:
3244 case BO_NE:
John McCallf2370c92010-01-06 05:24:50 +00003245 return IntRange::forBoolType();
3246
John McCall862ff872011-07-13 06:35:24 +00003247 // The type of the assignments is the type of the LHS, so the RHS
3248 // is not necessarily the same type.
John McCall2de56d12010-08-25 11:45:40 +00003249 case BO_MulAssign:
3250 case BO_DivAssign:
3251 case BO_RemAssign:
3252 case BO_AddAssign:
3253 case BO_SubAssign:
John McCall862ff872011-07-13 06:35:24 +00003254 case BO_XorAssign:
3255 case BO_OrAssign:
3256 // TODO: bitfields?
John McCall1844a6e2010-11-10 23:38:19 +00003257 return IntRange::forValueOfType(C, E->getType());
John McCallc0cd21d2010-02-23 19:22:29 +00003258
John McCall862ff872011-07-13 06:35:24 +00003259 // Simple assignments just pass through the RHS, which will have
3260 // been coerced to the LHS type.
3261 case BO_Assign:
3262 // TODO: bitfields?
3263 return GetExprRange(C, BO->getRHS(), MaxWidth);
3264
John McCallf2370c92010-01-06 05:24:50 +00003265 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00003266 case BO_PtrMemD:
3267 case BO_PtrMemI:
John McCall1844a6e2010-11-10 23:38:19 +00003268 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003269
John McCall60fad452010-01-06 22:07:33 +00003270 // Bitwise-and uses the *infinum* of the two source ranges.
John McCall2de56d12010-08-25 11:45:40 +00003271 case BO_And:
3272 case BO_AndAssign:
John McCall60fad452010-01-06 22:07:33 +00003273 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
3274 GetExprRange(C, BO->getRHS(), MaxWidth));
3275
John McCallf2370c92010-01-06 05:24:50 +00003276 // Left shift gets black-listed based on a judgement call.
John McCall2de56d12010-08-25 11:45:40 +00003277 case BO_Shl:
John McCall3aae6092010-04-07 01:14:35 +00003278 // ...except that we want to treat '1 << (blah)' as logically
3279 // positive. It's an important idiom.
3280 if (IntegerLiteral *I
3281 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
3282 if (I->getValue() == 1) {
John McCall1844a6e2010-11-10 23:38:19 +00003283 IntRange R = IntRange::forValueOfType(C, E->getType());
John McCall3aae6092010-04-07 01:14:35 +00003284 return IntRange(R.Width, /*NonNegative*/ true);
3285 }
3286 }
3287 // fallthrough
3288
John McCall2de56d12010-08-25 11:45:40 +00003289 case BO_ShlAssign:
John McCall1844a6e2010-11-10 23:38:19 +00003290 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003291
John McCall60fad452010-01-06 22:07:33 +00003292 // Right shift by a constant can narrow its left argument.
John McCall2de56d12010-08-25 11:45:40 +00003293 case BO_Shr:
3294 case BO_ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00003295 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3296
3297 // If the shift amount is a positive constant, drop the width by
3298 // that much.
3299 llvm::APSInt shift;
3300 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
3301 shift.isNonNegative()) {
3302 unsigned zext = shift.getZExtValue();
3303 if (zext >= L.Width)
3304 L.Width = (L.NonNegative ? 0 : 1);
3305 else
3306 L.Width -= zext;
3307 }
3308
3309 return L;
3310 }
3311
3312 // Comma acts as its right operand.
John McCall2de56d12010-08-25 11:45:40 +00003313 case BO_Comma:
John McCallf2370c92010-01-06 05:24:50 +00003314 return GetExprRange(C, BO->getRHS(), MaxWidth);
3315
John McCall60fad452010-01-06 22:07:33 +00003316 // Black-list pointer subtractions.
John McCall2de56d12010-08-25 11:45:40 +00003317 case BO_Sub:
John McCallf2370c92010-01-06 05:24:50 +00003318 if (BO->getLHS()->getType()->isPointerType())
John McCall1844a6e2010-11-10 23:38:19 +00003319 return IntRange::forValueOfType(C, E->getType());
John McCall00fe7612011-07-14 22:39:48 +00003320 break;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00003321
John McCall00fe7612011-07-14 22:39:48 +00003322 // The width of a division result is mostly determined by the size
3323 // of the LHS.
3324 case BO_Div: {
3325 // Don't 'pre-truncate' the operands.
3326 unsigned opWidth = C.getIntWidth(E->getType());
3327 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3328
3329 // If the divisor is constant, use that.
3330 llvm::APSInt divisor;
3331 if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
3332 unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
3333 if (log2 >= L.Width)
3334 L.Width = (L.NonNegative ? 0 : 1);
3335 else
3336 L.Width = std::min(L.Width - log2, MaxWidth);
3337 return L;
3338 }
3339
3340 // Otherwise, just use the LHS's width.
3341 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3342 return IntRange(L.Width, L.NonNegative && R.NonNegative);
3343 }
3344
3345 // The result of a remainder can't be larger than the result of
3346 // either side.
3347 case BO_Rem: {
3348 // Don't 'pre-truncate' the operands.
3349 unsigned opWidth = C.getIntWidth(E->getType());
3350 IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
3351 IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
3352
3353 IntRange meet = IntRange::meet(L, R);
3354 meet.Width = std::min(meet.Width, MaxWidth);
3355 return meet;
3356 }
3357
3358 // The default behavior is okay for these.
3359 case BO_Mul:
3360 case BO_Add:
3361 case BO_Xor:
3362 case BO_Or:
John McCallf2370c92010-01-06 05:24:50 +00003363 break;
3364 }
3365
John McCall00fe7612011-07-14 22:39:48 +00003366 // The default case is to treat the operation as if it were closed
3367 // on the narrowest type that encompasses both operands.
John McCallf2370c92010-01-06 05:24:50 +00003368 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
3369 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
3370 return IntRange::join(L, R);
3371 }
3372
3373 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
3374 switch (UO->getOpcode()) {
3375 // Boolean-valued operations are white-listed.
John McCall2de56d12010-08-25 11:45:40 +00003376 case UO_LNot:
John McCallf2370c92010-01-06 05:24:50 +00003377 return IntRange::forBoolType();
3378
3379 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00003380 case UO_Deref:
3381 case UO_AddrOf: // should be impossible
John McCall1844a6e2010-11-10 23:38:19 +00003382 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003383
3384 default:
3385 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
3386 }
3387 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00003388
3389 if (dyn_cast<OffsetOfExpr>(E)) {
John McCall1844a6e2010-11-10 23:38:19 +00003390 IntRange::forValueOfType(C, E->getType());
Douglas Gregor8ecdb652010-04-28 22:16:22 +00003391 }
John McCallf2370c92010-01-06 05:24:50 +00003392
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003393 if (FieldDecl *BitField = E->getBitField())
3394 return IntRange(BitField->getBitWidthValue(C),
Douglas Gregor5e9ebb32011-05-21 16:28:01 +00003395 BitField->getType()->isUnsignedIntegerOrEnumerationType());
John McCallf2370c92010-01-06 05:24:50 +00003396
John McCall1844a6e2010-11-10 23:38:19 +00003397 return IntRange::forValueOfType(C, E->getType());
John McCallf2370c92010-01-06 05:24:50 +00003398}
John McCall51313c32010-01-04 23:31:57 +00003399
John McCall323ed742010-05-06 08:58:33 +00003400IntRange GetExprRange(ASTContext &C, Expr *E) {
3401 return GetExprRange(C, E, C.getIntWidth(E->getType()));
3402}
3403
John McCall51313c32010-01-04 23:31:57 +00003404/// Checks whether the given value, which currently has the given
3405/// source semantics, has the same value when coerced through the
3406/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00003407bool IsSameFloatAfterCast(const llvm::APFloat &value,
3408 const llvm::fltSemantics &Src,
3409 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00003410 llvm::APFloat truncated = value;
3411
3412 bool ignored;
3413 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
3414 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
3415
3416 return truncated.bitwiseIsEqual(value);
3417}
3418
3419/// Checks whether the given value, which currently has the given
3420/// source semantics, has the same value when coerced through the
3421/// target semantics.
3422///
3423/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00003424bool IsSameFloatAfterCast(const APValue &value,
3425 const llvm::fltSemantics &Src,
3426 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00003427 if (value.isFloat())
3428 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
3429
3430 if (value.isVector()) {
3431 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
3432 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
3433 return false;
3434 return true;
3435 }
3436
3437 assert(value.isComplexFloat());
3438 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
3439 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
3440}
3441
John McCallb4eb64d2010-10-08 02:01:28 +00003442void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
John McCall323ed742010-05-06 08:58:33 +00003443
Ted Kremeneke3b159c2010-09-23 21:43:44 +00003444static bool IsZero(Sema &S, Expr *E) {
3445 // Suppress cases where we are comparing against an enum constant.
3446 if (const DeclRefExpr *DR =
3447 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
3448 if (isa<EnumConstantDecl>(DR->getDecl()))
3449 return false;
3450
3451 // Suppress cases where the '0' value is expanded from a macro.
3452 if (E->getLocStart().isMacroID())
3453 return false;
3454
John McCall323ed742010-05-06 08:58:33 +00003455 llvm::APSInt Value;
3456 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
3457}
3458
John McCall372e1032010-10-06 00:25:24 +00003459static bool HasEnumType(Expr *E) {
3460 // Strip off implicit integral promotions.
3461 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00003462 if (ICE->getCastKind() != CK_IntegralCast &&
3463 ICE->getCastKind() != CK_NoOp)
John McCall372e1032010-10-06 00:25:24 +00003464 break;
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00003465 E = ICE->getSubExpr();
John McCall372e1032010-10-06 00:25:24 +00003466 }
3467
3468 return E->getType()->isEnumeralType();
3469}
3470
John McCall323ed742010-05-06 08:58:33 +00003471void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00003472 BinaryOperatorKind op = E->getOpcode();
Douglas Gregor14af91a2010-12-21 07:22:56 +00003473 if (E->isValueDependent())
3474 return;
3475
John McCall2de56d12010-08-25 11:45:40 +00003476 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00003477 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003478 << "< 0" << "false" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00003479 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003480 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00003481 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003482 << ">= 0" << "true" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00003483 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003484 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00003485 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003486 << "0 >" << "false" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00003487 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00003488 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00003489 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00003490 << "0 <=" << "true" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00003491 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
3492 }
3493}
3494
3495/// Analyze the operands of the given comparison. Implements the
3496/// fallback case from AnalyzeComparison.
3497void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallb4eb64d2010-10-08 02:01:28 +00003498 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3499 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCall323ed742010-05-06 08:58:33 +00003500}
John McCall51313c32010-01-04 23:31:57 +00003501
John McCallba26e582010-01-04 23:21:16 +00003502/// \brief Implements -Wsign-compare.
3503///
Richard Trieudd225092011-09-15 21:56:47 +00003504/// \param E the binary operator to check for warnings
John McCall323ed742010-05-06 08:58:33 +00003505void AnalyzeComparison(Sema &S, BinaryOperator *E) {
3506 // The type the comparison is being performed in.
3507 QualType T = E->getLHS()->getType();
3508 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
3509 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00003510
John McCall323ed742010-05-06 08:58:33 +00003511 // We don't do anything special if this isn't an unsigned integral
3512 // comparison: we're only interested in integral comparisons, and
3513 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregor3e026e32011-02-19 22:34:59 +00003514 //
3515 // We also don't care about value-dependent expressions or expressions
3516 // whose result is a constant.
3517 if (!T->hasUnsignedIntegerRepresentation()
3518 || E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
John McCall323ed742010-05-06 08:58:33 +00003519 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00003520
Richard Trieudd225092011-09-15 21:56:47 +00003521 Expr *LHS = E->getLHS()->IgnoreParenImpCasts();
3522 Expr *RHS = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00003523
John McCall323ed742010-05-06 08:58:33 +00003524 // Check to see if one of the (unmodified) operands is of different
3525 // signedness.
3526 Expr *signedOperand, *unsignedOperand;
Richard Trieudd225092011-09-15 21:56:47 +00003527 if (LHS->getType()->hasSignedIntegerRepresentation()) {
3528 assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00003529 "unsigned comparison between two signed integer expressions?");
Richard Trieudd225092011-09-15 21:56:47 +00003530 signedOperand = LHS;
3531 unsignedOperand = RHS;
3532 } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
3533 signedOperand = RHS;
3534 unsignedOperand = LHS;
John McCallba26e582010-01-04 23:21:16 +00003535 } else {
John McCall323ed742010-05-06 08:58:33 +00003536 CheckTrivialUnsignedComparison(S, E);
3537 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00003538 }
3539
John McCall323ed742010-05-06 08:58:33 +00003540 // Otherwise, calculate the effective range of the signed operand.
3541 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00003542
John McCall323ed742010-05-06 08:58:33 +00003543 // Go ahead and analyze implicit conversions in the operands. Note
3544 // that we skip the implicit conversions on both sides.
Richard Trieudd225092011-09-15 21:56:47 +00003545 AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
3546 AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
John McCallba26e582010-01-04 23:21:16 +00003547
John McCall323ed742010-05-06 08:58:33 +00003548 // If the signed range is non-negative, -Wsign-compare won't fire,
3549 // but we should still check for comparisons which are always true
3550 // or false.
3551 if (signedRange.NonNegative)
3552 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00003553
3554 // For (in)equality comparisons, if the unsigned operand is a
3555 // constant which cannot collide with a overflowed signed operand,
3556 // then reinterpreting the signed operand as unsigned will not
3557 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00003558 if (E->isEqualityOp()) {
3559 unsigned comparisonWidth = S.Context.getIntWidth(T);
3560 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00003561
John McCall323ed742010-05-06 08:58:33 +00003562 // We should never be unable to prove that the unsigned operand is
3563 // non-negative.
3564 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
3565
3566 if (unsignedRange.Width < comparisonWidth)
3567 return;
3568 }
3569
3570 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
Richard Trieudd225092011-09-15 21:56:47 +00003571 << LHS->getType() << RHS->getType()
3572 << LHS->getSourceRange() << RHS->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00003573}
3574
John McCall15d7d122010-11-11 03:21:53 +00003575/// Analyzes an attempt to assign the given value to a bitfield.
3576///
3577/// Returns true if there was something fishy about the attempt.
3578bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
3579 SourceLocation InitLoc) {
3580 assert(Bitfield->isBitField());
3581 if (Bitfield->isInvalidDecl())
3582 return false;
3583
John McCall91b60142010-11-11 05:33:51 +00003584 // White-list bool bitfields.
3585 if (Bitfield->getType()->isBooleanType())
3586 return false;
3587
Douglas Gregor46ff3032011-02-04 13:09:01 +00003588 // Ignore value- or type-dependent expressions.
3589 if (Bitfield->getBitWidth()->isValueDependent() ||
3590 Bitfield->getBitWidth()->isTypeDependent() ||
3591 Init->isValueDependent() ||
3592 Init->isTypeDependent())
3593 return false;
3594
John McCall15d7d122010-11-11 03:21:53 +00003595 Expr *OriginalInit = Init->IgnoreParenImpCasts();
3596
Richard Smith80d4b552011-12-28 19:48:30 +00003597 llvm::APSInt Value;
3598 if (!OriginalInit->EvaluateAsInt(Value, S.Context, Expr::SE_AllowSideEffects))
John McCall15d7d122010-11-11 03:21:53 +00003599 return false;
3600
John McCall15d7d122010-11-11 03:21:53 +00003601 unsigned OriginalWidth = Value.getBitWidth();
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003602 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
John McCall15d7d122010-11-11 03:21:53 +00003603
3604 if (OriginalWidth <= FieldWidth)
3605 return false;
3606
Jay Foad9f71a8f2010-12-07 08:25:34 +00003607 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
John McCall15d7d122010-11-11 03:21:53 +00003608
3609 // It's fairly common to write values into signed bitfields
3610 // that, if sign-extended, would end up becoming a different
3611 // value. We don't want to warn about that.
3612 if (Value.isSigned() && Value.isNegative())
Jay Foad9f71a8f2010-12-07 08:25:34 +00003613 TruncatedValue = TruncatedValue.sext(OriginalWidth);
John McCall15d7d122010-11-11 03:21:53 +00003614 else
Jay Foad9f71a8f2010-12-07 08:25:34 +00003615 TruncatedValue = TruncatedValue.zext(OriginalWidth);
John McCall15d7d122010-11-11 03:21:53 +00003616
3617 if (Value == TruncatedValue)
3618 return false;
3619
3620 std::string PrettyValue = Value.toString(10);
3621 std::string PrettyTrunc = TruncatedValue.toString(10);
3622
3623 S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
3624 << PrettyValue << PrettyTrunc << OriginalInit->getType()
3625 << Init->getSourceRange();
3626
3627 return true;
3628}
3629
John McCallbeb22aa2010-11-09 23:24:47 +00003630/// Analyze the given simple or compound assignment for warning-worthy
3631/// operations.
3632void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
3633 // Just recurse on the LHS.
3634 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
3635
3636 // We want to recurse on the RHS as normal unless we're assigning to
3637 // a bitfield.
3638 if (FieldDecl *Bitfield = E->getLHS()->getBitField()) {
John McCall15d7d122010-11-11 03:21:53 +00003639 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
3640 E->getOperatorLoc())) {
3641 // Recurse, ignoring any implicit conversions on the RHS.
3642 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
3643 E->getOperatorLoc());
John McCallbeb22aa2010-11-09 23:24:47 +00003644 }
3645 }
3646
3647 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
3648}
3649
John McCall51313c32010-01-04 23:31:57 +00003650/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003651void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
3652 SourceLocation CContext, unsigned diag) {
3653 S.Diag(E->getExprLoc(), diag)
3654 << SourceType << T << E->getSourceRange() << SourceRange(CContext);
3655}
3656
Chandler Carruthe1b02e02011-04-05 06:47:57 +00003657/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
3658void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
3659 unsigned diag) {
3660 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag);
3661}
3662
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003663/// Diagnose an implicit cast from a literal expression. Does not warn when the
3664/// cast wouldn't lose information.
Chandler Carruthf65076e2011-04-10 08:36:24 +00003665void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
3666 SourceLocation CContext) {
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003667 // Try to convert the literal exactly to an integer. If we can, don't warn.
Chandler Carruthf65076e2011-04-10 08:36:24 +00003668 bool isExact = false;
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003669 const llvm::APFloat &Value = FL->getValue();
Jeffrey Yasskin3e1ef782011-07-15 17:03:07 +00003670 llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
3671 T->hasUnsignedIntegerRepresentation());
3672 if (Value.convertToInteger(IntegerValue,
Chandler Carruthf65076e2011-04-10 08:36:24 +00003673 llvm::APFloat::rmTowardZero, &isExact)
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003674 == llvm::APFloat::opOK && isExact)
Chandler Carruthf65076e2011-04-10 08:36:24 +00003675 return;
3676
Matt Beaumont-Gay9ce63772011-10-14 15:36:25 +00003677 S.Diag(FL->getExprLoc(), diag::warn_impcast_literal_float_to_integer)
3678 << FL->getType() << T << FL->getSourceRange() << SourceRange(CContext);
Chandler Carruthf65076e2011-04-10 08:36:24 +00003679}
3680
John McCall091f23f2010-11-09 22:22:12 +00003681std::string PrettyPrintInRange(const llvm::APSInt &Value, IntRange Range) {
3682 if (!Range.Width) return "0";
3683
3684 llvm::APSInt ValueInRange = Value;
3685 ValueInRange.setIsSigned(!Range.NonNegative);
Jay Foad9f71a8f2010-12-07 08:25:34 +00003686 ValueInRange = ValueInRange.trunc(Range.Width);
John McCall091f23f2010-11-09 22:22:12 +00003687 return ValueInRange.toString(10);
3688}
3689
John McCall323ed742010-05-06 08:58:33 +00003690void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00003691 SourceLocation CC, bool *ICContext = 0) {
John McCall323ed742010-05-06 08:58:33 +00003692 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00003693
John McCall323ed742010-05-06 08:58:33 +00003694 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
3695 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
3696 if (Source == Target) return;
3697 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00003698
Chandler Carruth108f7562011-07-26 05:40:03 +00003699 // If the conversion context location is invalid don't complain. We also
3700 // don't want to emit a warning if the issue occurs from the expansion of
3701 // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
3702 // delay this check as long as possible. Once we detect we are in that
3703 // scenario, we just return.
Ted Kremenekef9ff882011-03-10 20:03:42 +00003704 if (CC.isInvalid())
John McCallb4eb64d2010-10-08 02:01:28 +00003705 return;
3706
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00003707 // Diagnose implicit casts to bool.
3708 if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
3709 if (isa<StringLiteral>(E))
3710 // Warn on string literal to bool. Checks for string literals in logical
3711 // expressions, for instances, assert(0 && "error here"), is prevented
3712 // by a check in AnalyzeImplicitConversions().
3713 return DiagnoseImpCast(S, E, T, CC,
3714 diag::warn_impcast_string_literal_to_bool);
Lang Hamese14ca9f2011-12-05 20:49:50 +00003715 if (Source->isFunctionType()) {
3716 // Warn on function to bool. Checks free functions and static member
3717 // functions. Weakly imported functions are excluded from the check,
3718 // since it's common to test their value to check whether the linker
3719 // found a definition for them.
3720 ValueDecl *D = 0;
3721 if (DeclRefExpr* R = dyn_cast<DeclRefExpr>(E)) {
3722 D = R->getDecl();
3723 } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
3724 D = M->getMemberDecl();
3725 }
3726
3727 if (D && !D->isWeak()) {
Richard Trieu26b45d82011-12-06 04:48:01 +00003728 if (FunctionDecl* F = dyn_cast<FunctionDecl>(D)) {
3729 S.Diag(E->getExprLoc(), diag::warn_impcast_function_to_bool)
3730 << F << E->getSourceRange() << SourceRange(CC);
David Blaikie2def7732011-12-09 21:42:37 +00003731 S.Diag(E->getExprLoc(), diag::note_function_to_bool_silence)
3732 << FixItHint::CreateInsertion(E->getExprLoc(), "&");
3733 QualType ReturnType;
3734 UnresolvedSet<4> NonTemplateOverloads;
3735 S.isExprCallable(*E, ReturnType, NonTemplateOverloads);
3736 if (!ReturnType.isNull()
3737 && ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
3738 S.Diag(E->getExprLoc(), diag::note_function_to_bool_call)
3739 << FixItHint::CreateInsertion(
3740 S.getPreprocessor().getLocForEndOfToken(E->getLocEnd()), "()");
Richard Trieu26b45d82011-12-06 04:48:01 +00003741 return;
3742 }
Lang Hamese14ca9f2011-12-05 20:49:50 +00003743 }
3744 }
David Blaikiee37cdc42011-09-29 04:06:47 +00003745 return; // Other casts to bool are not checked.
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00003746 }
John McCall51313c32010-01-04 23:31:57 +00003747
3748 // Strip vector types.
3749 if (isa<VectorType>(Source)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003750 if (!isa<VectorType>(Target)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003751 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003752 return;
John McCallb4eb64d2010-10-08 02:01:28 +00003753 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003754 }
Chris Lattnerb792b302011-06-14 04:51:15 +00003755
3756 // If the vector cast is cast between two vectors of the same size, it is
3757 // a bitcast, not a conversion.
3758 if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
3759 return;
John McCall51313c32010-01-04 23:31:57 +00003760
3761 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
3762 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
3763 }
3764
3765 // Strip complex types.
3766 if (isa<ComplexType>(Source)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003767 if (!isa<ComplexType>(Target)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003768 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003769 return;
3770
John McCallb4eb64d2010-10-08 02:01:28 +00003771 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003772 }
John McCall51313c32010-01-04 23:31:57 +00003773
3774 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
3775 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
3776 }
3777
3778 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
3779 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
3780
3781 // If the source is floating point...
3782 if (SourceBT && SourceBT->isFloatingPoint()) {
3783 // ...and the target is floating point...
3784 if (TargetBT && TargetBT->isFloatingPoint()) {
3785 // ...then warn if we're dropping FP rank.
3786
3787 // Builtin FP kinds are ordered by increasing FP rank.
3788 if (SourceBT->getKind() > TargetBT->getKind()) {
3789 // Don't warn about float constants that are precisely
3790 // representable in the target type.
3791 Expr::EvalResult result;
Richard Smith51f47082011-10-29 00:50:52 +00003792 if (E->EvaluateAsRValue(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00003793 // Value might be a float, a float vector, or a float complex.
3794 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00003795 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
3796 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00003797 return;
3798 }
3799
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003800 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003801 return;
3802
John McCallb4eb64d2010-10-08 02:01:28 +00003803 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00003804 }
3805 return;
3806 }
3807
Ted Kremenekef9ff882011-03-10 20:03:42 +00003808 // If the target is integral, always warn.
Chandler Carrutha5b93322011-02-17 11:05:49 +00003809 if ((TargetBT && TargetBT->isInteger())) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003810 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003811 return;
3812
Chandler Carrutha5b93322011-02-17 11:05:49 +00003813 Expr *InnerE = E->IgnoreParenImpCasts();
Matt Beaumont-Gay634c8af2011-09-08 22:30:47 +00003814 // We also want to warn on, e.g., "int i = -1.234"
3815 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
3816 if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
3817 InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
3818
Chandler Carruthf65076e2011-04-10 08:36:24 +00003819 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
3820 DiagnoseFloatingLiteralImpCast(S, FL, T, CC);
Chandler Carrutha5b93322011-02-17 11:05:49 +00003821 } else {
3822 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
3823 }
3824 }
John McCall51313c32010-01-04 23:31:57 +00003825
3826 return;
3827 }
3828
John McCallf2370c92010-01-06 05:24:50 +00003829 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00003830 return;
3831
Richard Trieu1838ca52011-05-29 19:59:02 +00003832 if ((E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)
3833 == Expr::NPCK_GNUNull) && Target->isIntegerType()) {
3834 S.Diag(E->getExprLoc(), diag::warn_impcast_null_pointer_to_integer)
3835 << E->getSourceRange() << clang::SourceRange(CC);
3836 return;
3837 }
3838
John McCall323ed742010-05-06 08:58:33 +00003839 IntRange SourceRange = GetExprRange(S.Context, E);
John McCall1844a6e2010-11-10 23:38:19 +00003840 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00003841
3842 if (SourceRange.Width > TargetRange.Width) {
John McCall091f23f2010-11-09 22:22:12 +00003843 // If the source is a constant, use a default-on diagnostic.
3844 // TODO: this should happen for bitfield stores, too.
3845 llvm::APSInt Value(32);
3846 if (E->isIntegerConstantExpr(Value, S.Context)) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003847 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003848 return;
3849
John McCall091f23f2010-11-09 22:22:12 +00003850 std::string PrettySourceValue = Value.toString(10);
3851 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
3852
Ted Kremenek5e745da2011-10-22 02:37:33 +00003853 S.DiagRuntimeBehavior(E->getExprLoc(), E,
3854 S.PDiag(diag::warn_impcast_integer_precision_constant)
3855 << PrettySourceValue << PrettyTargetValue
3856 << E->getType() << T << E->getSourceRange()
3857 << clang::SourceRange(CC));
John McCall091f23f2010-11-09 22:22:12 +00003858 return;
3859 }
3860
Chris Lattnerb792b302011-06-14 04:51:15 +00003861 // People want to build with -Wshorten-64-to-32 and not -Wconversion.
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003862 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003863 return;
3864
John McCallf2370c92010-01-06 05:24:50 +00003865 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallb4eb64d2010-10-08 02:01:28 +00003866 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
3867 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCall323ed742010-05-06 08:58:33 +00003868 }
3869
3870 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
3871 (!TargetRange.NonNegative && SourceRange.NonNegative &&
3872 SourceRange.Width == TargetRange.Width)) {
Ted Kremenekef9ff882011-03-10 20:03:42 +00003873
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003874 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003875 return;
3876
John McCall323ed742010-05-06 08:58:33 +00003877 unsigned DiagID = diag::warn_impcast_integer_sign;
3878
3879 // Traditionally, gcc has warned about this under -Wsign-compare.
3880 // We also want to warn about it in -Wconversion.
3881 // So if -Wconversion is off, use a completely identical diagnostic
3882 // in the sign-compare group.
3883 // The conditional-checking code will
3884 if (ICContext) {
3885 DiagID = diag::warn_impcast_integer_sign_conditional;
3886 *ICContext = true;
3887 }
3888
John McCallb4eb64d2010-10-08 02:01:28 +00003889 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall51313c32010-01-04 23:31:57 +00003890 }
3891
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003892 // Diagnose conversions between different enumeration types.
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003893 // In C, we pretend that the type of an EnumConstantDecl is its enumeration
3894 // type, to give us better diagnostics.
3895 QualType SourceType = E->getType();
3896 if (!S.getLangOptions().CPlusPlus) {
3897 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
3898 if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3899 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
3900 SourceType = S.Context.getTypeDeclType(Enum);
3901 Source = S.Context.getCanonicalType(SourceType).getTypePtr();
3902 }
3903 }
3904
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003905 if (const EnumType *SourceEnum = Source->getAs<EnumType>())
3906 if (const EnumType *TargetEnum = Target->getAs<EnumType>())
3907 if ((SourceEnum->getDecl()->getIdentifier() ||
Richard Smith162e1c12011-04-15 14:24:37 +00003908 SourceEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003909 (TargetEnum->getDecl()->getIdentifier() ||
Richard Smith162e1c12011-04-15 14:24:37 +00003910 TargetEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Ted Kremenekef9ff882011-03-10 20:03:42 +00003911 SourceEnum != TargetEnum) {
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00003912 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenekef9ff882011-03-10 20:03:42 +00003913 return;
3914
Douglas Gregor5a5b38f2011-03-12 00:14:31 +00003915 return DiagnoseImpCast(S, E, SourceType, T, CC,
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003916 diag::warn_impcast_different_enum_types);
Ted Kremenekef9ff882011-03-10 20:03:42 +00003917 }
Douglas Gregor284cc8d2011-02-22 02:45:07 +00003918
John McCall51313c32010-01-04 23:31:57 +00003919 return;
3920}
3921
John McCall323ed742010-05-06 08:58:33 +00003922void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
3923
3924void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00003925 SourceLocation CC, bool &ICContext) {
John McCall323ed742010-05-06 08:58:33 +00003926 E = E->IgnoreParenImpCasts();
3927
3928 if (isa<ConditionalOperator>(E))
3929 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
3930
John McCallb4eb64d2010-10-08 02:01:28 +00003931 AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00003932 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00003933 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCall323ed742010-05-06 08:58:33 +00003934 return;
3935}
3936
3937void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
John McCallb4eb64d2010-10-08 02:01:28 +00003938 SourceLocation CC = E->getQuestionLoc();
3939
3940 AnalyzeImplicitConversions(S, E->getCond(), CC);
John McCall323ed742010-05-06 08:58:33 +00003941
3942 bool Suspicious = false;
John McCallb4eb64d2010-10-08 02:01:28 +00003943 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
3944 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCall323ed742010-05-06 08:58:33 +00003945
3946 // If -Wconversion would have warned about either of the candidates
3947 // for a signedness conversion to the context type...
3948 if (!Suspicious) return;
3949
3950 // ...but it's currently ignored...
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003951 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional,
3952 CC))
John McCall323ed742010-05-06 08:58:33 +00003953 return;
3954
John McCall323ed742010-05-06 08:58:33 +00003955 // ...then check whether it would have warned about either of the
3956 // candidates for a signedness conversion to the condition type.
Richard Trieu52541612011-07-21 02:46:28 +00003957 if (E->getType() == T) return;
3958
3959 Suspicious = false;
3960 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
3961 E->getType(), CC, &Suspicious);
3962 if (!Suspicious)
3963 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallb4eb64d2010-10-08 02:01:28 +00003964 E->getType(), CC, &Suspicious);
John McCall323ed742010-05-06 08:58:33 +00003965}
3966
3967/// AnalyzeImplicitConversions - Find and report any interesting
3968/// implicit conversions in the given expression. There are a couple
3969/// of competing diagnostics here, -Wconversion and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00003970void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00003971 QualType T = OrigE->getType();
3972 Expr *E = OrigE->IgnoreParenImpCasts();
3973
Douglas Gregorf8b6e152011-10-10 17:38:18 +00003974 if (E->isTypeDependent() || E->isValueDependent())
3975 return;
3976
John McCall323ed742010-05-06 08:58:33 +00003977 // For conditional operators, we analyze the arguments as if they
3978 // were being fed directly into the output.
3979 if (isa<ConditionalOperator>(E)) {
3980 ConditionalOperator *CO = cast<ConditionalOperator>(E);
3981 CheckConditionalOperator(S, CO, T);
3982 return;
3983 }
3984
3985 // Go ahead and check any implicit conversions we might have skipped.
3986 // The non-canonical typecheck is just an optimization;
3987 // CheckImplicitConversion will filter out dead implicit conversions.
3988 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00003989 CheckImplicitConversion(S, E, T, CC);
John McCall323ed742010-05-06 08:58:33 +00003990
3991 // Now continue drilling into this expression.
3992
3993 // Skip past explicit casts.
3994 if (isa<ExplicitCastExpr>(E)) {
3995 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
John McCallb4eb64d2010-10-08 02:01:28 +00003996 return AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00003997 }
3998
John McCallbeb22aa2010-11-09 23:24:47 +00003999 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
4000 // Do a somewhat different check with comparison operators.
4001 if (BO->isComparisonOp())
4002 return AnalyzeComparison(S, BO);
4003
4004 // And with assignments and compound assignments.
4005 if (BO->isAssignmentOp())
4006 return AnalyzeAssignment(S, BO);
4007 }
John McCall323ed742010-05-06 08:58:33 +00004008
4009 // These break the otherwise-useful invariant below. Fortunately,
4010 // we don't really need to recurse into them, because any internal
4011 // expressions should have been analyzed already when they were
4012 // built into statements.
4013 if (isa<StmtExpr>(E)) return;
4014
4015 // Don't descend into unevaluated contexts.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00004016 if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
John McCall323ed742010-05-06 08:58:33 +00004017
4018 // Now just recurse over the expression's children.
John McCallb4eb64d2010-10-08 02:01:28 +00004019 CC = E->getExprLoc();
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00004020 BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
4021 bool IsLogicalOperator = BO && BO->isLogicalOp();
4022 for (Stmt::child_range I = E->children(); I; ++I) {
4023 Expr *ChildExpr = cast<Expr>(*I);
4024 if (IsLogicalOperator &&
4025 isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
4026 // Ignore checking string literals that are in logical operators.
4027 continue;
4028 AnalyzeImplicitConversions(S, ChildExpr, CC);
4029 }
John McCall323ed742010-05-06 08:58:33 +00004030}
4031
4032} // end anonymous namespace
4033
4034/// Diagnoses "dangerous" implicit conversions within the given
4035/// expression (which is a full expression). Implements -Wconversion
4036/// and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00004037///
4038/// \param CC the "context" location of the implicit conversion, i.e.
4039/// the most location of the syntactic entity requiring the implicit
4040/// conversion
4041void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00004042 // Don't diagnose in unevaluated contexts.
4043 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
4044 return;
4045
4046 // Don't diagnose for value- or type-dependent expressions.
4047 if (E->isTypeDependent() || E->isValueDependent())
4048 return;
4049
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004050 // Check for array bounds violations in cases where the check isn't triggered
4051 // elsewhere for other Expr types (like BinaryOperators), e.g. when an
4052 // ArraySubscriptExpr is on the RHS of a variable initialization.
4053 CheckArrayAccess(E);
4054
John McCallb4eb64d2010-10-08 02:01:28 +00004055 // This is not the right CC for (e.g.) a variable initialization.
4056 AnalyzeImplicitConversions(*this, E, CC);
John McCall323ed742010-05-06 08:58:33 +00004057}
4058
John McCall15d7d122010-11-11 03:21:53 +00004059void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
4060 FieldDecl *BitField,
4061 Expr *Init) {
4062 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
4063}
4064
Mike Stumpf8c49212010-01-21 03:59:47 +00004065/// CheckParmsForFunctionDef - Check that the parameters of the given
4066/// function are appropriate for the definition of a function. This
4067/// takes care of any checks that cannot be performed on the
4068/// declaration itself, e.g., that the types of each of the function
4069/// parameters are complete.
Douglas Gregor82aa7132010-11-01 18:37:59 +00004070bool Sema::CheckParmsForFunctionDef(ParmVarDecl **P, ParmVarDecl **PEnd,
4071 bool CheckParameterNames) {
Mike Stumpf8c49212010-01-21 03:59:47 +00004072 bool HasInvalidParm = false;
Douglas Gregor82aa7132010-11-01 18:37:59 +00004073 for (; P != PEnd; ++P) {
4074 ParmVarDecl *Param = *P;
4075
Mike Stumpf8c49212010-01-21 03:59:47 +00004076 // C99 6.7.5.3p4: the parameters in a parameter type list in a
4077 // function declarator that is part of a function definition of
4078 // that function shall not have incomplete type.
4079 //
4080 // This is also C++ [dcl.fct]p6.
4081 if (!Param->isInvalidDecl() &&
4082 RequireCompleteType(Param->getLocation(), Param->getType(),
4083 diag::err_typecheck_decl_incomplete_type)) {
4084 Param->setInvalidDecl();
4085 HasInvalidParm = true;
4086 }
4087
4088 // C99 6.9.1p5: If the declarator includes a parameter type list, the
4089 // declaration of each parameter shall include an identifier.
Douglas Gregor82aa7132010-11-01 18:37:59 +00004090 if (CheckParameterNames &&
4091 Param->getIdentifier() == 0 &&
Mike Stumpf8c49212010-01-21 03:59:47 +00004092 !Param->isImplicit() &&
4093 !getLangOptions().CPlusPlus)
4094 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00004095
4096 // C99 6.7.5.3p12:
4097 // If the function declarator is not part of a definition of that
4098 // function, parameters may have incomplete type and may use the [*]
4099 // notation in their sequences of declarator specifiers to specify
4100 // variable length array types.
4101 QualType PType = Param->getOriginalType();
4102 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
4103 if (AT->getSizeModifier() == ArrayType::Star) {
4104 // FIXME: This diagnosic should point the the '[*]' if source-location
4105 // information is added for it.
4106 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
4107 }
4108 }
Mike Stumpf8c49212010-01-21 03:59:47 +00004109 }
4110
4111 return HasInvalidParm;
4112}
John McCallb7f4ffe2010-08-12 21:44:57 +00004113
4114/// CheckCastAlign - Implements -Wcast-align, which warns when a
4115/// pointer cast increases the alignment requirements.
4116void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
4117 // This is actually a lot of work to potentially be doing on every
4118 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00004119 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align,
4120 TRange.getBegin())
David Blaikied6471f72011-09-25 23:23:43 +00004121 == DiagnosticsEngine::Ignored)
John McCallb7f4ffe2010-08-12 21:44:57 +00004122 return;
4123
4124 // Ignore dependent types.
4125 if (T->isDependentType() || Op->getType()->isDependentType())
4126 return;
4127
4128 // Require that the destination be a pointer type.
4129 const PointerType *DestPtr = T->getAs<PointerType>();
4130 if (!DestPtr) return;
4131
4132 // If the destination has alignment 1, we're done.
4133 QualType DestPointee = DestPtr->getPointeeType();
4134 if (DestPointee->isIncompleteType()) return;
4135 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
4136 if (DestAlign.isOne()) return;
4137
4138 // Require that the source be a pointer type.
4139 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
4140 if (!SrcPtr) return;
4141 QualType SrcPointee = SrcPtr->getPointeeType();
4142
4143 // Whitelist casts from cv void*. We already implicitly
4144 // whitelisted casts to cv void*, since they have alignment 1.
4145 // Also whitelist casts involving incomplete types, which implicitly
4146 // includes 'void'.
4147 if (SrcPointee->isIncompleteType()) return;
4148
4149 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
4150 if (SrcAlign >= DestAlign) return;
4151
4152 Diag(TRange.getBegin(), diag::warn_cast_align)
4153 << Op->getType() << T
4154 << static_cast<unsigned>(SrcAlign.getQuantity())
4155 << static_cast<unsigned>(DestAlign.getQuantity())
4156 << TRange << Op->getSourceRange();
4157}
4158
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004159static const Type* getElementType(const Expr *BaseExpr) {
4160 const Type* EltType = BaseExpr->getType().getTypePtr();
4161 if (EltType->isAnyPointerType())
4162 return EltType->getPointeeType().getTypePtr();
4163 else if (EltType->isArrayType())
4164 return EltType->getBaseElementTypeUnsafe();
4165 return EltType;
4166}
4167
Chandler Carruthc2684342011-08-05 09:10:50 +00004168/// \brief Check whether this array fits the idiom of a size-one tail padded
4169/// array member of a struct.
4170///
4171/// We avoid emitting out-of-bounds access warnings for such arrays as they are
4172/// commonly used to emulate flexible arrays in C89 code.
4173static bool IsTailPaddedMemberArray(Sema &S, llvm::APInt Size,
4174 const NamedDecl *ND) {
4175 if (Size != 1 || !ND) return false;
4176
4177 const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
4178 if (!FD) return false;
4179
4180 // Don't consider sizes resulting from macro expansions or template argument
4181 // substitution to form C89 tail-padded arrays.
4182 ConstantArrayTypeLoc TL =
4183 cast<ConstantArrayTypeLoc>(FD->getTypeSourceInfo()->getTypeLoc());
4184 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(TL.getSizeExpr());
4185 if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
4186 return false;
4187
4188 const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
Matt Beaumont-Gay381711c2011-11-29 22:43:53 +00004189 if (!RD) return false;
4190 if (RD->isUnion()) return false;
4191 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
4192 if (!CRD->isStandardLayout()) return false;
4193 }
Chandler Carruthc2684342011-08-05 09:10:50 +00004194
Benjamin Kramer22d4fed2011-08-06 03:04:42 +00004195 // See if this is the last field decl in the record.
4196 const Decl *D = FD;
4197 while ((D = D->getNextDeclInContext()))
4198 if (isa<FieldDecl>(D))
4199 return false;
4200 return true;
Chandler Carruthc2684342011-08-05 09:10:50 +00004201}
4202
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004203void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004204 const ArraySubscriptExpr *ASE,
Richard Smith25b009a2011-12-16 19:31:14 +00004205 bool AllowOnePastEnd, bool IndexNegated) {
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004206 IndexExpr = IndexExpr->IgnoreParenCasts();
4207 if (IndexExpr->isValueDependent())
4208 return;
4209
Matt Beaumont-Gay8ef8f432011-12-12 22:35:02 +00004210 const Type *EffectiveType = getElementType(BaseExpr);
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004211 BaseExpr = BaseExpr->IgnoreParenCasts();
Chandler Carruth34064582011-02-17 20:55:08 +00004212 const ConstantArrayType *ArrayTy =
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004213 Context.getAsConstantArrayType(BaseExpr->getType());
Chandler Carruth34064582011-02-17 20:55:08 +00004214 if (!ArrayTy)
Ted Kremeneka0125d82011-02-16 01:57:07 +00004215 return;
Chandler Carruth35001ca2011-02-17 21:10:52 +00004216
Chandler Carruth34064582011-02-17 20:55:08 +00004217 llvm::APSInt index;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004218 if (!IndexExpr->EvaluateAsInt(index, Context))
Ted Kremeneka0125d82011-02-16 01:57:07 +00004219 return;
Richard Smith25b009a2011-12-16 19:31:14 +00004220 if (IndexNegated)
4221 index = -index;
Ted Kremenek8fd0a5d2011-02-16 04:01:44 +00004222
Chandler Carruthba447122011-08-05 08:07:29 +00004223 const NamedDecl *ND = NULL;
Chandler Carruthba447122011-08-05 08:07:29 +00004224 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4225 ND = dyn_cast<NamedDecl>(DRE->getDecl());
Chandler Carruthc2684342011-08-05 09:10:50 +00004226 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
Chandler Carruthba447122011-08-05 08:07:29 +00004227 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
Chandler Carruthba447122011-08-05 08:07:29 +00004228
Ted Kremenek9e060ca2011-02-23 23:06:04 +00004229 if (index.isUnsigned() || !index.isNegative()) {
Ted Kremenek25b3b842011-02-18 02:27:00 +00004230 llvm::APInt size = ArrayTy->getSize();
Chandler Carruth35001ca2011-02-17 21:10:52 +00004231 if (!size.isStrictlyPositive())
4232 return;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004233
4234 const Type* BaseType = getElementType(BaseExpr);
Nico Weberde5998f2011-09-17 22:59:41 +00004235 if (BaseType != EffectiveType) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004236 // Make sure we're comparing apples to apples when comparing index to size
4237 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
4238 uint64_t array_typesize = Context.getTypeSize(BaseType);
Kaelyn Uhraind10f4bc2011-08-10 19:47:25 +00004239 // Handle ptrarith_typesize being zero, such as when casting to void*
Kaelyn Uhrain18f16972011-08-10 18:49:28 +00004240 if (!ptrarith_typesize) ptrarith_typesize = 1;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004241 if (ptrarith_typesize != array_typesize) {
4242 // There's a cast to a different size type involved
4243 uint64_t ratio = array_typesize / ptrarith_typesize;
4244 // TODO: Be smarter about handling cases where array_typesize is not a
4245 // multiple of ptrarith_typesize
4246 if (ptrarith_typesize * ratio == array_typesize)
4247 size *= llvm::APInt(size.getBitWidth(), ratio);
4248 }
4249 }
4250
Chandler Carruth34064582011-02-17 20:55:08 +00004251 if (size.getBitWidth() > index.getBitWidth())
4252 index = index.sext(size.getBitWidth());
Ted Kremenek25b3b842011-02-18 02:27:00 +00004253 else if (size.getBitWidth() < index.getBitWidth())
4254 size = size.sext(index.getBitWidth());
4255
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004256 // For array subscripting the index must be less than size, but for pointer
4257 // arithmetic also allow the index (offset) to be equal to size since
4258 // computing the next address after the end of the array is legal and
4259 // commonly done e.g. in C++ iterators and range-based for loops.
4260 if (AllowOnePastEnd ? index.sle(size) : index.slt(size))
Chandler Carruthba447122011-08-05 08:07:29 +00004261 return;
4262
4263 // Also don't warn for arrays of size 1 which are members of some
4264 // structure. These are often used to approximate flexible arrays in C89
4265 // code.
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004266 if (IsTailPaddedMemberArray(*this, size, ND))
Ted Kremenek8fd0a5d2011-02-16 04:01:44 +00004267 return;
Chandler Carruth34064582011-02-17 20:55:08 +00004268
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004269 // Suppress the warning if the subscript expression (as identified by the
4270 // ']' location) and the index expression are both from macro expansions
4271 // within a system header.
4272 if (ASE) {
4273 SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
4274 ASE->getRBracketLoc());
4275 if (SourceMgr.isInSystemHeader(RBracketLoc)) {
4276 SourceLocation IndexLoc = SourceMgr.getSpellingLoc(
4277 IndexExpr->getLocStart());
4278 if (SourceMgr.isFromSameFile(RBracketLoc, IndexLoc))
4279 return;
4280 }
4281 }
4282
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004283 unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004284 if (ASE)
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004285 DiagID = diag::warn_array_index_exceeds_bounds;
4286
4287 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4288 PDiag(DiagID) << index.toString(10, true)
4289 << size.toString(10, true)
4290 << (unsigned)size.getLimitedValue(~0U)
4291 << IndexExpr->getSourceRange());
Chandler Carruth34064582011-02-17 20:55:08 +00004292 } else {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004293 unsigned DiagID = diag::warn_array_index_precedes_bounds;
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004294 if (!ASE) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004295 DiagID = diag::warn_ptr_arith_precedes_bounds;
4296 if (index.isNegative()) index = -index;
4297 }
4298
4299 DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
4300 PDiag(DiagID) << index.toString(10, true)
4301 << IndexExpr->getSourceRange());
Ted Kremeneka0125d82011-02-16 01:57:07 +00004302 }
Chandler Carruth35001ca2011-02-17 21:10:52 +00004303
Matt Beaumont-Gaycfbc5b52011-11-29 19:27:11 +00004304 if (!ND) {
4305 // Try harder to find a NamedDecl to point at in the note.
4306 while (const ArraySubscriptExpr *ASE =
4307 dyn_cast<ArraySubscriptExpr>(BaseExpr))
4308 BaseExpr = ASE->getBase()->IgnoreParenCasts();
4309 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
4310 ND = dyn_cast<NamedDecl>(DRE->getDecl());
4311 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
4312 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
4313 }
4314
Chandler Carruth35001ca2011-02-17 21:10:52 +00004315 if (ND)
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004316 DiagRuntimeBehavior(ND->getLocStart(), BaseExpr,
4317 PDiag(diag::note_array_index_out_of_bounds)
4318 << ND->getDeclName());
Ted Kremeneka0125d82011-02-16 01:57:07 +00004319}
4320
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004321void Sema::CheckArrayAccess(const Expr *expr) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004322 int AllowOnePastEnd = 0;
4323 while (expr) {
4324 expr = expr->IgnoreParenImpCasts();
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004325 switch (expr->getStmtClass()) {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004326 case Stmt::ArraySubscriptExprClass: {
4327 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
Matt Beaumont-Gay80fb7dd2011-12-14 16:02:15 +00004328 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004329 AllowOnePastEnd > 0);
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004330 return;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00004331 }
4332 case Stmt::UnaryOperatorClass: {
4333 // Only unwrap the * and & unary operators
4334 const UnaryOperator *UO = cast<UnaryOperator>(expr);
4335 expr = UO->getSubExpr();
4336 switch (UO->getOpcode()) {
4337 case UO_AddrOf:
4338 AllowOnePastEnd++;
4339 break;
4340 case UO_Deref:
4341 AllowOnePastEnd--;
4342 break;
4343 default:
4344 return;
4345 }
4346 break;
4347 }
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004348 case Stmt::ConditionalOperatorClass: {
4349 const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
4350 if (const Expr *lhs = cond->getLHS())
4351 CheckArrayAccess(lhs);
4352 if (const Expr *rhs = cond->getRHS())
4353 CheckArrayAccess(rhs);
4354 return;
4355 }
4356 default:
4357 return;
4358 }
Peter Collingbournef111d932011-04-15 00:35:48 +00004359 }
Ted Kremenek3aea4da2011-03-01 18:41:00 +00004360}
John McCallf85e1932011-06-15 23:02:42 +00004361
4362//===--- CHECK: Objective-C retain cycles ----------------------------------//
4363
4364namespace {
4365 struct RetainCycleOwner {
4366 RetainCycleOwner() : Variable(0), Indirect(false) {}
4367 VarDecl *Variable;
4368 SourceRange Range;
4369 SourceLocation Loc;
4370 bool Indirect;
4371
4372 void setLocsFrom(Expr *e) {
4373 Loc = e->getExprLoc();
4374 Range = e->getSourceRange();
4375 }
4376 };
4377}
4378
4379/// Consider whether capturing the given variable can possibly lead to
4380/// a retain cycle.
4381static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
4382 // In ARC, it's captured strongly iff the variable has __strong
4383 // lifetime. In MRR, it's captured strongly if the variable is
4384 // __block and has an appropriate type.
4385 if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4386 return false;
4387
4388 owner.Variable = var;
4389 owner.setLocsFrom(ref);
4390 return true;
4391}
4392
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004393static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
John McCallf85e1932011-06-15 23:02:42 +00004394 while (true) {
4395 e = e->IgnoreParens();
4396 if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
4397 switch (cast->getCastKind()) {
4398 case CK_BitCast:
4399 case CK_LValueBitCast:
4400 case CK_LValueToRValue:
John McCall33e56f32011-09-10 06:18:15 +00004401 case CK_ARCReclaimReturnedObject:
John McCallf85e1932011-06-15 23:02:42 +00004402 e = cast->getSubExpr();
4403 continue;
4404
John McCallf85e1932011-06-15 23:02:42 +00004405 default:
4406 return false;
4407 }
4408 }
4409
4410 if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
4411 ObjCIvarDecl *ivar = ref->getDecl();
4412 if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
4413 return false;
4414
4415 // Try to find a retain cycle in the base.
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004416 if (!findRetainCycleOwner(S, ref->getBase(), owner))
John McCallf85e1932011-06-15 23:02:42 +00004417 return false;
4418
4419 if (ref->isFreeIvar()) owner.setLocsFrom(ref);
4420 owner.Indirect = true;
4421 return true;
4422 }
4423
4424 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
4425 VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
4426 if (!var) return false;
4427 return considerVariable(var, ref, owner);
4428 }
4429
4430 if (BlockDeclRefExpr *ref = dyn_cast<BlockDeclRefExpr>(e)) {
4431 owner.Variable = ref->getDecl();
4432 owner.setLocsFrom(ref);
4433 return true;
4434 }
4435
4436 if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
4437 if (member->isArrow()) return false;
4438
4439 // Don't count this as an indirect ownership.
4440 e = member->getBase();
4441 continue;
4442 }
4443
John McCall4b9c2d22011-11-06 09:01:30 +00004444 if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
4445 // Only pay attention to pseudo-objects on property references.
4446 ObjCPropertyRefExpr *pre
4447 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
4448 ->IgnoreParens());
4449 if (!pre) return false;
4450 if (pre->isImplicitProperty()) return false;
4451 ObjCPropertyDecl *property = pre->getExplicitProperty();
4452 if (!property->isRetaining() &&
4453 !(property->getPropertyIvarDecl() &&
4454 property->getPropertyIvarDecl()->getType()
4455 .getObjCLifetime() == Qualifiers::OCL_Strong))
4456 return false;
4457
4458 owner.Indirect = true;
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004459 if (pre->isSuperReceiver()) {
4460 owner.Variable = S.getCurMethodDecl()->getSelfDecl();
4461 if (!owner.Variable)
4462 return false;
4463 owner.Loc = pre->getLocation();
4464 owner.Range = pre->getSourceRange();
4465 return true;
4466 }
John McCall4b9c2d22011-11-06 09:01:30 +00004467 e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
4468 ->getSourceExpr());
4469 continue;
4470 }
4471
John McCallf85e1932011-06-15 23:02:42 +00004472 // Array ivars?
4473
4474 return false;
4475 }
4476}
4477
4478namespace {
4479 struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
4480 FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
4481 : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
4482 Variable(variable), Capturer(0) {}
4483
4484 VarDecl *Variable;
4485 Expr *Capturer;
4486
4487 void VisitDeclRefExpr(DeclRefExpr *ref) {
4488 if (ref->getDecl() == Variable && !Capturer)
4489 Capturer = ref;
4490 }
4491
4492 void VisitBlockDeclRefExpr(BlockDeclRefExpr *ref) {
4493 if (ref->getDecl() == Variable && !Capturer)
4494 Capturer = ref;
4495 }
4496
4497 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
4498 if (Capturer) return;
4499 Visit(ref->getBase());
4500 if (Capturer && ref->isFreeIvar())
4501 Capturer = ref;
4502 }
4503
4504 void VisitBlockExpr(BlockExpr *block) {
4505 // Look inside nested blocks
4506 if (block->getBlockDecl()->capturesVariable(Variable))
4507 Visit(block->getBlockDecl()->getBody());
4508 }
4509 };
4510}
4511
4512/// Check whether the given argument is a block which captures a
4513/// variable.
4514static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
4515 assert(owner.Variable && owner.Loc.isValid());
4516
4517 e = e->IgnoreParenCasts();
4518 BlockExpr *block = dyn_cast<BlockExpr>(e);
4519 if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
4520 return 0;
4521
4522 FindCaptureVisitor visitor(S.Context, owner.Variable);
4523 visitor.Visit(block->getBlockDecl()->getBody());
4524 return visitor.Capturer;
4525}
4526
4527static void diagnoseRetainCycle(Sema &S, Expr *capturer,
4528 RetainCycleOwner &owner) {
4529 assert(capturer);
4530 assert(owner.Variable && owner.Loc.isValid());
4531
4532 S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
4533 << owner.Variable << capturer->getSourceRange();
4534 S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
4535 << owner.Indirect << owner.Range;
4536}
4537
4538/// Check for a keyword selector that starts with the word 'add' or
4539/// 'set'.
4540static bool isSetterLikeSelector(Selector sel) {
4541 if (sel.isUnarySelector()) return false;
4542
Chris Lattner5f9e2722011-07-23 10:55:15 +00004543 StringRef str = sel.getNameForSlot(0);
John McCallf85e1932011-06-15 23:02:42 +00004544 while (!str.empty() && str.front() == '_') str = str.substr(1);
Ted Kremenek968a0ee2011-12-01 00:59:21 +00004545 if (str.startswith("set"))
John McCallf85e1932011-06-15 23:02:42 +00004546 str = str.substr(3);
Ted Kremenek968a0ee2011-12-01 00:59:21 +00004547 else if (str.startswith("add")) {
4548 // Specially whitelist 'addOperationWithBlock:'.
4549 if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
4550 return false;
4551 str = str.substr(3);
4552 }
John McCallf85e1932011-06-15 23:02:42 +00004553 else
4554 return false;
4555
4556 if (str.empty()) return true;
4557 return !islower(str.front());
4558}
4559
4560/// Check a message send to see if it's likely to cause a retain cycle.
4561void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
4562 // Only check instance methods whose selector looks like a setter.
4563 if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
4564 return;
4565
4566 // Try to find a variable that the receiver is strongly owned by.
4567 RetainCycleOwner owner;
4568 if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004569 if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
John McCallf85e1932011-06-15 23:02:42 +00004570 return;
4571 } else {
4572 assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
4573 owner.Variable = getCurMethodDecl()->getSelfDecl();
4574 owner.Loc = msg->getSuperLoc();
4575 owner.Range = msg->getSuperLoc();
4576 }
4577
4578 // Check whether the receiver is captured by any of the arguments.
4579 for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i)
4580 if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner))
4581 return diagnoseRetainCycle(*this, capturer, owner);
4582}
4583
4584/// Check a property assign to see if it's likely to cause a retain cycle.
4585void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
4586 RetainCycleOwner owner;
Fariborz Jahanian6e6f93a2012-01-10 19:28:26 +00004587 if (!findRetainCycleOwner(*this, receiver, owner))
John McCallf85e1932011-06-15 23:02:42 +00004588 return;
4589
4590 if (Expr *capturer = findCapturingExpr(*this, argument, owner))
4591 diagnoseRetainCycle(*this, capturer, owner);
4592}
4593
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004594bool Sema::checkUnsafeAssigns(SourceLocation Loc,
John McCallf85e1932011-06-15 23:02:42 +00004595 QualType LHS, Expr *RHS) {
4596 Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
4597 if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004598 return false;
4599 // strip off any implicit cast added to get to the one arc-specific
4600 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall33e56f32011-09-10 06:18:15 +00004601 if (cast->getCastKind() == CK_ARCConsumeObject) {
John McCallf85e1932011-06-15 23:02:42 +00004602 Diag(Loc, diag::warn_arc_retained_assign)
4603 << (LT == Qualifiers::OCL_ExplicitNone)
4604 << RHS->getSourceRange();
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004605 return true;
4606 }
4607 RHS = cast->getSubExpr();
4608 }
4609 return false;
John McCallf85e1932011-06-15 23:02:42 +00004610}
4611
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004612void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
4613 Expr *LHS, Expr *RHS) {
4614 QualType LHSType = LHS->getType();
4615 if (checkUnsafeAssigns(Loc, LHSType, RHS))
4616 return;
4617 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
4618 // FIXME. Check for other life times.
4619 if (LT != Qualifiers::OCL_None)
4620 return;
4621
John McCall3c3b7f92011-10-25 17:37:35 +00004622 if (ObjCPropertyRefExpr *PRE
4623 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens())) {
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004624 if (PRE->isImplicitProperty())
4625 return;
4626 const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
4627 if (!PD)
4628 return;
4629
4630 unsigned Attributes = PD->getPropertyAttributes();
4631 if (Attributes & ObjCPropertyDecl::OBJC_PR_assign)
4632 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall33e56f32011-09-10 06:18:15 +00004633 if (cast->getCastKind() == CK_ARCConsumeObject) {
Fariborz Jahanian921c1432011-06-24 18:25:34 +00004634 Diag(Loc, diag::warn_arc_retained_property_assign)
4635 << RHS->getSourceRange();
4636 return;
4637 }
4638 RHS = cast->getSubExpr();
4639 }
4640 }
4641}