blob: d032b3fe0180a9d2e202406721257402ffd33c65 [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
15#include "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"
Nate Begeman0d15c532010-06-13 04:47:52 +000029#include "llvm/ADT/StringExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000030#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000031#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000032#include "clang/Basic/TargetInfo.h"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000033#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000034using namespace clang;
35
Chris Lattner60800082009-02-18 17:49:48 +000036/// getLocationOfStringLiteralByte - Return a source location that points to the
37/// specified byte of the specified string literal.
38///
39/// Strings are amazingly complex. They can be formed from multiple tokens and
40/// can have escape sequences in them in addition to the usual trigraph and
41/// escaped newline business. This routine handles this complexity.
42///
43SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
44 unsigned ByteNo) const {
45 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000046
Chris Lattner60800082009-02-18 17:49:48 +000047 // Loop over all of the tokens in this string until we find the one that
48 // contains the byte we're looking for.
49 unsigned TokNo = 0;
50 while (1) {
51 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
52 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000053
Chris Lattner60800082009-02-18 17:49:48 +000054 // Get the spelling of the string so that we can get the data that makes up
55 // the string literal, not the identifier for the macro it is potentially
56 // expanded through.
57 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
58
59 // Re-lex the token to get its length and original spelling.
60 std::pair<FileID, unsigned> LocInfo =
61 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000062 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000063 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000064 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000065 return StrTokSpellingLoc;
66
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000067 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner60800082009-02-18 17:49:48 +000069 // Create a langops struct and enable trigraphs. This is sufficient for
70 // relexing tokens.
71 LangOptions LangOpts;
72 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattner60800082009-02-18 17:49:48 +000074 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000075 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
76 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000077 Token TheTok;
78 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner443e53c2009-02-18 19:26:42 +000080 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000081 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000082 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000083
Chris Lattner2197c962009-02-18 18:52:52 +000084 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000085 if (ByteNo < TokNumBytes ||
86 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000087 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000088 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
89 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000090
Chris Lattner719e6152009-02-18 19:21:10 +000091 // Now that we know the offset of the token in the spelling, use the
92 // preprocessor to get the offset in the original source.
93 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner60800082009-02-18 17:49:48 +000096 // Move to the next string token.
97 ++TokNo;
98 ByteNo -= TokNumBytes;
99 }
100}
101
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000102/// CheckablePrintfAttr - does a function call have a "printf" attribute
103/// and arguments that merit checking?
104bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
105 if (Format->getType() == "printf") return true;
106 if (Format->getType() == "printf0") {
107 // printf0 allows null "format" string; if so don't check format/args
108 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000109 // Does the index refer to the implicit object argument?
110 if (isa<CXXMemberCallExpr>(TheCall)) {
111 if (format_idx == 0)
112 return false;
113 --format_idx;
114 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000115 if (format_idx < TheCall->getNumArgs()) {
116 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000117 if (!Format->isNullPointerConstant(Context,
118 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000119 return true;
120 }
121 }
122 return false;
123}
Chris Lattner60800082009-02-18 17:49:48 +0000124
Sebastian Redl0eb23302009-01-19 00:08:26 +0000125Action::OwningExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000126Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redl0eb23302009-01-19 00:08:26 +0000127 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000128
Anders Carlssond406bf02009-08-16 01:56:34 +0000129 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000130 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000131 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000132 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000133 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000134 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000135 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000136 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000137 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000138 if (SemaBuiltinVAStart(TheCall))
139 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000140 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000141 case Builtin::BI__builtin_isgreater:
142 case Builtin::BI__builtin_isgreaterequal:
143 case Builtin::BI__builtin_isless:
144 case Builtin::BI__builtin_islessequal:
145 case Builtin::BI__builtin_islessgreater:
146 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000147 if (SemaBuiltinUnorderedCompare(TheCall))
148 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000149 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000150 case Builtin::BI__builtin_fpclassify:
151 if (SemaBuiltinFPClassification(TheCall, 6))
152 return ExprError();
153 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000154 case Builtin::BI__builtin_isfinite:
155 case Builtin::BI__builtin_isinf:
156 case Builtin::BI__builtin_isinf_sign:
157 case Builtin::BI__builtin_isnan:
158 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000159 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000160 return ExprError();
161 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000162 case Builtin::BI__builtin_return_address:
Eric Christopher691ebc32010-04-17 02:26:23 +0000163 case Builtin::BI__builtin_frame_address: {
164 llvm::APSInt Result;
165 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000166 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000167 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000168 }
169 case Builtin::BI__builtin_eh_return_data_regno: {
170 llvm::APSInt Result;
171 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattner21fb98e2009-09-23 06:06:36 +0000172 return ExprError();
173 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000174 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000175 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000176 return SemaBuiltinShuffleVector(TheCall);
177 // TheCall will be freed by the smart pointer here, but that's fine, since
178 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000179 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000180 if (SemaBuiltinPrefetch(TheCall))
181 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000182 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000183 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000184 if (SemaBuiltinObjectSize(TheCall))
185 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000186 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000187 case Builtin::BI__builtin_longjmp:
188 if (SemaBuiltinLongjmp(TheCall))
189 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000190 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000191 case Builtin::BI__sync_fetch_and_add:
192 case Builtin::BI__sync_fetch_and_sub:
193 case Builtin::BI__sync_fetch_and_or:
194 case Builtin::BI__sync_fetch_and_and:
195 case Builtin::BI__sync_fetch_and_xor:
196 case Builtin::BI__sync_add_and_fetch:
197 case Builtin::BI__sync_sub_and_fetch:
198 case Builtin::BI__sync_and_and_fetch:
199 case Builtin::BI__sync_or_and_fetch:
200 case Builtin::BI__sync_xor_and_fetch:
201 case Builtin::BI__sync_val_compare_and_swap:
202 case Builtin::BI__sync_bool_compare_and_swap:
203 case Builtin::BI__sync_lock_test_and_set:
204 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000205 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000206 }
207
208 // Since the target specific builtins for each arch overlap, only check those
209 // of the arch we are compiling for.
210 if (BuiltinID >= Builtin::FirstTSBuiltin) {
211 switch (Context.Target.getTriple().getArch()) {
212 case llvm::Triple::arm:
213 case llvm::Triple::thumb:
214 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
215 return ExprError();
216 break;
217 case llvm::Triple::x86:
218 case llvm::Triple::x86_64:
219 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
220 return ExprError();
221 break;
222 default:
223 break;
224 }
225 }
226
227 return move(TheCallResult);
228}
229
230bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
231 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000232 case X86::BI__builtin_ia32_palignr128:
233 case X86::BI__builtin_ia32_palignr: {
234 llvm::APSInt Result;
235 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000236 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000237 break;
238 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000239 }
Nate Begeman26a31422010-06-08 02:47:44 +0000240 return false;
241}
Mike Stump1eb44332009-09-09 15:08:12 +0000242
Nate Begeman61eecf52010-06-14 05:21:25 +0000243// Get the valid immediate range for the specified NEON type code.
244static unsigned RFT(unsigned t, bool shift = false) {
245 bool quad = t & 0x10;
246
247 switch (t & 0x7) {
248 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000249 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000250 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000251 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000252 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000253 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000254 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000255 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000256 case 4: // f32
257 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000258 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000259 case 5: // poly8
260 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000261 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000262 case 6: // poly16
263 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000264 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000265 case 7: // float16
266 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000267 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000268 }
269 return 0;
270}
271
Nate Begeman26a31422010-06-08 02:47:44 +0000272bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000273 llvm::APSInt Result;
274
Nate Begeman0d15c532010-06-13 04:47:52 +0000275 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000276 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000277 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000278#define GET_NEON_OVERLOAD_CHECK
279#include "clang/Basic/arm_neon.inc"
280#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000281 }
282
Nate Begeman0d15c532010-06-13 04:47:52 +0000283 // For NEON intrinsics which are overloaded on vector element type, validate
284 // the immediate which specifies which variant to emit.
285 if (mask) {
286 unsigned ArgNo = TheCall->getNumArgs()-1;
287 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
288 return true;
289
Nate Begeman61eecf52010-06-14 05:21:25 +0000290 TV = Result.getLimitedValue(32);
291 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000292 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
293 << TheCall->getArg(ArgNo)->getSourceRange();
294 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000295
Nate Begeman0d15c532010-06-13 04:47:52 +0000296 // For NEON intrinsics which take an immediate value as part of the
297 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000298 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000299 switch (BuiltinID) {
300 default: return false;
Nate Begemanbb37f502010-07-29 22:48:34 +0000301 case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
302 case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
Nate Begemana23326b2010-06-17 04:17:01 +0000303#define GET_NEON_IMMEDIATE_CHECK
304#include "clang/Basic/arm_neon.inc"
305#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000306 };
307
Nate Begeman61eecf52010-06-14 05:21:25 +0000308 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000309 if (SemaBuiltinConstantArg(TheCall, i, Result))
310 return true;
311
Nate Begeman61eecf52010-06-14 05:21:25 +0000312 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000313 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000314 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000315 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Nate Begeman61eecf52010-06-14 05:21:25 +0000316 << llvm::utostr(l) << llvm::utostr(u+l)
317 << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000318
Nate Begeman26a31422010-06-08 02:47:44 +0000319 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000320}
Daniel Dunbarde454282008-10-02 18:44:07 +0000321
Anders Carlssond406bf02009-08-16 01:56:34 +0000322/// CheckFunctionCall - Check a direct function call for various correctness
323/// and safety properties not strictly enforced by the C type system.
324bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
325 // Get the IdentifierInfo* for the called function.
326 IdentifierInfo *FnInfo = FDecl->getIdentifier();
327
328 // None of the checks below are needed for functions that don't have
329 // simple names (e.g., C++ conversion functions).
330 if (!FnInfo)
331 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Daniel Dunbarde454282008-10-02 18:44:07 +0000333 // FIXME: This mechanism should be abstracted to be less fragile and
334 // more efficient. For example, just map function ids to custom
335 // handlers.
336
Chris Lattner59907c42007-08-10 20:18:51 +0000337 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000338 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ted Kremenek826a3452010-07-16 02:11:22 +0000339 const bool b = Format->getType() == "scanf";
340 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000341 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000342 CheckPrintfScanfArguments(TheCall, HasVAListArg,
343 Format->getFormatIdx() - 1,
344 HasVAListArg ? 0 : Format->getFirstArg() - 1,
345 !b);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000346 }
Chris Lattner59907c42007-08-10 20:18:51 +0000347 }
Mike Stump1eb44332009-09-09 15:08:12 +0000348
349 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssond406bf02009-08-16 01:56:34 +0000350 NonNull = NonNull->getNext<NonNullAttr>())
351 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000352
Anders Carlssond406bf02009-08-16 01:56:34 +0000353 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000354}
355
Anders Carlssond406bf02009-08-16 01:56:34 +0000356bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000357 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000358 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000359 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000360 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000362 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
363 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000364 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000366 QualType Ty = V->getType();
367 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000368 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Ted Kremenek826a3452010-07-16 02:11:22 +0000370 const bool b = Format->getType() == "scanf";
371 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +0000372 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Anders Carlssond406bf02009-08-16 01:56:34 +0000374 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek826a3452010-07-16 02:11:22 +0000375 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
376 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssond406bf02009-08-16 01:56:34 +0000377
378 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000379}
380
Chris Lattner5caa3702009-05-08 06:58:22 +0000381/// SemaBuiltinAtomicOverloaded - We have a call to a function like
382/// __sync_fetch_and_add, which is an overloaded function based on the pointer
383/// type of its first argument. The main ActOnCallExpr routines have already
384/// promoted the types of arguments because all of these calls are prototyped as
385/// void(...).
386///
387/// This function goes through and does final semantic checking for these
388/// builtins,
Chandler Carruthd2014572010-07-09 18:59:35 +0000389Sema::OwningExprResult
390Sema::SemaBuiltinAtomicOverloaded(OwningExprResult TheCallResult) {
391 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000392 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
393 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
394
395 // Ensure that we have at least one argument to do type inference from.
Chandler Carruthd2014572010-07-09 18:59:35 +0000396 if (TheCall->getNumArgs() < 1) {
397 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
398 << 0 << 1 << TheCall->getNumArgs()
399 << TheCall->getCallee()->getSourceRange();
400 return ExprError();
401 }
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner5caa3702009-05-08 06:58:22 +0000403 // Inspect the first argument of the atomic builtin. This should always be
404 // a pointer type, whose element is an integral scalar or pointer type.
405 // Because it is a pointer type, we don't have to worry about any implicit
406 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000407 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000408 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000409 if (!FirstArg->getType()->isPointerType()) {
410 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
411 << FirstArg->getType() << FirstArg->getSourceRange();
412 return ExprError();
413 }
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Chandler Carruthd2014572010-07-09 18:59:35 +0000415 QualType ValType =
416 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000417 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000418 !ValType->isBlockPointerType()) {
419 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
420 << FirstArg->getType() << FirstArg->getSourceRange();
421 return ExprError();
422 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000423
Chandler Carruth8d13d222010-07-18 20:54:12 +0000424 // The majority of builtins return a value, but a few have special return
425 // types, so allow them to override appropriately below.
426 QualType ResultType = ValType;
427
Chris Lattner5caa3702009-05-08 06:58:22 +0000428 // We need to figure out which concrete builtin this maps onto. For example,
429 // __sync_fetch_and_add with a 2 byte object turns into
430 // __sync_fetch_and_add_2.
431#define BUILTIN_ROW(x) \
432 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
433 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000434
Chris Lattner5caa3702009-05-08 06:58:22 +0000435 static const unsigned BuiltinIndices[][5] = {
436 BUILTIN_ROW(__sync_fetch_and_add),
437 BUILTIN_ROW(__sync_fetch_and_sub),
438 BUILTIN_ROW(__sync_fetch_and_or),
439 BUILTIN_ROW(__sync_fetch_and_and),
440 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000441
Chris Lattner5caa3702009-05-08 06:58:22 +0000442 BUILTIN_ROW(__sync_add_and_fetch),
443 BUILTIN_ROW(__sync_sub_and_fetch),
444 BUILTIN_ROW(__sync_and_and_fetch),
445 BUILTIN_ROW(__sync_or_and_fetch),
446 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Chris Lattner5caa3702009-05-08 06:58:22 +0000448 BUILTIN_ROW(__sync_val_compare_and_swap),
449 BUILTIN_ROW(__sync_bool_compare_and_swap),
450 BUILTIN_ROW(__sync_lock_test_and_set),
451 BUILTIN_ROW(__sync_lock_release)
452 };
Mike Stump1eb44332009-09-09 15:08:12 +0000453#undef BUILTIN_ROW
454
Chris Lattner5caa3702009-05-08 06:58:22 +0000455 // Determine the index of the size.
456 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000457 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000458 case 1: SizeIndex = 0; break;
459 case 2: SizeIndex = 1; break;
460 case 4: SizeIndex = 2; break;
461 case 8: SizeIndex = 3; break;
462 case 16: SizeIndex = 4; break;
463 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000464 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
465 << FirstArg->getType() << FirstArg->getSourceRange();
466 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000467 }
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Chris Lattner5caa3702009-05-08 06:58:22 +0000469 // Each of these builtins has one pointer argument, followed by some number of
470 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
471 // that we ignore. Find out which row of BuiltinIndices to read from as well
472 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000473 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000474 unsigned BuiltinIndex, NumFixed = 1;
475 switch (BuiltinID) {
476 default: assert(0 && "Unknown overloaded atomic builtin!");
477 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
478 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
479 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
480 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
481 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000483 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
484 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
485 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
486 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
487 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Chris Lattner5caa3702009-05-08 06:58:22 +0000489 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000490 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000491 NumFixed = 2;
492 break;
493 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000494 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000495 NumFixed = 2;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000496 ResultType = Context.BoolTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000497 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000498 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000499 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000500 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000501 NumFixed = 0;
Chandler Carruth8d13d222010-07-18 20:54:12 +0000502 ResultType = Context.VoidTy;
Chris Lattner5caa3702009-05-08 06:58:22 +0000503 break;
504 }
Mike Stump1eb44332009-09-09 15:08:12 +0000505
Chris Lattner5caa3702009-05-08 06:58:22 +0000506 // Now that we know how many fixed arguments we expect, first check that we
507 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000508 if (TheCall->getNumArgs() < 1+NumFixed) {
509 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
510 << 0 << 1+NumFixed << TheCall->getNumArgs()
511 << TheCall->getCallee()->getSourceRange();
512 return ExprError();
513 }
Mike Stump1eb44332009-09-09 15:08:12 +0000514
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000515 // Get the decl for the concrete builtin from this, we can tell what the
516 // concrete integer type we should convert to is.
517 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
518 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
519 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000520 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000521 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
522 TUScope, false, DRE->getLocStart()));
Chandler Carruthd2014572010-07-09 18:59:35 +0000523
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000524 // The first argument is by definition correct, we use it's type as the type
525 // of the entire operation. Walk the remaining arguments promoting them to
526 // the deduced value type.
Chris Lattner5caa3702009-05-08 06:58:22 +0000527 for (unsigned i = 0; i != NumFixed; ++i) {
528 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Chris Lattner5caa3702009-05-08 06:58:22 +0000530 // If the argument is an implicit cast, then there was a promotion due to
531 // "...", just remove it now.
532 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
533 Arg = ICE->getSubExpr();
534 ICE->setSubExpr(0);
Chris Lattner5caa3702009-05-08 06:58:22 +0000535 TheCall->setArg(i+1, Arg);
536 }
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Chris Lattner5caa3702009-05-08 06:58:22 +0000538 // GCC does an implicit conversion to the pointer or integer ValType. This
539 // can fail in some cases (1i -> int**), check for this error case now.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000540 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000541 CXXBaseSpecifierArray BasePath;
542 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000543 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Chris Lattner5caa3702009-05-08 06:58:22 +0000545 // Okay, we have something that *can* be converted to the right type. Check
546 // to see if there is a potentially weird extension going on here. This can
547 // happen when you do an atomic operation on something like an char* and
548 // pass in 42. The 42 gets converted to char. This is even more strange
549 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000550 // FIXME: Do this check.
Anders Carlsson80971bd2010-04-24 16:36:20 +0000551 ImpCastExprToType(Arg, ValType, Kind);
Chris Lattner5caa3702009-05-08 06:58:22 +0000552 TheCall->setArg(i+1, Arg);
553 }
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattner5caa3702009-05-08 06:58:22 +0000555 // Switch the DeclRefExpr to refer to the new decl.
556 DRE->setDecl(NewBuiltinDecl);
557 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Chris Lattner5caa3702009-05-08 06:58:22 +0000559 // Set the callee in the CallExpr.
560 // FIXME: This leaks the original parens and implicit casts.
561 Expr *PromotedCall = DRE;
562 UsualUnaryConversions(PromotedCall);
563 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chandler Carruthdb4325b2010-07-18 07:23:17 +0000565 // Change the result type of the call to match the original value type. This
566 // is arbitrary, but the codegen for these builtins ins design to handle it
567 // gracefully.
Chandler Carruth8d13d222010-07-18 20:54:12 +0000568 TheCall->setType(ResultType);
Chandler Carruthd2014572010-07-09 18:59:35 +0000569
570 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000571}
572
573
Chris Lattner69039812009-02-18 06:01:06 +0000574/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000575/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000576/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000577/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000578/// belong to the input codeset UTF-8"
579/// Note: It might also make sense to do the UTF-16 conversion here (would
580/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000581bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000582 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000583 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
584
585 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000586 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
587 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000588 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000589 }
Mike Stump1eb44332009-09-09 15:08:12 +0000590
Daniel Dunbarf015b032009-09-22 10:03:52 +0000591 const char *Data = Literal->getStrData();
592 unsigned Length = Literal->getByteLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Daniel Dunbarf015b032009-09-22 10:03:52 +0000594 for (unsigned i = 0; i < Length; ++i) {
595 if (!Data[i]) {
596 Diag(getLocationOfStringLiteralByte(Literal, i),
597 diag::warn_cfstring_literal_contains_nul_character)
598 << Arg->getSourceRange();
599 break;
600 }
601 }
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000603 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000604}
605
Chris Lattnerc27c6652007-12-20 00:05:45 +0000606/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
607/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000608bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
609 Expr *Fn = TheCall->getCallee();
610 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000611 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000612 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000613 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
614 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000615 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000616 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000617 return true;
618 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000619
620 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000621 return Diag(TheCall->getLocEnd(),
622 diag::err_typecheck_call_too_few_args_at_least)
623 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000624 }
625
Chris Lattnerc27c6652007-12-20 00:05:45 +0000626 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000627 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000628 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000629 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000630 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000631 else if (FunctionDecl *FD = getCurFunctionDecl())
632 isVariadic = FD->isVariadic();
633 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000634 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Chris Lattnerc27c6652007-12-20 00:05:45 +0000636 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000637 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
638 return true;
639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Chris Lattner30ce3442007-12-19 23:59:04 +0000641 // Verify that the second argument to the builtin is the last argument of the
642 // current function or method.
643 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000644 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Anders Carlsson88cf2262008-02-11 04:20:54 +0000646 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
647 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000648 // FIXME: This isn't correct for methods (results in bogus warning).
649 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000650 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000651 if (CurBlock)
652 LastArg = *(CurBlock->TheDecl->param_end()-1);
653 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000654 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000655 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000656 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000657 SecondArgIsLastNamedArgument = PV == LastArg;
658 }
659 }
Mike Stump1eb44332009-09-09 15:08:12 +0000660
Chris Lattner30ce3442007-12-19 23:59:04 +0000661 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000662 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000663 diag::warn_second_parameter_of_va_start_not_last_named_argument);
664 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000665}
Chris Lattner30ce3442007-12-19 23:59:04 +0000666
Chris Lattner1b9a0792007-12-20 00:26:33 +0000667/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
668/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000669bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
670 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000671 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000672 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000673 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000674 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000675 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000676 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000677 << SourceRange(TheCall->getArg(2)->getLocStart(),
678 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Chris Lattner925e60d2007-12-28 05:29:59 +0000680 Expr *OrigArg0 = TheCall->getArg(0);
681 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000682
Chris Lattner1b9a0792007-12-20 00:26:33 +0000683 // Do standard promotions between the two arguments, returning their common
684 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000685 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000686
687 // Make sure any conversions are pushed back into the call; this is
688 // type safe since unordered compare builtins are declared as "_Bool
689 // foo(...)".
690 TheCall->setArg(0, OrigArg0);
691 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Douglas Gregorcde01732009-05-19 22:10:17 +0000693 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
694 return false;
695
Chris Lattner1b9a0792007-12-20 00:26:33 +0000696 // If the common type isn't a real floating type, then the arguments were
697 // invalid for this operation.
698 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000699 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000700 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000701 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000702 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000703
Chris Lattner1b9a0792007-12-20 00:26:33 +0000704 return false;
705}
706
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000707/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
708/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000709/// to check everything. We expect the last argument to be a floating point
710/// value.
711bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
712 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000713 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000714 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000715 if (TheCall->getNumArgs() > NumArgs)
716 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000717 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000718 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000719 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000720 (*(TheCall->arg_end()-1))->getLocEnd());
721
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000722 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000723
Eli Friedman9ac6f622009-08-31 20:06:00 +0000724 if (OrigArg->isTypeDependent())
725 return false;
726
Chris Lattner81368fb2010-05-06 05:50:07 +0000727 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000728 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000729 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000730 diag::err_typecheck_call_invalid_unary_fp)
731 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000732
Chris Lattner81368fb2010-05-06 05:50:07 +0000733 // If this is an implicit conversion from float -> double, remove it.
734 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
735 Expr *CastArg = Cast->getSubExpr();
736 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
737 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
738 "promotion from float to double is the only expected cast here");
739 Cast->setSubExpr(0);
Chris Lattner81368fb2010-05-06 05:50:07 +0000740 TheCall->setArg(NumArgs-1, CastArg);
741 OrigArg = CastArg;
742 }
743 }
744
Eli Friedman9ac6f622009-08-31 20:06:00 +0000745 return false;
746}
747
Eli Friedmand38617c2008-05-14 19:38:39 +0000748/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
749// This is declared to take (...), so we have to check everything.
Sebastian Redl0eb23302009-01-19 00:08:26 +0000750Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000751 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000752 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000753 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000754 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000755 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000756
Nate Begeman37b6a572010-06-08 00:16:34 +0000757 // Determine which of the following types of shufflevector we're checking:
758 // 1) unary, vector mask: (lhs, mask)
759 // 2) binary, vector mask: (lhs, rhs, mask)
760 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
761 QualType resType = TheCall->getArg(0)->getType();
762 unsigned numElements = 0;
763
Douglas Gregorcde01732009-05-19 22:10:17 +0000764 if (!TheCall->getArg(0)->isTypeDependent() &&
765 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000766 QualType LHSType = TheCall->getArg(0)->getType();
767 QualType RHSType = TheCall->getArg(1)->getType();
768
769 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000770 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000771 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000772 TheCall->getArg(1)->getLocEnd());
773 return ExprError();
774 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000775
776 numElements = LHSType->getAs<VectorType>()->getNumElements();
777 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000778
Nate Begeman37b6a572010-06-08 00:16:34 +0000779 // Check to see if we have a call with 2 vector arguments, the unary shuffle
780 // with mask. If so, verify that RHS is an integer vector type with the
781 // same number of elts as lhs.
782 if (TheCall->getNumArgs() == 2) {
Douglas Gregorf6094622010-07-23 15:58:24 +0000783 if (!RHSType->hasIntegerRepresentation() ||
Nate Begeman37b6a572010-06-08 00:16:34 +0000784 RHSType->getAs<VectorType>()->getNumElements() != numElements)
785 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
786 << SourceRange(TheCall->getArg(1)->getLocStart(),
787 TheCall->getArg(1)->getLocEnd());
788 numResElements = numElements;
789 }
790 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000791 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000792 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000793 TheCall->getArg(1)->getLocEnd());
794 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000795 } else if (numElements != numResElements) {
796 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000797 resType = Context.getVectorType(eltType, numResElements,
798 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000799 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000800 }
801
802 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000803 if (TheCall->getArg(i)->isTypeDependent() ||
804 TheCall->getArg(i)->isValueDependent())
805 continue;
806
Nate Begeman37b6a572010-06-08 00:16:34 +0000807 llvm::APSInt Result(32);
808 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
809 return ExprError(Diag(TheCall->getLocStart(),
810 diag::err_shufflevector_nonconstant_argument)
811 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000812
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000813 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000814 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000815 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000816 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000817 }
818
819 llvm::SmallVector<Expr*, 32> exprs;
820
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000821 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000822 exprs.push_back(TheCall->getArg(i));
823 TheCall->setArg(i, 0);
824 }
825
Nate Begemana88dc302009-08-12 02:10:25 +0000826 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000827 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000828 TheCall->getCallee()->getLocStart(),
829 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000830}
Chris Lattner30ce3442007-12-19 23:59:04 +0000831
Daniel Dunbar4493f792008-07-21 22:59:13 +0000832/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
833// This is declared to take (const void*, ...) and can take two
834// optional constant int args.
835bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000836 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000837
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000838 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000839 return Diag(TheCall->getLocEnd(),
840 diag::err_typecheck_call_too_many_args_at_most)
841 << 0 /*function call*/ << 3 << NumArgs
842 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000843
844 // Argument 0 is checked for us and the remaining arguments must be
845 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000846 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000847 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000848
Eli Friedman9aef7262009-12-04 00:30:06 +0000849 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000850 if (SemaBuiltinConstantArg(TheCall, i, Result))
851 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000852
Daniel Dunbar4493f792008-07-21 22:59:13 +0000853 // FIXME: gcc issues a warning and rewrites these to 0. These
854 // seems especially odd for the third argument since the default
855 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000856 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000857 if (Result.getLimitedValue() > 1)
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" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000860 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000861 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000862 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000863 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000864 }
865 }
866
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000867 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000868}
869
Eric Christopher691ebc32010-04-17 02:26:23 +0000870/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
871/// TheCall is a constant expression.
872bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
873 llvm::APSInt &Result) {
874 Expr *Arg = TheCall->getArg(ArgNum);
875 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
876 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
877
878 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
879
880 if (!Arg->isIntegerConstantExpr(Result, Context))
881 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000882 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000883
Chris Lattner21fb98e2009-09-23 06:06:36 +0000884 return false;
885}
886
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000887/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
888/// int type). This simply type checks that type is one of the defined
889/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000890// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000891bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000892 llvm::APSInt Result;
893
894 // Check constant-ness first.
895 if (SemaBuiltinConstantArg(TheCall, 1, Result))
896 return true;
897
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000898 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000899 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000900 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
901 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000902 }
903
904 return false;
905}
906
Eli Friedman586d6a82009-05-03 06:04:26 +0000907/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000908/// This checks that val is a constant 1.
909bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
910 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000911 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000912
Eric Christopher691ebc32010-04-17 02:26:23 +0000913 // TODO: This is less than ideal. Overload this to take a value.
914 if (SemaBuiltinConstantArg(TheCall, 1, Result))
915 return true;
916
917 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000918 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
919 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
920
921 return false;
922}
923
Ted Kremenekd30ef872009-01-12 23:09:09 +0000924// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000925bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
926 bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000927 unsigned format_idx, unsigned firstDataArg,
928 bool isPrintf) {
929
Douglas Gregorcde01732009-05-19 22:10:17 +0000930 if (E->isTypeDependent() || E->isValueDependent())
931 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000932
933 switch (E->getStmtClass()) {
934 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000935 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek826a3452010-07-16 02:11:22 +0000936 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
937 format_idx, firstDataArg, isPrintf)
938 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
939 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000940 }
941
942 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000943 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000944 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000945 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000946 }
947
948 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000949 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000950 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +0000951 format_idx, firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000952 }
Mike Stump1eb44332009-09-09 15:08:12 +0000953
Ted Kremenek082d9362009-03-20 21:35:28 +0000954 case Stmt::DeclRefExprClass: {
955 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Ted Kremenek082d9362009-03-20 21:35:28 +0000957 // As an exception, do not flag errors for variables binding to
958 // const string literals.
959 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
960 bool isConstant = false;
961 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000962
Ted Kremenek082d9362009-03-20 21:35:28 +0000963 if (const ArrayType *AT = Context.getAsArrayType(T)) {
964 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000965 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000966 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000967 PT->getPointeeType().isConstant(Context);
968 }
Mike Stump1eb44332009-09-09 15:08:12 +0000969
Ted Kremenek082d9362009-03-20 21:35:28 +0000970 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000971 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000972 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek826a3452010-07-16 02:11:22 +0000973 HasVAListArg, format_idx, firstDataArg,
974 isPrintf);
Ted Kremenek082d9362009-03-20 21:35:28 +0000975 }
Mike Stump1eb44332009-09-09 15:08:12 +0000976
Anders Carlssond966a552009-06-28 19:55:58 +0000977 // For vprintf* functions (i.e., HasVAListArg==true), we add a
978 // special check to see if the format string is a function parameter
979 // of the function calling the printf function. If the function
980 // has an attribute indicating it is a printf-like function, then we
981 // should suppress warnings concerning non-literals being used in a call
982 // to a vprintf function. For example:
983 //
984 // void
985 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
986 // va_list ap;
987 // va_start(ap, fmt);
988 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
989 // ...
990 //
991 //
992 // FIXME: We don't have full attribute support yet, so just check to see
993 // if the argument is a DeclRefExpr that references a parameter. We'll
994 // add proper support for checking the attribute later.
995 if (HasVAListArg)
996 if (isa<ParmVarDecl>(VD))
997 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +0000998 }
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Ted Kremenek082d9362009-03-20 21:35:28 +00001000 return false;
1001 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001002
Anders Carlsson8f031b32009-06-27 04:05:33 +00001003 case Stmt::CallExprClass: {
1004 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001005 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001006 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1007 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1008 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001009 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001010 unsigned ArgIndex = FA->getFormatIdx();
1011 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001012
1013 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001014 format_idx, firstDataArg, isPrintf);
Anders Carlsson8f031b32009-06-27 04:05:33 +00001015 }
1016 }
1017 }
1018 }
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Anders Carlsson8f031b32009-06-27 04:05:33 +00001020 return false;
1021 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001022 case Stmt::ObjCStringLiteralClass:
1023 case Stmt::StringLiteralClass: {
1024 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Ted Kremenek082d9362009-03-20 21:35:28 +00001026 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001027 StrE = ObjCFExpr->getString();
1028 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001029 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Ted Kremenekd30ef872009-01-12 23:09:09 +00001031 if (StrE) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001032 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1033 firstDataArg, isPrintf);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001034 return true;
1035 }
Mike Stump1eb44332009-09-09 15:08:12 +00001036
Ted Kremenekd30ef872009-01-12 23:09:09 +00001037 return false;
1038 }
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Ted Kremenek082d9362009-03-20 21:35:28 +00001040 default:
1041 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001042 }
1043}
1044
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001045void
Mike Stump1eb44332009-09-09 15:08:12 +00001046Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1047 const CallExpr *TheCall) {
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001048 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1049 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001050 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001051 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001052 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001053 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1054 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001055 }
1056}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001057
Ted Kremenek826a3452010-07-16 02:11:22 +00001058/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1059/// functions) for correct use of format strings.
Chris Lattner59907c42007-08-10 20:18:51 +00001060void
Ted Kremenek826a3452010-07-16 02:11:22 +00001061Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1062 unsigned format_idx, unsigned firstDataArg,
1063 bool isPrintf) {
1064
Ted Kremenek082d9362009-03-20 21:35:28 +00001065 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001066
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001067 // The way the format attribute works in GCC, the implicit this argument
1068 // of member functions is counted. However, it doesn't appear in our own
1069 // lists, so decrement format_idx in that case.
1070 if (isa<CXXMemberCallExpr>(TheCall)) {
1071 // Catch a format attribute mistakenly referring to the object argument.
1072 if (format_idx == 0)
1073 return;
1074 --format_idx;
1075 if(firstDataArg != 0)
1076 --firstDataArg;
1077 }
1078
Ted Kremenek826a3452010-07-16 02:11:22 +00001079 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001080 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001081 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001082 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001083 return;
1084 }
Mike Stump1eb44332009-09-09 15:08:12 +00001085
Ted Kremenek082d9362009-03-20 21:35:28 +00001086 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Chris Lattner59907c42007-08-10 20:18:51 +00001088 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001089 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001090 // Dynamically generated format strings are difficult to
1091 // automatically vet at compile time. Requiring that format strings
1092 // are string literals: (1) permits the checking of format strings by
1093 // the compiler and thereby (2) can practically remove the source of
1094 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001095
Mike Stump1eb44332009-09-09 15:08:12 +00001096 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001097 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001098 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001099 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001100 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek826a3452010-07-16 02:11:22 +00001101 firstDataArg, isPrintf))
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001102 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001103
Chris Lattner655f1412009-04-29 04:59:47 +00001104 // If there are no arguments specified, warn with -Wformat-security, otherwise
1105 // warn only with -Wformat-nonliteral.
1106 if (TheCall->getNumArgs() == format_idx+1)
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_noargs)
Chris Lattner655f1412009-04-29 04:59:47 +00001109 << OrigFormatExpr->getSourceRange();
1110 else
Mike Stump1eb44332009-09-09 15:08:12 +00001111 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001112 diag::warn_format_nonliteral)
Chris Lattner655f1412009-04-29 04:59:47 +00001113 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001114}
Ted Kremenek71895b92007-08-14 17:39:48 +00001115
Ted Kremeneke0e53132010-01-28 23:39:18 +00001116namespace {
Ted Kremenek826a3452010-07-16 02:11:22 +00001117class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1118protected:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001119 Sema &S;
1120 const StringLiteral *FExpr;
1121 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001122 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001123 const unsigned NumDataArgs;
1124 const bool IsObjCLiteral;
1125 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001126 const bool HasVAListArg;
1127 const CallExpr *TheCall;
1128 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001129 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001130 bool usesPositionalArgs;
1131 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001132public:
Ted Kremenek826a3452010-07-16 02:11:22 +00001133 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001134 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001135 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001136 const char *beg, bool hasVAListArg,
1137 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001138 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001139 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001140 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001141 IsObjCLiteral(isObjCLiteral), Beg(beg),
1142 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001143 TheCall(theCall), FormatIdx(formatIdx),
1144 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001145 CoveredArgs.resize(numDataArgs);
1146 CoveredArgs.reset();
1147 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001148
Ted Kremenek07d161f2010-01-29 01:50:07 +00001149 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001150
Ted Kremenek826a3452010-07-16 02:11:22 +00001151 void HandleIncompleteSpecifier(const char *startSpecifier,
1152 unsigned specifierLen);
1153
Ted Kremenekefaff192010-02-27 01:41:03 +00001154 virtual void HandleInvalidPosition(const char *startSpecifier,
1155 unsigned specifierLen,
Ted Kremenek826a3452010-07-16 02:11:22 +00001156 analyze_format_string::PositionContext p);
Ted Kremenekefaff192010-02-27 01:41:03 +00001157
1158 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1159
Ted Kremeneke0e53132010-01-28 23:39:18 +00001160 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001161
Ted Kremenek826a3452010-07-16 02:11:22 +00001162protected:
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001163 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1164 const char *startSpec,
1165 unsigned specifierLen,
1166 const char *csStart, unsigned csLen);
1167
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001168 SourceRange getFormatStringRange();
Ted Kremenek826a3452010-07-16 02:11:22 +00001169 CharSourceRange getSpecifierRange(const char *startSpecifier,
1170 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001171 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001172
Ted Kremenek0d277352010-01-29 01:06:55 +00001173 const Expr *getDataArg(unsigned i) const;
Ted Kremenek666a1972010-07-26 19:45:42 +00001174
1175 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1176 const analyze_format_string::ConversionSpecifier &CS,
1177 const char *startSpecifier, unsigned specifierLen,
1178 unsigned argIndex);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001179};
1180}
1181
Ted Kremenek826a3452010-07-16 02:11:22 +00001182SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001183 return OrigFormatExpr->getSourceRange();
1184}
1185
Ted Kremenek826a3452010-07-16 02:11:22 +00001186CharSourceRange CheckFormatHandler::
1187getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001188 SourceLocation Start = getLocationOfByte(startSpecifier);
1189 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1190
1191 // Advance the end SourceLocation by one due to half-open ranges.
1192 End = End.getFileLocWithOffset(1);
1193
1194 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001195}
1196
Ted Kremenek826a3452010-07-16 02:11:22 +00001197SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001198 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001199}
1200
Ted Kremenek826a3452010-07-16 02:11:22 +00001201void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1202 unsigned specifierLen){
Ted Kremenek808015a2010-01-29 03:16:21 +00001203 SourceLocation Loc = getLocationOfByte(startSpecifier);
1204 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek826a3452010-07-16 02:11:22 +00001205 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001206}
1207
Ted Kremenekefaff192010-02-27 01:41:03 +00001208void
Ted Kremenek826a3452010-07-16 02:11:22 +00001209CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1210 analyze_format_string::PositionContext p) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001211 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001212 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1213 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001214}
1215
Ted Kremenek826a3452010-07-16 02:11:22 +00001216void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekefaff192010-02-27 01:41:03 +00001217 unsigned posLen) {
1218 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek826a3452010-07-16 02:11:22 +00001219 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1220 << getSpecifierRange(startPos, posLen);
Ted Kremenekefaff192010-02-27 01:41:03 +00001221}
1222
Ted Kremenek826a3452010-07-16 02:11:22 +00001223void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1224 // The presence of a null character is likely an error.
1225 S.Diag(getLocationOfByte(nullCharacter),
1226 diag::warn_printf_format_string_contains_null_char)
1227 << getFormatStringRange();
1228}
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001229
Ted Kremenek826a3452010-07-16 02:11:22 +00001230const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1231 return TheCall->getArg(FirstDataArg + i);
1232}
1233
1234void CheckFormatHandler::DoneProcessing() {
1235 // Does the number of data arguments exceed the number of
1236 // format conversions in the format string?
1237 if (!HasVAListArg) {
1238 // Find any arguments that weren't covered.
1239 CoveredArgs.flip();
1240 signed notCoveredArg = CoveredArgs.find_first();
1241 if (notCoveredArg >= 0) {
1242 assert((unsigned)notCoveredArg < NumDataArgs);
1243 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1244 diag::warn_printf_data_arg_not_used)
1245 << getFormatStringRange();
1246 }
1247 }
1248}
1249
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001250bool
1251CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1252 SourceLocation Loc,
1253 const char *startSpec,
1254 unsigned specifierLen,
1255 const char *csStart,
1256 unsigned csLen) {
1257
1258 bool keepGoing = true;
1259 if (argIndex < NumDataArgs) {
1260 // Consider the argument coverered, even though the specifier doesn't
1261 // make sense.
1262 CoveredArgs.set(argIndex);
1263 }
1264 else {
1265 // If argIndex exceeds the number of data arguments we
1266 // don't issue a warning because that is just a cascade of warnings (and
1267 // they may have intended '%%' anyway). We don't want to continue processing
1268 // the format string after this point, however, as we will like just get
1269 // gibberish when trying to match arguments.
1270 keepGoing = false;
1271 }
1272
1273 S.Diag(Loc, diag::warn_format_invalid_conversion)
1274 << llvm::StringRef(csStart, csLen)
1275 << getSpecifierRange(startSpec, specifierLen);
1276
1277 return keepGoing;
1278}
1279
Ted Kremenek666a1972010-07-26 19:45:42 +00001280bool
1281CheckFormatHandler::CheckNumArgs(
1282 const analyze_format_string::FormatSpecifier &FS,
1283 const analyze_format_string::ConversionSpecifier &CS,
1284 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1285
1286 if (argIndex >= NumDataArgs) {
1287 if (FS.usesPositionalArg()) {
1288 S.Diag(getLocationOfByte(CS.getStart()),
1289 diag::warn_printf_positional_arg_exceeds_data_args)
1290 << (argIndex+1) << NumDataArgs
1291 << getSpecifierRange(startSpecifier, specifierLen);
1292 }
1293 else {
1294 S.Diag(getLocationOfByte(CS.getStart()),
1295 diag::warn_printf_insufficient_data_args)
1296 << getSpecifierRange(startSpecifier, specifierLen);
1297 }
1298
1299 return false;
1300 }
1301 return true;
1302}
1303
Ted Kremenek826a3452010-07-16 02:11:22 +00001304//===--- CHECK: Printf format string checking ------------------------------===//
1305
1306namespace {
1307class CheckPrintfHandler : public CheckFormatHandler {
1308public:
1309 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1310 const Expr *origFormatExpr, unsigned firstDataArg,
1311 unsigned numDataArgs, bool isObjCLiteral,
1312 const char *beg, bool hasVAListArg,
1313 const CallExpr *theCall, unsigned formatIdx)
1314 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1315 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1316 theCall, formatIdx) {}
1317
1318
1319 bool HandleInvalidPrintfConversionSpecifier(
1320 const analyze_printf::PrintfSpecifier &FS,
1321 const char *startSpecifier,
1322 unsigned specifierLen);
1323
1324 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1325 const char *startSpecifier,
1326 unsigned specifierLen);
1327
1328 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1329 const char *startSpecifier, unsigned specifierLen);
1330 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1331 const analyze_printf::OptionalAmount &Amt,
1332 unsigned type,
1333 const char *startSpecifier, unsigned specifierLen);
1334 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1335 const analyze_printf::OptionalFlag &flag,
1336 const char *startSpecifier, unsigned specifierLen);
1337 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1338 const analyze_printf::OptionalFlag &ignoredFlag,
1339 const analyze_printf::OptionalFlag &flag,
1340 const char *startSpecifier, unsigned specifierLen);
1341};
1342}
1343
1344bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1345 const analyze_printf::PrintfSpecifier &FS,
1346 const char *startSpecifier,
1347 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001348 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001349 FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001350
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001351 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1352 getLocationOfByte(CS.getStart()),
1353 startSpecifier, specifierLen,
1354 CS.getStart(), CS.getLength());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001355}
1356
Ted Kremenek826a3452010-07-16 02:11:22 +00001357bool CheckPrintfHandler::HandleAmount(
1358 const analyze_format_string::OptionalAmount &Amt,
1359 unsigned k, const char *startSpecifier,
1360 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001361
1362 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001363 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001364 unsigned argIndex = Amt.getArgIndex();
1365 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001366 S.Diag(getLocationOfByte(Amt.getStart()),
1367 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek826a3452010-07-16 02:11:22 +00001368 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001369 // Don't do any more checking. We will just emit
1370 // spurious errors.
1371 return false;
1372 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001373
Ted Kremenek0d277352010-01-29 01:06:55 +00001374 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001375 // Although not in conformance with C99, we also allow the argument to be
1376 // an 'unsigned int' as that is a reasonably safe case. GCC also
1377 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001378 CoveredArgs.set(argIndex);
1379 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001380 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001381
1382 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1383 assert(ATR.isValid());
1384
1385 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001386 S.Diag(getLocationOfByte(Amt.getStart()),
1387 diag::warn_printf_asterisk_wrong_type)
1388 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001389 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek826a3452010-07-16 02:11:22 +00001390 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001391 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001392 // Don't do any more checking. We will just emit
1393 // spurious errors.
1394 return false;
1395 }
1396 }
1397 }
1398 return true;
1399}
Ted Kremenek0d277352010-01-29 01:06:55 +00001400
Tom Caree4ee9662010-06-17 19:00:27 +00001401void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek826a3452010-07-16 02:11:22 +00001402 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001403 const analyze_printf::OptionalAmount &Amt,
1404 unsigned type,
1405 const char *startSpecifier,
1406 unsigned specifierLen) {
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001407 const analyze_printf::PrintfConversionSpecifier &CS =
1408 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001409 switch (Amt.getHowSpecified()) {
1410 case analyze_printf::OptionalAmount::Constant:
1411 S.Diag(getLocationOfByte(Amt.getStart()),
1412 diag::warn_printf_nonsensical_optional_amount)
1413 << type
1414 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001415 << getSpecifierRange(startSpecifier, specifierLen)
1416 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001417 Amt.getConstantLength()));
1418 break;
1419
1420 default:
1421 S.Diag(getLocationOfByte(Amt.getStart()),
1422 diag::warn_printf_nonsensical_optional_amount)
1423 << type
1424 << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001425 << getSpecifierRange(startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001426 break;
1427 }
1428}
1429
Ted Kremenek826a3452010-07-16 02:11:22 +00001430void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001431 const analyze_printf::OptionalFlag &flag,
1432 const char *startSpecifier,
1433 unsigned specifierLen) {
1434 // Warn about pointless flag with a fixit removal.
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001435 const analyze_printf::PrintfConversionSpecifier &CS =
1436 FS.getConversionSpecifier();
Tom Caree4ee9662010-06-17 19:00:27 +00001437 S.Diag(getLocationOfByte(flag.getPosition()),
1438 diag::warn_printf_nonsensical_flag)
1439 << flag.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001440 << getSpecifierRange(startSpecifier, specifierLen)
1441 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Caree4ee9662010-06-17 19:00:27 +00001442}
1443
1444void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek826a3452010-07-16 02:11:22 +00001445 const analyze_printf::PrintfSpecifier &FS,
Tom Caree4ee9662010-06-17 19:00:27 +00001446 const analyze_printf::OptionalFlag &ignoredFlag,
1447 const analyze_printf::OptionalFlag &flag,
1448 const char *startSpecifier,
1449 unsigned specifierLen) {
1450 // Warn about ignored flag with a fixit removal.
1451 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1452 diag::warn_printf_ignored_flag)
1453 << ignoredFlag.toString() << flag.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001454 << getSpecifierRange(startSpecifier, specifierLen)
1455 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Caree4ee9662010-06-17 19:00:27 +00001456 ignoredFlag.getPosition(), 1));
1457}
1458
Ted Kremeneke0e53132010-01-28 23:39:18 +00001459bool
Ted Kremenek826a3452010-07-16 02:11:22 +00001460CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001461 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001462 const char *startSpecifier,
1463 unsigned specifierLen) {
1464
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001465 using namespace analyze_format_string;
Ted Kremenekefaff192010-02-27 01:41:03 +00001466 using namespace analyze_printf;
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001467 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001468
Ted Kremenekbaa40062010-07-19 22:01:06 +00001469 if (FS.consumesDataArgument()) {
1470 if (atFirstArg) {
1471 atFirstArg = false;
1472 usesPositionalArgs = FS.usesPositionalArg();
1473 }
1474 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1475 // Cannot mix-and-match positional and non-positional arguments.
1476 S.Diag(getLocationOfByte(CS.getStart()),
1477 diag::warn_format_mix_positional_nonpositional_args)
1478 << getSpecifierRange(startSpecifier, specifierLen);
1479 return false;
1480 }
Ted Kremenek0d277352010-01-29 01:06:55 +00001481 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001482
Ted Kremenekefaff192010-02-27 01:41:03 +00001483 // First check if the field width, precision, and conversion specifier
1484 // have matching data arguments.
1485 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1486 startSpecifier, specifierLen)) {
1487 return false;
1488 }
1489
1490 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1491 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001492 return false;
1493 }
1494
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001495 if (!CS.consumesDataArgument()) {
1496 // FIXME: Technically specifying a precision or field width here
1497 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001498 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001499 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001500
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001501 // Consume the argument.
1502 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001503 if (argIndex < NumDataArgs) {
1504 // The check to see if the argIndex is valid will come later.
1505 // We set the bit here because we may exit early from this
1506 // function if we encounter some other error.
1507 CoveredArgs.set(argIndex);
1508 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001509
1510 // Check for using an Objective-C specific conversion specifier
1511 // in a non-ObjC literal.
1512 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001513 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1514 specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001515 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001516
Tom Caree4ee9662010-06-17 19:00:27 +00001517 // Check for invalid use of field width
1518 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001519 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001520 startSpecifier, specifierLen);
1521 }
1522
1523 // Check for invalid use of precision
1524 if (!FS.hasValidPrecision()) {
1525 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1526 startSpecifier, specifierLen);
1527 }
1528
1529 // Check each flag does not conflict with any other component.
1530 if (!FS.hasValidLeadingZeros())
1531 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1532 if (!FS.hasValidPlusPrefix())
1533 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001534 if (!FS.hasValidSpacePrefix())
1535 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001536 if (!FS.hasValidAlternativeForm())
1537 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1538 if (!FS.hasValidLeftJustified())
1539 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1540
1541 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001542 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1543 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1544 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001545 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1546 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1547 startSpecifier, specifierLen);
1548
1549 // Check the length modifier is valid with the given conversion specifier.
1550 const LengthModifier &LM = FS.getLengthModifier();
1551 if (!FS.hasValidLengthModifier())
1552 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenek649aecf2010-07-20 20:03:43 +00001553 diag::warn_format_nonsensical_length)
Tom Caree4ee9662010-06-17 19:00:27 +00001554 << LM.toString() << CS.toString()
Ted Kremenek826a3452010-07-16 02:11:22 +00001555 << getSpecifierRange(startSpecifier, specifierLen)
1556 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Caree4ee9662010-06-17 19:00:27 +00001557 LM.getLength()));
1558
1559 // Are we using '%n'?
Ted Kremenek35d353b2010-07-20 20:04:10 +00001560 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001561 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001562 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek826a3452010-07-16 02:11:22 +00001563 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001564 // Continue checking the other format specifiers.
1565 return true;
1566 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001567
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001568 // The remaining checks depend on the data arguments.
1569 if (HasVAListArg)
1570 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001571
Ted Kremenek666a1972010-07-26 19:45:42 +00001572 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001573 return false;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001574
Michael J. Spencer96827eb2010-07-27 04:46:02 +00001575 // Now type check the data expression that matches the
1576 // format specifier.
1577 const Expr *Ex = getDataArg(argIndex);
1578 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
1579 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1580 // Check if we didn't match because of an implicit cast from a 'char'
1581 // or 'short' to an 'int'. This is done because printf is a varargs
1582 // function.
1583 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1584 if (ICE->getType() == S.Context.IntTy)
1585 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1586 return true;
1587
1588 // We may be able to offer a FixItHint if it is a supported type.
1589 PrintfSpecifier fixedFS = FS;
1590 bool success = fixedFS.fixType(Ex->getType());
1591
1592 if (success) {
1593 // Get the fix string from the fixed format specifier
1594 llvm::SmallString<128> buf;
1595 llvm::raw_svector_ostream os(buf);
1596 fixedFS.toString(os);
1597
1598 S.Diag(getLocationOfByte(CS.getStart()),
1599 diag::warn_printf_conversion_argument_type_mismatch)
1600 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1601 << getSpecifierRange(startSpecifier, specifierLen)
1602 << Ex->getSourceRange()
1603 << FixItHint::CreateReplacement(
1604 getSpecifierRange(startSpecifier, specifierLen),
1605 os.str());
1606 }
1607 else {
1608 S.Diag(getLocationOfByte(CS.getStart()),
1609 diag::warn_printf_conversion_argument_type_mismatch)
1610 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1611 << getSpecifierRange(startSpecifier, specifierLen)
1612 << Ex->getSourceRange();
1613 }
1614 }
1615
Ted Kremeneke0e53132010-01-28 23:39:18 +00001616 return true;
1617}
1618
Ted Kremenek826a3452010-07-16 02:11:22 +00001619//===--- CHECK: Scanf format string checking ------------------------------===//
1620
1621namespace {
1622class CheckScanfHandler : public CheckFormatHandler {
1623public:
1624 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1625 const Expr *origFormatExpr, unsigned firstDataArg,
1626 unsigned numDataArgs, bool isObjCLiteral,
1627 const char *beg, bool hasVAListArg,
1628 const CallExpr *theCall, unsigned formatIdx)
1629 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1630 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1631 theCall, formatIdx) {}
1632
1633 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1634 const char *startSpecifier,
1635 unsigned specifierLen);
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001636
1637 bool HandleInvalidScanfConversionSpecifier(
1638 const analyze_scanf::ScanfSpecifier &FS,
1639 const char *startSpecifier,
1640 unsigned specifierLen);
Ted Kremenekb7c21012010-07-16 18:28:03 +00001641
1642 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek826a3452010-07-16 02:11:22 +00001643};
Ted Kremenek07d161f2010-01-29 01:50:07 +00001644}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001645
Ted Kremenekb7c21012010-07-16 18:28:03 +00001646void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1647 const char *end) {
1648 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1649 << getSpecifierRange(start, end - start);
1650}
1651
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001652bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1653 const analyze_scanf::ScanfSpecifier &FS,
1654 const char *startSpecifier,
1655 unsigned specifierLen) {
1656
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001657 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekc09b6a52010-07-19 21:25:57 +00001658 FS.getConversionSpecifier();
1659
1660 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1661 getLocationOfByte(CS.getStart()),
1662 startSpecifier, specifierLen,
1663 CS.getStart(), CS.getLength());
1664}
1665
Ted Kremenek826a3452010-07-16 02:11:22 +00001666bool CheckScanfHandler::HandleScanfSpecifier(
1667 const analyze_scanf::ScanfSpecifier &FS,
1668 const char *startSpecifier,
1669 unsigned specifierLen) {
1670
1671 using namespace analyze_scanf;
1672 using namespace analyze_format_string;
1673
Ted Kremenek6ecb9502010-07-20 20:04:27 +00001674 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek826a3452010-07-16 02:11:22 +00001675
Ted Kremenekbaa40062010-07-19 22:01:06 +00001676 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1677 // be used to decide if we are using positional arguments consistently.
1678 if (FS.consumesDataArgument()) {
1679 if (atFirstArg) {
1680 atFirstArg = false;
1681 usesPositionalArgs = FS.usesPositionalArg();
1682 }
1683 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1684 // Cannot mix-and-match positional and non-positional arguments.
1685 S.Diag(getLocationOfByte(CS.getStart()),
1686 diag::warn_format_mix_positional_nonpositional_args)
1687 << getSpecifierRange(startSpecifier, specifierLen);
1688 return false;
1689 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001690 }
1691
1692 // Check if the field with is non-zero.
1693 const OptionalAmount &Amt = FS.getFieldWidth();
1694 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1695 if (Amt.getConstantAmount() == 0) {
1696 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1697 Amt.getConstantLength());
1698 S.Diag(getLocationOfByte(Amt.getStart()),
1699 diag::warn_scanf_nonzero_width)
1700 << R << FixItHint::CreateRemoval(R);
1701 }
1702 }
1703
1704 if (!FS.consumesDataArgument()) {
1705 // FIXME: Technically specifying a precision or field width here
1706 // makes no sense. Worth issuing a warning at some point.
1707 return true;
1708 }
1709
1710 // Consume the argument.
1711 unsigned argIndex = FS.getArgIndex();
1712 if (argIndex < NumDataArgs) {
1713 // The check to see if the argIndex is valid will come later.
1714 // We set the bit here because we may exit early from this
1715 // function if we encounter some other error.
1716 CoveredArgs.set(argIndex);
1717 }
1718
Ted Kremenek1e51c202010-07-20 20:04:47 +00001719 // Check the length modifier is valid with the given conversion specifier.
1720 const LengthModifier &LM = FS.getLengthModifier();
1721 if (!FS.hasValidLengthModifier()) {
1722 S.Diag(getLocationOfByte(LM.getStart()),
1723 diag::warn_format_nonsensical_length)
1724 << LM.toString() << CS.toString()
1725 << getSpecifierRange(startSpecifier, specifierLen)
1726 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1727 LM.getLength()));
1728 }
1729
Ted Kremenek826a3452010-07-16 02:11:22 +00001730 // The remaining checks depend on the data arguments.
1731 if (HasVAListArg)
1732 return true;
1733
Ted Kremenek666a1972010-07-26 19:45:42 +00001734 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek826a3452010-07-16 02:11:22 +00001735 return false;
Ted Kremenek826a3452010-07-16 02:11:22 +00001736
1737 // FIXME: Check that the argument type matches the format specifier.
1738
1739 return true;
1740}
1741
1742void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001743 const Expr *OrigFormatExpr,
1744 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek826a3452010-07-16 02:11:22 +00001745 unsigned format_idx, unsigned firstDataArg,
1746 bool isPrintf) {
1747
Ted Kremeneke0e53132010-01-28 23:39:18 +00001748 // CHECK: is the format string a wide literal?
1749 if (FExpr->isWide()) {
1750 Diag(FExpr->getLocStart(),
Ted Kremenek826a3452010-07-16 02:11:22 +00001751 diag::warn_format_string_is_wide_literal)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001752 << OrigFormatExpr->getSourceRange();
1753 return;
1754 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001755
Ted Kremeneke0e53132010-01-28 23:39:18 +00001756 // Str - The format string. NOTE: this is NOT null-terminated!
1757 const char *Str = FExpr->getStrData();
Ted Kremenek826a3452010-07-16 02:11:22 +00001758
Ted Kremeneke0e53132010-01-28 23:39:18 +00001759 // CHECK: empty format string?
1760 unsigned StrLen = FExpr->getByteLength();
Ted Kremenek826a3452010-07-16 02:11:22 +00001761
Ted Kremeneke0e53132010-01-28 23:39:18 +00001762 if (StrLen == 0) {
Ted Kremenek826a3452010-07-16 02:11:22 +00001763 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001764 << OrigFormatExpr->getSourceRange();
1765 return;
1766 }
Ted Kremenek826a3452010-07-16 02:11:22 +00001767
1768 if (isPrintf) {
1769 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1770 TheCall->getNumArgs() - firstDataArg,
1771 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1772 HasVAListArg, TheCall, format_idx);
1773
1774 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1775 H.DoneProcessing();
1776 }
1777 else {
1778 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1779 TheCall->getNumArgs() - firstDataArg,
1780 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1781 HasVAListArg, TheCall, format_idx);
1782
1783 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1784 H.DoneProcessing();
1785 }
Ted Kremenekce7024e2010-01-28 01:18:22 +00001786}
1787
Ted Kremenek06de2762007-08-17 16:46:58 +00001788//===--- CHECK: Return Address of Stack Variable --------------------------===//
1789
1790static DeclRefExpr* EvalVal(Expr *E);
1791static DeclRefExpr* EvalAddr(Expr* E);
1792
1793/// CheckReturnStackAddr - Check if a return statement returns the address
1794/// of a stack variable.
1795void
1796Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1797 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001798
Ted Kremenek06de2762007-08-17 16:46:58 +00001799 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001800 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001801 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001802 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001803 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Steve Naroffc50a4a52008-09-16 22:25:10 +00001805 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001806 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001807
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001808 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001809 if (C->hasBlockDeclRefExprs())
1810 Diag(C->getLocStart(), diag::err_ret_local_block)
1811 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001812
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001813 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1814 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1815 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001816
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001817 } else if (lhsType->isReferenceType()) {
1818 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001819 // Check for a reference to the stack
1820 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001821 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001822 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001823 }
1824}
1825
1826/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1827/// check if the expression in a return statement evaluates to an address
1828/// to a location on the stack. The recursion is used to traverse the
1829/// AST of the return expression, with recursion backtracking when we
1830/// encounter a subexpression that (1) clearly does not lead to the address
1831/// of a stack variable or (2) is something we cannot determine leads to
1832/// the address of a stack variable based on such local checking.
1833///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001834/// EvalAddr processes expressions that are pointers that are used as
1835/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001836/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001837/// the refers to a stack variable.
1838///
1839/// This implementation handles:
1840///
1841/// * pointer-to-pointer casts
1842/// * implicit conversions from array references to pointers
1843/// * taking the address of fields
1844/// * arbitrary interplay between "&" and "*" operators
1845/// * pointer arithmetic from an address of a stack variable
1846/// * taking the address of an array element where the array is on the stack
1847static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001848 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001849 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001850 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001851 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001852 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001853
Ted Kremenek06de2762007-08-17 16:46:58 +00001854 // Our "symbolic interpreter" is just a dispatch off the currently
1855 // viewed AST node. We then recursively traverse the AST by calling
1856 // EvalAddr and EvalVal appropriately.
1857 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001858 case Stmt::ParenExprClass:
1859 // Ignore parentheses.
1860 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001861
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001862 case Stmt::UnaryOperatorClass: {
1863 // The only unary operator that make sense to handle here
1864 // is AddrOf. All others don't make sense as pointers.
1865 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001866
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001867 if (U->getOpcode() == UnaryOperator::AddrOf)
1868 return EvalVal(U->getSubExpr());
1869 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001870 return NULL;
1871 }
Mike Stump1eb44332009-09-09 15:08:12 +00001872
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001873 case Stmt::BinaryOperatorClass: {
1874 // Handle pointer arithmetic. All other binary operators are not valid
1875 // in this context.
1876 BinaryOperator *B = cast<BinaryOperator>(E);
1877 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001878
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001879 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1880 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001882 Expr *Base = B->getLHS();
1883
1884 // Determine which argument is the real pointer base. It could be
1885 // the RHS argument instead of the LHS.
1886 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001887
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001888 assert (Base->getType()->isPointerType());
1889 return EvalAddr(Base);
1890 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001891
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001892 // For conditional operators we need to see if either the LHS or RHS are
1893 // valid DeclRefExpr*s. If one of them is valid, we return it.
1894 case Stmt::ConditionalOperatorClass: {
1895 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001896
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001897 // Handle the GNU extension for missing LHS.
1898 if (Expr *lhsExpr = C->getLHS())
1899 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1900 return LHS;
1901
1902 return EvalAddr(C->getRHS());
1903 }
Mike Stump1eb44332009-09-09 15:08:12 +00001904
Ted Kremenek54b52742008-08-07 00:49:01 +00001905 // For casts, we need to handle conversions from arrays to
1906 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001907 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001908 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001909 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001910 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001911 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001912
Steve Naroffdd972f22008-09-05 22:11:13 +00001913 if (SubExpr->getType()->isPointerType() ||
1914 SubExpr->getType()->isBlockPointerType() ||
1915 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001916 return EvalAddr(SubExpr);
1917 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001918 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001919 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001920 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001921 }
Mike Stump1eb44332009-09-09 15:08:12 +00001922
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001923 // C++ casts. For dynamic casts, static casts, and const casts, we
1924 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001925 // through the cast. In the case the dynamic cast doesn't fail (and
1926 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001927 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001928 // FIXME: The comment about is wrong; we're not always converting
1929 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001930 // handle references to objects.
1931 case Stmt::CXXStaticCastExprClass:
1932 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001933 case Stmt::CXXConstCastExprClass:
1934 case Stmt::CXXReinterpretCastExprClass: {
1935 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001936 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001937 return EvalAddr(S);
1938 else
1939 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001940 }
Mike Stump1eb44332009-09-09 15:08:12 +00001941
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001942 // Everything else: we simply don't reason about them.
1943 default:
1944 return NULL;
1945 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001946}
Mike Stump1eb44332009-09-09 15:08:12 +00001947
Ted Kremenek06de2762007-08-17 16:46:58 +00001948
1949/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1950/// See the comments for EvalAddr for more details.
1951static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +00001952
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001953 // We should only be called for evaluating non-pointer expressions, or
1954 // expressions with a pointer type that are not used as references but instead
1955 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001956
Ted Kremenek06de2762007-08-17 16:46:58 +00001957 // Our "symbolic interpreter" is just a dispatch off the currently
1958 // viewed AST node. We then recursively traverse the AST by calling
1959 // EvalAddr and EvalVal appropriately.
1960 switch (E->getStmtClass()) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00001961 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001962 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1963 // at code that refers to a variable's name. We check if it has local
1964 // storage within the function, and if so, return the expression.
1965 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001966
Ted Kremenek06de2762007-08-17 16:46:58 +00001967 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001968 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1969
Ted Kremenek06de2762007-08-17 16:46:58 +00001970 return NULL;
1971 }
Mike Stump1eb44332009-09-09 15:08:12 +00001972
Ted Kremenek06de2762007-08-17 16:46:58 +00001973 case Stmt::ParenExprClass:
1974 // Ignore parentheses.
1975 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Ted Kremenek06de2762007-08-17 16:46:58 +00001977 case Stmt::UnaryOperatorClass: {
1978 // The only unary operator that make sense to handle here
1979 // is Deref. All others don't resolve to a "name." This includes
1980 // handling all sorts of rvalues passed to a unary operator.
1981 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001982
Ted Kremenek06de2762007-08-17 16:46:58 +00001983 if (U->getOpcode() == UnaryOperator::Deref)
1984 return EvalAddr(U->getSubExpr());
1985
1986 return NULL;
1987 }
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Ted Kremenek06de2762007-08-17 16:46:58 +00001989 case Stmt::ArraySubscriptExprClass: {
1990 // Array subscripts are potential references to data on the stack. We
1991 // retrieve the DeclRefExpr* for the array variable if it indeed
1992 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00001993 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00001994 }
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Ted Kremenek06de2762007-08-17 16:46:58 +00001996 case Stmt::ConditionalOperatorClass: {
1997 // For conditional operators we need to see if either the LHS or RHS are
1998 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
1999 ConditionalOperator *C = cast<ConditionalOperator>(E);
2000
Anders Carlsson39073232007-11-30 19:04:31 +00002001 // Handle the GNU extension for missing LHS.
2002 if (Expr *lhsExpr = C->getLHS())
2003 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2004 return LHS;
2005
2006 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00002007 }
Mike Stump1eb44332009-09-09 15:08:12 +00002008
Ted Kremenek06de2762007-08-17 16:46:58 +00002009 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002010 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00002011 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002012
Ted Kremenek06de2762007-08-17 16:46:58 +00002013 // Check for indirect access. We only want direct field accesses.
2014 if (!M->isArrow())
2015 return EvalVal(M->getBase());
2016 else
2017 return NULL;
2018 }
Mike Stump1eb44332009-09-09 15:08:12 +00002019
Ted Kremenek06de2762007-08-17 16:46:58 +00002020 // Everything else: we simply don't reason about them.
2021 default:
2022 return NULL;
2023 }
2024}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002025
2026//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2027
2028/// Check for comparisons of floating point operands using != and ==.
2029/// Issue a warning if these are no self-comparisons, as they are not likely
2030/// to do what the programmer intended.
2031void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2032 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002033
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002034 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00002035 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002036
2037 // Special case: check for x == x (which is OK).
2038 // Do not emit warnings for such cases.
2039 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2040 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2041 if (DRL->getDecl() == DRR->getDecl())
2042 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002043
2044
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002045 // Special case: check for comparisons against literals that can be exactly
2046 // represented by APFloat. In such cases, do not emit a warning. This
2047 // is a heuristic: often comparison against such literals are used to
2048 // detect if a value in a variable has not changed. This clearly can
2049 // lead to false negatives.
2050 if (EmitWarning) {
2051 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2052 if (FLL->isExact())
2053 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002054 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00002055 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2056 if (FLR->isExact())
2057 EmitWarning = false;
2058 }
2059 }
Mike Stump1eb44332009-09-09 15:08:12 +00002060
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002061 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002062 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002063 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002064 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002065 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002066
Sebastian Redl0eb23302009-01-19 00:08:26 +00002067 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002068 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00002069 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002070 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002071
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002072 // Emit the diagnostic.
2073 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002074 Diag(loc, diag::warn_floatingpoint_eq)
2075 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00002076}
John McCallba26e582010-01-04 23:21:16 +00002077
John McCallf2370c92010-01-06 05:24:50 +00002078//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2079//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00002080
John McCallf2370c92010-01-06 05:24:50 +00002081namespace {
John McCallba26e582010-01-04 23:21:16 +00002082
John McCallf2370c92010-01-06 05:24:50 +00002083/// Structure recording the 'active' range of an integer-valued
2084/// expression.
2085struct IntRange {
2086 /// The number of bits active in the int.
2087 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00002088
John McCallf2370c92010-01-06 05:24:50 +00002089 /// True if the int is known not to have negative values.
2090 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00002091
John McCallf2370c92010-01-06 05:24:50 +00002092 IntRange() {}
2093 IntRange(unsigned Width, bool NonNegative)
2094 : Width(Width), NonNegative(NonNegative)
2095 {}
John McCallba26e582010-01-04 23:21:16 +00002096
John McCallf2370c92010-01-06 05:24:50 +00002097 // Returns the range of the bool type.
2098 static IntRange forBoolType() {
2099 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00002100 }
2101
John McCallf2370c92010-01-06 05:24:50 +00002102 // Returns the range of an integral type.
2103 static IntRange forType(ASTContext &C, QualType T) {
2104 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00002105 }
2106
John McCallf2370c92010-01-06 05:24:50 +00002107 // Returns the range of an integeral type based on its canonical
2108 // representation.
2109 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2110 assert(T->isCanonicalUnqualified());
2111
2112 if (const VectorType *VT = dyn_cast<VectorType>(T))
2113 T = VT->getElementType().getTypePtr();
2114 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2115 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00002116
2117 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2118 EnumDecl *Enum = ET->getDecl();
2119 unsigned NumPositive = Enum->getNumPositiveBits();
2120 unsigned NumNegative = Enum->getNumNegativeBits();
2121
2122 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2123 }
John McCallf2370c92010-01-06 05:24:50 +00002124
2125 const BuiltinType *BT = cast<BuiltinType>(T);
2126 assert(BT->isInteger());
2127
2128 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2129 }
2130
2131 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002132 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00002133 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002134 L.NonNegative && R.NonNegative);
2135 }
2136
2137 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002138 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002139 return IntRange(std::min(L.Width, R.Width),
2140 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002141 }
2142};
2143
2144IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2145 if (value.isSigned() && value.isNegative())
2146 return IntRange(value.getMinSignedBits(), false);
2147
2148 if (value.getBitWidth() > MaxWidth)
2149 value.trunc(MaxWidth);
2150
2151 // isNonNegative() just checks the sign bit without considering
2152 // signedness.
2153 return IntRange(value.getActiveBits(), true);
2154}
2155
John McCall0acc3112010-01-06 22:57:21 +00002156IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002157 unsigned MaxWidth) {
2158 if (result.isInt())
2159 return GetValueRange(C, result.getInt(), MaxWidth);
2160
2161 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002162 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2163 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2164 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2165 R = IntRange::join(R, El);
2166 }
John McCallf2370c92010-01-06 05:24:50 +00002167 return R;
2168 }
2169
2170 if (result.isComplexInt()) {
2171 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2172 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2173 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002174 }
2175
2176 // This can happen with lossless casts to intptr_t of "based" lvalues.
2177 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002178 // FIXME: The only reason we need to pass the type in here is to get
2179 // the sign right on this one case. It would be nice if APValue
2180 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002181 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002182 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002183}
John McCallf2370c92010-01-06 05:24:50 +00002184
2185/// Pseudo-evaluate the given integer expression, estimating the
2186/// range of values it might take.
2187///
2188/// \param MaxWidth - the width to which the value will be truncated
2189IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2190 E = E->IgnoreParens();
2191
2192 // Try a full evaluation first.
2193 Expr::EvalResult result;
2194 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002195 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002196
2197 // I think we only want to look through implicit casts here; if the
2198 // user has an explicit widening cast, we should treat the value as
2199 // being of the new, wider type.
2200 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2201 if (CE->getCastKind() == CastExpr::CK_NoOp)
2202 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2203
2204 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2205
John McCall60fad452010-01-06 22:07:33 +00002206 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2207 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2208 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2209
John McCallf2370c92010-01-06 05:24:50 +00002210 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002211 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002212 return OutputTypeRange;
2213
2214 IntRange SubRange
2215 = GetExprRange(C, CE->getSubExpr(),
2216 std::min(MaxWidth, OutputTypeRange.Width));
2217
2218 // Bail out if the subexpr's range is as wide as the cast type.
2219 if (SubRange.Width >= OutputTypeRange.Width)
2220 return OutputTypeRange;
2221
2222 // Otherwise, we take the smaller width, and we're non-negative if
2223 // either the output type or the subexpr is.
2224 return IntRange(SubRange.Width,
2225 SubRange.NonNegative || OutputTypeRange.NonNegative);
2226 }
2227
2228 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2229 // If we can fold the condition, just take that operand.
2230 bool CondResult;
2231 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2232 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2233 : CO->getFalseExpr(),
2234 MaxWidth);
2235
2236 // Otherwise, conservatively merge.
2237 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2238 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2239 return IntRange::join(L, R);
2240 }
2241
2242 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2243 switch (BO->getOpcode()) {
2244
2245 // Boolean-valued operations are single-bit and positive.
2246 case BinaryOperator::LAnd:
2247 case BinaryOperator::LOr:
2248 case BinaryOperator::LT:
2249 case BinaryOperator::GT:
2250 case BinaryOperator::LE:
2251 case BinaryOperator::GE:
2252 case BinaryOperator::EQ:
2253 case BinaryOperator::NE:
2254 return IntRange::forBoolType();
2255
John McCallc0cd21d2010-02-23 19:22:29 +00002256 // The type of these compound assignments is the type of the LHS,
2257 // so the RHS is not necessarily an integer.
2258 case BinaryOperator::MulAssign:
2259 case BinaryOperator::DivAssign:
2260 case BinaryOperator::RemAssign:
2261 case BinaryOperator::AddAssign:
2262 case BinaryOperator::SubAssign:
2263 return IntRange::forType(C, E->getType());
2264
John McCallf2370c92010-01-06 05:24:50 +00002265 // Operations with opaque sources are black-listed.
2266 case BinaryOperator::PtrMemD:
2267 case BinaryOperator::PtrMemI:
2268 return IntRange::forType(C, E->getType());
2269
John McCall60fad452010-01-06 22:07:33 +00002270 // Bitwise-and uses the *infinum* of the two source ranges.
2271 case BinaryOperator::And:
John McCallc0cd21d2010-02-23 19:22:29 +00002272 case BinaryOperator::AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002273 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2274 GetExprRange(C, BO->getRHS(), MaxWidth));
2275
John McCallf2370c92010-01-06 05:24:50 +00002276 // Left shift gets black-listed based on a judgement call.
2277 case BinaryOperator::Shl:
John McCall3aae6092010-04-07 01:14:35 +00002278 // ...except that we want to treat '1 << (blah)' as logically
2279 // positive. It's an important idiom.
2280 if (IntegerLiteral *I
2281 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2282 if (I->getValue() == 1) {
2283 IntRange R = IntRange::forType(C, E->getType());
2284 return IntRange(R.Width, /*NonNegative*/ true);
2285 }
2286 }
2287 // fallthrough
2288
John McCallc0cd21d2010-02-23 19:22:29 +00002289 case BinaryOperator::ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002290 return IntRange::forType(C, E->getType());
2291
John McCall60fad452010-01-06 22:07:33 +00002292 // Right shift by a constant can narrow its left argument.
John McCallc0cd21d2010-02-23 19:22:29 +00002293 case BinaryOperator::Shr:
2294 case BinaryOperator::ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002295 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2296
2297 // If the shift amount is a positive constant, drop the width by
2298 // that much.
2299 llvm::APSInt shift;
2300 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2301 shift.isNonNegative()) {
2302 unsigned zext = shift.getZExtValue();
2303 if (zext >= L.Width)
2304 L.Width = (L.NonNegative ? 0 : 1);
2305 else
2306 L.Width -= zext;
2307 }
2308
2309 return L;
2310 }
2311
2312 // Comma acts as its right operand.
John McCallf2370c92010-01-06 05:24:50 +00002313 case BinaryOperator::Comma:
2314 return GetExprRange(C, BO->getRHS(), MaxWidth);
2315
John McCall60fad452010-01-06 22:07:33 +00002316 // Black-list pointer subtractions.
John McCallf2370c92010-01-06 05:24:50 +00002317 case BinaryOperator::Sub:
2318 if (BO->getLHS()->getType()->isPointerType())
2319 return IntRange::forType(C, E->getType());
2320 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002321
John McCallf2370c92010-01-06 05:24:50 +00002322 default:
2323 break;
2324 }
2325
2326 // Treat every other operator as if it were closed on the
2327 // narrowest type that encompasses both operands.
2328 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2329 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2330 return IntRange::join(L, R);
2331 }
2332
2333 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2334 switch (UO->getOpcode()) {
2335 // Boolean-valued operations are white-listed.
2336 case UnaryOperator::LNot:
2337 return IntRange::forBoolType();
2338
2339 // Operations with opaque sources are black-listed.
2340 case UnaryOperator::Deref:
2341 case UnaryOperator::AddrOf: // should be impossible
2342 case UnaryOperator::OffsetOf:
2343 return IntRange::forType(C, E->getType());
2344
2345 default:
2346 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2347 }
2348 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002349
2350 if (dyn_cast<OffsetOfExpr>(E)) {
2351 IntRange::forType(C, E->getType());
2352 }
John McCallf2370c92010-01-06 05:24:50 +00002353
2354 FieldDecl *BitField = E->getBitField();
2355 if (BitField) {
2356 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2357 unsigned BitWidth = BitWidthAP.getZExtValue();
2358
2359 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2360 }
2361
2362 return IntRange::forType(C, E->getType());
2363}
John McCall51313c32010-01-04 23:31:57 +00002364
John McCall323ed742010-05-06 08:58:33 +00002365IntRange GetExprRange(ASTContext &C, Expr *E) {
2366 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2367}
2368
John McCall51313c32010-01-04 23:31:57 +00002369/// Checks whether the given value, which currently has the given
2370/// source semantics, has the same value when coerced through the
2371/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002372bool IsSameFloatAfterCast(const llvm::APFloat &value,
2373 const llvm::fltSemantics &Src,
2374 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002375 llvm::APFloat truncated = value;
2376
2377 bool ignored;
2378 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2379 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2380
2381 return truncated.bitwiseIsEqual(value);
2382}
2383
2384/// Checks whether the given value, which currently has the given
2385/// source semantics, has the same value when coerced through the
2386/// target semantics.
2387///
2388/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002389bool IsSameFloatAfterCast(const APValue &value,
2390 const llvm::fltSemantics &Src,
2391 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002392 if (value.isFloat())
2393 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2394
2395 if (value.isVector()) {
2396 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2397 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2398 return false;
2399 return true;
2400 }
2401
2402 assert(value.isComplexFloat());
2403 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2404 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2405}
2406
John McCall323ed742010-05-06 08:58:33 +00002407void AnalyzeImplicitConversions(Sema &S, Expr *E);
2408
2409bool IsZero(Sema &S, Expr *E) {
2410 llvm::APSInt Value;
2411 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2412}
2413
2414void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2415 BinaryOperator::Opcode op = E->getOpcode();
2416 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2417 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2418 << "< 0" << "false"
2419 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2420 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2421 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2422 << ">= 0" << "true"
2423 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2424 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2425 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2426 << "0 >" << "false"
2427 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2428 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2429 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2430 << "0 <=" << "true"
2431 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2432 }
2433}
2434
2435/// Analyze the operands of the given comparison. Implements the
2436/// fallback case from AnalyzeComparison.
2437void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2438 AnalyzeImplicitConversions(S, E->getLHS());
2439 AnalyzeImplicitConversions(S, E->getRHS());
2440}
John McCall51313c32010-01-04 23:31:57 +00002441
John McCallba26e582010-01-04 23:21:16 +00002442/// \brief Implements -Wsign-compare.
2443///
2444/// \param lex the left-hand expression
2445/// \param rex the right-hand expression
2446/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002447/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002448void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2449 // The type the comparison is being performed in.
2450 QualType T = E->getLHS()->getType();
2451 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2452 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002453
John McCall323ed742010-05-06 08:58:33 +00002454 // We don't do anything special if this isn't an unsigned integral
2455 // comparison: we're only interested in integral comparisons, and
2456 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregorf6094622010-07-23 15:58:24 +00002457 if (!T->hasUnsignedIntegerRepresentation())
John McCall323ed742010-05-06 08:58:33 +00002458 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002459
John McCall323ed742010-05-06 08:58:33 +00002460 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2461 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002462
John McCall323ed742010-05-06 08:58:33 +00002463 // Check to see if one of the (unmodified) operands is of different
2464 // signedness.
2465 Expr *signedOperand, *unsignedOperand;
Douglas Gregorf6094622010-07-23 15:58:24 +00002466 if (lex->getType()->hasSignedIntegerRepresentation()) {
2467 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCall323ed742010-05-06 08:58:33 +00002468 "unsigned comparison between two signed integer expressions?");
2469 signedOperand = lex;
2470 unsignedOperand = rex;
Douglas Gregorf6094622010-07-23 15:58:24 +00002471 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCall323ed742010-05-06 08:58:33 +00002472 signedOperand = rex;
2473 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002474 } else {
John McCall323ed742010-05-06 08:58:33 +00002475 CheckTrivialUnsignedComparison(S, E);
2476 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002477 }
2478
John McCall323ed742010-05-06 08:58:33 +00002479 // Otherwise, calculate the effective range of the signed operand.
2480 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002481
John McCall323ed742010-05-06 08:58:33 +00002482 // Go ahead and analyze implicit conversions in the operands. Note
2483 // that we skip the implicit conversions on both sides.
2484 AnalyzeImplicitConversions(S, lex);
2485 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002486
John McCall323ed742010-05-06 08:58:33 +00002487 // If the signed range is non-negative, -Wsign-compare won't fire,
2488 // but we should still check for comparisons which are always true
2489 // or false.
2490 if (signedRange.NonNegative)
2491 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002492
2493 // For (in)equality comparisons, if the unsigned operand is a
2494 // constant which cannot collide with a overflowed signed operand,
2495 // then reinterpreting the signed operand as unsigned will not
2496 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002497 if (E->isEqualityOp()) {
2498 unsigned comparisonWidth = S.Context.getIntWidth(T);
2499 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002500
John McCall323ed742010-05-06 08:58:33 +00002501 // We should never be unable to prove that the unsigned operand is
2502 // non-negative.
2503 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2504
2505 if (unsignedRange.Width < comparisonWidth)
2506 return;
2507 }
2508
2509 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2510 << lex->getType() << rex->getType()
2511 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002512}
2513
John McCall51313c32010-01-04 23:31:57 +00002514/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002515void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002516 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2517}
2518
John McCall323ed742010-05-06 08:58:33 +00002519void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2520 bool *ICContext = 0) {
2521 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002522
John McCall323ed742010-05-06 08:58:33 +00002523 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2524 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2525 if (Source == Target) return;
2526 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002527
2528 // Never diagnose implicit casts to bool.
2529 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2530 return;
2531
2532 // Strip vector types.
2533 if (isa<VectorType>(Source)) {
2534 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002535 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002536
2537 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2538 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2539 }
2540
2541 // Strip complex types.
2542 if (isa<ComplexType>(Source)) {
2543 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002544 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002545
2546 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2547 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2548 }
2549
2550 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2551 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2552
2553 // If the source is floating point...
2554 if (SourceBT && SourceBT->isFloatingPoint()) {
2555 // ...and the target is floating point...
2556 if (TargetBT && TargetBT->isFloatingPoint()) {
2557 // ...then warn if we're dropping FP rank.
2558
2559 // Builtin FP kinds are ordered by increasing FP rank.
2560 if (SourceBT->getKind() > TargetBT->getKind()) {
2561 // Don't warn about float constants that are precisely
2562 // representable in the target type.
2563 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002564 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002565 // Value might be a float, a float vector, or a float complex.
2566 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002567 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2568 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002569 return;
2570 }
2571
John McCall323ed742010-05-06 08:58:33 +00002572 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002573 }
2574 return;
2575 }
2576
2577 // If the target is integral, always warn.
2578 if ((TargetBT && TargetBT->isInteger()))
2579 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002580 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002581
2582 return;
2583 }
2584
John McCallf2370c92010-01-06 05:24:50 +00002585 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002586 return;
2587
John McCall323ed742010-05-06 08:58:33 +00002588 IntRange SourceRange = GetExprRange(S.Context, E);
2589 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002590
2591 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002592 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2593 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002594 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002595 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2596 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2597 }
2598
2599 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2600 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2601 SourceRange.Width == TargetRange.Width)) {
2602 unsigned DiagID = diag::warn_impcast_integer_sign;
2603
2604 // Traditionally, gcc has warned about this under -Wsign-compare.
2605 // We also want to warn about it in -Wconversion.
2606 // So if -Wconversion is off, use a completely identical diagnostic
2607 // in the sign-compare group.
2608 // The conditional-checking code will
2609 if (ICContext) {
2610 DiagID = diag::warn_impcast_integer_sign_conditional;
2611 *ICContext = true;
2612 }
2613
2614 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002615 }
2616
2617 return;
2618}
2619
John McCall323ed742010-05-06 08:58:33 +00002620void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2621
2622void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2623 bool &ICContext) {
2624 E = E->IgnoreParenImpCasts();
2625
2626 if (isa<ConditionalOperator>(E))
2627 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2628
2629 AnalyzeImplicitConversions(S, E);
2630 if (E->getType() != T)
2631 return CheckImplicitConversion(S, E, T, &ICContext);
2632 return;
2633}
2634
2635void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2636 AnalyzeImplicitConversions(S, E->getCond());
2637
2638 bool Suspicious = false;
2639 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2640 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2641
2642 // If -Wconversion would have warned about either of the candidates
2643 // for a signedness conversion to the context type...
2644 if (!Suspicious) return;
2645
2646 // ...but it's currently ignored...
2647 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2648 return;
2649
2650 // ...and -Wsign-compare isn't...
2651 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2652 return;
2653
2654 // ...then check whether it would have warned about either of the
2655 // candidates for a signedness conversion to the condition type.
2656 if (E->getType() != T) {
2657 Suspicious = false;
2658 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2659 E->getType(), &Suspicious);
2660 if (!Suspicious)
2661 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2662 E->getType(), &Suspicious);
2663 if (!Suspicious)
2664 return;
2665 }
2666
2667 // If so, emit a diagnostic under -Wsign-compare.
2668 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2669 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2670 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2671 << lex->getType() << rex->getType()
2672 << lex->getSourceRange() << rex->getSourceRange();
2673}
2674
2675/// AnalyzeImplicitConversions - Find and report any interesting
2676/// implicit conversions in the given expression. There are a couple
2677/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2678void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2679 QualType T = OrigE->getType();
2680 Expr *E = OrigE->IgnoreParenImpCasts();
2681
2682 // For conditional operators, we analyze the arguments as if they
2683 // were being fed directly into the output.
2684 if (isa<ConditionalOperator>(E)) {
2685 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2686 CheckConditionalOperator(S, CO, T);
2687 return;
2688 }
2689
2690 // Go ahead and check any implicit conversions we might have skipped.
2691 // The non-canonical typecheck is just an optimization;
2692 // CheckImplicitConversion will filter out dead implicit conversions.
2693 if (E->getType() != T)
2694 CheckImplicitConversion(S, E, T);
2695
2696 // Now continue drilling into this expression.
2697
2698 // Skip past explicit casts.
2699 if (isa<ExplicitCastExpr>(E)) {
2700 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2701 return AnalyzeImplicitConversions(S, E);
2702 }
2703
2704 // Do a somewhat different check with comparison operators.
2705 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2706 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2707
2708 // These break the otherwise-useful invariant below. Fortunately,
2709 // we don't really need to recurse into them, because any internal
2710 // expressions should have been analyzed already when they were
2711 // built into statements.
2712 if (isa<StmtExpr>(E)) return;
2713
2714 // Don't descend into unevaluated contexts.
2715 if (isa<SizeOfAlignOfExpr>(E)) return;
2716
2717 // Now just recurse over the expression's children.
2718 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2719 I != IE; ++I)
2720 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2721}
2722
2723} // end anonymous namespace
2724
2725/// Diagnoses "dangerous" implicit conversions within the given
2726/// expression (which is a full expression). Implements -Wconversion
2727/// and -Wsign-compare.
2728void Sema::CheckImplicitConversions(Expr *E) {
2729 // Don't diagnose in unevaluated contexts.
2730 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2731 return;
2732
2733 // Don't diagnose for value- or type-dependent expressions.
2734 if (E->isTypeDependent() || E->isValueDependent())
2735 return;
2736
2737 AnalyzeImplicitConversions(*this, E);
2738}
2739
Mike Stumpf8c49212010-01-21 03:59:47 +00002740/// CheckParmsForFunctionDef - Check that the parameters of the given
2741/// function are appropriate for the definition of a function. This
2742/// takes care of any checks that cannot be performed on the
2743/// declaration itself, e.g., that the types of each of the function
2744/// parameters are complete.
2745bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2746 bool HasInvalidParm = false;
2747 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2748 ParmVarDecl *Param = FD->getParamDecl(p);
2749
2750 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2751 // function declarator that is part of a function definition of
2752 // that function shall not have incomplete type.
2753 //
2754 // This is also C++ [dcl.fct]p6.
2755 if (!Param->isInvalidDecl() &&
2756 RequireCompleteType(Param->getLocation(), Param->getType(),
2757 diag::err_typecheck_decl_incomplete_type)) {
2758 Param->setInvalidDecl();
2759 HasInvalidParm = true;
2760 }
2761
2762 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2763 // declaration of each parameter shall include an identifier.
2764 if (Param->getIdentifier() == 0 &&
2765 !Param->isImplicit() &&
2766 !getLangOptions().CPlusPlus)
2767 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002768
2769 // C99 6.7.5.3p12:
2770 // If the function declarator is not part of a definition of that
2771 // function, parameters may have incomplete type and may use the [*]
2772 // notation in their sequences of declarator specifiers to specify
2773 // variable length array types.
2774 QualType PType = Param->getOriginalType();
2775 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2776 if (AT->getSizeModifier() == ArrayType::Star) {
2777 // FIXME: This diagnosic should point the the '[*]' if source-location
2778 // information is added for it.
2779 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2780 }
2781 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002782 }
2783
2784 return HasInvalidParm;
2785}