blob: 9c47e1e1e26a778d1ba728943dcfac24bb059e95 [file] [log] [blame]
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump11289f42009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattnerb87b1b32007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000015#include "clang/Sema/Sema.h"
John McCall83024632010-08-25 22:03:47 +000016#include "clang/Sema/SemaInternal.h"
John McCallaab3e412010-08-25 08:40:02 +000017#include "clang/Sema/ScopeInfo.h"
Ted Kremenek02087932010-07-16 02:11:22 +000018#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000019#include "clang/AST/ASTContext.h"
Ken Dyck40775002010-01-11 17:06:35 +000020#include "clang/AST/CharUnits.h"
John McCall28a0cf72010-08-25 07:42:41 +000021#include "clang/AST/DeclCXX.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000022#include "clang/AST/DeclObjC.h"
Ted Kremenekc81614d2007-08-20 16:18:38 +000023#include "clang/AST/ExprCXX.h"
Ted Kremenek34f664d2008-06-16 18:00:42 +000024#include "clang/AST/ExprObjC.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000025#include "clang/AST/DeclObjC.h"
26#include "clang/AST/StmtCXX.h"
27#include "clang/AST/StmtObjC.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000028#include "clang/Lex/Preprocessor.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000029#include "llvm/ADT/BitVector.h"
30#include "llvm/ADT/STLExtras.h"
Tom Careb7042702010-06-09 04:11:11 +000031#include "llvm/Support/raw_ostream.h"
Eric Christopher8d0c6212010-04-17 02:26:23 +000032#include "clang/Basic/TargetBuiltins.h"
Nate Begeman4904e322010-06-08 02:47:44 +000033#include "clang/Basic/TargetInfo.h"
Fariborz Jahanian56603ef2010-09-07 19:38:13 +000034#include "clang/Basic/ConvertUTF.h"
Zhongxing Xu050379b2009-05-20 01:55:10 +000035#include <limits>
Chris Lattnerb87b1b32007-08-10 20:18:51 +000036using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000037using namespace sema;
Chris Lattnerb87b1b32007-08-10 20:18:51 +000038
Chris Lattnera26fb342009-02-18 17:49:48 +000039SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
40 unsigned ByteNo) const {
Chris Lattnere925d612010-11-17 07:37:15 +000041 return SL->getLocationOfByte(ByteNo, PP.getSourceManager(),
42 PP.getLangOptions(), PP.getTargetInfo());
Chris Lattnera26fb342009-02-18 17:49:48 +000043}
Chris Lattnere925d612010-11-17 07:37:15 +000044
Chris Lattnera26fb342009-02-18 17:49:48 +000045
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000046/// CheckablePrintfAttr - does a function call have a "printf" attribute
47/// and arguments that merit checking?
48bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
49 if (Format->getType() == "printf") return true;
50 if (Format->getType() == "printf0") {
51 // printf0 allows null "format" string; if so don't check format/args
52 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl6eedcc12009-11-17 18:02:24 +000053 // Does the index refer to the implicit object argument?
54 if (isa<CXXMemberCallExpr>(TheCall)) {
55 if (format_idx == 0)
56 return false;
57 --format_idx;
58 }
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000059 if (format_idx < TheCall->getNumArgs()) {
60 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekd1668192010-02-27 01:41:03 +000061 if (!Format->isNullPointerConstant(Context,
62 Expr::NPC_ValueDependentIsNull))
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +000063 return true;
64 }
65 }
66 return false;
67}
Chris Lattnera26fb342009-02-18 17:49:48 +000068
John McCallbebede42011-02-26 05:39:39 +000069/// Checks that a call expression's argument count is the desired number.
70/// This is useful when doing custom type-checking. Returns true on error.
71static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
72 unsigned argCount = call->getNumArgs();
73 if (argCount == desiredArgCount) return false;
74
75 if (argCount < desiredArgCount)
76 return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
77 << 0 /*function call*/ << desiredArgCount << argCount
78 << call->getSourceRange();
79
80 // Highlight all the excess arguments.
81 SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
82 call->getArg(argCount - 1)->getLocEnd());
83
84 return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
85 << 0 /*function call*/ << desiredArgCount << argCount
86 << call->getArg(1)->getSourceRange();
87}
88
John McCalldadc5752010-08-24 06:29:42 +000089ExprResult
Anders Carlssonbc4c1072009-08-16 01:56:34 +000090Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCalldadc5752010-08-24 06:29:42 +000091 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregorae2fbad2008-11-17 20:34:05 +000092
Chris Lattner3be167f2010-10-01 23:23:24 +000093 // Find out if any arguments are required to be integer constant expressions.
94 unsigned ICEArguments = 0;
95 ASTContext::GetBuiltinTypeError Error;
96 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
97 if (Error != ASTContext::GE_None)
98 ICEArguments = 0; // Don't diagnose previously diagnosed errors.
99
100 // If any arguments are required to be ICE's, check and diagnose.
101 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
102 // Skip arguments not required to be ICE's.
103 if ((ICEArguments & (1 << ArgNo)) == 0) continue;
104
105 llvm::APSInt Result;
106 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
107 return true;
108 ICEArguments &= ~(1 << ArgNo);
109 }
110
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000111 switch (BuiltinID) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000112 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner08464942007-12-28 05:29:59 +0000113 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner2da14fb2007-12-20 00:26:33 +0000114 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner6436fb62009-02-18 06:01:06 +0000115 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000116 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000117 break;
Ted Kremeneka174c522008-07-09 17:58:53 +0000118 case Builtin::BI__builtin_stdarg_start:
Chris Lattner43be2e62007-12-19 23:59:04 +0000119 case Builtin::BI__builtin_va_start:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000120 if (SemaBuiltinVAStart(TheCall))
121 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000122 break;
Chris Lattner2da14fb2007-12-20 00:26:33 +0000123 case Builtin::BI__builtin_isgreater:
124 case Builtin::BI__builtin_isgreaterequal:
125 case Builtin::BI__builtin_isless:
126 case Builtin::BI__builtin_islessequal:
127 case Builtin::BI__builtin_islessgreater:
128 case Builtin::BI__builtin_isunordered:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000129 if (SemaBuiltinUnorderedCompare(TheCall))
130 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000131 break;
Benjamin Kramer634fc102010-02-15 22:42:31 +0000132 case Builtin::BI__builtin_fpclassify:
133 if (SemaBuiltinFPClassification(TheCall, 6))
134 return ExprError();
135 break;
Eli Friedman7e4faac2009-08-31 20:06:00 +0000136 case Builtin::BI__builtin_isfinite:
137 case Builtin::BI__builtin_isinf:
138 case Builtin::BI__builtin_isinf_sign:
139 case Builtin::BI__builtin_isnan:
140 case Builtin::BI__builtin_isnormal:
Benjamin Kramer64aae502010-02-16 10:07:31 +0000141 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman7e4faac2009-08-31 20:06:00 +0000142 return ExprError();
143 break;
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000144 case Builtin::BI__builtin_shufflevector:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000145 return SemaBuiltinShuffleVector(TheCall);
146 // TheCall will be freed by the smart pointer here, but that's fine, since
147 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbarb7257262008-07-21 22:59:13 +0000148 case Builtin::BI__builtin_prefetch:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000149 if (SemaBuiltinPrefetch(TheCall))
150 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000151 break;
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000152 case Builtin::BI__builtin_object_size:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000153 if (SemaBuiltinObjectSize(TheCall))
154 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000155 break;
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000156 case Builtin::BI__builtin_longjmp:
157 if (SemaBuiltinLongjmp(TheCall))
158 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000159 break;
John McCallbebede42011-02-26 05:39:39 +0000160
161 case Builtin::BI__builtin_classify_type:
162 if (checkArgCount(*this, TheCall, 1)) return true;
163 TheCall->setType(Context.IntTy);
164 break;
Chris Lattner17c0eac2010-10-12 17:47:42 +0000165 case Builtin::BI__builtin_constant_p:
John McCallbebede42011-02-26 05:39:39 +0000166 if (checkArgCount(*this, TheCall, 1)) return true;
167 TheCall->setType(Context.IntTy);
Chris Lattner17c0eac2010-10-12 17:47:42 +0000168 break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000169 case Builtin::BI__sync_fetch_and_add:
170 case Builtin::BI__sync_fetch_and_sub:
171 case Builtin::BI__sync_fetch_and_or:
172 case Builtin::BI__sync_fetch_and_and:
173 case Builtin::BI__sync_fetch_and_xor:
174 case Builtin::BI__sync_add_and_fetch:
175 case Builtin::BI__sync_sub_and_fetch:
176 case Builtin::BI__sync_and_and_fetch:
177 case Builtin::BI__sync_or_and_fetch:
178 case Builtin::BI__sync_xor_and_fetch:
179 case Builtin::BI__sync_val_compare_and_swap:
180 case Builtin::BI__sync_bool_compare_and_swap:
181 case Builtin::BI__sync_lock_test_and_set:
182 case Builtin::BI__sync_lock_release:
Chris Lattner9cb59fa2011-04-09 03:57:26 +0000183 case Builtin::BI__sync_swap:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000184 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman4904e322010-06-08 02:47:44 +0000185 }
186
187 // Since the target specific builtins for each arch overlap, only check those
188 // of the arch we are compiling for.
189 if (BuiltinID >= Builtin::FirstTSBuiltin) {
190 switch (Context.Target.getTriple().getArch()) {
191 case llvm::Triple::arm:
192 case llvm::Triple::thumb:
193 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
194 return ExprError();
195 break;
Nate Begeman4904e322010-06-08 02:47:44 +0000196 default:
197 break;
198 }
199 }
200
201 return move(TheCallResult);
202}
203
Nate Begeman91e1fea2010-06-14 05:21:25 +0000204// Get the valid immediate range for the specified NEON type code.
205static unsigned RFT(unsigned t, bool shift = false) {
206 bool quad = t & 0x10;
207
208 switch (t & 0x7) {
209 case 0: // i8
Nate Begemandbafec12010-06-17 02:26:59 +0000210 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000211 case 1: // i16
Nate Begemandbafec12010-06-17 02:26:59 +0000212 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000213 case 2: // i32
Nate Begemandbafec12010-06-17 02:26:59 +0000214 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000215 case 3: // i64
Nate Begemandbafec12010-06-17 02:26:59 +0000216 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000217 case 4: // f32
218 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000219 return (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000220 case 5: // poly8
Bob Wilsona880fa02010-12-10 19:45:06 +0000221 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000222 case 6: // poly16
Bob Wilsona880fa02010-12-10 19:45:06 +0000223 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000224 case 7: // float16
225 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000226 return (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000227 }
228 return 0;
229}
230
Nate Begeman4904e322010-06-08 02:47:44 +0000231bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman55483092010-06-09 01:10:23 +0000232 llvm::APSInt Result;
233
Nate Begemand773fe62010-06-13 04:47:52 +0000234 unsigned mask = 0;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000235 unsigned TV = 0;
Nate Begeman55483092010-06-09 01:10:23 +0000236 switch (BuiltinID) {
Nate Begeman35f4c1c2010-06-17 04:17:01 +0000237#define GET_NEON_OVERLOAD_CHECK
238#include "clang/Basic/arm_neon.inc"
239#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman55483092010-06-09 01:10:23 +0000240 }
241
Nate Begemand773fe62010-06-13 04:47:52 +0000242 // For NEON intrinsics which are overloaded on vector element type, validate
243 // the immediate which specifies which variant to emit.
244 if (mask) {
245 unsigned ArgNo = TheCall->getNumArgs()-1;
246 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
247 return true;
248
Nate Begeman91e1fea2010-06-14 05:21:25 +0000249 TV = Result.getLimitedValue(32);
250 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begemand773fe62010-06-13 04:47:52 +0000251 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
252 << TheCall->getArg(ArgNo)->getSourceRange();
253 }
Nate Begeman55483092010-06-09 01:10:23 +0000254
Nate Begemand773fe62010-06-13 04:47:52 +0000255 // For NEON intrinsics which take an immediate value as part of the
256 // instruction, range check them here.
Nate Begeman91e1fea2010-06-14 05:21:25 +0000257 unsigned i = 0, l = 0, u = 0;
Nate Begemand773fe62010-06-13 04:47:52 +0000258 switch (BuiltinID) {
259 default: return false;
Nate Begeman1194bd22010-07-29 22:48:34 +0000260 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
261 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begemanf568b072010-08-03 21:32:34 +0000262 case ARM::BI__builtin_arm_vcvtr_f:
263 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begeman35f4c1c2010-06-17 04:17:01 +0000264#define GET_NEON_IMMEDIATE_CHECK
265#include "clang/Basic/arm_neon.inc"
266#undef GET_NEON_IMMEDIATE_CHECK
Nate Begemand773fe62010-06-13 04:47:52 +0000267 };
268
Nate Begeman91e1fea2010-06-14 05:21:25 +0000269 // Check that the immediate argument is actually a constant.
Nate Begemand773fe62010-06-13 04:47:52 +0000270 if (SemaBuiltinConstantArg(TheCall, i, Result))
271 return true;
272
Nate Begeman91e1fea2010-06-14 05:21:25 +0000273 // Range check against the upper/lower values for this isntruction.
Nate Begemand773fe62010-06-13 04:47:52 +0000274 unsigned Val = Result.getZExtValue();
Nate Begeman91e1fea2010-06-14 05:21:25 +0000275 if (Val < l || Val > (u + l))
Nate Begemand773fe62010-06-13 04:47:52 +0000276 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramere8394df2010-08-11 14:47:12 +0000277 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begemand773fe62010-06-13 04:47:52 +0000278
Nate Begemanf568b072010-08-03 21:32:34 +0000279 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman4904e322010-06-08 02:47:44 +0000280 return false;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000281}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000282
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000283/// CheckFunctionCall - Check a direct function call for various correctness
284/// and safety properties not strictly enforced by the C type system.
285bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
286 // Get the IdentifierInfo* for the called function.
287 IdentifierInfo *FnInfo = FDecl->getIdentifier();
288
289 // None of the checks below are needed for functions that don't have
290 // simple names (e.g., C++ conversion functions).
291 if (!FnInfo)
292 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000293
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000294 // FIXME: This mechanism should be abstracted to be less fragile and
295 // more efficient. For example, just map function ids to custom
296 // handlers.
297
Ted Kremenekb8176da2010-09-09 04:33:05 +0000298 // Printf and scanf checking.
299 for (specific_attr_iterator<FormatAttr>
300 i = FDecl->specific_attr_begin<FormatAttr>(),
301 e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
302
303 const FormatAttr *Format = *i;
Ted Kremenek02087932010-07-16 02:11:22 +0000304 const bool b = Format->getType() == "scanf";
305 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek9723bcf2009-02-27 17:58:43 +0000306 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000307 CheckPrintfScanfArguments(TheCall, HasVAListArg,
308 Format->getFormatIdx() - 1,
309 HasVAListArg ? 0 : Format->getFirstArg() - 1,
310 !b);
Douglas Gregore711f702009-02-14 18:57:46 +0000311 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000312 }
Mike Stump11289f42009-09-09 15:08:12 +0000313
Ted Kremenekb8176da2010-09-09 04:33:05 +0000314 for (specific_attr_iterator<NonNullAttr>
315 i = FDecl->specific_attr_begin<NonNullAttr>(),
316 e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
Nick Lewyckyd4693212011-03-25 01:44:32 +0000317 CheckNonNullArguments(*i, TheCall->getArgs(),
318 TheCall->getCallee()->getLocStart());
Ted Kremenekb8176da2010-09-09 04:33:05 +0000319 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000320
Douglas Gregor3bb2a812011-05-03 20:37:33 +0000321 // Memset/memcpy/memmove handling
322 if (FDecl->getLinkage() == ExternalLinkage &&
323 (!getLangOptions().CPlusPlus || FDecl->isExternC())) {
324 if (FnInfo->isStr("memset") || FnInfo->isStr("memcpy") ||
325 FnInfo->isStr("memmove"))
326 CheckMemsetcpymoveArguments(TheCall, FnInfo);
327 }
Chandler Carruth53caa4d2011-04-27 07:05:31 +0000328
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000329 return false;
Anders Carlsson98f07902007-08-17 05:31:46 +0000330}
331
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000332bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000333 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000334 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000335 if (!Format)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000336 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000337
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000338 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
339 if (!V)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000340 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000341
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000342 QualType Ty = V->getType();
343 if (!Ty->isBlockPointerType())
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000344 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000345
Ted Kremenek02087932010-07-16 02:11:22 +0000346 const bool b = Format->getType() == "scanf";
347 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000348 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000349
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000350 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000351 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
352 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000353
354 return false;
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000355}
356
Chris Lattnerdc046542009-05-08 06:58:22 +0000357/// SemaBuiltinAtomicOverloaded - We have a call to a function like
358/// __sync_fetch_and_add, which is an overloaded function based on the pointer
359/// type of its first argument. The main ActOnCallExpr routines have already
360/// promoted the types of arguments because all of these calls are prototyped as
361/// void(...).
362///
363/// This function goes through and does final semantic checking for these
364/// builtins,
John McCalldadc5752010-08-24 06:29:42 +0000365ExprResult
366Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000367 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattnerdc046542009-05-08 06:58:22 +0000368 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
369 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
370
371 // Ensure that we have at least one argument to do type inference from.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000372 if (TheCall->getNumArgs() < 1) {
373 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
374 << 0 << 1 << TheCall->getNumArgs()
375 << TheCall->getCallee()->getSourceRange();
376 return ExprError();
377 }
Mike Stump11289f42009-09-09 15:08:12 +0000378
Chris Lattnerdc046542009-05-08 06:58:22 +0000379 // Inspect the first argument of the atomic builtin. This should always be
380 // a pointer type, whose element is an integral scalar or pointer type.
381 // Because it is a pointer type, we don't have to worry about any implicit
382 // casts here.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000383 // FIXME: We don't allow floating point scalars as input.
Chris Lattnerdc046542009-05-08 06:58:22 +0000384 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000385 if (!FirstArg->getType()->isPointerType()) {
386 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
387 << FirstArg->getType() << FirstArg->getSourceRange();
388 return ExprError();
389 }
Mike Stump11289f42009-09-09 15:08:12 +0000390
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000391 QualType ValType =
392 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Chris Lattnerbb3bcd82010-09-17 21:12:38 +0000393 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000394 !ValType->isBlockPointerType()) {
395 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
396 << FirstArg->getType() << FirstArg->getSourceRange();
397 return ExprError();
398 }
Chris Lattnerdc046542009-05-08 06:58:22 +0000399
Chandler Carruth3973af72010-07-18 20:54:12 +0000400 // The majority of builtins return a value, but a few have special return
401 // types, so allow them to override appropriately below.
402 QualType ResultType = ValType;
403
Chris Lattnerdc046542009-05-08 06:58:22 +0000404 // We need to figure out which concrete builtin this maps onto. For example,
405 // __sync_fetch_and_add with a 2 byte object turns into
406 // __sync_fetch_and_add_2.
407#define BUILTIN_ROW(x) \
408 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
409 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump11289f42009-09-09 15:08:12 +0000410
Chris Lattnerdc046542009-05-08 06:58:22 +0000411 static const unsigned BuiltinIndices[][5] = {
412 BUILTIN_ROW(__sync_fetch_and_add),
413 BUILTIN_ROW(__sync_fetch_and_sub),
414 BUILTIN_ROW(__sync_fetch_and_or),
415 BUILTIN_ROW(__sync_fetch_and_and),
416 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump11289f42009-09-09 15:08:12 +0000417
Chris Lattnerdc046542009-05-08 06:58:22 +0000418 BUILTIN_ROW(__sync_add_and_fetch),
419 BUILTIN_ROW(__sync_sub_and_fetch),
420 BUILTIN_ROW(__sync_and_and_fetch),
421 BUILTIN_ROW(__sync_or_and_fetch),
422 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump11289f42009-09-09 15:08:12 +0000423
Chris Lattnerdc046542009-05-08 06:58:22 +0000424 BUILTIN_ROW(__sync_val_compare_and_swap),
425 BUILTIN_ROW(__sync_bool_compare_and_swap),
426 BUILTIN_ROW(__sync_lock_test_and_set),
Chris Lattner9cb59fa2011-04-09 03:57:26 +0000427 BUILTIN_ROW(__sync_lock_release),
428 BUILTIN_ROW(__sync_swap)
Chris Lattnerdc046542009-05-08 06:58:22 +0000429 };
Mike Stump11289f42009-09-09 15:08:12 +0000430#undef BUILTIN_ROW
431
Chris Lattnerdc046542009-05-08 06:58:22 +0000432 // Determine the index of the size.
433 unsigned SizeIndex;
Ken Dyck40775002010-01-11 17:06:35 +0000434 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattnerdc046542009-05-08 06:58:22 +0000435 case 1: SizeIndex = 0; break;
436 case 2: SizeIndex = 1; break;
437 case 4: SizeIndex = 2; break;
438 case 8: SizeIndex = 3; break;
439 case 16: SizeIndex = 4; break;
440 default:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000441 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
442 << FirstArg->getType() << FirstArg->getSourceRange();
443 return ExprError();
Chris Lattnerdc046542009-05-08 06:58:22 +0000444 }
Mike Stump11289f42009-09-09 15:08:12 +0000445
Chris Lattnerdc046542009-05-08 06:58:22 +0000446 // Each of these builtins has one pointer argument, followed by some number of
447 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
448 // that we ignore. Find out which row of BuiltinIndices to read from as well
449 // as the number of fixed args.
Douglas Gregor15fc9562009-09-12 00:22:50 +0000450 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattnerdc046542009-05-08 06:58:22 +0000451 unsigned BuiltinIndex, NumFixed = 1;
452 switch (BuiltinID) {
453 default: assert(0 && "Unknown overloaded atomic builtin!");
454 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
455 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
456 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
457 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
458 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump11289f42009-09-09 15:08:12 +0000459
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000460 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
461 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
462 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
463 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
464 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump11289f42009-09-09 15:08:12 +0000465
Chris Lattnerdc046542009-05-08 06:58:22 +0000466 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000467 BuiltinIndex = 10;
Chris Lattnerdc046542009-05-08 06:58:22 +0000468 NumFixed = 2;
469 break;
470 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000471 BuiltinIndex = 11;
Chris Lattnerdc046542009-05-08 06:58:22 +0000472 NumFixed = 2;
Chandler Carruth3973af72010-07-18 20:54:12 +0000473 ResultType = Context.BoolTy;
Chris Lattnerdc046542009-05-08 06:58:22 +0000474 break;
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000475 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000476 case Builtin::BI__sync_lock_release:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000477 BuiltinIndex = 13;
Chris Lattnerdc046542009-05-08 06:58:22 +0000478 NumFixed = 0;
Chandler Carruth3973af72010-07-18 20:54:12 +0000479 ResultType = Context.VoidTy;
Chris Lattnerdc046542009-05-08 06:58:22 +0000480 break;
Chris Lattner9cb59fa2011-04-09 03:57:26 +0000481 case Builtin::BI__sync_swap: BuiltinIndex = 14; break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000482 }
Mike Stump11289f42009-09-09 15:08:12 +0000483
Chris Lattnerdc046542009-05-08 06:58:22 +0000484 // Now that we know how many fixed arguments we expect, first check that we
485 // have at least that many.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000486 if (TheCall->getNumArgs() < 1+NumFixed) {
487 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
488 << 0 << 1+NumFixed << TheCall->getNumArgs()
489 << TheCall->getCallee()->getSourceRange();
490 return ExprError();
491 }
Mike Stump11289f42009-09-09 15:08:12 +0000492
Chris Lattner5b9241b2009-05-08 15:36:58 +0000493 // Get the decl for the concrete builtin from this, we can tell what the
494 // concrete integer type we should convert to is.
495 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
496 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
497 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump11289f42009-09-09 15:08:12 +0000498 FunctionDecl *NewBuiltinDecl =
Chris Lattner5b9241b2009-05-08 15:36:58 +0000499 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
500 TUScope, false, DRE->getLocStart()));
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000501
John McCallcf142162010-08-07 06:22:56 +0000502 // The first argument --- the pointer --- has a fixed type; we
503 // deduce the types of the rest of the arguments accordingly. Walk
504 // the remaining arguments, converting them to the deduced value type.
Chris Lattnerdc046542009-05-08 06:58:22 +0000505 for (unsigned i = 0; i != NumFixed; ++i) {
John Wiegley01296292011-04-08 18:41:53 +0000506 ExprResult Arg = TheCall->getArg(i+1);
Mike Stump11289f42009-09-09 15:08:12 +0000507
Chris Lattnerdc046542009-05-08 06:58:22 +0000508 // If the argument is an implicit cast, then there was a promotion due to
509 // "...", just remove it now.
John Wiegley01296292011-04-08 18:41:53 +0000510 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg.get())) {
Chris Lattnerdc046542009-05-08 06:58:22 +0000511 Arg = ICE->getSubExpr();
512 ICE->setSubExpr(0);
John Wiegley01296292011-04-08 18:41:53 +0000513 TheCall->setArg(i+1, Arg.get());
Chris Lattnerdc046542009-05-08 06:58:22 +0000514 }
Mike Stump11289f42009-09-09 15:08:12 +0000515
Chris Lattnerdc046542009-05-08 06:58:22 +0000516 // GCC does an implicit conversion to the pointer or integer ValType. This
517 // can fail in some cases (1i -> int**), check for this error case now.
John McCall8cb679e2010-11-15 09:13:47 +0000518 CastKind Kind = CK_Invalid;
John McCall7decc9e2010-11-18 06:31:45 +0000519 ExprValueKind VK = VK_RValue;
John McCallcf142162010-08-07 06:22:56 +0000520 CXXCastPath BasePath;
John Wiegley01296292011-04-08 18:41:53 +0000521 Arg = CheckCastTypes(Arg.get()->getSourceRange(), ValType, Arg.take(), Kind, VK, BasePath);
522 if (Arg.isInvalid())
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000523 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000524
Chris Lattnerdc046542009-05-08 06:58:22 +0000525 // Okay, we have something that *can* be converted to the right type. Check
526 // to see if there is a potentially weird extension going on here. This can
527 // happen when you do an atomic operation on something like an char* and
528 // pass in 42. The 42 gets converted to char. This is even more strange
529 // for things like 45.123 -> char, etc.
Mike Stump11289f42009-09-09 15:08:12 +0000530 // FIXME: Do this check.
John Wiegley01296292011-04-08 18:41:53 +0000531 Arg = ImpCastExprToType(Arg.take(), ValType, Kind, VK, &BasePath);
532 TheCall->setArg(i+1, Arg.get());
Chris Lattnerdc046542009-05-08 06:58:22 +0000533 }
Mike Stump11289f42009-09-09 15:08:12 +0000534
Chris Lattnerdc046542009-05-08 06:58:22 +0000535 // Switch the DeclRefExpr to refer to the new decl.
536 DRE->setDecl(NewBuiltinDecl);
537 DRE->setType(NewBuiltinDecl->getType());
Mike Stump11289f42009-09-09 15:08:12 +0000538
Chris Lattnerdc046542009-05-08 06:58:22 +0000539 // Set the callee in the CallExpr.
540 // FIXME: This leaks the original parens and implicit casts.
John Wiegley01296292011-04-08 18:41:53 +0000541 ExprResult PromotedCall = UsualUnaryConversions(DRE);
542 if (PromotedCall.isInvalid())
543 return ExprError();
544 TheCall->setCallee(PromotedCall.take());
Mike Stump11289f42009-09-09 15:08:12 +0000545
Chandler Carruthbc8cab12010-07-18 07:23:17 +0000546 // Change the result type of the call to match the original value type. This
547 // is arbitrary, but the codegen for these builtins ins design to handle it
548 // gracefully.
Chandler Carruth3973af72010-07-18 20:54:12 +0000549 TheCall->setType(ResultType);
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000550
551 return move(TheCallResult);
Chris Lattnerdc046542009-05-08 06:58:22 +0000552}
553
554
Chris Lattner6436fb62009-02-18 06:01:06 +0000555/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson98f07902007-08-17 05:31:46 +0000556/// CFString constructor is correct
Steve Narofffb46e862009-04-13 20:26:29 +0000557/// Note: It might also make sense to do the UTF-16 conversion here (would
558/// simplify the backend).
Chris Lattner6436fb62009-02-18 06:01:06 +0000559bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattnerf2660962008-02-13 01:02:39 +0000560 Arg = Arg->IgnoreParenCasts();
Anders Carlsson98f07902007-08-17 05:31:46 +0000561 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
562
563 if (!Literal || Literal->isWide()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000564 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
565 << Arg->getSourceRange();
Anders Carlssona3a9c432007-08-17 15:44:17 +0000566 return true;
Anders Carlsson98f07902007-08-17 05:31:46 +0000567 }
Mike Stump11289f42009-09-09 15:08:12 +0000568
Fariborz Jahanian56603ef2010-09-07 19:38:13 +0000569 if (Literal->containsNonAsciiOrNull()) {
570 llvm::StringRef String = Literal->getString();
571 unsigned NumBytes = String.size();
572 llvm::SmallVector<UTF16, 128> ToBuf(NumBytes);
573 const UTF8 *FromPtr = (UTF8 *)String.data();
574 UTF16 *ToPtr = &ToBuf[0];
575
576 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
577 &ToPtr, ToPtr + NumBytes,
578 strictConversion);
579 // Check for conversion failure.
580 if (Result != conversionOK)
581 Diag(Arg->getLocStart(),
582 diag::warn_cfstring_truncated) << Arg->getSourceRange();
583 }
Anders Carlssona3a9c432007-08-17 15:44:17 +0000584 return false;
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000585}
586
Chris Lattnere202e6a2007-12-20 00:05:45 +0000587/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
588/// Emit an error and return true on failure, return false on success.
Chris Lattner08464942007-12-28 05:29:59 +0000589bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
590 Expr *Fn = TheCall->getCallee();
591 if (TheCall->getNumArgs() > 2) {
Chris Lattnercedef8d2008-11-21 18:44:24 +0000592 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000593 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000594 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
595 << Fn->getSourceRange()
Mike Stump11289f42009-09-09 15:08:12 +0000596 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000597 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner43be2e62007-12-19 23:59:04 +0000598 return true;
599 }
Eli Friedmanbb2b3be2008-12-15 22:05:35 +0000600
601 if (TheCall->getNumArgs() < 2) {
Eric Christopherabf1e182010-04-16 04:48:22 +0000602 return Diag(TheCall->getLocEnd(),
603 diag::err_typecheck_call_too_few_args_at_least)
604 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedmanbb2b3be2008-12-15 22:05:35 +0000605 }
606
Chris Lattnere202e6a2007-12-20 00:05:45 +0000607 // Determine whether the current function is variadic or not.
Douglas Gregor9a28e842010-03-01 23:15:13 +0000608 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnere202e6a2007-12-20 00:05:45 +0000609 bool isVariadic;
Steve Naroff439a3e42009-04-15 19:33:47 +0000610 if (CurBlock)
John McCall8e346702010-06-04 19:02:56 +0000611 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek186a0742010-04-29 16:49:01 +0000612 else if (FunctionDecl *FD = getCurFunctionDecl())
613 isVariadic = FD->isVariadic();
614 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000615 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump11289f42009-09-09 15:08:12 +0000616
Chris Lattnere202e6a2007-12-20 00:05:45 +0000617 if (!isVariadic) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000618 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
619 return true;
620 }
Mike Stump11289f42009-09-09 15:08:12 +0000621
Chris Lattner43be2e62007-12-19 23:59:04 +0000622 // Verify that the second argument to the builtin is the last argument of the
623 // current function or method.
624 bool SecondArgIsLastNamedArgument = false;
Anders Carlsson73cc5072008-02-13 01:22:59 +0000625 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +0000626
Anders Carlsson6a8350b2008-02-11 04:20:54 +0000627 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
628 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000629 // FIXME: This isn't correct for methods (results in bogus warning).
630 // Get the last formal in the current function.
Anders Carlsson6a8350b2008-02-11 04:20:54 +0000631 const ParmVarDecl *LastArg;
Steve Naroff439a3e42009-04-15 19:33:47 +0000632 if (CurBlock)
633 LastArg = *(CurBlock->TheDecl->param_end()-1);
634 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner79413952008-12-04 23:50:19 +0000635 LastArg = *(FD->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000636 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000637 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000638 SecondArgIsLastNamedArgument = PV == LastArg;
639 }
640 }
Mike Stump11289f42009-09-09 15:08:12 +0000641
Chris Lattner43be2e62007-12-19 23:59:04 +0000642 if (!SecondArgIsLastNamedArgument)
Mike Stump11289f42009-09-09 15:08:12 +0000643 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner43be2e62007-12-19 23:59:04 +0000644 diag::warn_second_parameter_of_va_start_not_last_named_argument);
645 return false;
Eli Friedmanf8353032008-05-20 08:23:37 +0000646}
Chris Lattner43be2e62007-12-19 23:59:04 +0000647
Chris Lattner2da14fb2007-12-20 00:26:33 +0000648/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
649/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner08464942007-12-28 05:29:59 +0000650bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
651 if (TheCall->getNumArgs() < 2)
Chris Lattnercedef8d2008-11-21 18:44:24 +0000652 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000653 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner08464942007-12-28 05:29:59 +0000654 if (TheCall->getNumArgs() > 2)
Mike Stump11289f42009-09-09 15:08:12 +0000655 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000656 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000657 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattner3b054132008-11-19 05:08:23 +0000658 << SourceRange(TheCall->getArg(2)->getLocStart(),
659 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000660
John Wiegley01296292011-04-08 18:41:53 +0000661 ExprResult OrigArg0 = TheCall->getArg(0);
662 ExprResult OrigArg1 = TheCall->getArg(1);
Douglas Gregorc25f7662009-05-19 22:10:17 +0000663
Chris Lattner2da14fb2007-12-20 00:26:33 +0000664 // Do standard promotions between the two arguments, returning their common
665 // type.
Chris Lattner08464942007-12-28 05:29:59 +0000666 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
John Wiegley01296292011-04-08 18:41:53 +0000667 if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
668 return true;
Daniel Dunbar96f86772009-02-19 19:28:43 +0000669
670 // Make sure any conversions are pushed back into the call; this is
671 // type safe since unordered compare builtins are declared as "_Bool
672 // foo(...)".
John Wiegley01296292011-04-08 18:41:53 +0000673 TheCall->setArg(0, OrigArg0.get());
674 TheCall->setArg(1, OrigArg1.get());
Mike Stump11289f42009-09-09 15:08:12 +0000675
John Wiegley01296292011-04-08 18:41:53 +0000676 if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
Douglas Gregorc25f7662009-05-19 22:10:17 +0000677 return false;
678
Chris Lattner2da14fb2007-12-20 00:26:33 +0000679 // If the common type isn't a real floating type, then the arguments were
680 // invalid for this operation.
681 if (!Res->isRealFloatingType())
John Wiegley01296292011-04-08 18:41:53 +0000682 return Diag(OrigArg0.get()->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000683 diag::err_typecheck_call_invalid_ordered_compare)
John Wiegley01296292011-04-08 18:41:53 +0000684 << OrigArg0.get()->getType() << OrigArg1.get()->getType()
685 << SourceRange(OrigArg0.get()->getLocStart(), OrigArg1.get()->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000686
Chris Lattner2da14fb2007-12-20 00:26:33 +0000687 return false;
688}
689
Benjamin Kramer634fc102010-02-15 22:42:31 +0000690/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
691/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer64aae502010-02-16 10:07:31 +0000692/// to check everything. We expect the last argument to be a floating point
693/// value.
694bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
695 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman7e4faac2009-08-31 20:06:00 +0000696 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000697 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer64aae502010-02-16 10:07:31 +0000698 if (TheCall->getNumArgs() > NumArgs)
699 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000700 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000701 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer64aae502010-02-16 10:07:31 +0000702 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000703 (*(TheCall->arg_end()-1))->getLocEnd());
704
Benjamin Kramer64aae502010-02-16 10:07:31 +0000705 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump11289f42009-09-09 15:08:12 +0000706
Eli Friedman7e4faac2009-08-31 20:06:00 +0000707 if (OrigArg->isTypeDependent())
708 return false;
709
Chris Lattner68784ef2010-05-06 05:50:07 +0000710 // This operation requires a non-_Complex floating-point number.
Eli Friedman7e4faac2009-08-31 20:06:00 +0000711 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump11289f42009-09-09 15:08:12 +0000712 return Diag(OrigArg->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000713 diag::err_typecheck_call_invalid_unary_fp)
714 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +0000715
Chris Lattner68784ef2010-05-06 05:50:07 +0000716 // If this is an implicit conversion from float -> double, remove it.
717 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
718 Expr *CastArg = Cast->getSubExpr();
719 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
720 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
721 "promotion from float to double is the only expected cast here");
722 Cast->setSubExpr(0);
Chris Lattner68784ef2010-05-06 05:50:07 +0000723 TheCall->setArg(NumArgs-1, CastArg);
724 OrigArg = CastArg;
725 }
726 }
727
Eli Friedman7e4faac2009-08-31 20:06:00 +0000728 return false;
729}
730
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000731/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
732// This is declared to take (...), so we have to check everything.
John McCalldadc5752010-08-24 06:29:42 +0000733ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begemana0110022010-06-08 00:16:34 +0000734 if (TheCall->getNumArgs() < 2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000735 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherabf1e182010-04-16 04:48:22 +0000736 diag::err_typecheck_call_too_few_args_at_least)
Nate Begemana0110022010-06-08 00:16:34 +0000737 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherabf1e182010-04-16 04:48:22 +0000738 << TheCall->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000739
Nate Begemana0110022010-06-08 00:16:34 +0000740 // Determine which of the following types of shufflevector we're checking:
741 // 1) unary, vector mask: (lhs, mask)
742 // 2) binary, vector mask: (lhs, rhs, mask)
743 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
744 QualType resType = TheCall->getArg(0)->getType();
745 unsigned numElements = 0;
746
Douglas Gregorc25f7662009-05-19 22:10:17 +0000747 if (!TheCall->getArg(0)->isTypeDependent() &&
748 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begemana0110022010-06-08 00:16:34 +0000749 QualType LHSType = TheCall->getArg(0)->getType();
750 QualType RHSType = TheCall->getArg(1)->getType();
751
752 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000753 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000754 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000755 TheCall->getArg(1)->getLocEnd());
756 return ExprError();
757 }
Nate Begemana0110022010-06-08 00:16:34 +0000758
759 numElements = LHSType->getAs<VectorType>()->getNumElements();
760 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump11289f42009-09-09 15:08:12 +0000761
Nate Begemana0110022010-06-08 00:16:34 +0000762 // Check to see if we have a call with 2 vector arguments, the unary shuffle
763 // with mask. If so, verify that RHS is an integer vector type with the
764 // same number of elts as lhs.
765 if (TheCall->getNumArgs() == 2) {
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +0000766 if (!RHSType->hasIntegerRepresentation() ||
Nate Begemana0110022010-06-08 00:16:34 +0000767 RHSType->getAs<VectorType>()->getNumElements() != numElements)
768 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
769 << SourceRange(TheCall->getArg(1)->getLocStart(),
770 TheCall->getArg(1)->getLocEnd());
771 numResElements = numElements;
772 }
773 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000774 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000775 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000776 TheCall->getArg(1)->getLocEnd());
777 return ExprError();
Nate Begemana0110022010-06-08 00:16:34 +0000778 } else if (numElements != numResElements) {
779 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner37141f42010-06-23 06:00:24 +0000780 resType = Context.getVectorType(eltType, numResElements,
Bob Wilsonaeb56442010-11-10 21:56:12 +0000781 VectorType::GenericVector);
Douglas Gregorc25f7662009-05-19 22:10:17 +0000782 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000783 }
784
785 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000786 if (TheCall->getArg(i)->isTypeDependent() ||
787 TheCall->getArg(i)->isValueDependent())
788 continue;
789
Nate Begemana0110022010-06-08 00:16:34 +0000790 llvm::APSInt Result(32);
791 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
792 return ExprError(Diag(TheCall->getLocStart(),
793 diag::err_shufflevector_nonconstant_argument)
794 << TheCall->getArg(i)->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000795
Chris Lattner7ab824e2008-08-10 02:05:13 +0000796 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000797 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000798 diag::err_shufflevector_argument_too_large)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000799 << TheCall->getArg(i)->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000800 }
801
802 llvm::SmallVector<Expr*, 32> exprs;
803
Chris Lattner7ab824e2008-08-10 02:05:13 +0000804 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000805 exprs.push_back(TheCall->getArg(i));
806 TheCall->setArg(i, 0);
807 }
808
Nate Begemanf485fb52009-08-12 02:10:25 +0000809 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begemana0110022010-06-08 00:16:34 +0000810 exprs.size(), resType,
Ted Kremenek5a201952009-02-07 01:47:29 +0000811 TheCall->getCallee()->getLocStart(),
812 TheCall->getRParenLoc()));
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000813}
Chris Lattner43be2e62007-12-19 23:59:04 +0000814
Daniel Dunbarb7257262008-07-21 22:59:13 +0000815/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
816// This is declared to take (const void*, ...) and can take two
817// optional constant int args.
818bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattner3b054132008-11-19 05:08:23 +0000819 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000820
Chris Lattner3b054132008-11-19 05:08:23 +0000821 if (NumArgs > 3)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000822 return Diag(TheCall->getLocEnd(),
823 diag::err_typecheck_call_too_many_args_at_most)
824 << 0 /*function call*/ << 3 << NumArgs
825 << TheCall->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000826
827 // Argument 0 is checked for us and the remaining arguments must be
828 // constant integers.
Chris Lattner3b054132008-11-19 05:08:23 +0000829 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbarb7257262008-07-21 22:59:13 +0000830 Expr *Arg = TheCall->getArg(i);
Eric Christopher8d0c6212010-04-17 02:26:23 +0000831
Eli Friedman5efba262009-12-04 00:30:06 +0000832 llvm::APSInt Result;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000833 if (SemaBuiltinConstantArg(TheCall, i, Result))
834 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000835
Daniel Dunbarb7257262008-07-21 22:59:13 +0000836 // FIXME: gcc issues a warning and rewrites these to 0. These
837 // seems especially odd for the third argument since the default
838 // is 3.
Chris Lattner3b054132008-11-19 05:08:23 +0000839 if (i == 1) {
Eli Friedman5efba262009-12-04 00:30:06 +0000840 if (Result.getLimitedValue() > 1)
Chris Lattner3b054132008-11-19 05:08:23 +0000841 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000842 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000843 } else {
Eli Friedman5efba262009-12-04 00:30:06 +0000844 if (Result.getLimitedValue() > 3)
Chris Lattner3b054132008-11-19 05:08:23 +0000845 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000846 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000847 }
848 }
849
Chris Lattner3b054132008-11-19 05:08:23 +0000850 return false;
Daniel Dunbarb7257262008-07-21 22:59:13 +0000851}
852
Eric Christopher8d0c6212010-04-17 02:26:23 +0000853/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
854/// TheCall is a constant expression.
855bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
856 llvm::APSInt &Result) {
857 Expr *Arg = TheCall->getArg(ArgNum);
858 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
859 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
860
861 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
862
863 if (!Arg->isIntegerConstantExpr(Result, Context))
864 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher63448c32010-04-19 18:23:02 +0000865 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher8d0c6212010-04-17 02:26:23 +0000866
Chris Lattnerd545ad12009-09-23 06:06:36 +0000867 return false;
868}
869
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000870/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
871/// int type). This simply type checks that type is one of the defined
872/// constants (0-3).
Chris Lattner57540c52011-04-15 05:22:18 +0000873// For compatibility check 0-3, llvm only handles 0 and 2.
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000874bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher8d0c6212010-04-17 02:26:23 +0000875 llvm::APSInt Result;
876
877 // Check constant-ness first.
878 if (SemaBuiltinConstantArg(TheCall, 1, Result))
879 return true;
880
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000881 Expr *Arg = TheCall->getArg(1);
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000882 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattner3b054132008-11-19 05:08:23 +0000883 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
884 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000885 }
886
887 return false;
888}
889
Eli Friedmanc97d0142009-05-03 06:04:26 +0000890/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000891/// This checks that val is a constant 1.
892bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
893 Expr *Arg = TheCall->getArg(1);
Eric Christopher8d0c6212010-04-17 02:26:23 +0000894 llvm::APSInt Result;
Douglas Gregorc25f7662009-05-19 22:10:17 +0000895
Eric Christopher8d0c6212010-04-17 02:26:23 +0000896 // TODO: This is less than ideal. Overload this to take a value.
897 if (SemaBuiltinConstantArg(TheCall, 1, Result))
898 return true;
899
900 if (Result != 1)
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000901 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
902 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
903
904 return false;
905}
906
Ted Kremeneka8890832011-02-24 23:03:04 +0000907// Handle i > 1 ? "x" : "y", recursively.
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000908bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
909 bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +0000910 unsigned format_idx, unsigned firstDataArg,
911 bool isPrintf) {
Ted Kremenek808829352010-09-09 03:51:39 +0000912 tryAgain:
Douglas Gregorc25f7662009-05-19 22:10:17 +0000913 if (E->isTypeDependent() || E->isValueDependent())
914 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000915
Peter Collingbourne91147592011-04-15 00:35:48 +0000916 E = E->IgnoreParens();
917
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000918 switch (E->getStmtClass()) {
John McCallc07a0c72011-02-17 10:25:35 +0000919 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000920 case Stmt::ConditionalOperatorClass: {
John McCallc07a0c72011-02-17 10:25:35 +0000921 const AbstractConditionalOperator *C = cast<AbstractConditionalOperator>(E);
Ted Kremenek02087932010-07-16 02:11:22 +0000922 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
923 format_idx, firstDataArg, isPrintf)
John McCallc07a0c72011-02-17 10:25:35 +0000924 && SemaCheckStringLiteral(C->getFalseExpr(), TheCall, HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +0000925 format_idx, firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000926 }
927
Ted Kremenek1520dae2010-09-09 03:51:42 +0000928 case Stmt::IntegerLiteralClass:
929 // Technically -Wformat-nonliteral does not warn about this case.
930 // The behavior of printf and friends in this case is implementation
931 // dependent. Ideally if the format string cannot be null then
932 // it should have a 'nonnull' attribute in the function prototype.
933 return true;
934
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000935 case Stmt::ImplicitCastExprClass: {
Ted Kremenek808829352010-09-09 03:51:39 +0000936 E = cast<ImplicitCastExpr>(E)->getSubExpr();
937 goto tryAgain;
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000938 }
939
John McCallc07a0c72011-02-17 10:25:35 +0000940 case Stmt::OpaqueValueExprClass:
941 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
942 E = src;
943 goto tryAgain;
944 }
945 return false;
946
Ted Kremeneka8890832011-02-24 23:03:04 +0000947 case Stmt::PredefinedExprClass:
948 // While __func__, etc., are technically not string literals, they
949 // cannot contain format specifiers and thus are not a security
950 // liability.
951 return true;
952
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000953 case Stmt::DeclRefExprClass: {
954 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +0000955
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000956 // As an exception, do not flag errors for variables binding to
957 // const string literals.
958 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
959 bool isConstant = false;
960 QualType T = DR->getType();
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000961
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000962 if (const ArrayType *AT = Context.getAsArrayType(T)) {
963 isConstant = AT->getElementType().isConstant(Context);
Mike Stump12b8ce12009-08-04 21:02:39 +0000964 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump11289f42009-09-09 15:08:12 +0000965 isConstant = T.isConstant(Context) &&
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000966 PT->getPointeeType().isConstant(Context);
967 }
Mike Stump11289f42009-09-09 15:08:12 +0000968
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000969 if (isConstant) {
Sebastian Redl5ca79842010-02-01 20:16:42 +0000970 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000971 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek02087932010-07-16 02:11:22 +0000972 HasVAListArg, format_idx, firstDataArg,
973 isPrintf);
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000974 }
Mike Stump11289f42009-09-09 15:08:12 +0000975
Anders Carlssonb012ca92009-06-28 19:55:58 +0000976 // For vprintf* functions (i.e., HasVAListArg==true), we add a
977 // special check to see if the format string is a function parameter
978 // of the function calling the printf function. If the function
979 // has an attribute indicating it is a printf-like function, then we
980 // should suppress warnings concerning non-literals being used in a call
981 // to a vprintf function. For example:
982 //
983 // void
984 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
985 // va_list ap;
986 // va_start(ap, fmt);
987 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
988 // ...
989 //
990 //
991 // FIXME: We don't have full attribute support yet, so just check to see
992 // if the argument is a DeclRefExpr that references a parameter. We'll
993 // add proper support for checking the attribute later.
994 if (HasVAListArg)
995 if (isa<ParmVarDecl>(VD))
996 return true;
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000997 }
Mike Stump11289f42009-09-09 15:08:12 +0000998
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000999 return false;
1000 }
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001001
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001002 case Stmt::CallExprClass: {
1003 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001004 if (const ImplicitCastExpr *ICE
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001005 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1006 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1007 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001008 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001009 unsigned ArgIndex = FA->getFormatIdx();
1010 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump11289f42009-09-09 15:08:12 +00001011
1012 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00001013 format_idx, firstDataArg, isPrintf);
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001014 }
1015 }
1016 }
1017 }
Mike Stump11289f42009-09-09 15:08:12 +00001018
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001019 return false;
1020 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001021 case Stmt::ObjCStringLiteralClass:
1022 case Stmt::StringLiteralClass: {
1023 const StringLiteral *StrE = NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001024
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001025 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001026 StrE = ObjCFExpr->getString();
1027 else
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001028 StrE = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001029
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001030 if (StrE) {
Ted Kremenek02087932010-07-16 02:11:22 +00001031 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1032 firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001033 return true;
1034 }
Mike Stump11289f42009-09-09 15:08:12 +00001035
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001036 return false;
1037 }
Mike Stump11289f42009-09-09 15:08:12 +00001038
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001039 default:
1040 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001041 }
1042}
1043
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001044void
Mike Stump11289f42009-09-09 15:08:12 +00001045Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
Nick Lewyckyd4693212011-03-25 01:44:32 +00001046 const Expr * const *ExprArgs,
1047 SourceLocation CallSiteLoc) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001048 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1049 e = NonNull->args_end();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001050 i != e; ++i) {
Nick Lewyckyd4693212011-03-25 01:44:32 +00001051 const Expr *ArgExpr = ExprArgs[*i];
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001052 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00001053 Expr::NPC_ValueDependentIsNotNull))
Nick Lewyckyd4693212011-03-25 01:44:32 +00001054 Diag(CallSiteLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001055 }
1056}
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001057
Ted Kremenek02087932010-07-16 02:11:22 +00001058/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1059/// functions) for correct use of format strings.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001060void
Ted Kremenek02087932010-07-16 02:11:22 +00001061Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1062 unsigned format_idx, unsigned firstDataArg,
1063 bool isPrintf) {
1064
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001065 const Expr *Fn = TheCall->getCallee();
Chris Lattner08464942007-12-28 05:29:59 +00001066
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001067 // The way the format attribute works in GCC, the implicit this argument
1068 // of member functions is counted. However, it doesn't appear in our own
1069 // lists, so decrement format_idx in that case.
1070 if (isa<CXXMemberCallExpr>(TheCall)) {
Chandler Carruth1c8383d2010-11-16 08:49:43 +00001071 const CXXMethodDecl *method_decl =
1072 dyn_cast<CXXMethodDecl>(TheCall->getCalleeDecl());
1073 if (method_decl && method_decl->isInstance()) {
1074 // Catch a format attribute mistakenly referring to the object argument.
1075 if (format_idx == 0)
1076 return;
1077 --format_idx;
1078 if(firstDataArg != 0)
1079 --firstDataArg;
1080 }
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001081 }
1082
Ted Kremenek02087932010-07-16 02:11:22 +00001083 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner08464942007-12-28 05:29:59 +00001084 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek02087932010-07-16 02:11:22 +00001085 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerf490e152008-11-19 05:27:50 +00001086 << Fn->getSourceRange();
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001087 return;
1088 }
Mike Stump11289f42009-09-09 15:08:12 +00001089
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001090 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00001091
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001092 // CHECK: format string is not a string literal.
Mike Stump11289f42009-09-09 15:08:12 +00001093 //
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001094 // Dynamically generated format strings are difficult to
1095 // automatically vet at compile time. Requiring that format strings
1096 // are string literals: (1) permits the checking of format strings by
1097 // the compiler and thereby (2) can practically remove the source of
1098 // many format string exploits.
Ted Kremenek34f664d2008-06-16 18:00:42 +00001099
Mike Stump11289f42009-09-09 15:08:12 +00001100 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek34f664d2008-06-16 18:00:42 +00001101 // C string (e.g. "%d")
Mike Stump11289f42009-09-09 15:08:12 +00001102 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek34f664d2008-06-16 18:00:42 +00001103 // the same format string checking logic for both ObjC and C strings.
Chris Lattnere009a882009-04-29 04:49:34 +00001104 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek02087932010-07-16 02:11:22 +00001105 firstDataArg, isPrintf))
Chris Lattnere009a882009-04-29 04:49:34 +00001106 return; // Literal format string found, check done!
Ted Kremenek34f664d2008-06-16 18:00:42 +00001107
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001108 // If there are no arguments specified, warn with -Wformat-security, otherwise
1109 // warn only with -Wformat-nonliteral.
1110 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump11289f42009-09-09 15:08:12 +00001111 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001112 diag::warn_format_nonliteral_noargs)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001113 << OrigFormatExpr->getSourceRange();
1114 else
Mike Stump11289f42009-09-09 15:08:12 +00001115 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001116 diag::warn_format_nonliteral)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001117 << OrigFormatExpr->getSourceRange();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001118}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001119
Ted Kremenekab278de2010-01-28 23:39:18 +00001120namespace {
Ted Kremenek02087932010-07-16 02:11:22 +00001121class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1122protected:
Ted Kremenekab278de2010-01-28 23:39:18 +00001123 Sema &S;
1124 const StringLiteral *FExpr;
1125 const Expr *OrigFormatExpr;
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001126 const unsigned FirstDataArg;
Ted Kremenekab278de2010-01-28 23:39:18 +00001127 const unsigned NumDataArgs;
1128 const bool IsObjCLiteral;
1129 const char *Beg; // Start of format string.
Ted Kremenek5739de72010-01-29 01:06:55 +00001130 const bool HasVAListArg;
1131 const CallExpr *TheCall;
1132 unsigned FormatIdx;
Ted Kremenek4a49d982010-02-26 19:18:41 +00001133 llvm::BitVector CoveredArgs;
Ted Kremenekd1668192010-02-27 01:41:03 +00001134 bool usesPositionalArgs;
1135 bool atFirstArg;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001136public:
Ted Kremenek02087932010-07-16 02:11:22 +00001137 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001138 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremenekab278de2010-01-28 23:39:18 +00001139 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek5739de72010-01-29 01:06:55 +00001140 const char *beg, bool hasVAListArg,
1141 const CallExpr *theCall, unsigned formatIdx)
Ted Kremenekab278de2010-01-28 23:39:18 +00001142 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001143 FirstDataArg(firstDataArg),
Ted Kremenek4a49d982010-02-26 19:18:41 +00001144 NumDataArgs(numDataArgs),
Ted Kremenek5739de72010-01-29 01:06:55 +00001145 IsObjCLiteral(isObjCLiteral), Beg(beg),
1146 HasVAListArg(hasVAListArg),
Ted Kremenekd1668192010-02-27 01:41:03 +00001147 TheCall(theCall), FormatIdx(formatIdx),
1148 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001149 CoveredArgs.resize(numDataArgs);
1150 CoveredArgs.reset();
1151 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001152
Ted Kremenek019d2242010-01-29 01:50:07 +00001153 void DoneProcessing();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001154
Ted Kremenek02087932010-07-16 02:11:22 +00001155 void HandleIncompleteSpecifier(const char *startSpecifier,
1156 unsigned specifierLen);
1157
Ted Kremenekd1668192010-02-27 01:41:03 +00001158 virtual void HandleInvalidPosition(const char *startSpecifier,
1159 unsigned specifierLen,
Ted Kremenek02087932010-07-16 02:11:22 +00001160 analyze_format_string::PositionContext p);
Ted Kremenekd1668192010-02-27 01:41:03 +00001161
1162 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1163
Ted Kremenekab278de2010-01-28 23:39:18 +00001164 void HandleNullChar(const char *nullCharacter);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001165
Ted Kremenek02087932010-07-16 02:11:22 +00001166protected:
Ted Kremenekce815422010-07-19 21:25:57 +00001167 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1168 const char *startSpec,
1169 unsigned specifierLen,
1170 const char *csStart, unsigned csLen);
1171
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001172 SourceRange getFormatStringRange();
Ted Kremenek02087932010-07-16 02:11:22 +00001173 CharSourceRange getSpecifierRange(const char *startSpecifier,
1174 unsigned specifierLen);
Ted Kremenekab278de2010-01-28 23:39:18 +00001175 SourceLocation getLocationOfByte(const char *x);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001176
Ted Kremenek5739de72010-01-29 01:06:55 +00001177 const Expr *getDataArg(unsigned i) const;
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001178
1179 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1180 const analyze_format_string::ConversionSpecifier &CS,
1181 const char *startSpecifier, unsigned specifierLen,
1182 unsigned argIndex);
Ted Kremenekab278de2010-01-28 23:39:18 +00001183};
1184}
1185
Ted Kremenek02087932010-07-16 02:11:22 +00001186SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremenekab278de2010-01-28 23:39:18 +00001187 return OrigFormatExpr->getSourceRange();
1188}
1189
Ted Kremenek02087932010-07-16 02:11:22 +00001190CharSourceRange CheckFormatHandler::
1191getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care3f272b82010-06-21 21:21:01 +00001192 SourceLocation Start = getLocationOfByte(startSpecifier);
1193 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1194
1195 // Advance the end SourceLocation by one due to half-open ranges.
1196 End = End.getFileLocWithOffset(1);
1197
1198 return CharSourceRange::getCharRange(Start, End);
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001199}
1200
Ted Kremenek02087932010-07-16 02:11:22 +00001201SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001202 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremenekab278de2010-01-28 23:39:18 +00001203}
1204
Ted Kremenek02087932010-07-16 02:11:22 +00001205void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1206 unsigned specifierLen){
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001207 SourceLocation Loc = getLocationOfByte(startSpecifier);
1208 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek02087932010-07-16 02:11:22 +00001209 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001210}
1211
Ted Kremenekd1668192010-02-27 01:41:03 +00001212void
Ted Kremenek02087932010-07-16 02:11:22 +00001213CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1214 analyze_format_string::PositionContext p) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001215 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek02087932010-07-16 02:11:22 +00001216 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1217 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekd1668192010-02-27 01:41:03 +00001218}
1219
Ted Kremenek02087932010-07-16 02:11:22 +00001220void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekd1668192010-02-27 01:41:03 +00001221 unsigned posLen) {
1222 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek02087932010-07-16 02:11:22 +00001223 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1224 << getSpecifierRange(startPos, posLen);
Ted Kremenekd1668192010-02-27 01:41:03 +00001225}
1226
Ted Kremenek02087932010-07-16 02:11:22 +00001227void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
Ted Kremenek0d5b9ef2011-03-15 21:18:48 +00001228 if (!IsObjCLiteral) {
1229 // The presence of a null character is likely an error.
1230 S.Diag(getLocationOfByte(nullCharacter),
1231 diag::warn_printf_format_string_contains_null_char)
1232 << getFormatStringRange();
1233 }
Ted Kremenek02087932010-07-16 02:11:22 +00001234}
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001235
Ted Kremenek02087932010-07-16 02:11:22 +00001236const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1237 return TheCall->getArg(FirstDataArg + i);
1238}
1239
1240void CheckFormatHandler::DoneProcessing() {
1241 // Does the number of data arguments exceed the number of
1242 // format conversions in the format string?
1243 if (!HasVAListArg) {
1244 // Find any arguments that weren't covered.
1245 CoveredArgs.flip();
1246 signed notCoveredArg = CoveredArgs.find_first();
1247 if (notCoveredArg >= 0) {
1248 assert((unsigned)notCoveredArg < NumDataArgs);
1249 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1250 diag::warn_printf_data_arg_not_used)
1251 << getFormatStringRange();
1252 }
1253 }
1254}
1255
Ted Kremenekce815422010-07-19 21:25:57 +00001256bool
1257CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1258 SourceLocation Loc,
1259 const char *startSpec,
1260 unsigned specifierLen,
1261 const char *csStart,
1262 unsigned csLen) {
1263
1264 bool keepGoing = true;
1265 if (argIndex < NumDataArgs) {
1266 // Consider the argument coverered, even though the specifier doesn't
1267 // make sense.
1268 CoveredArgs.set(argIndex);
1269 }
1270 else {
1271 // If argIndex exceeds the number of data arguments we
1272 // don't issue a warning because that is just a cascade of warnings (and
1273 // they may have intended '%%' anyway). We don't want to continue processing
1274 // the format string after this point, however, as we will like just get
1275 // gibberish when trying to match arguments.
1276 keepGoing = false;
1277 }
1278
1279 S.Diag(Loc, diag::warn_format_invalid_conversion)
1280 << llvm::StringRef(csStart, csLen)
1281 << getSpecifierRange(startSpec, specifierLen);
1282
1283 return keepGoing;
1284}
1285
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001286bool
1287CheckFormatHandler::CheckNumArgs(
1288 const analyze_format_string::FormatSpecifier &FS,
1289 const analyze_format_string::ConversionSpecifier &CS,
1290 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1291
1292 if (argIndex >= NumDataArgs) {
1293 if (FS.usesPositionalArg()) {
1294 S.Diag(getLocationOfByte(CS.getStart()),
1295 diag::warn_printf_positional_arg_exceeds_data_args)
1296 << (argIndex+1) << NumDataArgs
1297 << getSpecifierRange(startSpecifier, specifierLen);
1298 }
1299 else {
1300 S.Diag(getLocationOfByte(CS.getStart()),
1301 diag::warn_printf_insufficient_data_args)
1302 << getSpecifierRange(startSpecifier, specifierLen);
1303 }
1304
1305 return false;
1306 }
1307 return true;
1308}
1309
Ted Kremenek02087932010-07-16 02:11:22 +00001310//===--- CHECK: Printf format string checking ------------------------------===//
1311
1312namespace {
1313class CheckPrintfHandler : public CheckFormatHandler {
1314public:
1315 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1316 const Expr *origFormatExpr, unsigned firstDataArg,
1317 unsigned numDataArgs, bool isObjCLiteral,
1318 const char *beg, bool hasVAListArg,
1319 const CallExpr *theCall, unsigned formatIdx)
1320 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1321 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1322 theCall, formatIdx) {}
1323
1324
1325 bool HandleInvalidPrintfConversionSpecifier(
1326 const analyze_printf::PrintfSpecifier &FS,
1327 const char *startSpecifier,
1328 unsigned specifierLen);
1329
1330 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1331 const char *startSpecifier,
1332 unsigned specifierLen);
1333
1334 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1335 const char *startSpecifier, unsigned specifierLen);
1336 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1337 const analyze_printf::OptionalAmount &Amt,
1338 unsigned type,
1339 const char *startSpecifier, unsigned specifierLen);
1340 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1341 const analyze_printf::OptionalFlag &flag,
1342 const char *startSpecifier, unsigned specifierLen);
1343 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1344 const analyze_printf::OptionalFlag &ignoredFlag,
1345 const analyze_printf::OptionalFlag &flag,
1346 const char *startSpecifier, unsigned specifierLen);
1347};
1348}
1349
1350bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1351 const analyze_printf::PrintfSpecifier &FS,
1352 const char *startSpecifier,
1353 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001354 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00001355 FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00001356
Ted Kremenekce815422010-07-19 21:25:57 +00001357 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1358 getLocationOfByte(CS.getStart()),
1359 startSpecifier, specifierLen,
1360 CS.getStart(), CS.getLength());
Ted Kremenek94af5752010-01-29 02:40:24 +00001361}
1362
Ted Kremenek02087932010-07-16 02:11:22 +00001363bool CheckPrintfHandler::HandleAmount(
1364 const analyze_format_string::OptionalAmount &Amt,
1365 unsigned k, const char *startSpecifier,
1366 unsigned specifierLen) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001367
1368 if (Amt.hasDataArgument()) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001369 if (!HasVAListArg) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001370 unsigned argIndex = Amt.getArgIndex();
1371 if (argIndex >= NumDataArgs) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001372 S.Diag(getLocationOfByte(Amt.getStart()),
1373 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek02087932010-07-16 02:11:22 +00001374 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek5739de72010-01-29 01:06:55 +00001375 // Don't do any more checking. We will just emit
1376 // spurious errors.
1377 return false;
1378 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001379
Ted Kremenek5739de72010-01-29 01:06:55 +00001380 // Type check the data argument. It should be an 'int'.
Ted Kremenek605b0112010-01-29 23:32:22 +00001381 // Although not in conformance with C99, we also allow the argument to be
1382 // an 'unsigned int' as that is a reasonably safe case. GCC also
1383 // doesn't emit a warning for that case.
Ted Kremenek4a49d982010-02-26 19:18:41 +00001384 CoveredArgs.set(argIndex);
1385 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek5739de72010-01-29 01:06:55 +00001386 QualType T = Arg->getType();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001387
1388 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1389 assert(ATR.isValid());
1390
1391 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001392 S.Diag(getLocationOfByte(Amt.getStart()),
1393 diag::warn_printf_asterisk_wrong_type)
1394 << k
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001395 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek02087932010-07-16 02:11:22 +00001396 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001397 << Arg->getSourceRange();
Ted Kremenek5739de72010-01-29 01:06:55 +00001398 // Don't do any more checking. We will just emit
1399 // spurious errors.
1400 return false;
1401 }
1402 }
1403 }
1404 return true;
1405}
Ted Kremenek5739de72010-01-29 01:06:55 +00001406
Tom Careb49ec692010-06-17 19:00:27 +00001407void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek02087932010-07-16 02:11:22 +00001408 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001409 const analyze_printf::OptionalAmount &Amt,
1410 unsigned type,
1411 const char *startSpecifier,
1412 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001413 const analyze_printf::PrintfConversionSpecifier &CS =
1414 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00001415 switch (Amt.getHowSpecified()) {
1416 case analyze_printf::OptionalAmount::Constant:
1417 S.Diag(getLocationOfByte(Amt.getStart()),
1418 diag::warn_printf_nonsensical_optional_amount)
1419 << type
1420 << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001421 << getSpecifierRange(startSpecifier, specifierLen)
1422 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Careb49ec692010-06-17 19:00:27 +00001423 Amt.getConstantLength()));
1424 break;
1425
1426 default:
1427 S.Diag(getLocationOfByte(Amt.getStart()),
1428 diag::warn_printf_nonsensical_optional_amount)
1429 << type
1430 << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001431 << getSpecifierRange(startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001432 break;
1433 }
1434}
1435
Ted Kremenek02087932010-07-16 02:11:22 +00001436void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001437 const analyze_printf::OptionalFlag &flag,
1438 const char *startSpecifier,
1439 unsigned specifierLen) {
1440 // Warn about pointless flag with a fixit removal.
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001441 const analyze_printf::PrintfConversionSpecifier &CS =
1442 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00001443 S.Diag(getLocationOfByte(flag.getPosition()),
1444 diag::warn_printf_nonsensical_flag)
1445 << flag.toString() << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001446 << getSpecifierRange(startSpecifier, specifierLen)
1447 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Careb49ec692010-06-17 19:00:27 +00001448}
1449
1450void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek02087932010-07-16 02:11:22 +00001451 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001452 const analyze_printf::OptionalFlag &ignoredFlag,
1453 const analyze_printf::OptionalFlag &flag,
1454 const char *startSpecifier,
1455 unsigned specifierLen) {
1456 // Warn about ignored flag with a fixit removal.
1457 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1458 diag::warn_printf_ignored_flag)
1459 << ignoredFlag.toString() << flag.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001460 << getSpecifierRange(startSpecifier, specifierLen)
1461 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Careb49ec692010-06-17 19:00:27 +00001462 ignoredFlag.getPosition(), 1));
1463}
1464
Ted Kremenekab278de2010-01-28 23:39:18 +00001465bool
Ted Kremenek02087932010-07-16 02:11:22 +00001466CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenekd31b2632010-02-11 09:27:41 +00001467 &FS,
Ted Kremenekab278de2010-01-28 23:39:18 +00001468 const char *startSpecifier,
1469 unsigned specifierLen) {
1470
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001471 using namespace analyze_format_string;
Ted Kremenekd1668192010-02-27 01:41:03 +00001472 using namespace analyze_printf;
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001473 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenekab278de2010-01-28 23:39:18 +00001474
Ted Kremenek6cd69422010-07-19 22:01:06 +00001475 if (FS.consumesDataArgument()) {
1476 if (atFirstArg) {
1477 atFirstArg = false;
1478 usesPositionalArgs = FS.usesPositionalArg();
1479 }
1480 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1481 // Cannot mix-and-match positional and non-positional arguments.
1482 S.Diag(getLocationOfByte(CS.getStart()),
1483 diag::warn_format_mix_positional_nonpositional_args)
1484 << getSpecifierRange(startSpecifier, specifierLen);
1485 return false;
1486 }
Ted Kremenek5739de72010-01-29 01:06:55 +00001487 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001488
Ted Kremenekd1668192010-02-27 01:41:03 +00001489 // First check if the field width, precision, and conversion specifier
1490 // have matching data arguments.
1491 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1492 startSpecifier, specifierLen)) {
1493 return false;
1494 }
1495
1496 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1497 startSpecifier, specifierLen)) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001498 return false;
1499 }
1500
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001501 if (!CS.consumesDataArgument()) {
1502 // FIXME: Technically specifying a precision or field width here
1503 // makes no sense. Worth issuing a warning at some point.
Ted Kremenekfb45d352010-02-10 02:16:30 +00001504 return true;
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001505 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001506
Ted Kremenek4a49d982010-02-26 19:18:41 +00001507 // Consume the argument.
1508 unsigned argIndex = FS.getArgIndex();
Ted Kremenek09597b42010-02-27 08:34:51 +00001509 if (argIndex < NumDataArgs) {
1510 // The check to see if the argIndex is valid will come later.
1511 // We set the bit here because we may exit early from this
1512 // function if we encounter some other error.
1513 CoveredArgs.set(argIndex);
1514 }
Ted Kremenek4a49d982010-02-26 19:18:41 +00001515
1516 // Check for using an Objective-C specific conversion specifier
1517 // in a non-ObjC literal.
1518 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek02087932010-07-16 02:11:22 +00001519 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1520 specifierLen);
Ted Kremenek4a49d982010-02-26 19:18:41 +00001521 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001522
Tom Careb49ec692010-06-17 19:00:27 +00001523 // Check for invalid use of field width
1524 if (!FS.hasValidFieldWidth()) {
Tom Care3f272b82010-06-21 21:21:01 +00001525 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Careb49ec692010-06-17 19:00:27 +00001526 startSpecifier, specifierLen);
1527 }
1528
1529 // Check for invalid use of precision
1530 if (!FS.hasValidPrecision()) {
1531 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1532 startSpecifier, specifierLen);
1533 }
1534
1535 // Check each flag does not conflict with any other component.
Ted Kremenekbf4832c2011-01-08 05:28:46 +00001536 if (!FS.hasValidThousandsGroupingPrefix())
1537 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001538 if (!FS.hasValidLeadingZeros())
1539 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1540 if (!FS.hasValidPlusPrefix())
1541 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care3f272b82010-06-21 21:21:01 +00001542 if (!FS.hasValidSpacePrefix())
1543 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001544 if (!FS.hasValidAlternativeForm())
1545 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1546 if (!FS.hasValidLeftJustified())
1547 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1548
1549 // Check that flags are not ignored by another flag
Tom Care3f272b82010-06-21 21:21:01 +00001550 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1551 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1552 startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001553 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1554 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1555 startSpecifier, specifierLen);
1556
1557 // Check the length modifier is valid with the given conversion specifier.
1558 const LengthModifier &LM = FS.getLengthModifier();
1559 if (!FS.hasValidLengthModifier())
1560 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenekb65a9d52010-07-20 20:03:43 +00001561 diag::warn_format_nonsensical_length)
Tom Careb49ec692010-06-17 19:00:27 +00001562 << LM.toString() << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001563 << getSpecifierRange(startSpecifier, specifierLen)
1564 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Careb49ec692010-06-17 19:00:27 +00001565 LM.getLength()));
1566
1567 // Are we using '%n'?
Ted Kremenek516ef222010-07-20 20:04:10 +00001568 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Careb49ec692010-06-17 19:00:27 +00001569 // Issue a warning about this being a possible security issue.
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001570 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek02087932010-07-16 02:11:22 +00001571 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001572 // Continue checking the other format specifiers.
1573 return true;
1574 }
Ted Kremenekd31b2632010-02-11 09:27:41 +00001575
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001576 // The remaining checks depend on the data arguments.
1577 if (HasVAListArg)
1578 return true;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001579
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001580 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001581 return false;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001582
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00001583 // Now type check the data expression that matches the
1584 // format specifier.
1585 const Expr *Ex = getDataArg(argIndex);
1586 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1587 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1588 // Check if we didn't match because of an implicit cast from a 'char'
1589 // or 'short' to an 'int'. This is done because printf is a varargs
1590 // function.
1591 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
Ted Kremenek12a37de2010-10-21 04:00:58 +00001592 if (ICE->getType() == S.Context.IntTy) {
1593 // All further checking is done on the subexpression.
1594 Ex = ICE->getSubExpr();
1595 if (ATR.matchesType(S.Context, Ex->getType()))
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00001596 return true;
Ted Kremenek12a37de2010-10-21 04:00:58 +00001597 }
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00001598
1599 // We may be able to offer a FixItHint if it is a supported type.
1600 PrintfSpecifier fixedFS = FS;
1601 bool success = fixedFS.fixType(Ex->getType());
1602
1603 if (success) {
1604 // Get the fix string from the fixed format specifier
1605 llvm::SmallString<128> buf;
1606 llvm::raw_svector_ostream os(buf);
1607 fixedFS.toString(os);
1608
Ted Kremenek5f0c0662010-08-24 22:24:51 +00001609 // FIXME: getRepresentativeType() perhaps should return a string
1610 // instead of a QualType to better handle when the representative
1611 // type is 'wint_t' (which is defined in the system headers).
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00001612 S.Diag(getLocationOfByte(CS.getStart()),
1613 diag::warn_printf_conversion_argument_type_mismatch)
1614 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1615 << getSpecifierRange(startSpecifier, specifierLen)
1616 << Ex->getSourceRange()
1617 << FixItHint::CreateReplacement(
1618 getSpecifierRange(startSpecifier, specifierLen),
1619 os.str());
1620 }
1621 else {
1622 S.Diag(getLocationOfByte(CS.getStart()),
1623 diag::warn_printf_conversion_argument_type_mismatch)
1624 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1625 << getSpecifierRange(startSpecifier, specifierLen)
1626 << Ex->getSourceRange();
1627 }
1628 }
1629
Ted Kremenekab278de2010-01-28 23:39:18 +00001630 return true;
1631}
1632
Ted Kremenek02087932010-07-16 02:11:22 +00001633//===--- CHECK: Scanf format string checking ------------------------------===//
1634
1635namespace {
1636class CheckScanfHandler : public CheckFormatHandler {
1637public:
1638 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1639 const Expr *origFormatExpr, unsigned firstDataArg,
1640 unsigned numDataArgs, bool isObjCLiteral,
1641 const char *beg, bool hasVAListArg,
1642 const CallExpr *theCall, unsigned formatIdx)
1643 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1644 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1645 theCall, formatIdx) {}
1646
1647 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1648 const char *startSpecifier,
1649 unsigned specifierLen);
Ted Kremenekce815422010-07-19 21:25:57 +00001650
1651 bool HandleInvalidScanfConversionSpecifier(
1652 const analyze_scanf::ScanfSpecifier &FS,
1653 const char *startSpecifier,
1654 unsigned specifierLen);
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00001655
1656 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek02087932010-07-16 02:11:22 +00001657};
Ted Kremenek019d2242010-01-29 01:50:07 +00001658}
Ted Kremenekab278de2010-01-28 23:39:18 +00001659
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00001660void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1661 const char *end) {
1662 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1663 << getSpecifierRange(start, end - start);
1664}
1665
Ted Kremenekce815422010-07-19 21:25:57 +00001666bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1667 const analyze_scanf::ScanfSpecifier &FS,
1668 const char *startSpecifier,
1669 unsigned specifierLen) {
1670
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001671 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00001672 FS.getConversionSpecifier();
1673
1674 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1675 getLocationOfByte(CS.getStart()),
1676 startSpecifier, specifierLen,
1677 CS.getStart(), CS.getLength());
1678}
1679
Ted Kremenek02087932010-07-16 02:11:22 +00001680bool CheckScanfHandler::HandleScanfSpecifier(
1681 const analyze_scanf::ScanfSpecifier &FS,
1682 const char *startSpecifier,
1683 unsigned specifierLen) {
1684
1685 using namespace analyze_scanf;
1686 using namespace analyze_format_string;
1687
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001688 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00001689
Ted Kremenek6cd69422010-07-19 22:01:06 +00001690 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1691 // be used to decide if we are using positional arguments consistently.
1692 if (FS.consumesDataArgument()) {
1693 if (atFirstArg) {
1694 atFirstArg = false;
1695 usesPositionalArgs = FS.usesPositionalArg();
1696 }
1697 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1698 // Cannot mix-and-match positional and non-positional arguments.
1699 S.Diag(getLocationOfByte(CS.getStart()),
1700 diag::warn_format_mix_positional_nonpositional_args)
1701 << getSpecifierRange(startSpecifier, specifierLen);
1702 return false;
1703 }
Ted Kremenek02087932010-07-16 02:11:22 +00001704 }
1705
1706 // Check if the field with is non-zero.
1707 const OptionalAmount &Amt = FS.getFieldWidth();
1708 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1709 if (Amt.getConstantAmount() == 0) {
1710 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1711 Amt.getConstantLength());
1712 S.Diag(getLocationOfByte(Amt.getStart()),
1713 diag::warn_scanf_nonzero_width)
1714 << R << FixItHint::CreateRemoval(R);
1715 }
1716 }
1717
1718 if (!FS.consumesDataArgument()) {
1719 // FIXME: Technically specifying a precision or field width here
1720 // makes no sense. Worth issuing a warning at some point.
1721 return true;
1722 }
1723
1724 // Consume the argument.
1725 unsigned argIndex = FS.getArgIndex();
1726 if (argIndex < NumDataArgs) {
1727 // The check to see if the argIndex is valid will come later.
1728 // We set the bit here because we may exit early from this
1729 // function if we encounter some other error.
1730 CoveredArgs.set(argIndex);
1731 }
1732
Ted Kremenek4407ea42010-07-20 20:04:47 +00001733 // Check the length modifier is valid with the given conversion specifier.
1734 const LengthModifier &LM = FS.getLengthModifier();
1735 if (!FS.hasValidLengthModifier()) {
1736 S.Diag(getLocationOfByte(LM.getStart()),
1737 diag::warn_format_nonsensical_length)
1738 << LM.toString() << CS.toString()
1739 << getSpecifierRange(startSpecifier, specifierLen)
1740 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1741 LM.getLength()));
1742 }
1743
Ted Kremenek02087932010-07-16 02:11:22 +00001744 // The remaining checks depend on the data arguments.
1745 if (HasVAListArg)
1746 return true;
1747
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001748 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek02087932010-07-16 02:11:22 +00001749 return false;
Ted Kremenek02087932010-07-16 02:11:22 +00001750
1751 // FIXME: Check that the argument type matches the format specifier.
1752
1753 return true;
1754}
1755
1756void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenekfb45d352010-02-10 02:16:30 +00001757 const Expr *OrigFormatExpr,
1758 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00001759 unsigned format_idx, unsigned firstDataArg,
1760 bool isPrintf) {
1761
Ted Kremenekab278de2010-01-28 23:39:18 +00001762 // CHECK: is the format string a wide literal?
1763 if (FExpr->isWide()) {
1764 Diag(FExpr->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001765 diag::warn_format_string_is_wide_literal)
Ted Kremenekab278de2010-01-28 23:39:18 +00001766 << OrigFormatExpr->getSourceRange();
1767 return;
1768 }
Ted Kremenek02087932010-07-16 02:11:22 +00001769
Ted Kremenekab278de2010-01-28 23:39:18 +00001770 // Str - The format string. NOTE: this is NOT null-terminated!
Benjamin Kramer35b077e2010-08-17 12:54:38 +00001771 llvm::StringRef StrRef = FExpr->getString();
1772 const char *Str = StrRef.data();
1773 unsigned StrLen = StrRef.size();
Ted Kremenek02087932010-07-16 02:11:22 +00001774
Ted Kremenekab278de2010-01-28 23:39:18 +00001775 // CHECK: empty format string?
Ted Kremenekab278de2010-01-28 23:39:18 +00001776 if (StrLen == 0) {
Ted Kremenek02087932010-07-16 02:11:22 +00001777 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremenekab278de2010-01-28 23:39:18 +00001778 << OrigFormatExpr->getSourceRange();
1779 return;
1780 }
Ted Kremenek02087932010-07-16 02:11:22 +00001781
1782 if (isPrintf) {
1783 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1784 TheCall->getNumArgs() - firstDataArg,
1785 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1786 HasVAListArg, TheCall, format_idx);
1787
1788 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1789 H.DoneProcessing();
1790 }
1791 else {
1792 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1793 TheCall->getNumArgs() - firstDataArg,
1794 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1795 HasVAListArg, TheCall, format_idx);
1796
1797 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1798 H.DoneProcessing();
1799 }
Ted Kremenekc70ee862010-01-28 01:18:22 +00001800}
1801
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001802//===--- CHECK: Standard memory functions ---------------------------------===//
1803
Douglas Gregora74926b2011-05-03 20:05:22 +00001804/// \brief Determine whether the given type is a dynamic class type (e.g.,
1805/// whether it has a vtable).
1806static bool isDynamicClassType(QualType T) {
1807 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl())
1808 if (CXXRecordDecl *Definition = Record->getDefinition())
1809 if (Definition->isDynamicClass())
1810 return true;
1811
1812 return false;
1813}
1814
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001815/// \brief Check for dangerous or invalid arguments to memset().
1816///
Chandler Carruthac687262011-06-03 06:23:57 +00001817/// This issues warnings on known problematic, dangerous or unspecified
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001818/// arguments to the standard 'memset', 'memcpy', and 'memmove' function calls.
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001819///
1820/// \param Call The call expression to diagnose.
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001821void Sema::CheckMemsetcpymoveArguments(const CallExpr *Call,
1822 const IdentifierInfo *FnName) {
Ted Kremenekb5fabb22011-04-28 01:38:02 +00001823 // It is possible to have a non-standard definition of memset. Validate
1824 // we have the proper number of arguments, and if not, abort further
1825 // checking.
1826 if (Call->getNumArgs() != 3)
1827 return;
1828
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001829 unsigned LastArg = FnName->isStr("memset")? 1 : 2;
1830 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
1831 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001832
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001833 QualType DestTy = Dest->getType();
1834 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
1835 QualType PointeeTy = DestPtrTy->getPointeeType();
1836 if (PointeeTy->isVoidType())
1837 continue;
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001838
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001839 // Always complain about dynamic classes.
Chandler Carruthac687262011-06-03 06:23:57 +00001840 if (isDynamicClassType(PointeeTy)) {
1841 DiagRuntimeBehavior(
1842 Dest->getExprLoc(), Dest,
1843 PDiag(diag::warn_dyn_class_memaccess)
1844 << ArgIdx << FnName << PointeeTy
1845 << Call->getCallee()->getSourceRange());
1846 } else {
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001847 continue;
Chandler Carruthac687262011-06-03 06:23:57 +00001848 }
Chandler Carruthc37485e2011-04-29 09:46:08 +00001849
Chandler Carruthff455bb2011-06-13 05:00:35 +00001850 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001851 DiagRuntimeBehavior(
1852 Dest->getExprLoc(), Dest,
Chandler Carruthac687262011-06-03 06:23:57 +00001853 PDiag(diag::note_bad_memaccess_silence)
Douglas Gregor3bb2a812011-05-03 20:37:33 +00001854 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
1855 break;
1856 }
Chandler Carruth53caa4d2011-04-27 07:05:31 +00001857 }
1858}
1859
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001860//===--- CHECK: Return Address of Stack Variable --------------------------===//
1861
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001862static Expr *EvalVal(Expr *E, llvm::SmallVectorImpl<DeclRefExpr *> &refVars);
1863static Expr *EvalAddr(Expr* E, llvm::SmallVectorImpl<DeclRefExpr *> &refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001864
1865/// CheckReturnStackAddr - Check if a return statement returns the address
1866/// of a stack variable.
1867void
1868Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1869 SourceLocation ReturnLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00001870
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001871 Expr *stackE = 0;
1872 llvm::SmallVector<DeclRefExpr *, 8> refVars;
1873
1874 // Perform checking for returned stack addresses, local blocks,
1875 // label addresses or references to temporaries.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001876 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001877 stackE = EvalAddr(RetValExp, refVars);
Mike Stump12b8ce12009-08-04 21:02:39 +00001878 } else if (lhsType->isReferenceType()) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001879 stackE = EvalVal(RetValExp, refVars);
1880 }
1881
1882 if (stackE == 0)
1883 return; // Nothing suspicious was found.
1884
1885 SourceLocation diagLoc;
1886 SourceRange diagRange;
1887 if (refVars.empty()) {
1888 diagLoc = stackE->getLocStart();
1889 diagRange = stackE->getSourceRange();
1890 } else {
1891 // We followed through a reference variable. 'stackE' contains the
1892 // problematic expression but we will warn at the return statement pointing
1893 // at the reference variable. We will later display the "trail" of
1894 // reference variables using notes.
1895 diagLoc = refVars[0]->getLocStart();
1896 diagRange = refVars[0]->getSourceRange();
1897 }
1898
1899 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
1900 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref
1901 : diag::warn_ret_stack_addr)
1902 << DR->getDecl()->getDeclName() << diagRange;
1903 } else if (isa<BlockExpr>(stackE)) { // local block.
1904 Diag(diagLoc, diag::err_ret_local_block) << diagRange;
1905 } else if (isa<AddrLabelExpr>(stackE)) { // address of label.
1906 Diag(diagLoc, diag::warn_ret_addr_label) << diagRange;
1907 } else { // local temporary.
1908 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref
1909 : diag::warn_ret_local_temp_addr)
1910 << diagRange;
1911 }
1912
1913 // Display the "trail" of reference variables that we followed until we
1914 // found the problematic expression using notes.
1915 for (unsigned i = 0, e = refVars.size(); i != e; ++i) {
1916 VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl());
1917 // If this var binds to another reference var, show the range of the next
1918 // var, otherwise the var binds to the problematic expression, in which case
1919 // show the range of the expression.
1920 SourceRange range = (i < e-1) ? refVars[i+1]->getSourceRange()
1921 : stackE->getSourceRange();
1922 Diag(VD->getLocation(), diag::note_ref_var_local_bind)
1923 << VD->getDeclName() << range;
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001924 }
1925}
1926
1927/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1928/// check if the expression in a return statement evaluates to an address
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001929/// to a location on the stack, a local block, an address of a label, or a
1930/// reference to local temporary. The recursion is used to traverse the
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001931/// AST of the return expression, with recursion backtracking when we
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001932/// encounter a subexpression that (1) clearly does not lead to one of the
1933/// above problematic expressions (2) is something we cannot determine leads to
1934/// a problematic expression based on such local checking.
1935///
1936/// Both EvalAddr and EvalVal follow through reference variables to evaluate
1937/// the expression that they point to. Such variables are added to the
1938/// 'refVars' vector so that we know what the reference variable "trail" was.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001939///
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00001940/// EvalAddr processes expressions that are pointers that are used as
1941/// references (and not L-values). EvalVal handles all other values.
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001942/// At the base case of the recursion is a check for the above problematic
1943/// expressions.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001944///
1945/// This implementation handles:
1946///
1947/// * pointer-to-pointer casts
1948/// * implicit conversions from array references to pointers
1949/// * taking the address of fields
1950/// * arbitrary interplay between "&" and "*" operators
1951/// * pointer arithmetic from an address of a stack variable
1952/// * taking the address of an array element where the array is on the stack
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001953static Expr *EvalAddr(Expr *E, llvm::SmallVectorImpl<DeclRefExpr *> &refVars) {
1954 if (E->isTypeDependent())
1955 return NULL;
1956
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001957 // We should only be called for evaluating pointer expressions.
David Chisnall9f57c292009-08-17 16:35:33 +00001958 assert((E->getType()->isAnyPointerType() ||
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001959 E->getType()->isBlockPointerType() ||
Ted Kremenek1b0ea822008-01-07 19:49:32 +00001960 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattner934edb22007-12-28 05:31:15 +00001961 "EvalAddr only works on pointers");
Mike Stump11289f42009-09-09 15:08:12 +00001962
Peter Collingbourne91147592011-04-15 00:35:48 +00001963 E = E->IgnoreParens();
1964
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001965 // Our "symbolic interpreter" is just a dispatch off the currently
1966 // viewed AST node. We then recursively traverse the AST by calling
1967 // EvalAddr and EvalVal appropriately.
1968 switch (E->getStmtClass()) {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001969 case Stmt::DeclRefExprClass: {
1970 DeclRefExpr *DR = cast<DeclRefExpr>(E);
1971
1972 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
1973 // If this is a reference variable, follow through to the expression that
1974 // it points to.
1975 if (V->hasLocalStorage() &&
1976 V->getType()->isReferenceType() && V->hasInit()) {
1977 // Add the reference variable to the "trail".
1978 refVars.push_back(DR);
1979 return EvalAddr(V->getInit(), refVars);
1980 }
1981
1982 return NULL;
1983 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001984
Chris Lattner934edb22007-12-28 05:31:15 +00001985 case Stmt::UnaryOperatorClass: {
1986 // The only unary operator that make sense to handle here
1987 // is AddrOf. All others don't make sense as pointers.
1988 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001989
John McCalle3027922010-08-25 11:45:40 +00001990 if (U->getOpcode() == UO_AddrOf)
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00001991 return EvalVal(U->getSubExpr(), refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00001992 else
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001993 return NULL;
1994 }
Mike Stump11289f42009-09-09 15:08:12 +00001995
Chris Lattner934edb22007-12-28 05:31:15 +00001996 case Stmt::BinaryOperatorClass: {
1997 // Handle pointer arithmetic. All other binary operators are not valid
1998 // in this context.
1999 BinaryOperator *B = cast<BinaryOperator>(E);
John McCalle3027922010-08-25 11:45:40 +00002000 BinaryOperatorKind op = B->getOpcode();
Mike Stump11289f42009-09-09 15:08:12 +00002001
John McCalle3027922010-08-25 11:45:40 +00002002 if (op != BO_Add && op != BO_Sub)
Chris Lattner934edb22007-12-28 05:31:15 +00002003 return NULL;
Mike Stump11289f42009-09-09 15:08:12 +00002004
Chris Lattner934edb22007-12-28 05:31:15 +00002005 Expr *Base = B->getLHS();
2006
2007 // Determine which argument is the real pointer base. It could be
2008 // the RHS argument instead of the LHS.
2009 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump11289f42009-09-09 15:08:12 +00002010
Chris Lattner934edb22007-12-28 05:31:15 +00002011 assert (Base->getType()->isPointerType());
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002012 return EvalAddr(Base, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002013 }
Steve Naroff2752a172008-09-10 19:17:48 +00002014
Chris Lattner934edb22007-12-28 05:31:15 +00002015 // For conditional operators we need to see if either the LHS or RHS are
2016 // valid DeclRefExpr*s. If one of them is valid, we return it.
2017 case Stmt::ConditionalOperatorClass: {
2018 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002019
Chris Lattner934edb22007-12-28 05:31:15 +00002020 // Handle the GNU extension for missing LHS.
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002021 if (Expr *lhsExpr = C->getLHS()) {
2022 // In C++, we can have a throw-expression, which has 'void' type.
2023 if (!lhsExpr->getType()->isVoidType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002024 if (Expr* LHS = EvalAddr(lhsExpr, refVars))
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002025 return LHS;
2026 }
Chris Lattner934edb22007-12-28 05:31:15 +00002027
Douglas Gregor270b2ef2010-10-21 16:21:08 +00002028 // In C++, we can have a throw-expression, which has 'void' type.
2029 if (C->getRHS()->getType()->isVoidType())
2030 return NULL;
2031
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002032 return EvalAddr(C->getRHS(), refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002033 }
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002034
2035 case Stmt::BlockExprClass:
John McCallc63de662011-02-02 13:00:07 +00002036 if (cast<BlockExpr>(E)->getBlockDecl()->hasCaptures())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002037 return E; // local block.
2038 return NULL;
2039
2040 case Stmt::AddrLabelExprClass:
2041 return E; // address of label.
Mike Stump11289f42009-09-09 15:08:12 +00002042
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002043 // For casts, we need to handle conversions from arrays to
2044 // pointer values, and pointer-to-pointer conversions.
Douglas Gregore200adc2008-10-27 19:41:14 +00002045 case Stmt::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00002046 case Stmt::CStyleCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00002047 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00002048 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002049 QualType T = SubExpr->getType();
Mike Stump11289f42009-09-09 15:08:12 +00002050
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002051 if (SubExpr->getType()->isPointerType() ||
2052 SubExpr->getType()->isBlockPointerType() ||
2053 SubExpr->getType()->isObjCQualifiedIdType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002054 return EvalAddr(SubExpr, refVars);
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002055 else if (T->isArrayType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002056 return EvalVal(SubExpr, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002057 else
Ted Kremenekc3b4c522008-08-07 00:49:01 +00002058 return 0;
Chris Lattner934edb22007-12-28 05:31:15 +00002059 }
Mike Stump11289f42009-09-09 15:08:12 +00002060
Chris Lattner934edb22007-12-28 05:31:15 +00002061 // C++ casts. For dynamic casts, static casts, and const casts, we
2062 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregore200adc2008-10-27 19:41:14 +00002063 // through the cast. In the case the dynamic cast doesn't fail (and
2064 // return NULL), we take the conservative route and report cases
Chris Lattner934edb22007-12-28 05:31:15 +00002065 // where we return the address of a stack variable. For Reinterpre
Douglas Gregore200adc2008-10-27 19:41:14 +00002066 // FIXME: The comment about is wrong; we're not always converting
2067 // from pointer to pointer. I'm guessing that this code should also
Mike Stump11289f42009-09-09 15:08:12 +00002068 // handle references to objects.
2069 case Stmt::CXXStaticCastExprClass:
2070 case Stmt::CXXDynamicCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00002071 case Stmt::CXXConstCastExprClass:
2072 case Stmt::CXXReinterpretCastExprClass: {
2073 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002074 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002075 return EvalAddr(S, refVars);
Chris Lattner934edb22007-12-28 05:31:15 +00002076 else
2077 return NULL;
Chris Lattner934edb22007-12-28 05:31:15 +00002078 }
Mike Stump11289f42009-09-09 15:08:12 +00002079
Chris Lattner934edb22007-12-28 05:31:15 +00002080 // Everything else: we simply don't reason about them.
2081 default:
2082 return NULL;
2083 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002084}
Mike Stump11289f42009-09-09 15:08:12 +00002085
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002086
2087/// EvalVal - This function is complements EvalAddr in the mutual recursion.
2088/// See the comments for EvalAddr for more details.
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002089static Expr *EvalVal(Expr *E, llvm::SmallVectorImpl<DeclRefExpr *> &refVars) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002090do {
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00002091 // We should only be called for evaluating non-pointer expressions, or
2092 // expressions with a pointer type that are not used as references but instead
2093 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump11289f42009-09-09 15:08:12 +00002094
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002095 // Our "symbolic interpreter" is just a dispatch off the currently
2096 // viewed AST node. We then recursively traverse the AST by calling
2097 // EvalAddr and EvalVal appropriately.
Peter Collingbourne91147592011-04-15 00:35:48 +00002098
2099 E = E->IgnoreParens();
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002100 switch (E->getStmtClass()) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002101 case Stmt::ImplicitCastExprClass: {
2102 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall2536c6d2010-08-25 10:28:54 +00002103 if (IE->getValueKind() == VK_LValue) {
Ted Kremenekb7861562010-08-04 20:01:07 +00002104 E = IE->getSubExpr();
2105 continue;
2106 }
2107 return NULL;
2108 }
2109
Douglas Gregor4bd90e52009-10-23 18:54:35 +00002110 case Stmt::DeclRefExprClass: {
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002111 // When we hit a DeclRefExpr we are looking at code that refers to a
2112 // variable's name. If it's not a reference variable we check if it has
2113 // local storage within the function, and if so, return the expression.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002114 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002115
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002116 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002117 if (V->hasLocalStorage()) {
2118 if (!V->getType()->isReferenceType())
2119 return DR;
2120
2121 // Reference variable, follow through to the expression that
2122 // it points to.
2123 if (V->hasInit()) {
2124 // Add the reference variable to the "trail".
2125 refVars.push_back(DR);
2126 return EvalVal(V->getInit(), refVars);
2127 }
2128 }
Mike Stump11289f42009-09-09 15:08:12 +00002129
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002130 return NULL;
2131 }
Mike Stump11289f42009-09-09 15:08:12 +00002132
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002133 case Stmt::UnaryOperatorClass: {
2134 // The only unary operator that make sense to handle here
2135 // is Deref. All others don't resolve to a "name." This includes
2136 // handling all sorts of rvalues passed to a unary operator.
2137 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002138
John McCalle3027922010-08-25 11:45:40 +00002139 if (U->getOpcode() == UO_Deref)
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002140 return EvalAddr(U->getSubExpr(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002141
2142 return NULL;
2143 }
Mike Stump11289f42009-09-09 15:08:12 +00002144
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002145 case Stmt::ArraySubscriptExprClass: {
2146 // Array subscripts are potential references to data on the stack. We
2147 // retrieve the DeclRefExpr* for the array variable if it indeed
2148 // has local storage.
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002149 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002150 }
Mike Stump11289f42009-09-09 15:08:12 +00002151
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002152 case Stmt::ConditionalOperatorClass: {
2153 // For conditional operators we need to see if either the LHS or RHS are
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002154 // non-NULL Expr's. If one is non-NULL, we return it.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002155 ConditionalOperator *C = cast<ConditionalOperator>(E);
2156
Anders Carlsson801c5c72007-11-30 19:04:31 +00002157 // Handle the GNU extension for missing LHS.
2158 if (Expr *lhsExpr = C->getLHS())
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002159 if (Expr *LHS = EvalVal(lhsExpr, refVars))
Anders Carlsson801c5c72007-11-30 19:04:31 +00002160 return LHS;
2161
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002162 return EvalVal(C->getRHS(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002163 }
Mike Stump11289f42009-09-09 15:08:12 +00002164
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002165 // Accesses to members are potential references to data on the stack.
Douglas Gregorf405d7e2009-08-31 23:41:50 +00002166 case Stmt::MemberExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002167 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002168
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002169 // Check for indirect access. We only want direct field accesses.
Ted Kremenekcbe6b0b2010-09-02 01:12:13 +00002170 if (M->isArrow())
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002171 return NULL;
Ted Kremenekcbe6b0b2010-09-02 01:12:13 +00002172
2173 // Check whether the member type is itself a reference, in which case
2174 // we're not going to refer to the member, but to what the member refers to.
2175 if (M->getMemberDecl()->getType()->isReferenceType())
2176 return NULL;
2177
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002178 return EvalVal(M->getBase(), refVars);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002179 }
Mike Stump11289f42009-09-09 15:08:12 +00002180
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002181 default:
Argyrios Kyrtzidise72f7152010-11-30 22:57:32 +00002182 // Check that we don't return or take the address of a reference to a
2183 // temporary. This is only useful in C++.
2184 if (!E->isTypeDependent() && E->isRValue())
2185 return E;
2186
2187 // Everything else: we simply don't reason about them.
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002188 return NULL;
2189 }
Ted Kremenekb7861562010-08-04 20:01:07 +00002190} while (true);
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002191}
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002192
2193//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2194
2195/// Check for comparisons of floating point operands using != and ==.
2196/// Issue a warning if these are no self-comparisons, as they are not likely
2197/// to do what the programmer intended.
2198void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2199 bool EmitWarning = true;
Mike Stump11289f42009-09-09 15:08:12 +00002200
John McCall34376a62010-12-04 03:47:34 +00002201 Expr* LeftExprSansParen = lex->IgnoreParenImpCasts();
2202 Expr* RightExprSansParen = rex->IgnoreParenImpCasts();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002203
2204 // Special case: check for x == x (which is OK).
2205 // Do not emit warnings for such cases.
2206 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2207 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2208 if (DRL->getDecl() == DRR->getDecl())
2209 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002210
2211
Ted Kremenekeda40e22007-11-29 00:59:04 +00002212 // Special case: check for comparisons against literals that can be exactly
2213 // represented by APFloat. In such cases, do not emit a warning. This
2214 // is a heuristic: often comparison against such literals are used to
2215 // detect if a value in a variable has not changed. This clearly can
2216 // lead to false negatives.
2217 if (EmitWarning) {
2218 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2219 if (FLL->isExact())
2220 EmitWarning = false;
Mike Stump12b8ce12009-08-04 21:02:39 +00002221 } else
Ted Kremenekeda40e22007-11-29 00:59:04 +00002222 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2223 if (FLR->isExact())
2224 EmitWarning = false;
2225 }
2226 }
Mike Stump11289f42009-09-09 15:08:12 +00002227
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002228 // Check for comparisons with builtin types.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002229 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002230 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00002231 if (CL->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002232 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002233
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002234 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002235 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00002236 if (CR->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002237 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002238
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002239 // Emit the diagnostic.
2240 if (EmitWarning)
Chris Lattner3b054132008-11-19 05:08:23 +00002241 Diag(loc, diag::warn_floatingpoint_eq)
2242 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002243}
John McCallca01b222010-01-04 23:21:16 +00002244
John McCall70aa5392010-01-06 05:24:50 +00002245//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2246//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallca01b222010-01-04 23:21:16 +00002247
John McCall70aa5392010-01-06 05:24:50 +00002248namespace {
John McCallca01b222010-01-04 23:21:16 +00002249
John McCall70aa5392010-01-06 05:24:50 +00002250/// Structure recording the 'active' range of an integer-valued
2251/// expression.
2252struct IntRange {
2253 /// The number of bits active in the int.
2254 unsigned Width;
John McCallca01b222010-01-04 23:21:16 +00002255
John McCall70aa5392010-01-06 05:24:50 +00002256 /// True if the int is known not to have negative values.
2257 bool NonNegative;
John McCallca01b222010-01-04 23:21:16 +00002258
John McCall70aa5392010-01-06 05:24:50 +00002259 IntRange(unsigned Width, bool NonNegative)
2260 : Width(Width), NonNegative(NonNegative)
2261 {}
John McCallca01b222010-01-04 23:21:16 +00002262
John McCall817d4af2010-11-10 23:38:19 +00002263 /// Returns the range of the bool type.
John McCall70aa5392010-01-06 05:24:50 +00002264 static IntRange forBoolType() {
2265 return IntRange(1, true);
John McCall263a48b2010-01-04 23:31:57 +00002266 }
2267
John McCall817d4af2010-11-10 23:38:19 +00002268 /// Returns the range of an opaque value of the given integral type.
2269 static IntRange forValueOfType(ASTContext &C, QualType T) {
2270 return forValueOfCanonicalType(C,
2271 T->getCanonicalTypeInternal().getTypePtr());
John McCall263a48b2010-01-04 23:31:57 +00002272 }
2273
John McCall817d4af2010-11-10 23:38:19 +00002274 /// Returns the range of an opaque value of a canonical integral type.
2275 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
John McCall70aa5392010-01-06 05:24:50 +00002276 assert(T->isCanonicalUnqualified());
2277
2278 if (const VectorType *VT = dyn_cast<VectorType>(T))
2279 T = VT->getElementType().getTypePtr();
2280 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2281 T = CT->getElementType().getTypePtr();
John McCallcc7e5bf2010-05-06 08:58:33 +00002282
John McCall18a2c2c2010-11-09 22:22:12 +00002283 // For enum types, use the known bit width of the enumerators.
John McCallcc7e5bf2010-05-06 08:58:33 +00002284 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2285 EnumDecl *Enum = ET->getDecl();
John McCall18a2c2c2010-11-09 22:22:12 +00002286 if (!Enum->isDefinition())
2287 return IntRange(C.getIntWidth(QualType(T, 0)), false);
2288
John McCallcc7e5bf2010-05-06 08:58:33 +00002289 unsigned NumPositive = Enum->getNumPositiveBits();
2290 unsigned NumNegative = Enum->getNumNegativeBits();
2291
2292 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2293 }
John McCall70aa5392010-01-06 05:24:50 +00002294
2295 const BuiltinType *BT = cast<BuiltinType>(T);
2296 assert(BT->isInteger());
2297
2298 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2299 }
2300
John McCall817d4af2010-11-10 23:38:19 +00002301 /// Returns the "target" range of a canonical integral type, i.e.
2302 /// the range of values expressible in the type.
2303 ///
2304 /// This matches forValueOfCanonicalType except that enums have the
2305 /// full range of their type, not the range of their enumerators.
2306 static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
2307 assert(T->isCanonicalUnqualified());
2308
2309 if (const VectorType *VT = dyn_cast<VectorType>(T))
2310 T = VT->getElementType().getTypePtr();
2311 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2312 T = CT->getElementType().getTypePtr();
2313 if (const EnumType *ET = dyn_cast<EnumType>(T))
2314 T = ET->getDecl()->getIntegerType().getTypePtr();
2315
2316 const BuiltinType *BT = cast<BuiltinType>(T);
2317 assert(BT->isInteger());
2318
2319 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2320 }
2321
2322 /// Returns the supremum of two ranges: i.e. their conservative merge.
John McCallff96ccd2010-02-23 19:22:29 +00002323 static IntRange join(IntRange L, IntRange R) {
John McCall70aa5392010-01-06 05:24:50 +00002324 return IntRange(std::max(L.Width, R.Width),
John McCall2ce81ad2010-01-06 22:07:33 +00002325 L.NonNegative && R.NonNegative);
2326 }
2327
John McCall817d4af2010-11-10 23:38:19 +00002328 /// Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallff96ccd2010-02-23 19:22:29 +00002329 static IntRange meet(IntRange L, IntRange R) {
John McCall2ce81ad2010-01-06 22:07:33 +00002330 return IntRange(std::min(L.Width, R.Width),
2331 L.NonNegative || R.NonNegative);
John McCall70aa5392010-01-06 05:24:50 +00002332 }
2333};
2334
2335IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2336 if (value.isSigned() && value.isNegative())
2337 return IntRange(value.getMinSignedBits(), false);
2338
2339 if (value.getBitWidth() > MaxWidth)
Jay Foad6d4db0c2010-12-07 08:25:34 +00002340 value = value.trunc(MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00002341
2342 // isNonNegative() just checks the sign bit without considering
2343 // signedness.
2344 return IntRange(value.getActiveBits(), true);
2345}
2346
John McCall74430522010-01-06 22:57:21 +00002347IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCall70aa5392010-01-06 05:24:50 +00002348 unsigned MaxWidth) {
2349 if (result.isInt())
2350 return GetValueRange(C, result.getInt(), MaxWidth);
2351
2352 if (result.isVector()) {
John McCall74430522010-01-06 22:57:21 +00002353 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2354 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2355 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2356 R = IntRange::join(R, El);
2357 }
John McCall70aa5392010-01-06 05:24:50 +00002358 return R;
2359 }
2360
2361 if (result.isComplexInt()) {
2362 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2363 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2364 return IntRange::join(R, I);
John McCall263a48b2010-01-04 23:31:57 +00002365 }
2366
2367 // This can happen with lossless casts to intptr_t of "based" lvalues.
2368 // Assume it might use arbitrary bits.
John McCall74430522010-01-06 22:57:21 +00002369 // FIXME: The only reason we need to pass the type in here is to get
2370 // the sign right on this one case. It would be nice if APValue
2371 // preserved this.
John McCall70aa5392010-01-06 05:24:50 +00002372 assert(result.isLValue());
Douglas Gregor61b6e492011-05-21 16:28:01 +00002373 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
John McCall263a48b2010-01-04 23:31:57 +00002374}
John McCall70aa5392010-01-06 05:24:50 +00002375
2376/// Pseudo-evaluate the given integer expression, estimating the
2377/// range of values it might take.
2378///
2379/// \param MaxWidth - the width to which the value will be truncated
2380IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2381 E = E->IgnoreParens();
2382
2383 // Try a full evaluation first.
2384 Expr::EvalResult result;
2385 if (E->Evaluate(result, C))
John McCall74430522010-01-06 22:57:21 +00002386 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00002387
2388 // I think we only want to look through implicit casts here; if the
2389 // user has an explicit widening cast, we should treat the value as
2390 // being of the new, wider type.
2391 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00002392 if (CE->getCastKind() == CK_NoOp)
John McCall70aa5392010-01-06 05:24:50 +00002393 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2394
John McCall817d4af2010-11-10 23:38:19 +00002395 IntRange OutputTypeRange = IntRange::forValueOfType(C, CE->getType());
John McCall70aa5392010-01-06 05:24:50 +00002396
John McCalle3027922010-08-25 11:45:40 +00002397 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
John McCall2ce81ad2010-01-06 22:07:33 +00002398
John McCall70aa5392010-01-06 05:24:50 +00002399 // Assume that non-integer casts can span the full range of the type.
John McCall2ce81ad2010-01-06 22:07:33 +00002400 if (!isIntegerCast)
John McCall70aa5392010-01-06 05:24:50 +00002401 return OutputTypeRange;
2402
2403 IntRange SubRange
2404 = GetExprRange(C, CE->getSubExpr(),
2405 std::min(MaxWidth, OutputTypeRange.Width));
2406
2407 // Bail out if the subexpr's range is as wide as the cast type.
2408 if (SubRange.Width >= OutputTypeRange.Width)
2409 return OutputTypeRange;
2410
2411 // Otherwise, we take the smaller width, and we're non-negative if
2412 // either the output type or the subexpr is.
2413 return IntRange(SubRange.Width,
2414 SubRange.NonNegative || OutputTypeRange.NonNegative);
2415 }
2416
2417 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2418 // If we can fold the condition, just take that operand.
2419 bool CondResult;
2420 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2421 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2422 : CO->getFalseExpr(),
2423 MaxWidth);
2424
2425 // Otherwise, conservatively merge.
2426 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2427 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2428 return IntRange::join(L, R);
2429 }
2430
2431 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2432 switch (BO->getOpcode()) {
2433
2434 // Boolean-valued operations are single-bit and positive.
John McCalle3027922010-08-25 11:45:40 +00002435 case BO_LAnd:
2436 case BO_LOr:
2437 case BO_LT:
2438 case BO_GT:
2439 case BO_LE:
2440 case BO_GE:
2441 case BO_EQ:
2442 case BO_NE:
John McCall70aa5392010-01-06 05:24:50 +00002443 return IntRange::forBoolType();
2444
John McCallff96ccd2010-02-23 19:22:29 +00002445 // The type of these compound assignments is the type of the LHS,
2446 // so the RHS is not necessarily an integer.
John McCalle3027922010-08-25 11:45:40 +00002447 case BO_MulAssign:
2448 case BO_DivAssign:
2449 case BO_RemAssign:
2450 case BO_AddAssign:
2451 case BO_SubAssign:
John McCall817d4af2010-11-10 23:38:19 +00002452 return IntRange::forValueOfType(C, E->getType());
John McCallff96ccd2010-02-23 19:22:29 +00002453
John McCall70aa5392010-01-06 05:24:50 +00002454 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +00002455 case BO_PtrMemD:
2456 case BO_PtrMemI:
John McCall817d4af2010-11-10 23:38:19 +00002457 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00002458
John McCall2ce81ad2010-01-06 22:07:33 +00002459 // Bitwise-and uses the *infinum* of the two source ranges.
John McCalle3027922010-08-25 11:45:40 +00002460 case BO_And:
2461 case BO_AndAssign:
John McCall2ce81ad2010-01-06 22:07:33 +00002462 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2463 GetExprRange(C, BO->getRHS(), MaxWidth));
2464
John McCall70aa5392010-01-06 05:24:50 +00002465 // Left shift gets black-listed based on a judgement call.
John McCalle3027922010-08-25 11:45:40 +00002466 case BO_Shl:
John McCall1bff9932010-04-07 01:14:35 +00002467 // ...except that we want to treat '1 << (blah)' as logically
2468 // positive. It's an important idiom.
2469 if (IntegerLiteral *I
2470 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2471 if (I->getValue() == 1) {
John McCall817d4af2010-11-10 23:38:19 +00002472 IntRange R = IntRange::forValueOfType(C, E->getType());
John McCall1bff9932010-04-07 01:14:35 +00002473 return IntRange(R.Width, /*NonNegative*/ true);
2474 }
2475 }
2476 // fallthrough
2477
John McCalle3027922010-08-25 11:45:40 +00002478 case BO_ShlAssign:
John McCall817d4af2010-11-10 23:38:19 +00002479 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00002480
John McCall2ce81ad2010-01-06 22:07:33 +00002481 // Right shift by a constant can narrow its left argument.
John McCalle3027922010-08-25 11:45:40 +00002482 case BO_Shr:
2483 case BO_ShrAssign: {
John McCall2ce81ad2010-01-06 22:07:33 +00002484 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2485
2486 // If the shift amount is a positive constant, drop the width by
2487 // that much.
2488 llvm::APSInt shift;
2489 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2490 shift.isNonNegative()) {
2491 unsigned zext = shift.getZExtValue();
2492 if (zext >= L.Width)
2493 L.Width = (L.NonNegative ? 0 : 1);
2494 else
2495 L.Width -= zext;
2496 }
2497
2498 return L;
2499 }
2500
2501 // Comma acts as its right operand.
John McCalle3027922010-08-25 11:45:40 +00002502 case BO_Comma:
John McCall70aa5392010-01-06 05:24:50 +00002503 return GetExprRange(C, BO->getRHS(), MaxWidth);
2504
John McCall2ce81ad2010-01-06 22:07:33 +00002505 // Black-list pointer subtractions.
John McCalle3027922010-08-25 11:45:40 +00002506 case BO_Sub:
John McCall70aa5392010-01-06 05:24:50 +00002507 if (BO->getLHS()->getType()->isPointerType())
John McCall817d4af2010-11-10 23:38:19 +00002508 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00002509 // fallthrough
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002510
John McCall70aa5392010-01-06 05:24:50 +00002511 default:
2512 break;
2513 }
2514
2515 // Treat every other operator as if it were closed on the
2516 // narrowest type that encompasses both operands.
2517 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2518 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2519 return IntRange::join(L, R);
2520 }
2521
2522 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2523 switch (UO->getOpcode()) {
2524 // Boolean-valued operations are white-listed.
John McCalle3027922010-08-25 11:45:40 +00002525 case UO_LNot:
John McCall70aa5392010-01-06 05:24:50 +00002526 return IntRange::forBoolType();
2527
2528 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +00002529 case UO_Deref:
2530 case UO_AddrOf: // should be impossible
John McCall817d4af2010-11-10 23:38:19 +00002531 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00002532
2533 default:
2534 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2535 }
2536 }
Douglas Gregor882211c2010-04-28 22:16:22 +00002537
2538 if (dyn_cast<OffsetOfExpr>(E)) {
John McCall817d4af2010-11-10 23:38:19 +00002539 IntRange::forValueOfType(C, E->getType());
Douglas Gregor882211c2010-04-28 22:16:22 +00002540 }
John McCall70aa5392010-01-06 05:24:50 +00002541
2542 FieldDecl *BitField = E->getBitField();
2543 if (BitField) {
2544 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2545 unsigned BitWidth = BitWidthAP.getZExtValue();
2546
Douglas Gregor61b6e492011-05-21 16:28:01 +00002547 return IntRange(BitWidth,
2548 BitField->getType()->isUnsignedIntegerOrEnumerationType());
John McCall70aa5392010-01-06 05:24:50 +00002549 }
2550
John McCall817d4af2010-11-10 23:38:19 +00002551 return IntRange::forValueOfType(C, E->getType());
John McCall70aa5392010-01-06 05:24:50 +00002552}
John McCall263a48b2010-01-04 23:31:57 +00002553
John McCallcc7e5bf2010-05-06 08:58:33 +00002554IntRange GetExprRange(ASTContext &C, Expr *E) {
2555 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2556}
2557
John McCall263a48b2010-01-04 23:31:57 +00002558/// Checks whether the given value, which currently has the given
2559/// source semantics, has the same value when coerced through the
2560/// target semantics.
John McCall70aa5392010-01-06 05:24:50 +00002561bool IsSameFloatAfterCast(const llvm::APFloat &value,
2562 const llvm::fltSemantics &Src,
2563 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002564 llvm::APFloat truncated = value;
2565
2566 bool ignored;
2567 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2568 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2569
2570 return truncated.bitwiseIsEqual(value);
2571}
2572
2573/// Checks whether the given value, which currently has the given
2574/// source semantics, has the same value when coerced through the
2575/// target semantics.
2576///
2577/// The value might be a vector of floats (or a complex number).
John McCall70aa5392010-01-06 05:24:50 +00002578bool IsSameFloatAfterCast(const APValue &value,
2579 const llvm::fltSemantics &Src,
2580 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002581 if (value.isFloat())
2582 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2583
2584 if (value.isVector()) {
2585 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2586 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2587 return false;
2588 return true;
2589 }
2590
2591 assert(value.isComplexFloat());
2592 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2593 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2594}
2595
John McCallacf0ee52010-10-08 02:01:28 +00002596void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00002597
Ted Kremenek6274be42010-09-23 21:43:44 +00002598static bool IsZero(Sema &S, Expr *E) {
2599 // Suppress cases where we are comparing against an enum constant.
2600 if (const DeclRefExpr *DR =
2601 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
2602 if (isa<EnumConstantDecl>(DR->getDecl()))
2603 return false;
2604
2605 // Suppress cases where the '0' value is expanded from a macro.
2606 if (E->getLocStart().isMacroID())
2607 return false;
2608
John McCallcc7e5bf2010-05-06 08:58:33 +00002609 llvm::APSInt Value;
2610 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2611}
2612
John McCall2551c1b2010-10-06 00:25:24 +00002613static bool HasEnumType(Expr *E) {
2614 // Strip off implicit integral promotions.
2615 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +00002616 if (ICE->getCastKind() != CK_IntegralCast &&
2617 ICE->getCastKind() != CK_NoOp)
John McCall2551c1b2010-10-06 00:25:24 +00002618 break;
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +00002619 E = ICE->getSubExpr();
John McCall2551c1b2010-10-06 00:25:24 +00002620 }
2621
2622 return E->getType()->isEnumeralType();
2623}
2624
John McCallcc7e5bf2010-05-06 08:58:33 +00002625void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +00002626 BinaryOperatorKind op = E->getOpcode();
Douglas Gregorb14dbd72010-12-21 07:22:56 +00002627 if (E->isValueDependent())
2628 return;
2629
John McCalle3027922010-08-25 11:45:40 +00002630 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002631 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00002632 << "< 0" << "false" << HasEnumType(E->getLHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00002633 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00002634 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002635 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00002636 << ">= 0" << "true" << HasEnumType(E->getLHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00002637 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00002638 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002639 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00002640 << "0 >" << "false" << HasEnumType(E->getRHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00002641 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCalle3027922010-08-25 11:45:40 +00002642 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002643 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall2551c1b2010-10-06 00:25:24 +00002644 << "0 <=" << "true" << HasEnumType(E->getRHS())
John McCallcc7e5bf2010-05-06 08:58:33 +00002645 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2646 }
2647}
2648
2649/// Analyze the operands of the given comparison. Implements the
2650/// fallback case from AnalyzeComparison.
2651void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallacf0ee52010-10-08 02:01:28 +00002652 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
2653 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCallcc7e5bf2010-05-06 08:58:33 +00002654}
John McCall263a48b2010-01-04 23:31:57 +00002655
John McCallca01b222010-01-04 23:21:16 +00002656/// \brief Implements -Wsign-compare.
2657///
2658/// \param lex the left-hand expression
2659/// \param rex the right-hand expression
2660/// \param OpLoc the location of the joining operator
John McCall71d8d9b2010-03-11 19:43:18 +00002661/// \param BinOpc binary opcode or 0
John McCallcc7e5bf2010-05-06 08:58:33 +00002662void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2663 // The type the comparison is being performed in.
2664 QualType T = E->getLHS()->getType();
2665 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2666 && "comparison with mismatched types");
John McCallca01b222010-01-04 23:21:16 +00002667
John McCallcc7e5bf2010-05-06 08:58:33 +00002668 // We don't do anything special if this isn't an unsigned integral
2669 // comparison: we're only interested in integral comparisons, and
2670 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregor5b054542011-02-19 22:34:59 +00002671 //
2672 // We also don't care about value-dependent expressions or expressions
2673 // whose result is a constant.
2674 if (!T->hasUnsignedIntegerRepresentation()
2675 || E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
John McCallcc7e5bf2010-05-06 08:58:33 +00002676 return AnalyzeImpConvsInComparison(S, E);
John McCall70aa5392010-01-06 05:24:50 +00002677
John McCallcc7e5bf2010-05-06 08:58:33 +00002678 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2679 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallca01b222010-01-04 23:21:16 +00002680
John McCallcc7e5bf2010-05-06 08:58:33 +00002681 // Check to see if one of the (unmodified) operands is of different
2682 // signedness.
2683 Expr *signedOperand, *unsignedOperand;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00002684 if (lex->getType()->hasSignedIntegerRepresentation()) {
2685 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCallcc7e5bf2010-05-06 08:58:33 +00002686 "unsigned comparison between two signed integer expressions?");
2687 signedOperand = lex;
2688 unsignedOperand = rex;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00002689 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002690 signedOperand = rex;
2691 unsignedOperand = lex;
John McCallca01b222010-01-04 23:21:16 +00002692 } else {
John McCallcc7e5bf2010-05-06 08:58:33 +00002693 CheckTrivialUnsignedComparison(S, E);
2694 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002695 }
2696
John McCallcc7e5bf2010-05-06 08:58:33 +00002697 // Otherwise, calculate the effective range of the signed operand.
2698 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCall70aa5392010-01-06 05:24:50 +00002699
John McCallcc7e5bf2010-05-06 08:58:33 +00002700 // Go ahead and analyze implicit conversions in the operands. Note
2701 // that we skip the implicit conversions on both sides.
John McCallacf0ee52010-10-08 02:01:28 +00002702 AnalyzeImplicitConversions(S, lex, E->getOperatorLoc());
2703 AnalyzeImplicitConversions(S, rex, E->getOperatorLoc());
John McCallca01b222010-01-04 23:21:16 +00002704
John McCallcc7e5bf2010-05-06 08:58:33 +00002705 // If the signed range is non-negative, -Wsign-compare won't fire,
2706 // but we should still check for comparisons which are always true
2707 // or false.
2708 if (signedRange.NonNegative)
2709 return CheckTrivialUnsignedComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002710
2711 // For (in)equality comparisons, if the unsigned operand is a
2712 // constant which cannot collide with a overflowed signed operand,
2713 // then reinterpreting the signed operand as unsigned will not
2714 // change the result of the comparison.
John McCallcc7e5bf2010-05-06 08:58:33 +00002715 if (E->isEqualityOp()) {
2716 unsigned comparisonWidth = S.Context.getIntWidth(T);
2717 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallca01b222010-01-04 23:21:16 +00002718
John McCallcc7e5bf2010-05-06 08:58:33 +00002719 // We should never be unable to prove that the unsigned operand is
2720 // non-negative.
2721 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2722
2723 if (unsignedRange.Width < comparisonWidth)
2724 return;
2725 }
2726
2727 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2728 << lex->getType() << rex->getType()
2729 << lex->getSourceRange() << rex->getSourceRange();
John McCallca01b222010-01-04 23:21:16 +00002730}
2731
John McCall1f425642010-11-11 03:21:53 +00002732/// Analyzes an attempt to assign the given value to a bitfield.
2733///
2734/// Returns true if there was something fishy about the attempt.
2735bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
2736 SourceLocation InitLoc) {
2737 assert(Bitfield->isBitField());
2738 if (Bitfield->isInvalidDecl())
2739 return false;
2740
John McCalldeebbcf2010-11-11 05:33:51 +00002741 // White-list bool bitfields.
2742 if (Bitfield->getType()->isBooleanType())
2743 return false;
2744
Douglas Gregor789adec2011-02-04 13:09:01 +00002745 // Ignore value- or type-dependent expressions.
2746 if (Bitfield->getBitWidth()->isValueDependent() ||
2747 Bitfield->getBitWidth()->isTypeDependent() ||
2748 Init->isValueDependent() ||
2749 Init->isTypeDependent())
2750 return false;
2751
John McCall1f425642010-11-11 03:21:53 +00002752 Expr *OriginalInit = Init->IgnoreParenImpCasts();
2753
2754 llvm::APSInt Width(32);
2755 Expr::EvalResult InitValue;
2756 if (!Bitfield->getBitWidth()->isIntegerConstantExpr(Width, S.Context) ||
John McCalldeebbcf2010-11-11 05:33:51 +00002757 !OriginalInit->Evaluate(InitValue, S.Context) ||
John McCall1f425642010-11-11 03:21:53 +00002758 !InitValue.Val.isInt())
2759 return false;
2760
2761 const llvm::APSInt &Value = InitValue.Val.getInt();
2762 unsigned OriginalWidth = Value.getBitWidth();
2763 unsigned FieldWidth = Width.getZExtValue();
2764
2765 if (OriginalWidth <= FieldWidth)
2766 return false;
2767
Jay Foad6d4db0c2010-12-07 08:25:34 +00002768 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
John McCall1f425642010-11-11 03:21:53 +00002769
2770 // It's fairly common to write values into signed bitfields
2771 // that, if sign-extended, would end up becoming a different
2772 // value. We don't want to warn about that.
2773 if (Value.isSigned() && Value.isNegative())
Jay Foad6d4db0c2010-12-07 08:25:34 +00002774 TruncatedValue = TruncatedValue.sext(OriginalWidth);
John McCall1f425642010-11-11 03:21:53 +00002775 else
Jay Foad6d4db0c2010-12-07 08:25:34 +00002776 TruncatedValue = TruncatedValue.zext(OriginalWidth);
John McCall1f425642010-11-11 03:21:53 +00002777
2778 if (Value == TruncatedValue)
2779 return false;
2780
2781 std::string PrettyValue = Value.toString(10);
2782 std::string PrettyTrunc = TruncatedValue.toString(10);
2783
2784 S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
2785 << PrettyValue << PrettyTrunc << OriginalInit->getType()
2786 << Init->getSourceRange();
2787
2788 return true;
2789}
2790
John McCalld2a53122010-11-09 23:24:47 +00002791/// Analyze the given simple or compound assignment for warning-worthy
2792/// operations.
2793void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
2794 // Just recurse on the LHS.
2795 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
2796
2797 // We want to recurse on the RHS as normal unless we're assigning to
2798 // a bitfield.
2799 if (FieldDecl *Bitfield = E->getLHS()->getBitField()) {
John McCall1f425642010-11-11 03:21:53 +00002800 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
2801 E->getOperatorLoc())) {
2802 // Recurse, ignoring any implicit conversions on the RHS.
2803 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
2804 E->getOperatorLoc());
John McCalld2a53122010-11-09 23:24:47 +00002805 }
2806 }
2807
2808 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
2809}
2810
John McCall263a48b2010-01-04 23:31:57 +00002811/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Douglas Gregor364f7db2011-03-12 00:14:31 +00002812void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
2813 SourceLocation CContext, unsigned diag) {
2814 S.Diag(E->getExprLoc(), diag)
2815 << SourceType << T << E->getSourceRange() << SourceRange(CContext);
2816}
2817
Chandler Carruth7f3654f2011-04-05 06:47:57 +00002818/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
2819void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
2820 unsigned diag) {
2821 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag);
2822}
2823
Chandler Carruth016ef402011-04-10 08:36:24 +00002824/// Diagnose an implicit cast from a literal expression. Also attemps to supply
2825/// fixit hints when the cast wouldn't lose information to simply write the
2826/// expression with the expected type.
2827void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
2828 SourceLocation CContext) {
2829 // Emit the primary warning first, then try to emit a fixit hint note if
2830 // reasonable.
2831 S.Diag(FL->getExprLoc(), diag::warn_impcast_literal_float_to_integer)
2832 << FL->getType() << T << FL->getSourceRange() << SourceRange(CContext);
2833
2834 const llvm::APFloat &Value = FL->getValue();
2835
2836 // Don't attempt to fix PPC double double literals.
2837 if (&Value.getSemantics() == &llvm::APFloat::PPCDoubleDouble)
2838 return;
2839
2840 // Try to convert this exactly to an 64-bit integer. FIXME: It would be
2841 // nice to support arbitrarily large integers here.
2842 bool isExact = false;
2843 uint64_t IntegerPart;
2844 if (Value.convertToInteger(&IntegerPart, 64, /*isSigned=*/true,
2845 llvm::APFloat::rmTowardZero, &isExact)
2846 != llvm::APFloat::opOK || !isExact)
2847 return;
2848
2849 llvm::APInt IntegerValue(64, IntegerPart, /*isSigned=*/true);
2850
2851 std::string LiteralValue = IntegerValue.toString(10, /*isSigned=*/true);
2852 S.Diag(FL->getExprLoc(), diag::note_fix_integral_float_as_integer)
2853 << FixItHint::CreateReplacement(FL->getSourceRange(), LiteralValue);
2854}
2855
John McCall18a2c2c2010-11-09 22:22:12 +00002856std::string PrettyPrintInRange(const llvm::APSInt &Value, IntRange Range) {
2857 if (!Range.Width) return "0";
2858
2859 llvm::APSInt ValueInRange = Value;
2860 ValueInRange.setIsSigned(!Range.NonNegative);
Jay Foad6d4db0c2010-12-07 08:25:34 +00002861 ValueInRange = ValueInRange.trunc(Range.Width);
John McCall18a2c2c2010-11-09 22:22:12 +00002862 return ValueInRange.toString(10);
2863}
2864
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002865static bool isFromSystemMacro(Sema &S, SourceLocation loc) {
2866 SourceManager &smgr = S.Context.getSourceManager();
2867 return loc.isMacroID() && smgr.isInSystemHeader(smgr.getSpellingLoc(loc));
2868}
Chandler Carruth016ef402011-04-10 08:36:24 +00002869
John McCallcc7e5bf2010-05-06 08:58:33 +00002870void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
John McCallacf0ee52010-10-08 02:01:28 +00002871 SourceLocation CC, bool *ICContext = 0) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002872 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall263a48b2010-01-04 23:31:57 +00002873
John McCallcc7e5bf2010-05-06 08:58:33 +00002874 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2875 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2876 if (Source == Target) return;
2877 if (Target->isDependentType()) return;
John McCall263a48b2010-01-04 23:31:57 +00002878
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002879 // If the conversion context location is invalid don't complain.
2880 // We also don't want to emit a warning if the issue occurs from the
2881 // instantiation of a system macro. The problem is that 'getSpellingLoc()'
2882 // is slow, so we delay this check as long as possible. Once we detect
2883 // we are in that scenario, we just return.
2884 if (CC.isInvalid())
John McCallacf0ee52010-10-08 02:01:28 +00002885 return;
2886
John McCall263a48b2010-01-04 23:31:57 +00002887 // Never diagnose implicit casts to bool.
2888 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2889 return;
2890
2891 // Strip vector types.
2892 if (isa<VectorType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002893 if (!isa<VectorType>(Target)) {
2894 if (isFromSystemMacro(S, CC))
2895 return;
John McCallacf0ee52010-10-08 02:01:28 +00002896 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002897 }
Chris Lattneree7286f2011-06-14 04:51:15 +00002898
2899 // If the vector cast is cast between two vectors of the same size, it is
2900 // a bitcast, not a conversion.
2901 if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
2902 return;
John McCall263a48b2010-01-04 23:31:57 +00002903
2904 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2905 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2906 }
2907
2908 // Strip complex types.
2909 if (isa<ComplexType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002910 if (!isa<ComplexType>(Target)) {
2911 if (isFromSystemMacro(S, CC))
2912 return;
2913
John McCallacf0ee52010-10-08 02:01:28 +00002914 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002915 }
John McCall263a48b2010-01-04 23:31:57 +00002916
2917 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2918 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2919 }
2920
2921 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2922 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2923
2924 // If the source is floating point...
2925 if (SourceBT && SourceBT->isFloatingPoint()) {
2926 // ...and the target is floating point...
2927 if (TargetBT && TargetBT->isFloatingPoint()) {
2928 // ...then warn if we're dropping FP rank.
2929
2930 // Builtin FP kinds are ordered by increasing FP rank.
2931 if (SourceBT->getKind() > TargetBT->getKind()) {
2932 // Don't warn about float constants that are precisely
2933 // representable in the target type.
2934 Expr::EvalResult result;
John McCallcc7e5bf2010-05-06 08:58:33 +00002935 if (E->Evaluate(result, S.Context)) {
John McCall263a48b2010-01-04 23:31:57 +00002936 // Value might be a float, a float vector, or a float complex.
2937 if (IsSameFloatAfterCast(result.Val,
John McCallcc7e5bf2010-05-06 08:58:33 +00002938 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2939 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall263a48b2010-01-04 23:31:57 +00002940 return;
2941 }
2942
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002943 if (isFromSystemMacro(S, CC))
2944 return;
2945
John McCallacf0ee52010-10-08 02:01:28 +00002946 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
John McCall263a48b2010-01-04 23:31:57 +00002947 }
2948 return;
2949 }
2950
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002951 // If the target is integral, always warn.
Chandler Carruth22c7a792011-02-17 11:05:49 +00002952 if ((TargetBT && TargetBT->isInteger())) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002953 if (isFromSystemMacro(S, CC))
2954 return;
2955
Chandler Carruth22c7a792011-02-17 11:05:49 +00002956 Expr *InnerE = E->IgnoreParenImpCasts();
Chandler Carruth016ef402011-04-10 08:36:24 +00002957 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
2958 DiagnoseFloatingLiteralImpCast(S, FL, T, CC);
Chandler Carruth22c7a792011-02-17 11:05:49 +00002959 } else {
2960 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
2961 }
2962 }
John McCall263a48b2010-01-04 23:31:57 +00002963
2964 return;
2965 }
2966
John McCall70aa5392010-01-06 05:24:50 +00002967 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall263a48b2010-01-04 23:31:57 +00002968 return;
2969
Richard Trieubeaf3452011-05-29 19:59:02 +00002970 if ((E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)
2971 == Expr::NPCK_GNUNull) && Target->isIntegerType()) {
2972 S.Diag(E->getExprLoc(), diag::warn_impcast_null_pointer_to_integer)
2973 << E->getSourceRange() << clang::SourceRange(CC);
2974 return;
2975 }
2976
John McCallcc7e5bf2010-05-06 08:58:33 +00002977 IntRange SourceRange = GetExprRange(S.Context, E);
John McCall817d4af2010-11-10 23:38:19 +00002978 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
John McCall70aa5392010-01-06 05:24:50 +00002979
2980 if (SourceRange.Width > TargetRange.Width) {
John McCall18a2c2c2010-11-09 22:22:12 +00002981 // If the source is a constant, use a default-on diagnostic.
2982 // TODO: this should happen for bitfield stores, too.
2983 llvm::APSInt Value(32);
2984 if (E->isIntegerConstantExpr(Value, S.Context)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002985 if (isFromSystemMacro(S, CC))
2986 return;
2987
John McCall18a2c2c2010-11-09 22:22:12 +00002988 std::string PrettySourceValue = Value.toString(10);
2989 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
2990
2991 S.Diag(E->getExprLoc(), diag::warn_impcast_integer_precision_constant)
2992 << PrettySourceValue << PrettyTargetValue
2993 << E->getType() << T << E->getSourceRange() << clang::SourceRange(CC);
2994 return;
2995 }
2996
Chris Lattneree7286f2011-06-14 04:51:15 +00002997 // People want to build with -Wshorten-64-to-32 and not -Wconversion.
Ted Kremenek4c0826c2011-03-10 20:03:42 +00002998 if (isFromSystemMacro(S, CC))
2999 return;
3000
John McCall70aa5392010-01-06 05:24:50 +00003001 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallacf0ee52010-10-08 02:01:28 +00003002 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
3003 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCallcc7e5bf2010-05-06 08:58:33 +00003004 }
3005
3006 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
3007 (!TargetRange.NonNegative && SourceRange.NonNegative &&
3008 SourceRange.Width == TargetRange.Width)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003009
3010 if (isFromSystemMacro(S, CC))
3011 return;
3012
John McCallcc7e5bf2010-05-06 08:58:33 +00003013 unsigned DiagID = diag::warn_impcast_integer_sign;
3014
3015 // Traditionally, gcc has warned about this under -Wsign-compare.
3016 // We also want to warn about it in -Wconversion.
3017 // So if -Wconversion is off, use a completely identical diagnostic
3018 // in the sign-compare group.
3019 // The conditional-checking code will
3020 if (ICContext) {
3021 DiagID = diag::warn_impcast_integer_sign_conditional;
3022 *ICContext = true;
3023 }
3024
John McCallacf0ee52010-10-08 02:01:28 +00003025 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall263a48b2010-01-04 23:31:57 +00003026 }
3027
Douglas Gregora78f1932011-02-22 02:45:07 +00003028 // Diagnose conversions between different enumeration types.
Douglas Gregor364f7db2011-03-12 00:14:31 +00003029 // In C, we pretend that the type of an EnumConstantDecl is its enumeration
3030 // type, to give us better diagnostics.
3031 QualType SourceType = E->getType();
3032 if (!S.getLangOptions().CPlusPlus) {
3033 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
3034 if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3035 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
3036 SourceType = S.Context.getTypeDeclType(Enum);
3037 Source = S.Context.getCanonicalType(SourceType).getTypePtr();
3038 }
3039 }
3040
Douglas Gregora78f1932011-02-22 02:45:07 +00003041 if (const EnumType *SourceEnum = Source->getAs<EnumType>())
3042 if (const EnumType *TargetEnum = Target->getAs<EnumType>())
3043 if ((SourceEnum->getDecl()->getIdentifier() ||
Richard Smithdda56e42011-04-15 14:24:37 +00003044 SourceEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Douglas Gregora78f1932011-02-22 02:45:07 +00003045 (TargetEnum->getDecl()->getIdentifier() ||
Richard Smithdda56e42011-04-15 14:24:37 +00003046 TargetEnum->getDecl()->getTypedefNameForAnonDecl()) &&
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003047 SourceEnum != TargetEnum) {
3048 if (isFromSystemMacro(S, CC))
3049 return;
3050
Douglas Gregor364f7db2011-03-12 00:14:31 +00003051 return DiagnoseImpCast(S, E, SourceType, T, CC,
Douglas Gregora78f1932011-02-22 02:45:07 +00003052 diag::warn_impcast_different_enum_types);
Ted Kremenek4c0826c2011-03-10 20:03:42 +00003053 }
Douglas Gregora78f1932011-02-22 02:45:07 +00003054
John McCall263a48b2010-01-04 23:31:57 +00003055 return;
3056}
3057
John McCallcc7e5bf2010-05-06 08:58:33 +00003058void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
3059
3060void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
John McCallacf0ee52010-10-08 02:01:28 +00003061 SourceLocation CC, bool &ICContext) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003062 E = E->IgnoreParenImpCasts();
3063
3064 if (isa<ConditionalOperator>(E))
3065 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
3066
John McCallacf0ee52010-10-08 02:01:28 +00003067 AnalyzeImplicitConversions(S, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003068 if (E->getType() != T)
John McCallacf0ee52010-10-08 02:01:28 +00003069 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCallcc7e5bf2010-05-06 08:58:33 +00003070 return;
3071}
3072
3073void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
John McCallacf0ee52010-10-08 02:01:28 +00003074 SourceLocation CC = E->getQuestionLoc();
3075
3076 AnalyzeImplicitConversions(S, E->getCond(), CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003077
3078 bool Suspicious = false;
John McCallacf0ee52010-10-08 02:01:28 +00003079 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
3080 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +00003081
3082 // If -Wconversion would have warned about either of the candidates
3083 // for a signedness conversion to the context type...
3084 if (!Suspicious) return;
3085
3086 // ...but it's currently ignored...
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003087 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional,
3088 CC))
John McCallcc7e5bf2010-05-06 08:58:33 +00003089 return;
3090
3091 // ...and -Wsign-compare isn't...
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003092 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional, CC))
John McCallcc7e5bf2010-05-06 08:58:33 +00003093 return;
3094
3095 // ...then check whether it would have warned about either of the
3096 // candidates for a signedness conversion to the condition type.
3097 if (E->getType() != T) {
3098 Suspicious = false;
3099 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
John McCallacf0ee52010-10-08 02:01:28 +00003100 E->getType(), CC, &Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +00003101 if (!Suspicious)
3102 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallacf0ee52010-10-08 02:01:28 +00003103 E->getType(), CC, &Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +00003104 if (!Suspicious)
3105 return;
3106 }
3107
3108 // If so, emit a diagnostic under -Wsign-compare.
3109 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
3110 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
3111 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
3112 << lex->getType() << rex->getType()
3113 << lex->getSourceRange() << rex->getSourceRange();
3114}
3115
3116/// AnalyzeImplicitConversions - Find and report any interesting
3117/// implicit conversions in the given expression. There are a couple
3118/// of competing diagnostics here, -Wconversion and -Wsign-compare.
John McCallacf0ee52010-10-08 02:01:28 +00003119void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003120 QualType T = OrigE->getType();
3121 Expr *E = OrigE->IgnoreParenImpCasts();
3122
3123 // For conditional operators, we analyze the arguments as if they
3124 // were being fed directly into the output.
3125 if (isa<ConditionalOperator>(E)) {
3126 ConditionalOperator *CO = cast<ConditionalOperator>(E);
3127 CheckConditionalOperator(S, CO, T);
3128 return;
3129 }
3130
3131 // Go ahead and check any implicit conversions we might have skipped.
3132 // The non-canonical typecheck is just an optimization;
3133 // CheckImplicitConversion will filter out dead implicit conversions.
3134 if (E->getType() != T)
John McCallacf0ee52010-10-08 02:01:28 +00003135 CheckImplicitConversion(S, E, T, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003136
3137 // Now continue drilling into this expression.
3138
3139 // Skip past explicit casts.
3140 if (isa<ExplicitCastExpr>(E)) {
3141 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
John McCallacf0ee52010-10-08 02:01:28 +00003142 return AnalyzeImplicitConversions(S, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003143 }
3144
John McCalld2a53122010-11-09 23:24:47 +00003145 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3146 // Do a somewhat different check with comparison operators.
3147 if (BO->isComparisonOp())
3148 return AnalyzeComparison(S, BO);
3149
3150 // And with assignments and compound assignments.
3151 if (BO->isAssignmentOp())
3152 return AnalyzeAssignment(S, BO);
3153 }
John McCallcc7e5bf2010-05-06 08:58:33 +00003154
3155 // These break the otherwise-useful invariant below. Fortunately,
3156 // we don't really need to recurse into them, because any internal
3157 // expressions should have been analyzed already when they were
3158 // built into statements.
3159 if (isa<StmtExpr>(E)) return;
3160
3161 // Don't descend into unevaluated contexts.
Peter Collingbournee190dee2011-03-11 19:24:49 +00003162 if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
John McCallcc7e5bf2010-05-06 08:58:33 +00003163
3164 // Now just recurse over the expression's children.
John McCallacf0ee52010-10-08 02:01:28 +00003165 CC = E->getExprLoc();
John McCall8322c3a2011-02-13 04:07:26 +00003166 for (Stmt::child_range I = E->children(); I; ++I)
John McCallacf0ee52010-10-08 02:01:28 +00003167 AnalyzeImplicitConversions(S, cast<Expr>(*I), CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003168}
3169
3170} // end anonymous namespace
3171
3172/// Diagnoses "dangerous" implicit conversions within the given
3173/// expression (which is a full expression). Implements -Wconversion
3174/// and -Wsign-compare.
John McCallacf0ee52010-10-08 02:01:28 +00003175///
3176/// \param CC the "context" location of the implicit conversion, i.e.
3177/// the most location of the syntactic entity requiring the implicit
3178/// conversion
3179void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCallcc7e5bf2010-05-06 08:58:33 +00003180 // Don't diagnose in unevaluated contexts.
3181 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
3182 return;
3183
3184 // Don't diagnose for value- or type-dependent expressions.
3185 if (E->isTypeDependent() || E->isValueDependent())
3186 return;
3187
John McCallacf0ee52010-10-08 02:01:28 +00003188 // This is not the right CC for (e.g.) a variable initialization.
3189 AnalyzeImplicitConversions(*this, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +00003190}
3191
John McCall1f425642010-11-11 03:21:53 +00003192void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
3193 FieldDecl *BitField,
3194 Expr *Init) {
3195 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
3196}
3197
Mike Stump0c2ec772010-01-21 03:59:47 +00003198/// CheckParmsForFunctionDef - Check that the parameters of the given
3199/// function are appropriate for the definition of a function. This
3200/// takes care of any checks that cannot be performed on the
3201/// declaration itself, e.g., that the types of each of the function
3202/// parameters are complete.
Douglas Gregorb524d902010-11-01 18:37:59 +00003203bool Sema::CheckParmsForFunctionDef(ParmVarDecl **P, ParmVarDecl **PEnd,
3204 bool CheckParameterNames) {
Mike Stump0c2ec772010-01-21 03:59:47 +00003205 bool HasInvalidParm = false;
Douglas Gregorb524d902010-11-01 18:37:59 +00003206 for (; P != PEnd; ++P) {
3207 ParmVarDecl *Param = *P;
3208
Mike Stump0c2ec772010-01-21 03:59:47 +00003209 // C99 6.7.5.3p4: the parameters in a parameter type list in a
3210 // function declarator that is part of a function definition of
3211 // that function shall not have incomplete type.
3212 //
3213 // This is also C++ [dcl.fct]p6.
3214 if (!Param->isInvalidDecl() &&
3215 RequireCompleteType(Param->getLocation(), Param->getType(),
3216 diag::err_typecheck_decl_incomplete_type)) {
3217 Param->setInvalidDecl();
3218 HasInvalidParm = true;
3219 }
3220
3221 // C99 6.9.1p5: If the declarator includes a parameter type list, the
3222 // declaration of each parameter shall include an identifier.
Douglas Gregorb524d902010-11-01 18:37:59 +00003223 if (CheckParameterNames &&
3224 Param->getIdentifier() == 0 &&
Mike Stump0c2ec772010-01-21 03:59:47 +00003225 !Param->isImplicit() &&
3226 !getLangOptions().CPlusPlus)
3227 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigdeb55d52010-02-01 05:02:49 +00003228
3229 // C99 6.7.5.3p12:
3230 // If the function declarator is not part of a definition of that
3231 // function, parameters may have incomplete type and may use the [*]
3232 // notation in their sequences of declarator specifiers to specify
3233 // variable length array types.
3234 QualType PType = Param->getOriginalType();
3235 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
3236 if (AT->getSizeModifier() == ArrayType::Star) {
3237 // FIXME: This diagnosic should point the the '[*]' if source-location
3238 // information is added for it.
3239 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
3240 }
3241 }
Mike Stump0c2ec772010-01-21 03:59:47 +00003242 }
3243
3244 return HasInvalidParm;
3245}
John McCall2b5c1b22010-08-12 21:44:57 +00003246
3247/// CheckCastAlign - Implements -Wcast-align, which warns when a
3248/// pointer cast increases the alignment requirements.
3249void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
3250 // This is actually a lot of work to potentially be doing on every
3251 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003252 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align,
3253 TRange.getBegin())
John McCall2b5c1b22010-08-12 21:44:57 +00003254 == Diagnostic::Ignored)
3255 return;
3256
3257 // Ignore dependent types.
3258 if (T->isDependentType() || Op->getType()->isDependentType())
3259 return;
3260
3261 // Require that the destination be a pointer type.
3262 const PointerType *DestPtr = T->getAs<PointerType>();
3263 if (!DestPtr) return;
3264
3265 // If the destination has alignment 1, we're done.
3266 QualType DestPointee = DestPtr->getPointeeType();
3267 if (DestPointee->isIncompleteType()) return;
3268 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
3269 if (DestAlign.isOne()) return;
3270
3271 // Require that the source be a pointer type.
3272 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
3273 if (!SrcPtr) return;
3274 QualType SrcPointee = SrcPtr->getPointeeType();
3275
3276 // Whitelist casts from cv void*. We already implicitly
3277 // whitelisted casts to cv void*, since they have alignment 1.
3278 // Also whitelist casts involving incomplete types, which implicitly
3279 // includes 'void'.
3280 if (SrcPointee->isIncompleteType()) return;
3281
3282 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
3283 if (SrcAlign >= DestAlign) return;
3284
3285 Diag(TRange.getBegin(), diag::warn_cast_align)
3286 << Op->getType() << T
3287 << static_cast<unsigned>(SrcAlign.getQuantity())
3288 << static_cast<unsigned>(DestAlign.getQuantity())
3289 << TRange << Op->getSourceRange();
3290}
3291
Ted Kremenekdf26df72011-03-01 18:41:00 +00003292static void CheckArrayAccess_Check(Sema &S,
3293 const clang::ArraySubscriptExpr *E) {
Chandler Carruth1af88f12011-02-17 21:10:52 +00003294 const Expr *BaseExpr = E->getBase()->IgnoreParenImpCasts();
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003295 const ConstantArrayType *ArrayTy =
Ted Kremenekdf26df72011-03-01 18:41:00 +00003296 S.Context.getAsConstantArrayType(BaseExpr->getType());
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003297 if (!ArrayTy)
Ted Kremenek64699be2011-02-16 01:57:07 +00003298 return;
Chandler Carruth1af88f12011-02-17 21:10:52 +00003299
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003300 const Expr *IndexExpr = E->getIdx();
3301 if (IndexExpr->isValueDependent())
Ted Kremenek64699be2011-02-16 01:57:07 +00003302 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003303 llvm::APSInt index;
Ted Kremenekdf26df72011-03-01 18:41:00 +00003304 if (!IndexExpr->isIntegerConstantExpr(index, S.Context))
Ted Kremenek64699be2011-02-16 01:57:07 +00003305 return;
Ted Kremenek108b2d52011-02-16 04:01:44 +00003306
Ted Kremeneke4b316c2011-02-23 23:06:04 +00003307 if (index.isUnsigned() || !index.isNegative()) {
Ted Kremeneka7ced2c2011-02-18 02:27:00 +00003308 llvm::APInt size = ArrayTy->getSize();
Chandler Carruth1af88f12011-02-17 21:10:52 +00003309 if (!size.isStrictlyPositive())
3310 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003311 if (size.getBitWidth() > index.getBitWidth())
3312 index = index.sext(size.getBitWidth());
Ted Kremeneka7ced2c2011-02-18 02:27:00 +00003313 else if (size.getBitWidth() < index.getBitWidth())
3314 size = size.sext(index.getBitWidth());
3315
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003316 if (index.slt(size))
Ted Kremenek108b2d52011-02-16 04:01:44 +00003317 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003318
Ted Kremenekdf26df72011-03-01 18:41:00 +00003319 S.DiagRuntimeBehavior(E->getBase()->getLocStart(), BaseExpr,
3320 S.PDiag(diag::warn_array_index_exceeds_bounds)
3321 << index.toString(10, true)
3322 << size.toString(10, true)
3323 << IndexExpr->getSourceRange());
Chandler Carruth2a666fc2011-02-17 20:55:08 +00003324 } else {
Ted Kremenekdf26df72011-03-01 18:41:00 +00003325 S.DiagRuntimeBehavior(E->getBase()->getLocStart(), BaseExpr,
3326 S.PDiag(diag::warn_array_index_precedes_bounds)
3327 << index.toString(10, true)
3328 << IndexExpr->getSourceRange());
Ted Kremenek64699be2011-02-16 01:57:07 +00003329 }
Chandler Carruth1af88f12011-02-17 21:10:52 +00003330
3331 const NamedDecl *ND = NULL;
3332 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
3333 ND = dyn_cast<NamedDecl>(DRE->getDecl());
3334 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
3335 ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
3336 if (ND)
Ted Kremenekdf26df72011-03-01 18:41:00 +00003337 S.DiagRuntimeBehavior(ND->getLocStart(), BaseExpr,
3338 S.PDiag(diag::note_array_index_out_of_bounds)
3339 << ND->getDeclName());
Ted Kremenek64699be2011-02-16 01:57:07 +00003340}
3341
Ted Kremenekdf26df72011-03-01 18:41:00 +00003342void Sema::CheckArrayAccess(const Expr *expr) {
Peter Collingbourne91147592011-04-15 00:35:48 +00003343 while (true) {
3344 expr = expr->IgnoreParens();
Ted Kremenekdf26df72011-03-01 18:41:00 +00003345 switch (expr->getStmtClass()) {
Ted Kremenekdf26df72011-03-01 18:41:00 +00003346 case Stmt::ArraySubscriptExprClass:
3347 CheckArrayAccess_Check(*this, cast<ArraySubscriptExpr>(expr));
3348 return;
3349 case Stmt::ConditionalOperatorClass: {
3350 const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
3351 if (const Expr *lhs = cond->getLHS())
3352 CheckArrayAccess(lhs);
3353 if (const Expr *rhs = cond->getRHS())
3354 CheckArrayAccess(rhs);
3355 return;
3356 }
3357 default:
3358 return;
3359 }
Peter Collingbourne91147592011-04-15 00:35:48 +00003360 }
Ted Kremenekdf26df72011-03-01 18:41:00 +00003361}