blob: 4ed39e2a4b7b02eeeb23625752adaee39702b6be [file] [log] [blame]
Chris Lattner59907c42007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner59907c42007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump1eb44332009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattner59907c42007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Sema.h"
John McCall2d887082010-08-25 22:03:47 +000016#include "clang/Sema/SemaInternal.h"
John McCall781472f2010-08-25 08:40:02 +000017#include "clang/Sema/ScopeInfo.h"
Ted Kremenek826a3452010-07-16 02:11:22 +000018#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000019#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000020#include "clang/AST/CharUnits.h"
John McCall384aff82010-08-25 07:42:41 +000021#include "clang/AST/DeclCXX.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000022#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000023#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000024#include "clang/AST/ExprObjC.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000025#include "clang/AST/DeclObjC.h"
26#include "clang/AST/StmtCXX.h"
27#include "clang/AST/StmtObjC.h"
Chris Lattner719e6152009-02-18 19:21:10 +000028#include "clang/Lex/LiteralSupport.h"
Chris Lattner59907c42007-08-10 20:18:51 +000029#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000030#include "llvm/ADT/BitVector.h"
31#include "llvm/ADT/STLExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000032#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000033#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000034#include "clang/Basic/TargetInfo.h"
Fariborz Jahanian7da71022010-09-07 19:38:13 +000035#include "clang/Basic/ConvertUTF.h"
36
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000037#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000038using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000039using namespace sema;
Chris Lattner59907c42007-08-10 20:18:51 +000040
Chris Lattner60800082009-02-18 17:49:48 +000041/// getLocationOfStringLiteralByte - Return a source location that points to the
42/// specified byte of the specified string literal.
43///
44/// Strings are amazingly complex. They can be formed from multiple tokens and
45/// can have escape sequences in them in addition to the usual trigraph and
46/// escaped newline business. This routine handles this complexity.
47///
48SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
49 unsigned ByteNo) const {
50 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000051
Chris Lattner60800082009-02-18 17:49:48 +000052 // Loop over all of the tokens in this string until we find the one that
53 // contains the byte we're looking for.
54 unsigned TokNo = 0;
55 while (1) {
56 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
57 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000058
Chris Lattner60800082009-02-18 17:49:48 +000059 // Get the spelling of the string so that we can get the data that makes up
60 // the string literal, not the identifier for the macro it is potentially
61 // expanded through.
62 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
63
64 // Re-lex the token to get its length and original spelling.
65 std::pair<FileID, unsigned> LocInfo =
66 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000067 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000068 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000069 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000070 return StrTokSpellingLoc;
71
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000072 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattner60800082009-02-18 17:49:48 +000074 // Create a langops struct and enable trigraphs. This is sufficient for
75 // relexing tokens.
76 LangOptions LangOpts;
77 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner60800082009-02-18 17:49:48 +000079 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000080 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
81 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000082 Token TheTok;
83 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000084
Chris Lattner443e53c2009-02-18 19:26:42 +000085 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000086 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000087 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000088
Chris Lattner2197c962009-02-18 18:52:52 +000089 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000090 if (ByteNo < TokNumBytes ||
91 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000092 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000093 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
94 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner719e6152009-02-18 19:21:10 +000096 // Now that we know the offset of the token in the spelling, use the
97 // preprocessor to get the offset in the original source.
98 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000099 }
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Chris Lattner60800082009-02-18 17:49:48 +0000101 // Move to the next string token.
102 ++TokNo;
103 ByteNo -= TokNumBytes;
104 }
105}
106
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000107/// CheckablePrintfAttr - does a function call have a "printf" attribute
108/// and arguments that merit checking?
109bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
110 if (Format->getType() == "printf") return true;
111 if (Format->getType() == "printf0") {
112 // printf0 allows null "format" string; if so don't check format/args
113 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000114 // Does the index refer to the implicit object argument?
115 if (isa<CXXMemberCallExpr>(TheCall)) {
116 if (format_idx == 0)
117 return false;
118 --format_idx;
119 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000120 if (format_idx < TheCall->getNumArgs()) {
121 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000122 if (!Format->isNullPointerConstant(Context,
123 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000124 return true;
125 }
126 }
127 return false;
128}
Chris Lattner60800082009-02-18 17:49:48 +0000129
John McCall60d7b3a2010-08-24 06:29:42 +0000130ExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000131Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCall60d7b3a2010-08-24 06:29:42 +0000132 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000133
Chris Lattner946928f2010-10-01 23:23:24 +0000134 // Find out if any arguments are required to be integer constant expressions.
135 unsigned ICEArguments = 0;
136 ASTContext::GetBuiltinTypeError Error;
137 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
138 if (Error != ASTContext::GE_None)
139 ICEArguments = 0; // Don't diagnose previously diagnosed errors.
140
141 // If any arguments are required to be ICE's, check and diagnose.
142 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
143 // Skip arguments not required to be ICE's.
144 if ((ICEArguments & (1 << ArgNo)) == 0) continue;
145
146 llvm::APSInt Result;
147 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
148 return true;
149 ICEArguments &= ~(1 << ArgNo);
150 }
151
Anders Carlssond406bf02009-08-16 01:56:34 +0000152 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000153 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000154 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000155 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000156 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000157 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000158 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000159 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000160 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000161 if (SemaBuiltinVAStart(TheCall))
162 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000163 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000164 case Builtin::BI__builtin_isgreater:
165 case Builtin::BI__builtin_isgreaterequal:
166 case Builtin::BI__builtin_isless:
167 case Builtin::BI__builtin_islessequal:
168 case Builtin::BI__builtin_islessgreater:
169 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000170 if (SemaBuiltinUnorderedCompare(TheCall))
171 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000172 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000173 case Builtin::BI__builtin_fpclassify:
174 if (SemaBuiltinFPClassification(TheCall, 6))
175 return ExprError();
176 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000177 case Builtin::BI__builtin_isfinite:
178 case Builtin::BI__builtin_isinf:
179 case Builtin::BI__builtin_isinf_sign:
180 case Builtin::BI__builtin_isnan:
181 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000182 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000183 return ExprError();
184 break;
Eli Friedmand38617c2008-05-14 19:38:39 +0000185 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000186 return SemaBuiltinShuffleVector(TheCall);
187 // TheCall will be freed by the smart pointer here, but that's fine, since
188 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000189 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000190 if (SemaBuiltinPrefetch(TheCall))
191 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000192 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000193 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000194 if (SemaBuiltinObjectSize(TheCall))
195 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000196 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000197 case Builtin::BI__builtin_longjmp:
198 if (SemaBuiltinLongjmp(TheCall))
199 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000200 break;
Chris Lattner75c29a02010-10-12 17:47:42 +0000201 case Builtin::BI__builtin_constant_p:
202 if (TheCall->getNumArgs() == 0)
203 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
204 << 0 /*function call*/ << 1 << 0 << TheCall->getSourceRange();
205 if (TheCall->getNumArgs() > 1)
206 return Diag(TheCall->getArg(1)->getLocStart(),
207 diag::err_typecheck_call_too_many_args)
208 << 0 /*function call*/ << 1 << TheCall->getNumArgs()
209 << TheCall->getArg(1)->getSourceRange();
210 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000211 case Builtin::BI__sync_fetch_and_add:
212 case Builtin::BI__sync_fetch_and_sub:
213 case Builtin::BI__sync_fetch_and_or:
214 case Builtin::BI__sync_fetch_and_and:
215 case Builtin::BI__sync_fetch_and_xor:
216 case Builtin::BI__sync_add_and_fetch:
217 case Builtin::BI__sync_sub_and_fetch:
218 case Builtin::BI__sync_and_and_fetch:
219 case Builtin::BI__sync_or_and_fetch:
220 case Builtin::BI__sync_xor_and_fetch:
221 case Builtin::BI__sync_val_compare_and_swap:
222 case Builtin::BI__sync_bool_compare_and_swap:
223 case Builtin::BI__sync_lock_test_and_set:
224 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000225 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000226 }
227
228 // Since the target specific builtins for each arch overlap, only check those
229 // of the arch we are compiling for.
230 if (BuiltinID >= Builtin::FirstTSBuiltin) {
231 switch (Context.Target.getTriple().getArch()) {
232 case llvm::Triple::arm:
233 case llvm::Triple::thumb:
234 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
235 return ExprError();
236 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000237 default:
238 break;
239 }
240 }
241
242 return move(TheCallResult);
243}
244
Nate Begeman61eecf52010-06-14 05:21:25 +0000245// Get the valid immediate range for the specified NEON type code.
246static unsigned RFT(unsigned t, bool shift = false) {
247 bool quad = t & 0x10;
248
249 switch (t & 0x7) {
250 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000251 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000252 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000253 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000254 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000255 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000256 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000257 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000258 case 4: // f32
259 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000260 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000261 case 5: // poly8
262 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000263 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000264 case 6: // poly16
265 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000266 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000267 case 7: // float16
268 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000269 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000270 }
271 return 0;
272}
273
Nate Begeman26a31422010-06-08 02:47:44 +0000274bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000275 llvm::APSInt Result;
276
Nate Begeman0d15c532010-06-13 04:47:52 +0000277 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000278 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000279 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000280#define GET_NEON_OVERLOAD_CHECK
281#include "clang/Basic/arm_neon.inc"
282#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000283 }
284
Nate Begeman0d15c532010-06-13 04:47:52 +0000285 // For NEON intrinsics which are overloaded on vector element type, validate
286 // the immediate which specifies which variant to emit.
287 if (mask) {
288 unsigned ArgNo = TheCall->getNumArgs()-1;
289 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
290 return true;
291
Nate Begeman61eecf52010-06-14 05:21:25 +0000292 TV = Result.getLimitedValue(32);
293 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000294 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
295 << TheCall->getArg(ArgNo)->getSourceRange();
296 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000297
Nate Begeman0d15c532010-06-13 04:47:52 +0000298 // For NEON intrinsics which take an immediate value as part of the
299 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000300 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000301 switch (BuiltinID) {
302 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000303 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
304 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000305 case ARM::BI__builtin_arm_vcvtr_f:
306 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000307#define GET_NEON_IMMEDIATE_CHECK
308#include "clang/Basic/arm_neon.inc"
309#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000310 };
311
Nate Begeman61eecf52010-06-14 05:21:25 +0000312 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000313 if (SemaBuiltinConstantArg(TheCall, i, Result))
314 return true;
315
Nate Begeman61eecf52010-06-14 05:21:25 +0000316 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000317 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000318 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000319 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000320 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000321
Nate Begeman99c40bb2010-08-03 21:32:34 +0000322 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000323 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000324}
Daniel Dunbarde454282008-10-02 18:44:07 +0000325
Anders Carlssond406bf02009-08-16 01:56:34 +0000326/// CheckFunctionCall - Check a direct function call for various correctness
327/// and safety properties not strictly enforced by the C type system.
328bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
329 // Get the IdentifierInfo* for the called function.
330 IdentifierInfo *FnInfo = FDecl->getIdentifier();
331
332 // None of the checks below are needed for functions that don't have
333 // simple names (e.g., C++ conversion functions).
334 if (!FnInfo)
335 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Daniel Dunbarde454282008-10-02 18:44:07 +0000337 // FIXME: This mechanism should be abstracted to be less fragile and
338 // more efficient. For example, just map function ids to custom
339 // handlers.
340
Ted Kremenekc82faca2010-09-09 04:33:05 +0000341 // Printf and scanf checking.
342 for (specific_attr_iterator<FormatAttr>
343 i = FDecl->specific_attr_begin<FormatAttr>(),
344 e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
345
346 const FormatAttr *Format = *i;
Ted Kremenek826a3452010-07-16 02:11:22 +0000347 const bool b = Format->getType() == "scanf";
348 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000349 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000350 CheckPrintfScanfArguments(TheCall, HasVAListArg,
351 Format->getFormatIdx() - 1,
352 HasVAListArg ? 0 : Format->getFirstArg() - 1,
353 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000354 }
Chris Lattner59907c42007-08-10 20:18:51 +0000355 }
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Ted Kremenekc82faca2010-09-09 04:33:05 +0000357 for (specific_attr_iterator<NonNullAttr>
358 i = FDecl->specific_attr_begin<NonNullAttr>(),
359 e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
Sean Huntcf807c42010-08-18 23:23:40 +0000360 CheckNonNullArguments(*i, TheCall);
Ted Kremenekc82faca2010-09-09 04:33:05 +0000361 }
Sebastian Redl0eb23302009-01-19 00:08:26 +0000362
Anders Carlssond406bf02009-08-16 01:56:34 +0000363 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000364}
365
Anders Carlssond406bf02009-08-16 01:56:34 +0000366bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000367 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000368 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000369 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000370 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000372 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
373 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000374 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000376 QualType Ty = V->getType();
377 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000378 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000379
Ted Kremenek826a3452010-07-16 02:11:22 +0000380 const bool b = Format->getType() == "scanf";
381 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000382 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Anders Carlssond406bf02009-08-16 01:56:34 +0000384 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000385 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
386 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000387
388 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000389}
390
Chris Lattner5caa3702009-05-08 06:58:22 +0000391/// SemaBuiltinAtomicOverloaded - We have a call to a function like
392/// __sync_fetch_and_add, which is an overloaded function based on the pointer
393/// type of its first argument. The main ActOnCallExpr routines have already
394/// promoted the types of arguments because all of these calls are prototyped as
395/// void(...).
396///
397/// This function goes through and does final semantic checking for these
398/// builtins,
John McCall60d7b3a2010-08-24 06:29:42 +0000399ExprResult
400Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000401 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000402 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
403 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
404
405 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000406 if (TheCall->getNumArgs() < 1) {
407 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
408 << 0 << 1 << TheCall->getNumArgs()
409 << TheCall->getCallee()->getSourceRange();
410 return ExprError();
411 }
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Chris Lattner5caa3702009-05-08 06:58:22 +0000413 // Inspect the first argument of the atomic builtin. This should always be
414 // a pointer type, whose element is an integral scalar or pointer type.
415 // Because it is a pointer type, we don't have to worry about any implicit
416 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000417 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000418 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000419 if (!FirstArg->getType()->isPointerType()) {
420 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
421 << FirstArg->getType() << FirstArg->getSourceRange();
422 return ExprError();
423 }
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chandler Carruthd2014572010-07-09 18:59:35 +0000425 QualType ValType =
426 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Chris Lattnerdd5fa7a2010-09-17 21:12:38 +0000427 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000428 !ValType->isBlockPointerType()) {
429 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
430 << FirstArg->getType() << FirstArg->getSourceRange();
431 return ExprError();
432 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000433
Chandler Carruth8d13d222010-07-18 20:54:12 +0000434 // The majority of builtins return a value, but a few have special return
435 // types, so allow them to override appropriately below.
436 QualType ResultType = ValType;
437
Chris Lattner5caa3702009-05-08 06:58:22 +0000438 // We need to figure out which concrete builtin this maps onto. For example,
439 // __sync_fetch_and_add with a 2 byte object turns into
440 // __sync_fetch_and_add_2.
441#define BUILTIN_ROW(x) \
442 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
443 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000444
Chris Lattner5caa3702009-05-08 06:58:22 +0000445 static const unsigned BuiltinIndices[][5] = {
446 BUILTIN_ROW(__sync_fetch_and_add),
447 BUILTIN_ROW(__sync_fetch_and_sub),
448 BUILTIN_ROW(__sync_fetch_and_or),
449 BUILTIN_ROW(__sync_fetch_and_and),
450 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Chris Lattner5caa3702009-05-08 06:58:22 +0000452 BUILTIN_ROW(__sync_add_and_fetch),
453 BUILTIN_ROW(__sync_sub_and_fetch),
454 BUILTIN_ROW(__sync_and_and_fetch),
455 BUILTIN_ROW(__sync_or_and_fetch),
456 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattner5caa3702009-05-08 06:58:22 +0000458 BUILTIN_ROW(__sync_val_compare_and_swap),
459 BUILTIN_ROW(__sync_bool_compare_and_swap),
460 BUILTIN_ROW(__sync_lock_test_and_set),
461 BUILTIN_ROW(__sync_lock_release)
462 };
Mike Stump1eb44332009-09-09 15:08:12 +0000463#undef BUILTIN_ROW
464
Chris Lattner5caa3702009-05-08 06:58:22 +0000465 // Determine the index of the size.
466 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000467 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000468 case 1: SizeIndex = 0; break;
469 case 2: SizeIndex = 1; break;
470 case 4: SizeIndex = 2; break;
471 case 8: SizeIndex = 3; break;
472 case 16: SizeIndex = 4; break;
473 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000474 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
475 << FirstArg->getType() << FirstArg->getSourceRange();
476 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000477 }
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Chris Lattner5caa3702009-05-08 06:58:22 +0000479 // Each of these builtins has one pointer argument, followed by some number of
480 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
481 // that we ignore. Find out which row of BuiltinIndices to read from as well
482 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000483 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000484 unsigned BuiltinIndex, NumFixed = 1;
485 switch (BuiltinID) {
486 default: assert(0 && "Unknown overloaded atomic builtin!");
487 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
488 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
489 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
490 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
491 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000493 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
494 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
495 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
496 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
497 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Chris Lattner5caa3702009-05-08 06:58:22 +0000499 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000500 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000501 NumFixed = 2;
502 break;
503 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000504 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000505 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000506 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000507 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000508 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000509 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000510 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000511 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000512 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000513 break;
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattner5caa3702009-05-08 06:58:22 +0000516 // Now that we know how many fixed arguments we expect, first check that we
517 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000518 if (TheCall->getNumArgs() < 1+NumFixed) {
519 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
520 << 0 << 1+NumFixed << TheCall->getNumArgs()
521 << TheCall->getCallee()->getSourceRange();
522 return ExprError();
523 }
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000525 // Get the decl for the concrete builtin from this, we can tell what the
526 // concrete integer type we should convert to is.
527 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
528 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
529 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000530 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000531 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
532 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000533
John McCallf871d0c2010-08-07 06:22:56 +0000534 // The first argument --- the pointer --- has a fixed type; we
535 // deduce the types of the rest of the arguments accordingly. Walk
536 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000537 for (unsigned i = 0; i != NumFixed; ++i) {
538 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000539
Chris Lattner5caa3702009-05-08 06:58:22 +0000540 // If the argument is an implicit cast, then there was a promotion due to
541 // "...", just remove it now.
542 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
543 Arg = ICE->getSubExpr();
544 ICE->setSubExpr(0);
Chris Lattner5caa3702009-05-08 06:58:22 +0000545 TheCall->setArg(i+1, Arg);
546 }
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner5caa3702009-05-08 06:58:22 +0000548 // GCC does an implicit conversion to the pointer or integer ValType. This
549 // can fail in some cases (1i -> int**), check for this error case now.
John McCall2de56d12010-08-25 11:45:40 +0000550 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000551 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000552 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000553 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattner5caa3702009-05-08 06:58:22 +0000555 // Okay, we have something that *can* be converted to the right type. Check
556 // to see if there is a potentially weird extension going on here. This can
557 // happen when you do an atomic operation on something like an char* and
558 // pass in 42. The 42 gets converted to char. This is even more strange
559 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000560 // FIXME: Do this check.
John McCall5baba9d2010-08-25 10:28:54 +0000561 ImpCastExprToType(Arg, ValType, Kind, VK_RValue, &BasePath);
Chris Lattner5caa3702009-05-08 06:58:22 +0000562 TheCall->setArg(i+1, Arg);
563 }
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattner5caa3702009-05-08 06:58:22 +0000565 // Switch the DeclRefExpr to refer to the new decl.
566 DRE->setDecl(NewBuiltinDecl);
567 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000568
Chris Lattner5caa3702009-05-08 06:58:22 +0000569 // Set the callee in the CallExpr.
570 // FIXME: This leaks the original parens and implicit casts.
571 Expr *PromotedCall = DRE;
572 UsualUnaryConversions(PromotedCall);
573 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000575 // Change the result type of the call to match the original value type. This
576 // is arbitrary, but the codegen for these builtins ins design to handle it
577 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000578 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000579
580 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000581}
582
583
Chris Lattner69039812009-02-18 06:01:06 +0000584/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000585/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000586/// Note: It might also make sense to do the UTF-16 conversion here (would
587/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000588bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000589 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000590 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
591
592 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000593 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
594 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000595 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000596 }
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +0000598 size_t NulPos = Literal->getString().find('\0');
599 if (NulPos != llvm::StringRef::npos) {
600 Diag(getLocationOfStringLiteralByte(Literal, NulPos),
601 diag::warn_cfstring_literal_contains_nul_character)
602 << Arg->getSourceRange();
Daniel Dunbarf015b032009-09-22 10:03:52 +0000603 }
Fariborz Jahanian7da71022010-09-07 19:38:13 +0000604 if (Literal->containsNonAsciiOrNull()) {
605 llvm::StringRef String = Literal->getString();
606 unsigned NumBytes = String.size();
607 llvm::SmallVector<UTF16, 128> ToBuf(NumBytes);
608 const UTF8 *FromPtr = (UTF8 *)String.data();
609 UTF16 *ToPtr = &ToBuf[0];
610
611 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
612 &ToPtr, ToPtr + NumBytes,
613 strictConversion);
614 // Check for conversion failure.
615 if (Result != conversionOK)
616 Diag(Arg->getLocStart(),
617 diag::warn_cfstring_truncated) << Arg->getSourceRange();
618 }
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000619 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000620}
621
Chris Lattnerc27c6652007-12-20 00:05:45 +0000622/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
623/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000624bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
625 Expr *Fn = TheCall->getCallee();
626 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000627 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000628 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000629 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
630 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000631 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000632 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000633 return true;
634 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000635
636 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000637 return Diag(TheCall->getLocEnd(),
638 diag::err_typecheck_call_too_few_args_at_least)
639 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000640 }
641
Chris Lattnerc27c6652007-12-20 00:05:45 +0000642 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000643 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000644 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000645 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000646 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000647 else if (FunctionDecl *FD = getCurFunctionDecl())
648 isVariadic = FD->isVariadic();
649 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000650 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Chris Lattnerc27c6652007-12-20 00:05:45 +0000652 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000653 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
654 return true;
655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Chris Lattner30ce3442007-12-19 23:59:04 +0000657 // Verify that the second argument to the builtin is the last argument of the
658 // current function or method.
659 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000660 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Anders Carlsson88cf2262008-02-11 04:20:54 +0000662 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
663 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000664 // FIXME: This isn't correct for methods (results in bogus warning).
665 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000666 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000667 if (CurBlock)
668 LastArg = *(CurBlock->TheDecl->param_end()-1);
669 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000670 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000671 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000672 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000673 SecondArgIsLastNamedArgument = PV == LastArg;
674 }
675 }
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Chris Lattner30ce3442007-12-19 23:59:04 +0000677 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000678 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000679 diag::warn_second_parameter_of_va_start_not_last_named_argument);
680 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000681}
Chris Lattner30ce3442007-12-19 23:59:04 +0000682
Chris Lattner1b9a0792007-12-20 00:26:33 +0000683/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
684/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000685bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
686 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000687 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000688 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000689 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000690 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000691 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000692 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000693 << SourceRange(TheCall->getArg(2)->getLocStart(),
694 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Chris Lattner925e60d2007-12-28 05:29:59 +0000696 Expr *OrigArg0 = TheCall->getArg(0);
697 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000698
Chris Lattner1b9a0792007-12-20 00:26:33 +0000699 // Do standard promotions between the two arguments, returning their common
700 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000701 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000702
703 // Make sure any conversions are pushed back into the call; this is
704 // type safe since unordered compare builtins are declared as "_Bool
705 // foo(...)".
706 TheCall->setArg(0, OrigArg0);
707 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000708
Douglas Gregorcde01732009-05-19 22:10:17 +0000709 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
710 return false;
711
Chris Lattner1b9a0792007-12-20 00:26:33 +0000712 // If the common type isn't a real floating type, then the arguments were
713 // invalid for this operation.
714 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000715 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000716 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000717 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000718 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Chris Lattner1b9a0792007-12-20 00:26:33 +0000720 return false;
721}
722
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000723/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
724/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000725/// to check everything. We expect the last argument to be a floating point
726/// value.
727bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
728 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000729 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000730 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000731 if (TheCall->getNumArgs() > NumArgs)
732 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000733 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000734 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000735 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000736 (*(TheCall->arg_end()-1))->getLocEnd());
737
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000738 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000739
Eli Friedman9ac6f622009-08-31 20:06:00 +0000740 if (OrigArg->isTypeDependent())
741 return false;
742
Chris Lattner81368fb2010-05-06 05:50:07 +0000743 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000744 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000745 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000746 diag::err_typecheck_call_invalid_unary_fp)
747 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Chris Lattner81368fb2010-05-06 05:50:07 +0000749 // If this is an implicit conversion from float -> double, remove it.
750 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
751 Expr *CastArg = Cast->getSubExpr();
752 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
753 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
754 "promotion from float to double is the only expected cast here");
755 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +0000756 TheCall->setArg(NumArgs-1, CastArg);
757 OrigArg = CastArg;
758 }
759 }
760
Eli Friedman9ac6f622009-08-31 20:06:00 +0000761 return false;
762}
763
Eli Friedmand38617c2008-05-14 19:38:39 +0000764/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
765// This is declared to take (...), so we have to check everything.
John McCall60d7b3a2010-08-24 06:29:42 +0000766ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000767 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000768 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000769 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000770 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000771 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000772
Nate Begeman37b6a572010-06-08 00:16:34 +0000773 // Determine which of the following types of shufflevector we're checking:
774 // 1) unary, vector mask: (lhs, mask)
775 // 2) binary, vector mask: (lhs, rhs, mask)
776 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
777 QualType resType = TheCall->getArg(0)->getType();
778 unsigned numElements = 0;
779
Douglas Gregorcde01732009-05-19 22:10:17 +0000780 if (!TheCall->getArg(0)->isTypeDependent() &&
781 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000782 QualType LHSType = TheCall->getArg(0)->getType();
783 QualType RHSType = TheCall->getArg(1)->getType();
784
785 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000786 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000787 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000788 TheCall->getArg(1)->getLocEnd());
789 return ExprError();
790 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000791
792 numElements = LHSType->getAs<VectorType>()->getNumElements();
793 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000794
Nate Begeman37b6a572010-06-08 00:16:34 +0000795 // Check to see if we have a call with 2 vector arguments, the unary shuffle
796 // with mask. If so, verify that RHS is an integer vector type with the
797 // same number of elts as lhs.
798 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +0000799 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +0000800 RHSType->getAs<VectorType>()->getNumElements() != numElements)
801 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
802 << SourceRange(TheCall->getArg(1)->getLocStart(),
803 TheCall->getArg(1)->getLocEnd());
804 numResElements = numElements;
805 }
806 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000807 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000808 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000809 TheCall->getArg(1)->getLocEnd());
810 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000811 } else if (numElements != numResElements) {
812 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000813 resType = Context.getVectorType(eltType, numResElements,
814 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000815 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000816 }
817
818 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000819 if (TheCall->getArg(i)->isTypeDependent() ||
820 TheCall->getArg(i)->isValueDependent())
821 continue;
822
Nate Begeman37b6a572010-06-08 00:16:34 +0000823 llvm::APSInt Result(32);
824 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
825 return ExprError(Diag(TheCall->getLocStart(),
826 diag::err_shufflevector_nonconstant_argument)
827 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000828
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000829 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000830 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000831 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000832 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000833 }
834
835 llvm::SmallVector<Expr*, 32> exprs;
836
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000837 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000838 exprs.push_back(TheCall->getArg(i));
839 TheCall->setArg(i, 0);
840 }
841
Nate Begemana88dc302009-08-12 02:10:25 +0000842 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000843 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000844 TheCall->getCallee()->getLocStart(),
845 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000846}
Chris Lattner30ce3442007-12-19 23:59:04 +0000847
Daniel Dunbar4493f792008-07-21 22:59:13 +0000848/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
849// This is declared to take (const void*, ...) and can take two
850// optional constant int args.
851bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000852 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000853
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000854 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000855 return Diag(TheCall->getLocEnd(),
856 diag::err_typecheck_call_too_many_args_at_most)
857 << 0 /*function call*/ << 3 << NumArgs
858 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000859
860 // Argument 0 is checked for us and the remaining arguments must be
861 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000862 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000863 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000864
Eli Friedman9aef7262009-12-04 00:30:06 +0000865 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000866 if (SemaBuiltinConstantArg(TheCall, i, Result))
867 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000868
Daniel Dunbar4493f792008-07-21 22:59:13 +0000869 // FIXME: gcc issues a warning and rewrites these to 0. These
870 // seems especially odd for the third argument since the default
871 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000872 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000873 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000874 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000875 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000876 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000877 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000878 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000879 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000880 }
881 }
882
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000883 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000884}
885
Eric Christopher691ebc32010-04-17 02:26:23 +0000886/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
887/// TheCall is a constant expression.
888bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
889 llvm::APSInt &Result) {
890 Expr *Arg = TheCall->getArg(ArgNum);
891 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
892 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
893
894 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
895
896 if (!Arg->isIntegerConstantExpr(Result, Context))
897 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000898 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000899
Chris Lattner21fb98e2009-09-23 06:06:36 +0000900 return false;
901}
902
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000903/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
904/// int type). This simply type checks that type is one of the defined
905/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000906// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000907bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000908 llvm::APSInt Result;
909
910 // Check constant-ness first.
911 if (SemaBuiltinConstantArg(TheCall, 1, Result))
912 return true;
913
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000914 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000915 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000916 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
917 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000918 }
919
920 return false;
921}
922
Eli Friedman586d6a82009-05-03 06:04:26 +0000923/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000924/// This checks that val is a constant 1.
925bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
926 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000927 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000928
Eric Christopher691ebc32010-04-17 02:26:23 +0000929 // TODO: This is less than ideal. Overload this to take a value.
930 if (SemaBuiltinConstantArg(TheCall, 1, Result))
931 return true;
932
933 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000934 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
935 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
936
937 return false;
938}
939
Ted Kremenekd30ef872009-01-12 23:09:09 +0000940// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000941bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
942 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000943 unsigned format_idx, unsigned firstDataArg,
944 bool isPrintf) {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000945 tryAgain:
Douglas Gregorcde01732009-05-19 22:10:17 +0000946 if (E->isTypeDependent() || E->isValueDependent())
947 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000948
949 switch (E->getStmtClass()) {
950 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000951 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +0000952 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
953 format_idx, firstDataArg, isPrintf)
954 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
955 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000956 }
957
Ted Kremenek95355bb2010-09-09 03:51:42 +0000958 case Stmt::IntegerLiteralClass:
959 // Technically -Wformat-nonliteral does not warn about this case.
960 // The behavior of printf and friends in this case is implementation
961 // dependent. Ideally if the format string cannot be null then
962 // it should have a 'nonnull' attribute in the function prototype.
963 return true;
964
Ted Kremenekd30ef872009-01-12 23:09:09 +0000965 case Stmt::ImplicitCastExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000966 E = cast<ImplicitCastExpr>(E)->getSubExpr();
967 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000968 }
969
970 case Stmt::ParenExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000971 E = cast<ParenExpr>(E)->getSubExpr();
972 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000973 }
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Ted Kremenek082d9362009-03-20 21:35:28 +0000975 case Stmt::DeclRefExprClass: {
976 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000977
Ted Kremenek082d9362009-03-20 21:35:28 +0000978 // As an exception, do not flag errors for variables binding to
979 // const string literals.
980 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
981 bool isConstant = false;
982 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000983
Ted Kremenek082d9362009-03-20 21:35:28 +0000984 if (const ArrayType *AT = Context.getAsArrayType(T)) {
985 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000986 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000987 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000988 PT->getPointeeType().isConstant(Context);
989 }
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Ted Kremenek082d9362009-03-20 21:35:28 +0000991 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000992 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000993 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +0000994 HasVAListArg, format_idx, firstDataArg,
995 isPrintf);
Ted Kremenek082d9362009-03-20 21:35:28 +0000996 }
Mike Stump1eb44332009-09-09 15:08:12 +0000997
Anders Carlssond966a552009-06-28 19:55:58 +0000998 // For vprintf* functions (i.e., HasVAListArg==true), we add a
999 // special check to see if the format string is a function parameter
1000 // of the function calling the printf function. If the function
1001 // has an attribute indicating it is a printf-like function, then we
1002 // should suppress warnings concerning non-literals being used in a call
1003 // to a vprintf function. For example:
1004 //
1005 // void
1006 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1007 // va_list ap;
1008 // va_start(ap, fmt);
1009 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1010 // ...
1011 //
1012 //
1013 // FIXME: We don't have full attribute support yet, so just check to see
1014 // if the argument is a DeclRefExpr that references a parameter. We'll
1015 // add proper support for checking the attribute later.
1016 if (HasVAListArg)
1017 if (isa<ParmVarDecl>(VD))
1018 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001019 }
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Ted Kremenek082d9362009-03-20 21:35:28 +00001021 return false;
1022 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001023
Anders Carlsson8f031b32009-06-27 04:05:33 +00001024 case Stmt::CallExprClass: {
1025 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001026 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001027 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1028 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1029 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001030 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001031 unsigned ArgIndex = FA->getFormatIdx();
1032 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001033
1034 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001035 format_idx, firstDataArg, isPrintf);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001036 }
1037 }
1038 }
1039 }
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Anders Carlsson8f031b32009-06-27 04:05:33 +00001041 return false;
1042 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001043 case Stmt::ObjCStringLiteralClass:
1044 case Stmt::StringLiteralClass: {
1045 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001046
Ted Kremenek082d9362009-03-20 21:35:28 +00001047 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001048 StrE = ObjCFExpr->getString();
1049 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001050 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001051
Ted Kremenekd30ef872009-01-12 23:09:09 +00001052 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001053 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1054 firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001055 return true;
1056 }
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Ted Kremenekd30ef872009-01-12 23:09:09 +00001058 return false;
1059 }
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Ted Kremenek082d9362009-03-20 21:35:28 +00001061 default:
1062 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001063 }
1064}
1065
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001066void
Mike Stump1eb44332009-09-09 15:08:12 +00001067Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1068 const CallExpr *TheCall) {
Sean Huntcf807c42010-08-18 23:23:40 +00001069 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1070 e = NonNull->args_end();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001071 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001072 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001073 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001074 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001075 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1076 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001077 }
1078}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001079
Ted Kremenek826a3452010-07-16 02:11:22 +00001080/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1081/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001082void
Ted Kremenek826a3452010-07-16 02:11:22 +00001083Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1084 unsigned format_idx, unsigned firstDataArg,
1085 bool isPrintf) {
1086
Ted Kremenek082d9362009-03-20 21:35:28 +00001087 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001088
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001089 // The way the format attribute works in GCC, the implicit this argument
1090 // of member functions is counted. However, it doesn't appear in our own
1091 // lists, so decrement format_idx in that case.
1092 if (isa<CXXMemberCallExpr>(TheCall)) {
1093 // Catch a format attribute mistakenly referring to the object argument.
1094 if (format_idx == 0)
1095 return;
1096 --format_idx;
1097 if(firstDataArg != 0)
1098 --firstDataArg;
1099 }
1100
Ted Kremenek826a3452010-07-16 02:11:22 +00001101 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001102 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001103 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001104 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001105 return;
1106 }
Mike Stump1eb44332009-09-09 15:08:12 +00001107
Ted Kremenek082d9362009-03-20 21:35:28 +00001108 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001109
Chris Lattner59907c42007-08-10 20:18:51 +00001110 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001111 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001112 // Dynamically generated format strings are difficult to
1113 // automatically vet at compile time. Requiring that format strings
1114 // are string literals: (1) permits the checking of format strings by
1115 // the compiler and thereby (2) can practically remove the source of
1116 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001117
Mike Stump1eb44332009-09-09 15:08:12 +00001118 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001119 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001120 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001121 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001122 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001123 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001124 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001125
Chris Lattner655f1412009-04-29 04:59:47 +00001126 // If there are no arguments specified, warn with -Wformat-security, otherwise
1127 // warn only with -Wformat-nonliteral.
1128 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001129 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001130 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001131 << OrigFormatExpr->getSourceRange();
1132 else
Mike Stump1eb44332009-09-09 15:08:12 +00001133 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001134 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001135 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001136}
Ted Kremenek71895b92007-08-14 17:39:48 +00001137
Ted Kremeneke0e53132010-01-28 23:39:18 +00001138namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001139class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1140protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001141 Sema &S;
1142 const StringLiteral *FExpr;
1143 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001144 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001145 const unsigned NumDataArgs;
1146 const bool IsObjCLiteral;
1147 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001148 const bool HasVAListArg;
1149 const CallExpr *TheCall;
1150 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001151 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001152 bool usesPositionalArgs;
1153 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001154public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001155 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001156 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001157 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001158 const char *beg, bool hasVAListArg,
1159 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001160 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001161 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001162 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001163 IsObjCLiteral(isObjCLiteral), Beg(beg),
1164 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001165 TheCall(theCall), FormatIdx(formatIdx),
1166 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001167 CoveredArgs.resize(numDataArgs);
1168 CoveredArgs.reset();
1169 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001170
Ted Kremenek07d161f2010-01-29 01:50:07 +00001171 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001172
Ted Kremenek826a3452010-07-16 02:11:22 +00001173 void HandleIncompleteSpecifier(const char *startSpecifier,
1174 unsigned specifierLen);
1175
Ted Kremenekefaff192010-02-27 01:41:03 +00001176 virtual void HandleInvalidPosition(const char *startSpecifier,
1177 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001178 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001179
1180 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1181
Ted Kremeneke0e53132010-01-28 23:39:18 +00001182 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001183
Ted Kremenek826a3452010-07-16 02:11:22 +00001184protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001185 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1186 const char *startSpec,
1187 unsigned specifierLen,
1188 const char *csStart, unsigned csLen);
1189
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001190 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001191 CharSourceRange getSpecifierRange(const char *startSpecifier,
1192 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001193 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001194
Ted Kremenek0d277352010-01-29 01:06:55 +00001195 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001196
1197 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1198 const analyze_format_string::ConversionSpecifier &CS,
1199 const char *startSpecifier, unsigned specifierLen,
1200 unsigned argIndex);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001201};
1202}
1203
Ted Kremenek826a3452010-07-16 02:11:22 +00001204SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001205 return OrigFormatExpr->getSourceRange();
1206}
1207
Ted Kremenek826a3452010-07-16 02:11:22 +00001208CharSourceRange CheckFormatHandler::
1209getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001210 SourceLocation Start = getLocationOfByte(startSpecifier);
1211 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1212
1213 // Advance the end SourceLocation by one due to half-open ranges.
1214 End = End.getFileLocWithOffset(1);
1215
1216 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001217}
1218
Ted Kremenek826a3452010-07-16 02:11:22 +00001219SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001220 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001221}
1222
Ted Kremenek826a3452010-07-16 02:11:22 +00001223void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1224 unsigned specifierLen){
Ted Kremenek808015a2010-01-29 03:16:21 +00001225 SourceLocation Loc = getLocationOfByte(startSpecifier);
1226 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek826a3452010-07-16 02:11:22 +00001227 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001228}
1229
Ted Kremenekefaff192010-02-27 01:41:03 +00001230void
Ted Kremenek826a3452010-07-16 02:11:22 +00001231CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1232 analyze_format_string::PositionContext p) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001233 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001234 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1235 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001236}
1237
Ted Kremenek826a3452010-07-16 02:11:22 +00001238void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001239 unsigned posLen) {
1240 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001241 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1242 << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001243}
1244
Ted Kremenek826a3452010-07-16 02:11:22 +00001245void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1246 // The presence of a null character is likely an error.
1247 S.Diag(getLocationOfByte(nullCharacter),
1248 diag::warn_printf_format_string_contains_null_char)
1249 << getFormatStringRange();
1250}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001251
Ted Kremenek826a3452010-07-16 02:11:22 +00001252const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1253 return TheCall->getArg(FirstDataArg + i);
1254}
1255
1256void CheckFormatHandler::DoneProcessing() {
1257 // Does the number of data arguments exceed the number of
1258 // format conversions in the format string?
1259 if (!HasVAListArg) {
1260 // Find any arguments that weren't covered.
1261 CoveredArgs.flip();
1262 signed notCoveredArg = CoveredArgs.find_first();
1263 if (notCoveredArg >= 0) {
1264 assert((unsigned)notCoveredArg < NumDataArgs);
1265 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1266 diag::warn_printf_data_arg_not_used)
1267 << getFormatStringRange();
1268 }
1269 }
1270}
1271
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001272bool
1273CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1274 SourceLocation Loc,
1275 const char *startSpec,
1276 unsigned specifierLen,
1277 const char *csStart,
1278 unsigned csLen) {
1279
1280 bool keepGoing = true;
1281 if (argIndex < NumDataArgs) {
1282 // Consider the argument coverered, even though the specifier doesn't
1283 // make sense.
1284 CoveredArgs.set(argIndex);
1285 }
1286 else {
1287 // If argIndex exceeds the number of data arguments we
1288 // don't issue a warning because that is just a cascade of warnings (and
1289 // they may have intended '%%' anyway). We don't want to continue processing
1290 // the format string after this point, however, as we will like just get
1291 // gibberish when trying to match arguments.
1292 keepGoing = false;
1293 }
1294
1295 S.Diag(Loc, diag::warn_format_invalid_conversion)
1296 << llvm::StringRef(csStart, csLen)
1297 << getSpecifierRange(startSpec, specifierLen);
1298
1299 return keepGoing;
1300}
1301
Ted Kremenek666a1972010-07-26 19:45:42 +00001302bool
1303CheckFormatHandler::CheckNumArgs(
1304 const analyze_format_string::FormatSpecifier &FS,
1305 const analyze_format_string::ConversionSpecifier &CS,
1306 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1307
1308 if (argIndex >= NumDataArgs) {
1309 if (FS.usesPositionalArg()) {
1310 S.Diag(getLocationOfByte(CS.getStart()),
1311 diag::warn_printf_positional_arg_exceeds_data_args)
1312 << (argIndex+1) << NumDataArgs
1313 << getSpecifierRange(startSpecifier, specifierLen);
1314 }
1315 else {
1316 S.Diag(getLocationOfByte(CS.getStart()),
1317 diag::warn_printf_insufficient_data_args)
1318 << getSpecifierRange(startSpecifier, specifierLen);
1319 }
1320
1321 return false;
1322 }
1323 return true;
1324}
1325
Ted Kremenek826a3452010-07-16 02:11:22 +00001326//===--- CHECK: Printf format string checking ------------------------------===//
1327
1328namespace {
1329class CheckPrintfHandler : public CheckFormatHandler {
1330public:
1331 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1332 const Expr *origFormatExpr, unsigned firstDataArg,
1333 unsigned numDataArgs, bool isObjCLiteral,
1334 const char *beg, bool hasVAListArg,
1335 const CallExpr *theCall, unsigned formatIdx)
1336 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1337 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1338 theCall, formatIdx) {}
1339
1340
1341 bool HandleInvalidPrintfConversionSpecifier(
1342 const analyze_printf::PrintfSpecifier &FS,
1343 const char *startSpecifier,
1344 unsigned specifierLen);
1345
1346 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1347 const char *startSpecifier,
1348 unsigned specifierLen);
1349
1350 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1351 const char *startSpecifier, unsigned specifierLen);
1352 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1353 const analyze_printf::OptionalAmount &Amt,
1354 unsigned type,
1355 const char *startSpecifier, unsigned specifierLen);
1356 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1357 const analyze_printf::OptionalFlag &flag,
1358 const char *startSpecifier, unsigned specifierLen);
1359 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1360 const analyze_printf::OptionalFlag &ignoredFlag,
1361 const analyze_printf::OptionalFlag &flag,
1362 const char *startSpecifier, unsigned specifierLen);
1363};
1364}
1365
1366bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1367 const analyze_printf::PrintfSpecifier &FS,
1368 const char *startSpecifier,
1369 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001370 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001371 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001372
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001373 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1374 getLocationOfByte(CS.getStart()),
1375 startSpecifier, specifierLen,
1376 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001377}
1378
Ted Kremenek826a3452010-07-16 02:11:22 +00001379bool CheckPrintfHandler::HandleAmount(
1380 const analyze_format_string::OptionalAmount &Amt,
1381 unsigned k, const char *startSpecifier,
1382 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001383
1384 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001385 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001386 unsigned argIndex = Amt.getArgIndex();
1387 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001388 S.Diag(getLocationOfByte(Amt.getStart()),
1389 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek826a3452010-07-16 02:11:22 +00001390 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001391 // Don't do any more checking. We will just emit
1392 // spurious errors.
1393 return false;
1394 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001395
Ted Kremenek0d277352010-01-29 01:06:55 +00001396 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001397 // Although not in conformance with C99, we also allow the argument to be
1398 // an 'unsigned int' as that is a reasonably safe case. GCC also
1399 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001400 CoveredArgs.set(argIndex);
1401 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001402 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001403
1404 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1405 assert(ATR.isValid());
1406
1407 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001408 S.Diag(getLocationOfByte(Amt.getStart()),
1409 diag::warn_printf_asterisk_wrong_type)
1410 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001411 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek826a3452010-07-16 02:11:22 +00001412 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001413 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001414 // Don't do any more checking. We will just emit
1415 // spurious errors.
1416 return false;
1417 }
1418 }
1419 }
1420 return true;
1421}
Ted Kremenek0d277352010-01-29 01:06:55 +00001422
Tom Caree4ee9662010-06-17 19:00:27 +00001423void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001424 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001425 const analyze_printf::OptionalAmount &Amt,
1426 unsigned type,
1427 const char *startSpecifier,
1428 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001429 const analyze_printf::PrintfConversionSpecifier &CS =
1430 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001431 switch (Amt.getHowSpecified()) {
1432 case analyze_printf::OptionalAmount::Constant:
1433 S.Diag(getLocationOfByte(Amt.getStart()),
1434 diag::warn_printf_nonsensical_optional_amount)
1435 << type
1436 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001437 << getSpecifierRange(startSpecifier, specifierLen)
1438 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001439 Amt.getConstantLength()));
1440 break;
1441
1442 default:
1443 S.Diag(getLocationOfByte(Amt.getStart()),
1444 diag::warn_printf_nonsensical_optional_amount)
1445 << type
1446 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001447 << getSpecifierRange(startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001448 break;
1449 }
1450}
1451
Ted Kremenek826a3452010-07-16 02:11:22 +00001452void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001453 const analyze_printf::OptionalFlag &flag,
1454 const char *startSpecifier,
1455 unsigned specifierLen) {
1456 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001457 const analyze_printf::PrintfConversionSpecifier &CS =
1458 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001459 S.Diag(getLocationOfByte(flag.getPosition()),
1460 diag::warn_printf_nonsensical_flag)
1461 << flag.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001462 << getSpecifierRange(startSpecifier, specifierLen)
1463 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Caree4ee9662010-06-17 19:00:27 +00001464}
1465
1466void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001467 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001468 const analyze_printf::OptionalFlag &ignoredFlag,
1469 const analyze_printf::OptionalFlag &flag,
1470 const char *startSpecifier,
1471 unsigned specifierLen) {
1472 // Warn about ignored flag with a fixit removal.
1473 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1474 diag::warn_printf_ignored_flag)
1475 << ignoredFlag.toString() << flag.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001476 << getSpecifierRange(startSpecifier, specifierLen)
1477 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Caree4ee9662010-06-17 19:00:27 +00001478 ignoredFlag.getPosition(), 1));
1479}
1480
Ted Kremeneke0e53132010-01-28 23:39:18 +00001481bool
Ted Kremenek826a3452010-07-16 02:11:22 +00001482CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001483 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001484 const char *startSpecifier,
1485 unsigned specifierLen) {
1486
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001487 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00001488 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001489 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001490
Ted Kremenekbaa40062010-07-19 22:01:06 +00001491 if (FS.consumesDataArgument()) {
1492 if (atFirstArg) {
1493 atFirstArg = false;
1494 usesPositionalArgs = FS.usesPositionalArg();
1495 }
1496 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1497 // Cannot mix-and-match positional and non-positional arguments.
1498 S.Diag(getLocationOfByte(CS.getStart()),
1499 diag::warn_format_mix_positional_nonpositional_args)
1500 << getSpecifierRange(startSpecifier, specifierLen);
1501 return false;
1502 }
Ted Kremenek0d277352010-01-29 01:06:55 +00001503 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001504
Ted Kremenekefaff192010-02-27 01:41:03 +00001505 // First check if the field width, precision, and conversion specifier
1506 // have matching data arguments.
1507 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1508 startSpecifier, specifierLen)) {
1509 return false;
1510 }
1511
1512 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1513 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001514 return false;
1515 }
1516
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001517 if (!CS.consumesDataArgument()) {
1518 // FIXME: Technically specifying a precision or field width here
1519 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001520 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001521 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001522
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001523 // Consume the argument.
1524 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001525 if (argIndex < NumDataArgs) {
1526 // The check to see if the argIndex is valid will come later.
1527 // We set the bit here because we may exit early from this
1528 // function if we encounter some other error.
1529 CoveredArgs.set(argIndex);
1530 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001531
1532 // Check for using an Objective-C specific conversion specifier
1533 // in a non-ObjC literal.
1534 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001535 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1536 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001537 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001538
Tom Caree4ee9662010-06-17 19:00:27 +00001539 // Check for invalid use of field width
1540 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001541 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001542 startSpecifier, specifierLen);
1543 }
1544
1545 // Check for invalid use of precision
1546 if (!FS.hasValidPrecision()) {
1547 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1548 startSpecifier, specifierLen);
1549 }
1550
1551 // Check each flag does not conflict with any other component.
1552 if (!FS.hasValidLeadingZeros())
1553 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1554 if (!FS.hasValidPlusPrefix())
1555 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001556 if (!FS.hasValidSpacePrefix())
1557 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001558 if (!FS.hasValidAlternativeForm())
1559 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1560 if (!FS.hasValidLeftJustified())
1561 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1562
1563 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001564 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1565 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1566 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001567 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1568 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1569 startSpecifier, specifierLen);
1570
1571 // Check the length modifier is valid with the given conversion specifier.
1572 const LengthModifier &LM = FS.getLengthModifier();
1573 if (!FS.hasValidLengthModifier())
1574 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenek649aecf2010-07-20 20:03:43 +00001575 diag::warn_format_nonsensical_length)
Tom Caree4ee9662010-06-17 19:00:27 +00001576 << LM.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001577 << getSpecifierRange(startSpecifier, specifierLen)
1578 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001579 LM.getLength()));
1580
1581 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00001582 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001583 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001584 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek826a3452010-07-16 02:11:22 +00001585 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001586 // Continue checking the other format specifiers.
1587 return true;
1588 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001589
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001590 // The remaining checks depend on the data arguments.
1591 if (HasVAListArg)
1592 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001593
Ted Kremenek666a1972010-07-26 19:45:42 +00001594 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001595 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001596
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001597 // Now type check the data expression that matches the
1598 // format specifier.
1599 const Expr *Ex = getDataArg(argIndex);
1600 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1601 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1602 // Check if we didn't match because of an implicit cast from a 'char'
1603 // or 'short' to an 'int'. This is done because printf is a varargs
1604 // function.
1605 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00001606 if (ICE->getType() == S.Context.IntTy) {
1607 // All further checking is done on the subexpression.
1608 Ex = ICE->getSubExpr();
1609 if (ATR.matchesType(S.Context, Ex->getType()))
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001610 return true;
Ted Kremenek4d8ae4d2010-10-21 04:00:58 +00001611 }
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001612
1613 // We may be able to offer a FixItHint if it is a supported type.
1614 PrintfSpecifier fixedFS = FS;
1615 bool success = fixedFS.fixType(Ex->getType());
1616
1617 if (success) {
1618 // Get the fix string from the fixed format specifier
1619 llvm::SmallString<128> buf;
1620 llvm::raw_svector_ostream os(buf);
1621 fixedFS.toString(os);
1622
Ted Kremenek9325eaf2010-08-24 22:24:51 +00001623 // FIXME: getRepresentativeType() perhaps should return a string
1624 // instead of a QualType to better handle when the representative
1625 // type is 'wint_t' (which is defined in the system headers).
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001626 S.Diag(getLocationOfByte(CS.getStart()),
1627 diag::warn_printf_conversion_argument_type_mismatch)
1628 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1629 << getSpecifierRange(startSpecifier, specifierLen)
1630 << Ex->getSourceRange()
1631 << FixItHint::CreateReplacement(
1632 getSpecifierRange(startSpecifier, specifierLen),
1633 os.str());
1634 }
1635 else {
1636 S.Diag(getLocationOfByte(CS.getStart()),
1637 diag::warn_printf_conversion_argument_type_mismatch)
1638 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1639 << getSpecifierRange(startSpecifier, specifierLen)
1640 << Ex->getSourceRange();
1641 }
1642 }
1643
Ted Kremeneke0e53132010-01-28 23:39:18 +00001644 return true;
1645}
1646
Ted Kremenek826a3452010-07-16 02:11:22 +00001647//===--- CHECK: Scanf format string checking ------------------------------===//
1648
1649namespace {
1650class CheckScanfHandler : public CheckFormatHandler {
1651public:
1652 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1653 const Expr *origFormatExpr, unsigned firstDataArg,
1654 unsigned numDataArgs, bool isObjCLiteral,
1655 const char *beg, bool hasVAListArg,
1656 const CallExpr *theCall, unsigned formatIdx)
1657 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1658 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1659 theCall, formatIdx) {}
1660
1661 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1662 const char *startSpecifier,
1663 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001664
1665 bool HandleInvalidScanfConversionSpecifier(
1666 const analyze_scanf::ScanfSpecifier &FS,
1667 const char *startSpecifier,
1668 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00001669
1670 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00001671};
Ted Kremenek07d161f2010-01-29 01:50:07 +00001672}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001673
Ted Kremenekb7c21012010-07-16 18:28:03 +00001674void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1675 const char *end) {
1676 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1677 << getSpecifierRange(start, end - start);
1678}
1679
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001680bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1681 const analyze_scanf::ScanfSpecifier &FS,
1682 const char *startSpecifier,
1683 unsigned specifierLen) {
1684
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001685 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001686 FS.getConversionSpecifier();
1687
1688 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1689 getLocationOfByte(CS.getStart()),
1690 startSpecifier, specifierLen,
1691 CS.getStart(), CS.getLength());
1692}
1693
Ted Kremenek826a3452010-07-16 02:11:22 +00001694bool CheckScanfHandler::HandleScanfSpecifier(
1695 const analyze_scanf::ScanfSpecifier &FS,
1696 const char *startSpecifier,
1697 unsigned specifierLen) {
1698
1699 using namespace analyze_scanf;
1700 using namespace analyze_format_string;
1701
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001702 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001703
Ted Kremenekbaa40062010-07-19 22:01:06 +00001704 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1705 // be used to decide if we are using positional arguments consistently.
1706 if (FS.consumesDataArgument()) {
1707 if (atFirstArg) {
1708 atFirstArg = false;
1709 usesPositionalArgs = FS.usesPositionalArg();
1710 }
1711 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1712 // Cannot mix-and-match positional and non-positional arguments.
1713 S.Diag(getLocationOfByte(CS.getStart()),
1714 diag::warn_format_mix_positional_nonpositional_args)
1715 << getSpecifierRange(startSpecifier, specifierLen);
1716 return false;
1717 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001718 }
1719
1720 // Check if the field with is non-zero.
1721 const OptionalAmount &Amt = FS.getFieldWidth();
1722 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1723 if (Amt.getConstantAmount() == 0) {
1724 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1725 Amt.getConstantLength());
1726 S.Diag(getLocationOfByte(Amt.getStart()),
1727 diag::warn_scanf_nonzero_width)
1728 << R << FixItHint::CreateRemoval(R);
1729 }
1730 }
1731
1732 if (!FS.consumesDataArgument()) {
1733 // FIXME: Technically specifying a precision or field width here
1734 // makes no sense. Worth issuing a warning at some point.
1735 return true;
1736 }
1737
1738 // Consume the argument.
1739 unsigned argIndex = FS.getArgIndex();
1740 if (argIndex < NumDataArgs) {
1741 // The check to see if the argIndex is valid will come later.
1742 // We set the bit here because we may exit early from this
1743 // function if we encounter some other error.
1744 CoveredArgs.set(argIndex);
1745 }
1746
Ted Kremenek1e51c202010-07-20 20:04:47 +00001747 // Check the length modifier is valid with the given conversion specifier.
1748 const LengthModifier &LM = FS.getLengthModifier();
1749 if (!FS.hasValidLengthModifier()) {
1750 S.Diag(getLocationOfByte(LM.getStart()),
1751 diag::warn_format_nonsensical_length)
1752 << LM.toString() << CS.toString()
1753 << getSpecifierRange(startSpecifier, specifierLen)
1754 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1755 LM.getLength()));
1756 }
1757
Ted Kremenek826a3452010-07-16 02:11:22 +00001758 // The remaining checks depend on the data arguments.
1759 if (HasVAListArg)
1760 return true;
1761
Ted Kremenek666a1972010-07-26 19:45:42 +00001762 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00001763 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00001764
1765 // FIXME: Check that the argument type matches the format specifier.
1766
1767 return true;
1768}
1769
1770void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001771 const Expr *OrigFormatExpr,
1772 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001773 unsigned format_idx, unsigned firstDataArg,
1774 bool isPrintf) {
1775
Ted Kremeneke0e53132010-01-28 23:39:18 +00001776 // CHECK: is the format string a wide literal?
1777 if (FExpr->isWide()) {
1778 Diag(FExpr->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001779 diag::warn_format_string_is_wide_literal)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001780 << OrigFormatExpr->getSourceRange();
1781 return;
1782 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001783
Ted Kremeneke0e53132010-01-28 23:39:18 +00001784 // Str - The format string. NOTE: this is NOT null-terminated!
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001785 llvm::StringRef StrRef = FExpr->getString();
1786 const char *Str = StrRef.data();
1787 unsigned StrLen = StrRef.size();
Ted Kremenek826a3452010-07-16 02:11:22 +00001788
Ted Kremeneke0e53132010-01-28 23:39:18 +00001789 // CHECK: empty format string?
Ted Kremeneke0e53132010-01-28 23:39:18 +00001790 if (StrLen == 0) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001791 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001792 << OrigFormatExpr->getSourceRange();
1793 return;
1794 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001795
1796 if (isPrintf) {
1797 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1798 TheCall->getNumArgs() - firstDataArg,
1799 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1800 HasVAListArg, TheCall, format_idx);
1801
1802 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1803 H.DoneProcessing();
1804 }
1805 else {
1806 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1807 TheCall->getNumArgs() - firstDataArg,
1808 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1809 HasVAListArg, TheCall, format_idx);
1810
1811 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1812 H.DoneProcessing();
1813 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00001814}
1815
Ted Kremenek06de2762007-08-17 16:46:58 +00001816//===--- CHECK: Return Address of Stack Variable --------------------------===//
1817
1818static DeclRefExpr* EvalVal(Expr *E);
1819static DeclRefExpr* EvalAddr(Expr* E);
1820
1821/// CheckReturnStackAddr - Check if a return statement returns the address
1822/// of a stack variable.
1823void
1824Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1825 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001826
Ted Kremenek06de2762007-08-17 16:46:58 +00001827 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001828 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001829 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001830 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001831 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Steve Naroffc50a4a52008-09-16 22:25:10 +00001833 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001834 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001835
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001836 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001837 if (C->hasBlockDeclRefExprs())
1838 Diag(C->getLocStart(), diag::err_ret_local_block)
1839 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001840
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001841 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1842 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1843 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001844
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001845 } else if (lhsType->isReferenceType()) {
1846 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001847 // Check for a reference to the stack
1848 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001849 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001850 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001851 }
1852}
1853
1854/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1855/// check if the expression in a return statement evaluates to an address
1856/// to a location on the stack. The recursion is used to traverse the
1857/// AST of the return expression, with recursion backtracking when we
1858/// encounter a subexpression that (1) clearly does not lead to the address
1859/// of a stack variable or (2) is something we cannot determine leads to
1860/// the address of a stack variable based on such local checking.
1861///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001862/// EvalAddr processes expressions that are pointers that are used as
1863/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001864/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001865/// the refers to a stack variable.
1866///
1867/// This implementation handles:
1868///
1869/// * pointer-to-pointer casts
1870/// * implicit conversions from array references to pointers
1871/// * taking the address of fields
1872/// * arbitrary interplay between "&" and "*" operators
1873/// * pointer arithmetic from an address of a stack variable
1874/// * taking the address of an array element where the array is on the stack
1875static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001876 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001877 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001878 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001879 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001880 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Ted Kremenek06de2762007-08-17 16:46:58 +00001882 // Our "symbolic interpreter" is just a dispatch off the currently
1883 // viewed AST node. We then recursively traverse the AST by calling
1884 // EvalAddr and EvalVal appropriately.
1885 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001886 case Stmt::ParenExprClass:
1887 // Ignore parentheses.
1888 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001889
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001890 case Stmt::UnaryOperatorClass: {
1891 // The only unary operator that make sense to handle here
1892 // is AddrOf. All others don't make sense as pointers.
1893 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001894
John McCall2de56d12010-08-25 11:45:40 +00001895 if (U->getOpcode() == UO_AddrOf)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001896 return EvalVal(U->getSubExpr());
1897 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001898 return NULL;
1899 }
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001901 case Stmt::BinaryOperatorClass: {
1902 // Handle pointer arithmetic. All other binary operators are not valid
1903 // in this context.
1904 BinaryOperator *B = cast<BinaryOperator>(E);
John McCall2de56d12010-08-25 11:45:40 +00001905 BinaryOperatorKind op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001906
John McCall2de56d12010-08-25 11:45:40 +00001907 if (op != BO_Add && op != BO_Sub)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001908 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001909
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001910 Expr *Base = B->getLHS();
1911
1912 // Determine which argument is the real pointer base. It could be
1913 // the RHS argument instead of the LHS.
1914 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001916 assert (Base->getType()->isPointerType());
1917 return EvalAddr(Base);
1918 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001919
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001920 // For conditional operators we need to see if either the LHS or RHS are
1921 // valid DeclRefExpr*s. If one of them is valid, we return it.
1922 case Stmt::ConditionalOperatorClass: {
1923 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001924
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001925 // Handle the GNU extension for missing LHS.
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00001926 if (Expr *lhsExpr = C->getLHS()) {
1927 // In C++, we can have a throw-expression, which has 'void' type.
1928 if (!lhsExpr->getType()->isVoidType())
1929 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1930 return LHS;
1931 }
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001932
Douglas Gregor9ee5ee82010-10-21 16:21:08 +00001933 // In C++, we can have a throw-expression, which has 'void' type.
1934 if (C->getRHS()->getType()->isVoidType())
1935 return NULL;
1936
1937 return EvalAddr(C->getRHS());
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001938 }
Mike Stump1eb44332009-09-09 15:08:12 +00001939
Ted Kremenek54b52742008-08-07 00:49:01 +00001940 // For casts, we need to handle conversions from arrays to
1941 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001942 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001943 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001944 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001945 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001946 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001947
Steve Naroffdd972f22008-09-05 22:11:13 +00001948 if (SubExpr->getType()->isPointerType() ||
1949 SubExpr->getType()->isBlockPointerType() ||
1950 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001951 return EvalAddr(SubExpr);
1952 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001953 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001954 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001955 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001956 }
Mike Stump1eb44332009-09-09 15:08:12 +00001957
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001958 // C++ casts. For dynamic casts, static casts, and const casts, we
1959 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001960 // through the cast. In the case the dynamic cast doesn't fail (and
1961 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001962 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001963 // FIXME: The comment about is wrong; we're not always converting
1964 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001965 // handle references to objects.
1966 case Stmt::CXXStaticCastExprClass:
1967 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001968 case Stmt::CXXConstCastExprClass:
1969 case Stmt::CXXReinterpretCastExprClass: {
1970 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001971 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001972 return EvalAddr(S);
1973 else
1974 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001975 }
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001977 // Everything else: we simply don't reason about them.
1978 default:
1979 return NULL;
1980 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001981}
Mike Stump1eb44332009-09-09 15:08:12 +00001982
Ted Kremenek06de2762007-08-17 16:46:58 +00001983
1984/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1985/// See the comments for EvalAddr for more details.
1986static DeclRefExpr* EvalVal(Expr *E) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001987do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001988 // We should only be called for evaluating non-pointer expressions, or
1989 // expressions with a pointer type that are not used as references but instead
1990 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001991
Ted Kremenek06de2762007-08-17 16:46:58 +00001992 // Our "symbolic interpreter" is just a dispatch off the currently
1993 // viewed AST node. We then recursively traverse the AST by calling
1994 // EvalAddr and EvalVal appropriately.
1995 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001996 case Stmt::ImplicitCastExprClass: {
1997 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall5baba9d2010-08-25 10:28:54 +00001998 if (IE->getValueKind() == VK_LValue) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001999 E = IE->getSubExpr();
2000 continue;
2001 }
2002 return NULL;
2003 }
2004
Douglas Gregora2813ce2009-10-23 18:54:35 +00002005 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002006 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
2007 // at code that refers to a variable's name. We check if it has local
2008 // storage within the function, and if so, return the expression.
2009 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002010
Ted Kremenek06de2762007-08-17 16:46:58 +00002011 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00002012 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
2013
Ted Kremenek06de2762007-08-17 16:46:58 +00002014 return NULL;
2015 }
Mike Stump1eb44332009-09-09 15:08:12 +00002016
Ted Kremenek68957a92010-08-04 20:01:07 +00002017 case Stmt::ParenExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002018 // Ignore parentheses.
Ted Kremenek68957a92010-08-04 20:01:07 +00002019 E = cast<ParenExpr>(E)->getSubExpr();
2020 continue;
2021 }
Mike Stump1eb44332009-09-09 15:08:12 +00002022
Ted Kremenek06de2762007-08-17 16:46:58 +00002023 case Stmt::UnaryOperatorClass: {
2024 // The only unary operator that make sense to handle here
2025 // is Deref. All others don't resolve to a "name." This includes
2026 // handling all sorts of rvalues passed to a unary operator.
2027 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002028
John McCall2de56d12010-08-25 11:45:40 +00002029 if (U->getOpcode() == UO_Deref)
Ted Kremenek06de2762007-08-17 16:46:58 +00002030 return EvalAddr(U->getSubExpr());
2031
2032 return NULL;
2033 }
Mike Stump1eb44332009-09-09 15:08:12 +00002034
Ted Kremenek06de2762007-08-17 16:46:58 +00002035 case Stmt::ArraySubscriptExprClass: {
2036 // Array subscripts are potential references to data on the stack. We
2037 // retrieve the DeclRefExpr* for the array variable if it indeed
2038 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00002039 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002040 }
Mike Stump1eb44332009-09-09 15:08:12 +00002041
Ted Kremenek06de2762007-08-17 16:46:58 +00002042 case Stmt::ConditionalOperatorClass: {
2043 // For conditional operators we need to see if either the LHS or RHS are
2044 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
2045 ConditionalOperator *C = cast<ConditionalOperator>(E);
2046
Anders Carlsson39073232007-11-30 19:04:31 +00002047 // Handle the GNU extension for missing LHS.
2048 if (Expr *lhsExpr = C->getLHS())
2049 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2050 return LHS;
2051
2052 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00002053 }
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Ted Kremenek06de2762007-08-17 16:46:58 +00002055 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002056 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002057 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002058
Ted Kremenek06de2762007-08-17 16:46:58 +00002059 // Check for indirect access. We only want direct field accesses.
Ted Kremeneka423e812010-09-02 01:12:13 +00002060 if (M->isArrow())
Ted Kremenek06de2762007-08-17 16:46:58 +00002061 return NULL;
Ted Kremeneka423e812010-09-02 01:12:13 +00002062
2063 // Check whether the member type is itself a reference, in which case
2064 // we're not going to refer to the member, but to what the member refers to.
2065 if (M->getMemberDecl()->getType()->isReferenceType())
2066 return NULL;
2067
2068 return EvalVal(M->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002069 }
Mike Stump1eb44332009-09-09 15:08:12 +00002070
Ted Kremenek06de2762007-08-17 16:46:58 +00002071 // Everything else: we simply don't reason about them.
2072 default:
2073 return NULL;
2074 }
Ted Kremenek68957a92010-08-04 20:01:07 +00002075} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00002076}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002077
2078//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2079
2080/// Check for comparisons of floating point operands using != and ==.
2081/// Issue a warning if these are no self-comparisons, as they are not likely
2082/// to do what the programmer intended.
2083void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2084 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002085
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002086 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00002087 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002088
2089 // Special case: check for x == x (which is OK).
2090 // Do not emit warnings for such cases.
2091 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2092 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2093 if (DRL->getDecl() == DRR->getDecl())
2094 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002095
2096
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002097 // Special case: check for comparisons against literals that can be exactly
2098 // represented by APFloat. In such cases, do not emit a warning. This
2099 // is a heuristic: often comparison against such literals are used to
2100 // detect if a value in a variable has not changed. This clearly can
2101 // lead to false negatives.
2102 if (EmitWarning) {
2103 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2104 if (FLL->isExact())
2105 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002106 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002107 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2108 if (FLR->isExact())
2109 EmitWarning = false;
2110 }
2111 }
Mike Stump1eb44332009-09-09 15:08:12 +00002112
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002113 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002114 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002115 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002116 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002117 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002118
Sebastian Redl0eb23302009-01-19 00:08:26 +00002119 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002120 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002121 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002122 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002123
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002124 // Emit the diagnostic.
2125 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002126 Diag(loc, diag::warn_floatingpoint_eq)
2127 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002128}
John McCallba26e582010-01-04 23:21:16 +00002129
John McCallf2370c92010-01-06 05:24:50 +00002130//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2131//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00002132
John McCallf2370c92010-01-06 05:24:50 +00002133namespace {
John McCallba26e582010-01-04 23:21:16 +00002134
John McCallf2370c92010-01-06 05:24:50 +00002135/// Structure recording the 'active' range of an integer-valued
2136/// expression.
2137struct IntRange {
2138 /// The number of bits active in the int.
2139 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00002140
John McCallf2370c92010-01-06 05:24:50 +00002141 /// True if the int is known not to have negative values.
2142 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00002143
John McCallf2370c92010-01-06 05:24:50 +00002144 IntRange(unsigned Width, bool NonNegative)
2145 : Width(Width), NonNegative(NonNegative)
2146 {}
John McCallba26e582010-01-04 23:21:16 +00002147
John McCallf2370c92010-01-06 05:24:50 +00002148 // Returns the range of the bool type.
2149 static IntRange forBoolType() {
2150 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00002151 }
2152
John McCallf2370c92010-01-06 05:24:50 +00002153 // Returns the range of an integral type.
2154 static IntRange forType(ASTContext &C, QualType T) {
2155 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00002156 }
2157
John McCallf2370c92010-01-06 05:24:50 +00002158 // Returns the range of an integeral type based on its canonical
2159 // representation.
2160 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2161 assert(T->isCanonicalUnqualified());
2162
2163 if (const VectorType *VT = dyn_cast<VectorType>(T))
2164 T = VT->getElementType().getTypePtr();
2165 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2166 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00002167
2168 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2169 EnumDecl *Enum = ET->getDecl();
2170 unsigned NumPositive = Enum->getNumPositiveBits();
2171 unsigned NumNegative = Enum->getNumNegativeBits();
2172
2173 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2174 }
John McCallf2370c92010-01-06 05:24:50 +00002175
2176 const BuiltinType *BT = cast<BuiltinType>(T);
2177 assert(BT->isInteger());
2178
2179 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2180 }
2181
2182 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002183 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00002184 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002185 L.NonNegative && R.NonNegative);
2186 }
2187
2188 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002189 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002190 return IntRange(std::min(L.Width, R.Width),
2191 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002192 }
2193};
2194
2195IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2196 if (value.isSigned() && value.isNegative())
2197 return IntRange(value.getMinSignedBits(), false);
2198
2199 if (value.getBitWidth() > MaxWidth)
2200 value.trunc(MaxWidth);
2201
2202 // isNonNegative() just checks the sign bit without considering
2203 // signedness.
2204 return IntRange(value.getActiveBits(), true);
2205}
2206
John McCall0acc3112010-01-06 22:57:21 +00002207IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002208 unsigned MaxWidth) {
2209 if (result.isInt())
2210 return GetValueRange(C, result.getInt(), MaxWidth);
2211
2212 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002213 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2214 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2215 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2216 R = IntRange::join(R, El);
2217 }
John McCallf2370c92010-01-06 05:24:50 +00002218 return R;
2219 }
2220
2221 if (result.isComplexInt()) {
2222 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2223 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2224 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002225 }
2226
2227 // This can happen with lossless casts to intptr_t of "based" lvalues.
2228 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002229 // FIXME: The only reason we need to pass the type in here is to get
2230 // the sign right on this one case. It would be nice if APValue
2231 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002232 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002233 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002234}
John McCallf2370c92010-01-06 05:24:50 +00002235
2236/// Pseudo-evaluate the given integer expression, estimating the
2237/// range of values it might take.
2238///
2239/// \param MaxWidth - the width to which the value will be truncated
2240IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2241 E = E->IgnoreParens();
2242
2243 // Try a full evaluation first.
2244 Expr::EvalResult result;
2245 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002246 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002247
2248 // I think we only want to look through implicit casts here; if the
2249 // user has an explicit widening cast, we should treat the value as
2250 // being of the new, wider type.
2251 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002252 if (CE->getCastKind() == CK_NoOp)
John McCallf2370c92010-01-06 05:24:50 +00002253 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2254
2255 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2256
John McCall2de56d12010-08-25 11:45:40 +00002257 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
2258 if (!isIntegerCast && CE->getCastKind() == CK_Unknown)
John McCall60fad452010-01-06 22:07:33 +00002259 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2260
John McCallf2370c92010-01-06 05:24:50 +00002261 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002262 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002263 return OutputTypeRange;
2264
2265 IntRange SubRange
2266 = GetExprRange(C, CE->getSubExpr(),
2267 std::min(MaxWidth, OutputTypeRange.Width));
2268
2269 // Bail out if the subexpr's range is as wide as the cast type.
2270 if (SubRange.Width >= OutputTypeRange.Width)
2271 return OutputTypeRange;
2272
2273 // Otherwise, we take the smaller width, and we're non-negative if
2274 // either the output type or the subexpr is.
2275 return IntRange(SubRange.Width,
2276 SubRange.NonNegative || OutputTypeRange.NonNegative);
2277 }
2278
2279 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2280 // If we can fold the condition, just take that operand.
2281 bool CondResult;
2282 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2283 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2284 : CO->getFalseExpr(),
2285 MaxWidth);
2286
2287 // Otherwise, conservatively merge.
2288 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2289 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2290 return IntRange::join(L, R);
2291 }
2292
2293 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2294 switch (BO->getOpcode()) {
2295
2296 // Boolean-valued operations are single-bit and positive.
John McCall2de56d12010-08-25 11:45:40 +00002297 case BO_LAnd:
2298 case BO_LOr:
2299 case BO_LT:
2300 case BO_GT:
2301 case BO_LE:
2302 case BO_GE:
2303 case BO_EQ:
2304 case BO_NE:
John McCallf2370c92010-01-06 05:24:50 +00002305 return IntRange::forBoolType();
2306
John McCallc0cd21d2010-02-23 19:22:29 +00002307 // The type of these compound assignments is the type of the LHS,
2308 // so the RHS is not necessarily an integer.
John McCall2de56d12010-08-25 11:45:40 +00002309 case BO_MulAssign:
2310 case BO_DivAssign:
2311 case BO_RemAssign:
2312 case BO_AddAssign:
2313 case BO_SubAssign:
John McCallc0cd21d2010-02-23 19:22:29 +00002314 return IntRange::forType(C, E->getType());
2315
John McCallf2370c92010-01-06 05:24:50 +00002316 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002317 case BO_PtrMemD:
2318 case BO_PtrMemI:
John McCallf2370c92010-01-06 05:24:50 +00002319 return IntRange::forType(C, E->getType());
2320
John McCall60fad452010-01-06 22:07:33 +00002321 // Bitwise-and uses the *infinum* of the two source ranges.
John McCall2de56d12010-08-25 11:45:40 +00002322 case BO_And:
2323 case BO_AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002324 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2325 GetExprRange(C, BO->getRHS(), MaxWidth));
2326
John McCallf2370c92010-01-06 05:24:50 +00002327 // Left shift gets black-listed based on a judgement call.
John McCall2de56d12010-08-25 11:45:40 +00002328 case BO_Shl:
John McCall3aae6092010-04-07 01:14:35 +00002329 // ...except that we want to treat '1 << (blah)' as logically
2330 // positive. It's an important idiom.
2331 if (IntegerLiteral *I
2332 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2333 if (I->getValue() == 1) {
2334 IntRange R = IntRange::forType(C, E->getType());
2335 return IntRange(R.Width, /*NonNegative*/ true);
2336 }
2337 }
2338 // fallthrough
2339
John McCall2de56d12010-08-25 11:45:40 +00002340 case BO_ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002341 return IntRange::forType(C, E->getType());
2342
John McCall60fad452010-01-06 22:07:33 +00002343 // Right shift by a constant can narrow its left argument.
John McCall2de56d12010-08-25 11:45:40 +00002344 case BO_Shr:
2345 case BO_ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002346 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2347
2348 // If the shift amount is a positive constant, drop the width by
2349 // that much.
2350 llvm::APSInt shift;
2351 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2352 shift.isNonNegative()) {
2353 unsigned zext = shift.getZExtValue();
2354 if (zext >= L.Width)
2355 L.Width = (L.NonNegative ? 0 : 1);
2356 else
2357 L.Width -= zext;
2358 }
2359
2360 return L;
2361 }
2362
2363 // Comma acts as its right operand.
John McCall2de56d12010-08-25 11:45:40 +00002364 case BO_Comma:
John McCallf2370c92010-01-06 05:24:50 +00002365 return GetExprRange(C, BO->getRHS(), MaxWidth);
2366
John McCall60fad452010-01-06 22:07:33 +00002367 // Black-list pointer subtractions.
John McCall2de56d12010-08-25 11:45:40 +00002368 case BO_Sub:
John McCallf2370c92010-01-06 05:24:50 +00002369 if (BO->getLHS()->getType()->isPointerType())
2370 return IntRange::forType(C, E->getType());
2371 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002372
John McCallf2370c92010-01-06 05:24:50 +00002373 default:
2374 break;
2375 }
2376
2377 // Treat every other operator as if it were closed on the
2378 // narrowest type that encompasses both operands.
2379 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2380 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2381 return IntRange::join(L, R);
2382 }
2383
2384 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2385 switch (UO->getOpcode()) {
2386 // Boolean-valued operations are white-listed.
John McCall2de56d12010-08-25 11:45:40 +00002387 case UO_LNot:
John McCallf2370c92010-01-06 05:24:50 +00002388 return IntRange::forBoolType();
2389
2390 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002391 case UO_Deref:
2392 case UO_AddrOf: // should be impossible
John McCallf2370c92010-01-06 05:24:50 +00002393 return IntRange::forType(C, E->getType());
2394
2395 default:
2396 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2397 }
2398 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002399
2400 if (dyn_cast<OffsetOfExpr>(E)) {
2401 IntRange::forType(C, E->getType());
2402 }
John McCallf2370c92010-01-06 05:24:50 +00002403
2404 FieldDecl *BitField = E->getBitField();
2405 if (BitField) {
2406 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2407 unsigned BitWidth = BitWidthAP.getZExtValue();
2408
2409 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2410 }
2411
2412 return IntRange::forType(C, E->getType());
2413}
John McCall51313c32010-01-04 23:31:57 +00002414
John McCall323ed742010-05-06 08:58:33 +00002415IntRange GetExprRange(ASTContext &C, Expr *E) {
2416 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2417}
2418
John McCall51313c32010-01-04 23:31:57 +00002419/// Checks whether the given value, which currently has the given
2420/// source semantics, has the same value when coerced through the
2421/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002422bool IsSameFloatAfterCast(const llvm::APFloat &value,
2423 const llvm::fltSemantics &Src,
2424 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002425 llvm::APFloat truncated = value;
2426
2427 bool ignored;
2428 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2429 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2430
2431 return truncated.bitwiseIsEqual(value);
2432}
2433
2434/// Checks whether the given value, which currently has the given
2435/// source semantics, has the same value when coerced through the
2436/// target semantics.
2437///
2438/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002439bool IsSameFloatAfterCast(const APValue &value,
2440 const llvm::fltSemantics &Src,
2441 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002442 if (value.isFloat())
2443 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2444
2445 if (value.isVector()) {
2446 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2447 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2448 return false;
2449 return true;
2450 }
2451
2452 assert(value.isComplexFloat());
2453 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2454 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2455}
2456
John McCallb4eb64d2010-10-08 02:01:28 +00002457void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
John McCall323ed742010-05-06 08:58:33 +00002458
Ted Kremeneke3b159c2010-09-23 21:43:44 +00002459static bool IsZero(Sema &S, Expr *E) {
2460 // Suppress cases where we are comparing against an enum constant.
2461 if (const DeclRefExpr *DR =
2462 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
2463 if (isa<EnumConstantDecl>(DR->getDecl()))
2464 return false;
2465
2466 // Suppress cases where the '0' value is expanded from a macro.
2467 if (E->getLocStart().isMacroID())
2468 return false;
2469
John McCall323ed742010-05-06 08:58:33 +00002470 llvm::APSInt Value;
2471 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2472}
2473
John McCall372e1032010-10-06 00:25:24 +00002474static bool HasEnumType(Expr *E) {
2475 // Strip off implicit integral promotions.
2476 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00002477 if (ICE->getCastKind() != CK_IntegralCast &&
2478 ICE->getCastKind() != CK_NoOp)
John McCall372e1032010-10-06 00:25:24 +00002479 break;
Argyrios Kyrtzidis63b57ae2010-10-07 21:52:18 +00002480 E = ICE->getSubExpr();
John McCall372e1032010-10-06 00:25:24 +00002481 }
2482
2483 return E->getType()->isEnumeralType();
2484}
2485
John McCall323ed742010-05-06 08:58:33 +00002486void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00002487 BinaryOperatorKind op = E->getOpcode();
2488 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002489 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00002490 << "< 0" << "false" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00002491 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002492 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002493 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00002494 << ">= 0" << "true" << HasEnumType(E->getLHS())
John McCall323ed742010-05-06 08:58:33 +00002495 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002496 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002497 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00002498 << "0 >" << "false" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00002499 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002500 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002501 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
John McCall372e1032010-10-06 00:25:24 +00002502 << "0 <=" << "true" << HasEnumType(E->getRHS())
John McCall323ed742010-05-06 08:58:33 +00002503 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2504 }
2505}
2506
2507/// Analyze the operands of the given comparison. Implements the
2508/// fallback case from AnalyzeComparison.
2509void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallb4eb64d2010-10-08 02:01:28 +00002510 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
2511 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCall323ed742010-05-06 08:58:33 +00002512}
John McCall51313c32010-01-04 23:31:57 +00002513
John McCallba26e582010-01-04 23:21:16 +00002514/// \brief Implements -Wsign-compare.
2515///
2516/// \param lex the left-hand expression
2517/// \param rex the right-hand expression
2518/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002519/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002520void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2521 // The type the comparison is being performed in.
2522 QualType T = E->getLHS()->getType();
2523 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2524 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002525
John McCall323ed742010-05-06 08:58:33 +00002526 // We don't do anything special if this isn't an unsigned integral
2527 // comparison: we're only interested in integral comparisons, and
2528 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregorf6094622010-07-23 15:58:24 +00002529 if (!T->hasUnsignedIntegerRepresentation())
John McCall323ed742010-05-06 08:58:33 +00002530 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002531
John McCall323ed742010-05-06 08:58:33 +00002532 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2533 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002534
John McCall323ed742010-05-06 08:58:33 +00002535 // Check to see if one of the (unmodified) operands is of different
2536 // signedness.
2537 Expr *signedOperand, *unsignedOperand;
Douglas Gregorf6094622010-07-23 15:58:24 +00002538 if (lex->getType()->hasSignedIntegerRepresentation()) {
2539 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00002540 "unsigned comparison between two signed integer expressions?");
2541 signedOperand = lex;
2542 unsignedOperand = rex;
Douglas Gregorf6094622010-07-23 15:58:24 +00002543 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCall323ed742010-05-06 08:58:33 +00002544 signedOperand = rex;
2545 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002546 } else {
John McCall323ed742010-05-06 08:58:33 +00002547 CheckTrivialUnsignedComparison(S, E);
2548 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002549 }
2550
John McCall323ed742010-05-06 08:58:33 +00002551 // Otherwise, calculate the effective range of the signed operand.
2552 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002553
John McCall323ed742010-05-06 08:58:33 +00002554 // Go ahead and analyze implicit conversions in the operands. Note
2555 // that we skip the implicit conversions on both sides.
John McCallb4eb64d2010-10-08 02:01:28 +00002556 AnalyzeImplicitConversions(S, lex, E->getOperatorLoc());
2557 AnalyzeImplicitConversions(S, rex, E->getOperatorLoc());
John McCallba26e582010-01-04 23:21:16 +00002558
John McCall323ed742010-05-06 08:58:33 +00002559 // If the signed range is non-negative, -Wsign-compare won't fire,
2560 // but we should still check for comparisons which are always true
2561 // or false.
2562 if (signedRange.NonNegative)
2563 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002564
2565 // For (in)equality comparisons, if the unsigned operand is a
2566 // constant which cannot collide with a overflowed signed operand,
2567 // then reinterpreting the signed operand as unsigned will not
2568 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002569 if (E->isEqualityOp()) {
2570 unsigned comparisonWidth = S.Context.getIntWidth(T);
2571 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002572
John McCall323ed742010-05-06 08:58:33 +00002573 // We should never be unable to prove that the unsigned operand is
2574 // non-negative.
2575 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2576
2577 if (unsignedRange.Width < comparisonWidth)
2578 return;
2579 }
2580
2581 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2582 << lex->getType() << rex->getType()
2583 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002584}
2585
John McCall51313c32010-01-04 23:31:57 +00002586/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCallb4eb64d2010-10-08 02:01:28 +00002587void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
2588 unsigned diag) {
2589 S.Diag(E->getExprLoc(), diag)
2590 << E->getType() << T << E->getSourceRange() << SourceRange(CContext);
John McCall51313c32010-01-04 23:31:57 +00002591}
2592
John McCall323ed742010-05-06 08:58:33 +00002593void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00002594 SourceLocation CC, bool *ICContext = 0) {
John McCall323ed742010-05-06 08:58:33 +00002595 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002596
John McCall323ed742010-05-06 08:58:33 +00002597 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2598 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2599 if (Source == Target) return;
2600 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002601
John McCallb4eb64d2010-10-08 02:01:28 +00002602 // If the conversion context location is invalid or instantiated
2603 // from a system macro, don't complain.
2604 if (CC.isInvalid() ||
2605 (CC.isMacroID() && S.Context.getSourceManager().isInSystemHeader(
2606 S.Context.getSourceManager().getSpellingLoc(CC))))
2607 return;
2608
John McCall51313c32010-01-04 23:31:57 +00002609 // Never diagnose implicit casts to bool.
2610 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2611 return;
2612
2613 // Strip vector types.
2614 if (isa<VectorType>(Source)) {
2615 if (!isa<VectorType>(Target))
John McCallb4eb64d2010-10-08 02:01:28 +00002616 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002617
2618 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2619 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2620 }
2621
2622 // Strip complex types.
2623 if (isa<ComplexType>(Source)) {
2624 if (!isa<ComplexType>(Target))
John McCallb4eb64d2010-10-08 02:01:28 +00002625 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002626
2627 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2628 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2629 }
2630
2631 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2632 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2633
2634 // If the source is floating point...
2635 if (SourceBT && SourceBT->isFloatingPoint()) {
2636 // ...and the target is floating point...
2637 if (TargetBT && TargetBT->isFloatingPoint()) {
2638 // ...then warn if we're dropping FP rank.
2639
2640 // Builtin FP kinds are ordered by increasing FP rank.
2641 if (SourceBT->getKind() > TargetBT->getKind()) {
2642 // Don't warn about float constants that are precisely
2643 // representable in the target type.
2644 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002645 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002646 // Value might be a float, a float vector, or a float complex.
2647 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002648 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2649 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002650 return;
2651 }
2652
John McCallb4eb64d2010-10-08 02:01:28 +00002653 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002654 }
2655 return;
2656 }
2657
2658 // If the target is integral, always warn.
2659 if ((TargetBT && TargetBT->isInteger()))
2660 // TODO: don't warn for integer values?
John McCallb4eb64d2010-10-08 02:01:28 +00002661 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002662
2663 return;
2664 }
2665
John McCallf2370c92010-01-06 05:24:50 +00002666 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002667 return;
2668
John McCall323ed742010-05-06 08:58:33 +00002669 IntRange SourceRange = GetExprRange(S.Context, E);
2670 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002671
2672 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002673 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2674 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002675 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallb4eb64d2010-10-08 02:01:28 +00002676 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
2677 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCall323ed742010-05-06 08:58:33 +00002678 }
2679
2680 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2681 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2682 SourceRange.Width == TargetRange.Width)) {
2683 unsigned DiagID = diag::warn_impcast_integer_sign;
2684
2685 // Traditionally, gcc has warned about this under -Wsign-compare.
2686 // We also want to warn about it in -Wconversion.
2687 // So if -Wconversion is off, use a completely identical diagnostic
2688 // in the sign-compare group.
2689 // The conditional-checking code will
2690 if (ICContext) {
2691 DiagID = diag::warn_impcast_integer_sign_conditional;
2692 *ICContext = true;
2693 }
2694
John McCallb4eb64d2010-10-08 02:01:28 +00002695 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002696 }
2697
2698 return;
2699}
2700
John McCall323ed742010-05-06 08:58:33 +00002701void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2702
2703void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
John McCallb4eb64d2010-10-08 02:01:28 +00002704 SourceLocation CC, bool &ICContext) {
John McCall323ed742010-05-06 08:58:33 +00002705 E = E->IgnoreParenImpCasts();
2706
2707 if (isa<ConditionalOperator>(E))
2708 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2709
John McCallb4eb64d2010-10-08 02:01:28 +00002710 AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00002711 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00002712 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCall323ed742010-05-06 08:58:33 +00002713 return;
2714}
2715
2716void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
John McCallb4eb64d2010-10-08 02:01:28 +00002717 SourceLocation CC = E->getQuestionLoc();
2718
2719 AnalyzeImplicitConversions(S, E->getCond(), CC);
John McCall323ed742010-05-06 08:58:33 +00002720
2721 bool Suspicious = false;
John McCallb4eb64d2010-10-08 02:01:28 +00002722 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
2723 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCall323ed742010-05-06 08:58:33 +00002724
2725 // If -Wconversion would have warned about either of the candidates
2726 // for a signedness conversion to the context type...
2727 if (!Suspicious) return;
2728
2729 // ...but it's currently ignored...
2730 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2731 return;
2732
2733 // ...and -Wsign-compare isn't...
2734 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2735 return;
2736
2737 // ...then check whether it would have warned about either of the
2738 // candidates for a signedness conversion to the condition type.
2739 if (E->getType() != T) {
2740 Suspicious = false;
2741 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
John McCallb4eb64d2010-10-08 02:01:28 +00002742 E->getType(), CC, &Suspicious);
John McCall323ed742010-05-06 08:58:33 +00002743 if (!Suspicious)
2744 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallb4eb64d2010-10-08 02:01:28 +00002745 E->getType(), CC, &Suspicious);
John McCall323ed742010-05-06 08:58:33 +00002746 if (!Suspicious)
2747 return;
2748 }
2749
2750 // If so, emit a diagnostic under -Wsign-compare.
2751 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2752 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2753 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2754 << lex->getType() << rex->getType()
2755 << lex->getSourceRange() << rex->getSourceRange();
2756}
2757
2758/// AnalyzeImplicitConversions - Find and report any interesting
2759/// implicit conversions in the given expression. There are a couple
2760/// of competing diagnostics here, -Wconversion and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00002761void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00002762 QualType T = OrigE->getType();
2763 Expr *E = OrigE->IgnoreParenImpCasts();
2764
2765 // For conditional operators, we analyze the arguments as if they
2766 // were being fed directly into the output.
2767 if (isa<ConditionalOperator>(E)) {
2768 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2769 CheckConditionalOperator(S, CO, T);
2770 return;
2771 }
2772
2773 // Go ahead and check any implicit conversions we might have skipped.
2774 // The non-canonical typecheck is just an optimization;
2775 // CheckImplicitConversion will filter out dead implicit conversions.
2776 if (E->getType() != T)
John McCallb4eb64d2010-10-08 02:01:28 +00002777 CheckImplicitConversion(S, E, T, CC);
John McCall323ed742010-05-06 08:58:33 +00002778
2779 // Now continue drilling into this expression.
2780
2781 // Skip past explicit casts.
2782 if (isa<ExplicitCastExpr>(E)) {
2783 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
John McCallb4eb64d2010-10-08 02:01:28 +00002784 return AnalyzeImplicitConversions(S, E, CC);
John McCall323ed742010-05-06 08:58:33 +00002785 }
2786
2787 // Do a somewhat different check with comparison operators.
2788 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2789 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2790
2791 // These break the otherwise-useful invariant below. Fortunately,
2792 // we don't really need to recurse into them, because any internal
2793 // expressions should have been analyzed already when they were
2794 // built into statements.
2795 if (isa<StmtExpr>(E)) return;
2796
2797 // Don't descend into unevaluated contexts.
2798 if (isa<SizeOfAlignOfExpr>(E)) return;
2799
2800 // Now just recurse over the expression's children.
John McCallb4eb64d2010-10-08 02:01:28 +00002801 CC = E->getExprLoc();
John McCall323ed742010-05-06 08:58:33 +00002802 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2803 I != IE; ++I)
John McCallb4eb64d2010-10-08 02:01:28 +00002804 AnalyzeImplicitConversions(S, cast<Expr>(*I), CC);
John McCall323ed742010-05-06 08:58:33 +00002805}
2806
2807} // end anonymous namespace
2808
2809/// Diagnoses "dangerous" implicit conversions within the given
2810/// expression (which is a full expression). Implements -Wconversion
2811/// and -Wsign-compare.
John McCallb4eb64d2010-10-08 02:01:28 +00002812///
2813/// \param CC the "context" location of the implicit conversion, i.e.
2814/// the most location of the syntactic entity requiring the implicit
2815/// conversion
2816void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCall323ed742010-05-06 08:58:33 +00002817 // Don't diagnose in unevaluated contexts.
2818 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2819 return;
2820
2821 // Don't diagnose for value- or type-dependent expressions.
2822 if (E->isTypeDependent() || E->isValueDependent())
2823 return;
2824
John McCallb4eb64d2010-10-08 02:01:28 +00002825 // This is not the right CC for (e.g.) a variable initialization.
2826 AnalyzeImplicitConversions(*this, E, CC);
John McCall323ed742010-05-06 08:58:33 +00002827}
2828
Mike Stumpf8c49212010-01-21 03:59:47 +00002829/// CheckParmsForFunctionDef - Check that the parameters of the given
2830/// function are appropriate for the definition of a function. This
2831/// takes care of any checks that cannot be performed on the
2832/// declaration itself, e.g., that the types of each of the function
2833/// parameters are complete.
2834bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2835 bool HasInvalidParm = false;
2836 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2837 ParmVarDecl *Param = FD->getParamDecl(p);
2838
2839 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2840 // function declarator that is part of a function definition of
2841 // that function shall not have incomplete type.
2842 //
2843 // This is also C++ [dcl.fct]p6.
2844 if (!Param->isInvalidDecl() &&
2845 RequireCompleteType(Param->getLocation(), Param->getType(),
2846 diag::err_typecheck_decl_incomplete_type)) {
2847 Param->setInvalidDecl();
2848 HasInvalidParm = true;
2849 }
2850
2851 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2852 // declaration of each parameter shall include an identifier.
2853 if (Param->getIdentifier() == 0 &&
2854 !Param->isImplicit() &&
2855 !getLangOptions().CPlusPlus)
2856 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002857
2858 // C99 6.7.5.3p12:
2859 // If the function declarator is not part of a definition of that
2860 // function, parameters may have incomplete type and may use the [*]
2861 // notation in their sequences of declarator specifiers to specify
2862 // variable length array types.
2863 QualType PType = Param->getOriginalType();
2864 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2865 if (AT->getSizeModifier() == ArrayType::Star) {
2866 // FIXME: This diagnosic should point the the '[*]' if source-location
2867 // information is added for it.
2868 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2869 }
2870 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002871 }
2872
2873 return HasInvalidParm;
2874}
John McCallb7f4ffe2010-08-12 21:44:57 +00002875
2876/// CheckCastAlign - Implements -Wcast-align, which warns when a
2877/// pointer cast increases the alignment requirements.
2878void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
2879 // This is actually a lot of work to potentially be doing on every
2880 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
2881 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align)
2882 == Diagnostic::Ignored)
2883 return;
2884
2885 // Ignore dependent types.
2886 if (T->isDependentType() || Op->getType()->isDependentType())
2887 return;
2888
2889 // Require that the destination be a pointer type.
2890 const PointerType *DestPtr = T->getAs<PointerType>();
2891 if (!DestPtr) return;
2892
2893 // If the destination has alignment 1, we're done.
2894 QualType DestPointee = DestPtr->getPointeeType();
2895 if (DestPointee->isIncompleteType()) return;
2896 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
2897 if (DestAlign.isOne()) return;
2898
2899 // Require that the source be a pointer type.
2900 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
2901 if (!SrcPtr) return;
2902 QualType SrcPointee = SrcPtr->getPointeeType();
2903
2904 // Whitelist casts from cv void*. We already implicitly
2905 // whitelisted casts to cv void*, since they have alignment 1.
2906 // Also whitelist casts involving incomplete types, which implicitly
2907 // includes 'void'.
2908 if (SrcPointee->isIncompleteType()) return;
2909
2910 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
2911 if (SrcAlign >= DestAlign) return;
2912
2913 Diag(TRange.getBegin(), diag::warn_cast_align)
2914 << Op->getType() << T
2915 << static_cast<unsigned>(SrcAlign.getQuantity())
2916 << static_cast<unsigned>(DestAlign.getQuantity())
2917 << TRange << Op->getSourceRange();
2918}
2919