blob: d9264870ae22d5d4ccd5388e0304a9be87afac9d [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 Kremeneke0e53132010-01-28 23:39:18 +000016#include "clang/Analysis/Analyses/PrintfFormatString.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:
205 if (SemaBuiltinAtomicOverloaded(TheCall))
206 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000207 break;
Nate Begeman26a31422010-06-08 02:47:44 +0000208 }
209
210 // Since the target specific builtins for each arch overlap, only check those
211 // of the arch we are compiling for.
212 if (BuiltinID >= Builtin::FirstTSBuiltin) {
213 switch (Context.Target.getTriple().getArch()) {
214 case llvm::Triple::arm:
215 case llvm::Triple::thumb:
216 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
217 return ExprError();
218 break;
219 case llvm::Triple::x86:
220 case llvm::Triple::x86_64:
221 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
222 return ExprError();
223 break;
224 default:
225 break;
226 }
227 }
228
229 return move(TheCallResult);
230}
231
232bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
233 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000234 case X86::BI__builtin_ia32_palignr128:
235 case X86::BI__builtin_ia32_palignr: {
236 llvm::APSInt Result;
237 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000238 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000239 break;
240 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000241 }
Nate Begeman26a31422010-06-08 02:47:44 +0000242 return false;
243}
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Nate Begeman61eecf52010-06-14 05:21:25 +0000245// Get the valid immediate range for the specified NEON type code.
246static unsigned RFT(unsigned t, bool shift = false) {
247 bool quad = t & 0x10;
248
249 switch (t & 0x7) {
250 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000251 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000252 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000253 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000254 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000255 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000256 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000257 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000258 case 4: // f32
259 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000260 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000261 case 5: // poly8
262 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000263 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000264 case 6: // poly16
265 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000266 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000267 case 7: // float16
268 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000269 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000270 }
271 return 0;
272}
273
Nate Begeman26a31422010-06-08 02:47:44 +0000274bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000275 llvm::APSInt Result;
276
Nate Begeman0d15c532010-06-13 04:47:52 +0000277 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000278 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000279 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000280#define GET_NEON_OVERLOAD_CHECK
281#include "clang/Basic/arm_neon.inc"
282#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000283 }
284
Nate Begeman0d15c532010-06-13 04:47:52 +0000285 // For NEON intrinsics which are overloaded on vector element type, validate
286 // the immediate which specifies which variant to emit.
287 if (mask) {
288 unsigned ArgNo = TheCall->getNumArgs()-1;
289 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
290 return true;
291
Nate Begeman61eecf52010-06-14 05:21:25 +0000292 TV = Result.getLimitedValue(32);
293 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000294 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
295 << TheCall->getArg(ArgNo)->getSourceRange();
296 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000297
Nate Begeman0d15c532010-06-13 04:47:52 +0000298 // For NEON intrinsics which take an immediate value as part of the
299 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000300 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000301 switch (BuiltinID) {
302 default: return false;
Nate 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>()) {
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000339 if (CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000340 bool HasVAListArg = Format->getFirstArg() == 0;
Douglas Gregor3c385e52009-02-14 18:57:46 +0000341 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
Ted Kremenek3d692df2009-02-27 17:58:43 +0000342 HasVAListArg ? 0 : Format->getFirstArg() - 1);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000343 }
Chris Lattner59907c42007-08-10 20:18:51 +0000344 }
Mike Stump1eb44332009-09-09 15:08:12 +0000345
346 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssond406bf02009-08-16 01:56:34 +0000347 NonNull = NonNull->getNext<NonNullAttr>())
348 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000349
Anders Carlssond406bf02009-08-16 01:56:34 +0000350 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000351}
352
Anders Carlssond406bf02009-08-16 01:56:34 +0000353bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000354 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000355 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000356 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000357 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000359 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
360 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000361 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000363 QualType Ty = V->getType();
364 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000365 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Anders Carlssond406bf02009-08-16 01:56:34 +0000367 if (!CheckablePrintfAttr(Format, TheCall))
368 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Anders Carlssond406bf02009-08-16 01:56:34 +0000370 bool HasVAListArg = Format->getFirstArg() == 0;
Anders Carlssond406bf02009-08-16 01:56:34 +0000371 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
372 HasVAListArg ? 0 : Format->getFirstArg() - 1);
373
374 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000375}
376
Chris Lattner5caa3702009-05-08 06:58:22 +0000377/// SemaBuiltinAtomicOverloaded - We have a call to a function like
378/// __sync_fetch_and_add, which is an overloaded function based on the pointer
379/// type of its first argument. The main ActOnCallExpr routines have already
380/// promoted the types of arguments because all of these calls are prototyped as
381/// void(...).
382///
383/// This function goes through and does final semantic checking for these
384/// builtins,
385bool Sema::SemaBuiltinAtomicOverloaded(CallExpr *TheCall) {
386 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
387 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
388
389 // Ensure that we have at least one argument to do type inference from.
390 if (TheCall->getNumArgs() < 1)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000391 return Diag(TheCall->getLocEnd(),
392 diag::err_typecheck_call_too_few_args_at_least)
393 << 0 << 1 << TheCall->getNumArgs()
394 << TheCall->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000395
Chris Lattner5caa3702009-05-08 06:58:22 +0000396 // Inspect the first argument of the atomic builtin. This should always be
397 // a pointer type, whose element is an integral scalar or pointer type.
398 // Because it is a pointer type, we don't have to worry about any implicit
399 // casts here.
400 Expr *FirstArg = TheCall->getArg(0);
401 if (!FirstArg->getType()->isPointerType())
402 return Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
403 << FirstArg->getType() << FirstArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Ted Kremenek6217b802009-07-29 21:53:49 +0000405 QualType ValType = FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000406 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chris Lattner5caa3702009-05-08 06:58:22 +0000407 !ValType->isBlockPointerType())
408 return Diag(DRE->getLocStart(),
409 diag::err_atomic_builtin_must_be_pointer_intptr)
410 << FirstArg->getType() << FirstArg->getSourceRange();
411
412 // We need to figure out which concrete builtin this maps onto. For example,
413 // __sync_fetch_and_add with a 2 byte object turns into
414 // __sync_fetch_and_add_2.
415#define BUILTIN_ROW(x) \
416 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
417 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000418
Chris Lattner5caa3702009-05-08 06:58:22 +0000419 static const unsigned BuiltinIndices[][5] = {
420 BUILTIN_ROW(__sync_fetch_and_add),
421 BUILTIN_ROW(__sync_fetch_and_sub),
422 BUILTIN_ROW(__sync_fetch_and_or),
423 BUILTIN_ROW(__sync_fetch_and_and),
424 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000425
Chris Lattner5caa3702009-05-08 06:58:22 +0000426 BUILTIN_ROW(__sync_add_and_fetch),
427 BUILTIN_ROW(__sync_sub_and_fetch),
428 BUILTIN_ROW(__sync_and_and_fetch),
429 BUILTIN_ROW(__sync_or_and_fetch),
430 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Chris Lattner5caa3702009-05-08 06:58:22 +0000432 BUILTIN_ROW(__sync_val_compare_and_swap),
433 BUILTIN_ROW(__sync_bool_compare_and_swap),
434 BUILTIN_ROW(__sync_lock_test_and_set),
435 BUILTIN_ROW(__sync_lock_release)
436 };
Mike Stump1eb44332009-09-09 15:08:12 +0000437#undef BUILTIN_ROW
438
Chris Lattner5caa3702009-05-08 06:58:22 +0000439 // Determine the index of the size.
440 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000441 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000442 case 1: SizeIndex = 0; break;
443 case 2: SizeIndex = 1; break;
444 case 4: SizeIndex = 2; break;
445 case 8: SizeIndex = 3; break;
446 case 16: SizeIndex = 4; break;
447 default:
448 return Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
449 << FirstArg->getType() << FirstArg->getSourceRange();
450 }
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Chris Lattner5caa3702009-05-08 06:58:22 +0000452 // Each of these builtins has one pointer argument, followed by some number of
453 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
454 // that we ignore. Find out which row of BuiltinIndices to read from as well
455 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000456 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000457 unsigned BuiltinIndex, NumFixed = 1;
458 switch (BuiltinID) {
459 default: assert(0 && "Unknown overloaded atomic builtin!");
460 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
461 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
462 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
463 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
464 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000466 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
467 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
468 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
469 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
470 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Chris Lattner5caa3702009-05-08 06:58:22 +0000472 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000473 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000474 NumFixed = 2;
475 break;
476 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000477 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000478 NumFixed = 2;
479 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000480 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000481 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000482 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000483 NumFixed = 0;
484 break;
485 }
Mike Stump1eb44332009-09-09 15:08:12 +0000486
Chris Lattner5caa3702009-05-08 06:58:22 +0000487 // Now that we know how many fixed arguments we expect, first check that we
488 // have at least that many.
489 if (TheCall->getNumArgs() < 1+NumFixed)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000490 return Diag(TheCall->getLocEnd(),
491 diag::err_typecheck_call_too_few_args_at_least)
492 << 0 << 1+NumFixed << TheCall->getNumArgs()
493 << TheCall->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000494
495
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000496 // Get the decl for the concrete builtin from this, we can tell what the
497 // concrete integer type we should convert to is.
498 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
499 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
500 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000501 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000502 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
503 TUScope, false, DRE->getLocStart()));
504 const FunctionProtoType *BuiltinFT =
John McCall183700f2009-09-21 23:43:11 +0000505 NewBuiltinDecl->getType()->getAs<FunctionProtoType>();
Ted Kremenek6217b802009-07-29 21:53:49 +0000506 ValType = BuiltinFT->getArgType(0)->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000507
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000508 // If the first type needs to be converted (e.g. void** -> int*), do it now.
509 if (BuiltinFT->getArgType(0) != FirstArg->getType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +0000510 ImpCastExprToType(FirstArg, BuiltinFT->getArgType(0), CastExpr::CK_BitCast);
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000511 TheCall->setArg(0, FirstArg);
512 }
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Chris Lattner5caa3702009-05-08 06:58:22 +0000514 // Next, walk the valid ones promoting to the right type.
515 for (unsigned i = 0; i != NumFixed; ++i) {
516 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000517
Chris Lattner5caa3702009-05-08 06:58:22 +0000518 // If the argument is an implicit cast, then there was a promotion due to
519 // "...", just remove it now.
520 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
521 Arg = ICE->getSubExpr();
522 ICE->setSubExpr(0);
523 ICE->Destroy(Context);
524 TheCall->setArg(i+1, Arg);
525 }
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Chris Lattner5caa3702009-05-08 06:58:22 +0000527 // GCC does an implicit conversion to the pointer or integer ValType. This
528 // can fail in some cases (1i -> int**), check for this error case now.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000529 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000530 CXXBaseSpecifierArray BasePath;
531 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chris Lattner5caa3702009-05-08 06:58:22 +0000532 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000533
Chris Lattner5caa3702009-05-08 06:58:22 +0000534 // Okay, we have something that *can* be converted to the right type. Check
535 // to see if there is a potentially weird extension going on here. This can
536 // happen when you do an atomic operation on something like an char* and
537 // pass in 42. The 42 gets converted to char. This is even more strange
538 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000539 // FIXME: Do this check.
Anders Carlsson80971bd2010-04-24 16:36:20 +0000540 ImpCastExprToType(Arg, ValType, Kind);
Chris Lattner5caa3702009-05-08 06:58:22 +0000541 TheCall->setArg(i+1, Arg);
542 }
Mike Stump1eb44332009-09-09 15:08:12 +0000543
Chris Lattner5caa3702009-05-08 06:58:22 +0000544 // Switch the DeclRefExpr to refer to the new decl.
545 DRE->setDecl(NewBuiltinDecl);
546 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner5caa3702009-05-08 06:58:22 +0000548 // Set the callee in the CallExpr.
549 // FIXME: This leaks the original parens and implicit casts.
550 Expr *PromotedCall = DRE;
551 UsualUnaryConversions(PromotedCall);
552 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Chris Lattner5caa3702009-05-08 06:58:22 +0000554
555 // Change the result type of the call to match the result type of the decl.
556 TheCall->setType(NewBuiltinDecl->getResultType());
557 return false;
558}
559
560
Chris Lattner69039812009-02-18 06:01:06 +0000561/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000562/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000563/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000564/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000565/// belong to the input codeset UTF-8"
566/// Note: It might also make sense to do the UTF-16 conversion here (would
567/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000568bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000569 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000570 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
571
572 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000573 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
574 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000575 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Daniel Dunbarf015b032009-09-22 10:03:52 +0000578 const char *Data = Literal->getStrData();
579 unsigned Length = Literal->getByteLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Daniel Dunbarf015b032009-09-22 10:03:52 +0000581 for (unsigned i = 0; i < Length; ++i) {
582 if (!Data[i]) {
583 Diag(getLocationOfStringLiteralByte(Literal, i),
584 diag::warn_cfstring_literal_contains_nul_character)
585 << Arg->getSourceRange();
586 break;
587 }
588 }
Mike Stump1eb44332009-09-09 15:08:12 +0000589
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000590 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000591}
592
Chris Lattnerc27c6652007-12-20 00:05:45 +0000593/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
594/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000595bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
596 Expr *Fn = TheCall->getCallee();
597 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000598 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000599 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000600 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
601 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000602 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000603 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000604 return true;
605 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000606
607 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000608 return Diag(TheCall->getLocEnd(),
609 diag::err_typecheck_call_too_few_args_at_least)
610 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000611 }
612
Chris Lattnerc27c6652007-12-20 00:05:45 +0000613 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000614 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000615 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000616 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000617 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000618 else if (FunctionDecl *FD = getCurFunctionDecl())
619 isVariadic = FD->isVariadic();
620 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000621 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000622
Chris Lattnerc27c6652007-12-20 00:05:45 +0000623 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000624 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
625 return true;
626 }
Mike Stump1eb44332009-09-09 15:08:12 +0000627
Chris Lattner30ce3442007-12-19 23:59:04 +0000628 // Verify that the second argument to the builtin is the last argument of the
629 // current function or method.
630 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000631 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Anders Carlsson88cf2262008-02-11 04:20:54 +0000633 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
634 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000635 // FIXME: This isn't correct for methods (results in bogus warning).
636 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000637 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000638 if (CurBlock)
639 LastArg = *(CurBlock->TheDecl->param_end()-1);
640 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000641 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000642 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000643 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000644 SecondArgIsLastNamedArgument = PV == LastArg;
645 }
646 }
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Chris Lattner30ce3442007-12-19 23:59:04 +0000648 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000649 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000650 diag::warn_second_parameter_of_va_start_not_last_named_argument);
651 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000652}
Chris Lattner30ce3442007-12-19 23:59:04 +0000653
Chris Lattner1b9a0792007-12-20 00:26:33 +0000654/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
655/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000656bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
657 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000658 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000659 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000660 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000661 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000662 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000663 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000664 << SourceRange(TheCall->getArg(2)->getLocStart(),
665 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Chris Lattner925e60d2007-12-28 05:29:59 +0000667 Expr *OrigArg0 = TheCall->getArg(0);
668 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000669
Chris Lattner1b9a0792007-12-20 00:26:33 +0000670 // Do standard promotions between the two arguments, returning their common
671 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000672 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000673
674 // Make sure any conversions are pushed back into the call; this is
675 // type safe since unordered compare builtins are declared as "_Bool
676 // foo(...)".
677 TheCall->setArg(0, OrigArg0);
678 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Douglas Gregorcde01732009-05-19 22:10:17 +0000680 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
681 return false;
682
Chris Lattner1b9a0792007-12-20 00:26:33 +0000683 // If the common type isn't a real floating type, then the arguments were
684 // invalid for this operation.
685 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000686 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000687 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000688 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000689 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Chris Lattner1b9a0792007-12-20 00:26:33 +0000691 return false;
692}
693
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000694/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
695/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000696/// to check everything. We expect the last argument to be a floating point
697/// value.
698bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
699 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000700 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000701 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000702 if (TheCall->getNumArgs() > NumArgs)
703 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000704 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000705 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000706 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000707 (*(TheCall->arg_end()-1))->getLocEnd());
708
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000709 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Eli Friedman9ac6f622009-08-31 20:06:00 +0000711 if (OrigArg->isTypeDependent())
712 return false;
713
Chris Lattner81368fb2010-05-06 05:50:07 +0000714 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000715 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000716 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000717 diag::err_typecheck_call_invalid_unary_fp)
718 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Chris Lattner81368fb2010-05-06 05:50:07 +0000720 // If this is an implicit conversion from float -> double, remove it.
721 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
722 Expr *CastArg = Cast->getSubExpr();
723 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
724 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
725 "promotion from float to double is the only expected cast here");
726 Cast->setSubExpr(0);
727 Cast->Destroy(Context);
728 TheCall->setArg(NumArgs-1, CastArg);
729 OrigArg = CastArg;
730 }
731 }
732
Eli Friedman9ac6f622009-08-31 20:06:00 +0000733 return false;
734}
735
Eli Friedmand38617c2008-05-14 19:38:39 +0000736/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
737// This is declared to take (...), so we have to check everything.
Sebastian Redl0eb23302009-01-19 00:08:26 +0000738Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000739 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000740 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000741 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000742 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000743 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000744
Nate Begeman37b6a572010-06-08 00:16:34 +0000745 // Determine which of the following types of shufflevector we're checking:
746 // 1) unary, vector mask: (lhs, mask)
747 // 2) binary, vector mask: (lhs, rhs, mask)
748 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
749 QualType resType = TheCall->getArg(0)->getType();
750 unsigned numElements = 0;
751
Douglas Gregorcde01732009-05-19 22:10:17 +0000752 if (!TheCall->getArg(0)->isTypeDependent() &&
753 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000754 QualType LHSType = TheCall->getArg(0)->getType();
755 QualType RHSType = TheCall->getArg(1)->getType();
756
757 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000758 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000759 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000760 TheCall->getArg(1)->getLocEnd());
761 return ExprError();
762 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000763
764 numElements = LHSType->getAs<VectorType>()->getNumElements();
765 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000766
Nate Begeman37b6a572010-06-08 00:16:34 +0000767 // Check to see if we have a call with 2 vector arguments, the unary shuffle
768 // with mask. If so, verify that RHS is an integer vector type with the
769 // same number of elts as lhs.
770 if (TheCall->getNumArgs() == 2) {
771 if (!RHSType->isIntegerType() ||
772 RHSType->getAs<VectorType>()->getNumElements() != numElements)
773 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
774 << SourceRange(TheCall->getArg(1)->getLocStart(),
775 TheCall->getArg(1)->getLocEnd());
776 numResElements = numElements;
777 }
778 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000779 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000780 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000781 TheCall->getArg(1)->getLocEnd());
782 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000783 } else if (numElements != numResElements) {
784 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
785 resType = Context.getVectorType(eltType, numResElements, false, false);
Douglas Gregorcde01732009-05-19 22:10:17 +0000786 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000787 }
788
789 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000790 if (TheCall->getArg(i)->isTypeDependent() ||
791 TheCall->getArg(i)->isValueDependent())
792 continue;
793
Nate Begeman37b6a572010-06-08 00:16:34 +0000794 llvm::APSInt Result(32);
795 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
796 return ExprError(Diag(TheCall->getLocStart(),
797 diag::err_shufflevector_nonconstant_argument)
798 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000799
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000800 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000801 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000802 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000803 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000804 }
805
806 llvm::SmallVector<Expr*, 32> exprs;
807
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000808 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000809 exprs.push_back(TheCall->getArg(i));
810 TheCall->setArg(i, 0);
811 }
812
Nate Begemana88dc302009-08-12 02:10:25 +0000813 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000814 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000815 TheCall->getCallee()->getLocStart(),
816 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000817}
Chris Lattner30ce3442007-12-19 23:59:04 +0000818
Daniel Dunbar4493f792008-07-21 22:59:13 +0000819/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
820// This is declared to take (const void*, ...) and can take two
821// optional constant int args.
822bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000823 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000824
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000825 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000826 return Diag(TheCall->getLocEnd(),
827 diag::err_typecheck_call_too_many_args_at_most)
828 << 0 /*function call*/ << 3 << NumArgs
829 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000830
831 // Argument 0 is checked for us and the remaining arguments must be
832 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000833 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000834 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000835
Eli Friedman9aef7262009-12-04 00:30:06 +0000836 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000837 if (SemaBuiltinConstantArg(TheCall, i, Result))
838 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000839
Daniel Dunbar4493f792008-07-21 22:59:13 +0000840 // FIXME: gcc issues a warning and rewrites these to 0. These
841 // seems especially odd for the third argument since the default
842 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000843 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000844 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000845 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000846 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000847 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000848 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000849 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000850 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000851 }
852 }
853
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000854 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000855}
856
Eric Christopher691ebc32010-04-17 02:26:23 +0000857/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
858/// TheCall is a constant expression.
859bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
860 llvm::APSInt &Result) {
861 Expr *Arg = TheCall->getArg(ArgNum);
862 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
863 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
864
865 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
866
867 if (!Arg->isIntegerConstantExpr(Result, Context))
868 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000869 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000870
Chris Lattner21fb98e2009-09-23 06:06:36 +0000871 return false;
872}
873
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000874/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
875/// int type). This simply type checks that type is one of the defined
876/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000877// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000878bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000879 llvm::APSInt Result;
880
881 // Check constant-ness first.
882 if (SemaBuiltinConstantArg(TheCall, 1, Result))
883 return true;
884
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000885 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000886 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000887 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
888 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000889 }
890
891 return false;
892}
893
Eli Friedman586d6a82009-05-03 06:04:26 +0000894/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000895/// This checks that val is a constant 1.
896bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
897 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000898 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000899
Eric Christopher691ebc32010-04-17 02:26:23 +0000900 // TODO: This is less than ideal. Overload this to take a value.
901 if (SemaBuiltinConstantArg(TheCall, 1, Result))
902 return true;
903
904 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000905 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
906 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
907
908 return false;
909}
910
Ted Kremenekd30ef872009-01-12 23:09:09 +0000911// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000912bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
913 bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000914 unsigned format_idx, unsigned firstDataArg) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000915 if (E->isTypeDependent() || E->isValueDependent())
916 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000917
918 switch (E->getStmtClass()) {
919 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000920 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Chris Lattner813b70d2009-12-22 06:00:13 +0000921 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000922 HasVAListArg, format_idx, firstDataArg)
Ted Kremenekd30ef872009-01-12 23:09:09 +0000923 && SemaCheckStringLiteral(C->getRHS(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000924 HasVAListArg, format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000925 }
926
927 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000928 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000929 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000930 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000931 }
932
933 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000934 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000935 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000936 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000937 }
Mike Stump1eb44332009-09-09 15:08:12 +0000938
Ted Kremenek082d9362009-03-20 21:35:28 +0000939 case Stmt::DeclRefExprClass: {
940 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000941
Ted Kremenek082d9362009-03-20 21:35:28 +0000942 // As an exception, do not flag errors for variables binding to
943 // const string literals.
944 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
945 bool isConstant = false;
946 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000947
Ted Kremenek082d9362009-03-20 21:35:28 +0000948 if (const ArrayType *AT = Context.getAsArrayType(T)) {
949 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000950 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000951 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000952 PT->getPointeeType().isConstant(Context);
953 }
Mike Stump1eb44332009-09-09 15:08:12 +0000954
Ted Kremenek082d9362009-03-20 21:35:28 +0000955 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000956 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000957 return SemaCheckStringLiteral(Init, TheCall,
958 HasVAListArg, format_idx, firstDataArg);
959 }
Mike Stump1eb44332009-09-09 15:08:12 +0000960
Anders Carlssond966a552009-06-28 19:55:58 +0000961 // For vprintf* functions (i.e., HasVAListArg==true), we add a
962 // special check to see if the format string is a function parameter
963 // of the function calling the printf function. If the function
964 // has an attribute indicating it is a printf-like function, then we
965 // should suppress warnings concerning non-literals being used in a call
966 // to a vprintf function. For example:
967 //
968 // void
969 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
970 // va_list ap;
971 // va_start(ap, fmt);
972 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
973 // ...
974 //
975 //
976 // FIXME: We don't have full attribute support yet, so just check to see
977 // if the argument is a DeclRefExpr that references a parameter. We'll
978 // add proper support for checking the attribute later.
979 if (HasVAListArg)
980 if (isa<ParmVarDecl>(VD))
981 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +0000982 }
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Ted Kremenek082d9362009-03-20 21:35:28 +0000984 return false;
985 }
Ted Kremenekd30ef872009-01-12 23:09:09 +0000986
Anders Carlsson8f031b32009-06-27 04:05:33 +0000987 case Stmt::CallExprClass: {
988 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000989 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +0000990 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
991 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
992 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000993 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +0000994 unsigned ArgIndex = FA->getFormatIdx();
995 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +0000996
997 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Anders Carlsson8f031b32009-06-27 04:05:33 +0000998 format_idx, firstDataArg);
999 }
1000 }
1001 }
1002 }
Mike Stump1eb44332009-09-09 15:08:12 +00001003
Anders Carlsson8f031b32009-06-27 04:05:33 +00001004 return false;
1005 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001006 case Stmt::ObjCStringLiteralClass:
1007 case Stmt::StringLiteralClass: {
1008 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Ted Kremenek082d9362009-03-20 21:35:28 +00001010 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001011 StrE = ObjCFExpr->getString();
1012 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001013 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Ted Kremenekd30ef872009-01-12 23:09:09 +00001015 if (StrE) {
Mike Stump1eb44332009-09-09 15:08:12 +00001016 CheckPrintfString(StrE, E, TheCall, HasVAListArg, format_idx,
Douglas Gregor3c385e52009-02-14 18:57:46 +00001017 firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001018 return true;
1019 }
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Ted Kremenekd30ef872009-01-12 23:09:09 +00001021 return false;
1022 }
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Ted Kremenek082d9362009-03-20 21:35:28 +00001024 default:
1025 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001026 }
1027}
1028
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001029void
Mike Stump1eb44332009-09-09 15:08:12 +00001030Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1031 const CallExpr *TheCall) {
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001032 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1033 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001034 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001035 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001036 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001037 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1038 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001039 }
1040}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001041
Chris Lattner59907c42007-08-10 20:18:51 +00001042/// CheckPrintfArguments - Check calls to printf (and similar functions) for
Mike Stump1eb44332009-09-09 15:08:12 +00001043/// correct use of format strings.
Ted Kremenek71895b92007-08-14 17:39:48 +00001044///
1045/// HasVAListArg - A predicate indicating whether the printf-like
1046/// function is passed an explicit va_arg argument (e.g., vprintf)
1047///
1048/// format_idx - The index into Args for the format string.
1049///
1050/// Improper format strings to functions in the printf family can be
1051/// the source of bizarre bugs and very serious security holes. A
1052/// good source of information is available in the following paper
1053/// (which includes additional references):
Chris Lattner59907c42007-08-10 20:18:51 +00001054///
1055/// FormatGuard: Automatic Protection From printf Format String
1056/// Vulnerabilities, Proceedings of the 10th USENIX Security Symposium, 2001.
Ted Kremenek71895b92007-08-14 17:39:48 +00001057///
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001058/// TODO:
Ted Kremenek71895b92007-08-14 17:39:48 +00001059/// Functionality implemented:
1060///
1061/// We can statically check the following properties for string
1062/// literal format strings for non v.*printf functions (where the
1063/// arguments are passed directly):
1064//
1065/// (1) Are the number of format conversions equal to the number of
1066/// data arguments?
1067///
1068/// (2) Does each format conversion correctly match the type of the
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001069/// corresponding data argument?
Ted Kremenek71895b92007-08-14 17:39:48 +00001070///
1071/// Moreover, for all printf functions we can:
1072///
1073/// (3) Check for a missing format string (when not caught by type checking).
1074///
1075/// (4) Check for no-operation flags; e.g. using "#" with format
1076/// conversion 'c' (TODO)
1077///
1078/// (5) Check the use of '%n', a major source of security holes.
1079///
1080/// (6) Check for malformed format conversions that don't specify anything.
1081///
1082/// (7) Check for empty format strings. e.g: printf("");
1083///
1084/// (8) Check that the format string is a wide literal.
1085///
1086/// All of these checks can be done by parsing the format string.
1087///
Chris Lattner59907c42007-08-10 20:18:51 +00001088void
Mike Stump1eb44332009-09-09 15:08:12 +00001089Sema::CheckPrintfArguments(const CallExpr *TheCall, bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +00001090 unsigned format_idx, unsigned firstDataArg) {
Ted Kremenek082d9362009-03-20 21:35:28 +00001091 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001092
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001093 // The way the format attribute works in GCC, the implicit this argument
1094 // of member functions is counted. However, it doesn't appear in our own
1095 // lists, so decrement format_idx in that case.
1096 if (isa<CXXMemberCallExpr>(TheCall)) {
1097 // Catch a format attribute mistakenly referring to the object argument.
1098 if (format_idx == 0)
1099 return;
1100 --format_idx;
1101 if(firstDataArg != 0)
1102 --firstDataArg;
1103 }
1104
Mike Stump1eb44332009-09-09 15:08:12 +00001105 // CHECK: printf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001106 if (format_idx >= TheCall->getNumArgs()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001107 Diag(TheCall->getRParenLoc(), diag::warn_printf_missing_format_string)
1108 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001109 return;
1110 }
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Ted Kremenek082d9362009-03-20 21:35:28 +00001112 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001113
Chris Lattner59907c42007-08-10 20:18:51 +00001114 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001115 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001116 // Dynamically generated format strings are difficult to
1117 // automatically vet at compile time. Requiring that format strings
1118 // are string literals: (1) permits the checking of format strings by
1119 // the compiler and thereby (2) can practically remove the source of
1120 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001121
Mike Stump1eb44332009-09-09 15:08:12 +00001122 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001123 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001124 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001125 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001126 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
1127 firstDataArg))
1128 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001129
Chris Lattner655f1412009-04-29 04:59:47 +00001130 // If there are no arguments specified, warn with -Wformat-security, otherwise
1131 // warn only with -Wformat-nonliteral.
1132 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001133 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001134 diag::warn_printf_nonliteral_noargs)
1135 << OrigFormatExpr->getSourceRange();
1136 else
Mike Stump1eb44332009-09-09 15:08:12 +00001137 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001138 diag::warn_printf_nonliteral)
1139 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001140}
Ted Kremenek71895b92007-08-14 17:39:48 +00001141
Ted Kremeneke0e53132010-01-28 23:39:18 +00001142namespace {
Ted Kremenek74d56a12010-02-04 20:46:58 +00001143class CheckPrintfHandler : public analyze_printf::FormatStringHandler {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001144 Sema &S;
1145 const StringLiteral *FExpr;
1146 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001147 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001148 const unsigned NumDataArgs;
1149 const bool IsObjCLiteral;
1150 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001151 const bool HasVAListArg;
1152 const CallExpr *TheCall;
1153 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001154 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001155 bool usesPositionalArgs;
1156 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001157public:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001158 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001159 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001160 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001161 const char *beg, bool hasVAListArg,
1162 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001163 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001164 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001165 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001166 IsObjCLiteral(isObjCLiteral), Beg(beg),
1167 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001168 TheCall(theCall), FormatIdx(formatIdx),
1169 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001170 CoveredArgs.resize(numDataArgs);
1171 CoveredArgs.reset();
1172 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001173
Ted Kremenek07d161f2010-01-29 01:50:07 +00001174 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001175
Ted Kremenek808015a2010-01-29 03:16:21 +00001176 void HandleIncompleteFormatSpecifier(const char *startSpecifier,
1177 unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001178
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001179 bool
Ted Kremenek74d56a12010-02-04 20:46:58 +00001180 HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1181 const char *startSpecifier,
1182 unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001183
Ted Kremenekefaff192010-02-27 01:41:03 +00001184 virtual void HandleInvalidPosition(const char *startSpecifier,
1185 unsigned specifierLen,
1186 analyze_printf::PositionContext p);
1187
1188 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1189
Ted Kremeneke0e53132010-01-28 23:39:18 +00001190 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001191
Ted Kremeneke0e53132010-01-28 23:39:18 +00001192 bool HandleFormatSpecifier(const analyze_printf::FormatSpecifier &FS,
1193 const char *startSpecifier,
1194 unsigned specifierLen);
1195private:
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001196 SourceRange getFormatStringRange();
Tom Care45f9b7e2010-06-21 21:21:01 +00001197 CharSourceRange getFormatSpecifierRange(const char *startSpecifier,
1198 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001199 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001200
Ted Kremenekefaff192010-02-27 01:41:03 +00001201 bool HandleAmount(const analyze_printf::OptionalAmount &Amt, unsigned k,
1202 const char *startSpecifier, unsigned specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001203 void HandleInvalidAmount(const analyze_printf::FormatSpecifier &FS,
1204 const analyze_printf::OptionalAmount &Amt,
1205 unsigned type,
1206 const char *startSpecifier, unsigned specifierLen);
1207 void HandleFlag(const analyze_printf::FormatSpecifier &FS,
1208 const analyze_printf::OptionalFlag &flag,
1209 const char *startSpecifier, unsigned specifierLen);
1210 void HandleIgnoredFlag(const analyze_printf::FormatSpecifier &FS,
1211 const analyze_printf::OptionalFlag &ignoredFlag,
1212 const analyze_printf::OptionalFlag &flag,
1213 const char *startSpecifier, unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001214
Ted Kremenek0d277352010-01-29 01:06:55 +00001215 const Expr *getDataArg(unsigned i) const;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001216};
1217}
1218
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001219SourceRange CheckPrintfHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001220 return OrigFormatExpr->getSourceRange();
1221}
1222
Tom Care45f9b7e2010-06-21 21:21:01 +00001223CharSourceRange CheckPrintfHandler::
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001224getFormatSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001225 SourceLocation Start = getLocationOfByte(startSpecifier);
1226 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1227
1228 // Advance the end SourceLocation by one due to half-open ranges.
1229 End = End.getFileLocWithOffset(1);
1230
1231 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001232}
1233
Ted Kremeneke0e53132010-01-28 23:39:18 +00001234SourceLocation CheckPrintfHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001235 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001236}
1237
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001238void CheckPrintfHandler::
Ted Kremenek808015a2010-01-29 03:16:21 +00001239HandleIncompleteFormatSpecifier(const char *startSpecifier,
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001240 unsigned specifierLen) {
Ted Kremenek808015a2010-01-29 03:16:21 +00001241 SourceLocation Loc = getLocationOfByte(startSpecifier);
1242 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001243 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001244}
1245
Ted Kremenekefaff192010-02-27 01:41:03 +00001246void
1247CheckPrintfHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1248 analyze_printf::PositionContext p) {
1249 SourceLocation Loc = getLocationOfByte(startPos);
1250 S.Diag(Loc, diag::warn_printf_invalid_positional_specifier)
1251 << (unsigned) p << getFormatSpecifierRange(startPos, posLen);
1252}
1253
1254void CheckPrintfHandler::HandleZeroPosition(const char *startPos,
1255 unsigned posLen) {
1256 SourceLocation Loc = getLocationOfByte(startPos);
1257 S.Diag(Loc, diag::warn_printf_zero_positional_specifier)
1258 << getFormatSpecifierRange(startPos, posLen);
1259}
1260
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001261bool CheckPrintfHandler::
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001262HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1263 const char *startSpecifier,
1264 unsigned specifierLen) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001265
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001266 unsigned argIndex = FS.getArgIndex();
1267 bool keepGoing = true;
1268 if (argIndex < NumDataArgs) {
1269 // Consider the argument coverered, even though the specifier doesn't
1270 // make sense.
1271 CoveredArgs.set(argIndex);
1272 }
1273 else {
1274 // If argIndex exceeds the number of data arguments we
1275 // don't issue a warning because that is just a cascade of warnings (and
1276 // they may have intended '%%' anyway). We don't want to continue processing
1277 // the format string after this point, however, as we will like just get
1278 // gibberish when trying to match arguments.
1279 keepGoing = false;
1280 }
1281
Ted Kremenek808015a2010-01-29 03:16:21 +00001282 const analyze_printf::ConversionSpecifier &CS =
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001283 FS.getConversionSpecifier();
Ted Kremenek808015a2010-01-29 03:16:21 +00001284 SourceLocation Loc = getLocationOfByte(CS.getStart());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001285 S.Diag(Loc, diag::warn_printf_invalid_conversion)
Ted Kremenek808015a2010-01-29 03:16:21 +00001286 << llvm::StringRef(CS.getStart(), CS.getLength())
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001287 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001288
1289 return keepGoing;
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001290}
1291
Ted Kremeneke0e53132010-01-28 23:39:18 +00001292void CheckPrintfHandler::HandleNullChar(const char *nullCharacter) {
1293 // The presence of a null character is likely an error.
1294 S.Diag(getLocationOfByte(nullCharacter),
1295 diag::warn_printf_format_string_contains_null_char)
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001296 << getFormatStringRange();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001297}
1298
Ted Kremenek0d277352010-01-29 01:06:55 +00001299const Expr *CheckPrintfHandler::getDataArg(unsigned i) const {
Ted Kremenek6ee76532010-03-25 03:59:12 +00001300 return TheCall->getArg(FirstDataArg + i);
Ted Kremenek0d277352010-01-29 01:06:55 +00001301}
1302
1303bool
1304CheckPrintfHandler::HandleAmount(const analyze_printf::OptionalAmount &Amt,
Ted Kremenekefaff192010-02-27 01:41:03 +00001305 unsigned k, const char *startSpecifier,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001306 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001307
1308 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001309 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001310 unsigned argIndex = Amt.getArgIndex();
1311 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001312 S.Diag(getLocationOfByte(Amt.getStart()),
1313 diag::warn_printf_asterisk_missing_arg)
1314 << k << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001315 // Don't do any more checking. We will just emit
1316 // spurious errors.
1317 return false;
1318 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001319
Ted Kremenek0d277352010-01-29 01:06:55 +00001320 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001321 // Although not in conformance with C99, we also allow the argument to be
1322 // an 'unsigned int' as that is a reasonably safe case. GCC also
1323 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001324 CoveredArgs.set(argIndex);
1325 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001326 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001327
1328 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1329 assert(ATR.isValid());
1330
1331 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001332 S.Diag(getLocationOfByte(Amt.getStart()),
1333 diag::warn_printf_asterisk_wrong_type)
1334 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001335 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001336 << getFormatSpecifierRange(startSpecifier, specifierLen)
1337 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001338 // Don't do any more checking. We will just emit
1339 // spurious errors.
1340 return false;
1341 }
1342 }
1343 }
1344 return true;
1345}
Ted Kremenek0d277352010-01-29 01:06:55 +00001346
Tom Caree4ee9662010-06-17 19:00:27 +00001347void CheckPrintfHandler::HandleInvalidAmount(
1348 const analyze_printf::FormatSpecifier &FS,
1349 const analyze_printf::OptionalAmount &Amt,
1350 unsigned type,
1351 const char *startSpecifier,
1352 unsigned specifierLen) {
1353 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1354 switch (Amt.getHowSpecified()) {
1355 case analyze_printf::OptionalAmount::Constant:
1356 S.Diag(getLocationOfByte(Amt.getStart()),
1357 diag::warn_printf_nonsensical_optional_amount)
1358 << type
1359 << CS.toString()
1360 << getFormatSpecifierRange(startSpecifier, specifierLen)
1361 << FixItHint::CreateRemoval(getFormatSpecifierRange(Amt.getStart(),
1362 Amt.getConstantLength()));
1363 break;
1364
1365 default:
1366 S.Diag(getLocationOfByte(Amt.getStart()),
1367 diag::warn_printf_nonsensical_optional_amount)
1368 << type
1369 << CS.toString()
1370 << getFormatSpecifierRange(startSpecifier, specifierLen);
1371 break;
1372 }
1373}
1374
1375void CheckPrintfHandler::HandleFlag(const analyze_printf::FormatSpecifier &FS,
1376 const analyze_printf::OptionalFlag &flag,
1377 const char *startSpecifier,
1378 unsigned specifierLen) {
1379 // Warn about pointless flag with a fixit removal.
1380 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1381 S.Diag(getLocationOfByte(flag.getPosition()),
1382 diag::warn_printf_nonsensical_flag)
1383 << flag.toString() << CS.toString()
1384 << getFormatSpecifierRange(startSpecifier, specifierLen)
1385 << FixItHint::CreateRemoval(getFormatSpecifierRange(flag.getPosition(), 1));
1386}
1387
1388void CheckPrintfHandler::HandleIgnoredFlag(
1389 const analyze_printf::FormatSpecifier &FS,
1390 const analyze_printf::OptionalFlag &ignoredFlag,
1391 const analyze_printf::OptionalFlag &flag,
1392 const char *startSpecifier,
1393 unsigned specifierLen) {
1394 // Warn about ignored flag with a fixit removal.
1395 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1396 diag::warn_printf_ignored_flag)
1397 << ignoredFlag.toString() << flag.toString()
1398 << getFormatSpecifierRange(startSpecifier, specifierLen)
1399 << FixItHint::CreateRemoval(getFormatSpecifierRange(
1400 ignoredFlag.getPosition(), 1));
1401}
1402
Ted Kremeneke0e53132010-01-28 23:39:18 +00001403bool
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001404CheckPrintfHandler::HandleFormatSpecifier(const analyze_printf::FormatSpecifier
1405 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001406 const char *startSpecifier,
1407 unsigned specifierLen) {
1408
Ted Kremenekefaff192010-02-27 01:41:03 +00001409 using namespace analyze_printf;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001410 const ConversionSpecifier &CS = FS.getConversionSpecifier();
1411
Ted Kremenekefaff192010-02-27 01:41:03 +00001412 if (atFirstArg) {
1413 atFirstArg = false;
1414 usesPositionalArgs = FS.usesPositionalArg();
1415 }
1416 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1417 // Cannot mix-and-match positional and non-positional arguments.
1418 S.Diag(getLocationOfByte(CS.getStart()),
1419 diag::warn_printf_mix_positional_nonpositional_args)
1420 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001421 return false;
1422 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001423
Ted Kremenekefaff192010-02-27 01:41:03 +00001424 // First check if the field width, precision, and conversion specifier
1425 // have matching data arguments.
1426 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1427 startSpecifier, specifierLen)) {
1428 return false;
1429 }
1430
1431 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1432 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001433 return false;
1434 }
1435
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001436 if (!CS.consumesDataArgument()) {
1437 // FIXME: Technically specifying a precision or field width here
1438 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001439 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001440 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001441
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001442 // Consume the argument.
1443 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001444 if (argIndex < NumDataArgs) {
1445 // The check to see if the argIndex is valid will come later.
1446 // We set the bit here because we may exit early from this
1447 // function if we encounter some other error.
1448 CoveredArgs.set(argIndex);
1449 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001450
1451 // Check for using an Objective-C specific conversion specifier
1452 // in a non-ObjC literal.
1453 if (!IsObjCLiteral && CS.isObjCArg()) {
1454 return HandleInvalidConversionSpecifier(FS, startSpecifier, specifierLen);
1455 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001456
Tom Caree4ee9662010-06-17 19:00:27 +00001457 // Check for invalid use of field width
1458 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001459 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001460 startSpecifier, specifierLen);
1461 }
1462
1463 // Check for invalid use of precision
1464 if (!FS.hasValidPrecision()) {
1465 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1466 startSpecifier, specifierLen);
1467 }
1468
1469 // Check each flag does not conflict with any other component.
1470 if (!FS.hasValidLeadingZeros())
1471 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1472 if (!FS.hasValidPlusPrefix())
1473 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001474 if (!FS.hasValidSpacePrefix())
1475 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001476 if (!FS.hasValidAlternativeForm())
1477 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1478 if (!FS.hasValidLeftJustified())
1479 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1480
1481 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001482 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1483 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1484 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001485 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1486 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1487 startSpecifier, specifierLen);
1488
1489 // Check the length modifier is valid with the given conversion specifier.
1490 const LengthModifier &LM = FS.getLengthModifier();
1491 if (!FS.hasValidLengthModifier())
1492 S.Diag(getLocationOfByte(LM.getStart()),
1493 diag::warn_printf_nonsensical_length)
1494 << LM.toString() << CS.toString()
1495 << getFormatSpecifierRange(startSpecifier, specifierLen)
1496 << FixItHint::CreateRemoval(getFormatSpecifierRange(LM.getStart(),
1497 LM.getLength()));
1498
1499 // Are we using '%n'?
Ted Kremeneke82d8042010-01-29 01:35:25 +00001500 if (CS.getKind() == ConversionSpecifier::OutIntPtrArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001501 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001502 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001503 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001504 // Continue checking the other format specifiers.
1505 return true;
1506 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001507
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001508 // The remaining checks depend on the data arguments.
1509 if (HasVAListArg)
1510 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001511
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001512 if (argIndex >= NumDataArgs) {
Ted Kremenek6ee76532010-03-25 03:59:12 +00001513 if (FS.usesPositionalArg()) {
1514 S.Diag(getLocationOfByte(CS.getStart()),
1515 diag::warn_printf_positional_arg_exceeds_data_args)
1516 << (argIndex+1) << NumDataArgs
1517 << getFormatSpecifierRange(startSpecifier, specifierLen);
1518 }
1519 else {
1520 S.Diag(getLocationOfByte(CS.getStart()),
1521 diag::warn_printf_insufficient_data_args)
1522 << getFormatSpecifierRange(startSpecifier, specifierLen);
1523 }
1524
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001525 // Don't do any more checking.
1526 return false;
1527 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001528
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001529 // Now type check the data expression that matches the
1530 // format specifier.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001531 const Expr *Ex = getDataArg(argIndex);
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001532 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001533 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1534 // Check if we didn't match because of an implicit cast from a 'char'
1535 // or 'short' to an 'int'. This is done because printf is a varargs
1536 // function.
1537 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1538 if (ICE->getType() == S.Context.IntTy)
1539 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1540 return true;
Ted Kremenek105d41c2010-02-01 19:38:10 +00001541
Tom Care3bfc5f42010-06-09 04:11:11 +00001542 // We may be able to offer a FixItHint if it is a supported type.
1543 FormatSpecifier fixedFS = FS;
1544 bool success = fixedFS.fixType(Ex->getType());
1545
1546 if (success) {
1547 // Get the fix string from the fixed format specifier
1548 llvm::SmallString<128> buf;
1549 llvm::raw_svector_ostream os(buf);
1550 fixedFS.toString(os);
1551
1552 S.Diag(getLocationOfByte(CS.getStart()),
1553 diag::warn_printf_conversion_argument_type_mismatch)
1554 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1555 << getFormatSpecifierRange(startSpecifier, specifierLen)
1556 << Ex->getSourceRange()
1557 << FixItHint::CreateReplacement(
1558 getFormatSpecifierRange(startSpecifier, specifierLen),
1559 os.str());
1560 }
1561 else {
1562 S.Diag(getLocationOfByte(CS.getStart()),
1563 diag::warn_printf_conversion_argument_type_mismatch)
1564 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1565 << getFormatSpecifierRange(startSpecifier, specifierLen)
1566 << Ex->getSourceRange();
1567 }
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001568 }
Ted Kremeneke0e53132010-01-28 23:39:18 +00001569
1570 return true;
1571}
1572
Ted Kremenek07d161f2010-01-29 01:50:07 +00001573void CheckPrintfHandler::DoneProcessing() {
1574 // Does the number of data arguments exceed the number of
1575 // format conversions in the format string?
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001576 if (!HasVAListArg) {
1577 // Find any arguments that weren't covered.
1578 CoveredArgs.flip();
1579 signed notCoveredArg = CoveredArgs.find_first();
1580 if (notCoveredArg >= 0) {
1581 assert((unsigned)notCoveredArg < NumDataArgs);
1582 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1583 diag::warn_printf_data_arg_not_used)
1584 << getFormatStringRange();
1585 }
1586 }
Ted Kremenek07d161f2010-01-29 01:50:07 +00001587}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001588
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001589void Sema::CheckPrintfString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001590 const Expr *OrigFormatExpr,
1591 const CallExpr *TheCall, bool HasVAListArg,
1592 unsigned format_idx, unsigned firstDataArg) {
1593
Ted Kremeneke0e53132010-01-28 23:39:18 +00001594 // CHECK: is the format string a wide literal?
1595 if (FExpr->isWide()) {
1596 Diag(FExpr->getLocStart(),
1597 diag::warn_printf_format_string_is_wide_literal)
1598 << OrigFormatExpr->getSourceRange();
1599 return;
1600 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001601
Ted Kremeneke0e53132010-01-28 23:39:18 +00001602 // Str - The format string. NOTE: this is NOT null-terminated!
1603 const char *Str = FExpr->getStrData();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001604
Ted Kremeneke0e53132010-01-28 23:39:18 +00001605 // CHECK: empty format string?
1606 unsigned StrLen = FExpr->getByteLength();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001607
Ted Kremeneke0e53132010-01-28 23:39:18 +00001608 if (StrLen == 0) {
1609 Diag(FExpr->getLocStart(), diag::warn_printf_empty_format_string)
1610 << OrigFormatExpr->getSourceRange();
1611 return;
1612 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001613
Ted Kremenek6ee76532010-03-25 03:59:12 +00001614 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001615 TheCall->getNumArgs() - firstDataArg,
Ted Kremenek0d277352010-01-29 01:06:55 +00001616 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1617 HasVAListArg, TheCall, format_idx);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001618
Ted Kremenek74d56a12010-02-04 20:46:58 +00001619 if (!analyze_printf::ParseFormatString(H, Str, Str + StrLen))
Ted Kremenek808015a2010-01-29 03:16:21 +00001620 H.DoneProcessing();
Ted Kremenekce7024e2010-01-28 01:18:22 +00001621}
1622
Ted Kremenek06de2762007-08-17 16:46:58 +00001623//===--- CHECK: Return Address of Stack Variable --------------------------===//
1624
1625static DeclRefExpr* EvalVal(Expr *E);
1626static DeclRefExpr* EvalAddr(Expr* E);
1627
1628/// CheckReturnStackAddr - Check if a return statement returns the address
1629/// of a stack variable.
1630void
1631Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1632 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001633
Ted Kremenek06de2762007-08-17 16:46:58 +00001634 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001635 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001636 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001637 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001638 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001639
Steve Naroffc50a4a52008-09-16 22:25:10 +00001640 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001641 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001642
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001643 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001644 if (C->hasBlockDeclRefExprs())
1645 Diag(C->getLocStart(), diag::err_ret_local_block)
1646 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001647
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001648 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1649 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1650 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001651
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001652 } else if (lhsType->isReferenceType()) {
1653 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001654 // Check for a reference to the stack
1655 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001656 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001657 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001658 }
1659}
1660
1661/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1662/// check if the expression in a return statement evaluates to an address
1663/// to a location on the stack. The recursion is used to traverse the
1664/// AST of the return expression, with recursion backtracking when we
1665/// encounter a subexpression that (1) clearly does not lead to the address
1666/// of a stack variable or (2) is something we cannot determine leads to
1667/// the address of a stack variable based on such local checking.
1668///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001669/// EvalAddr processes expressions that are pointers that are used as
1670/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001671/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001672/// the refers to a stack variable.
1673///
1674/// This implementation handles:
1675///
1676/// * pointer-to-pointer casts
1677/// * implicit conversions from array references to pointers
1678/// * taking the address of fields
1679/// * arbitrary interplay between "&" and "*" operators
1680/// * pointer arithmetic from an address of a stack variable
1681/// * taking the address of an array element where the array is on the stack
1682static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001683 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001684 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001685 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001686 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001687 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001688
Ted Kremenek06de2762007-08-17 16:46:58 +00001689 // Our "symbolic interpreter" is just a dispatch off the currently
1690 // viewed AST node. We then recursively traverse the AST by calling
1691 // EvalAddr and EvalVal appropriately.
1692 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001693 case Stmt::ParenExprClass:
1694 // Ignore parentheses.
1695 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001696
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001697 case Stmt::UnaryOperatorClass: {
1698 // The only unary operator that make sense to handle here
1699 // is AddrOf. All others don't make sense as pointers.
1700 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001701
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001702 if (U->getOpcode() == UnaryOperator::AddrOf)
1703 return EvalVal(U->getSubExpr());
1704 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001705 return NULL;
1706 }
Mike Stump1eb44332009-09-09 15:08:12 +00001707
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001708 case Stmt::BinaryOperatorClass: {
1709 // Handle pointer arithmetic. All other binary operators are not valid
1710 // in this context.
1711 BinaryOperator *B = cast<BinaryOperator>(E);
1712 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001713
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001714 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1715 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001716
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001717 Expr *Base = B->getLHS();
1718
1719 // Determine which argument is the real pointer base. It could be
1720 // the RHS argument instead of the LHS.
1721 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001722
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001723 assert (Base->getType()->isPointerType());
1724 return EvalAddr(Base);
1725 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001726
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001727 // For conditional operators we need to see if either the LHS or RHS are
1728 // valid DeclRefExpr*s. If one of them is valid, we return it.
1729 case Stmt::ConditionalOperatorClass: {
1730 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001731
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001732 // Handle the GNU extension for missing LHS.
1733 if (Expr *lhsExpr = C->getLHS())
1734 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1735 return LHS;
1736
1737 return EvalAddr(C->getRHS());
1738 }
Mike Stump1eb44332009-09-09 15:08:12 +00001739
Ted Kremenek54b52742008-08-07 00:49:01 +00001740 // For casts, we need to handle conversions from arrays to
1741 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001742 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001743 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001744 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001745 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001746 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001747
Steve Naroffdd972f22008-09-05 22:11:13 +00001748 if (SubExpr->getType()->isPointerType() ||
1749 SubExpr->getType()->isBlockPointerType() ||
1750 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001751 return EvalAddr(SubExpr);
1752 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001753 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001754 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001755 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001756 }
Mike Stump1eb44332009-09-09 15:08:12 +00001757
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001758 // C++ casts. For dynamic casts, static casts, and const casts, we
1759 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001760 // through the cast. In the case the dynamic cast doesn't fail (and
1761 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001762 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001763 // FIXME: The comment about is wrong; we're not always converting
1764 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001765 // handle references to objects.
1766 case Stmt::CXXStaticCastExprClass:
1767 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001768 case Stmt::CXXConstCastExprClass:
1769 case Stmt::CXXReinterpretCastExprClass: {
1770 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001771 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001772 return EvalAddr(S);
1773 else
1774 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001775 }
Mike Stump1eb44332009-09-09 15:08:12 +00001776
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001777 // Everything else: we simply don't reason about them.
1778 default:
1779 return NULL;
1780 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001781}
Mike Stump1eb44332009-09-09 15:08:12 +00001782
Ted Kremenek06de2762007-08-17 16:46:58 +00001783
1784/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1785/// See the comments for EvalAddr for more details.
1786static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +00001787
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001788 // We should only be called for evaluating non-pointer expressions, or
1789 // expressions with a pointer type that are not used as references but instead
1790 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001791
Ted Kremenek06de2762007-08-17 16:46:58 +00001792 // Our "symbolic interpreter" is just a dispatch off the currently
1793 // viewed AST node. We then recursively traverse the AST by calling
1794 // EvalAddr and EvalVal appropriately.
1795 switch (E->getStmtClass()) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00001796 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001797 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1798 // at code that refers to a variable's name. We check if it has local
1799 // storage within the function, and if so, return the expression.
1800 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001801
Ted Kremenek06de2762007-08-17 16:46:58 +00001802 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001803 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1804
Ted Kremenek06de2762007-08-17 16:46:58 +00001805 return NULL;
1806 }
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Ted Kremenek06de2762007-08-17 16:46:58 +00001808 case Stmt::ParenExprClass:
1809 // Ignore parentheses.
1810 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +00001811
Ted Kremenek06de2762007-08-17 16:46:58 +00001812 case Stmt::UnaryOperatorClass: {
1813 // The only unary operator that make sense to handle here
1814 // is Deref. All others don't resolve to a "name." This includes
1815 // handling all sorts of rvalues passed to a unary operator.
1816 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001817
Ted Kremenek06de2762007-08-17 16:46:58 +00001818 if (U->getOpcode() == UnaryOperator::Deref)
1819 return EvalAddr(U->getSubExpr());
1820
1821 return NULL;
1822 }
Mike Stump1eb44332009-09-09 15:08:12 +00001823
Ted Kremenek06de2762007-08-17 16:46:58 +00001824 case Stmt::ArraySubscriptExprClass: {
1825 // Array subscripts are potential references to data on the stack. We
1826 // retrieve the DeclRefExpr* for the array variable if it indeed
1827 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00001828 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00001829 }
Mike Stump1eb44332009-09-09 15:08:12 +00001830
Ted Kremenek06de2762007-08-17 16:46:58 +00001831 case Stmt::ConditionalOperatorClass: {
1832 // For conditional operators we need to see if either the LHS or RHS are
1833 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
1834 ConditionalOperator *C = cast<ConditionalOperator>(E);
1835
Anders Carlsson39073232007-11-30 19:04:31 +00001836 // Handle the GNU extension for missing LHS.
1837 if (Expr *lhsExpr = C->getLHS())
1838 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
1839 return LHS;
1840
1841 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00001842 }
Mike Stump1eb44332009-09-09 15:08:12 +00001843
Ted Kremenek06de2762007-08-17 16:46:58 +00001844 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001845 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001846 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001847
Ted Kremenek06de2762007-08-17 16:46:58 +00001848 // Check for indirect access. We only want direct field accesses.
1849 if (!M->isArrow())
1850 return EvalVal(M->getBase());
1851 else
1852 return NULL;
1853 }
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Ted Kremenek06de2762007-08-17 16:46:58 +00001855 // Everything else: we simply don't reason about them.
1856 default:
1857 return NULL;
1858 }
1859}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001860
1861//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
1862
1863/// Check for comparisons of floating point operands using != and ==.
1864/// Issue a warning if these are no self-comparisons, as they are not likely
1865/// to do what the programmer intended.
1866void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
1867 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001869 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00001870 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001871
1872 // Special case: check for x == x (which is OK).
1873 // Do not emit warnings for such cases.
1874 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
1875 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
1876 if (DRL->getDecl() == DRR->getDecl())
1877 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001878
1879
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001880 // Special case: check for comparisons against literals that can be exactly
1881 // represented by APFloat. In such cases, do not emit a warning. This
1882 // is a heuristic: often comparison against such literals are used to
1883 // detect if a value in a variable has not changed. This clearly can
1884 // lead to false negatives.
1885 if (EmitWarning) {
1886 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
1887 if (FLL->isExact())
1888 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001889 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001890 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
1891 if (FLR->isExact())
1892 EmitWarning = false;
1893 }
1894 }
Mike Stump1eb44332009-09-09 15:08:12 +00001895
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001896 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001897 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001898 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001899 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001900 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001901
Sebastian Redl0eb23302009-01-19 00:08:26 +00001902 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001903 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001904 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001905 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001906
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001907 // Emit the diagnostic.
1908 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001909 Diag(loc, diag::warn_floatingpoint_eq)
1910 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001911}
John McCallba26e582010-01-04 23:21:16 +00001912
John McCallf2370c92010-01-06 05:24:50 +00001913//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
1914//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00001915
John McCallf2370c92010-01-06 05:24:50 +00001916namespace {
John McCallba26e582010-01-04 23:21:16 +00001917
John McCallf2370c92010-01-06 05:24:50 +00001918/// Structure recording the 'active' range of an integer-valued
1919/// expression.
1920struct IntRange {
1921 /// The number of bits active in the int.
1922 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00001923
John McCallf2370c92010-01-06 05:24:50 +00001924 /// True if the int is known not to have negative values.
1925 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00001926
John McCallf2370c92010-01-06 05:24:50 +00001927 IntRange() {}
1928 IntRange(unsigned Width, bool NonNegative)
1929 : Width(Width), NonNegative(NonNegative)
1930 {}
John McCallba26e582010-01-04 23:21:16 +00001931
John McCallf2370c92010-01-06 05:24:50 +00001932 // Returns the range of the bool type.
1933 static IntRange forBoolType() {
1934 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00001935 }
1936
John McCallf2370c92010-01-06 05:24:50 +00001937 // Returns the range of an integral type.
1938 static IntRange forType(ASTContext &C, QualType T) {
1939 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00001940 }
1941
John McCallf2370c92010-01-06 05:24:50 +00001942 // Returns the range of an integeral type based on its canonical
1943 // representation.
1944 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
1945 assert(T->isCanonicalUnqualified());
1946
1947 if (const VectorType *VT = dyn_cast<VectorType>(T))
1948 T = VT->getElementType().getTypePtr();
1949 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
1950 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00001951
1952 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
1953 EnumDecl *Enum = ET->getDecl();
1954 unsigned NumPositive = Enum->getNumPositiveBits();
1955 unsigned NumNegative = Enum->getNumNegativeBits();
1956
1957 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
1958 }
John McCallf2370c92010-01-06 05:24:50 +00001959
1960 const BuiltinType *BT = cast<BuiltinType>(T);
1961 assert(BT->isInteger());
1962
1963 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
1964 }
1965
1966 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00001967 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00001968 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00001969 L.NonNegative && R.NonNegative);
1970 }
1971
1972 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00001973 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00001974 return IntRange(std::min(L.Width, R.Width),
1975 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00001976 }
1977};
1978
1979IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
1980 if (value.isSigned() && value.isNegative())
1981 return IntRange(value.getMinSignedBits(), false);
1982
1983 if (value.getBitWidth() > MaxWidth)
1984 value.trunc(MaxWidth);
1985
1986 // isNonNegative() just checks the sign bit without considering
1987 // signedness.
1988 return IntRange(value.getActiveBits(), true);
1989}
1990
John McCall0acc3112010-01-06 22:57:21 +00001991IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00001992 unsigned MaxWidth) {
1993 if (result.isInt())
1994 return GetValueRange(C, result.getInt(), MaxWidth);
1995
1996 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00001997 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
1998 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
1999 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2000 R = IntRange::join(R, El);
2001 }
John McCallf2370c92010-01-06 05:24:50 +00002002 return R;
2003 }
2004
2005 if (result.isComplexInt()) {
2006 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2007 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2008 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002009 }
2010
2011 // This can happen with lossless casts to intptr_t of "based" lvalues.
2012 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002013 // FIXME: The only reason we need to pass the type in here is to get
2014 // the sign right on this one case. It would be nice if APValue
2015 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002016 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002017 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002018}
John McCallf2370c92010-01-06 05:24:50 +00002019
2020/// Pseudo-evaluate the given integer expression, estimating the
2021/// range of values it might take.
2022///
2023/// \param MaxWidth - the width to which the value will be truncated
2024IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2025 E = E->IgnoreParens();
2026
2027 // Try a full evaluation first.
2028 Expr::EvalResult result;
2029 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002030 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002031
2032 // I think we only want to look through implicit casts here; if the
2033 // user has an explicit widening cast, we should treat the value as
2034 // being of the new, wider type.
2035 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2036 if (CE->getCastKind() == CastExpr::CK_NoOp)
2037 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2038
2039 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2040
John McCall60fad452010-01-06 22:07:33 +00002041 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2042 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2043 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2044
John McCallf2370c92010-01-06 05:24:50 +00002045 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002046 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002047 return OutputTypeRange;
2048
2049 IntRange SubRange
2050 = GetExprRange(C, CE->getSubExpr(),
2051 std::min(MaxWidth, OutputTypeRange.Width));
2052
2053 // Bail out if the subexpr's range is as wide as the cast type.
2054 if (SubRange.Width >= OutputTypeRange.Width)
2055 return OutputTypeRange;
2056
2057 // Otherwise, we take the smaller width, and we're non-negative if
2058 // either the output type or the subexpr is.
2059 return IntRange(SubRange.Width,
2060 SubRange.NonNegative || OutputTypeRange.NonNegative);
2061 }
2062
2063 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2064 // If we can fold the condition, just take that operand.
2065 bool CondResult;
2066 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2067 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2068 : CO->getFalseExpr(),
2069 MaxWidth);
2070
2071 // Otherwise, conservatively merge.
2072 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2073 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2074 return IntRange::join(L, R);
2075 }
2076
2077 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2078 switch (BO->getOpcode()) {
2079
2080 // Boolean-valued operations are single-bit and positive.
2081 case BinaryOperator::LAnd:
2082 case BinaryOperator::LOr:
2083 case BinaryOperator::LT:
2084 case BinaryOperator::GT:
2085 case BinaryOperator::LE:
2086 case BinaryOperator::GE:
2087 case BinaryOperator::EQ:
2088 case BinaryOperator::NE:
2089 return IntRange::forBoolType();
2090
John McCallc0cd21d2010-02-23 19:22:29 +00002091 // The type of these compound assignments is the type of the LHS,
2092 // so the RHS is not necessarily an integer.
2093 case BinaryOperator::MulAssign:
2094 case BinaryOperator::DivAssign:
2095 case BinaryOperator::RemAssign:
2096 case BinaryOperator::AddAssign:
2097 case BinaryOperator::SubAssign:
2098 return IntRange::forType(C, E->getType());
2099
John McCallf2370c92010-01-06 05:24:50 +00002100 // Operations with opaque sources are black-listed.
2101 case BinaryOperator::PtrMemD:
2102 case BinaryOperator::PtrMemI:
2103 return IntRange::forType(C, E->getType());
2104
John McCall60fad452010-01-06 22:07:33 +00002105 // Bitwise-and uses the *infinum* of the two source ranges.
2106 case BinaryOperator::And:
John McCallc0cd21d2010-02-23 19:22:29 +00002107 case BinaryOperator::AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002108 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2109 GetExprRange(C, BO->getRHS(), MaxWidth));
2110
John McCallf2370c92010-01-06 05:24:50 +00002111 // Left shift gets black-listed based on a judgement call.
2112 case BinaryOperator::Shl:
John McCall3aae6092010-04-07 01:14:35 +00002113 // ...except that we want to treat '1 << (blah)' as logically
2114 // positive. It's an important idiom.
2115 if (IntegerLiteral *I
2116 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2117 if (I->getValue() == 1) {
2118 IntRange R = IntRange::forType(C, E->getType());
2119 return IntRange(R.Width, /*NonNegative*/ true);
2120 }
2121 }
2122 // fallthrough
2123
John McCallc0cd21d2010-02-23 19:22:29 +00002124 case BinaryOperator::ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002125 return IntRange::forType(C, E->getType());
2126
John McCall60fad452010-01-06 22:07:33 +00002127 // Right shift by a constant can narrow its left argument.
John McCallc0cd21d2010-02-23 19:22:29 +00002128 case BinaryOperator::Shr:
2129 case BinaryOperator::ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002130 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2131
2132 // If the shift amount is a positive constant, drop the width by
2133 // that much.
2134 llvm::APSInt shift;
2135 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2136 shift.isNonNegative()) {
2137 unsigned zext = shift.getZExtValue();
2138 if (zext >= L.Width)
2139 L.Width = (L.NonNegative ? 0 : 1);
2140 else
2141 L.Width -= zext;
2142 }
2143
2144 return L;
2145 }
2146
2147 // Comma acts as its right operand.
John McCallf2370c92010-01-06 05:24:50 +00002148 case BinaryOperator::Comma:
2149 return GetExprRange(C, BO->getRHS(), MaxWidth);
2150
John McCall60fad452010-01-06 22:07:33 +00002151 // Black-list pointer subtractions.
John McCallf2370c92010-01-06 05:24:50 +00002152 case BinaryOperator::Sub:
2153 if (BO->getLHS()->getType()->isPointerType())
2154 return IntRange::forType(C, E->getType());
2155 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002156
John McCallf2370c92010-01-06 05:24:50 +00002157 default:
2158 break;
2159 }
2160
2161 // Treat every other operator as if it were closed on the
2162 // narrowest type that encompasses both operands.
2163 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2164 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2165 return IntRange::join(L, R);
2166 }
2167
2168 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2169 switch (UO->getOpcode()) {
2170 // Boolean-valued operations are white-listed.
2171 case UnaryOperator::LNot:
2172 return IntRange::forBoolType();
2173
2174 // Operations with opaque sources are black-listed.
2175 case UnaryOperator::Deref:
2176 case UnaryOperator::AddrOf: // should be impossible
2177 case UnaryOperator::OffsetOf:
2178 return IntRange::forType(C, E->getType());
2179
2180 default:
2181 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2182 }
2183 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002184
2185 if (dyn_cast<OffsetOfExpr>(E)) {
2186 IntRange::forType(C, E->getType());
2187 }
John McCallf2370c92010-01-06 05:24:50 +00002188
2189 FieldDecl *BitField = E->getBitField();
2190 if (BitField) {
2191 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2192 unsigned BitWidth = BitWidthAP.getZExtValue();
2193
2194 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2195 }
2196
2197 return IntRange::forType(C, E->getType());
2198}
John McCall51313c32010-01-04 23:31:57 +00002199
John McCall323ed742010-05-06 08:58:33 +00002200IntRange GetExprRange(ASTContext &C, Expr *E) {
2201 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2202}
2203
John McCall51313c32010-01-04 23:31:57 +00002204/// Checks whether the given value, which currently has the given
2205/// source semantics, has the same value when coerced through the
2206/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002207bool IsSameFloatAfterCast(const llvm::APFloat &value,
2208 const llvm::fltSemantics &Src,
2209 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002210 llvm::APFloat truncated = value;
2211
2212 bool ignored;
2213 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2214 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2215
2216 return truncated.bitwiseIsEqual(value);
2217}
2218
2219/// Checks whether the given value, which currently has the given
2220/// source semantics, has the same value when coerced through the
2221/// target semantics.
2222///
2223/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002224bool IsSameFloatAfterCast(const APValue &value,
2225 const llvm::fltSemantics &Src,
2226 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002227 if (value.isFloat())
2228 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2229
2230 if (value.isVector()) {
2231 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2232 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2233 return false;
2234 return true;
2235 }
2236
2237 assert(value.isComplexFloat());
2238 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2239 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2240}
2241
John McCall323ed742010-05-06 08:58:33 +00002242void AnalyzeImplicitConversions(Sema &S, Expr *E);
2243
2244bool IsZero(Sema &S, Expr *E) {
2245 llvm::APSInt Value;
2246 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2247}
2248
2249void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2250 BinaryOperator::Opcode op = E->getOpcode();
2251 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2252 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2253 << "< 0" << "false"
2254 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2255 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2256 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2257 << ">= 0" << "true"
2258 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2259 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2260 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2261 << "0 >" << "false"
2262 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2263 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2264 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2265 << "0 <=" << "true"
2266 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2267 }
2268}
2269
2270/// Analyze the operands of the given comparison. Implements the
2271/// fallback case from AnalyzeComparison.
2272void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2273 AnalyzeImplicitConversions(S, E->getLHS());
2274 AnalyzeImplicitConversions(S, E->getRHS());
2275}
John McCall51313c32010-01-04 23:31:57 +00002276
John McCallba26e582010-01-04 23:21:16 +00002277/// \brief Implements -Wsign-compare.
2278///
2279/// \param lex the left-hand expression
2280/// \param rex the right-hand expression
2281/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002282/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002283void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2284 // The type the comparison is being performed in.
2285 QualType T = E->getLHS()->getType();
2286 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2287 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002288
John McCall323ed742010-05-06 08:58:33 +00002289 // We don't do anything special if this isn't an unsigned integral
2290 // comparison: we're only interested in integral comparisons, and
2291 // signed comparisons only happen in cases we don't care to warn about.
2292 if (!T->isUnsignedIntegerType())
2293 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002294
John McCall323ed742010-05-06 08:58:33 +00002295 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2296 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002297
John McCall323ed742010-05-06 08:58:33 +00002298 // Check to see if one of the (unmodified) operands is of different
2299 // signedness.
2300 Expr *signedOperand, *unsignedOperand;
2301 if (lex->getType()->isSignedIntegerType()) {
2302 assert(!rex->getType()->isSignedIntegerType() &&
2303 "unsigned comparison between two signed integer expressions?");
2304 signedOperand = lex;
2305 unsignedOperand = rex;
2306 } else if (rex->getType()->isSignedIntegerType()) {
2307 signedOperand = rex;
2308 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002309 } else {
John McCall323ed742010-05-06 08:58:33 +00002310 CheckTrivialUnsignedComparison(S, E);
2311 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002312 }
2313
John McCall323ed742010-05-06 08:58:33 +00002314 // Otherwise, calculate the effective range of the signed operand.
2315 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002316
John McCall323ed742010-05-06 08:58:33 +00002317 // Go ahead and analyze implicit conversions in the operands. Note
2318 // that we skip the implicit conversions on both sides.
2319 AnalyzeImplicitConversions(S, lex);
2320 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002321
John McCall323ed742010-05-06 08:58:33 +00002322 // If the signed range is non-negative, -Wsign-compare won't fire,
2323 // but we should still check for comparisons which are always true
2324 // or false.
2325 if (signedRange.NonNegative)
2326 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002327
2328 // For (in)equality comparisons, if the unsigned operand is a
2329 // constant which cannot collide with a overflowed signed operand,
2330 // then reinterpreting the signed operand as unsigned will not
2331 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002332 if (E->isEqualityOp()) {
2333 unsigned comparisonWidth = S.Context.getIntWidth(T);
2334 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002335
John McCall323ed742010-05-06 08:58:33 +00002336 // We should never be unable to prove that the unsigned operand is
2337 // non-negative.
2338 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2339
2340 if (unsignedRange.Width < comparisonWidth)
2341 return;
2342 }
2343
2344 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2345 << lex->getType() << rex->getType()
2346 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002347}
2348
John McCall51313c32010-01-04 23:31:57 +00002349/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002350void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002351 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2352}
2353
John McCall323ed742010-05-06 08:58:33 +00002354void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2355 bool *ICContext = 0) {
2356 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002357
John McCall323ed742010-05-06 08:58:33 +00002358 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2359 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2360 if (Source == Target) return;
2361 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002362
2363 // Never diagnose implicit casts to bool.
2364 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2365 return;
2366
2367 // Strip vector types.
2368 if (isa<VectorType>(Source)) {
2369 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002370 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002371
2372 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2373 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2374 }
2375
2376 // Strip complex types.
2377 if (isa<ComplexType>(Source)) {
2378 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002379 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002380
2381 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2382 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2383 }
2384
2385 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2386 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2387
2388 // If the source is floating point...
2389 if (SourceBT && SourceBT->isFloatingPoint()) {
2390 // ...and the target is floating point...
2391 if (TargetBT && TargetBT->isFloatingPoint()) {
2392 // ...then warn if we're dropping FP rank.
2393
2394 // Builtin FP kinds are ordered by increasing FP rank.
2395 if (SourceBT->getKind() > TargetBT->getKind()) {
2396 // Don't warn about float constants that are precisely
2397 // representable in the target type.
2398 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002399 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002400 // Value might be a float, a float vector, or a float complex.
2401 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002402 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2403 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002404 return;
2405 }
2406
John McCall323ed742010-05-06 08:58:33 +00002407 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002408 }
2409 return;
2410 }
2411
2412 // If the target is integral, always warn.
2413 if ((TargetBT && TargetBT->isInteger()))
2414 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002415 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002416
2417 return;
2418 }
2419
John McCallf2370c92010-01-06 05:24:50 +00002420 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002421 return;
2422
John McCall323ed742010-05-06 08:58:33 +00002423 IntRange SourceRange = GetExprRange(S.Context, E);
2424 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002425
2426 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002427 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2428 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002429 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002430 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2431 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2432 }
2433
2434 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2435 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2436 SourceRange.Width == TargetRange.Width)) {
2437 unsigned DiagID = diag::warn_impcast_integer_sign;
2438
2439 // Traditionally, gcc has warned about this under -Wsign-compare.
2440 // We also want to warn about it in -Wconversion.
2441 // So if -Wconversion is off, use a completely identical diagnostic
2442 // in the sign-compare group.
2443 // The conditional-checking code will
2444 if (ICContext) {
2445 DiagID = diag::warn_impcast_integer_sign_conditional;
2446 *ICContext = true;
2447 }
2448
2449 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002450 }
2451
2452 return;
2453}
2454
John McCall323ed742010-05-06 08:58:33 +00002455void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2456
2457void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2458 bool &ICContext) {
2459 E = E->IgnoreParenImpCasts();
2460
2461 if (isa<ConditionalOperator>(E))
2462 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2463
2464 AnalyzeImplicitConversions(S, E);
2465 if (E->getType() != T)
2466 return CheckImplicitConversion(S, E, T, &ICContext);
2467 return;
2468}
2469
2470void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2471 AnalyzeImplicitConversions(S, E->getCond());
2472
2473 bool Suspicious = false;
2474 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2475 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2476
2477 // If -Wconversion would have warned about either of the candidates
2478 // for a signedness conversion to the context type...
2479 if (!Suspicious) return;
2480
2481 // ...but it's currently ignored...
2482 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2483 return;
2484
2485 // ...and -Wsign-compare isn't...
2486 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2487 return;
2488
2489 // ...then check whether it would have warned about either of the
2490 // candidates for a signedness conversion to the condition type.
2491 if (E->getType() != T) {
2492 Suspicious = false;
2493 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2494 E->getType(), &Suspicious);
2495 if (!Suspicious)
2496 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2497 E->getType(), &Suspicious);
2498 if (!Suspicious)
2499 return;
2500 }
2501
2502 // If so, emit a diagnostic under -Wsign-compare.
2503 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2504 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2505 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2506 << lex->getType() << rex->getType()
2507 << lex->getSourceRange() << rex->getSourceRange();
2508}
2509
2510/// AnalyzeImplicitConversions - Find and report any interesting
2511/// implicit conversions in the given expression. There are a couple
2512/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2513void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2514 QualType T = OrigE->getType();
2515 Expr *E = OrigE->IgnoreParenImpCasts();
2516
2517 // For conditional operators, we analyze the arguments as if they
2518 // were being fed directly into the output.
2519 if (isa<ConditionalOperator>(E)) {
2520 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2521 CheckConditionalOperator(S, CO, T);
2522 return;
2523 }
2524
2525 // Go ahead and check any implicit conversions we might have skipped.
2526 // The non-canonical typecheck is just an optimization;
2527 // CheckImplicitConversion will filter out dead implicit conversions.
2528 if (E->getType() != T)
2529 CheckImplicitConversion(S, E, T);
2530
2531 // Now continue drilling into this expression.
2532
2533 // Skip past explicit casts.
2534 if (isa<ExplicitCastExpr>(E)) {
2535 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2536 return AnalyzeImplicitConversions(S, E);
2537 }
2538
2539 // Do a somewhat different check with comparison operators.
2540 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2541 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2542
2543 // These break the otherwise-useful invariant below. Fortunately,
2544 // we don't really need to recurse into them, because any internal
2545 // expressions should have been analyzed already when they were
2546 // built into statements.
2547 if (isa<StmtExpr>(E)) return;
2548
2549 // Don't descend into unevaluated contexts.
2550 if (isa<SizeOfAlignOfExpr>(E)) return;
2551
2552 // Now just recurse over the expression's children.
2553 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2554 I != IE; ++I)
2555 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2556}
2557
2558} // end anonymous namespace
2559
2560/// Diagnoses "dangerous" implicit conversions within the given
2561/// expression (which is a full expression). Implements -Wconversion
2562/// and -Wsign-compare.
2563void Sema::CheckImplicitConversions(Expr *E) {
2564 // Don't diagnose in unevaluated contexts.
2565 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2566 return;
2567
2568 // Don't diagnose for value- or type-dependent expressions.
2569 if (E->isTypeDependent() || E->isValueDependent())
2570 return;
2571
2572 AnalyzeImplicitConversions(*this, E);
2573}
2574
Mike Stumpf8c49212010-01-21 03:59:47 +00002575/// CheckParmsForFunctionDef - Check that the parameters of the given
2576/// function are appropriate for the definition of a function. This
2577/// takes care of any checks that cannot be performed on the
2578/// declaration itself, e.g., that the types of each of the function
2579/// parameters are complete.
2580bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2581 bool HasInvalidParm = false;
2582 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2583 ParmVarDecl *Param = FD->getParamDecl(p);
2584
2585 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2586 // function declarator that is part of a function definition of
2587 // that function shall not have incomplete type.
2588 //
2589 // This is also C++ [dcl.fct]p6.
2590 if (!Param->isInvalidDecl() &&
2591 RequireCompleteType(Param->getLocation(), Param->getType(),
2592 diag::err_typecheck_decl_incomplete_type)) {
2593 Param->setInvalidDecl();
2594 HasInvalidParm = true;
2595 }
2596
2597 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2598 // declaration of each parameter shall include an identifier.
2599 if (Param->getIdentifier() == 0 &&
2600 !Param->isImplicit() &&
2601 !getLangOptions().CPlusPlus)
2602 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002603
2604 // C99 6.7.5.3p12:
2605 // If the function declarator is not part of a definition of that
2606 // function, parameters may have incomplete type and may use the [*]
2607 // notation in their sequences of declarator specifiers to specify
2608 // variable length array types.
2609 QualType PType = Param->getOriginalType();
2610 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2611 if (AT->getSizeModifier() == ArrayType::Star) {
2612 // FIXME: This diagnosic should point the the '[*]' if source-location
2613 // information is added for it.
2614 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2615 }
2616 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002617 }
2618
2619 return HasInvalidParm;
2620}