blob: 9a484932b2e3fe854975003ea4648ce1a1bd3870 [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"
Ted Kremenek826a3452010-07-16 02:11:22 +000016#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000017#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000018#include "clang/AST/CharUnits.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000020#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000021#include "clang/AST/ExprObjC.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000022#include "clang/AST/DeclObjC.h"
23#include "clang/AST/StmtCXX.h"
24#include "clang/AST/StmtObjC.h"
Chris Lattner719e6152009-02-18 19:21:10 +000025#include "clang/Lex/LiteralSupport.h"
Chris Lattner59907c42007-08-10 20:18:51 +000026#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000027#include "llvm/ADT/BitVector.h"
28#include "llvm/ADT/STLExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000029#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000030#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000031#include "clang/Basic/TargetInfo.h"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000032#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000033using namespace clang;
34
Chris Lattner60800082009-02-18 17:49:48 +000035/// getLocationOfStringLiteralByte - Return a source location that points to the
36/// specified byte of the specified string literal.
37///
38/// Strings are amazingly complex. They can be formed from multiple tokens and
39/// can have escape sequences in them in addition to the usual trigraph and
40/// escaped newline business. This routine handles this complexity.
41///
42SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
43 unsigned ByteNo) const {
44 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000045
Chris Lattner60800082009-02-18 17:49:48 +000046 // Loop over all of the tokens in this string until we find the one that
47 // contains the byte we're looking for.
48 unsigned TokNo = 0;
49 while (1) {
50 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
51 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000052
Chris Lattner60800082009-02-18 17:49:48 +000053 // Get the spelling of the string so that we can get the data that makes up
54 // the string literal, not the identifier for the macro it is potentially
55 // expanded through.
56 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
57
58 // Re-lex the token to get its length and original spelling.
59 std::pair<FileID, unsigned> LocInfo =
60 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000061 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000062 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000063 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000064 return StrTokSpellingLoc;
65
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000066 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000067
Chris Lattner60800082009-02-18 17:49:48 +000068 // Create a langops struct and enable trigraphs. This is sufficient for
69 // relexing tokens.
70 LangOptions LangOpts;
71 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000072
Chris Lattner60800082009-02-18 17:49:48 +000073 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000074 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
75 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000076 Token TheTok;
77 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner443e53c2009-02-18 19:26:42 +000079 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000080 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000081 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000082
Chris Lattner2197c962009-02-18 18:52:52 +000083 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000084 if (ByteNo < TokNumBytes ||
85 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000086 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000087 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
88 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner719e6152009-02-18 19:21:10 +000090 // Now that we know the offset of the token in the spelling, use the
91 // preprocessor to get the offset in the original source.
92 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000093 }
Mike Stump1eb44332009-09-09 15:08:12 +000094
Chris Lattner60800082009-02-18 17:49:48 +000095 // Move to the next string token.
96 ++TokNo;
97 ByteNo -= TokNumBytes;
98 }
99}
100
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000101/// CheckablePrintfAttr - does a function call have a "printf" attribute
102/// and arguments that merit checking?
103bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
104 if (Format->getType() == "printf") return true;
105 if (Format->getType() == "printf0") {
106 // printf0 allows null "format" string; if so don't check format/args
107 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000108 // Does the index refer to the implicit object argument?
109 if (isa<CXXMemberCallExpr>(TheCall)) {
110 if (format_idx == 0)
111 return false;
112 --format_idx;
113 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000114 if (format_idx < TheCall->getNumArgs()) {
115 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000116 if (!Format->isNullPointerConstant(Context,
117 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000118 return true;
119 }
120 }
121 return false;
122}
Chris Lattner60800082009-02-18 17:49:48 +0000123
Sebastian Redl0eb23302009-01-19 00:08:26 +0000124Action::OwningExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000125Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redl0eb23302009-01-19 00:08:26 +0000126 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000127
Anders Carlssond406bf02009-08-16 01:56:34 +0000128 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000129 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000130 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000131 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000132 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000133 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000134 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000135 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000136 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000137 if (SemaBuiltinVAStart(TheCall))
138 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000139 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000140 case Builtin::BI__builtin_isgreater:
141 case Builtin::BI__builtin_isgreaterequal:
142 case Builtin::BI__builtin_isless:
143 case Builtin::BI__builtin_islessequal:
144 case Builtin::BI__builtin_islessgreater:
145 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000146 if (SemaBuiltinUnorderedCompare(TheCall))
147 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000148 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000149 case Builtin::BI__builtin_fpclassify:
150 if (SemaBuiltinFPClassification(TheCall, 6))
151 return ExprError();
152 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000153 case Builtin::BI__builtin_isfinite:
154 case Builtin::BI__builtin_isinf:
155 case Builtin::BI__builtin_isinf_sign:
156 case Builtin::BI__builtin_isnan:
157 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000158 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000159 return ExprError();
160 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000161 case Builtin::BI__builtin_return_address:
Eric Christopher691ebc32010-04-17 02:26:23 +0000162 case Builtin::BI__builtin_frame_address: {
163 llvm::APSInt Result;
164 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000165 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000166 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000167 }
168 case Builtin::BI__builtin_eh_return_data_regno: {
169 llvm::APSInt Result;
170 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattner21fb98e2009-09-23 06:06:36 +0000171 return ExprError();
172 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000173 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000174 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000175 return SemaBuiltinShuffleVector(TheCall);
176 // TheCall will be freed by the smart pointer here, but that's fine, since
177 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000178 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000179 if (SemaBuiltinPrefetch(TheCall))
180 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000181 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000182 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000183 if (SemaBuiltinObjectSize(TheCall))
184 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000185 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000186 case Builtin::BI__builtin_longjmp:
187 if (SemaBuiltinLongjmp(TheCall))
188 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000189 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000190 case Builtin::BI__sync_fetch_and_add:
191 case Builtin::BI__sync_fetch_and_sub:
192 case Builtin::BI__sync_fetch_and_or:
193 case Builtin::BI__sync_fetch_and_and:
194 case Builtin::BI__sync_fetch_and_xor:
195 case Builtin::BI__sync_add_and_fetch:
196 case Builtin::BI__sync_sub_and_fetch:
197 case Builtin::BI__sync_and_and_fetch:
198 case Builtin::BI__sync_or_and_fetch:
199 case Builtin::BI__sync_xor_and_fetch:
200 case Builtin::BI__sync_val_compare_and_swap:
201 case Builtin::BI__sync_bool_compare_and_swap:
202 case Builtin::BI__sync_lock_test_and_set:
203 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000204 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000205 }
206
207 // Since the target specific builtins for each arch overlap, only check those
208 // of the arch we are compiling for.
209 if (BuiltinID >= Builtin::FirstTSBuiltin) {
210 switch (Context.Target.getTriple().getArch()) {
211 case llvm::Triple::arm:
212 case llvm::Triple::thumb:
213 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
214 return ExprError();
215 break;
216 case llvm::Triple::x86:
217 case llvm::Triple::x86_64:
218 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
219 return ExprError();
220 break;
221 default:
222 break;
223 }
224 }
225
226 return move(TheCallResult);
227}
228
229bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
230 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000231 case X86::BI__builtin_ia32_palignr128:
232 case X86::BI__builtin_ia32_palignr: {
233 llvm::APSInt Result;
234 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000235 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000236 break;
237 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000238 }
Nate Begeman26a31422010-06-08 02:47:44 +0000239 return false;
240}
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Nate Begeman61eecf52010-06-14 05:21:25 +0000242// Get the valid immediate range for the specified NEON type code.
243static unsigned RFT(unsigned t, bool shift = false) {
244 bool quad = t & 0x10;
245
246 switch (t & 0x7) {
247 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000248 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000249 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000250 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000251 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000252 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000253 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000254 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000255 case 4: // f32
256 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000257 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000258 case 5: // poly8
259 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000260 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000261 case 6: // poly16
262 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000263 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000264 case 7: // float16
265 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000266 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000267 }
268 return 0;
269}
270
Nate Begeman26a31422010-06-08 02:47:44 +0000271bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000272 llvm::APSInt Result;
273
Nate Begeman0d15c532010-06-13 04:47:52 +0000274 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000275 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000276 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000277#define GET_NEON_OVERLOAD_CHECK
278#include "clang/Basic/arm_neon.inc"
279#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000280 }
281
Nate Begeman0d15c532010-06-13 04:47:52 +0000282 // For NEON intrinsics which are overloaded on vector element type, validate
283 // the immediate which specifies which variant to emit.
284 if (mask) {
285 unsigned ArgNo = TheCall->getNumArgs()-1;
286 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
287 return true;
288
Nate Begeman61eecf52010-06-14 05:21:25 +0000289 TV = Result.getLimitedValue(32);
290 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000291 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
292 << TheCall->getArg(ArgNo)->getSourceRange();
293 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000294
Nate Begeman0d15c532010-06-13 04:47:52 +0000295 // For NEON intrinsics which take an immediate value as part of the
296 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000297 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000298 switch (BuiltinID) {
299 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000300 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
301 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begeman99c40bb2010-08-03 21:32:34 +0000302 case ARM::BI__builtin_arm_vcvtr_f:
303 case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000304#define GET_NEON_IMMEDIATE_CHECK
305#include "clang/Basic/arm_neon.inc"
306#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000307 };
308
Nate Begeman61eecf52010-06-14 05:21:25 +0000309 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000310 if (SemaBuiltinConstantArg(TheCall, i, Result))
311 return true;
312
Nate Begeman61eecf52010-06-14 05:21:25 +0000313 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000314 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000315 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000316 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000317 << l << u+l << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000318
Nate Begeman99c40bb2010-08-03 21:32:34 +0000319 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begeman26a31422010-06-08 02:47:44 +0000320 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000321}
Daniel Dunbarde454282008-10-02 18:44:07 +0000322
Anders Carlssond406bf02009-08-16 01:56:34 +0000323/// CheckFunctionCall - Check a direct function call for various correctness
324/// and safety properties not strictly enforced by the C type system.
325bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
326 // Get the IdentifierInfo* for the called function.
327 IdentifierInfo *FnInfo = FDecl->getIdentifier();
328
329 // None of the checks below are needed for functions that don't have
330 // simple names (e.g., C++ conversion functions).
331 if (!FnInfo)
332 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Daniel Dunbarde454282008-10-02 18:44:07 +0000334 // FIXME: This mechanism should be abstracted to be less fragile and
335 // more efficient. For example, just map function ids to custom
336 // handlers.
337
Chris Lattner59907c42007-08-10 20:18:51 +0000338 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000339 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ted Kremenek826a3452010-07-16 02:11:22 +0000340 const bool b = Format->getType() == "scanf";
341 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000342 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000343 CheckPrintfScanfArguments(TheCall, HasVAListArg,
344 Format->getFormatIdx() - 1,
345 HasVAListArg ? 0 : Format->getFirstArg() - 1,
346 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000347 }
Chris Lattner59907c42007-08-10 20:18:51 +0000348 }
Mike Stump1eb44332009-09-09 15:08:12 +0000349
350 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssond406bf02009-08-16 01:56:34 +0000351 NonNull = NonNull->getNext<NonNullAttr>())
352 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000353
Anders Carlssond406bf02009-08-16 01:56:34 +0000354 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000355}
356
Anders Carlssond406bf02009-08-16 01:56:34 +0000357bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000358 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000359 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000360 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000361 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000363 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
364 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000365 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000367 QualType Ty = V->getType();
368 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000369 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Ted Kremenek826a3452010-07-16 02:11:22 +0000371 const bool b = Format->getType() == "scanf";
372 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000373 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Anders Carlssond406bf02009-08-16 01:56:34 +0000375 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000376 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
377 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000378
379 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000380}
381
Chris Lattner5caa3702009-05-08 06:58:22 +0000382/// SemaBuiltinAtomicOverloaded - We have a call to a function like
383/// __sync_fetch_and_add, which is an overloaded function based on the pointer
384/// type of its first argument. The main ActOnCallExpr routines have already
385/// promoted the types of arguments because all of these calls are prototyped as
386/// void(...).
387///
388/// This function goes through and does final semantic checking for these
389/// builtins,
Chandler Carruthd2014572010-07-09 18:59:35 +0000390Sema::OwningExprResult
391Sema::SemaBuiltinAtomicOverloaded(OwningExprResult TheCallResult) {
392 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000393 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
394 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
395
396 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000397 if (TheCall->getNumArgs() < 1) {
398 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
399 << 0 << 1 << TheCall->getNumArgs()
400 << TheCall->getCallee()->getSourceRange();
401 return ExprError();
402 }
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Chris Lattner5caa3702009-05-08 06:58:22 +0000404 // Inspect the first argument of the atomic builtin. This should always be
405 // a pointer type, whose element is an integral scalar or pointer type.
406 // Because it is a pointer type, we don't have to worry about any implicit
407 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000408 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000409 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000410 if (!FirstArg->getType()->isPointerType()) {
411 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
412 << FirstArg->getType() << FirstArg->getSourceRange();
413 return ExprError();
414 }
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Chandler Carruthd2014572010-07-09 18:59:35 +0000416 QualType ValType =
417 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000418 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000419 !ValType->isBlockPointerType()) {
420 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
421 << FirstArg->getType() << FirstArg->getSourceRange();
422 return ExprError();
423 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000424
Chandler Carruth8d13d222010-07-18 20:54:12 +0000425 // The majority of builtins return a value, but a few have special return
426 // types, so allow them to override appropriately below.
427 QualType ResultType = ValType;
428
Chris Lattner5caa3702009-05-08 06:58:22 +0000429 // We need to figure out which concrete builtin this maps onto. For example,
430 // __sync_fetch_and_add with a 2 byte object turns into
431 // __sync_fetch_and_add_2.
432#define BUILTIN_ROW(x) \
433 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
434 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Chris Lattner5caa3702009-05-08 06:58:22 +0000436 static const unsigned BuiltinIndices[][5] = {
437 BUILTIN_ROW(__sync_fetch_and_add),
438 BUILTIN_ROW(__sync_fetch_and_sub),
439 BUILTIN_ROW(__sync_fetch_and_or),
440 BUILTIN_ROW(__sync_fetch_and_and),
441 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000442
Chris Lattner5caa3702009-05-08 06:58:22 +0000443 BUILTIN_ROW(__sync_add_and_fetch),
444 BUILTIN_ROW(__sync_sub_and_fetch),
445 BUILTIN_ROW(__sync_and_and_fetch),
446 BUILTIN_ROW(__sync_or_and_fetch),
447 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Chris Lattner5caa3702009-05-08 06:58:22 +0000449 BUILTIN_ROW(__sync_val_compare_and_swap),
450 BUILTIN_ROW(__sync_bool_compare_and_swap),
451 BUILTIN_ROW(__sync_lock_test_and_set),
452 BUILTIN_ROW(__sync_lock_release)
453 };
Mike Stump1eb44332009-09-09 15:08:12 +0000454#undef BUILTIN_ROW
455
Chris Lattner5caa3702009-05-08 06:58:22 +0000456 // Determine the index of the size.
457 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000458 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000459 case 1: SizeIndex = 0; break;
460 case 2: SizeIndex = 1; break;
461 case 4: SizeIndex = 2; break;
462 case 8: SizeIndex = 3; break;
463 case 16: SizeIndex = 4; break;
464 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000465 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
466 << FirstArg->getType() << FirstArg->getSourceRange();
467 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000468 }
Mike Stump1eb44332009-09-09 15:08:12 +0000469
Chris Lattner5caa3702009-05-08 06:58:22 +0000470 // Each of these builtins has one pointer argument, followed by some number of
471 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
472 // that we ignore. Find out which row of BuiltinIndices to read from as well
473 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000474 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000475 unsigned BuiltinIndex, NumFixed = 1;
476 switch (BuiltinID) {
477 default: assert(0 && "Unknown overloaded atomic builtin!");
478 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
479 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
480 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
481 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
482 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000483
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000484 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
485 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
486 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
487 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
488 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Chris Lattner5caa3702009-05-08 06:58:22 +0000490 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000491 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000492 NumFixed = 2;
493 break;
494 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000495 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000496 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000497 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000498 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000499 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000500 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000501 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000502 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000503 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000504 break;
505 }
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Chris Lattner5caa3702009-05-08 06:58:22 +0000507 // Now that we know how many fixed arguments we expect, first check that we
508 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000509 if (TheCall->getNumArgs() < 1+NumFixed) {
510 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
511 << 0 << 1+NumFixed << TheCall->getNumArgs()
512 << TheCall->getCallee()->getSourceRange();
513 return ExprError();
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000516 // Get the decl for the concrete builtin from this, we can tell what the
517 // concrete integer type we should convert to is.
518 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
519 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
520 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000521 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000522 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
523 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000524
John McCallf871d0c2010-08-07 06:22:56 +0000525 // The first argument --- the pointer --- has a fixed type; we
526 // deduce the types of the rest of the arguments accordingly. Walk
527 // the remaining arguments, converting them to the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000528 for (unsigned i = 0; i != NumFixed; ++i) {
529 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Chris Lattner5caa3702009-05-08 06:58:22 +0000531 // If the argument is an implicit cast, then there was a promotion due to
532 // "...", just remove it now.
533 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
534 Arg = ICE->getSubExpr();
535 ICE->setSubExpr(0);
Chris Lattner5caa3702009-05-08 06:58:22 +0000536 TheCall->setArg(i+1, Arg);
537 }
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Chris Lattner5caa3702009-05-08 06:58:22 +0000539 // GCC does an implicit conversion to the pointer or integer ValType. This
540 // can fail in some cases (1i -> int**), check for this error case now.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000541 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000542 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000543 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000544 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Chris Lattner5caa3702009-05-08 06:58:22 +0000546 // Okay, we have something that *can* be converted to the right type. Check
547 // to see if there is a potentially weird extension going on here. This can
548 // happen when you do an atomic operation on something like an char* and
549 // pass in 42. The 42 gets converted to char. This is even more strange
550 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000551 // FIXME: Do this check.
John McCallf871d0c2010-08-07 06:22:56 +0000552 ImpCastExprToType(Arg, ValType, Kind, ImplicitCastExpr::RValue, &BasePath);
Chris Lattner5caa3702009-05-08 06:58:22 +0000553 TheCall->setArg(i+1, Arg);
554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Chris Lattner5caa3702009-05-08 06:58:22 +0000556 // Switch the DeclRefExpr to refer to the new decl.
557 DRE->setDecl(NewBuiltinDecl);
558 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Chris Lattner5caa3702009-05-08 06:58:22 +0000560 // Set the callee in the CallExpr.
561 // FIXME: This leaks the original parens and implicit casts.
562 Expr *PromotedCall = DRE;
563 UsualUnaryConversions(PromotedCall);
564 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000566 // Change the result type of the call to match the original value type. This
567 // is arbitrary, but the codegen for these builtins ins design to handle it
568 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000569 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000570
571 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000572}
573
574
Chris Lattner69039812009-02-18 06:01:06 +0000575/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000576/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000577/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000578/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000579/// belong to the input codeset UTF-8"
580/// Note: It might also make sense to do the UTF-16 conversion here (would
581/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000582bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000583 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000584 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
585
586 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000587 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
588 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000589 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000590 }
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +0000592 size_t NulPos = Literal->getString().find('\0');
593 if (NulPos != llvm::StringRef::npos) {
594 Diag(getLocationOfStringLiteralByte(Literal, NulPos),
595 diag::warn_cfstring_literal_contains_nul_character)
596 << Arg->getSourceRange();
Daniel Dunbarf015b032009-09-22 10:03:52 +0000597 }
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000599 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000600}
601
Chris Lattnerc27c6652007-12-20 00:05:45 +0000602/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
603/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000604bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
605 Expr *Fn = TheCall->getCallee();
606 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000607 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000608 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000609 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
610 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000611 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000612 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000613 return true;
614 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000615
616 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000617 return Diag(TheCall->getLocEnd(),
618 diag::err_typecheck_call_too_few_args_at_least)
619 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000620 }
621
Chris Lattnerc27c6652007-12-20 00:05:45 +0000622 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000623 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000624 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000625 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000626 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000627 else if (FunctionDecl *FD = getCurFunctionDecl())
628 isVariadic = FD->isVariadic();
629 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000630 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000631
Chris Lattnerc27c6652007-12-20 00:05:45 +0000632 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000633 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
634 return true;
635 }
Mike Stump1eb44332009-09-09 15:08:12 +0000636
Chris Lattner30ce3442007-12-19 23:59:04 +0000637 // Verify that the second argument to the builtin is the last argument of the
638 // current function or method.
639 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000640 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Anders Carlsson88cf2262008-02-11 04:20:54 +0000642 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
643 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000644 // FIXME: This isn't correct for methods (results in bogus warning).
645 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000646 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000647 if (CurBlock)
648 LastArg = *(CurBlock->TheDecl->param_end()-1);
649 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000650 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000651 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000652 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000653 SecondArgIsLastNamedArgument = PV == LastArg;
654 }
655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Chris Lattner30ce3442007-12-19 23:59:04 +0000657 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000658 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000659 diag::warn_second_parameter_of_va_start_not_last_named_argument);
660 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000661}
Chris Lattner30ce3442007-12-19 23:59:04 +0000662
Chris Lattner1b9a0792007-12-20 00:26:33 +0000663/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
664/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000665bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
666 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000667 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000668 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000669 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000670 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000671 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000672 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000673 << SourceRange(TheCall->getArg(2)->getLocStart(),
674 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000675
Chris Lattner925e60d2007-12-28 05:29:59 +0000676 Expr *OrigArg0 = TheCall->getArg(0);
677 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000678
Chris Lattner1b9a0792007-12-20 00:26:33 +0000679 // Do standard promotions between the two arguments, returning their common
680 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000681 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000682
683 // Make sure any conversions are pushed back into the call; this is
684 // type safe since unordered compare builtins are declared as "_Bool
685 // foo(...)".
686 TheCall->setArg(0, OrigArg0);
687 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Douglas Gregorcde01732009-05-19 22:10:17 +0000689 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
690 return false;
691
Chris Lattner1b9a0792007-12-20 00:26:33 +0000692 // If the common type isn't a real floating type, then the arguments were
693 // invalid for this operation.
694 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000695 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000696 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000697 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000698 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000699
Chris Lattner1b9a0792007-12-20 00:26:33 +0000700 return false;
701}
702
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000703/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
704/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000705/// to check everything. We expect the last argument to be a floating point
706/// value.
707bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
708 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000709 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000710 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000711 if (TheCall->getNumArgs() > NumArgs)
712 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000713 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000714 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000715 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000716 (*(TheCall->arg_end()-1))->getLocEnd());
717
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000718 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Eli Friedman9ac6f622009-08-31 20:06:00 +0000720 if (OrigArg->isTypeDependent())
721 return false;
722
Chris Lattner81368fb2010-05-06 05:50:07 +0000723 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000724 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000725 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000726 diag::err_typecheck_call_invalid_unary_fp)
727 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000728
Chris Lattner81368fb2010-05-06 05:50:07 +0000729 // If this is an implicit conversion from float -> double, remove it.
730 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
731 Expr *CastArg = Cast->getSubExpr();
732 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
733 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
734 "promotion from float to double is the only expected cast here");
735 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +0000736 TheCall->setArg(NumArgs-1, CastArg);
737 OrigArg = CastArg;
738 }
739 }
740
Eli Friedman9ac6f622009-08-31 20:06:00 +0000741 return false;
742}
743
Eli Friedmand38617c2008-05-14 19:38:39 +0000744/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
745// This is declared to take (...), so we have to check everything.
Sebastian Redl0eb23302009-01-19 00:08:26 +0000746Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000747 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000748 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000749 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000750 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000751 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000752
Nate Begeman37b6a572010-06-08 00:16:34 +0000753 // Determine which of the following types of shufflevector we're checking:
754 // 1) unary, vector mask: (lhs, mask)
755 // 2) binary, vector mask: (lhs, rhs, mask)
756 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
757 QualType resType = TheCall->getArg(0)->getType();
758 unsigned numElements = 0;
759
Douglas Gregorcde01732009-05-19 22:10:17 +0000760 if (!TheCall->getArg(0)->isTypeDependent() &&
761 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000762 QualType LHSType = TheCall->getArg(0)->getType();
763 QualType RHSType = TheCall->getArg(1)->getType();
764
765 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000766 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000767 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000768 TheCall->getArg(1)->getLocEnd());
769 return ExprError();
770 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000771
772 numElements = LHSType->getAs<VectorType>()->getNumElements();
773 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000774
Nate Begeman37b6a572010-06-08 00:16:34 +0000775 // Check to see if we have a call with 2 vector arguments, the unary shuffle
776 // with mask. If so, verify that RHS is an integer vector type with the
777 // same number of elts as lhs.
778 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +0000779 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +0000780 RHSType->getAs<VectorType>()->getNumElements() != numElements)
781 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
782 << SourceRange(TheCall->getArg(1)->getLocStart(),
783 TheCall->getArg(1)->getLocEnd());
784 numResElements = numElements;
785 }
786 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000787 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000788 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000789 TheCall->getArg(1)->getLocEnd());
790 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000791 } else if (numElements != numResElements) {
792 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000793 resType = Context.getVectorType(eltType, numResElements,
794 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000795 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000796 }
797
798 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000799 if (TheCall->getArg(i)->isTypeDependent() ||
800 TheCall->getArg(i)->isValueDependent())
801 continue;
802
Nate Begeman37b6a572010-06-08 00:16:34 +0000803 llvm::APSInt Result(32);
804 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
805 return ExprError(Diag(TheCall->getLocStart(),
806 diag::err_shufflevector_nonconstant_argument)
807 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000808
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000809 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000810 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000811 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000812 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000813 }
814
815 llvm::SmallVector<Expr*, 32> exprs;
816
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000817 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000818 exprs.push_back(TheCall->getArg(i));
819 TheCall->setArg(i, 0);
820 }
821
Nate Begemana88dc302009-08-12 02:10:25 +0000822 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000823 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000824 TheCall->getCallee()->getLocStart(),
825 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000826}
Chris Lattner30ce3442007-12-19 23:59:04 +0000827
Daniel Dunbar4493f792008-07-21 22:59:13 +0000828/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
829// This is declared to take (const void*, ...) and can take two
830// optional constant int args.
831bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000832 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000833
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000834 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000835 return Diag(TheCall->getLocEnd(),
836 diag::err_typecheck_call_too_many_args_at_most)
837 << 0 /*function call*/ << 3 << NumArgs
838 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000839
840 // Argument 0 is checked for us and the remaining arguments must be
841 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000842 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000843 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000844
Eli Friedman9aef7262009-12-04 00:30:06 +0000845 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000846 if (SemaBuiltinConstantArg(TheCall, i, Result))
847 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000848
Daniel Dunbar4493f792008-07-21 22:59:13 +0000849 // FIXME: gcc issues a warning and rewrites these to 0. These
850 // seems especially odd for the third argument since the default
851 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000852 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000853 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000854 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000855 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000856 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000857 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000858 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000859 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000860 }
861 }
862
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000863 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000864}
865
Eric Christopher691ebc32010-04-17 02:26:23 +0000866/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
867/// TheCall is a constant expression.
868bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
869 llvm::APSInt &Result) {
870 Expr *Arg = TheCall->getArg(ArgNum);
871 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
872 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
873
874 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
875
876 if (!Arg->isIntegerConstantExpr(Result, Context))
877 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000878 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000879
Chris Lattner21fb98e2009-09-23 06:06:36 +0000880 return false;
881}
882
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000883/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
884/// int type). This simply type checks that type is one of the defined
885/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000886// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000887bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000888 llvm::APSInt Result;
889
890 // Check constant-ness first.
891 if (SemaBuiltinConstantArg(TheCall, 1, Result))
892 return true;
893
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000894 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000895 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000896 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
897 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000898 }
899
900 return false;
901}
902
Eli Friedman586d6a82009-05-03 06:04:26 +0000903/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000904/// This checks that val is a constant 1.
905bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
906 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000907 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000908
Eric Christopher691ebc32010-04-17 02:26:23 +0000909 // TODO: This is less than ideal. Overload this to take a value.
910 if (SemaBuiltinConstantArg(TheCall, 1, Result))
911 return true;
912
913 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000914 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
915 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
916
917 return false;
918}
919
Ted Kremenekd30ef872009-01-12 23:09:09 +0000920// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000921bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
922 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000923 unsigned format_idx, unsigned firstDataArg,
924 bool isPrintf) {
925
Douglas Gregorcde01732009-05-19 22:10:17 +0000926 if (E->isTypeDependent() || E->isValueDependent())
927 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000928
929 switch (E->getStmtClass()) {
930 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000931 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +0000932 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
933 format_idx, firstDataArg, isPrintf)
934 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
935 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000936 }
937
938 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000939 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000940 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000941 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000942 }
943
944 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000945 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000946 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000947 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000948 }
Mike Stump1eb44332009-09-09 15:08:12 +0000949
Ted Kremenek082d9362009-03-20 21:35:28 +0000950 case Stmt::DeclRefExprClass: {
951 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Ted Kremenek082d9362009-03-20 21:35:28 +0000953 // As an exception, do not flag errors for variables binding to
954 // const string literals.
955 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
956 bool isConstant = false;
957 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000958
Ted Kremenek082d9362009-03-20 21:35:28 +0000959 if (const ArrayType *AT = Context.getAsArrayType(T)) {
960 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000961 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000962 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000963 PT->getPointeeType().isConstant(Context);
964 }
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Ted Kremenek082d9362009-03-20 21:35:28 +0000966 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000967 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000968 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +0000969 HasVAListArg, format_idx, firstDataArg,
970 isPrintf);
Ted Kremenek082d9362009-03-20 21:35:28 +0000971 }
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Anders Carlssond966a552009-06-28 19:55:58 +0000973 // For vprintf* functions (i.e., HasVAListArg==true), we add a
974 // special check to see if the format string is a function parameter
975 // of the function calling the printf function. If the function
976 // has an attribute indicating it is a printf-like function, then we
977 // should suppress warnings concerning non-literals being used in a call
978 // to a vprintf function. For example:
979 //
980 // void
981 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
982 // va_list ap;
983 // va_start(ap, fmt);
984 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
985 // ...
986 //
987 //
988 // FIXME: We don't have full attribute support yet, so just check to see
989 // if the argument is a DeclRefExpr that references a parameter. We'll
990 // add proper support for checking the attribute later.
991 if (HasVAListArg)
992 if (isa<ParmVarDecl>(VD))
993 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +0000994 }
Mike Stump1eb44332009-09-09 15:08:12 +0000995
Ted Kremenek082d9362009-03-20 21:35:28 +0000996 return false;
997 }
Ted Kremenekd30ef872009-01-12 23:09:09 +0000998
Anders Carlsson8f031b32009-06-27 04:05:33 +0000999 case Stmt::CallExprClass: {
1000 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001001 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001002 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1003 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1004 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001005 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001006 unsigned ArgIndex = FA->getFormatIdx();
1007 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001008
1009 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001010 format_idx, firstDataArg, isPrintf);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001011 }
1012 }
1013 }
1014 }
Mike Stump1eb44332009-09-09 15:08:12 +00001015
Anders Carlsson8f031b32009-06-27 04:05:33 +00001016 return false;
1017 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001018 case Stmt::ObjCStringLiteralClass:
1019 case Stmt::StringLiteralClass: {
1020 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Ted Kremenek082d9362009-03-20 21:35:28 +00001022 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001023 StrE = ObjCFExpr->getString();
1024 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001025 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001026
Ted Kremenekd30ef872009-01-12 23:09:09 +00001027 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001028 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1029 firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001030 return true;
1031 }
Mike Stump1eb44332009-09-09 15:08:12 +00001032
Ted Kremenekd30ef872009-01-12 23:09:09 +00001033 return false;
1034 }
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Ted Kremenek082d9362009-03-20 21:35:28 +00001036 default:
1037 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001038 }
1039}
1040
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001041void
Mike Stump1eb44332009-09-09 15:08:12 +00001042Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1043 const CallExpr *TheCall) {
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001044 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1045 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001046 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001047 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001048 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001049 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1050 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001051 }
1052}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001053
Ted Kremenek826a3452010-07-16 02:11:22 +00001054/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1055/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001056void
Ted Kremenek826a3452010-07-16 02:11:22 +00001057Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1058 unsigned format_idx, unsigned firstDataArg,
1059 bool isPrintf) {
1060
Ted Kremenek082d9362009-03-20 21:35:28 +00001061 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001062
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001063 // The way the format attribute works in GCC, the implicit this argument
1064 // of member functions is counted. However, it doesn't appear in our own
1065 // lists, so decrement format_idx in that case.
1066 if (isa<CXXMemberCallExpr>(TheCall)) {
1067 // Catch a format attribute mistakenly referring to the object argument.
1068 if (format_idx == 0)
1069 return;
1070 --format_idx;
1071 if(firstDataArg != 0)
1072 --firstDataArg;
1073 }
1074
Ted Kremenek826a3452010-07-16 02:11:22 +00001075 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001076 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001077 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001078 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001079 return;
1080 }
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Ted Kremenek082d9362009-03-20 21:35:28 +00001082 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001083
Chris Lattner59907c42007-08-10 20:18:51 +00001084 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001085 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001086 // Dynamically generated format strings are difficult to
1087 // automatically vet at compile time. Requiring that format strings
1088 // are string literals: (1) permits the checking of format strings by
1089 // the compiler and thereby (2) can practically remove the source of
1090 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001091
Mike Stump1eb44332009-09-09 15:08:12 +00001092 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001093 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001094 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001095 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001096 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001097 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001098 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001099
Chris Lattner655f1412009-04-29 04:59:47 +00001100 // If there are no arguments specified, warn with -Wformat-security, otherwise
1101 // warn only with -Wformat-nonliteral.
1102 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001103 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001104 diag::warn_format_nonliteral_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001105 << OrigFormatExpr->getSourceRange();
1106 else
Mike Stump1eb44332009-09-09 15:08:12 +00001107 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001108 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001109 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001110}
Ted Kremenek71895b92007-08-14 17:39:48 +00001111
Ted Kremeneke0e53132010-01-28 23:39:18 +00001112namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001113class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1114protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001115 Sema &S;
1116 const StringLiteral *FExpr;
1117 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001118 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001119 const unsigned NumDataArgs;
1120 const bool IsObjCLiteral;
1121 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001122 const bool HasVAListArg;
1123 const CallExpr *TheCall;
1124 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001125 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001126 bool usesPositionalArgs;
1127 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001128public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001129 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001130 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001131 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001132 const char *beg, bool hasVAListArg,
1133 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001134 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001135 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001136 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001137 IsObjCLiteral(isObjCLiteral), Beg(beg),
1138 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001139 TheCall(theCall), FormatIdx(formatIdx),
1140 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001141 CoveredArgs.resize(numDataArgs);
1142 CoveredArgs.reset();
1143 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001144
Ted Kremenek07d161f2010-01-29 01:50:07 +00001145 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001146
Ted Kremenek826a3452010-07-16 02:11:22 +00001147 void HandleIncompleteSpecifier(const char *startSpecifier,
1148 unsigned specifierLen);
1149
Ted Kremenekefaff192010-02-27 01:41:03 +00001150 virtual void HandleInvalidPosition(const char *startSpecifier,
1151 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001152 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001153
1154 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1155
Ted Kremeneke0e53132010-01-28 23:39:18 +00001156 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001157
Ted Kremenek826a3452010-07-16 02:11:22 +00001158protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001159 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1160 const char *startSpec,
1161 unsigned specifierLen,
1162 const char *csStart, unsigned csLen);
1163
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001164 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001165 CharSourceRange getSpecifierRange(const char *startSpecifier,
1166 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001167 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001168
Ted Kremenek0d277352010-01-29 01:06:55 +00001169 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001170
1171 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1172 const analyze_format_string::ConversionSpecifier &CS,
1173 const char *startSpecifier, unsigned specifierLen,
1174 unsigned argIndex);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001175};
1176}
1177
Ted Kremenek826a3452010-07-16 02:11:22 +00001178SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001179 return OrigFormatExpr->getSourceRange();
1180}
1181
Ted Kremenek826a3452010-07-16 02:11:22 +00001182CharSourceRange CheckFormatHandler::
1183getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001184 SourceLocation Start = getLocationOfByte(startSpecifier);
1185 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1186
1187 // Advance the end SourceLocation by one due to half-open ranges.
1188 End = End.getFileLocWithOffset(1);
1189
1190 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001191}
1192
Ted Kremenek826a3452010-07-16 02:11:22 +00001193SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001194 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001195}
1196
Ted Kremenek826a3452010-07-16 02:11:22 +00001197void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1198 unsigned specifierLen){
Ted Kremenek808015a2010-01-29 03:16:21 +00001199 SourceLocation Loc = getLocationOfByte(startSpecifier);
1200 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek826a3452010-07-16 02:11:22 +00001201 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001202}
1203
Ted Kremenekefaff192010-02-27 01:41:03 +00001204void
Ted Kremenek826a3452010-07-16 02:11:22 +00001205CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1206 analyze_format_string::PositionContext p) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001207 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001208 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1209 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001210}
1211
Ted Kremenek826a3452010-07-16 02:11:22 +00001212void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001213 unsigned posLen) {
1214 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001215 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1216 << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001217}
1218
Ted Kremenek826a3452010-07-16 02:11:22 +00001219void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1220 // The presence of a null character is likely an error.
1221 S.Diag(getLocationOfByte(nullCharacter),
1222 diag::warn_printf_format_string_contains_null_char)
1223 << getFormatStringRange();
1224}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001225
Ted Kremenek826a3452010-07-16 02:11:22 +00001226const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1227 return TheCall->getArg(FirstDataArg + i);
1228}
1229
1230void CheckFormatHandler::DoneProcessing() {
1231 // Does the number of data arguments exceed the number of
1232 // format conversions in the format string?
1233 if (!HasVAListArg) {
1234 // Find any arguments that weren't covered.
1235 CoveredArgs.flip();
1236 signed notCoveredArg = CoveredArgs.find_first();
1237 if (notCoveredArg >= 0) {
1238 assert((unsigned)notCoveredArg < NumDataArgs);
1239 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1240 diag::warn_printf_data_arg_not_used)
1241 << getFormatStringRange();
1242 }
1243 }
1244}
1245
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001246bool
1247CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1248 SourceLocation Loc,
1249 const char *startSpec,
1250 unsigned specifierLen,
1251 const char *csStart,
1252 unsigned csLen) {
1253
1254 bool keepGoing = true;
1255 if (argIndex < NumDataArgs) {
1256 // Consider the argument coverered, even though the specifier doesn't
1257 // make sense.
1258 CoveredArgs.set(argIndex);
1259 }
1260 else {
1261 // If argIndex exceeds the number of data arguments we
1262 // don't issue a warning because that is just a cascade of warnings (and
1263 // they may have intended '%%' anyway). We don't want to continue processing
1264 // the format string after this point, however, as we will like just get
1265 // gibberish when trying to match arguments.
1266 keepGoing = false;
1267 }
1268
1269 S.Diag(Loc, diag::warn_format_invalid_conversion)
1270 << llvm::StringRef(csStart, csLen)
1271 << getSpecifierRange(startSpec, specifierLen);
1272
1273 return keepGoing;
1274}
1275
Ted Kremenek666a1972010-07-26 19:45:42 +00001276bool
1277CheckFormatHandler::CheckNumArgs(
1278 const analyze_format_string::FormatSpecifier &FS,
1279 const analyze_format_string::ConversionSpecifier &CS,
1280 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1281
1282 if (argIndex >= NumDataArgs) {
1283 if (FS.usesPositionalArg()) {
1284 S.Diag(getLocationOfByte(CS.getStart()),
1285 diag::warn_printf_positional_arg_exceeds_data_args)
1286 << (argIndex+1) << NumDataArgs
1287 << getSpecifierRange(startSpecifier, specifierLen);
1288 }
1289 else {
1290 S.Diag(getLocationOfByte(CS.getStart()),
1291 diag::warn_printf_insufficient_data_args)
1292 << getSpecifierRange(startSpecifier, specifierLen);
1293 }
1294
1295 return false;
1296 }
1297 return true;
1298}
1299
Ted Kremenek826a3452010-07-16 02:11:22 +00001300//===--- CHECK: Printf format string checking ------------------------------===//
1301
1302namespace {
1303class CheckPrintfHandler : public CheckFormatHandler {
1304public:
1305 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1306 const Expr *origFormatExpr, unsigned firstDataArg,
1307 unsigned numDataArgs, bool isObjCLiteral,
1308 const char *beg, bool hasVAListArg,
1309 const CallExpr *theCall, unsigned formatIdx)
1310 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1311 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1312 theCall, formatIdx) {}
1313
1314
1315 bool HandleInvalidPrintfConversionSpecifier(
1316 const analyze_printf::PrintfSpecifier &FS,
1317 const char *startSpecifier,
1318 unsigned specifierLen);
1319
1320 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1321 const char *startSpecifier,
1322 unsigned specifierLen);
1323
1324 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1325 const char *startSpecifier, unsigned specifierLen);
1326 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1327 const analyze_printf::OptionalAmount &Amt,
1328 unsigned type,
1329 const char *startSpecifier, unsigned specifierLen);
1330 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1331 const analyze_printf::OptionalFlag &flag,
1332 const char *startSpecifier, unsigned specifierLen);
1333 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1334 const analyze_printf::OptionalFlag &ignoredFlag,
1335 const analyze_printf::OptionalFlag &flag,
1336 const char *startSpecifier, unsigned specifierLen);
1337};
1338}
1339
1340bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1341 const analyze_printf::PrintfSpecifier &FS,
1342 const char *startSpecifier,
1343 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001344 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001345 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001346
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001347 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1348 getLocationOfByte(CS.getStart()),
1349 startSpecifier, specifierLen,
1350 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001351}
1352
Ted Kremenek826a3452010-07-16 02:11:22 +00001353bool CheckPrintfHandler::HandleAmount(
1354 const analyze_format_string::OptionalAmount &Amt,
1355 unsigned k, const char *startSpecifier,
1356 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001357
1358 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001359 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001360 unsigned argIndex = Amt.getArgIndex();
1361 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001362 S.Diag(getLocationOfByte(Amt.getStart()),
1363 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek826a3452010-07-16 02:11:22 +00001364 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001365 // Don't do any more checking. We will just emit
1366 // spurious errors.
1367 return false;
1368 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001369
Ted Kremenek0d277352010-01-29 01:06:55 +00001370 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001371 // Although not in conformance with C99, we also allow the argument to be
1372 // an 'unsigned int' as that is a reasonably safe case. GCC also
1373 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001374 CoveredArgs.set(argIndex);
1375 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001376 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001377
1378 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1379 assert(ATR.isValid());
1380
1381 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001382 S.Diag(getLocationOfByte(Amt.getStart()),
1383 diag::warn_printf_asterisk_wrong_type)
1384 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001385 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek826a3452010-07-16 02:11:22 +00001386 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001387 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001388 // Don't do any more checking. We will just emit
1389 // spurious errors.
1390 return false;
1391 }
1392 }
1393 }
1394 return true;
1395}
Ted Kremenek0d277352010-01-29 01:06:55 +00001396
Tom Caree4ee9662010-06-17 19:00:27 +00001397void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001398 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001399 const analyze_printf::OptionalAmount &Amt,
1400 unsigned type,
1401 const char *startSpecifier,
1402 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001403 const analyze_printf::PrintfConversionSpecifier &CS =
1404 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001405 switch (Amt.getHowSpecified()) {
1406 case analyze_printf::OptionalAmount::Constant:
1407 S.Diag(getLocationOfByte(Amt.getStart()),
1408 diag::warn_printf_nonsensical_optional_amount)
1409 << type
1410 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001411 << getSpecifierRange(startSpecifier, specifierLen)
1412 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001413 Amt.getConstantLength()));
1414 break;
1415
1416 default:
1417 S.Diag(getLocationOfByte(Amt.getStart()),
1418 diag::warn_printf_nonsensical_optional_amount)
1419 << type
1420 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001421 << getSpecifierRange(startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001422 break;
1423 }
1424}
1425
Ted Kremenek826a3452010-07-16 02:11:22 +00001426void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001427 const analyze_printf::OptionalFlag &flag,
1428 const char *startSpecifier,
1429 unsigned specifierLen) {
1430 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001431 const analyze_printf::PrintfConversionSpecifier &CS =
1432 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001433 S.Diag(getLocationOfByte(flag.getPosition()),
1434 diag::warn_printf_nonsensical_flag)
1435 << flag.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001436 << getSpecifierRange(startSpecifier, specifierLen)
1437 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Caree4ee9662010-06-17 19:00:27 +00001438}
1439
1440void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001441 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001442 const analyze_printf::OptionalFlag &ignoredFlag,
1443 const analyze_printf::OptionalFlag &flag,
1444 const char *startSpecifier,
1445 unsigned specifierLen) {
1446 // Warn about ignored flag with a fixit removal.
1447 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1448 diag::warn_printf_ignored_flag)
1449 << ignoredFlag.toString() << flag.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001450 << getSpecifierRange(startSpecifier, specifierLen)
1451 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Caree4ee9662010-06-17 19:00:27 +00001452 ignoredFlag.getPosition(), 1));
1453}
1454
Ted Kremeneke0e53132010-01-28 23:39:18 +00001455bool
Ted Kremenek826a3452010-07-16 02:11:22 +00001456CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001457 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001458 const char *startSpecifier,
1459 unsigned specifierLen) {
1460
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001461 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00001462 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001463 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001464
Ted Kremenekbaa40062010-07-19 22:01:06 +00001465 if (FS.consumesDataArgument()) {
1466 if (atFirstArg) {
1467 atFirstArg = false;
1468 usesPositionalArgs = FS.usesPositionalArg();
1469 }
1470 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1471 // Cannot mix-and-match positional and non-positional arguments.
1472 S.Diag(getLocationOfByte(CS.getStart()),
1473 diag::warn_format_mix_positional_nonpositional_args)
1474 << getSpecifierRange(startSpecifier, specifierLen);
1475 return false;
1476 }
Ted Kremenek0d277352010-01-29 01:06:55 +00001477 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001478
Ted Kremenekefaff192010-02-27 01:41:03 +00001479 // First check if the field width, precision, and conversion specifier
1480 // have matching data arguments.
1481 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1482 startSpecifier, specifierLen)) {
1483 return false;
1484 }
1485
1486 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1487 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001488 return false;
1489 }
1490
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001491 if (!CS.consumesDataArgument()) {
1492 // FIXME: Technically specifying a precision or field width here
1493 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001494 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001495 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001496
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001497 // Consume the argument.
1498 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001499 if (argIndex < NumDataArgs) {
1500 // The check to see if the argIndex is valid will come later.
1501 // We set the bit here because we may exit early from this
1502 // function if we encounter some other error.
1503 CoveredArgs.set(argIndex);
1504 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001505
1506 // Check for using an Objective-C specific conversion specifier
1507 // in a non-ObjC literal.
1508 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001509 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1510 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001511 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001512
Tom Caree4ee9662010-06-17 19:00:27 +00001513 // Check for invalid use of field width
1514 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001515 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001516 startSpecifier, specifierLen);
1517 }
1518
1519 // Check for invalid use of precision
1520 if (!FS.hasValidPrecision()) {
1521 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1522 startSpecifier, specifierLen);
1523 }
1524
1525 // Check each flag does not conflict with any other component.
1526 if (!FS.hasValidLeadingZeros())
1527 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1528 if (!FS.hasValidPlusPrefix())
1529 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001530 if (!FS.hasValidSpacePrefix())
1531 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001532 if (!FS.hasValidAlternativeForm())
1533 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1534 if (!FS.hasValidLeftJustified())
1535 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1536
1537 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001538 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1539 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1540 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001541 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1542 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1543 startSpecifier, specifierLen);
1544
1545 // Check the length modifier is valid with the given conversion specifier.
1546 const LengthModifier &LM = FS.getLengthModifier();
1547 if (!FS.hasValidLengthModifier())
1548 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenek649aecf2010-07-20 20:03:43 +00001549 diag::warn_format_nonsensical_length)
Tom Caree4ee9662010-06-17 19:00:27 +00001550 << LM.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001551 << getSpecifierRange(startSpecifier, specifierLen)
1552 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001553 LM.getLength()));
1554
1555 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00001556 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001557 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001558 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek826a3452010-07-16 02:11:22 +00001559 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001560 // Continue checking the other format specifiers.
1561 return true;
1562 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001563
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001564 // The remaining checks depend on the data arguments.
1565 if (HasVAListArg)
1566 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001567
Ted Kremenek666a1972010-07-26 19:45:42 +00001568 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001569 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001570
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001571 // Now type check the data expression that matches the
1572 // format specifier.
1573 const Expr *Ex = getDataArg(argIndex);
1574 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1575 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1576 // Check if we didn't match because of an implicit cast from a 'char'
1577 // or 'short' to an 'int'. This is done because printf is a varargs
1578 // function.
1579 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1580 if (ICE->getType() == S.Context.IntTy)
1581 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1582 return true;
1583
1584 // We may be able to offer a FixItHint if it is a supported type.
1585 PrintfSpecifier fixedFS = FS;
1586 bool success = fixedFS.fixType(Ex->getType());
1587
1588 if (success) {
1589 // Get the fix string from the fixed format specifier
1590 llvm::SmallString<128> buf;
1591 llvm::raw_svector_ostream os(buf);
1592 fixedFS.toString(os);
1593
1594 S.Diag(getLocationOfByte(CS.getStart()),
1595 diag::warn_printf_conversion_argument_type_mismatch)
1596 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1597 << getSpecifierRange(startSpecifier, specifierLen)
1598 << Ex->getSourceRange()
1599 << FixItHint::CreateReplacement(
1600 getSpecifierRange(startSpecifier, specifierLen),
1601 os.str());
1602 }
1603 else {
1604 S.Diag(getLocationOfByte(CS.getStart()),
1605 diag::warn_printf_conversion_argument_type_mismatch)
1606 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1607 << getSpecifierRange(startSpecifier, specifierLen)
1608 << Ex->getSourceRange();
1609 }
1610 }
1611
Ted Kremeneke0e53132010-01-28 23:39:18 +00001612 return true;
1613}
1614
Ted Kremenek826a3452010-07-16 02:11:22 +00001615//===--- CHECK: Scanf format string checking ------------------------------===//
1616
1617namespace {
1618class CheckScanfHandler : public CheckFormatHandler {
1619public:
1620 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1621 const Expr *origFormatExpr, unsigned firstDataArg,
1622 unsigned numDataArgs, bool isObjCLiteral,
1623 const char *beg, bool hasVAListArg,
1624 const CallExpr *theCall, unsigned formatIdx)
1625 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1626 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1627 theCall, formatIdx) {}
1628
1629 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1630 const char *startSpecifier,
1631 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001632
1633 bool HandleInvalidScanfConversionSpecifier(
1634 const analyze_scanf::ScanfSpecifier &FS,
1635 const char *startSpecifier,
1636 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00001637
1638 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00001639};
Ted Kremenek07d161f2010-01-29 01:50:07 +00001640}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001641
Ted Kremenekb7c21012010-07-16 18:28:03 +00001642void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1643 const char *end) {
1644 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1645 << getSpecifierRange(start, end - start);
1646}
1647
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001648bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1649 const analyze_scanf::ScanfSpecifier &FS,
1650 const char *startSpecifier,
1651 unsigned specifierLen) {
1652
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001653 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001654 FS.getConversionSpecifier();
1655
1656 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1657 getLocationOfByte(CS.getStart()),
1658 startSpecifier, specifierLen,
1659 CS.getStart(), CS.getLength());
1660}
1661
Ted Kremenek826a3452010-07-16 02:11:22 +00001662bool CheckScanfHandler::HandleScanfSpecifier(
1663 const analyze_scanf::ScanfSpecifier &FS,
1664 const char *startSpecifier,
1665 unsigned specifierLen) {
1666
1667 using namespace analyze_scanf;
1668 using namespace analyze_format_string;
1669
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001670 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001671
Ted Kremenekbaa40062010-07-19 22:01:06 +00001672 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1673 // be used to decide if we are using positional arguments consistently.
1674 if (FS.consumesDataArgument()) {
1675 if (atFirstArg) {
1676 atFirstArg = false;
1677 usesPositionalArgs = FS.usesPositionalArg();
1678 }
1679 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1680 // Cannot mix-and-match positional and non-positional arguments.
1681 S.Diag(getLocationOfByte(CS.getStart()),
1682 diag::warn_format_mix_positional_nonpositional_args)
1683 << getSpecifierRange(startSpecifier, specifierLen);
1684 return false;
1685 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001686 }
1687
1688 // Check if the field with is non-zero.
1689 const OptionalAmount &Amt = FS.getFieldWidth();
1690 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1691 if (Amt.getConstantAmount() == 0) {
1692 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1693 Amt.getConstantLength());
1694 S.Diag(getLocationOfByte(Amt.getStart()),
1695 diag::warn_scanf_nonzero_width)
1696 << R << FixItHint::CreateRemoval(R);
1697 }
1698 }
1699
1700 if (!FS.consumesDataArgument()) {
1701 // FIXME: Technically specifying a precision or field width here
1702 // makes no sense. Worth issuing a warning at some point.
1703 return true;
1704 }
1705
1706 // Consume the argument.
1707 unsigned argIndex = FS.getArgIndex();
1708 if (argIndex < NumDataArgs) {
1709 // The check to see if the argIndex is valid will come later.
1710 // We set the bit here because we may exit early from this
1711 // function if we encounter some other error.
1712 CoveredArgs.set(argIndex);
1713 }
1714
Ted Kremenek1e51c202010-07-20 20:04:47 +00001715 // Check the length modifier is valid with the given conversion specifier.
1716 const LengthModifier &LM = FS.getLengthModifier();
1717 if (!FS.hasValidLengthModifier()) {
1718 S.Diag(getLocationOfByte(LM.getStart()),
1719 diag::warn_format_nonsensical_length)
1720 << LM.toString() << CS.toString()
1721 << getSpecifierRange(startSpecifier, specifierLen)
1722 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1723 LM.getLength()));
1724 }
1725
Ted Kremenek826a3452010-07-16 02:11:22 +00001726 // The remaining checks depend on the data arguments.
1727 if (HasVAListArg)
1728 return true;
1729
Ted Kremenek666a1972010-07-26 19:45:42 +00001730 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00001731 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00001732
1733 // FIXME: Check that the argument type matches the format specifier.
1734
1735 return true;
1736}
1737
1738void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001739 const Expr *OrigFormatExpr,
1740 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001741 unsigned format_idx, unsigned firstDataArg,
1742 bool isPrintf) {
1743
Ted Kremeneke0e53132010-01-28 23:39:18 +00001744 // CHECK: is the format string a wide literal?
1745 if (FExpr->isWide()) {
1746 Diag(FExpr->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001747 diag::warn_format_string_is_wide_literal)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001748 << OrigFormatExpr->getSourceRange();
1749 return;
1750 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001751
Ted Kremeneke0e53132010-01-28 23:39:18 +00001752 // Str - The format string. NOTE: this is NOT null-terminated!
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001753 llvm::StringRef StrRef = FExpr->getString();
1754 const char *Str = StrRef.data();
1755 unsigned StrLen = StrRef.size();
Ted Kremenek826a3452010-07-16 02:11:22 +00001756
Ted Kremeneke0e53132010-01-28 23:39:18 +00001757 // CHECK: empty format string?
Ted Kremeneke0e53132010-01-28 23:39:18 +00001758 if (StrLen == 0) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001759 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001760 << OrigFormatExpr->getSourceRange();
1761 return;
1762 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001763
1764 if (isPrintf) {
1765 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1766 TheCall->getNumArgs() - firstDataArg,
1767 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1768 HasVAListArg, TheCall, format_idx);
1769
1770 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1771 H.DoneProcessing();
1772 }
1773 else {
1774 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1775 TheCall->getNumArgs() - firstDataArg,
1776 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1777 HasVAListArg, TheCall, format_idx);
1778
1779 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1780 H.DoneProcessing();
1781 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00001782}
1783
Ted Kremenek06de2762007-08-17 16:46:58 +00001784//===--- CHECK: Return Address of Stack Variable --------------------------===//
1785
1786static DeclRefExpr* EvalVal(Expr *E);
1787static DeclRefExpr* EvalAddr(Expr* E);
1788
1789/// CheckReturnStackAddr - Check if a return statement returns the address
1790/// of a stack variable.
1791void
1792Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1793 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001794
Ted Kremenek06de2762007-08-17 16:46:58 +00001795 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001796 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001797 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001798 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001799 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001800
Steve Naroffc50a4a52008-09-16 22:25:10 +00001801 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001802 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001803
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001804 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001805 if (C->hasBlockDeclRefExprs())
1806 Diag(C->getLocStart(), diag::err_ret_local_block)
1807 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001808
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001809 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1810 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1811 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001812
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001813 } else if (lhsType->isReferenceType()) {
1814 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001815 // Check for a reference to the stack
1816 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001817 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001818 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001819 }
1820}
1821
1822/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1823/// check if the expression in a return statement evaluates to an address
1824/// to a location on the stack. The recursion is used to traverse the
1825/// AST of the return expression, with recursion backtracking when we
1826/// encounter a subexpression that (1) clearly does not lead to the address
1827/// of a stack variable or (2) is something we cannot determine leads to
1828/// the address of a stack variable based on such local checking.
1829///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001830/// EvalAddr processes expressions that are pointers that are used as
1831/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001832/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001833/// the refers to a stack variable.
1834///
1835/// This implementation handles:
1836///
1837/// * pointer-to-pointer casts
1838/// * implicit conversions from array references to pointers
1839/// * taking the address of fields
1840/// * arbitrary interplay between "&" and "*" operators
1841/// * pointer arithmetic from an address of a stack variable
1842/// * taking the address of an array element where the array is on the stack
1843static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001844 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001845 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001846 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001847 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001848 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001849
Ted Kremenek06de2762007-08-17 16:46:58 +00001850 // Our "symbolic interpreter" is just a dispatch off the currently
1851 // viewed AST node. We then recursively traverse the AST by calling
1852 // EvalAddr and EvalVal appropriately.
1853 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001854 case Stmt::ParenExprClass:
1855 // Ignore parentheses.
1856 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001857
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001858 case Stmt::UnaryOperatorClass: {
1859 // The only unary operator that make sense to handle here
1860 // is AddrOf. All others don't make sense as pointers.
1861 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001862
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001863 if (U->getOpcode() == UnaryOperator::AddrOf)
1864 return EvalVal(U->getSubExpr());
1865 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001866 return NULL;
1867 }
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001869 case Stmt::BinaryOperatorClass: {
1870 // Handle pointer arithmetic. All other binary operators are not valid
1871 // in this context.
1872 BinaryOperator *B = cast<BinaryOperator>(E);
1873 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001875 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1876 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001878 Expr *Base = B->getLHS();
1879
1880 // Determine which argument is the real pointer base. It could be
1881 // the RHS argument instead of the LHS.
1882 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001883
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001884 assert (Base->getType()->isPointerType());
1885 return EvalAddr(Base);
1886 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001887
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001888 // For conditional operators we need to see if either the LHS or RHS are
1889 // valid DeclRefExpr*s. If one of them is valid, we return it.
1890 case Stmt::ConditionalOperatorClass: {
1891 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001892
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001893 // Handle the GNU extension for missing LHS.
1894 if (Expr *lhsExpr = C->getLHS())
1895 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1896 return LHS;
1897
1898 return EvalAddr(C->getRHS());
1899 }
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Ted Kremenek54b52742008-08-07 00:49:01 +00001901 // For casts, we need to handle conversions from arrays to
1902 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001903 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001904 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001905 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001906 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001907 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Steve Naroffdd972f22008-09-05 22:11:13 +00001909 if (SubExpr->getType()->isPointerType() ||
1910 SubExpr->getType()->isBlockPointerType() ||
1911 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001912 return EvalAddr(SubExpr);
1913 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001914 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001915 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001916 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001917 }
Mike Stump1eb44332009-09-09 15:08:12 +00001918
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001919 // C++ casts. For dynamic casts, static casts, and const casts, we
1920 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001921 // through the cast. In the case the dynamic cast doesn't fail (and
1922 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001923 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001924 // FIXME: The comment about is wrong; we're not always converting
1925 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001926 // handle references to objects.
1927 case Stmt::CXXStaticCastExprClass:
1928 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001929 case Stmt::CXXConstCastExprClass:
1930 case Stmt::CXXReinterpretCastExprClass: {
1931 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001932 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001933 return EvalAddr(S);
1934 else
1935 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001936 }
Mike Stump1eb44332009-09-09 15:08:12 +00001937
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001938 // Everything else: we simply don't reason about them.
1939 default:
1940 return NULL;
1941 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001942}
Mike Stump1eb44332009-09-09 15:08:12 +00001943
Ted Kremenek06de2762007-08-17 16:46:58 +00001944
1945/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1946/// See the comments for EvalAddr for more details.
1947static DeclRefExpr* EvalVal(Expr *E) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001948do {
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001949 // We should only be called for evaluating non-pointer expressions, or
1950 // expressions with a pointer type that are not used as references but instead
1951 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001952
Ted Kremenek06de2762007-08-17 16:46:58 +00001953 // Our "symbolic interpreter" is just a dispatch off the currently
1954 // viewed AST node. We then recursively traverse the AST by calling
1955 // EvalAddr and EvalVal appropriately.
1956 switch (E->getStmtClass()) {
Ted Kremenek68957a92010-08-04 20:01:07 +00001957 case Stmt::ImplicitCastExprClass: {
1958 ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
1959 if (IE->getCategory() == ImplicitCastExpr::LValue) {
1960 E = IE->getSubExpr();
1961 continue;
1962 }
1963 return NULL;
1964 }
1965
Douglas Gregora2813ce2009-10-23 18:54:35 +00001966 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001967 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1968 // at code that refers to a variable's name. We check if it has local
1969 // storage within the function, and if so, return the expression.
1970 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Ted Kremenek06de2762007-08-17 16:46:58 +00001972 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001973 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1974
Ted Kremenek06de2762007-08-17 16:46:58 +00001975 return NULL;
1976 }
Mike Stump1eb44332009-09-09 15:08:12 +00001977
Ted Kremenek68957a92010-08-04 20:01:07 +00001978 case Stmt::ParenExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001979 // Ignore parentheses.
Ted Kremenek68957a92010-08-04 20:01:07 +00001980 E = cast<ParenExpr>(E)->getSubExpr();
1981 continue;
1982 }
Mike Stump1eb44332009-09-09 15:08:12 +00001983
Ted Kremenek06de2762007-08-17 16:46:58 +00001984 case Stmt::UnaryOperatorClass: {
1985 // The only unary operator that make sense to handle here
1986 // is Deref. All others don't resolve to a "name." This includes
1987 // handling all sorts of rvalues passed to a unary operator.
1988 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001989
Ted Kremenek06de2762007-08-17 16:46:58 +00001990 if (U->getOpcode() == UnaryOperator::Deref)
1991 return EvalAddr(U->getSubExpr());
1992
1993 return NULL;
1994 }
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Ted Kremenek06de2762007-08-17 16:46:58 +00001996 case Stmt::ArraySubscriptExprClass: {
1997 // Array subscripts are potential references to data on the stack. We
1998 // retrieve the DeclRefExpr* for the array variable if it indeed
1999 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00002000 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00002001 }
Mike Stump1eb44332009-09-09 15:08:12 +00002002
Ted Kremenek06de2762007-08-17 16:46:58 +00002003 case Stmt::ConditionalOperatorClass: {
2004 // For conditional operators we need to see if either the LHS or RHS are
2005 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
2006 ConditionalOperator *C = cast<ConditionalOperator>(E);
2007
Anders Carlsson39073232007-11-30 19:04:31 +00002008 // Handle the GNU extension for missing LHS.
2009 if (Expr *lhsExpr = C->getLHS())
2010 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2011 return LHS;
2012
2013 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00002014 }
Mike Stump1eb44332009-09-09 15:08:12 +00002015
Ted Kremenek06de2762007-08-17 16:46:58 +00002016 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002017 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002018 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002019
Ted Kremenek06de2762007-08-17 16:46:58 +00002020 // Check for indirect access. We only want direct field accesses.
2021 if (!M->isArrow())
2022 return EvalVal(M->getBase());
2023 else
2024 return NULL;
2025 }
Mike Stump1eb44332009-09-09 15:08:12 +00002026
Ted Kremenek06de2762007-08-17 16:46:58 +00002027 // Everything else: we simply don't reason about them.
2028 default:
2029 return NULL;
2030 }
Ted Kremenek68957a92010-08-04 20:01:07 +00002031} while (true);
Ted Kremenek06de2762007-08-17 16:46:58 +00002032}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002033
2034//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2035
2036/// Check for comparisons of floating point operands using != and ==.
2037/// Issue a warning if these are no self-comparisons, as they are not likely
2038/// to do what the programmer intended.
2039void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2040 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002041
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002042 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00002043 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002044
2045 // Special case: check for x == x (which is OK).
2046 // Do not emit warnings for such cases.
2047 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2048 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2049 if (DRL->getDecl() == DRR->getDecl())
2050 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002051
2052
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002053 // Special case: check for comparisons against literals that can be exactly
2054 // represented by APFloat. In such cases, do not emit a warning. This
2055 // is a heuristic: often comparison against such literals are used to
2056 // detect if a value in a variable has not changed. This clearly can
2057 // lead to false negatives.
2058 if (EmitWarning) {
2059 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2060 if (FLL->isExact())
2061 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002062 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002063 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2064 if (FLR->isExact())
2065 EmitWarning = false;
2066 }
2067 }
Mike Stump1eb44332009-09-09 15:08:12 +00002068
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002069 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002070 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002071 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002072 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002073 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002074
Sebastian Redl0eb23302009-01-19 00:08:26 +00002075 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002076 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002077 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002078 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002080 // Emit the diagnostic.
2081 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002082 Diag(loc, diag::warn_floatingpoint_eq)
2083 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002084}
John McCallba26e582010-01-04 23:21:16 +00002085
John McCallf2370c92010-01-06 05:24:50 +00002086//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2087//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00002088
John McCallf2370c92010-01-06 05:24:50 +00002089namespace {
John McCallba26e582010-01-04 23:21:16 +00002090
John McCallf2370c92010-01-06 05:24:50 +00002091/// Structure recording the 'active' range of an integer-valued
2092/// expression.
2093struct IntRange {
2094 /// The number of bits active in the int.
2095 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00002096
John McCallf2370c92010-01-06 05:24:50 +00002097 /// True if the int is known not to have negative values.
2098 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00002099
John McCallf2370c92010-01-06 05:24:50 +00002100 IntRange(unsigned Width, bool NonNegative)
2101 : Width(Width), NonNegative(NonNegative)
2102 {}
John McCallba26e582010-01-04 23:21:16 +00002103
John McCallf2370c92010-01-06 05:24:50 +00002104 // Returns the range of the bool type.
2105 static IntRange forBoolType() {
2106 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00002107 }
2108
John McCallf2370c92010-01-06 05:24:50 +00002109 // Returns the range of an integral type.
2110 static IntRange forType(ASTContext &C, QualType T) {
2111 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00002112 }
2113
John McCallf2370c92010-01-06 05:24:50 +00002114 // Returns the range of an integeral type based on its canonical
2115 // representation.
2116 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2117 assert(T->isCanonicalUnqualified());
2118
2119 if (const VectorType *VT = dyn_cast<VectorType>(T))
2120 T = VT->getElementType().getTypePtr();
2121 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2122 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00002123
2124 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2125 EnumDecl *Enum = ET->getDecl();
2126 unsigned NumPositive = Enum->getNumPositiveBits();
2127 unsigned NumNegative = Enum->getNumNegativeBits();
2128
2129 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2130 }
John McCallf2370c92010-01-06 05:24:50 +00002131
2132 const BuiltinType *BT = cast<BuiltinType>(T);
2133 assert(BT->isInteger());
2134
2135 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2136 }
2137
2138 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002139 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00002140 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002141 L.NonNegative && R.NonNegative);
2142 }
2143
2144 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002145 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002146 return IntRange(std::min(L.Width, R.Width),
2147 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002148 }
2149};
2150
2151IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2152 if (value.isSigned() && value.isNegative())
2153 return IntRange(value.getMinSignedBits(), false);
2154
2155 if (value.getBitWidth() > MaxWidth)
2156 value.trunc(MaxWidth);
2157
2158 // isNonNegative() just checks the sign bit without considering
2159 // signedness.
2160 return IntRange(value.getActiveBits(), true);
2161}
2162
John McCall0acc3112010-01-06 22:57:21 +00002163IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002164 unsigned MaxWidth) {
2165 if (result.isInt())
2166 return GetValueRange(C, result.getInt(), MaxWidth);
2167
2168 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002169 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2170 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2171 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2172 R = IntRange::join(R, El);
2173 }
John McCallf2370c92010-01-06 05:24:50 +00002174 return R;
2175 }
2176
2177 if (result.isComplexInt()) {
2178 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2179 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2180 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002181 }
2182
2183 // This can happen with lossless casts to intptr_t of "based" lvalues.
2184 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002185 // FIXME: The only reason we need to pass the type in here is to get
2186 // the sign right on this one case. It would be nice if APValue
2187 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002188 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002189 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002190}
John McCallf2370c92010-01-06 05:24:50 +00002191
2192/// Pseudo-evaluate the given integer expression, estimating the
2193/// range of values it might take.
2194///
2195/// \param MaxWidth - the width to which the value will be truncated
2196IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2197 E = E->IgnoreParens();
2198
2199 // Try a full evaluation first.
2200 Expr::EvalResult result;
2201 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002202 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002203
2204 // I think we only want to look through implicit casts here; if the
2205 // user has an explicit widening cast, we should treat the value as
2206 // being of the new, wider type.
2207 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2208 if (CE->getCastKind() == CastExpr::CK_NoOp)
2209 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2210
2211 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2212
John McCall60fad452010-01-06 22:07:33 +00002213 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2214 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2215 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2216
John McCallf2370c92010-01-06 05:24:50 +00002217 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002218 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002219 return OutputTypeRange;
2220
2221 IntRange SubRange
2222 = GetExprRange(C, CE->getSubExpr(),
2223 std::min(MaxWidth, OutputTypeRange.Width));
2224
2225 // Bail out if the subexpr's range is as wide as the cast type.
2226 if (SubRange.Width >= OutputTypeRange.Width)
2227 return OutputTypeRange;
2228
2229 // Otherwise, we take the smaller width, and we're non-negative if
2230 // either the output type or the subexpr is.
2231 return IntRange(SubRange.Width,
2232 SubRange.NonNegative || OutputTypeRange.NonNegative);
2233 }
2234
2235 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2236 // If we can fold the condition, just take that operand.
2237 bool CondResult;
2238 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2239 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2240 : CO->getFalseExpr(),
2241 MaxWidth);
2242
2243 // Otherwise, conservatively merge.
2244 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2245 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2246 return IntRange::join(L, R);
2247 }
2248
2249 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2250 switch (BO->getOpcode()) {
2251
2252 // Boolean-valued operations are single-bit and positive.
2253 case BinaryOperator::LAnd:
2254 case BinaryOperator::LOr:
2255 case BinaryOperator::LT:
2256 case BinaryOperator::GT:
2257 case BinaryOperator::LE:
2258 case BinaryOperator::GE:
2259 case BinaryOperator::EQ:
2260 case BinaryOperator::NE:
2261 return IntRange::forBoolType();
2262
John McCallc0cd21d2010-02-23 19:22:29 +00002263 // The type of these compound assignments is the type of the LHS,
2264 // so the RHS is not necessarily an integer.
2265 case BinaryOperator::MulAssign:
2266 case BinaryOperator::DivAssign:
2267 case BinaryOperator::RemAssign:
2268 case BinaryOperator::AddAssign:
2269 case BinaryOperator::SubAssign:
2270 return IntRange::forType(C, E->getType());
2271
John McCallf2370c92010-01-06 05:24:50 +00002272 // Operations with opaque sources are black-listed.
2273 case BinaryOperator::PtrMemD:
2274 case BinaryOperator::PtrMemI:
2275 return IntRange::forType(C, E->getType());
2276
John McCall60fad452010-01-06 22:07:33 +00002277 // Bitwise-and uses the *infinum* of the two source ranges.
2278 case BinaryOperator::And:
John McCallc0cd21d2010-02-23 19:22:29 +00002279 case BinaryOperator::AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002280 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2281 GetExprRange(C, BO->getRHS(), MaxWidth));
2282
John McCallf2370c92010-01-06 05:24:50 +00002283 // Left shift gets black-listed based on a judgement call.
2284 case BinaryOperator::Shl:
John McCall3aae6092010-04-07 01:14:35 +00002285 // ...except that we want to treat '1 << (blah)' as logically
2286 // positive. It's an important idiom.
2287 if (IntegerLiteral *I
2288 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2289 if (I->getValue() == 1) {
2290 IntRange R = IntRange::forType(C, E->getType());
2291 return IntRange(R.Width, /*NonNegative*/ true);
2292 }
2293 }
2294 // fallthrough
2295
John McCallc0cd21d2010-02-23 19:22:29 +00002296 case BinaryOperator::ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002297 return IntRange::forType(C, E->getType());
2298
John McCall60fad452010-01-06 22:07:33 +00002299 // Right shift by a constant can narrow its left argument.
John McCallc0cd21d2010-02-23 19:22:29 +00002300 case BinaryOperator::Shr:
2301 case BinaryOperator::ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002302 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2303
2304 // If the shift amount is a positive constant, drop the width by
2305 // that much.
2306 llvm::APSInt shift;
2307 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2308 shift.isNonNegative()) {
2309 unsigned zext = shift.getZExtValue();
2310 if (zext >= L.Width)
2311 L.Width = (L.NonNegative ? 0 : 1);
2312 else
2313 L.Width -= zext;
2314 }
2315
2316 return L;
2317 }
2318
2319 // Comma acts as its right operand.
John McCallf2370c92010-01-06 05:24:50 +00002320 case BinaryOperator::Comma:
2321 return GetExprRange(C, BO->getRHS(), MaxWidth);
2322
John McCall60fad452010-01-06 22:07:33 +00002323 // Black-list pointer subtractions.
John McCallf2370c92010-01-06 05:24:50 +00002324 case BinaryOperator::Sub:
2325 if (BO->getLHS()->getType()->isPointerType())
2326 return IntRange::forType(C, E->getType());
2327 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002328
John McCallf2370c92010-01-06 05:24:50 +00002329 default:
2330 break;
2331 }
2332
2333 // Treat every other operator as if it were closed on the
2334 // narrowest type that encompasses both operands.
2335 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2336 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2337 return IntRange::join(L, R);
2338 }
2339
2340 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2341 switch (UO->getOpcode()) {
2342 // Boolean-valued operations are white-listed.
2343 case UnaryOperator::LNot:
2344 return IntRange::forBoolType();
2345
2346 // Operations with opaque sources are black-listed.
2347 case UnaryOperator::Deref:
2348 case UnaryOperator::AddrOf: // should be impossible
John McCallf2370c92010-01-06 05:24:50 +00002349 return IntRange::forType(C, E->getType());
2350
2351 default:
2352 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2353 }
2354 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002355
2356 if (dyn_cast<OffsetOfExpr>(E)) {
2357 IntRange::forType(C, E->getType());
2358 }
John McCallf2370c92010-01-06 05:24:50 +00002359
2360 FieldDecl *BitField = E->getBitField();
2361 if (BitField) {
2362 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2363 unsigned BitWidth = BitWidthAP.getZExtValue();
2364
2365 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2366 }
2367
2368 return IntRange::forType(C, E->getType());
2369}
John McCall51313c32010-01-04 23:31:57 +00002370
John McCall323ed742010-05-06 08:58:33 +00002371IntRange GetExprRange(ASTContext &C, Expr *E) {
2372 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2373}
2374
John McCall51313c32010-01-04 23:31:57 +00002375/// Checks whether the given value, which currently has the given
2376/// source semantics, has the same value when coerced through the
2377/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002378bool IsSameFloatAfterCast(const llvm::APFloat &value,
2379 const llvm::fltSemantics &Src,
2380 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002381 llvm::APFloat truncated = value;
2382
2383 bool ignored;
2384 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2385 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2386
2387 return truncated.bitwiseIsEqual(value);
2388}
2389
2390/// Checks whether the given value, which currently has the given
2391/// source semantics, has the same value when coerced through the
2392/// target semantics.
2393///
2394/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002395bool IsSameFloatAfterCast(const APValue &value,
2396 const llvm::fltSemantics &Src,
2397 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002398 if (value.isFloat())
2399 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2400
2401 if (value.isVector()) {
2402 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2403 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2404 return false;
2405 return true;
2406 }
2407
2408 assert(value.isComplexFloat());
2409 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2410 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2411}
2412
John McCall323ed742010-05-06 08:58:33 +00002413void AnalyzeImplicitConversions(Sema &S, Expr *E);
2414
2415bool IsZero(Sema &S, Expr *E) {
2416 llvm::APSInt Value;
2417 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2418}
2419
2420void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2421 BinaryOperator::Opcode op = E->getOpcode();
2422 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2423 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2424 << "< 0" << "false"
2425 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2426 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2427 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2428 << ">= 0" << "true"
2429 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2430 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2431 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2432 << "0 >" << "false"
2433 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2434 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2435 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2436 << "0 <=" << "true"
2437 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2438 }
2439}
2440
2441/// Analyze the operands of the given comparison. Implements the
2442/// fallback case from AnalyzeComparison.
2443void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2444 AnalyzeImplicitConversions(S, E->getLHS());
2445 AnalyzeImplicitConversions(S, E->getRHS());
2446}
John McCall51313c32010-01-04 23:31:57 +00002447
John McCallba26e582010-01-04 23:21:16 +00002448/// \brief Implements -Wsign-compare.
2449///
2450/// \param lex the left-hand expression
2451/// \param rex the right-hand expression
2452/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002453/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002454void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2455 // The type the comparison is being performed in.
2456 QualType T = E->getLHS()->getType();
2457 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2458 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002459
John McCall323ed742010-05-06 08:58:33 +00002460 // We don't do anything special if this isn't an unsigned integral
2461 // comparison: we're only interested in integral comparisons, and
2462 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregorf6094622010-07-23 15:58:24 +00002463 if (!T->hasUnsignedIntegerRepresentation())
John McCall323ed742010-05-06 08:58:33 +00002464 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002465
John McCall323ed742010-05-06 08:58:33 +00002466 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2467 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002468
John McCall323ed742010-05-06 08:58:33 +00002469 // Check to see if one of the (unmodified) operands is of different
2470 // signedness.
2471 Expr *signedOperand, *unsignedOperand;
Douglas Gregorf6094622010-07-23 15:58:24 +00002472 if (lex->getType()->hasSignedIntegerRepresentation()) {
2473 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00002474 "unsigned comparison between two signed integer expressions?");
2475 signedOperand = lex;
2476 unsignedOperand = rex;
Douglas Gregorf6094622010-07-23 15:58:24 +00002477 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCall323ed742010-05-06 08:58:33 +00002478 signedOperand = rex;
2479 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002480 } else {
John McCall323ed742010-05-06 08:58:33 +00002481 CheckTrivialUnsignedComparison(S, E);
2482 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002483 }
2484
John McCall323ed742010-05-06 08:58:33 +00002485 // Otherwise, calculate the effective range of the signed operand.
2486 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002487
John McCall323ed742010-05-06 08:58:33 +00002488 // Go ahead and analyze implicit conversions in the operands. Note
2489 // that we skip the implicit conversions on both sides.
2490 AnalyzeImplicitConversions(S, lex);
2491 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002492
John McCall323ed742010-05-06 08:58:33 +00002493 // If the signed range is non-negative, -Wsign-compare won't fire,
2494 // but we should still check for comparisons which are always true
2495 // or false.
2496 if (signedRange.NonNegative)
2497 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002498
2499 // For (in)equality comparisons, if the unsigned operand is a
2500 // constant which cannot collide with a overflowed signed operand,
2501 // then reinterpreting the signed operand as unsigned will not
2502 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002503 if (E->isEqualityOp()) {
2504 unsigned comparisonWidth = S.Context.getIntWidth(T);
2505 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002506
John McCall323ed742010-05-06 08:58:33 +00002507 // We should never be unable to prove that the unsigned operand is
2508 // non-negative.
2509 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2510
2511 if (unsignedRange.Width < comparisonWidth)
2512 return;
2513 }
2514
2515 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2516 << lex->getType() << rex->getType()
2517 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002518}
2519
John McCall51313c32010-01-04 23:31:57 +00002520/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002521void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002522 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2523}
2524
John McCall323ed742010-05-06 08:58:33 +00002525void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2526 bool *ICContext = 0) {
2527 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002528
John McCall323ed742010-05-06 08:58:33 +00002529 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2530 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2531 if (Source == Target) return;
2532 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002533
2534 // Never diagnose implicit casts to bool.
2535 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2536 return;
2537
2538 // Strip vector types.
2539 if (isa<VectorType>(Source)) {
2540 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002541 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002542
2543 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2544 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2545 }
2546
2547 // Strip complex types.
2548 if (isa<ComplexType>(Source)) {
2549 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002550 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002551
2552 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2553 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2554 }
2555
2556 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2557 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2558
2559 // If the source is floating point...
2560 if (SourceBT && SourceBT->isFloatingPoint()) {
2561 // ...and the target is floating point...
2562 if (TargetBT && TargetBT->isFloatingPoint()) {
2563 // ...then warn if we're dropping FP rank.
2564
2565 // Builtin FP kinds are ordered by increasing FP rank.
2566 if (SourceBT->getKind() > TargetBT->getKind()) {
2567 // Don't warn about float constants that are precisely
2568 // representable in the target type.
2569 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002570 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002571 // Value might be a float, a float vector, or a float complex.
2572 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002573 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2574 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002575 return;
2576 }
2577
John McCall323ed742010-05-06 08:58:33 +00002578 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002579 }
2580 return;
2581 }
2582
2583 // If the target is integral, always warn.
2584 if ((TargetBT && TargetBT->isInteger()))
2585 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002586 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002587
2588 return;
2589 }
2590
John McCallf2370c92010-01-06 05:24:50 +00002591 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002592 return;
2593
John McCall323ed742010-05-06 08:58:33 +00002594 IntRange SourceRange = GetExprRange(S.Context, E);
2595 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002596
2597 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002598 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2599 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002600 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002601 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2602 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2603 }
2604
2605 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2606 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2607 SourceRange.Width == TargetRange.Width)) {
2608 unsigned DiagID = diag::warn_impcast_integer_sign;
2609
2610 // Traditionally, gcc has warned about this under -Wsign-compare.
2611 // We also want to warn about it in -Wconversion.
2612 // So if -Wconversion is off, use a completely identical diagnostic
2613 // in the sign-compare group.
2614 // The conditional-checking code will
2615 if (ICContext) {
2616 DiagID = diag::warn_impcast_integer_sign_conditional;
2617 *ICContext = true;
2618 }
2619
2620 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002621 }
2622
2623 return;
2624}
2625
John McCall323ed742010-05-06 08:58:33 +00002626void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2627
2628void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2629 bool &ICContext) {
2630 E = E->IgnoreParenImpCasts();
2631
2632 if (isa<ConditionalOperator>(E))
2633 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2634
2635 AnalyzeImplicitConversions(S, E);
2636 if (E->getType() != T)
2637 return CheckImplicitConversion(S, E, T, &ICContext);
2638 return;
2639}
2640
2641void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2642 AnalyzeImplicitConversions(S, E->getCond());
2643
2644 bool Suspicious = false;
2645 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2646 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2647
2648 // If -Wconversion would have warned about either of the candidates
2649 // for a signedness conversion to the context type...
2650 if (!Suspicious) return;
2651
2652 // ...but it's currently ignored...
2653 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2654 return;
2655
2656 // ...and -Wsign-compare isn't...
2657 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2658 return;
2659
2660 // ...then check whether it would have warned about either of the
2661 // candidates for a signedness conversion to the condition type.
2662 if (E->getType() != T) {
2663 Suspicious = false;
2664 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2665 E->getType(), &Suspicious);
2666 if (!Suspicious)
2667 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2668 E->getType(), &Suspicious);
2669 if (!Suspicious)
2670 return;
2671 }
2672
2673 // If so, emit a diagnostic under -Wsign-compare.
2674 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2675 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2676 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2677 << lex->getType() << rex->getType()
2678 << lex->getSourceRange() << rex->getSourceRange();
2679}
2680
2681/// AnalyzeImplicitConversions - Find and report any interesting
2682/// implicit conversions in the given expression. There are a couple
2683/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2684void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2685 QualType T = OrigE->getType();
2686 Expr *E = OrigE->IgnoreParenImpCasts();
2687
2688 // For conditional operators, we analyze the arguments as if they
2689 // were being fed directly into the output.
2690 if (isa<ConditionalOperator>(E)) {
2691 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2692 CheckConditionalOperator(S, CO, T);
2693 return;
2694 }
2695
2696 // Go ahead and check any implicit conversions we might have skipped.
2697 // The non-canonical typecheck is just an optimization;
2698 // CheckImplicitConversion will filter out dead implicit conversions.
2699 if (E->getType() != T)
2700 CheckImplicitConversion(S, E, T);
2701
2702 // Now continue drilling into this expression.
2703
2704 // Skip past explicit casts.
2705 if (isa<ExplicitCastExpr>(E)) {
2706 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2707 return AnalyzeImplicitConversions(S, E);
2708 }
2709
2710 // Do a somewhat different check with comparison operators.
2711 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2712 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2713
2714 // These break the otherwise-useful invariant below. Fortunately,
2715 // we don't really need to recurse into them, because any internal
2716 // expressions should have been analyzed already when they were
2717 // built into statements.
2718 if (isa<StmtExpr>(E)) return;
2719
2720 // Don't descend into unevaluated contexts.
2721 if (isa<SizeOfAlignOfExpr>(E)) return;
2722
2723 // Now just recurse over the expression's children.
2724 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2725 I != IE; ++I)
2726 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2727}
2728
2729} // end anonymous namespace
2730
2731/// Diagnoses "dangerous" implicit conversions within the given
2732/// expression (which is a full expression). Implements -Wconversion
2733/// and -Wsign-compare.
2734void Sema::CheckImplicitConversions(Expr *E) {
2735 // Don't diagnose in unevaluated contexts.
2736 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2737 return;
2738
2739 // Don't diagnose for value- or type-dependent expressions.
2740 if (E->isTypeDependent() || E->isValueDependent())
2741 return;
2742
2743 AnalyzeImplicitConversions(*this, E);
2744}
2745
Mike Stumpf8c49212010-01-21 03:59:47 +00002746/// CheckParmsForFunctionDef - Check that the parameters of the given
2747/// function are appropriate for the definition of a function. This
2748/// takes care of any checks that cannot be performed on the
2749/// declaration itself, e.g., that the types of each of the function
2750/// parameters are complete.
2751bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2752 bool HasInvalidParm = false;
2753 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2754 ParmVarDecl *Param = FD->getParamDecl(p);
2755
2756 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2757 // function declarator that is part of a function definition of
2758 // that function shall not have incomplete type.
2759 //
2760 // This is also C++ [dcl.fct]p6.
2761 if (!Param->isInvalidDecl() &&
2762 RequireCompleteType(Param->getLocation(), Param->getType(),
2763 diag::err_typecheck_decl_incomplete_type)) {
2764 Param->setInvalidDecl();
2765 HasInvalidParm = true;
2766 }
2767
2768 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2769 // declaration of each parameter shall include an identifier.
2770 if (Param->getIdentifier() == 0 &&
2771 !Param->isImplicit() &&
2772 !getLangOptions().CPlusPlus)
2773 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002774
2775 // C99 6.7.5.3p12:
2776 // If the function declarator is not part of a definition of that
2777 // function, parameters may have incomplete type and may use the [*]
2778 // notation in their sequences of declarator specifiers to specify
2779 // variable length array types.
2780 QualType PType = Param->getOriginalType();
2781 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2782 if (AT->getSizeModifier() == ArrayType::Star) {
2783 // FIXME: This diagnosic should point the the '[*]' if source-location
2784 // information is added for it.
2785 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2786 }
2787 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002788 }
2789
2790 return HasInvalidParm;
2791}
John McCallb7f4ffe2010-08-12 21:44:57 +00002792
2793/// CheckCastAlign - Implements -Wcast-align, which warns when a
2794/// pointer cast increases the alignment requirements.
2795void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
2796 // This is actually a lot of work to potentially be doing on every
2797 // cast; don't do it if we're ignoring -Wcast_align (as is the default).
2798 if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align)
2799 == Diagnostic::Ignored)
2800 return;
2801
2802 // Ignore dependent types.
2803 if (T->isDependentType() || Op->getType()->isDependentType())
2804 return;
2805
2806 // Require that the destination be a pointer type.
2807 const PointerType *DestPtr = T->getAs<PointerType>();
2808 if (!DestPtr) return;
2809
2810 // If the destination has alignment 1, we're done.
2811 QualType DestPointee = DestPtr->getPointeeType();
2812 if (DestPointee->isIncompleteType()) return;
2813 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
2814 if (DestAlign.isOne()) return;
2815
2816 // Require that the source be a pointer type.
2817 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
2818 if (!SrcPtr) return;
2819 QualType SrcPointee = SrcPtr->getPointeeType();
2820
2821 // Whitelist casts from cv void*. We already implicitly
2822 // whitelisted casts to cv void*, since they have alignment 1.
2823 // Also whitelist casts involving incomplete types, which implicitly
2824 // includes 'void'.
2825 if (SrcPointee->isIncompleteType()) return;
2826
2827 CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
2828 if (SrcAlign >= DestAlign) return;
2829
2830 Diag(TRange.getBegin(), diag::warn_cast_align)
2831 << Op->getType() << T
2832 << static_cast<unsigned>(SrcAlign.getQuantity())
2833 << static_cast<unsigned>(DestAlign.getQuantity())
2834 << TRange << Op->getSourceRange();
2835}
2836