blob: 6092348004e60658cc53f50771656e42a1946856 [file] [log] [blame]
Chris Lattner59907c42007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner59907c42007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump1eb44332009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattner59907c42007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Sema.h"
John McCall2d887082010-08-25 22:03:47 +000016#include "clang/Sema/SemaInternal.h"
John McCall781472f2010-08-25 08:40:02 +000017#include "clang/Sema/ScopeInfo.h"
Ted Kremenek826a3452010-07-16 02:11:22 +000018#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000019#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000020#include "clang/AST/CharUnits.h"
John McCall384aff82010-08-25 07:42:41 +000021#include "clang/AST/DeclCXX.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000022#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000023#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000024#include "clang/AST/ExprObjC.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000025#include "clang/AST/DeclObjC.h"
26#include "clang/AST/StmtCXX.h"
27#include "clang/AST/StmtObjC.h"
Chris Lattner719e6152009-02-18 19:21:10 +000028#include "clang/Lex/LiteralSupport.h"
Chris Lattner59907c42007-08-10 20:18:51 +000029#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000030#include "llvm/ADT/BitVector.h"
31#include "llvm/ADT/STLExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000032#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000033#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000034#include "clang/Basic/TargetInfo.h"
Fariborz Jahanian7da71022010-09-07 19:38:13 +000035#include "clang/Basic/ConvertUTF.h"
36
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000037#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000038using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000039using namespace sema;
Chris Lattner59907c42007-08-10 20:18:51 +000040
Chris Lattner60800082009-02-18 17:49:48 +000041/// getLocationOfStringLiteralByte - Return a source location that points to the
42/// specified byte of the specified string literal.
43///
44/// Strings are amazingly complex. They can be formed from multiple tokens and
45/// can have escape sequences in them in addition to the usual trigraph and
46/// escaped newline business. This routine handles this complexity.
47///
48SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
49 unsigned ByteNo) const {
50 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000051
Chris Lattner60800082009-02-18 17:49:48 +000052 // Loop over all of the tokens in this string until we find the one that
53 // contains the byte we're looking for.
54 unsigned TokNo = 0;
55 while (1) {
56 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
57 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000058
Chris Lattner60800082009-02-18 17:49:48 +000059 // Get the spelling of the string so that we can get the data that makes up
60 // the string literal, not the identifier for the macro it is potentially
61 // expanded through.
62 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
63
64 // Re-lex the token to get its length and original spelling.
65 std::pair<FileID, unsigned> LocInfo =
66 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000067 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000068 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000069 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000070 return StrTokSpellingLoc;
71
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000072 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattner60800082009-02-18 17:49:48 +000074 // Create a langops struct and enable trigraphs. This is sufficient for
75 // relexing tokens.
76 LangOptions LangOpts;
77 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner60800082009-02-18 17:49:48 +000079 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000080 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
81 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000082 Token TheTok;
83 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000084
Chris Lattner443e53c2009-02-18 19:26:42 +000085 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000086 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000087 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000088
Chris Lattner2197c962009-02-18 18:52:52 +000089 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000090 if (ByteNo < TokNumBytes ||
91 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000092 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000093 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
94 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner719e6152009-02-18 19:21:10 +000096 // Now that we know the offset of the token in the spelling, use the
97 // preprocessor to get the offset in the original source.
98 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000099 }
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Chris Lattner60800082009-02-18 17:49:48 +0000101 // Move to the next string token.
102 ++TokNo;
103 ByteNo -= TokNumBytes;
104 }
105}
106
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000107/// CheckablePrintfAttr - does a function call have a "printf" attribute
108/// and arguments that merit checking?
109bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
110 if (Format->getType() == "printf") return true;
111 if (Format->getType() == "printf0") {
112 // printf0 allows null "format" string; if so don't check format/args
113 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000114 // Does the index refer to the implicit object argument?
115 if (isa<CXXMemberCallExpr>(TheCall)) {
116 if (format_idx == 0)
117 return false;
118 --format_idx;
119 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000120 if (format_idx < TheCall->getNumArgs()) {
121 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000122 if (!Format->isNullPointerConstant(Context,
123 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000124 return true;
125 }
126 }
127 return false;
128}
Chris Lattner60800082009-02-18 17:49:48 +0000129
John McCall60d7b3a2010-08-24 06:29:42 +0000130ExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000131Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
John McCall60d7b3a2010-08-24 06:29:42 +0000132 ExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000133
Anders Carlssond406bf02009-08-16 01:56:34 +0000134 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000135 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000136 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000137 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000138 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000139 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000140 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000141 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000142 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000143 if (SemaBuiltinVAStart(TheCall))
144 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000145 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000146 case Builtin::BI__builtin_isgreater:
147 case Builtin::BI__builtin_isgreaterequal:
148 case Builtin::BI__builtin_isless:
149 case Builtin::BI__builtin_islessequal:
150 case Builtin::BI__builtin_islessgreater:
151 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000152 if (SemaBuiltinUnorderedCompare(TheCall))
153 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000154 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000155 case Builtin::BI__builtin_fpclassify:
156 if (SemaBuiltinFPClassification(TheCall, 6))
157 return ExprError();
158 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000159 case Builtin::BI__builtin_isfinite:
160 case Builtin::BI__builtin_isinf:
161 case Builtin::BI__builtin_isinf_sign:
162 case Builtin::BI__builtin_isnan:
163 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000164 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000165 return ExprError();
166 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000167 case Builtin::BI__builtin_return_address:
Eric Christopher691ebc32010-04-17 02:26:23 +0000168 case Builtin::BI__builtin_frame_address: {
169 llvm::APSInt Result;
170 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000171 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000172 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000173 }
174 case Builtin::BI__builtin_eh_return_data_regno: {
175 llvm::APSInt Result;
176 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattner21fb98e2009-09-23 06:06:36 +0000177 return ExprError();
178 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000179 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000180 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000181 return SemaBuiltinShuffleVector(TheCall);
182 // TheCall will be freed by the smart pointer here, but that's fine, since
183 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000184 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000185 if (SemaBuiltinPrefetch(TheCall))
186 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000187 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000188 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000189 if (SemaBuiltinObjectSize(TheCall))
190 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000191 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000192 case Builtin::BI__builtin_longjmp:
193 if (SemaBuiltinLongjmp(TheCall))
194 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000195 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000196 case Builtin::BI__sync_fetch_and_add:
197 case Builtin::BI__sync_fetch_and_sub:
198 case Builtin::BI__sync_fetch_and_or:
199 case Builtin::BI__sync_fetch_and_and:
200 case Builtin::BI__sync_fetch_and_xor:
201 case Builtin::BI__sync_add_and_fetch:
202 case Builtin::BI__sync_sub_and_fetch:
203 case Builtin::BI__sync_and_and_fetch:
204 case Builtin::BI__sync_or_and_fetch:
205 case Builtin::BI__sync_xor_and_fetch:
206 case Builtin::BI__sync_val_compare_and_swap:
207 case Builtin::BI__sync_bool_compare_and_swap:
208 case Builtin::BI__sync_lock_test_and_set:
209 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000210 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000211 }
212
213 // Since the target specific builtins for each arch overlap, only check those
214 // of the arch we are compiling for.
215 if (BuiltinID >= Builtin::FirstTSBuiltin) {
216 switch (Context.Target.getTriple().getArch()) {
217 case llvm::Triple::arm:
218 case llvm::Triple::thumb:
219 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
220 return ExprError();
221 break;
222 case llvm::Triple::x86:
223 case llvm::Triple::x86_64:
224 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
225 return ExprError();
226 break;
227 default:
228 break;
229 }
230 }
231
232 return move(TheCallResult);
233}
234
235bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
236 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000237 case X86::BI__builtin_ia32_palignr128:
238 case X86::BI__builtin_ia32_palignr: {
239 llvm::APSInt Result;
240 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000241 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000242 break;
243 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000244 }
Nate Begeman26a31422010-06-08 02:47:44 +0000245 return false;
246}
Mike Stump1eb44332009-09-09 15:08:12 +0000247
Nate Begeman61eecf52010-06-14 05:21:25 +0000248// Get the valid immediate range for the specified NEON type code.
249static unsigned RFT(unsigned t, bool shift = false) {
250 bool quad = t & 0x10;
251
252 switch (t & 0x7) {
253 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000254 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000255 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000256 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000257 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000258 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000259 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000260 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000261 case 4: // f32
262 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000263 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000264 case 5: // poly8
265 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000266 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000267 case 6: // poly16
268 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000269 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000270 case 7: // float16
271 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000272 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000273 }
274 return 0;
275}
276
Nate Begeman26a31422010-06-08 02:47:44 +0000277bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000278 llvm::APSInt Result;
279
Nate Begeman0d15c532010-06-13 04:47:52 +0000280 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000281 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000282 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000283#define GET_NEON_OVERLOAD_CHECK
284#include "clang/Basic/arm_neon.inc"
285#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000286 }
287
Nate Begeman0d15c532010-06-13 04:47:52 +0000288 // For NEON intrinsics which are overloaded on vector element type, validate
289 // the immediate which specifies which variant to emit.
290 if (mask) {
291 unsigned ArgNo = TheCall->getNumArgs()-1;
292 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
293 return true;
294
Nate Begeman61eecf52010-06-14 05:21:25 +0000295 TV = Result.getLimitedValue(32);
296 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000297 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
298 << TheCall->getArg(ArgNo)->getSourceRange();
299 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000300
Nate Begeman0d15c532010-06-13 04:47:52 +0000301 // For NEON intrinsics which take an immediate value as part of the
302 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000303 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000304 switch (BuiltinID) {
305 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000306 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
307 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000308 case ARM::BI__builtin_arm_vcvtr_f:
309 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000310#define GET_NEON_IMMEDIATE_CHECK
311#include "clang/Basic/arm_neon.inc"
312#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000313 };
314
Nate Begeman61eecf52010-06-14 05:21:25 +0000315 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000316 if (SemaBuiltinConstantArg(TheCall, i, Result))
317 return true;
318
Nate Begeman61eecf52010-06-14 05:21:25 +0000319 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000320 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000321 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000322 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000323 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000324
Nate Begeman99c40bb2010-08-03 21:32:34 +0000325 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000326 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000327}
Daniel Dunbarde454282008-10-02 18:44:07 +0000328
Anders Carlssond406bf02009-08-16 01:56:34 +0000329/// CheckFunctionCall - Check a direct function call for various correctness
330/// and safety properties not strictly enforced by the C type system.
331bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
332 // Get the IdentifierInfo* for the called function.
333 IdentifierInfo *FnInfo = FDecl->getIdentifier();
334
335 // None of the checks below are needed for functions that don't have
336 // simple names (e.g., C++ conversion functions).
337 if (!FnInfo)
338 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000339
Daniel Dunbarde454282008-10-02 18:44:07 +0000340 // FIXME: This mechanism should be abstracted to be less fragile and
341 // more efficient. For example, just map function ids to custom
342 // handlers.
343
Chris Lattner59907c42007-08-10 20:18:51 +0000344 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000345 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ted Kremenek826a3452010-07-16 02:11:22 +0000346 const bool b = Format->getType() == "scanf";
347 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000348 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000349 CheckPrintfScanfArguments(TheCall, HasVAListArg,
350 Format->getFormatIdx() - 1,
351 HasVAListArg ? 0 : Format->getFirstArg() - 1,
352 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000353 }
Chris Lattner59907c42007-08-10 20:18:51 +0000354 }
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Sean Huntcf807c42010-08-18 23:23:40 +0000356 specific_attr_iterator<NonNullAttr>
357 i = FDecl->specific_attr_begin<NonNullAttr>(),
358 e = FDecl->specific_attr_end<NonNullAttr>();
359
360 for (; i != e; ++i)
361 CheckNonNullArguments(*i, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000362
Anders Carlssond406bf02009-08-16 01:56:34 +0000363 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000364}
365
Anders Carlssond406bf02009-08-16 01:56:34 +0000366bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000367 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000368 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000369 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000370 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000372 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
373 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000374 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000376 QualType Ty = V->getType();
377 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000378 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000379
Ted Kremenek826a3452010-07-16 02:11:22 +0000380 const bool b = Format->getType() == "scanf";
381 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000382 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Anders Carlssond406bf02009-08-16 01:56:34 +0000384 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000385 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
386 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000387
388 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000389}
390
Chris Lattner5caa3702009-05-08 06:58:22 +0000391/// SemaBuiltinAtomicOverloaded - We have a call to a function like
392/// __sync_fetch_and_add, which is an overloaded function based on the pointer
393/// type of its first argument. The main ActOnCallExpr routines have already
394/// promoted the types of arguments because all of these calls are prototyped as
395/// void(...).
396///
397/// This function goes through and does final semantic checking for these
398/// builtins,
John McCall60d7b3a2010-08-24 06:29:42 +0000399ExprResult
400Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
Chandler Carruthd2014572010-07-09 18:59:35 +0000401 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000402 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
403 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
404
405 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000406 if (TheCall->getNumArgs() < 1) {
407 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
408 << 0 << 1 << TheCall->getNumArgs()
409 << TheCall->getCallee()->getSourceRange();
410 return ExprError();
411 }
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Chris Lattner5caa3702009-05-08 06:58:22 +0000413 // Inspect the first argument of the atomic builtin. This should always be
414 // a pointer type, whose element is an integral scalar or pointer type.
415 // Because it is a pointer type, we don't have to worry about any implicit
416 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000417 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000418 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000419 if (!FirstArg->getType()->isPointerType()) {
420 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
421 << FirstArg->getType() << FirstArg->getSourceRange();
422 return ExprError();
423 }
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chandler Carruthd2014572010-07-09 18:59:35 +0000425 QualType ValType =
426 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000427 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000428 !ValType->isBlockPointerType()) {
429 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
430 << FirstArg->getType() << FirstArg->getSourceRange();
431 return ExprError();
432 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000433
Chandler Carruth8d13d222010-07-18 20:54:12 +0000434 // The majority of builtins return a value, but a few have special return
435 // types, so allow them to override appropriately below.
436 QualType ResultType = ValType;
437
Chris Lattner5caa3702009-05-08 06:58:22 +0000438 // We need to figure out which concrete builtin this maps onto. For example,
439 // __sync_fetch_and_add with a 2 byte object turns into
440 // __sync_fetch_and_add_2.
441#define BUILTIN_ROW(x) \
442 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
443 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000444
Chris Lattner5caa3702009-05-08 06:58:22 +0000445 static const unsigned BuiltinIndices[][5] = {
446 BUILTIN_ROW(__sync_fetch_and_add),
447 BUILTIN_ROW(__sync_fetch_and_sub),
448 BUILTIN_ROW(__sync_fetch_and_or),
449 BUILTIN_ROW(__sync_fetch_and_and),
450 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Chris Lattner5caa3702009-05-08 06:58:22 +0000452 BUILTIN_ROW(__sync_add_and_fetch),
453 BUILTIN_ROW(__sync_sub_and_fetch),
454 BUILTIN_ROW(__sync_and_and_fetch),
455 BUILTIN_ROW(__sync_or_and_fetch),
456 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattner5caa3702009-05-08 06:58:22 +0000458 BUILTIN_ROW(__sync_val_compare_and_swap),
459 BUILTIN_ROW(__sync_bool_compare_and_swap),
460 BUILTIN_ROW(__sync_lock_test_and_set),
461 BUILTIN_ROW(__sync_lock_release)
462 };
Mike Stump1eb44332009-09-09 15:08:12 +0000463#undef BUILTIN_ROW
464
Chris Lattner5caa3702009-05-08 06:58:22 +0000465 // Determine the index of the size.
466 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000467 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000468 case 1: SizeIndex = 0; break;
469 case 2: SizeIndex = 1; break;
470 case 4: SizeIndex = 2; break;
471 case 8: SizeIndex = 3; break;
472 case 16: SizeIndex = 4; break;
473 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000474 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
475 << FirstArg->getType() << FirstArg->getSourceRange();
476 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000477 }
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Chris Lattner5caa3702009-05-08 06:58:22 +0000479 // Each of these builtins has one pointer argument, followed by some number of
480 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
481 // that we ignore. Find out which row of BuiltinIndices to read from as well
482 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000483 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000484 unsigned BuiltinIndex, NumFixed = 1;
485 switch (BuiltinID) {
486 default: assert(0 && "Unknown overloaded atomic builtin!");
487 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
488 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
489 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
490 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
491 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000493 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
494 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
495 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
496 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
497 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Chris Lattner5caa3702009-05-08 06:58:22 +0000499 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000500 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000501 NumFixed = 2;
502 break;
503 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000504 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000505 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000506 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000507 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000508 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000509 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000510 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000511 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000512 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000513 break;
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattner5caa3702009-05-08 06:58:22 +0000516 // Now that we know how many fixed arguments we expect, first check that we
517 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000518 if (TheCall->getNumArgs() < 1+NumFixed) {
519 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
520 << 0 << 1+NumFixed << TheCall->getNumArgs()
521 << TheCall->getCallee()->getSourceRange();
522 return ExprError();
523 }
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000525 // Get the decl for the concrete builtin from this, we can tell what the
526 // concrete integer type we should convert to is.
527 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
528 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
529 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000530 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000531 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
532 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000533
John McCallf871d0c2010-08-07 06:22:56 +0000534 // The first argument --- the pointer --- has a fixed type; we
535 // deduce the types of the rest of the arguments accordingly. Walk
536 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000537 for (unsigned i = 0; i != NumFixed; ++i) {
538 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000539
Chris Lattner5caa3702009-05-08 06:58:22 +0000540 // If the argument is an implicit cast, then there was a promotion due to
541 // "...", just remove it now.
542 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
543 Arg = ICE->getSubExpr();
544 ICE->setSubExpr(0);
Chris Lattner5caa3702009-05-08 06:58:22 +0000545 TheCall->setArg(i+1, Arg);
546 }
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner5caa3702009-05-08 06:58:22 +0000548 // GCC does an implicit conversion to the pointer or integer ValType. This
549 // can fail in some cases (1i -> int**), check for this error case now.
John McCall2de56d12010-08-25 11:45:40 +0000550 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000551 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000552 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000553 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattner5caa3702009-05-08 06:58:22 +0000555 // Okay, we have something that *can* be converted to the right type. Check
556 // to see if there is a potentially weird extension going on here. This can
557 // happen when you do an atomic operation on something like an char* and
558 // pass in 42. The 42 gets converted to char. This is even more strange
559 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000560 // FIXME: Do this check.
John McCall5baba9d2010-08-25 10:28:54 +0000561 ImpCastExprToType(Arg, ValType, Kind, VK_RValue, &BasePath);
Chris Lattner5caa3702009-05-08 06:58:22 +0000562 TheCall->setArg(i+1, Arg);
563 }
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattner5caa3702009-05-08 06:58:22 +0000565 // Switch the DeclRefExpr to refer to the new decl.
566 DRE->setDecl(NewBuiltinDecl);
567 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000568
Chris Lattner5caa3702009-05-08 06:58:22 +0000569 // Set the callee in the CallExpr.
570 // FIXME: This leaks the original parens and implicit casts.
571 Expr *PromotedCall = DRE;
572 UsualUnaryConversions(PromotedCall);
573 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000575 // Change the result type of the call to match the original value type. This
576 // is arbitrary, but the codegen for these builtins ins design to handle it
577 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000578 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000579
580 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000581}
582
583
Chris Lattner69039812009-02-18 06:01:06 +0000584/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000585/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000586/// Note: It might also make sense to do the UTF-16 conversion here (would
587/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000588bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000589 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000590 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
591
592 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000593 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
594 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000595 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000596 }
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +0000598 size_t NulPos = Literal->getString().find('\0');
599 if (NulPos != llvm::StringRef::npos) {
600 Diag(getLocationOfStringLiteralByte(Literal, NulPos),
601 diag::warn_cfstring_literal_contains_nul_character)
602 << Arg->getSourceRange();
Daniel Dunbarf015b032009-09-22 10:03:52 +0000603 }
Fariborz Jahanian7da71022010-09-07 19:38:13 +0000604 if (Literal->containsNonAsciiOrNull()) {
605 llvm::StringRef String = Literal->getString();
606 unsigned NumBytes = String.size();
607 llvm::SmallVector<UTF16, 128> ToBuf(NumBytes);
608 const UTF8 *FromPtr = (UTF8 *)String.data();
609 UTF16 *ToPtr = &ToBuf[0];
610
611 ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
612 &ToPtr, ToPtr + NumBytes,
613 strictConversion);
614 // Check for conversion failure.
615 if (Result != conversionOK)
616 Diag(Arg->getLocStart(),
617 diag::warn_cfstring_truncated) << Arg->getSourceRange();
618 }
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000619 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000620}
621
Chris Lattnerc27c6652007-12-20 00:05:45 +0000622/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
623/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000624bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
625 Expr *Fn = TheCall->getCallee();
626 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000627 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000628 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000629 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
630 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000631 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000632 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000633 return true;
634 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000635
636 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000637 return Diag(TheCall->getLocEnd(),
638 diag::err_typecheck_call_too_few_args_at_least)
639 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000640 }
641
Chris Lattnerc27c6652007-12-20 00:05:45 +0000642 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000643 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000644 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000645 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000646 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000647 else if (FunctionDecl *FD = getCurFunctionDecl())
648 isVariadic = FD->isVariadic();
649 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000650 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Chris Lattnerc27c6652007-12-20 00:05:45 +0000652 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000653 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
654 return true;
655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Chris Lattner30ce3442007-12-19 23:59:04 +0000657 // Verify that the second argument to the builtin is the last argument of the
658 // current function or method.
659 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000660 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Anders Carlsson88cf2262008-02-11 04:20:54 +0000662 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
663 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000664 // FIXME: This isn't correct for methods (results in bogus warning).
665 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000666 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000667 if (CurBlock)
668 LastArg = *(CurBlock->TheDecl->param_end()-1);
669 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000670 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000671 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000672 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000673 SecondArgIsLastNamedArgument = PV == LastArg;
674 }
675 }
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Chris Lattner30ce3442007-12-19 23:59:04 +0000677 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000678 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000679 diag::warn_second_parameter_of_va_start_not_last_named_argument);
680 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000681}
Chris Lattner30ce3442007-12-19 23:59:04 +0000682
Chris Lattner1b9a0792007-12-20 00:26:33 +0000683/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
684/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000685bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
686 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000687 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000688 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000689 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000690 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000691 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000692 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000693 << SourceRange(TheCall->getArg(2)->getLocStart(),
694 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Chris Lattner925e60d2007-12-28 05:29:59 +0000696 Expr *OrigArg0 = TheCall->getArg(0);
697 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000698
Chris Lattner1b9a0792007-12-20 00:26:33 +0000699 // Do standard promotions between the two arguments, returning their common
700 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000701 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000702
703 // Make sure any conversions are pushed back into the call; this is
704 // type safe since unordered compare builtins are declared as "_Bool
705 // foo(...)".
706 TheCall->setArg(0, OrigArg0);
707 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000708
Douglas Gregorcde01732009-05-19 22:10:17 +0000709 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
710 return false;
711
Chris Lattner1b9a0792007-12-20 00:26:33 +0000712 // If the common type isn't a real floating type, then the arguments were
713 // invalid for this operation.
714 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000715 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000716 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000717 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000718 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Chris Lattner1b9a0792007-12-20 00:26:33 +0000720 return false;
721}
722
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000723/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
724/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000725/// to check everything. We expect the last argument to be a floating point
726/// value.
727bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
728 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000729 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000730 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000731 if (TheCall->getNumArgs() > NumArgs)
732 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000733 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000734 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000735 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000736 (*(TheCall->arg_end()-1))->getLocEnd());
737
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000738 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000739
Eli Friedman9ac6f622009-08-31 20:06:00 +0000740 if (OrigArg->isTypeDependent())
741 return false;
742
Chris Lattner81368fb2010-05-06 05:50:07 +0000743 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000744 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000745 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000746 diag::err_typecheck_call_invalid_unary_fp)
747 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Chris Lattner81368fb2010-05-06 05:50:07 +0000749 // If this is an implicit conversion from float -> double, remove it.
750 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
751 Expr *CastArg = Cast->getSubExpr();
752 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
753 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
754 "promotion from float to double is the only expected cast here");
755 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +0000756 TheCall->setArg(NumArgs-1, CastArg);
757 OrigArg = CastArg;
758 }
759 }
760
Eli Friedman9ac6f622009-08-31 20:06:00 +0000761 return false;
762}
763
Eli Friedmand38617c2008-05-14 19:38:39 +0000764/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
765// This is declared to take (...), so we have to check everything.
John McCall60d7b3a2010-08-24 06:29:42 +0000766ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000767 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000768 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000769 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000770 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000771 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000772
Nate Begeman37b6a572010-06-08 00:16:34 +0000773 // Determine which of the following types of shufflevector we're checking:
774 // 1) unary, vector mask: (lhs, mask)
775 // 2) binary, vector mask: (lhs, rhs, mask)
776 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
777 QualType resType = TheCall->getArg(0)->getType();
778 unsigned numElements = 0;
779
Douglas Gregorcde01732009-05-19 22:10:17 +0000780 if (!TheCall->getArg(0)->isTypeDependent() &&
781 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000782 QualType LHSType = TheCall->getArg(0)->getType();
783 QualType RHSType = TheCall->getArg(1)->getType();
784
785 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000786 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000787 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000788 TheCall->getArg(1)->getLocEnd());
789 return ExprError();
790 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000791
792 numElements = LHSType->getAs<VectorType>()->getNumElements();
793 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000794
Nate Begeman37b6a572010-06-08 00:16:34 +0000795 // Check to see if we have a call with 2 vector arguments, the unary shuffle
796 // with mask. If so, verify that RHS is an integer vector type with the
797 // same number of elts as lhs.
798 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +0000799 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +0000800 RHSType->getAs<VectorType>()->getNumElements() != numElements)
801 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
802 << SourceRange(TheCall->getArg(1)->getLocStart(),
803 TheCall->getArg(1)->getLocEnd());
804 numResElements = numElements;
805 }
806 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000807 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000808 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000809 TheCall->getArg(1)->getLocEnd());
810 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000811 } else if (numElements != numResElements) {
812 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000813 resType = Context.getVectorType(eltType, numResElements,
814 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000815 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000816 }
817
818 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000819 if (TheCall->getArg(i)->isTypeDependent() ||
820 TheCall->getArg(i)->isValueDependent())
821 continue;
822
Nate Begeman37b6a572010-06-08 00:16:34 +0000823 llvm::APSInt Result(32);
824 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
825 return ExprError(Diag(TheCall->getLocStart(),
826 diag::err_shufflevector_nonconstant_argument)
827 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000828
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000829 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000830 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000831 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000832 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000833 }
834
835 llvm::SmallVector<Expr*, 32> exprs;
836
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000837 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000838 exprs.push_back(TheCall->getArg(i));
839 TheCall->setArg(i, 0);
840 }
841
Nate Begemana88dc302009-08-12 02:10:25 +0000842 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000843 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000844 TheCall->getCallee()->getLocStart(),
845 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000846}
Chris Lattner30ce3442007-12-19 23:59:04 +0000847
Daniel Dunbar4493f792008-07-21 22:59:13 +0000848/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
849// This is declared to take (const void*, ...) and can take two
850// optional constant int args.
851bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000852 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000853
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000854 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000855 return Diag(TheCall->getLocEnd(),
856 diag::err_typecheck_call_too_many_args_at_most)
857 << 0 /*function call*/ << 3 << NumArgs
858 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000859
860 // Argument 0 is checked for us and the remaining arguments must be
861 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000862 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000863 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000864
Eli Friedman9aef7262009-12-04 00:30:06 +0000865 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000866 if (SemaBuiltinConstantArg(TheCall, i, Result))
867 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000868
Daniel Dunbar4493f792008-07-21 22:59:13 +0000869 // FIXME: gcc issues a warning and rewrites these to 0. These
870 // seems especially odd for the third argument since the default
871 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000872 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000873 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000874 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000875 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000876 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000877 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000878 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000879 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000880 }
881 }
882
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000883 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000884}
885
Eric Christopher691ebc32010-04-17 02:26:23 +0000886/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
887/// TheCall is a constant expression.
888bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
889 llvm::APSInt &Result) {
890 Expr *Arg = TheCall->getArg(ArgNum);
891 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
892 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
893
894 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
895
896 if (!Arg->isIntegerConstantExpr(Result, Context))
897 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000898 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000899
Chris Lattner21fb98e2009-09-23 06:06:36 +0000900 return false;
901}
902
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000903/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
904/// int type). This simply type checks that type is one of the defined
905/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000906// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000907bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000908 llvm::APSInt Result;
909
910 // Check constant-ness first.
911 if (SemaBuiltinConstantArg(TheCall, 1, Result))
912 return true;
913
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000914 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000915 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000916 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
917 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000918 }
919
920 return false;
921}
922
Eli Friedman586d6a82009-05-03 06:04:26 +0000923/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000924/// This checks that val is a constant 1.
925bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
926 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000927 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000928
Eric Christopher691ebc32010-04-17 02:26:23 +0000929 // TODO: This is less than ideal. Overload this to take a value.
930 if (SemaBuiltinConstantArg(TheCall, 1, Result))
931 return true;
932
933 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000934 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
935 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
936
937 return false;
938}
939
Ted Kremenekd30ef872009-01-12 23:09:09 +0000940// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000941bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
942 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000943 unsigned format_idx, unsigned firstDataArg,
944 bool isPrintf) {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000945 tryAgain:
Douglas Gregorcde01732009-05-19 22:10:17 +0000946 if (E->isTypeDependent() || E->isValueDependent())
947 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000948
949 switch (E->getStmtClass()) {
950 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000951 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +0000952 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
953 format_idx, firstDataArg, isPrintf)
954 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
955 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000956 }
957
958 case Stmt::ImplicitCastExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000959 E = cast<ImplicitCastExpr>(E)->getSubExpr();
960 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000961 }
962
963 case Stmt::ParenExprClass: {
Ted Kremenek4fe64412010-09-09 03:51:39 +0000964 E = cast<ParenExpr>(E)->getSubExpr();
965 goto tryAgain;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000966 }
Mike Stump1eb44332009-09-09 15:08:12 +0000967
Ted Kremenek082d9362009-03-20 21:35:28 +0000968 case Stmt::DeclRefExprClass: {
969 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000970
Ted Kremenek082d9362009-03-20 21:35:28 +0000971 // As an exception, do not flag errors for variables binding to
972 // const string literals.
973 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
974 bool isConstant = false;
975 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000976
Ted Kremenek082d9362009-03-20 21:35:28 +0000977 if (const ArrayType *AT = Context.getAsArrayType(T)) {
978 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000979 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000980 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000981 PT->getPointeeType().isConstant(Context);
982 }
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Ted Kremenek082d9362009-03-20 21:35:28 +0000984 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000985 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000986 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +0000987 HasVAListArg, format_idx, firstDataArg,
988 isPrintf);
Ted Kremenek082d9362009-03-20 21:35:28 +0000989 }
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Anders Carlssond966a552009-06-28 19:55:58 +0000991 // For vprintf* functions (i.e., HasVAListArg==true), we add a
992 // special check to see if the format string is a function parameter
993 // of the function calling the printf function. If the function
994 // has an attribute indicating it is a printf-like function, then we
995 // should suppress warnings concerning non-literals being used in a call
996 // to a vprintf function. For example:
997 //
998 // void
999 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1000 // va_list ap;
1001 // va_start(ap, fmt);
1002 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1003 // ...
1004 //
1005 //
1006 // FIXME: We don't have full attribute support yet, so just check to see
1007 // if the argument is a DeclRefExpr that references a parameter. We'll
1008 // add proper support for checking the attribute later.
1009 if (HasVAListArg)
1010 if (isa<ParmVarDecl>(VD))
1011 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001012 }
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Ted Kremenek082d9362009-03-20 21:35:28 +00001014 return false;
1015 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001016
Anders Carlsson8f031b32009-06-27 04:05:33 +00001017 case Stmt::CallExprClass: {
1018 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001019 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001020 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1021 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1022 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001023 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001024 unsigned ArgIndex = FA->getFormatIdx();
1025 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001026
1027 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001028 format_idx, firstDataArg, isPrintf);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001029 }
1030 }
1031 }
1032 }
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Anders Carlsson8f031b32009-06-27 04:05:33 +00001034 return false;
1035 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001036 case Stmt::ObjCStringLiteralClass:
1037 case Stmt::StringLiteralClass: {
1038 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Ted Kremenek082d9362009-03-20 21:35:28 +00001040 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001041 StrE = ObjCFExpr->getString();
1042 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001043 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Ted Kremenekd30ef872009-01-12 23:09:09 +00001045 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001046 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1047 firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001048 return true;
1049 }
Mike Stump1eb44332009-09-09 15:08:12 +00001050
Ted Kremenekd30ef872009-01-12 23:09:09 +00001051 return false;
1052 }
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Ted Kremenek082d9362009-03-20 21:35:28 +00001054 default:
1055 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001056 }
1057}
1058
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001059void
Mike Stump1eb44332009-09-09 15:08:12 +00001060Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1061 const CallExpr *TheCall) {
Sean Huntcf807c42010-08-18 23:23:40 +00001062 for (NonNullAttr::args_iterator i = NonNull->args_begin(),
1063 e = NonNull->args_end();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001064 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001065 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001066 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001067 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001068 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1069 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001070 }
1071}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001072
Ted Kremenek826a3452010-07-16 02:11:22 +00001073/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1074/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001075void
Ted Kremenek826a3452010-07-16 02:11:22 +00001076Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1077 unsigned format_idx, unsigned firstDataArg,
1078 bool isPrintf) {
1079
Ted Kremenek082d9362009-03-20 21:35:28 +00001080 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001081
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001082 // The way the format attribute works in GCC, the implicit this argument
1083 // of member functions is counted. However, it doesn't appear in our own
1084 // lists, so decrement format_idx in that case.
1085 if (isa<CXXMemberCallExpr>(TheCall)) {
1086 // Catch a format attribute mistakenly referring to the object argument.
1087 if (format_idx == 0)
1088 return;
1089 --format_idx;
1090 if(firstDataArg != 0)
1091 --firstDataArg;
1092 }
1093
Ted Kremenek826a3452010-07-16 02:11:22 +00001094 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001095 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001096 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001097 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001098 return;
1099 }
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Ted Kremenek082d9362009-03-20 21:35:28 +00001101 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Chris Lattner59907c42007-08-10 20:18:51 +00001103 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001104 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001105 // Dynamically generated format strings are difficult to
1106 // automatically vet at compile time. Requiring that format strings
1107 // are string literals: (1) permits the checking of format strings by
1108 // the compiler and thereby (2) can practically remove the source of
1109 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001110
Mike Stump1eb44332009-09-09 15:08:12 +00001111 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001112 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001113 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001114 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001115 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001116 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001117 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001118
Chris Lattner655f1412009-04-29 04:59:47 +00001119 // If there are no arguments specified, warn with -Wformat-security, otherwise
1120 // warn only with -Wformat-nonliteral.
1121 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001122 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001123 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001124 << OrigFormatExpr->getSourceRange();
1125 else
Mike Stump1eb44332009-09-09 15:08:12 +00001126 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001127 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001128 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001129}
Ted Kremenek71895b92007-08-14 17:39:48 +00001130
Ted Kremeneke0e53132010-01-28 23:39:18 +00001131namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001132class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1133protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001134 Sema &S;
1135 const StringLiteral *FExpr;
1136 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001137 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001138 const unsigned NumDataArgs;
1139 const bool IsObjCLiteral;
1140 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001141 const bool HasVAListArg;
1142 const CallExpr *TheCall;
1143 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001144 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001145 bool usesPositionalArgs;
1146 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001147public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001148 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001149 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001150 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001151 const char *beg, bool hasVAListArg,
1152 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001153 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001154 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001155 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001156 IsObjCLiteral(isObjCLiteral), Beg(beg),
1157 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001158 TheCall(theCall), FormatIdx(formatIdx),
1159 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001160 CoveredArgs.resize(numDataArgs);
1161 CoveredArgs.reset();
1162 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001163
Ted Kremenek07d161f2010-01-29 01:50:07 +00001164 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001165
Ted Kremenek826a3452010-07-16 02:11:22 +00001166 void HandleIncompleteSpecifier(const char *startSpecifier,
1167 unsigned specifierLen);
1168
Ted Kremenekefaff192010-02-27 01:41:03 +00001169 virtual void HandleInvalidPosition(const char *startSpecifier,
1170 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001171 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001172
1173 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1174
Ted Kremeneke0e53132010-01-28 23:39:18 +00001175 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001176
Ted Kremenek826a3452010-07-16 02:11:22 +00001177protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001178 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1179 const char *startSpec,
1180 unsigned specifierLen,
1181 const char *csStart, unsigned csLen);
1182
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001183 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001184 CharSourceRange getSpecifierRange(const char *startSpecifier,
1185 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001186 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001187
Ted Kremenek0d277352010-01-29 01:06:55 +00001188 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001189
1190 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1191 const analyze_format_string::ConversionSpecifier &CS,
1192 const char *startSpecifier, unsigned specifierLen,
1193 unsigned argIndex);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001194};
1195}
1196
Ted Kremenek826a3452010-07-16 02:11:22 +00001197SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001198 return OrigFormatExpr->getSourceRange();
1199}
1200
Ted Kremenek826a3452010-07-16 02:11:22 +00001201CharSourceRange CheckFormatHandler::
1202getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001203 SourceLocation Start = getLocationOfByte(startSpecifier);
1204 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1205
1206 // Advance the end SourceLocation by one due to half-open ranges.
1207 End = End.getFileLocWithOffset(1);
1208
1209 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001210}
1211
Ted Kremenek826a3452010-07-16 02:11:22 +00001212SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001213 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001214}
1215
Ted Kremenek826a3452010-07-16 02:11:22 +00001216void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1217 unsigned specifierLen){
Ted Kremenek808015a2010-01-29 03:16:21 +00001218 SourceLocation Loc = getLocationOfByte(startSpecifier);
1219 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek826a3452010-07-16 02:11:22 +00001220 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001221}
1222
Ted Kremenekefaff192010-02-27 01:41:03 +00001223void
Ted Kremenek826a3452010-07-16 02:11:22 +00001224CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1225 analyze_format_string::PositionContext p) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001226 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001227 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1228 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001229}
1230
Ted Kremenek826a3452010-07-16 02:11:22 +00001231void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001232 unsigned posLen) {
1233 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001234 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1235 << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001236}
1237
Ted Kremenek826a3452010-07-16 02:11:22 +00001238void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1239 // The presence of a null character is likely an error.
1240 S.Diag(getLocationOfByte(nullCharacter),
1241 diag::warn_printf_format_string_contains_null_char)
1242 << getFormatStringRange();
1243}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001244
Ted Kremenek826a3452010-07-16 02:11:22 +00001245const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1246 return TheCall->getArg(FirstDataArg + i);
1247}
1248
1249void CheckFormatHandler::DoneProcessing() {
1250 // Does the number of data arguments exceed the number of
1251 // format conversions in the format string?
1252 if (!HasVAListArg) {
1253 // Find any arguments that weren't covered.
1254 CoveredArgs.flip();
1255 signed notCoveredArg = CoveredArgs.find_first();
1256 if (notCoveredArg >= 0) {
1257 assert((unsigned)notCoveredArg < NumDataArgs);
1258 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1259 diag::warn_printf_data_arg_not_used)
1260 << getFormatStringRange();
1261 }
1262 }
1263}
1264
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001265bool
1266CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1267 SourceLocation Loc,
1268 const char *startSpec,
1269 unsigned specifierLen,
1270 const char *csStart,
1271 unsigned csLen) {
1272
1273 bool keepGoing = true;
1274 if (argIndex < NumDataArgs) {
1275 // Consider the argument coverered, even though the specifier doesn't
1276 // make sense.
1277 CoveredArgs.set(argIndex);
1278 }
1279 else {
1280 // If argIndex exceeds the number of data arguments we
1281 // don't issue a warning because that is just a cascade of warnings (and
1282 // they may have intended '%%' anyway). We don't want to continue processing
1283 // the format string after this point, however, as we will like just get
1284 // gibberish when trying to match arguments.
1285 keepGoing = false;
1286 }
1287
1288 S.Diag(Loc, diag::warn_format_invalid_conversion)
1289 << llvm::StringRef(csStart, csLen)
1290 << getSpecifierRange(startSpec, specifierLen);
1291
1292 return keepGoing;
1293}
1294
Ted Kremenek666a1972010-07-26 19:45:42 +00001295bool
1296CheckFormatHandler::CheckNumArgs(
1297 const analyze_format_string::FormatSpecifier &FS,
1298 const analyze_format_string::ConversionSpecifier &CS,
1299 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1300
1301 if (argIndex >= NumDataArgs) {
1302 if (FS.usesPositionalArg()) {
1303 S.Diag(getLocationOfByte(CS.getStart()),
1304 diag::warn_printf_positional_arg_exceeds_data_args)
1305 << (argIndex+1) << NumDataArgs
1306 << getSpecifierRange(startSpecifier, specifierLen);
1307 }
1308 else {
1309 S.Diag(getLocationOfByte(CS.getStart()),
1310 diag::warn_printf_insufficient_data_args)
1311 << getSpecifierRange(startSpecifier, specifierLen);
1312 }
1313
1314 return false;
1315 }
1316 return true;
1317}
1318
Ted Kremenek826a3452010-07-16 02:11:22 +00001319//===--- CHECK: Printf format string checking ------------------------------===//
1320
1321namespace {
1322class CheckPrintfHandler : public CheckFormatHandler {
1323public:
1324 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1325 const Expr *origFormatExpr, unsigned firstDataArg,
1326 unsigned numDataArgs, bool isObjCLiteral,
1327 const char *beg, bool hasVAListArg,
1328 const CallExpr *theCall, unsigned formatIdx)
1329 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1330 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1331 theCall, formatIdx) {}
1332
1333
1334 bool HandleInvalidPrintfConversionSpecifier(
1335 const analyze_printf::PrintfSpecifier &FS,
1336 const char *startSpecifier,
1337 unsigned specifierLen);
1338
1339 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1340 const char *startSpecifier,
1341 unsigned specifierLen);
1342
1343 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1344 const char *startSpecifier, unsigned specifierLen);
1345 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1346 const analyze_printf::OptionalAmount &Amt,
1347 unsigned type,
1348 const char *startSpecifier, unsigned specifierLen);
1349 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1350 const analyze_printf::OptionalFlag &flag,
1351 const char *startSpecifier, unsigned specifierLen);
1352 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1353 const analyze_printf::OptionalFlag &ignoredFlag,
1354 const analyze_printf::OptionalFlag &flag,
1355 const char *startSpecifier, unsigned specifierLen);
1356};
1357}
1358
1359bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1360 const analyze_printf::PrintfSpecifier &FS,
1361 const char *startSpecifier,
1362 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001363 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001364 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001365
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001366 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1367 getLocationOfByte(CS.getStart()),
1368 startSpecifier, specifierLen,
1369 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001370}
1371
Ted Kremenek826a3452010-07-16 02:11:22 +00001372bool CheckPrintfHandler::HandleAmount(
1373 const analyze_format_string::OptionalAmount &Amt,
1374 unsigned k, const char *startSpecifier,
1375 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001376
1377 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001378 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001379 unsigned argIndex = Amt.getArgIndex();
1380 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001381 S.Diag(getLocationOfByte(Amt.getStart()),
1382 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek826a3452010-07-16 02:11:22 +00001383 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001384 // Don't do any more checking. We will just emit
1385 // spurious errors.
1386 return false;
1387 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001388
Ted Kremenek0d277352010-01-29 01:06:55 +00001389 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001390 // Although not in conformance with C99, we also allow the argument to be
1391 // an 'unsigned int' as that is a reasonably safe case. GCC also
1392 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001393 CoveredArgs.set(argIndex);
1394 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001395 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001396
1397 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1398 assert(ATR.isValid());
1399
1400 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001401 S.Diag(getLocationOfByte(Amt.getStart()),
1402 diag::warn_printf_asterisk_wrong_type)
1403 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001404 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek826a3452010-07-16 02:11:22 +00001405 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001406 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001407 // Don't do any more checking. We will just emit
1408 // spurious errors.
1409 return false;
1410 }
1411 }
1412 }
1413 return true;
1414}
Ted Kremenek0d277352010-01-29 01:06:55 +00001415
Tom Caree4ee9662010-06-17 19:00:27 +00001416void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001417 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001418 const analyze_printf::OptionalAmount &Amt,
1419 unsigned type,
1420 const char *startSpecifier,
1421 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001422 const analyze_printf::PrintfConversionSpecifier &CS =
1423 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001424 switch (Amt.getHowSpecified()) {
1425 case analyze_printf::OptionalAmount::Constant:
1426 S.Diag(getLocationOfByte(Amt.getStart()),
1427 diag::warn_printf_nonsensical_optional_amount)
1428 << type
1429 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001430 << getSpecifierRange(startSpecifier, specifierLen)
1431 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001432 Amt.getConstantLength()));
1433 break;
1434
1435 default:
1436 S.Diag(getLocationOfByte(Amt.getStart()),
1437 diag::warn_printf_nonsensical_optional_amount)
1438 << type
1439 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001440 << getSpecifierRange(startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001441 break;
1442 }
1443}
1444
Ted Kremenek826a3452010-07-16 02:11:22 +00001445void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001446 const analyze_printf::OptionalFlag &flag,
1447 const char *startSpecifier,
1448 unsigned specifierLen) {
1449 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001450 const analyze_printf::PrintfConversionSpecifier &CS =
1451 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001452 S.Diag(getLocationOfByte(flag.getPosition()),
1453 diag::warn_printf_nonsensical_flag)
1454 << flag.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001455 << getSpecifierRange(startSpecifier, specifierLen)
1456 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Caree4ee9662010-06-17 19:00:27 +00001457}
1458
1459void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001460 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001461 const analyze_printf::OptionalFlag &ignoredFlag,
1462 const analyze_printf::OptionalFlag &flag,
1463 const char *startSpecifier,
1464 unsigned specifierLen) {
1465 // Warn about ignored flag with a fixit removal.
1466 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1467 diag::warn_printf_ignored_flag)
1468 << ignoredFlag.toString() << flag.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001469 << getSpecifierRange(startSpecifier, specifierLen)
1470 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Caree4ee9662010-06-17 19:00:27 +00001471 ignoredFlag.getPosition(), 1));
1472}
1473
Ted Kremeneke0e53132010-01-28 23:39:18 +00001474bool
Ted Kremenek826a3452010-07-16 02:11:22 +00001475CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001476 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001477 const char *startSpecifier,
1478 unsigned specifierLen) {
1479
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001480 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00001481 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001482 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001483
Ted Kremenekbaa40062010-07-19 22:01:06 +00001484 if (FS.consumesDataArgument()) {
1485 if (atFirstArg) {
1486 atFirstArg = false;
1487 usesPositionalArgs = FS.usesPositionalArg();
1488 }
1489 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1490 // Cannot mix-and-match positional and non-positional arguments.
1491 S.Diag(getLocationOfByte(CS.getStart()),
1492 diag::warn_format_mix_positional_nonpositional_args)
1493 << getSpecifierRange(startSpecifier, specifierLen);
1494 return false;
1495 }
Ted Kremenek0d277352010-01-29 01:06:55 +00001496 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001497
Ted Kremenekefaff192010-02-27 01:41:03 +00001498 // First check if the field width, precision, and conversion specifier
1499 // have matching data arguments.
1500 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1501 startSpecifier, specifierLen)) {
1502 return false;
1503 }
1504
1505 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1506 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001507 return false;
1508 }
1509
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001510 if (!CS.consumesDataArgument()) {
1511 // FIXME: Technically specifying a precision or field width here
1512 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001513 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001514 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001515
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001516 // Consume the argument.
1517 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001518 if (argIndex < NumDataArgs) {
1519 // The check to see if the argIndex is valid will come later.
1520 // We set the bit here because we may exit early from this
1521 // function if we encounter some other error.
1522 CoveredArgs.set(argIndex);
1523 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001524
1525 // Check for using an Objective-C specific conversion specifier
1526 // in a non-ObjC literal.
1527 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001528 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1529 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001530 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001531
Tom Caree4ee9662010-06-17 19:00:27 +00001532 // Check for invalid use of field width
1533 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001534 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001535 startSpecifier, specifierLen);
1536 }
1537
1538 // Check for invalid use of precision
1539 if (!FS.hasValidPrecision()) {
1540 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1541 startSpecifier, specifierLen);
1542 }
1543
1544 // Check each flag does not conflict with any other component.
1545 if (!FS.hasValidLeadingZeros())
1546 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1547 if (!FS.hasValidPlusPrefix())
1548 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001549 if (!FS.hasValidSpacePrefix())
1550 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001551 if (!FS.hasValidAlternativeForm())
1552 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1553 if (!FS.hasValidLeftJustified())
1554 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1555
1556 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001557 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1558 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1559 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001560 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1561 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1562 startSpecifier, specifierLen);
1563
1564 // Check the length modifier is valid with the given conversion specifier.
1565 const LengthModifier &LM = FS.getLengthModifier();
1566 if (!FS.hasValidLengthModifier())
1567 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenek649aecf2010-07-20 20:03:43 +00001568 diag::warn_format_nonsensical_length)
Tom Caree4ee9662010-06-17 19:00:27 +00001569 << LM.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001570 << getSpecifierRange(startSpecifier, specifierLen)
1571 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001572 LM.getLength()));
1573
1574 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00001575 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001576 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001577 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek826a3452010-07-16 02:11:22 +00001578 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001579 // Continue checking the other format specifiers.
1580 return true;
1581 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001582
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001583 // The remaining checks depend on the data arguments.
1584 if (HasVAListArg)
1585 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001586
Ted Kremenek666a1972010-07-26 19:45:42 +00001587 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001588 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001589
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001590 // Now type check the data expression that matches the
1591 // format specifier.
1592 const Expr *Ex = getDataArg(argIndex);
1593 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1594 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1595 // Check if we didn't match because of an implicit cast from a 'char'
1596 // or 'short' to an 'int'. This is done because printf is a varargs
1597 // function.
1598 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1599 if (ICE->getType() == S.Context.IntTy)
1600 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1601 return true;
1602
1603 // We may be able to offer a FixItHint if it is a supported type.
1604 PrintfSpecifier fixedFS = FS;
1605 bool success = fixedFS.fixType(Ex->getType());
1606
1607 if (success) {
1608 // Get the fix string from the fixed format specifier
1609 llvm::SmallString<128> buf;
1610 llvm::raw_svector_ostream os(buf);
1611 fixedFS.toString(os);
1612
Ted Kremenek9325eaf2010-08-24 22:24:51 +00001613 // FIXME: getRepresentativeType() perhaps should return a string
1614 // instead of a QualType to better handle when the representative
1615 // type is 'wint_t' (which is defined in the system headers).
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001616 S.Diag(getLocationOfByte(CS.getStart()),
1617 diag::warn_printf_conversion_argument_type_mismatch)
1618 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1619 << getSpecifierRange(startSpecifier, specifierLen)
1620 << Ex->getSourceRange()
1621 << FixItHint::CreateReplacement(
1622 getSpecifierRange(startSpecifier, specifierLen),
1623 os.str());
1624 }
1625 else {
1626 S.Diag(getLocationOfByte(CS.getStart()),
1627 diag::warn_printf_conversion_argument_type_mismatch)
1628 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1629 << getSpecifierRange(startSpecifier, specifierLen)
1630 << Ex->getSourceRange();
1631 }
1632 }
1633
Ted Kremeneke0e53132010-01-28 23:39:18 +00001634 return true;
1635}
1636
Ted Kremenek826a3452010-07-16 02:11:22 +00001637//===--- CHECK: Scanf format string checking ------------------------------===//
1638
1639namespace {
1640class CheckScanfHandler : public CheckFormatHandler {
1641public:
1642 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1643 const Expr *origFormatExpr, unsigned firstDataArg,
1644 unsigned numDataArgs, bool isObjCLiteral,
1645 const char *beg, bool hasVAListArg,
1646 const CallExpr *theCall, unsigned formatIdx)
1647 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1648 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1649 theCall, formatIdx) {}
1650
1651 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1652 const char *startSpecifier,
1653 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001654
1655 bool HandleInvalidScanfConversionSpecifier(
1656 const analyze_scanf::ScanfSpecifier &FS,
1657 const char *startSpecifier,
1658 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00001659
1660 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00001661};
Ted Kremenek07d161f2010-01-29 01:50:07 +00001662}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001663
Ted Kremenekb7c21012010-07-16 18:28:03 +00001664void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1665 const char *end) {
1666 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1667 << getSpecifierRange(start, end - start);
1668}
1669
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001670bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1671 const analyze_scanf::ScanfSpecifier &FS,
1672 const char *startSpecifier,
1673 unsigned specifierLen) {
1674
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001675 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001676 FS.getConversionSpecifier();
1677
1678 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1679 getLocationOfByte(CS.getStart()),
1680 startSpecifier, specifierLen,
1681 CS.getStart(), CS.getLength());
1682}
1683
Ted Kremenek826a3452010-07-16 02:11:22 +00001684bool CheckScanfHandler::HandleScanfSpecifier(
1685 const analyze_scanf::ScanfSpecifier &FS,
1686 const char *startSpecifier,
1687 unsigned specifierLen) {
1688
1689 using namespace analyze_scanf;
1690 using namespace analyze_format_string;
1691
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001692 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001693
Ted Kremenekbaa40062010-07-19 22:01:06 +00001694 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1695 // be used to decide if we are using positional arguments consistently.
1696 if (FS.consumesDataArgument()) {
1697 if (atFirstArg) {
1698 atFirstArg = false;
1699 usesPositionalArgs = FS.usesPositionalArg();
1700 }
1701 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1702 // Cannot mix-and-match positional and non-positional arguments.
1703 S.Diag(getLocationOfByte(CS.getStart()),
1704 diag::warn_format_mix_positional_nonpositional_args)
1705 << getSpecifierRange(startSpecifier, specifierLen);
1706 return false;
1707 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001708 }
1709
1710 // Check if the field with is non-zero.
1711 const OptionalAmount &Amt = FS.getFieldWidth();
1712 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1713 if (Amt.getConstantAmount() == 0) {
1714 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1715 Amt.getConstantLength());
1716 S.Diag(getLocationOfByte(Amt.getStart()),
1717 diag::warn_scanf_nonzero_width)
1718 << R << FixItHint::CreateRemoval(R);
1719 }
1720 }
1721
1722 if (!FS.consumesDataArgument()) {
1723 // FIXME: Technically specifying a precision or field width here
1724 // makes no sense. Worth issuing a warning at some point.
1725 return true;
1726 }
1727
1728 // Consume the argument.
1729 unsigned argIndex = FS.getArgIndex();
1730 if (argIndex < NumDataArgs) {
1731 // The check to see if the argIndex is valid will come later.
1732 // We set the bit here because we may exit early from this
1733 // function if we encounter some other error.
1734 CoveredArgs.set(argIndex);
1735 }
1736
Ted Kremenek1e51c202010-07-20 20:04:47 +00001737 // Check the length modifier is valid with the given conversion specifier.
1738 const LengthModifier &LM = FS.getLengthModifier();
1739 if (!FS.hasValidLengthModifier()) {
1740 S.Diag(getLocationOfByte(LM.getStart()),
1741 diag::warn_format_nonsensical_length)
1742 << LM.toString() << CS.toString()
1743 << getSpecifierRange(startSpecifier, specifierLen)
1744 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1745 LM.getLength()));
1746 }
1747
Ted Kremenek826a3452010-07-16 02:11:22 +00001748 // The remaining checks depend on the data arguments.
1749 if (HasVAListArg)
1750 return true;
1751
Ted Kremenek666a1972010-07-26 19:45:42 +00001752 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00001753 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00001754
1755 // FIXME: Check that the argument type matches the format specifier.
1756
1757 return true;
1758}
1759
1760void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001761 const Expr *OrigFormatExpr,
1762 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001763 unsigned format_idx, unsigned firstDataArg,
1764 bool isPrintf) {
1765
Ted Kremeneke0e53132010-01-28 23:39:18 +00001766 // CHECK: is the format string a wide literal?
1767 if (FExpr->isWide()) {
1768 Diag(FExpr->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001769 diag::warn_format_string_is_wide_literal)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001770 << OrigFormatExpr->getSourceRange();
1771 return;
1772 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001773
Ted Kremeneke0e53132010-01-28 23:39:18 +00001774 // Str - The format string. NOTE: this is NOT null-terminated!
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001775 llvm::StringRef StrRef = FExpr->getString();
1776 const char *Str = StrRef.data();
1777 unsigned StrLen = StrRef.size();
Ted Kremenek826a3452010-07-16 02:11:22 +00001778
Ted Kremeneke0e53132010-01-28 23:39:18 +00001779 // CHECK: empty format string?
Ted Kremeneke0e53132010-01-28 23:39:18 +00001780 if (StrLen == 0) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001781 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001782 << OrigFormatExpr->getSourceRange();
1783 return;
1784 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001785
1786 if (isPrintf) {
1787 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1788 TheCall->getNumArgs() - firstDataArg,
1789 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1790 HasVAListArg, TheCall, format_idx);
1791
1792 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1793 H.DoneProcessing();
1794 }
1795 else {
1796 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1797 TheCall->getNumArgs() - firstDataArg,
1798 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1799 HasVAListArg, TheCall, format_idx);
1800
1801 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1802 H.DoneProcessing();
1803 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00001804}
1805
Ted Kremenek06de2762007-08-17 16:46:58 +00001806//===--- CHECK: Return Address of Stack Variable --------------------------===//
1807
1808static DeclRefExpr* EvalVal(Expr *E);
1809static DeclRefExpr* EvalAddr(Expr* E);
1810
1811/// CheckReturnStackAddr - Check if a return statement returns the address
1812/// of a stack variable.
1813void
1814Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1815 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001816
Ted Kremenek06de2762007-08-17 16:46:58 +00001817 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001818 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001819 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001820 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001821 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001822
Steve Naroffc50a4a52008-09-16 22:25:10 +00001823 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001824 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001825
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001826 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001827 if (C->hasBlockDeclRefExprs())
1828 Diag(C->getLocStart(), diag::err_ret_local_block)
1829 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001830
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001831 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1832 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1833 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001834
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001835 } else if (lhsType->isReferenceType()) {
1836 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001837 // Check for a reference to the stack
1838 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001839 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001840 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001841 }
1842}
1843
1844/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1845/// check if the expression in a return statement evaluates to an address
1846/// to a location on the stack. The recursion is used to traverse the
1847/// AST of the return expression, with recursion backtracking when we
1848/// encounter a subexpression that (1) clearly does not lead to the address
1849/// of a stack variable or (2) is something we cannot determine leads to
1850/// the address of a stack variable based on such local checking.
1851///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001852/// EvalAddr processes expressions that are pointers that are used as
1853/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001854/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001855/// the refers to a stack variable.
1856///
1857/// This implementation handles:
1858///
1859/// * pointer-to-pointer casts
1860/// * implicit conversions from array references to pointers
1861/// * taking the address of fields
1862/// * arbitrary interplay between "&" and "*" operators
1863/// * pointer arithmetic from an address of a stack variable
1864/// * taking the address of an array element where the array is on the stack
1865static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001866 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001867 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001868 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001869 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001870 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Ted Kremenek06de2762007-08-17 16:46:58 +00001872 // Our "symbolic interpreter" is just a dispatch off the currently
1873 // viewed AST node. We then recursively traverse the AST by calling
1874 // EvalAddr and EvalVal appropriately.
1875 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001876 case Stmt::ParenExprClass:
1877 // Ignore parentheses.
1878 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001879
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001880 case Stmt::UnaryOperatorClass: {
1881 // The only unary operator that make sense to handle here
1882 // is AddrOf. All others don't make sense as pointers.
1883 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001884
John McCall2de56d12010-08-25 11:45:40 +00001885 if (U->getOpcode() == UO_AddrOf)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001886 return EvalVal(U->getSubExpr());
1887 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001888 return NULL;
1889 }
Mike Stump1eb44332009-09-09 15:08:12 +00001890
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001891 case Stmt::BinaryOperatorClass: {
1892 // Handle pointer arithmetic. All other binary operators are not valid
1893 // in this context.
1894 BinaryOperator *B = cast<BinaryOperator>(E);
John McCall2de56d12010-08-25 11:45:40 +00001895 BinaryOperatorKind op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001896
John McCall2de56d12010-08-25 11:45:40 +00001897 if (op != BO_Add && op != BO_Sub)
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001898 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001900 Expr *Base = B->getLHS();
1901
1902 // Determine which argument is the real pointer base. It could be
1903 // the RHS argument instead of the LHS.
1904 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001905
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001906 assert (Base->getType()->isPointerType());
1907 return EvalAddr(Base);
1908 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001909
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001910 // For conditional operators we need to see if either the LHS or RHS are
1911 // valid DeclRefExpr*s. If one of them is valid, we return it.
1912 case Stmt::ConditionalOperatorClass: {
1913 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001914
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001915 // Handle the GNU extension for missing LHS.
1916 if (Expr *lhsExpr = C->getLHS())
1917 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1918 return LHS;
1919
1920 return EvalAddr(C->getRHS());
1921 }
Mike Stump1eb44332009-09-09 15:08:12 +00001922
Ted Kremenek54b52742008-08-07 00:49:01 +00001923 // For casts, we need to handle conversions from arrays to
1924 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001925 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001926 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001927 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001928 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001929 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001930
Steve Naroffdd972f22008-09-05 22:11:13 +00001931 if (SubExpr->getType()->isPointerType() ||
1932 SubExpr->getType()->isBlockPointerType() ||
1933 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001934 return EvalAddr(SubExpr);
1935 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001936 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001937 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001938 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001939 }
Mike Stump1eb44332009-09-09 15:08:12 +00001940
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001941 // C++ casts. For dynamic casts, static casts, and const casts, we
1942 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001943 // through the cast. In the case the dynamic cast doesn't fail (and
1944 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001945 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001946 // FIXME: The comment about is wrong; we're not always converting
1947 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001948 // handle references to objects.
1949 case Stmt::CXXStaticCastExprClass:
1950 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001951 case Stmt::CXXConstCastExprClass:
1952 case Stmt::CXXReinterpretCastExprClass: {
1953 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001954 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001955 return EvalAddr(S);
1956 else
1957 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001958 }
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001960 // Everything else: we simply don't reason about them.
1961 default:
1962 return NULL;
1963 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001964}
Mike Stump1eb44332009-09-09 15:08:12 +00001965
Ted Kremenek06de2762007-08-17 16:46:58 +00001966
1967/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1968/// See the comments for EvalAddr for more details.
1969static DeclRefExpr* EvalVal(Expr *E) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001970do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001971 // We should only be called for evaluating non-pointer expressions, or
1972 // expressions with a pointer type that are not used as references but instead
1973 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001974
Ted Kremenek06de2762007-08-17 16:46:58 +00001975 // Our "symbolic interpreter" is just a dispatch off the currently
1976 // viewed AST node. We then recursively traverse the AST by calling
1977 // EvalAddr and EvalVal appropriately.
1978 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001979 case Stmt::ImplicitCastExprClass: {
1980 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
John McCall5baba9d2010-08-25 10:28:54 +00001981 if (IE->getValueKind() == VK_LValue) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001982 E = IE->getSubExpr();
1983 continue;
1984 }
1985 return NULL;
1986 }
1987
Douglas Gregora2813ce2009-10-23 18:54:35 +00001988 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001989 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1990 // at code that refers to a variable's name. We check if it has local
1991 // storage within the function, and if so, return the expression.
1992 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001993
Ted Kremenek06de2762007-08-17 16:46:58 +00001994 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001995 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1996
Ted Kremenek06de2762007-08-17 16:46:58 +00001997 return NULL;
1998 }
Mike Stump1eb44332009-09-09 15:08:12 +00001999
Ted Kremenek68957a92010-08-04 20:01:07 +00002000 case Stmt::ParenExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002001 // Ignore parentheses.
Ted Kremenek68957a92010-08-04 20:01:07 +00002002 E = cast<ParenExpr>(E)->getSubExpr();
2003 continue;
2004 }
Mike Stump1eb44332009-09-09 15:08:12 +00002005
Ted Kremenek06de2762007-08-17 16:46:58 +00002006 case Stmt::UnaryOperatorClass: {
2007 // The only unary operator that make sense to handle here
2008 // is Deref. All others don't resolve to a "name." This includes
2009 // handling all sorts of rvalues passed to a unary operator.
2010 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002011
John McCall2de56d12010-08-25 11:45:40 +00002012 if (U->getOpcode() == UO_Deref)
Ted Kremenek06de2762007-08-17 16:46:58 +00002013 return EvalAddr(U->getSubExpr());
2014
2015 return NULL;
2016 }
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Ted Kremenek06de2762007-08-17 16:46:58 +00002018 case Stmt::ArraySubscriptExprClass: {
2019 // Array subscripts are potential references to data on the stack. We
2020 // retrieve the DeclRefExpr* for the array variable if it indeed
2021 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00002022 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002023 }
Mike Stump1eb44332009-09-09 15:08:12 +00002024
Ted Kremenek06de2762007-08-17 16:46:58 +00002025 case Stmt::ConditionalOperatorClass: {
2026 // For conditional operators we need to see if either the LHS or RHS are
2027 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
2028 ConditionalOperator *C = cast<ConditionalOperator>(E);
2029
Anders Carlsson39073232007-11-30 19:04:31 +00002030 // Handle the GNU extension for missing LHS.
2031 if (Expr *lhsExpr = C->getLHS())
2032 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2033 return LHS;
2034
2035 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00002036 }
Mike Stump1eb44332009-09-09 15:08:12 +00002037
Ted Kremenek06de2762007-08-17 16:46:58 +00002038 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002039 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002040 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002041
Ted Kremenek06de2762007-08-17 16:46:58 +00002042 // Check for indirect access. We only want direct field accesses.
Ted Kremeneka423e812010-09-02 01:12:13 +00002043 if (M->isArrow())
Ted Kremenek06de2762007-08-17 16:46:58 +00002044 return NULL;
Ted Kremeneka423e812010-09-02 01:12:13 +00002045
2046 // Check whether the member type is itself a reference, in which case
2047 // we're not going to refer to the member, but to what the member refers to.
2048 if (M->getMemberDecl()->getType()->isReferenceType())
2049 return NULL;
2050
2051 return EvalVal(M->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002052 }
Mike Stump1eb44332009-09-09 15:08:12 +00002053
Ted Kremenek06de2762007-08-17 16:46:58 +00002054 // Everything else: we simply don't reason about them.
2055 default:
2056 return NULL;
2057 }
Ted Kremenek68957a92010-08-04 20:01:07 +00002058} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00002059}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002060
2061//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2062
2063/// Check for comparisons of floating point operands using != and ==.
2064/// Issue a warning if these are no self-comparisons, as they are not likely
2065/// to do what the programmer intended.
2066void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2067 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002068
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002069 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00002070 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002071
2072 // Special case: check for x == x (which is OK).
2073 // Do not emit warnings for such cases.
2074 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2075 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2076 if (DRL->getDecl() == DRR->getDecl())
2077 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002078
2079
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002080 // Special case: check for comparisons against literals that can be exactly
2081 // represented by APFloat. In such cases, do not emit a warning. This
2082 // is a heuristic: often comparison against such literals are used to
2083 // detect if a value in a variable has not changed. This clearly can
2084 // lead to false negatives.
2085 if (EmitWarning) {
2086 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2087 if (FLL->isExact())
2088 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002089 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002090 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2091 if (FLR->isExact())
2092 EmitWarning = false;
2093 }
2094 }
Mike Stump1eb44332009-09-09 15:08:12 +00002095
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002096 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002097 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002098 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002099 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002100 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002101
Sebastian Redl0eb23302009-01-19 00:08:26 +00002102 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002103 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002104 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002105 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002106
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002107 // Emit the diagnostic.
2108 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002109 Diag(loc, diag::warn_floatingpoint_eq)
2110 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002111}
John McCallba26e582010-01-04 23:21:16 +00002112
John McCallf2370c92010-01-06 05:24:50 +00002113//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2114//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00002115
John McCallf2370c92010-01-06 05:24:50 +00002116namespace {
John McCallba26e582010-01-04 23:21:16 +00002117
John McCallf2370c92010-01-06 05:24:50 +00002118/// Structure recording the 'active' range of an integer-valued
2119/// expression.
2120struct IntRange {
2121 /// The number of bits active in the int.
2122 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00002123
John McCallf2370c92010-01-06 05:24:50 +00002124 /// True if the int is known not to have negative values.
2125 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00002126
John McCallf2370c92010-01-06 05:24:50 +00002127 IntRange(unsigned Width, bool NonNegative)
2128 : Width(Width), NonNegative(NonNegative)
2129 {}
John McCallba26e582010-01-04 23:21:16 +00002130
John McCallf2370c92010-01-06 05:24:50 +00002131 // Returns the range of the bool type.
2132 static IntRange forBoolType() {
2133 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00002134 }
2135
John McCallf2370c92010-01-06 05:24:50 +00002136 // Returns the range of an integral type.
2137 static IntRange forType(ASTContext &C, QualType T) {
2138 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00002139 }
2140
John McCallf2370c92010-01-06 05:24:50 +00002141 // Returns the range of an integeral type based on its canonical
2142 // representation.
2143 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2144 assert(T->isCanonicalUnqualified());
2145
2146 if (const VectorType *VT = dyn_cast<VectorType>(T))
2147 T = VT->getElementType().getTypePtr();
2148 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2149 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00002150
2151 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2152 EnumDecl *Enum = ET->getDecl();
2153 unsigned NumPositive = Enum->getNumPositiveBits();
2154 unsigned NumNegative = Enum->getNumNegativeBits();
2155
2156 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2157 }
John McCallf2370c92010-01-06 05:24:50 +00002158
2159 const BuiltinType *BT = cast<BuiltinType>(T);
2160 assert(BT->isInteger());
2161
2162 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2163 }
2164
2165 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002166 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00002167 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002168 L.NonNegative && R.NonNegative);
2169 }
2170
2171 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002172 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002173 return IntRange(std::min(L.Width, R.Width),
2174 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002175 }
2176};
2177
2178IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2179 if (value.isSigned() && value.isNegative())
2180 return IntRange(value.getMinSignedBits(), false);
2181
2182 if (value.getBitWidth() > MaxWidth)
2183 value.trunc(MaxWidth);
2184
2185 // isNonNegative() just checks the sign bit without considering
2186 // signedness.
2187 return IntRange(value.getActiveBits(), true);
2188}
2189
John McCall0acc3112010-01-06 22:57:21 +00002190IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002191 unsigned MaxWidth) {
2192 if (result.isInt())
2193 return GetValueRange(C, result.getInt(), MaxWidth);
2194
2195 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002196 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2197 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2198 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2199 R = IntRange::join(R, El);
2200 }
John McCallf2370c92010-01-06 05:24:50 +00002201 return R;
2202 }
2203
2204 if (result.isComplexInt()) {
2205 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2206 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2207 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002208 }
2209
2210 // This can happen with lossless casts to intptr_t of "based" lvalues.
2211 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002212 // FIXME: The only reason we need to pass the type in here is to get
2213 // the sign right on this one case. It would be nice if APValue
2214 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002215 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002216 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002217}
John McCallf2370c92010-01-06 05:24:50 +00002218
2219/// Pseudo-evaluate the given integer expression, estimating the
2220/// range of values it might take.
2221///
2222/// \param MaxWidth - the width to which the value will be truncated
2223IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2224 E = E->IgnoreParens();
2225
2226 // Try a full evaluation first.
2227 Expr::EvalResult result;
2228 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002229 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002230
2231 // I think we only want to look through implicit casts here; if the
2232 // user has an explicit widening cast, we should treat the value as
2233 // being of the new, wider type.
2234 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002235 if (CE->getCastKind() == CK_NoOp)
John McCallf2370c92010-01-06 05:24:50 +00002236 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2237
2238 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2239
John McCall2de56d12010-08-25 11:45:40 +00002240 bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
2241 if (!isIntegerCast && CE->getCastKind() == CK_Unknown)
John McCall60fad452010-01-06 22:07:33 +00002242 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2243
John McCallf2370c92010-01-06 05:24:50 +00002244 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002245 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002246 return OutputTypeRange;
2247
2248 IntRange SubRange
2249 = GetExprRange(C, CE->getSubExpr(),
2250 std::min(MaxWidth, OutputTypeRange.Width));
2251
2252 // Bail out if the subexpr's range is as wide as the cast type.
2253 if (SubRange.Width >= OutputTypeRange.Width)
2254 return OutputTypeRange;
2255
2256 // Otherwise, we take the smaller width, and we're non-negative if
2257 // either the output type or the subexpr is.
2258 return IntRange(SubRange.Width,
2259 SubRange.NonNegative || OutputTypeRange.NonNegative);
2260 }
2261
2262 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2263 // If we can fold the condition, just take that operand.
2264 bool CondResult;
2265 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2266 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2267 : CO->getFalseExpr(),
2268 MaxWidth);
2269
2270 // Otherwise, conservatively merge.
2271 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2272 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2273 return IntRange::join(L, R);
2274 }
2275
2276 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2277 switch (BO->getOpcode()) {
2278
2279 // Boolean-valued operations are single-bit and positive.
John McCall2de56d12010-08-25 11:45:40 +00002280 case BO_LAnd:
2281 case BO_LOr:
2282 case BO_LT:
2283 case BO_GT:
2284 case BO_LE:
2285 case BO_GE:
2286 case BO_EQ:
2287 case BO_NE:
John McCallf2370c92010-01-06 05:24:50 +00002288 return IntRange::forBoolType();
2289
John McCallc0cd21d2010-02-23 19:22:29 +00002290 // The type of these compound assignments is the type of the LHS,
2291 // so the RHS is not necessarily an integer.
John McCall2de56d12010-08-25 11:45:40 +00002292 case BO_MulAssign:
2293 case BO_DivAssign:
2294 case BO_RemAssign:
2295 case BO_AddAssign:
2296 case BO_SubAssign:
John McCallc0cd21d2010-02-23 19:22:29 +00002297 return IntRange::forType(C, E->getType());
2298
John McCallf2370c92010-01-06 05:24:50 +00002299 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002300 case BO_PtrMemD:
2301 case BO_PtrMemI:
John McCallf2370c92010-01-06 05:24:50 +00002302 return IntRange::forType(C, E->getType());
2303
John McCall60fad452010-01-06 22:07:33 +00002304 // Bitwise-and uses the *infinum* of the two source ranges.
John McCall2de56d12010-08-25 11:45:40 +00002305 case BO_And:
2306 case BO_AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002307 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2308 GetExprRange(C, BO->getRHS(), MaxWidth));
2309
John McCallf2370c92010-01-06 05:24:50 +00002310 // Left shift gets black-listed based on a judgement call.
John McCall2de56d12010-08-25 11:45:40 +00002311 case BO_Shl:
John McCall3aae6092010-04-07 01:14:35 +00002312 // ...except that we want to treat '1 << (blah)' as logically
2313 // positive. It's an important idiom.
2314 if (IntegerLiteral *I
2315 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2316 if (I->getValue() == 1) {
2317 IntRange R = IntRange::forType(C, E->getType());
2318 return IntRange(R.Width, /*NonNegative*/ true);
2319 }
2320 }
2321 // fallthrough
2322
John McCall2de56d12010-08-25 11:45:40 +00002323 case BO_ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002324 return IntRange::forType(C, E->getType());
2325
John McCall60fad452010-01-06 22:07:33 +00002326 // Right shift by a constant can narrow its left argument.
John McCall2de56d12010-08-25 11:45:40 +00002327 case BO_Shr:
2328 case BO_ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002329 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2330
2331 // If the shift amount is a positive constant, drop the width by
2332 // that much.
2333 llvm::APSInt shift;
2334 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2335 shift.isNonNegative()) {
2336 unsigned zext = shift.getZExtValue();
2337 if (zext >= L.Width)
2338 L.Width = (L.NonNegative ? 0 : 1);
2339 else
2340 L.Width -= zext;
2341 }
2342
2343 return L;
2344 }
2345
2346 // Comma acts as its right operand.
John McCall2de56d12010-08-25 11:45:40 +00002347 case BO_Comma:
John McCallf2370c92010-01-06 05:24:50 +00002348 return GetExprRange(C, BO->getRHS(), MaxWidth);
2349
John McCall60fad452010-01-06 22:07:33 +00002350 // Black-list pointer subtractions.
John McCall2de56d12010-08-25 11:45:40 +00002351 case BO_Sub:
John McCallf2370c92010-01-06 05:24:50 +00002352 if (BO->getLHS()->getType()->isPointerType())
2353 return IntRange::forType(C, E->getType());
2354 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002355
John McCallf2370c92010-01-06 05:24:50 +00002356 default:
2357 break;
2358 }
2359
2360 // Treat every other operator as if it were closed on the
2361 // narrowest type that encompasses both operands.
2362 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2363 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2364 return IntRange::join(L, R);
2365 }
2366
2367 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2368 switch (UO->getOpcode()) {
2369 // Boolean-valued operations are white-listed.
John McCall2de56d12010-08-25 11:45:40 +00002370 case UO_LNot:
John McCallf2370c92010-01-06 05:24:50 +00002371 return IntRange::forBoolType();
2372
2373 // Operations with opaque sources are black-listed.
John McCall2de56d12010-08-25 11:45:40 +00002374 case UO_Deref:
2375 case UO_AddrOf: // should be impossible
John McCallf2370c92010-01-06 05:24:50 +00002376 return IntRange::forType(C, E->getType());
2377
2378 default:
2379 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2380 }
2381 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002382
2383 if (dyn_cast<OffsetOfExpr>(E)) {
2384 IntRange::forType(C, E->getType());
2385 }
John McCallf2370c92010-01-06 05:24:50 +00002386
2387 FieldDecl *BitField = E->getBitField();
2388 if (BitField) {
2389 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2390 unsigned BitWidth = BitWidthAP.getZExtValue();
2391
2392 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2393 }
2394
2395 return IntRange::forType(C, E->getType());
2396}
John McCall51313c32010-01-04 23:31:57 +00002397
John McCall323ed742010-05-06 08:58:33 +00002398IntRange GetExprRange(ASTContext &C, Expr *E) {
2399 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2400}
2401
John McCall51313c32010-01-04 23:31:57 +00002402/// Checks whether the given value, which currently has the given
2403/// source semantics, has the same value when coerced through the
2404/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002405bool IsSameFloatAfterCast(const llvm::APFloat &value,
2406 const llvm::fltSemantics &Src,
2407 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002408 llvm::APFloat truncated = value;
2409
2410 bool ignored;
2411 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2412 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2413
2414 return truncated.bitwiseIsEqual(value);
2415}
2416
2417/// Checks whether the given value, which currently has the given
2418/// source semantics, has the same value when coerced through the
2419/// target semantics.
2420///
2421/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002422bool IsSameFloatAfterCast(const APValue &value,
2423 const llvm::fltSemantics &Src,
2424 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002425 if (value.isFloat())
2426 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2427
2428 if (value.isVector()) {
2429 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2430 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2431 return false;
2432 return true;
2433 }
2434
2435 assert(value.isComplexFloat());
2436 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2437 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2438}
2439
John McCall323ed742010-05-06 08:58:33 +00002440void AnalyzeImplicitConversions(Sema &S, Expr *E);
2441
2442bool IsZero(Sema &S, Expr *E) {
2443 llvm::APSInt Value;
2444 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2445}
2446
2447void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00002448 BinaryOperatorKind op = E->getOpcode();
2449 if (op == BO_LT && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002450 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2451 << "< 0" << "false"
2452 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002453 } else if (op == BO_GE && IsZero(S, E->getRHS())) {
John McCall323ed742010-05-06 08:58:33 +00002454 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2455 << ">= 0" << "true"
2456 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002457 } else if (op == BO_GT && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002458 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2459 << "0 >" << "false"
2460 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00002461 } else if (op == BO_LE && IsZero(S, E->getLHS())) {
John McCall323ed742010-05-06 08:58:33 +00002462 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2463 << "0 <=" << "true"
2464 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2465 }
2466}
2467
2468/// Analyze the operands of the given comparison. Implements the
2469/// fallback case from AnalyzeComparison.
2470void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2471 AnalyzeImplicitConversions(S, E->getLHS());
2472 AnalyzeImplicitConversions(S, E->getRHS());
2473}
John McCall51313c32010-01-04 23:31:57 +00002474
John McCallba26e582010-01-04 23:21:16 +00002475/// \brief Implements -Wsign-compare.
2476///
2477/// \param lex the left-hand expression
2478/// \param rex the right-hand expression
2479/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002480/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002481void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2482 // The type the comparison is being performed in.
2483 QualType T = E->getLHS()->getType();
2484 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2485 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002486
John McCall323ed742010-05-06 08:58:33 +00002487 // We don't do anything special if this isn't an unsigned integral
2488 // comparison: we're only interested in integral comparisons, and
2489 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregorf6094622010-07-23 15:58:24 +00002490 if (!T->hasUnsignedIntegerRepresentation())
John McCall323ed742010-05-06 08:58:33 +00002491 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002492
John McCall323ed742010-05-06 08:58:33 +00002493 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2494 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002495
John McCall323ed742010-05-06 08:58:33 +00002496 // Check to see if one of the (unmodified) operands is of different
2497 // signedness.
2498 Expr *signedOperand, *unsignedOperand;
Douglas Gregorf6094622010-07-23 15:58:24 +00002499 if (lex->getType()->hasSignedIntegerRepresentation()) {
2500 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00002501 "unsigned comparison between two signed integer expressions?");
2502 signedOperand = lex;
2503 unsignedOperand = rex;
Douglas Gregorf6094622010-07-23 15:58:24 +00002504 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCall323ed742010-05-06 08:58:33 +00002505 signedOperand = rex;
2506 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002507 } else {
John McCall323ed742010-05-06 08:58:33 +00002508 CheckTrivialUnsignedComparison(S, E);
2509 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002510 }
2511
John McCall323ed742010-05-06 08:58:33 +00002512 // Otherwise, calculate the effective range of the signed operand.
2513 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002514
John McCall323ed742010-05-06 08:58:33 +00002515 // Go ahead and analyze implicit conversions in the operands. Note
2516 // that we skip the implicit conversions on both sides.
2517 AnalyzeImplicitConversions(S, lex);
2518 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002519
John McCall323ed742010-05-06 08:58:33 +00002520 // If the signed range is non-negative, -Wsign-compare won't fire,
2521 // but we should still check for comparisons which are always true
2522 // or false.
2523 if (signedRange.NonNegative)
2524 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002525
2526 // For (in)equality comparisons, if the unsigned operand is a
2527 // constant which cannot collide with a overflowed signed operand,
2528 // then reinterpreting the signed operand as unsigned will not
2529 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002530 if (E->isEqualityOp()) {
2531 unsigned comparisonWidth = S.Context.getIntWidth(T);
2532 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002533
John McCall323ed742010-05-06 08:58:33 +00002534 // We should never be unable to prove that the unsigned operand is
2535 // non-negative.
2536 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2537
2538 if (unsignedRange.Width < comparisonWidth)
2539 return;
2540 }
2541
2542 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2543 << lex->getType() << rex->getType()
2544 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002545}
2546
John McCall51313c32010-01-04 23:31:57 +00002547/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002548void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002549 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2550}
2551
John McCall323ed742010-05-06 08:58:33 +00002552void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2553 bool *ICContext = 0) {
2554 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002555
John McCall323ed742010-05-06 08:58:33 +00002556 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2557 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2558 if (Source == Target) return;
2559 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002560
2561 // Never diagnose implicit casts to bool.
2562 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2563 return;
2564
2565 // Strip vector types.
2566 if (isa<VectorType>(Source)) {
2567 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002568 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002569
2570 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2571 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2572 }
2573
2574 // Strip complex types.
2575 if (isa<ComplexType>(Source)) {
2576 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002577 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002578
2579 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2580 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2581 }
2582
2583 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2584 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2585
2586 // If the source is floating point...
2587 if (SourceBT && SourceBT->isFloatingPoint()) {
2588 // ...and the target is floating point...
2589 if (TargetBT && TargetBT->isFloatingPoint()) {
2590 // ...then warn if we're dropping FP rank.
2591
2592 // Builtin FP kinds are ordered by increasing FP rank.
2593 if (SourceBT->getKind() > TargetBT->getKind()) {
2594 // Don't warn about float constants that are precisely
2595 // representable in the target type.
2596 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002597 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002598 // Value might be a float, a float vector, or a float complex.
2599 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002600 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2601 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002602 return;
2603 }
2604
John McCall323ed742010-05-06 08:58:33 +00002605 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002606 }
2607 return;
2608 }
2609
2610 // If the target is integral, always warn.
2611 if ((TargetBT && TargetBT->isInteger()))
2612 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002613 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002614
2615 return;
2616 }
2617
John McCallf2370c92010-01-06 05:24:50 +00002618 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002619 return;
2620
John McCall323ed742010-05-06 08:58:33 +00002621 IntRange SourceRange = GetExprRange(S.Context, E);
2622 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002623
2624 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002625 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2626 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002627 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002628 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2629 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2630 }
2631
2632 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2633 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2634 SourceRange.Width == TargetRange.Width)) {
2635 unsigned DiagID = diag::warn_impcast_integer_sign;
2636
2637 // Traditionally, gcc has warned about this under -Wsign-compare.
2638 // We also want to warn about it in -Wconversion.
2639 // So if -Wconversion is off, use a completely identical diagnostic
2640 // in the sign-compare group.
2641 // The conditional-checking code will
2642 if (ICContext) {
2643 DiagID = diag::warn_impcast_integer_sign_conditional;
2644 *ICContext = true;
2645 }
2646
2647 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002648 }
2649
2650 return;
2651}
2652
John McCall323ed742010-05-06 08:58:33 +00002653void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2654
2655void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2656 bool &ICContext) {
2657 E = E->IgnoreParenImpCasts();
2658
2659 if (isa<ConditionalOperator>(E))
2660 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2661
2662 AnalyzeImplicitConversions(S, E);
2663 if (E->getType() != T)
2664 return CheckImplicitConversion(S, E, T, &ICContext);
2665 return;
2666}
2667
2668void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2669 AnalyzeImplicitConversions(S, E->getCond());
2670
2671 bool Suspicious = false;
2672 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2673 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2674
2675 // If -Wconversion would have warned about either of the candidates
2676 // for a signedness conversion to the context type...
2677 if (!Suspicious) return;
2678
2679 // ...but it's currently ignored...
2680 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2681 return;
2682
2683 // ...and -Wsign-compare isn't...
2684 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2685 return;
2686
2687 // ...then check whether it would have warned about either of the
2688 // candidates for a signedness conversion to the condition type.
2689 if (E->getType() != T) {
2690 Suspicious = false;
2691 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2692 E->getType(), &Suspicious);
2693 if (!Suspicious)
2694 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2695 E->getType(), &Suspicious);
2696 if (!Suspicious)
2697 return;
2698 }
2699
2700 // If so, emit a diagnostic under -Wsign-compare.
2701 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2702 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2703 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2704 << lex->getType() << rex->getType()
2705 << lex->getSourceRange() << rex->getSourceRange();
2706}
2707
2708/// AnalyzeImplicitConversions - Find and report any interesting
2709/// implicit conversions in the given expression. There are a couple
2710/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2711void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2712 QualType T = OrigE->getType();
2713 Expr *E = OrigE->IgnoreParenImpCasts();
2714
2715 // For conditional operators, we analyze the arguments as if they
2716 // were being fed directly into the output.
2717 if (isa<ConditionalOperator>(E)) {
2718 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2719 CheckConditionalOperator(S, CO, T);
2720 return;
2721 }
2722
2723 // Go ahead and check any implicit conversions we might have skipped.
2724 // The non-canonical typecheck is just an optimization;
2725 // CheckImplicitConversion will filter out dead implicit conversions.
2726 if (E->getType() != T)
2727 CheckImplicitConversion(S, E, T);
2728
2729 // Now continue drilling into this expression.
2730
2731 // Skip past explicit casts.
2732 if (isa<ExplicitCastExpr>(E)) {
2733 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2734 return AnalyzeImplicitConversions(S, E);
2735 }
2736
2737 // Do a somewhat different check with comparison operators.
2738 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2739 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2740
2741 // These break the otherwise-useful invariant below. Fortunately,
2742 // we don't really need to recurse into them, because any internal
2743 // expressions should have been analyzed already when they were
2744 // built into statements.
2745 if (isa<StmtExpr>(E)) return;
2746
2747 // Don't descend into unevaluated contexts.
2748 if (isa<SizeOfAlignOfExpr>(E)) return;
2749
2750 // Now just recurse over the expression's children.
2751 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2752 I != IE; ++I)
2753 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2754}
2755
2756} // end anonymous namespace
2757
2758/// Diagnoses "dangerous" implicit conversions within the given
2759/// expression (which is a full expression). Implements -Wconversion
2760/// and -Wsign-compare.
2761void Sema::CheckImplicitConversions(Expr *E) {
2762 // Don't diagnose in unevaluated contexts.
2763 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2764 return;
2765
2766 // Don't diagnose for value- or type-dependent expressions.
2767 if (E->isTypeDependent() || E->isValueDependent())
2768 return;
2769
2770 AnalyzeImplicitConversions(*this, E);
2771}
2772
Mike Stumpf8c49212010-01-21 03:59:47 +00002773/// CheckParmsForFunctionDef - Check that the parameters of the given
2774/// function are appropriate for the definition of a function. This
2775/// takes care of any checks that cannot be performed on the
2776/// declaration itself, e.g., that the types of each of the function
2777/// parameters are complete.
2778bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2779 bool HasInvalidParm = false;
2780 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2781 ParmVarDecl *Param = FD->getParamDecl(p);
2782
2783 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2784 // function declarator that is part of a function definition of
2785 // that function shall not have incomplete type.
2786 //
2787 // This is also C++ [dcl.fct]p6.
2788 if (!Param->isInvalidDecl() &&
2789 RequireCompleteType(Param->getLocation(), Param->getType(),
2790 diag::err_typecheck_decl_incomplete_type)) {
2791 Param->setInvalidDecl();
2792 HasInvalidParm = true;
2793 }
2794
2795 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2796 // declaration of each parameter shall include an identifier.
2797 if (Param->getIdentifier() == 0 &&
2798 !Param->isImplicit() &&
2799 !getLangOptions().CPlusPlus)
2800 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002801
2802 // C99 6.7.5.3p12:
2803 // If the function declarator is not part of a definition of that
2804 // function, parameters may have incomplete type and may use the [*]
2805 // notation in their sequences of declarator specifiers to specify
2806 // variable length array types.
2807 QualType PType = Param->getOriginalType();
2808 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2809 if (AT->getSizeModifier() == ArrayType::Star) {
2810 // FIXME: This diagnosic should point the the '[*]' if source-location
2811 // information is added for it.
2812 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2813 }
2814 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002815 }
2816
2817 return HasInvalidParm;
2818}
John McCallb7f4ffe2010-08-12 21:44:57 +00002819
2820/// CheckCastAlign - Implements -Wcast-align, which warns when a
2821/// pointer cast increases the alignment requirements.
2822void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
2823 // This is actually a lot of work to potentially be doing on every
2824 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
2825 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align)
2826 == Diagnostic::Ignored)
2827 return;
2828
2829 // Ignore dependent types.
2830 if (T->isDependentType() || Op->getType()->isDependentType())
2831 return;
2832
2833 // Require that the destination be a pointer type.
2834 const PointerType *DestPtr = T->getAs<PointerType>();
2835 if (!DestPtr) return;
2836
2837 // If the destination has alignment 1, we're done.
2838 QualType DestPointee = DestPtr->getPointeeType();
2839 if (DestPointee->isIncompleteType()) return;
2840 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
2841 if (DestAlign.isOne()) return;
2842
2843 // Require that the source be a pointer type.
2844 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
2845 if (!SrcPtr) return;
2846 QualType SrcPointee = SrcPtr->getPointeeType();
2847
2848 // Whitelist casts from cv void*. We already implicitly
2849 // whitelisted casts to cv void*, since they have alignment 1.
2850 // Also whitelist casts involving incomplete types, which implicitly
2851 // includes 'void'.
2852 if (SrcPointee->isIncompleteType()) return;
2853
2854 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
2855 if (SrcAlign >= DestAlign) return;
2856
2857 Diag(TRange.getBegin(), diag::warn_cast_align)
2858 << Op->getType() << T
2859 << static_cast<unsigned>(SrcAlign.getQuantity())
2860 << static_cast<unsigned>(DestAlign.getQuantity())
2861 << TRange << Op->getSourceRange();
2862}
2863