blob: caef9fb9ed1ca059b125673f24899082c7cbac91 [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"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000035#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000036using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000037using namespace sema;
Chris Lattner59907c42007-08-10 20:18:51 +000038
Chris Lattner60800082009-02-18 17:49:48 +000039/// getLocationOfStringLiteralByte - Return a source location that points to the
40/// specified byte of the specified string literal.
41///
42/// Strings are amazingly complex. They can be formed from multiple tokens and
43/// can have escape sequences in them in addition to the usual trigraph and
44/// escaped newline business. This routine handles this complexity.
45///
46SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
47 unsigned ByteNo) const {
48 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000049
Chris Lattner60800082009-02-18 17:49:48 +000050 // Loop over all of the tokens in this string until we find the one that
51 // contains the byte we're looking for.
52 unsigned TokNo = 0;
53 while (1) {
54 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
55 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000056
Chris Lattner60800082009-02-18 17:49:48 +000057 // Get the spelling of the string so that we can get the data that makes up
58 // the string literal, not the identifier for the macro it is potentially
59 // expanded through.
60 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
61
62 // Re-lex the token to get its length and original spelling.
63 std::pair<FileID, unsigned> LocInfo =
64 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000065 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000066 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000067 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000068 return StrTokSpellingLoc;
69
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000070 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000071
Chris Lattner60800082009-02-18 17:49:48 +000072 // Create a langops struct and enable trigraphs. This is sufficient for
73 // relexing tokens.
74 LangOptions LangOpts;
75 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000076
Chris Lattner60800082009-02-18 17:49:48 +000077 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000078 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
79 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000080 Token TheTok;
81 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000082
Chris Lattner443e53c2009-02-18 19:26:42 +000083 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000084 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000085 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000086
Chris Lattner2197c962009-02-18 18:52:52 +000087 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000088 if (ByteNo < TokNumBytes ||
89 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000090 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000091 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
92 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000093
Chris Lattner719e6152009-02-18 19:21:10 +000094 // Now that we know the offset of the token in the spelling, use the
95 // preprocessor to get the offset in the original source.
96 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000097 }
Mike Stump1eb44332009-09-09 15:08:12 +000098
Chris Lattner60800082009-02-18 17:49:48 +000099 // Move to the next string token.
100 ++TokNo;
101 ByteNo -= TokNumBytes;
102 }
103}
104
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000105/// CheckablePrintfAttr - does a function call have a "printf" attribute
106/// and arguments that merit checking?
107bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
108 if (Format->getType() == "printf") return true;
109 if (Format->getType() == "printf0") {
110 // printf0 allows null "format" string; if so don't check format/args
111 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000112 // Does the index refer to the implicit object argument?
113 if (isa<CXXMemberCallExpr>(TheCall)) {
114 if (format_idx == 0)
115 return false;
116 --format_idx;
117 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000118 if (format_idx < TheCall->getNumArgs()) {
119 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000120 if (!Format->isNullPointerConstant(Context,
121 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000122 return true;
123 }
124 }
125 return false;
126}
Chris Lattner60800082009-02-18 17:49:48 +0000127
John McCall60d7b3a2010-08-24 06:29:42 +0000128ExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000129Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCall60d7b3a2010-08-24 06:29:42 +0000130 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000131
Anders Carlssond406bf02009-08-16 01:56:34 +0000132 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000133 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000134 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000135 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000136 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000137 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000138 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000139 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000140 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000141 if (SemaBuiltinVAStart(TheCall))
142 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000143 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000144 case Builtin::BI__builtin_isgreater:
145 case Builtin::BI__builtin_isgreaterequal:
146 case Builtin::BI__builtin_isless:
147 case Builtin::BI__builtin_islessequal:
148 case Builtin::BI__builtin_islessgreater:
149 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000150 if (SemaBuiltinUnorderedCompare(TheCall))
151 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000152 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000153 case Builtin::BI__builtin_fpclassify:
154 if (SemaBuiltinFPClassification(TheCall, 6))
155 return ExprError();
156 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000157 case Builtin::BI__builtin_isfinite:
158 case Builtin::BI__builtin_isinf:
159 case Builtin::BI__builtin_isinf_sign:
160 case Builtin::BI__builtin_isnan:
161 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000162 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000163 return ExprError();
164 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000165 case Builtin::BI__builtin_return_address:
Eric Christopher691ebc32010-04-17 02:26:23 +0000166 case Builtin::BI__builtin_frame_address: {
167 llvm::APSInt Result;
168 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000169 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000170 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000171 }
172 case Builtin::BI__builtin_eh_return_data_regno: {
173 llvm::APSInt Result;
174 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattner21fb98e2009-09-23 06:06:36 +0000175 return ExprError();
176 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000177 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000178 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000179 return SemaBuiltinShuffleVector(TheCall);
180 // TheCall will be freed by the smart pointer here, but that's fine, since
181 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000182 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000183 if (SemaBuiltinPrefetch(TheCall))
184 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000185 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000186 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000187 if (SemaBuiltinObjectSize(TheCall))
188 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000189 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000190 case Builtin::BI__builtin_longjmp:
191 if (SemaBuiltinLongjmp(TheCall))
192 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000193 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000194 case Builtin::BI__sync_fetch_and_add:
195 case Builtin::BI__sync_fetch_and_sub:
196 case Builtin::BI__sync_fetch_and_or:
197 case Builtin::BI__sync_fetch_and_and:
198 case Builtin::BI__sync_fetch_and_xor:
199 case Builtin::BI__sync_add_and_fetch:
200 case Builtin::BI__sync_sub_and_fetch:
201 case Builtin::BI__sync_and_and_fetch:
202 case Builtin::BI__sync_or_and_fetch:
203 case Builtin::BI__sync_xor_and_fetch:
204 case Builtin::BI__sync_val_compare_and_swap:
205 case Builtin::BI__sync_bool_compare_and_swap:
206 case Builtin::BI__sync_lock_test_and_set:
207 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000208 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000209 }
210
211 // Since the target specific builtins for each arch overlap, only check those
212 // of the arch we are compiling for.
213 if (BuiltinID >= Builtin::FirstTSBuiltin) {
214 switch (Context.Target.getTriple().getArch()) {
215 case llvm::Triple::arm:
216 case llvm::Triple::thumb:
217 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
218 return ExprError();
219 break;
220 case llvm::Triple::x86:
221 case llvm::Triple::x86_64:
222 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
223 return ExprError();
224 break;
225 default:
226 break;
227 }
228 }
229
230 return move(TheCallResult);
231}
232
233bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
234 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000235 case X86::BI__builtin_ia32_palignr128:
236 case X86::BI__builtin_ia32_palignr: {
237 llvm::APSInt Result;
238 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000239 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000240 break;
241 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000242 }
Nate Begeman26a31422010-06-08 02:47:44 +0000243 return false;
244}
Mike Stump1eb44332009-09-09 15:08:12 +0000245
Nate Begeman61eecf52010-06-14 05:21:25 +0000246// Get the valid immediate range for the specified NEON type code.
247static unsigned RFT(unsigned t, bool shift = false) {
248 bool quad = t & 0x10;
249
250 switch (t & 0x7) {
251 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000252 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000253 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000254 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000255 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000256 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000257 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000258 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000259 case 4: // f32
260 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000261 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000262 case 5: // poly8
263 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000264 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000265 case 6: // poly16
266 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000267 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000268 case 7: // float16
269 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000270 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000271 }
272 return 0;
273}
274
Nate Begeman26a31422010-06-08 02:47:44 +0000275bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000276 llvm::APSInt Result;
277
Nate Begeman0d15c532010-06-13 04:47:52 +0000278 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000279 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000280 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000281#define GET_NEON_OVERLOAD_CHECK
282#include "clang/Basic/arm_neon.inc"
283#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000284 }
285
Nate Begeman0d15c532010-06-13 04:47:52 +0000286 // For NEON intrinsics which are overloaded on vector element type, validate
287 // the immediate which specifies which variant to emit.
288 if (mask) {
289 unsigned ArgNo = TheCall->getNumArgs()-1;
290 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
291 return true;
292
Nate Begeman61eecf52010-06-14 05:21:25 +0000293 TV = Result.getLimitedValue(32);
294 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000295 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
296 << TheCall->getArg(ArgNo)->getSourceRange();
297 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000298
Nate Begeman0d15c532010-06-13 04:47:52 +0000299 // For NEON intrinsics which take an immediate value as part of the
300 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000301 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000302 switch (BuiltinID) {
303 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000304 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
305 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000306 case ARM::BI__builtin_arm_vcvtr_f:
307 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000308#define GET_NEON_IMMEDIATE_CHECK
309#include "clang/Basic/arm_neon.inc"
310#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000311 };
312
Nate Begeman61eecf52010-06-14 05:21:25 +0000313 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000314 if (SemaBuiltinConstantArg(TheCall, i, Result))
315 return true;
316
Nate Begeman61eecf52010-06-14 05:21:25 +0000317 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000318 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000319 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000320 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000321 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000322
Nate Begeman99c40bb2010-08-03 21:32:34 +0000323 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000324 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000325}
Daniel Dunbarde454282008-10-02 18:44:07 +0000326
Anders Carlssond406bf02009-08-16 01:56:34 +0000327/// CheckFunctionCall - Check a direct function call for various correctness
328/// and safety properties not strictly enforced by the C type system.
329bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
330 // Get the IdentifierInfo* for the called function.
331 IdentifierInfo *FnInfo = FDecl->getIdentifier();
332
333 // None of the checks below are needed for functions that don't have
334 // simple names (e.g., C++ conversion functions).
335 if (!FnInfo)
336 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Daniel Dunbarde454282008-10-02 18:44:07 +0000338 // FIXME: This mechanism should be abstracted to be less fragile and
339 // more efficient. For example, just map function ids to custom
340 // handlers.
341
Chris Lattner59907c42007-08-10 20:18:51 +0000342 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000343 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ted Kremenek826a3452010-07-16 02:11:22 +0000344 const bool b = Format->getType() == "scanf";
345 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000346 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000347 CheckPrintfScanfArguments(TheCall, HasVAListArg,
348 Format->getFormatIdx() - 1,
349 HasVAListArg ? 0 : Format->getFirstArg() - 1,
350 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000351 }
Chris Lattner59907c42007-08-10 20:18:51 +0000352 }
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Sean Huntcf807c42010-08-18 23:23:40 +0000354 specific_attr_iterator<NonNullAttr>
355 i = FDecl->specific_attr_begin<NonNullAttr>(),
356 e = FDecl->specific_attr_end<NonNullAttr>();
357
358 for (; i != e; ++i)
359 CheckNonNullArguments(*i, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000360
Anders Carlssond406bf02009-08-16 01:56:34 +0000361 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000362}
363
Anders Carlssond406bf02009-08-16 01:56:34 +0000364bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000365 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000366 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000367 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000368 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000370 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
371 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000372 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000374 QualType Ty = V->getType();
375 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000376 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000377
Ted Kremenek826a3452010-07-16 02:11:22 +0000378 const bool b = Format->getType() == "scanf";
379 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000380 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Anders Carlssond406bf02009-08-16 01:56:34 +0000382 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000383 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
384 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000385
386 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000387}
388
Chris Lattner5caa3702009-05-08 06:58:22 +0000389/// SemaBuiltinAtomicOverloaded - We have a call to a function like
390/// __sync_fetch_and_add, which is an overloaded function based on the pointer
391/// type of its first argument. The main ActOnCallExpr routines have already
392/// promoted the types of arguments because all of these calls are prototyped as
393/// void(...).
394///
395/// This function goes through and does final semantic checking for these
396/// builtins,
John McCall60d7b3a2010-08-24 06:29:42 +0000397ExprResult
398Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000399 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000400 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
401 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
402
403 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000404 if (TheCall->getNumArgs() < 1) {
405 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
406 << 0 << 1 << TheCall->getNumArgs()
407 << TheCall->getCallee()->getSourceRange();
408 return ExprError();
409 }
Mike Stump1eb44332009-09-09 15:08:12 +0000410
Chris Lattner5caa3702009-05-08 06:58:22 +0000411 // Inspect the first argument of the atomic builtin. This should always be
412 // a pointer type, whose element is an integral scalar or pointer type.
413 // Because it is a pointer type, we don't have to worry about any implicit
414 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000415 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000416 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000417 if (!FirstArg->getType()->isPointerType()) {
418 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
419 << FirstArg->getType() << FirstArg->getSourceRange();
420 return ExprError();
421 }
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Chandler Carruthd2014572010-07-09 18:59:35 +0000423 QualType ValType =
424 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000425 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000426 !ValType->isBlockPointerType()) {
427 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
428 << FirstArg->getType() << FirstArg->getSourceRange();
429 return ExprError();
430 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000431
Chandler Carruth8d13d222010-07-18 20:54:12 +0000432 // The majority of builtins return a value, but a few have special return
433 // types, so allow them to override appropriately below.
434 QualType ResultType = ValType;
435
Chris Lattner5caa3702009-05-08 06:58:22 +0000436 // We need to figure out which concrete builtin this maps onto. For example,
437 // __sync_fetch_and_add with a 2 byte object turns into
438 // __sync_fetch_and_add_2.
439#define BUILTIN_ROW(x) \
440 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
441 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000442
Chris Lattner5caa3702009-05-08 06:58:22 +0000443 static const unsigned BuiltinIndices[][5] = {
444 BUILTIN_ROW(__sync_fetch_and_add),
445 BUILTIN_ROW(__sync_fetch_and_sub),
446 BUILTIN_ROW(__sync_fetch_and_or),
447 BUILTIN_ROW(__sync_fetch_and_and),
448 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000449
Chris Lattner5caa3702009-05-08 06:58:22 +0000450 BUILTIN_ROW(__sync_add_and_fetch),
451 BUILTIN_ROW(__sync_sub_and_fetch),
452 BUILTIN_ROW(__sync_and_and_fetch),
453 BUILTIN_ROW(__sync_or_and_fetch),
454 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Chris Lattner5caa3702009-05-08 06:58:22 +0000456 BUILTIN_ROW(__sync_val_compare_and_swap),
457 BUILTIN_ROW(__sync_bool_compare_and_swap),
458 BUILTIN_ROW(__sync_lock_test_and_set),
459 BUILTIN_ROW(__sync_lock_release)
460 };
Mike Stump1eb44332009-09-09 15:08:12 +0000461#undef BUILTIN_ROW
462
Chris Lattner5caa3702009-05-08 06:58:22 +0000463 // Determine the index of the size.
464 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000465 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000466 case 1: SizeIndex = 0; break;
467 case 2: SizeIndex = 1; break;
468 case 4: SizeIndex = 2; break;
469 case 8: SizeIndex = 3; break;
470 case 16: SizeIndex = 4; break;
471 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000472 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
473 << FirstArg->getType() << FirstArg->getSourceRange();
474 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000475 }
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Chris Lattner5caa3702009-05-08 06:58:22 +0000477 // Each of these builtins has one pointer argument, followed by some number of
478 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
479 // that we ignore. Find out which row of BuiltinIndices to read from as well
480 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000481 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000482 unsigned BuiltinIndex, NumFixed = 1;
483 switch (BuiltinID) {
484 default: assert(0 && "Unknown overloaded atomic builtin!");
485 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
486 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
487 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
488 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
489 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000491 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
492 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
493 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
494 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
495 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Chris Lattner5caa3702009-05-08 06:58:22 +0000497 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000498 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000499 NumFixed = 2;
500 break;
501 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000502 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000503 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000504 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000505 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000506 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000507 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000508 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000509 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000510 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000511 break;
512 }
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Chris Lattner5caa3702009-05-08 06:58:22 +0000514 // Now that we know how many fixed arguments we expect, first check that we
515 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000516 if (TheCall->getNumArgs() < 1+NumFixed) {
517 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
518 << 0 << 1+NumFixed << TheCall->getNumArgs()
519 << TheCall->getCallee()->getSourceRange();
520 return ExprError();
521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000523 // Get the decl for the concrete builtin from this, we can tell what the
524 // concrete integer type we should convert to is.
525 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
526 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
527 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000528 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000529 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
530 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000531
John McCallf871d0c2010-08-07 06:22:56 +0000532 // The first argument --- the pointer --- has a fixed type; we
533 // deduce the types of the rest of the arguments accordingly. Walk
534 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000535 for (unsigned i = 0; i != NumFixed; ++i) {
536 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Chris Lattner5caa3702009-05-08 06:58:22 +0000538 // If the argument is an implicit cast, then there was a promotion due to
539 // "...", just remove it now.
540 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
541 Arg = ICE->getSubExpr();
542 ICE->setSubExpr(0);
Chris Lattner5caa3702009-05-08 06:58:22 +0000543 TheCall->setArg(i+1, Arg);
544 }
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Chris Lattner5caa3702009-05-08 06:58:22 +0000546 // GCC does an implicit conversion to the pointer or integer ValType. This
547 // can fail in some cases (1i -> int**), check for this error case now.
John McCall2de56d12010-08-25 11:45:40 +0000548 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000549 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000550 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000551 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattner5caa3702009-05-08 06:58:22 +0000553 // Okay, we have something that *can* be converted to the right type. Check
554 // to see if there is a potentially weird extension going on here. This can
555 // happen when you do an atomic operation on something like an char* and
556 // pass in 42. The 42 gets converted to char. This is even more strange
557 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000558 // FIXME: Do this check.
John McCall5baba9d2010-08-25 10:28:54 +0000559 ImpCastExprToType(Arg, ValType, Kind, VK_RValue, &BasePath);
Chris Lattner5caa3702009-05-08 06:58:22 +0000560 TheCall->setArg(i+1, Arg);
561 }
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Chris Lattner5caa3702009-05-08 06:58:22 +0000563 // Switch the DeclRefExpr to refer to the new decl.
564 DRE->setDecl(NewBuiltinDecl);
565 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Chris Lattner5caa3702009-05-08 06:58:22 +0000567 // Set the callee in the CallExpr.
568 // FIXME: This leaks the original parens and implicit casts.
569 Expr *PromotedCall = DRE;
570 UsualUnaryConversions(PromotedCall);
571 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000572
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000573 // Change the result type of the call to match the original value type. This
574 // is arbitrary, but the codegen for these builtins ins design to handle it
575 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000576 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000577
578 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000579}
580
581
Chris Lattner69039812009-02-18 06:01:06 +0000582/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000583/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000584/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000585/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000586/// belong to the input codeset UTF-8"
587/// Note: It might also make sense to do the UTF-16 conversion here (would
588/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000589bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000590 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000591 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
592
593 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000594 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
595 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000596 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000597 }
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +0000599 size_t NulPos = Literal->getString().find('\0');
600 if (NulPos != llvm::StringRef::npos) {
601 Diag(getLocationOfStringLiteralByte(Literal, NulPos),
602 diag::warn_cfstring_literal_contains_nul_character)
603 << Arg->getSourceRange();
Daniel Dunbarf015b032009-09-22 10:03:52 +0000604 }
Mike Stump1eb44332009-09-09 15:08:12 +0000605
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000606 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000607}
608
Chris Lattnerc27c6652007-12-20 00:05:45 +0000609/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
610/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000611bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
612 Expr *Fn = TheCall->getCallee();
613 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000614 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000615 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000616 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
617 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000618 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000619 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000620 return true;
621 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000622
623 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000624 return Diag(TheCall->getLocEnd(),
625 diag::err_typecheck_call_too_few_args_at_least)
626 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000627 }
628
Chris Lattnerc27c6652007-12-20 00:05:45 +0000629 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000630 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000631 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000632 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000633 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000634 else if (FunctionDecl *FD = getCurFunctionDecl())
635 isVariadic = FD->isVariadic();
636 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000637 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattnerc27c6652007-12-20 00:05:45 +0000639 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000640 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
641 return true;
642 }
Mike Stump1eb44332009-09-09 15:08:12 +0000643
Chris Lattner30ce3442007-12-19 23:59:04 +0000644 // Verify that the second argument to the builtin is the last argument of the
645 // current function or method.
646 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000647 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Anders Carlsson88cf2262008-02-11 04:20:54 +0000649 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
650 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000651 // FIXME: This isn't correct for methods (results in bogus warning).
652 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000653 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000654 if (CurBlock)
655 LastArg = *(CurBlock->TheDecl->param_end()-1);
656 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000657 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000658 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000659 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000660 SecondArgIsLastNamedArgument = PV == LastArg;
661 }
662 }
Mike Stump1eb44332009-09-09 15:08:12 +0000663
Chris Lattner30ce3442007-12-19 23:59:04 +0000664 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000665 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000666 diag::warn_second_parameter_of_va_start_not_last_named_argument);
667 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000668}
Chris Lattner30ce3442007-12-19 23:59:04 +0000669
Chris Lattner1b9a0792007-12-20 00:26:33 +0000670/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
671/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000672bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
673 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000674 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000675 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000676 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000677 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000678 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000679 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000680 << SourceRange(TheCall->getArg(2)->getLocStart(),
681 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000682
Chris Lattner925e60d2007-12-28 05:29:59 +0000683 Expr *OrigArg0 = TheCall->getArg(0);
684 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000685
Chris Lattner1b9a0792007-12-20 00:26:33 +0000686 // Do standard promotions between the two arguments, returning their common
687 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000688 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000689
690 // Make sure any conversions are pushed back into the call; this is
691 // type safe since unordered compare builtins are declared as "_Bool
692 // foo(...)".
693 TheCall->setArg(0, OrigArg0);
694 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Douglas Gregorcde01732009-05-19 22:10:17 +0000696 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
697 return false;
698
Chris Lattner1b9a0792007-12-20 00:26:33 +0000699 // If the common type isn't a real floating type, then the arguments were
700 // invalid for this operation.
701 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000702 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000703 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000704 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000705 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000706
Chris Lattner1b9a0792007-12-20 00:26:33 +0000707 return false;
708}
709
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000710/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
711/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000712/// to check everything. We expect the last argument to be a floating point
713/// value.
714bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
715 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000716 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000717 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000718 if (TheCall->getNumArgs() > NumArgs)
719 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000720 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000721 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000722 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000723 (*(TheCall->arg_end()-1))->getLocEnd());
724
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000725 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Eli Friedman9ac6f622009-08-31 20:06:00 +0000727 if (OrigArg->isTypeDependent())
728 return false;
729
Chris Lattner81368fb2010-05-06 05:50:07 +0000730 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000731 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000732 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000733 diag::err_typecheck_call_invalid_unary_fp)
734 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Chris Lattner81368fb2010-05-06 05:50:07 +0000736 // If this is an implicit conversion from float -> double, remove it.
737 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
738 Expr *CastArg = Cast->getSubExpr();
739 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
740 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
741 "promotion from float to double is the only expected cast here");
742 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +0000743 TheCall->setArg(NumArgs-1, CastArg);
744 OrigArg = CastArg;
745 }
746 }
747
Eli Friedman9ac6f622009-08-31 20:06:00 +0000748 return false;
749}
750
Eli Friedmand38617c2008-05-14 19:38:39 +0000751/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
752// This is declared to take (...), so we have to check everything.
John McCall60d7b3a2010-08-24 06:29:42 +0000753ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000754 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000755 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000756 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000757 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000758 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000759
Nate Begeman37b6a572010-06-08 00:16:34 +0000760 // Determine which of the following types of shufflevector we're checking:
761 // 1) unary, vector mask: (lhs, mask)
762 // 2) binary, vector mask: (lhs, rhs, mask)
763 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
764 QualType resType = TheCall->getArg(0)->getType();
765 unsigned numElements = 0;
766
Douglas Gregorcde01732009-05-19 22:10:17 +0000767 if (!TheCall->getArg(0)->isTypeDependent() &&
768 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000769 QualType LHSType = TheCall->getArg(0)->getType();
770 QualType RHSType = TheCall->getArg(1)->getType();
771
772 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000773 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000774 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000775 TheCall->getArg(1)->getLocEnd());
776 return ExprError();
777 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000778
779 numElements = LHSType->getAs<VectorType>()->getNumElements();
780 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Nate Begeman37b6a572010-06-08 00:16:34 +0000782 // Check to see if we have a call with 2 vector arguments, the unary shuffle
783 // with mask. If so, verify that RHS is an integer vector type with the
784 // same number of elts as lhs.
785 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +0000786 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +0000787 RHSType->getAs<VectorType>()->getNumElements() != numElements)
788 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
789 << SourceRange(TheCall->getArg(1)->getLocStart(),
790 TheCall->getArg(1)->getLocEnd());
791 numResElements = numElements;
792 }
793 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000794 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000795 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000796 TheCall->getArg(1)->getLocEnd());
797 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000798 } else if (numElements != numResElements) {
799 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000800 resType = Context.getVectorType(eltType, numResElements,
801 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000802 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000803 }
804
805 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000806 if (TheCall->getArg(i)->isTypeDependent() ||
807 TheCall->getArg(i)->isValueDependent())
808 continue;
809
Nate Begeman37b6a572010-06-08 00:16:34 +0000810 llvm::APSInt Result(32);
811 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
812 return ExprError(Diag(TheCall->getLocStart(),
813 diag::err_shufflevector_nonconstant_argument)
814 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000815
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000816 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000817 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000818 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000819 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000820 }
821
822 llvm::SmallVector<Expr*, 32> exprs;
823
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000824 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000825 exprs.push_back(TheCall->getArg(i));
826 TheCall->setArg(i, 0);
827 }
828
Nate Begemana88dc302009-08-12 02:10:25 +0000829 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000830 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000831 TheCall->getCallee()->getLocStart(),
832 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000833}
Chris Lattner30ce3442007-12-19 23:59:04 +0000834
Daniel Dunbar4493f792008-07-21 22:59:13 +0000835/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
836// This is declared to take (const void*, ...) and can take two
837// optional constant int args.
838bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000839 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000840
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000841 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000842 return Diag(TheCall->getLocEnd(),
843 diag::err_typecheck_call_too_many_args_at_most)
844 << 0 /*function call*/ << 3 << NumArgs
845 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000846
847 // Argument 0 is checked for us and the remaining arguments must be
848 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000849 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000850 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000851
Eli Friedman9aef7262009-12-04 00:30:06 +0000852 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000853 if (SemaBuiltinConstantArg(TheCall, i, Result))
854 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Daniel Dunbar4493f792008-07-21 22:59:13 +0000856 // FIXME: gcc issues a warning and rewrites these to 0. These
857 // seems especially odd for the third argument since the default
858 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000859 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000860 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000861 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000862 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000863 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000864 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000865 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000866 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000867 }
868 }
869
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000870 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000871}
872
Eric Christopher691ebc32010-04-17 02:26:23 +0000873/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
874/// TheCall is a constant expression.
875bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
876 llvm::APSInt &Result) {
877 Expr *Arg = TheCall->getArg(ArgNum);
878 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
879 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
880
881 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
882
883 if (!Arg->isIntegerConstantExpr(Result, Context))
884 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000885 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000886
Chris Lattner21fb98e2009-09-23 06:06:36 +0000887 return false;
888}
889
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000890/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
891/// int type). This simply type checks that type is one of the defined
892/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000893// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000894bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000895 llvm::APSInt Result;
896
897 // Check constant-ness first.
898 if (SemaBuiltinConstantArg(TheCall, 1, Result))
899 return true;
900
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000901 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000902 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000903 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
904 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000905 }
906
907 return false;
908}
909
Eli Friedman586d6a82009-05-03 06:04:26 +0000910/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000911/// This checks that val is a constant 1.
912bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
913 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000914 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000915
Eric Christopher691ebc32010-04-17 02:26:23 +0000916 // TODO: This is less than ideal. Overload this to take a value.
917 if (SemaBuiltinConstantArg(TheCall, 1, Result))
918 return true;
919
920 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000921 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
922 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
923
924 return false;
925}
926
Ted Kremenekd30ef872009-01-12 23:09:09 +0000927// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000928bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
929 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000930 unsigned format_idx, unsigned firstDataArg,
931 bool isPrintf) {
932
Douglas Gregorcde01732009-05-19 22:10:17 +0000933 if (E->isTypeDependent() || E->isValueDependent())
934 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000935
936 switch (E->getStmtClass()) {
937 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000938 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +0000939 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
940 format_idx, firstDataArg, isPrintf)
941 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
942 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000943 }
944
945 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000946 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000947 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000948 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000949 }
950
951 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000952 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000953 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000954 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000955 }
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Ted Kremenek082d9362009-03-20 21:35:28 +0000957 case Stmt::DeclRefExprClass: {
958 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000959
Ted Kremenek082d9362009-03-20 21:35:28 +0000960 // As an exception, do not flag errors for variables binding to
961 // const string literals.
962 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
963 bool isConstant = false;
964 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000965
Ted Kremenek082d9362009-03-20 21:35:28 +0000966 if (const ArrayType *AT = Context.getAsArrayType(T)) {
967 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000968 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000969 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000970 PT->getPointeeType().isConstant(Context);
971 }
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Ted Kremenek082d9362009-03-20 21:35:28 +0000973 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000974 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000975 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +0000976 HasVAListArg, format_idx, firstDataArg,
977 isPrintf);
Ted Kremenek082d9362009-03-20 21:35:28 +0000978 }
Mike Stump1eb44332009-09-09 15:08:12 +0000979
Anders Carlssond966a552009-06-28 19:55:58 +0000980 // For vprintf* functions (i.e., HasVAListArg==true), we add a
981 // special check to see if the format string is a function parameter
982 // of the function calling the printf function. If the function
983 // has an attribute indicating it is a printf-like function, then we
984 // should suppress warnings concerning non-literals being used in a call
985 // to a vprintf function. For example:
986 //
987 // void
988 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
989 // va_list ap;
990 // va_start(ap, fmt);
991 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
992 // ...
993 //
994 //
995 // FIXME: We don't have full attribute support yet, so just check to see
996 // if the argument is a DeclRefExpr that references a parameter. We'll
997 // add proper support for checking the attribute later.
998 if (HasVAListArg)
999 if (isa<ParmVarDecl>(VD))
1000 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001001 }
Mike Stump1eb44332009-09-09 15:08:12 +00001002
Ted Kremenek082d9362009-03-20 21:35:28 +00001003 return false;
1004 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001005
Anders Carlsson8f031b32009-06-27 04:05:33 +00001006 case Stmt::CallExprClass: {
1007 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001008 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001009 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1010 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1011 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001012 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001013 unsigned ArgIndex = FA->getFormatIdx();
1014 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001015
1016 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001017 format_idx, firstDataArg, isPrintf);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001018 }
1019 }
1020 }
1021 }
Mike Stump1eb44332009-09-09 15:08:12 +00001022
Anders Carlsson8f031b32009-06-27 04:05:33 +00001023 return false;
1024 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001025 case Stmt::ObjCStringLiteralClass:
1026 case Stmt::StringLiteralClass: {
1027 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001028
Ted Kremenek082d9362009-03-20 21:35:28 +00001029 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001030 StrE = ObjCFExpr->getString();
1031 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001032 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Ted Kremenekd30ef872009-01-12 23:09:09 +00001034 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001035 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1036 firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001037 return true;
1038 }
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Ted Kremenekd30ef872009-01-12 23:09:09 +00001040 return false;
1041 }
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Ted Kremenek082d9362009-03-20 21:35:28 +00001043 default:
1044 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001045 }
1046}
1047
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001048void
Mike Stump1eb44332009-09-09 15:08:12 +00001049Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1050 const CallExpr *TheCall) {
Sean Huntcf807c42010-08-18 23:23:40 +00001051 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1052 e = NonNull->args_end();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001053 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001054 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001055 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001056 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001057 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1058 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001059 }
1060}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001061
Ted Kremenek826a3452010-07-16 02:11:22 +00001062/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1063/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001064void
Ted Kremenek826a3452010-07-16 02:11:22 +00001065Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1066 unsigned format_idx, unsigned firstDataArg,
1067 bool isPrintf) {
1068
Ted Kremenek082d9362009-03-20 21:35:28 +00001069 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001070
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001071 // The way the format attribute works in GCC, the implicit this argument
1072 // of member functions is counted. However, it doesn't appear in our own
1073 // lists, so decrement format_idx in that case.
1074 if (isa<CXXMemberCallExpr>(TheCall)) {
1075 // Catch a format attribute mistakenly referring to the object argument.
1076 if (format_idx == 0)
1077 return;
1078 --format_idx;
1079 if(firstDataArg != 0)
1080 --firstDataArg;
1081 }
1082
Ted Kremenek826a3452010-07-16 02:11:22 +00001083 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001084 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001085 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001086 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001087 return;
1088 }
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Ted Kremenek082d9362009-03-20 21:35:28 +00001090 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001091
Chris Lattner59907c42007-08-10 20:18:51 +00001092 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001093 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001094 // Dynamically generated format strings are difficult to
1095 // automatically vet at compile time. Requiring that format strings
1096 // are string literals: (1) permits the checking of format strings by
1097 // the compiler and thereby (2) can practically remove the source of
1098 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001099
Mike Stump1eb44332009-09-09 15:08:12 +00001100 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001101 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001102 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001103 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001104 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001105 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001106 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001107
Chris Lattner655f1412009-04-29 04:59:47 +00001108 // If there are no arguments specified, warn with -Wformat-security, otherwise
1109 // warn only with -Wformat-nonliteral.
1110 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001111 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001112 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001113 << OrigFormatExpr->getSourceRange();
1114 else
Mike Stump1eb44332009-09-09 15:08:12 +00001115 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001116 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001117 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001118}
Ted Kremenek71895b92007-08-14 17:39:48 +00001119
Ted Kremeneke0e53132010-01-28 23:39:18 +00001120namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001121class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1122protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001123 Sema &S;
1124 const StringLiteral *FExpr;
1125 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001126 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001127 const unsigned NumDataArgs;
1128 const bool IsObjCLiteral;
1129 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001130 const bool HasVAListArg;
1131 const CallExpr *TheCall;
1132 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001133 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001134 bool usesPositionalArgs;
1135 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001136public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001137 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001138 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001139 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001140 const char *beg, bool hasVAListArg,
1141 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001142 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001143 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001144 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001145 IsObjCLiteral(isObjCLiteral), Beg(beg),
1146 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001147 TheCall(theCall), FormatIdx(formatIdx),
1148 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001149 CoveredArgs.resize(numDataArgs);
1150 CoveredArgs.reset();
1151 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001152
Ted Kremenek07d161f2010-01-29 01:50:07 +00001153 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001154
Ted Kremenek826a3452010-07-16 02:11:22 +00001155 void HandleIncompleteSpecifier(const char *startSpecifier,
1156 unsigned specifierLen);
1157
Ted Kremenekefaff192010-02-27 01:41:03 +00001158 virtual void HandleInvalidPosition(const char *startSpecifier,
1159 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001160 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001161
1162 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1163
Ted Kremeneke0e53132010-01-28 23:39:18 +00001164 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001165
Ted Kremenek826a3452010-07-16 02:11:22 +00001166protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001167 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1168 const char *startSpec,
1169 unsigned specifierLen,
1170 const char *csStart, unsigned csLen);
1171
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001172 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001173 CharSourceRange getSpecifierRange(const char *startSpecifier,
1174 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001175 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001176
Ted Kremenek0d277352010-01-29 01:06:55 +00001177 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001178
1179 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1180 const analyze_format_string::ConversionSpecifier &CS,
1181 const char *startSpecifier, unsigned specifierLen,
1182 unsigned argIndex);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001183};
1184}
1185
Ted Kremenek826a3452010-07-16 02:11:22 +00001186SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001187 return OrigFormatExpr->getSourceRange();
1188}
1189
Ted Kremenek826a3452010-07-16 02:11:22 +00001190CharSourceRange CheckFormatHandler::
1191getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001192 SourceLocation Start = getLocationOfByte(startSpecifier);
1193 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1194
1195 // Advance the end SourceLocation by one due to half-open ranges.
1196 End = End.getFileLocWithOffset(1);
1197
1198 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001199}
1200
Ted Kremenek826a3452010-07-16 02:11:22 +00001201SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001202 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001203}
1204
Ted Kremenek826a3452010-07-16 02:11:22 +00001205void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1206 unsigned specifierLen){
Ted Kremenek808015a2010-01-29 03:16:21 +00001207 SourceLocation Loc = getLocationOfByte(startSpecifier);
1208 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek826a3452010-07-16 02:11:22 +00001209 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001210}
1211
Ted Kremenekefaff192010-02-27 01:41:03 +00001212void
Ted Kremenek826a3452010-07-16 02:11:22 +00001213CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1214 analyze_format_string::PositionContext p) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001215 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001216 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1217 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001218}
1219
Ted Kremenek826a3452010-07-16 02:11:22 +00001220void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001221 unsigned posLen) {
1222 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001223 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1224 << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001225}
1226
Ted Kremenek826a3452010-07-16 02:11:22 +00001227void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1228 // The presence of a null character is likely an error.
1229 S.Diag(getLocationOfByte(nullCharacter),
1230 diag::warn_printf_format_string_contains_null_char)
1231 << getFormatStringRange();
1232}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001233
Ted Kremenek826a3452010-07-16 02:11:22 +00001234const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1235 return TheCall->getArg(FirstDataArg + i);
1236}
1237
1238void CheckFormatHandler::DoneProcessing() {
1239 // Does the number of data arguments exceed the number of
1240 // format conversions in the format string?
1241 if (!HasVAListArg) {
1242 // Find any arguments that weren't covered.
1243 CoveredArgs.flip();
1244 signed notCoveredArg = CoveredArgs.find_first();
1245 if (notCoveredArg >= 0) {
1246 assert((unsigned)notCoveredArg < NumDataArgs);
1247 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1248 diag::warn_printf_data_arg_not_used)
1249 << getFormatStringRange();
1250 }
1251 }
1252}
1253
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001254bool
1255CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1256 SourceLocation Loc,
1257 const char *startSpec,
1258 unsigned specifierLen,
1259 const char *csStart,
1260 unsigned csLen) {
1261
1262 bool keepGoing = true;
1263 if (argIndex < NumDataArgs) {
1264 // Consider the argument coverered, even though the specifier doesn't
1265 // make sense.
1266 CoveredArgs.set(argIndex);
1267 }
1268 else {
1269 // If argIndex exceeds the number of data arguments we
1270 // don't issue a warning because that is just a cascade of warnings (and
1271 // they may have intended '%%' anyway). We don't want to continue processing
1272 // the format string after this point, however, as we will like just get
1273 // gibberish when trying to match arguments.
1274 keepGoing = false;
1275 }
1276
1277 S.Diag(Loc, diag::warn_format_invalid_conversion)
1278 << llvm::StringRef(csStart, csLen)
1279 << getSpecifierRange(startSpec, specifierLen);
1280
1281 return keepGoing;
1282}
1283
Ted Kremenek666a1972010-07-26 19:45:42 +00001284bool
1285CheckFormatHandler::CheckNumArgs(
1286 const analyze_format_string::FormatSpecifier &FS,
1287 const analyze_format_string::ConversionSpecifier &CS,
1288 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1289
1290 if (argIndex >= NumDataArgs) {
1291 if (FS.usesPositionalArg()) {
1292 S.Diag(getLocationOfByte(CS.getStart()),
1293 diag::warn_printf_positional_arg_exceeds_data_args)
1294 << (argIndex+1) << NumDataArgs
1295 << getSpecifierRange(startSpecifier, specifierLen);
1296 }
1297 else {
1298 S.Diag(getLocationOfByte(CS.getStart()),
1299 diag::warn_printf_insufficient_data_args)
1300 << getSpecifierRange(startSpecifier, specifierLen);
1301 }
1302
1303 return false;
1304 }
1305 return true;
1306}
1307
Ted Kremenek826a3452010-07-16 02:11:22 +00001308//===--- CHECK: Printf format string checking ------------------------------===//
1309
1310namespace {
1311class CheckPrintfHandler : public CheckFormatHandler {
1312public:
1313 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1314 const Expr *origFormatExpr, unsigned firstDataArg,
1315 unsigned numDataArgs, bool isObjCLiteral,
1316 const char *beg, bool hasVAListArg,
1317 const CallExpr *theCall, unsigned formatIdx)
1318 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1319 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1320 theCall, formatIdx) {}
1321
1322
1323 bool HandleInvalidPrintfConversionSpecifier(
1324 const analyze_printf::PrintfSpecifier &FS,
1325 const char *startSpecifier,
1326 unsigned specifierLen);
1327
1328 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1329 const char *startSpecifier,
1330 unsigned specifierLen);
1331
1332 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1333 const char *startSpecifier, unsigned specifierLen);
1334 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1335 const analyze_printf::OptionalAmount &Amt,
1336 unsigned type,
1337 const char *startSpecifier, unsigned specifierLen);
1338 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1339 const analyze_printf::OptionalFlag &flag,
1340 const char *startSpecifier, unsigned specifierLen);
1341 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1342 const analyze_printf::OptionalFlag &ignoredFlag,
1343 const analyze_printf::OptionalFlag &flag,
1344 const char *startSpecifier, unsigned specifierLen);
1345};
1346}
1347
1348bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1349 const analyze_printf::PrintfSpecifier &FS,
1350 const char *startSpecifier,
1351 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001352 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001353 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001354
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001355 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1356 getLocationOfByte(CS.getStart()),
1357 startSpecifier, specifierLen,
1358 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001359}
1360
Ted Kremenek826a3452010-07-16 02:11:22 +00001361bool CheckPrintfHandler::HandleAmount(
1362 const analyze_format_string::OptionalAmount &Amt,
1363 unsigned k, const char *startSpecifier,
1364 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001365
1366 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001367 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001368 unsigned argIndex = Amt.getArgIndex();
1369 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001370 S.Diag(getLocationOfByte(Amt.getStart()),
1371 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek826a3452010-07-16 02:11:22 +00001372 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001373 // Don't do any more checking. We will just emit
1374 // spurious errors.
1375 return false;
1376 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001377
Ted Kremenek0d277352010-01-29 01:06:55 +00001378 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001379 // Although not in conformance with C99, we also allow the argument to be
1380 // an 'unsigned int' as that is a reasonably safe case. GCC also
1381 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001382 CoveredArgs.set(argIndex);
1383 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001384 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001385
1386 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1387 assert(ATR.isValid());
1388
1389 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001390 S.Diag(getLocationOfByte(Amt.getStart()),
1391 diag::warn_printf_asterisk_wrong_type)
1392 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001393 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek826a3452010-07-16 02:11:22 +00001394 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001395 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001396 // Don't do any more checking. We will just emit
1397 // spurious errors.
1398 return false;
1399 }
1400 }
1401 }
1402 return true;
1403}
Ted Kremenek0d277352010-01-29 01:06:55 +00001404
Tom Caree4ee9662010-06-17 19:00:27 +00001405void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001406 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001407 const analyze_printf::OptionalAmount &Amt,
1408 unsigned type,
1409 const char *startSpecifier,
1410 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001411 const analyze_printf::PrintfConversionSpecifier &CS =
1412 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001413 switch (Amt.getHowSpecified()) {
1414 case analyze_printf::OptionalAmount::Constant:
1415 S.Diag(getLocationOfByte(Amt.getStart()),
1416 diag::warn_printf_nonsensical_optional_amount)
1417 << type
1418 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001419 << getSpecifierRange(startSpecifier, specifierLen)
1420 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001421 Amt.getConstantLength()));
1422 break;
1423
1424 default:
1425 S.Diag(getLocationOfByte(Amt.getStart()),
1426 diag::warn_printf_nonsensical_optional_amount)
1427 << type
1428 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001429 << getSpecifierRange(startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001430 break;
1431 }
1432}
1433
Ted Kremenek826a3452010-07-16 02:11:22 +00001434void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001435 const analyze_printf::OptionalFlag &flag,
1436 const char *startSpecifier,
1437 unsigned specifierLen) {
1438 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001439 const analyze_printf::PrintfConversionSpecifier &CS =
1440 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001441 S.Diag(getLocationOfByte(flag.getPosition()),
1442 diag::warn_printf_nonsensical_flag)
1443 << flag.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001444 << getSpecifierRange(startSpecifier, specifierLen)
1445 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Caree4ee9662010-06-17 19:00:27 +00001446}
1447
1448void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001449 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001450 const analyze_printf::OptionalFlag &ignoredFlag,
1451 const analyze_printf::OptionalFlag &flag,
1452 const char *startSpecifier,
1453 unsigned specifierLen) {
1454 // Warn about ignored flag with a fixit removal.
1455 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1456 diag::warn_printf_ignored_flag)
1457 << ignoredFlag.toString() << flag.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001458 << getSpecifierRange(startSpecifier, specifierLen)
1459 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Caree4ee9662010-06-17 19:00:27 +00001460 ignoredFlag.getPosition(), 1));
1461}
1462
Ted Kremeneke0e53132010-01-28 23:39:18 +00001463bool
Ted Kremenek826a3452010-07-16 02:11:22 +00001464CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001465 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001466 const char *startSpecifier,
1467 unsigned specifierLen) {
1468
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001469 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00001470 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001471 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001472
Ted Kremenekbaa40062010-07-19 22:01:06 +00001473 if (FS.consumesDataArgument()) {
1474 if (atFirstArg) {
1475 atFirstArg = false;
1476 usesPositionalArgs = FS.usesPositionalArg();
1477 }
1478 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1479 // Cannot mix-and-match positional and non-positional arguments.
1480 S.Diag(getLocationOfByte(CS.getStart()),
1481 diag::warn_format_mix_positional_nonpositional_args)
1482 << getSpecifierRange(startSpecifier, specifierLen);
1483 return false;
1484 }
Ted Kremenek0d277352010-01-29 01:06:55 +00001485 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001486
Ted Kremenekefaff192010-02-27 01:41:03 +00001487 // First check if the field width, precision, and conversion specifier
1488 // have matching data arguments.
1489 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1490 startSpecifier, specifierLen)) {
1491 return false;
1492 }
1493
1494 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1495 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001496 return false;
1497 }
1498
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001499 if (!CS.consumesDataArgument()) {
1500 // FIXME: Technically specifying a precision or field width here
1501 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001502 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001503 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001504
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001505 // Consume the argument.
1506 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001507 if (argIndex < NumDataArgs) {
1508 // The check to see if the argIndex is valid will come later.
1509 // We set the bit here because we may exit early from this
1510 // function if we encounter some other error.
1511 CoveredArgs.set(argIndex);
1512 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001513
1514 // Check for using an Objective-C specific conversion specifier
1515 // in a non-ObjC literal.
1516 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001517 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1518 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001519 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001520
Tom Caree4ee9662010-06-17 19:00:27 +00001521 // Check for invalid use of field width
1522 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001523 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001524 startSpecifier, specifierLen);
1525 }
1526
1527 // Check for invalid use of precision
1528 if (!FS.hasValidPrecision()) {
1529 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1530 startSpecifier, specifierLen);
1531 }
1532
1533 // Check each flag does not conflict with any other component.
1534 if (!FS.hasValidLeadingZeros())
1535 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1536 if (!FS.hasValidPlusPrefix())
1537 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001538 if (!FS.hasValidSpacePrefix())
1539 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001540 if (!FS.hasValidAlternativeForm())
1541 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1542 if (!FS.hasValidLeftJustified())
1543 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1544
1545 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001546 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1547 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1548 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001549 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1550 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1551 startSpecifier, specifierLen);
1552
1553 // Check the length modifier is valid with the given conversion specifier.
1554 const LengthModifier &LM = FS.getLengthModifier();
1555 if (!FS.hasValidLengthModifier())
1556 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenek649aecf2010-07-20 20:03:43 +00001557 diag::warn_format_nonsensical_length)
Tom Caree4ee9662010-06-17 19:00:27 +00001558 << LM.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001559 << getSpecifierRange(startSpecifier, specifierLen)
1560 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001561 LM.getLength()));
1562
1563 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00001564 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001565 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001566 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek826a3452010-07-16 02:11:22 +00001567 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001568 // Continue checking the other format specifiers.
1569 return true;
1570 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001571
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001572 // The remaining checks depend on the data arguments.
1573 if (HasVAListArg)
1574 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001575
Ted Kremenek666a1972010-07-26 19:45:42 +00001576 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001577 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001578
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001579 // Now type check the data expression that matches the
1580 // format specifier.
1581 const Expr *Ex = getDataArg(argIndex);
1582 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1583 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1584 // Check if we didn't match because of an implicit cast from a 'char'
1585 // or 'short' to an 'int'. This is done because printf is a varargs
1586 // function.
1587 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1588 if (ICE->getType() == S.Context.IntTy)
1589 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1590 return true;
1591
1592 // We may be able to offer a FixItHint if it is a supported type.
1593 PrintfSpecifier fixedFS = FS;
1594 bool success = fixedFS.fixType(Ex->getType());
1595
1596 if (success) {
1597 // Get the fix string from the fixed format specifier
1598 llvm::SmallString<128> buf;
1599 llvm::raw_svector_ostream os(buf);
1600 fixedFS.toString(os);
1601
Ted Kremenek9325eaf2010-08-24 22:24:51 +00001602 // FIXME: getRepresentativeType() perhaps should return a string
1603 // instead of a QualType to better handle when the representative
1604 // type is 'wint_t' (which is defined in the system headers).
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001605 S.Diag(getLocationOfByte(CS.getStart()),
1606 diag::warn_printf_conversion_argument_type_mismatch)
1607 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1608 << getSpecifierRange(startSpecifier, specifierLen)
1609 << Ex->getSourceRange()
1610 << FixItHint::CreateReplacement(
1611 getSpecifierRange(startSpecifier, specifierLen),
1612 os.str());
1613 }
1614 else {
1615 S.Diag(getLocationOfByte(CS.getStart()),
1616 diag::warn_printf_conversion_argument_type_mismatch)
1617 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1618 << getSpecifierRange(startSpecifier, specifierLen)
1619 << Ex->getSourceRange();
1620 }
1621 }
1622
Ted Kremeneke0e53132010-01-28 23:39:18 +00001623 return true;
1624}
1625
Ted Kremenek826a3452010-07-16 02:11:22 +00001626//===--- CHECK: Scanf format string checking ------------------------------===//
1627
1628namespace {
1629class CheckScanfHandler : public CheckFormatHandler {
1630public:
1631 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1632 const Expr *origFormatExpr, unsigned firstDataArg,
1633 unsigned numDataArgs, bool isObjCLiteral,
1634 const char *beg, bool hasVAListArg,
1635 const CallExpr *theCall, unsigned formatIdx)
1636 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1637 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1638 theCall, formatIdx) {}
1639
1640 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1641 const char *startSpecifier,
1642 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001643
1644 bool HandleInvalidScanfConversionSpecifier(
1645 const analyze_scanf::ScanfSpecifier &FS,
1646 const char *startSpecifier,
1647 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00001648
1649 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00001650};
Ted Kremenek07d161f2010-01-29 01:50:07 +00001651}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001652
Ted Kremenekb7c21012010-07-16 18:28:03 +00001653void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1654 const char *end) {
1655 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1656 << getSpecifierRange(start, end - start);
1657}
1658
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001659bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1660 const analyze_scanf::ScanfSpecifier &FS,
1661 const char *startSpecifier,
1662 unsigned specifierLen) {
1663
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001664 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001665 FS.getConversionSpecifier();
1666
1667 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1668 getLocationOfByte(CS.getStart()),
1669 startSpecifier, specifierLen,
1670 CS.getStart(), CS.getLength());
1671}
1672
Ted Kremenek826a3452010-07-16 02:11:22 +00001673bool CheckScanfHandler::HandleScanfSpecifier(
1674 const analyze_scanf::ScanfSpecifier &FS,
1675 const char *startSpecifier,
1676 unsigned specifierLen) {
1677
1678 using namespace analyze_scanf;
1679 using namespace analyze_format_string;
1680
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001681 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001682
Ted Kremenekbaa40062010-07-19 22:01:06 +00001683 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1684 // be used to decide if we are using positional arguments consistently.
1685 if (FS.consumesDataArgument()) {
1686 if (atFirstArg) {
1687 atFirstArg = false;
1688 usesPositionalArgs = FS.usesPositionalArg();
1689 }
1690 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1691 // Cannot mix-and-match positional and non-positional arguments.
1692 S.Diag(getLocationOfByte(CS.getStart()),
1693 diag::warn_format_mix_positional_nonpositional_args)
1694 << getSpecifierRange(startSpecifier, specifierLen);
1695 return false;
1696 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001697 }
1698
1699 // Check if the field with is non-zero.
1700 const OptionalAmount &Amt = FS.getFieldWidth();
1701 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1702 if (Amt.getConstantAmount() == 0) {
1703 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1704 Amt.getConstantLength());
1705 S.Diag(getLocationOfByte(Amt.getStart()),
1706 diag::warn_scanf_nonzero_width)
1707 << R << FixItHint::CreateRemoval(R);
1708 }
1709 }
1710
1711 if (!FS.consumesDataArgument()) {
1712 // FIXME: Technically specifying a precision or field width here
1713 // makes no sense. Worth issuing a warning at some point.
1714 return true;
1715 }
1716
1717 // Consume the argument.
1718 unsigned argIndex = FS.getArgIndex();
1719 if (argIndex < NumDataArgs) {
1720 // The check to see if the argIndex is valid will come later.
1721 // We set the bit here because we may exit early from this
1722 // function if we encounter some other error.
1723 CoveredArgs.set(argIndex);
1724 }
1725
Ted Kremenek1e51c202010-07-20 20:04:47 +00001726 // Check the length modifier is valid with the given conversion specifier.
1727 const LengthModifier &LM = FS.getLengthModifier();
1728 if (!FS.hasValidLengthModifier()) {
1729 S.Diag(getLocationOfByte(LM.getStart()),
1730 diag::warn_format_nonsensical_length)
1731 << LM.toString() << CS.toString()
1732 << getSpecifierRange(startSpecifier, specifierLen)
1733 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1734 LM.getLength()));
1735 }
1736
Ted Kremenek826a3452010-07-16 02:11:22 +00001737 // The remaining checks depend on the data arguments.
1738 if (HasVAListArg)
1739 return true;
1740
Ted Kremenek666a1972010-07-26 19:45:42 +00001741 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00001742 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00001743
1744 // FIXME: Check that the argument type matches the format specifier.
1745
1746 return true;
1747}
1748
1749void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001750 const Expr *OrigFormatExpr,
1751 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001752 unsigned format_idx, unsigned firstDataArg,
1753 bool isPrintf) {
1754
Ted Kremeneke0e53132010-01-28 23:39:18 +00001755 // CHECK: is the format string a wide literal?
1756 if (FExpr->isWide()) {
1757 Diag(FExpr->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001758 diag::warn_format_string_is_wide_literal)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001759 << OrigFormatExpr->getSourceRange();
1760 return;
1761 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001762
Ted Kremeneke0e53132010-01-28 23:39:18 +00001763 // Str - The format string. NOTE: this is NOT null-terminated!
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001764 llvm::StringRef StrRef = FExpr->getString();
1765 const char *Str = StrRef.data();
1766 unsigned StrLen = StrRef.size();
Ted Kremenek826a3452010-07-16 02:11:22 +00001767
Ted Kremeneke0e53132010-01-28 23:39:18 +00001768 // CHECK: empty format string?
Ted Kremeneke0e53132010-01-28 23:39:18 +00001769 if (StrLen == 0) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001770 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001771 << OrigFormatExpr->getSourceRange();
1772 return;
1773 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001774
1775 if (isPrintf) {
1776 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1777 TheCall->getNumArgs() - firstDataArg,
1778 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1779 HasVAListArg, TheCall, format_idx);
1780
1781 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1782 H.DoneProcessing();
1783 }
1784 else {
1785 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1786 TheCall->getNumArgs() - firstDataArg,
1787 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1788 HasVAListArg, TheCall, format_idx);
1789
1790 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1791 H.DoneProcessing();
1792 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00001793}
1794
Ted Kremenek06de2762007-08-17 16:46:58 +00001795//===--- CHECK: Return Address of Stack Variable --------------------------===//
1796
1797static DeclRefExpr* EvalVal(Expr *E);
1798static DeclRefExpr* EvalAddr(Expr* E);
1799
1800/// CheckReturnStackAddr - Check if a return statement returns the address
1801/// of a stack variable.
1802void
1803Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1804 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001805
Ted Kremenek06de2762007-08-17 16:46:58 +00001806 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001807 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001808 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001809 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001810 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001811
Steve Naroffc50a4a52008-09-16 22:25:10 +00001812 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001813 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001814
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001815 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001816 if (C->hasBlockDeclRefExprs())
1817 Diag(C->getLocStart(), diag::err_ret_local_block)
1818 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001819
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001820 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1821 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1822 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001823
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001824 } else if (lhsType->isReferenceType()) {
1825 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001826 // Check for a reference to the stack
1827 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001828 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001829 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001830 }
1831}
1832
1833/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1834/// check if the expression in a return statement evaluates to an address
1835/// to a location on the stack. The recursion is used to traverse the
1836/// AST of the return expression, with recursion backtracking when we
1837/// encounter a subexpression that (1) clearly does not lead to the address
1838/// of a stack variable or (2) is something we cannot determine leads to
1839/// the address of a stack variable based on such local checking.
1840///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001841/// EvalAddr processes expressions that are pointers that are used as
1842/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001843/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001844/// the refers to a stack variable.
1845///
1846/// This implementation handles:
1847///
1848/// * pointer-to-pointer casts
1849/// * implicit conversions from array references to pointers
1850/// * taking the address of fields
1851/// * arbitrary interplay between "&" and "*" operators
1852/// * pointer arithmetic from an address of a stack variable
1853/// * taking the address of an array element where the array is on the stack
1854static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001855 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001856 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001857 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001858 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001859 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Ted Kremenek06de2762007-08-17 16:46:58 +00001861 // Our "symbolic interpreter" is just a dispatch off the currently
1862 // viewed AST node. We then recursively traverse the AST by calling
1863 // EvalAddr and EvalVal appropriately.
1864 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001865 case Stmt::ParenExprClass:
1866 // Ignore parentheses.
1867 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001868
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001869 case Stmt::UnaryOperatorClass: {
1870 // The only unary operator that make sense to handle here
1871 // is AddrOf. All others don't make sense as pointers.
1872 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001873
John McCall2de56d12010-08-25 11:45:40 +00001874 if (U->getOpcode() == UO_AddrOf)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001875 return EvalVal(U->getSubExpr());
1876 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001877 return NULL;
1878 }
Mike Stump1eb44332009-09-09 15:08:12 +00001879
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001880 case Stmt::BinaryOperatorClass: {
1881 // Handle pointer arithmetic. All other binary operators are not valid
1882 // in this context.
1883 BinaryOperator *B = cast<BinaryOperator>(E);
John McCall2de56d12010-08-25 11:45:40 +00001884 BinaryOperatorKind op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001885
John McCall2de56d12010-08-25 11:45:40 +00001886 if (op != BO_Add && op != BO_Sub)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001887 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001888
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001889 Expr *Base = B->getLHS();
1890
1891 // Determine which argument is the real pointer base. It could be
1892 // the RHS argument instead of the LHS.
1893 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001895 assert (Base->getType()->isPointerType());
1896 return EvalAddr(Base);
1897 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001898
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001899 // For conditional operators we need to see if either the LHS or RHS are
1900 // valid DeclRefExpr*s. If one of them is valid, we return it.
1901 case Stmt::ConditionalOperatorClass: {
1902 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001903
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001904 // Handle the GNU extension for missing LHS.
1905 if (Expr *lhsExpr = C->getLHS())
1906 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1907 return LHS;
1908
1909 return EvalAddr(C->getRHS());
1910 }
Mike Stump1eb44332009-09-09 15:08:12 +00001911
Ted Kremenek54b52742008-08-07 00:49:01 +00001912 // For casts, we need to handle conversions from arrays to
1913 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001914 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001915 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001916 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001917 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001918 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001919
Steve Naroffdd972f22008-09-05 22:11:13 +00001920 if (SubExpr->getType()->isPointerType() ||
1921 SubExpr->getType()->isBlockPointerType() ||
1922 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001923 return EvalAddr(SubExpr);
1924 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001925 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001926 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001927 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001928 }
Mike Stump1eb44332009-09-09 15:08:12 +00001929
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001930 // C++ casts. For dynamic casts, static casts, and const casts, we
1931 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001932 // through the cast. In the case the dynamic cast doesn't fail (and
1933 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001934 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001935 // FIXME: The comment about is wrong; we're not always converting
1936 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001937 // handle references to objects.
1938 case Stmt::CXXStaticCastExprClass:
1939 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001940 case Stmt::CXXConstCastExprClass:
1941 case Stmt::CXXReinterpretCastExprClass: {
1942 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001943 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001944 return EvalAddr(S);
1945 else
1946 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001947 }
Mike Stump1eb44332009-09-09 15:08:12 +00001948
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001949 // Everything else: we simply don't reason about them.
1950 default:
1951 return NULL;
1952 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001953}
Mike Stump1eb44332009-09-09 15:08:12 +00001954
Ted Kremenek06de2762007-08-17 16:46:58 +00001955
1956/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1957/// See the comments for EvalAddr for more details.
1958static DeclRefExpr* EvalVal(Expr *E) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001959do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001960 // We should only be called for evaluating non-pointer expressions, or
1961 // expressions with a pointer type that are not used as references but instead
1962 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001963
Ted Kremenek06de2762007-08-17 16:46:58 +00001964 // Our "symbolic interpreter" is just a dispatch off the currently
1965 // viewed AST node. We then recursively traverse the AST by calling
1966 // EvalAddr and EvalVal appropriately.
1967 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001968 case Stmt::ImplicitCastExprClass: {
1969 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall5baba9d2010-08-25 10:28:54 +00001970 if (IE->getValueKind() == VK_LValue) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001971 E = IE->getSubExpr();
1972 continue;
1973 }
1974 return NULL;
1975 }
1976
Douglas Gregora2813ce2009-10-23 18:54:35 +00001977 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001978 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1979 // at code that refers to a variable's name. We check if it has local
1980 // storage within the function, and if so, return the expression.
1981 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001982
Ted Kremenek06de2762007-08-17 16:46:58 +00001983 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001984 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1985
Ted Kremenek06de2762007-08-17 16:46:58 +00001986 return NULL;
1987 }
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Ted Kremenek68957a92010-08-04 20:01:07 +00001989 case Stmt::ParenExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001990 // Ignore parentheses.
Ted Kremenek68957a92010-08-04 20:01:07 +00001991 E = cast<ParenExpr>(E)->getSubExpr();
1992 continue;
1993 }
Mike Stump1eb44332009-09-09 15:08:12 +00001994
Ted Kremenek06de2762007-08-17 16:46:58 +00001995 case Stmt::UnaryOperatorClass: {
1996 // The only unary operator that make sense to handle here
1997 // is Deref. All others don't resolve to a "name." This includes
1998 // handling all sorts of rvalues passed to a unary operator.
1999 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002000
John McCall2de56d12010-08-25 11:45:40 +00002001 if (U->getOpcode() == UO_Deref)
Ted Kremenek06de2762007-08-17 16:46:58 +00002002 return EvalAddr(U->getSubExpr());
2003
2004 return NULL;
2005 }
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Ted Kremenek06de2762007-08-17 16:46:58 +00002007 case Stmt::ArraySubscriptExprClass: {
2008 // Array subscripts are potential references to data on the stack. We
2009 // retrieve the DeclRefExpr* for the array variable if it indeed
2010 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00002011 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002012 }
Mike Stump1eb44332009-09-09 15:08:12 +00002013
Ted Kremenek06de2762007-08-17 16:46:58 +00002014 case Stmt::ConditionalOperatorClass: {
2015 // For conditional operators we need to see if either the LHS or RHS are
2016 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
2017 ConditionalOperator *C = cast<ConditionalOperator>(E);
2018
Anders Carlsson39073232007-11-30 19:04:31 +00002019 // Handle the GNU extension for missing LHS.
2020 if (Expr *lhsExpr = C->getLHS())
2021 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2022 return LHS;
2023
2024 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00002025 }
Mike Stump1eb44332009-09-09 15:08:12 +00002026
Ted Kremenek06de2762007-08-17 16:46:58 +00002027 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002028 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002029 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002030
Ted Kremenek06de2762007-08-17 16:46:58 +00002031 // Check for indirect access. We only want direct field accesses.
2032 if (!M->isArrow())
2033 return EvalVal(M->getBase());
2034 else
2035 return NULL;
2036 }
Mike Stump1eb44332009-09-09 15:08:12 +00002037
Ted Kremenek06de2762007-08-17 16:46:58 +00002038 // Everything else: we simply don't reason about them.
2039 default:
2040 return NULL;
2041 }
Ted Kremenek68957a92010-08-04 20:01:07 +00002042} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00002043}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002044
2045//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2046
2047/// Check for comparisons of floating point operands using != and ==.
2048/// Issue a warning if these are no self-comparisons, as they are not likely
2049/// to do what the programmer intended.
2050void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2051 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002052
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002053 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00002054 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002055
2056 // Special case: check for x == x (which is OK).
2057 // Do not emit warnings for such cases.
2058 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2059 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2060 if (DRL->getDecl() == DRR->getDecl())
2061 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002062
2063
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002064 // Special case: check for comparisons against literals that can be exactly
2065 // represented by APFloat. In such cases, do not emit a warning. This
2066 // is a heuristic: often comparison against such literals are used to
2067 // detect if a value in a variable has not changed. This clearly can
2068 // lead to false negatives.
2069 if (EmitWarning) {
2070 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2071 if (FLL->isExact())
2072 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002073 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002074 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2075 if (FLR->isExact())
2076 EmitWarning = false;
2077 }
2078 }
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002080 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002081 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002082 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002083 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002084 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002085
Sebastian Redl0eb23302009-01-19 00:08:26 +00002086 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002087 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002088 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002089 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002090
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002091 // Emit the diagnostic.
2092 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002093 Diag(loc, diag::warn_floatingpoint_eq)
2094 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002095}
John McCallba26e582010-01-04 23:21:16 +00002096
John McCallf2370c92010-01-06 05:24:50 +00002097//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2098//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00002099
John McCallf2370c92010-01-06 05:24:50 +00002100namespace {
John McCallba26e582010-01-04 23:21:16 +00002101
John McCallf2370c92010-01-06 05:24:50 +00002102/// Structure recording the 'active' range of an integer-valued
2103/// expression.
2104struct IntRange {
2105 /// The number of bits active in the int.
2106 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00002107
John McCallf2370c92010-01-06 05:24:50 +00002108 /// True if the int is known not to have negative values.
2109 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00002110
John McCallf2370c92010-01-06 05:24:50 +00002111 IntRange(unsigned Width, bool NonNegative)
2112 : Width(Width), NonNegative(NonNegative)
2113 {}
John McCallba26e582010-01-04 23:21:16 +00002114
John McCallf2370c92010-01-06 05:24:50 +00002115 // Returns the range of the bool type.
2116 static IntRange forBoolType() {
2117 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00002118 }
2119
John McCallf2370c92010-01-06 05:24:50 +00002120 // Returns the range of an integral type.
2121 static IntRange forType(ASTContext &C, QualType T) {
2122 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00002123 }
2124
John McCallf2370c92010-01-06 05:24:50 +00002125 // Returns the range of an integeral type based on its canonical
2126 // representation.
2127 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2128 assert(T->isCanonicalUnqualified());
2129
2130 if (const VectorType *VT = dyn_cast<VectorType>(T))
2131 T = VT->getElementType().getTypePtr();
2132 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2133 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00002134
2135 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2136 EnumDecl *Enum = ET->getDecl();
2137 unsigned NumPositive = Enum->getNumPositiveBits();
2138 unsigned NumNegative = Enum->getNumNegativeBits();
2139
2140 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2141 }
John McCallf2370c92010-01-06 05:24:50 +00002142
2143 const BuiltinType *BT = cast<BuiltinType>(T);
2144 assert(BT->isInteger());
2145
2146 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2147 }
2148
2149 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002150 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00002151 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002152 L.NonNegative && R.NonNegative);
2153 }
2154
2155 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002156 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002157 return IntRange(std::min(L.Width, R.Width),
2158 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002159 }
2160};
2161
2162IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2163 if (value.isSigned() && value.isNegative())
2164 return IntRange(value.getMinSignedBits(), false);
2165
2166 if (value.getBitWidth() > MaxWidth)
2167 value.trunc(MaxWidth);
2168
2169 // isNonNegative() just checks the sign bit without considering
2170 // signedness.
2171 return IntRange(value.getActiveBits(), true);
2172}
2173
John McCall0acc3112010-01-06 22:57:21 +00002174IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002175 unsigned MaxWidth) {
2176 if (result.isInt())
2177 return GetValueRange(C, result.getInt(), MaxWidth);
2178
2179 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002180 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2181 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2182 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2183 R = IntRange::join(R, El);
2184 }
John McCallf2370c92010-01-06 05:24:50 +00002185 return R;
2186 }
2187
2188 if (result.isComplexInt()) {
2189 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2190 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2191 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002192 }
2193
2194 // This can happen with lossless casts to intptr_t of "based" lvalues.
2195 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002196 // FIXME: The only reason we need to pass the type in here is to get
2197 // the sign right on this one case. It would be nice if APValue
2198 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002199 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002200 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002201}
John McCallf2370c92010-01-06 05:24:50 +00002202
2203/// Pseudo-evaluate the given integer expression, estimating the
2204/// range of values it might take.
2205///
2206/// \param MaxWidth - the width to which the value will be truncated
2207IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2208 E = E->IgnoreParens();
2209
2210 // Try a full evaluation first.
2211 Expr::EvalResult result;
2212 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002213 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002214
2215 // I think we only want to look through implicit casts here; if the
2216 // user has an explicit widening cast, we should treat the value as
2217 // being of the new, wider type.
2218 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002219 if (CE->getCastKind() == CK_NoOp)
John McCallf2370c92010-01-06 05:24:50 +00002220 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2221
2222 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2223
John McCall2de56d12010-08-25 11:45:40 +00002224 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
2225 if (!isIntegerCast && CE->getCastKind() == CK_Unknown)
John McCall60fad452010-01-06 22:07:33 +00002226 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2227
John McCallf2370c92010-01-06 05:24:50 +00002228 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002229 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002230 return OutputTypeRange;
2231
2232 IntRange SubRange
2233 = GetExprRange(C, CE->getSubExpr(),
2234 std::min(MaxWidth, OutputTypeRange.Width));
2235
2236 // Bail out if the subexpr's range is as wide as the cast type.
2237 if (SubRange.Width >= OutputTypeRange.Width)
2238 return OutputTypeRange;
2239
2240 // Otherwise, we take the smaller width, and we're non-negative if
2241 // either the output type or the subexpr is.
2242 return IntRange(SubRange.Width,
2243 SubRange.NonNegative || OutputTypeRange.NonNegative);
2244 }
2245
2246 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2247 // If we can fold the condition, just take that operand.
2248 bool CondResult;
2249 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2250 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2251 : CO->getFalseExpr(),
2252 MaxWidth);
2253
2254 // Otherwise, conservatively merge.
2255 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2256 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2257 return IntRange::join(L, R);
2258 }
2259
2260 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2261 switch (BO->getOpcode()) {
2262
2263 // Boolean-valued operations are single-bit and positive.
John McCall2de56d12010-08-25 11:45:40 +00002264 case BO_LAnd:
2265 case BO_LOr:
2266 case BO_LT:
2267 case BO_GT:
2268 case BO_LE:
2269 case BO_GE:
2270 case BO_EQ:
2271 case BO_NE:
John McCallf2370c92010-01-06 05:24:50 +00002272 return IntRange::forBoolType();
2273
John McCallc0cd21d2010-02-23 19:22:29 +00002274 // The type of these compound assignments is the type of the LHS,
2275 // so the RHS is not necessarily an integer.
John McCall2de56d12010-08-25 11:45:40 +00002276 case BO_MulAssign:
2277 case BO_DivAssign:
2278 case BO_RemAssign:
2279 case BO_AddAssign:
2280 case BO_SubAssign:
John McCallc0cd21d2010-02-23 19:22:29 +00002281 return IntRange::forType(C, E->getType());
2282
John McCallf2370c92010-01-06 05:24:50 +00002283 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002284 case BO_PtrMemD:
2285 case BO_PtrMemI:
John McCallf2370c92010-01-06 05:24:50 +00002286 return IntRange::forType(C, E->getType());
2287
John McCall60fad452010-01-06 22:07:33 +00002288 // Bitwise-and uses the *infinum* of the two source ranges.
John McCall2de56d12010-08-25 11:45:40 +00002289 case BO_And:
2290 case BO_AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002291 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2292 GetExprRange(C, BO->getRHS(), MaxWidth));
2293
John McCallf2370c92010-01-06 05:24:50 +00002294 // Left shift gets black-listed based on a judgement call.
John McCall2de56d12010-08-25 11:45:40 +00002295 case BO_Shl:
John McCall3aae6092010-04-07 01:14:35 +00002296 // ...except that we want to treat '1 << (blah)' as logically
2297 // positive. It's an important idiom.
2298 if (IntegerLiteral *I
2299 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2300 if (I->getValue() == 1) {
2301 IntRange R = IntRange::forType(C, E->getType());
2302 return IntRange(R.Width, /*NonNegative*/ true);
2303 }
2304 }
2305 // fallthrough
2306
John McCall2de56d12010-08-25 11:45:40 +00002307 case BO_ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002308 return IntRange::forType(C, E->getType());
2309
John McCall60fad452010-01-06 22:07:33 +00002310 // Right shift by a constant can narrow its left argument.
John McCall2de56d12010-08-25 11:45:40 +00002311 case BO_Shr:
2312 case BO_ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002313 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2314
2315 // If the shift amount is a positive constant, drop the width by
2316 // that much.
2317 llvm::APSInt shift;
2318 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2319 shift.isNonNegative()) {
2320 unsigned zext = shift.getZExtValue();
2321 if (zext >= L.Width)
2322 L.Width = (L.NonNegative ? 0 : 1);
2323 else
2324 L.Width -= zext;
2325 }
2326
2327 return L;
2328 }
2329
2330 // Comma acts as its right operand.
John McCall2de56d12010-08-25 11:45:40 +00002331 case BO_Comma:
John McCallf2370c92010-01-06 05:24:50 +00002332 return GetExprRange(C, BO->getRHS(), MaxWidth);
2333
John McCall60fad452010-01-06 22:07:33 +00002334 // Black-list pointer subtractions.
John McCall2de56d12010-08-25 11:45:40 +00002335 case BO_Sub:
John McCallf2370c92010-01-06 05:24:50 +00002336 if (BO->getLHS()->getType()->isPointerType())
2337 return IntRange::forType(C, E->getType());
2338 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002339
John McCallf2370c92010-01-06 05:24:50 +00002340 default:
2341 break;
2342 }
2343
2344 // Treat every other operator as if it were closed on the
2345 // narrowest type that encompasses both operands.
2346 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2347 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2348 return IntRange::join(L, R);
2349 }
2350
2351 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2352 switch (UO->getOpcode()) {
2353 // Boolean-valued operations are white-listed.
John McCall2de56d12010-08-25 11:45:40 +00002354 case UO_LNot:
John McCallf2370c92010-01-06 05:24:50 +00002355 return IntRange::forBoolType();
2356
2357 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002358 case UO_Deref:
2359 case UO_AddrOf: // should be impossible
John McCallf2370c92010-01-06 05:24:50 +00002360 return IntRange::forType(C, E->getType());
2361
2362 default:
2363 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2364 }
2365 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002366
2367 if (dyn_cast<OffsetOfExpr>(E)) {
2368 IntRange::forType(C, E->getType());
2369 }
John McCallf2370c92010-01-06 05:24:50 +00002370
2371 FieldDecl *BitField = E->getBitField();
2372 if (BitField) {
2373 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2374 unsigned BitWidth = BitWidthAP.getZExtValue();
2375
2376 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2377 }
2378
2379 return IntRange::forType(C, E->getType());
2380}
John McCall51313c32010-01-04 23:31:57 +00002381
John McCall323ed742010-05-06 08:58:33 +00002382IntRange GetExprRange(ASTContext &C, Expr *E) {
2383 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2384}
2385
John McCall51313c32010-01-04 23:31:57 +00002386/// Checks whether the given value, which currently has the given
2387/// source semantics, has the same value when coerced through the
2388/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002389bool IsSameFloatAfterCast(const llvm::APFloat &value,
2390 const llvm::fltSemantics &Src,
2391 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002392 llvm::APFloat truncated = value;
2393
2394 bool ignored;
2395 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2396 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2397
2398 return truncated.bitwiseIsEqual(value);
2399}
2400
2401/// Checks whether the given value, which currently has the given
2402/// source semantics, has the same value when coerced through the
2403/// target semantics.
2404///
2405/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002406bool IsSameFloatAfterCast(const APValue &value,
2407 const llvm::fltSemantics &Src,
2408 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002409 if (value.isFloat())
2410 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2411
2412 if (value.isVector()) {
2413 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2414 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2415 return false;
2416 return true;
2417 }
2418
2419 assert(value.isComplexFloat());
2420 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2421 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2422}
2423
John McCall323ed742010-05-06 08:58:33 +00002424void AnalyzeImplicitConversions(Sema &S, Expr *E);
2425
2426bool IsZero(Sema &S, Expr *E) {
2427 llvm::APSInt Value;
2428 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2429}
2430
2431void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00002432 BinaryOperatorKind op = E->getOpcode();
2433 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002434 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2435 << "< 0" << "false"
2436 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002437 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002438 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2439 << ">= 0" << "true"
2440 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002441 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002442 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2443 << "0 >" << "false"
2444 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002445 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002446 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2447 << "0 <=" << "true"
2448 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2449 }
2450}
2451
2452/// Analyze the operands of the given comparison. Implements the
2453/// fallback case from AnalyzeComparison.
2454void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2455 AnalyzeImplicitConversions(S, E->getLHS());
2456 AnalyzeImplicitConversions(S, E->getRHS());
2457}
John McCall51313c32010-01-04 23:31:57 +00002458
John McCallba26e582010-01-04 23:21:16 +00002459/// \brief Implements -Wsign-compare.
2460///
2461/// \param lex the left-hand expression
2462/// \param rex the right-hand expression
2463/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002464/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002465void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2466 // The type the comparison is being performed in.
2467 QualType T = E->getLHS()->getType();
2468 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2469 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002470
John McCall323ed742010-05-06 08:58:33 +00002471 // We don't do anything special if this isn't an unsigned integral
2472 // comparison: we're only interested in integral comparisons, and
2473 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregorf6094622010-07-23 15:58:24 +00002474 if (!T->hasUnsignedIntegerRepresentation())
John McCall323ed742010-05-06 08:58:33 +00002475 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002476
John McCall323ed742010-05-06 08:58:33 +00002477 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2478 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002479
John McCall323ed742010-05-06 08:58:33 +00002480 // Check to see if one of the (unmodified) operands is of different
2481 // signedness.
2482 Expr *signedOperand, *unsignedOperand;
Douglas Gregorf6094622010-07-23 15:58:24 +00002483 if (lex->getType()->hasSignedIntegerRepresentation()) {
2484 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00002485 "unsigned comparison between two signed integer expressions?");
2486 signedOperand = lex;
2487 unsignedOperand = rex;
Douglas Gregorf6094622010-07-23 15:58:24 +00002488 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCall323ed742010-05-06 08:58:33 +00002489 signedOperand = rex;
2490 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002491 } else {
John McCall323ed742010-05-06 08:58:33 +00002492 CheckTrivialUnsignedComparison(S, E);
2493 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002494 }
2495
John McCall323ed742010-05-06 08:58:33 +00002496 // Otherwise, calculate the effective range of the signed operand.
2497 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002498
John McCall323ed742010-05-06 08:58:33 +00002499 // Go ahead and analyze implicit conversions in the operands. Note
2500 // that we skip the implicit conversions on both sides.
2501 AnalyzeImplicitConversions(S, lex);
2502 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002503
John McCall323ed742010-05-06 08:58:33 +00002504 // If the signed range is non-negative, -Wsign-compare won't fire,
2505 // but we should still check for comparisons which are always true
2506 // or false.
2507 if (signedRange.NonNegative)
2508 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002509
2510 // For (in)equality comparisons, if the unsigned operand is a
2511 // constant which cannot collide with a overflowed signed operand,
2512 // then reinterpreting the signed operand as unsigned will not
2513 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002514 if (E->isEqualityOp()) {
2515 unsigned comparisonWidth = S.Context.getIntWidth(T);
2516 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002517
John McCall323ed742010-05-06 08:58:33 +00002518 // We should never be unable to prove that the unsigned operand is
2519 // non-negative.
2520 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2521
2522 if (unsignedRange.Width < comparisonWidth)
2523 return;
2524 }
2525
2526 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2527 << lex->getType() << rex->getType()
2528 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002529}
2530
John McCall51313c32010-01-04 23:31:57 +00002531/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002532void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002533 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2534}
2535
John McCall323ed742010-05-06 08:58:33 +00002536void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2537 bool *ICContext = 0) {
2538 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002539
John McCall323ed742010-05-06 08:58:33 +00002540 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2541 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2542 if (Source == Target) return;
2543 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002544
2545 // Never diagnose implicit casts to bool.
2546 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2547 return;
2548
2549 // Strip vector types.
2550 if (isa<VectorType>(Source)) {
2551 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002552 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002553
2554 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2555 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2556 }
2557
2558 // Strip complex types.
2559 if (isa<ComplexType>(Source)) {
2560 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002561 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002562
2563 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2564 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2565 }
2566
2567 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2568 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2569
2570 // If the source is floating point...
2571 if (SourceBT && SourceBT->isFloatingPoint()) {
2572 // ...and the target is floating point...
2573 if (TargetBT && TargetBT->isFloatingPoint()) {
2574 // ...then warn if we're dropping FP rank.
2575
2576 // Builtin FP kinds are ordered by increasing FP rank.
2577 if (SourceBT->getKind() > TargetBT->getKind()) {
2578 // Don't warn about float constants that are precisely
2579 // representable in the target type.
2580 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002581 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002582 // Value might be a float, a float vector, or a float complex.
2583 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002584 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2585 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002586 return;
2587 }
2588
John McCall323ed742010-05-06 08:58:33 +00002589 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002590 }
2591 return;
2592 }
2593
2594 // If the target is integral, always warn.
2595 if ((TargetBT && TargetBT->isInteger()))
2596 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002597 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002598
2599 return;
2600 }
2601
John McCallf2370c92010-01-06 05:24:50 +00002602 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002603 return;
2604
John McCall323ed742010-05-06 08:58:33 +00002605 IntRange SourceRange = GetExprRange(S.Context, E);
2606 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002607
2608 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002609 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2610 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002611 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002612 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2613 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2614 }
2615
2616 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2617 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2618 SourceRange.Width == TargetRange.Width)) {
2619 unsigned DiagID = diag::warn_impcast_integer_sign;
2620
2621 // Traditionally, gcc has warned about this under -Wsign-compare.
2622 // We also want to warn about it in -Wconversion.
2623 // So if -Wconversion is off, use a completely identical diagnostic
2624 // in the sign-compare group.
2625 // The conditional-checking code will
2626 if (ICContext) {
2627 DiagID = diag::warn_impcast_integer_sign_conditional;
2628 *ICContext = true;
2629 }
2630
2631 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002632 }
2633
2634 return;
2635}
2636
John McCall323ed742010-05-06 08:58:33 +00002637void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2638
2639void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2640 bool &ICContext) {
2641 E = E->IgnoreParenImpCasts();
2642
2643 if (isa<ConditionalOperator>(E))
2644 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2645
2646 AnalyzeImplicitConversions(S, E);
2647 if (E->getType() != T)
2648 return CheckImplicitConversion(S, E, T, &ICContext);
2649 return;
2650}
2651
2652void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2653 AnalyzeImplicitConversions(S, E->getCond());
2654
2655 bool Suspicious = false;
2656 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2657 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2658
2659 // If -Wconversion would have warned about either of the candidates
2660 // for a signedness conversion to the context type...
2661 if (!Suspicious) return;
2662
2663 // ...but it's currently ignored...
2664 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2665 return;
2666
2667 // ...and -Wsign-compare isn't...
2668 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2669 return;
2670
2671 // ...then check whether it would have warned about either of the
2672 // candidates for a signedness conversion to the condition type.
2673 if (E->getType() != T) {
2674 Suspicious = false;
2675 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2676 E->getType(), &Suspicious);
2677 if (!Suspicious)
2678 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2679 E->getType(), &Suspicious);
2680 if (!Suspicious)
2681 return;
2682 }
2683
2684 // If so, emit a diagnostic under -Wsign-compare.
2685 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2686 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2687 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2688 << lex->getType() << rex->getType()
2689 << lex->getSourceRange() << rex->getSourceRange();
2690}
2691
2692/// AnalyzeImplicitConversions - Find and report any interesting
2693/// implicit conversions in the given expression. There are a couple
2694/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2695void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2696 QualType T = OrigE->getType();
2697 Expr *E = OrigE->IgnoreParenImpCasts();
2698
2699 // For conditional operators, we analyze the arguments as if they
2700 // were being fed directly into the output.
2701 if (isa<ConditionalOperator>(E)) {
2702 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2703 CheckConditionalOperator(S, CO, T);
2704 return;
2705 }
2706
2707 // Go ahead and check any implicit conversions we might have skipped.
2708 // The non-canonical typecheck is just an optimization;
2709 // CheckImplicitConversion will filter out dead implicit conversions.
2710 if (E->getType() != T)
2711 CheckImplicitConversion(S, E, T);
2712
2713 // Now continue drilling into this expression.
2714
2715 // Skip past explicit casts.
2716 if (isa<ExplicitCastExpr>(E)) {
2717 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2718 return AnalyzeImplicitConversions(S, E);
2719 }
2720
2721 // Do a somewhat different check with comparison operators.
2722 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2723 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2724
2725 // These break the otherwise-useful invariant below. Fortunately,
2726 // we don't really need to recurse into them, because any internal
2727 // expressions should have been analyzed already when they were
2728 // built into statements.
2729 if (isa<StmtExpr>(E)) return;
2730
2731 // Don't descend into unevaluated contexts.
2732 if (isa<SizeOfAlignOfExpr>(E)) return;
2733
2734 // Now just recurse over the expression's children.
2735 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2736 I != IE; ++I)
2737 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2738}
2739
2740} // end anonymous namespace
2741
2742/// Diagnoses "dangerous" implicit conversions within the given
2743/// expression (which is a full expression). Implements -Wconversion
2744/// and -Wsign-compare.
2745void Sema::CheckImplicitConversions(Expr *E) {
2746 // Don't diagnose in unevaluated contexts.
2747 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2748 return;
2749
2750 // Don't diagnose for value- or type-dependent expressions.
2751 if (E->isTypeDependent() || E->isValueDependent())
2752 return;
2753
2754 AnalyzeImplicitConversions(*this, E);
2755}
2756
Mike Stumpf8c49212010-01-21 03:59:47 +00002757/// CheckParmsForFunctionDef - Check that the parameters of the given
2758/// function are appropriate for the definition of a function. This
2759/// takes care of any checks that cannot be performed on the
2760/// declaration itself, e.g., that the types of each of the function
2761/// parameters are complete.
2762bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2763 bool HasInvalidParm = false;
2764 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2765 ParmVarDecl *Param = FD->getParamDecl(p);
2766
2767 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2768 // function declarator that is part of a function definition of
2769 // that function shall not have incomplete type.
2770 //
2771 // This is also C++ [dcl.fct]p6.
2772 if (!Param->isInvalidDecl() &&
2773 RequireCompleteType(Param->getLocation(), Param->getType(),
2774 diag::err_typecheck_decl_incomplete_type)) {
2775 Param->setInvalidDecl();
2776 HasInvalidParm = true;
2777 }
2778
2779 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2780 // declaration of each parameter shall include an identifier.
2781 if (Param->getIdentifier() == 0 &&
2782 !Param->isImplicit() &&
2783 !getLangOptions().CPlusPlus)
2784 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002785
2786 // C99 6.7.5.3p12:
2787 // If the function declarator is not part of a definition of that
2788 // function, parameters may have incomplete type and may use the [*]
2789 // notation in their sequences of declarator specifiers to specify
2790 // variable length array types.
2791 QualType PType = Param->getOriginalType();
2792 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2793 if (AT->getSizeModifier() == ArrayType::Star) {
2794 // FIXME: This diagnosic should point the the '[*]' if source-location
2795 // information is added for it.
2796 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2797 }
2798 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002799 }
2800
2801 return HasInvalidParm;
2802}
John McCallb7f4ffe2010-08-12 21:44:57 +00002803
2804/// CheckCastAlign - Implements -Wcast-align, which warns when a
2805/// pointer cast increases the alignment requirements.
2806void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
2807 // This is actually a lot of work to potentially be doing on every
2808 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
2809 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align)
2810 == Diagnostic::Ignored)
2811 return;
2812
2813 // Ignore dependent types.
2814 if (T->isDependentType() || Op->getType()->isDependentType())
2815 return;
2816
2817 // Require that the destination be a pointer type.
2818 const PointerType *DestPtr = T->getAs<PointerType>();
2819 if (!DestPtr) return;
2820
2821 // If the destination has alignment 1, we're done.
2822 QualType DestPointee = DestPtr->getPointeeType();
2823 if (DestPointee->isIncompleteType()) return;
2824 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
2825 if (DestAlign.isOne()) return;
2826
2827 // Require that the source be a pointer type.
2828 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
2829 if (!SrcPtr) return;
2830 QualType SrcPointee = SrcPtr->getPointeeType();
2831
2832 // Whitelist casts from cv void*. We already implicitly
2833 // whitelisted casts to cv void*, since they have alignment 1.
2834 // Also whitelist casts involving incomplete types, which implicitly
2835 // includes 'void'.
2836 if (SrcPointee->isIncompleteType()) return;
2837
2838 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
2839 if (SrcAlign >= DestAlign) return;
2840
2841 Diag(TRange.getBegin(), diag::warn_cast_align)
2842 << Op->getType() << T
2843 << static_cast<unsigned>(SrcAlign.getQuantity())
2844 << static_cast<unsigned>(DestAlign.getQuantity())
2845 << TRange << Op->getSourceRange();
2846}
2847