blob: 2dc2c22a4e9cf11ce8da95390e2faf71fca63ae5 [file] [log] [blame]
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-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 Lattnerb87b1b32007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump11289f42009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattnerb87b1b32007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Sema.h"
Ted Kremenekab278de2010-01-28 23:39:18 +000016#include "clang/Analysis/Analyses/PrintfFormatString.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000017#include "clang/AST/ASTContext.h"
Ken Dyck40775002010-01-11 17:06:35 +000018#include "clang/AST/CharUnits.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Ted Kremenekc81614d2007-08-20 16:18:38 +000020#include "clang/AST/ExprCXX.h"
Ted Kremenek34f664d2008-06-16 18:00:42 +000021#include "clang/AST/ExprObjC.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000022#include "clang/AST/DeclObjC.h"
23#include "clang/AST/StmtCXX.h"
24#include "clang/AST/StmtObjC.h"
Chris Lattnerddb71912009-02-18 19:21:10 +000025#include "clang/Lex/LiteralSupport.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000026#include "clang/Lex/Preprocessor.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000027#include "llvm/ADT/BitVector.h"
28#include "llvm/ADT/STLExtras.h"
Nate Begemand773fe62010-06-13 04:47:52 +000029#include "llvm/ADT/StringExtras.h"
Tom Careb7042702010-06-09 04:11:11 +000030#include "llvm/Support/raw_ostream.h"
Eric Christopher8d0c6212010-04-17 02:26:23 +000031#include "clang/Basic/TargetBuiltins.h"
Nate Begeman4904e322010-06-08 02:47:44 +000032#include "clang/Basic/TargetInfo.h"
Zhongxing Xu050379b2009-05-20 01:55:10 +000033#include <limits>
Chris Lattnerb87b1b32007-08-10 20:18:51 +000034using namespace clang;
35
Chris Lattnera26fb342009-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 Stump11289f42009-09-09 15:08:12 +000046
Chris Lattnera26fb342009-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 Stump11289f42009-09-09 15:08:12 +000053
Chris Lattnera26fb342009-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 Gregore0fbb832010-03-16 00:06:06 +000062 bool Invalid = false;
Benjamin Kramereb92dc02010-03-16 14:14:31 +000063 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregore0fbb832010-03-16 00:06:06 +000064 if (Invalid)
Douglas Gregor802b7762010-03-15 22:54:52 +000065 return StrTokSpellingLoc;
66
Benjamin Kramereb92dc02010-03-16 14:14:31 +000067 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump11289f42009-09-09 15:08:12 +000068
Chris Lattnera26fb342009-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 Stump11289f42009-09-09 15:08:12 +000073
Chris Lattnera26fb342009-02-18 17:49:48 +000074 // Create a lexer starting at the beginning of this token.
Benjamin Kramereb92dc02010-03-16 14:14:31 +000075 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
76 Buffer.end());
Chris Lattnera26fb342009-02-18 17:49:48 +000077 Token TheTok;
78 TheLexer.LexFromRawLexer(TheTok);
Mike Stump11289f42009-09-09 15:08:12 +000079
Chris Lattner3dd56f92009-02-18 19:26:42 +000080 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregor9af03022010-05-26 05:35:51 +000081 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner3dd56f92009-02-18 19:26:42 +000082 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump11289f42009-09-09 15:08:12 +000083
Chris Lattnerec396b52009-02-18 18:52:52 +000084 // If the byte is in this token, return the location of the byte.
Chris Lattnera26fb342009-02-18 17:49:48 +000085 if (ByteNo < TokNumBytes ||
86 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump11289f42009-09-09 15:08:12 +000087 unsigned Offset =
Douglas Gregor9af03022010-05-26 05:35:51 +000088 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
89 /*Complain=*/false);
Mike Stump11289f42009-09-09 15:08:12 +000090
Chris Lattnerddb71912009-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 Lattnera26fb342009-02-18 17:49:48 +000094 }
Mike Stump11289f42009-09-09 15:08:12 +000095
Chris Lattnera26fb342009-02-18 17:49:48 +000096 // Move to the next string token.
97 ++TokNo;
98 ByteNo -= TokNumBytes;
99 }
100}
101
Ryan Flynnaa5e5fd2009-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 Redl6eedcc12009-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 Flynnaa5e5fd2009-08-06 03:00:50 +0000115 if (format_idx < TheCall->getNumArgs()) {
116 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekd1668192010-02-27 01:41:03 +0000117 if (!Format->isNullPointerConstant(Context,
118 Expr::NPC_ValueDependentIsNull))
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +0000119 return true;
120 }
121 }
122 return false;
123}
Chris Lattnera26fb342009-02-18 17:49:48 +0000124
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000125Action::OwningExprResult
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000126Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000127 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000128
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000129 switch (BuiltinID) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000130 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner08464942007-12-28 05:29:59 +0000131 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner2da14fb2007-12-20 00:26:33 +0000132 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner6436fb62009-02-18 06:01:06 +0000133 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000134 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000135 break;
Ted Kremeneka174c522008-07-09 17:58:53 +0000136 case Builtin::BI__builtin_stdarg_start:
Chris Lattner43be2e62007-12-19 23:59:04 +0000137 case Builtin::BI__builtin_va_start:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000138 if (SemaBuiltinVAStart(TheCall))
139 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000140 break;
Chris Lattner2da14fb2007-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 Redlc215cfc2009-01-19 00:08:26 +0000147 if (SemaBuiltinUnorderedCompare(TheCall))
148 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000149 break;
Benjamin Kramer634fc102010-02-15 22:42:31 +0000150 case Builtin::BI__builtin_fpclassify:
151 if (SemaBuiltinFPClassification(TheCall, 6))
152 return ExprError();
153 break;
Eli Friedman7e4faac2009-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 Kramer64aae502010-02-16 10:07:31 +0000159 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman7e4faac2009-08-31 20:06:00 +0000160 return ExprError();
161 break;
Eli Friedmanf8353032008-05-20 08:23:37 +0000162 case Builtin::BI__builtin_return_address:
Eric Christopher8d0c6212010-04-17 02:26:23 +0000163 case Builtin::BI__builtin_frame_address: {
164 llvm::APSInt Result;
165 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000166 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000167 break;
Eric Christopher8d0c6212010-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 Lattnerd545ad12009-09-23 06:06:36 +0000172 return ExprError();
173 break;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000174 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000175 case Builtin::BI__builtin_shufflevector:
Sebastian Redlc215cfc2009-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 Dunbarb7257262008-07-21 22:59:13 +0000179 case Builtin::BI__builtin_prefetch:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000180 if (SemaBuiltinPrefetch(TheCall))
181 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000182 break;
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000183 case Builtin::BI__builtin_object_size:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000184 if (SemaBuiltinObjectSize(TheCall))
185 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000186 break;
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000187 case Builtin::BI__builtin_longjmp:
188 if (SemaBuiltinLongjmp(TheCall))
189 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000190 break;
Chris Lattnerdc046542009-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 Carlssonbc4c1072009-08-16 01:56:34 +0000207 break;
Nate Begeman4904e322010-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 Christopher8d0c6212010-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 Begeman4904e322010-06-08 02:47:44 +0000238 return true;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000239 break;
240 }
Anders Carlsson98f07902007-08-17 05:31:46 +0000241 }
Nate Begeman4904e322010-06-08 02:47:44 +0000242 return false;
243}
Mike Stump11289f42009-09-09 15:08:12 +0000244
Nate Begeman91e1fea2010-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 Begemandbafec12010-06-17 02:26:59 +0000251 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000252 case 1: // i16
Nate Begemandbafec12010-06-17 02:26:59 +0000253 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000254 case 2: // i32
Nate Begemandbafec12010-06-17 02:26:59 +0000255 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000256 case 3: // i64
Nate Begemandbafec12010-06-17 02:26:59 +0000257 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000258 case 4: // f32
259 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000260 return (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000261 case 5: // poly8
262 assert(!shift && "cannot shift polynomial types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000263 return (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000264 case 6: // poly16
265 assert(!shift && "cannot shift polynomial types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000266 return (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000267 case 7: // float16
268 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000269 return (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000270 }
271 return 0;
272}
273
Nate Begeman4904e322010-06-08 02:47:44 +0000274bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman55483092010-06-09 01:10:23 +0000275 llvm::APSInt Result;
276
Nate Begemand773fe62010-06-13 04:47:52 +0000277 unsigned mask = 0;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000278 unsigned TV = 0;
Nate Begeman55483092010-06-09 01:10:23 +0000279 switch (BuiltinID) {
Nate Begeman35f4c1c2010-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 Begeman55483092010-06-09 01:10:23 +0000283 }
284
Nate Begemand773fe62010-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 Begeman91e1fea2010-06-14 05:21:25 +0000292 TV = Result.getLimitedValue(32);
293 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begemand773fe62010-06-13 04:47:52 +0000294 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
295 << TheCall->getArg(ArgNo)->getSourceRange();
296 }
Nate Begeman55483092010-06-09 01:10:23 +0000297
Nate Begemand773fe62010-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 Begeman91e1fea2010-06-14 05:21:25 +0000300 unsigned i = 0, l = 0, u = 0;
Nate Begemand773fe62010-06-13 04:47:52 +0000301 switch (BuiltinID) {
302 default: return false;
Nate Begeman35f4c1c2010-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 Begemand773fe62010-06-13 04:47:52 +0000306 };
307
Nate Begeman91e1fea2010-06-14 05:21:25 +0000308 // Check that the immediate argument is actually a constant.
Nate Begemand773fe62010-06-13 04:47:52 +0000309 if (SemaBuiltinConstantArg(TheCall, i, Result))
310 return true;
311
Nate Begeman91e1fea2010-06-14 05:21:25 +0000312 // Range check against the upper/lower values for this isntruction.
Nate Begemand773fe62010-06-13 04:47:52 +0000313 unsigned Val = Result.getZExtValue();
Nate Begeman91e1fea2010-06-14 05:21:25 +0000314 if (Val < l || Val > (u + l))
Nate Begemand773fe62010-06-13 04:47:52 +0000315 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Nate Begeman91e1fea2010-06-14 05:21:25 +0000316 << llvm::utostr(l) << llvm::utostr(u+l)
317 << TheCall->getArg(i)->getSourceRange();
Nate Begemand773fe62010-06-13 04:47:52 +0000318
Nate Begeman4904e322010-06-08 02:47:44 +0000319 return false;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000320}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000321
Anders Carlssonbc4c1072009-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 Stump11289f42009-09-09 15:08:12 +0000332
Daniel Dunbardd9b2d12008-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 Lattnerb87b1b32007-08-10 20:18:51 +0000337 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000338 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +0000339 if (CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek9723bcf2009-02-27 17:58:43 +0000340 bool HasVAListArg = Format->getFirstArg() == 0;
Douglas Gregore711f702009-02-14 18:57:46 +0000341 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
Ted Kremenek9723bcf2009-02-27 17:58:43 +0000342 HasVAListArg ? 0 : Format->getFirstArg() - 1);
Douglas Gregore711f702009-02-14 18:57:46 +0000343 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000344 }
Mike Stump11289f42009-09-09 15:08:12 +0000345
346 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000347 NonNull = NonNull->getNext<NonNullAttr>())
348 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000349
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000350 return false;
Anders Carlsson98f07902007-08-17 05:31:46 +0000351}
352
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000353bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000354 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000355 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000356 if (!Format)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000357 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000358
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000359 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
360 if (!V)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000361 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000362
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000363 QualType Ty = V->getType();
364 if (!Ty->isBlockPointerType())
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000365 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000366
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000367 if (!CheckablePrintfAttr(Format, TheCall))
368 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000369
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000370 bool HasVAListArg = Format->getFirstArg() == 0;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000371 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
372 HasVAListArg ? 0 : Format->getFirstArg() - 1);
373
374 return false;
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000375}
376
Chris Lattnerdc046542009-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 Christopherabf1e182010-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 Stump11289f42009-09-09 15:08:12 +0000395
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000404
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000405 QualType ValType = FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +0000406 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000418
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000425
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000431
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000437#undef BUILTIN_ROW
438
Chris Lattnerdc046542009-05-08 06:58:22 +0000439 // Determine the index of the size.
440 unsigned SizeIndex;
Ken Dyck40775002010-01-11 17:06:35 +0000441 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000451
Chris Lattnerdc046542009-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 Gregor15fc9562009-09-12 00:22:50 +0000456 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000465
Daniel Dunbar3f540c0d2010-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 Stump11289f42009-09-09 15:08:12 +0000471
Chris Lattnerdc046542009-05-08 06:58:22 +0000472 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000473 BuiltinIndex = 10;
Chris Lattnerdc046542009-05-08 06:58:22 +0000474 NumFixed = 2;
475 break;
476 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000477 BuiltinIndex = 11;
Chris Lattnerdc046542009-05-08 06:58:22 +0000478 NumFixed = 2;
479 break;
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000480 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000481 case Builtin::BI__sync_lock_release:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000482 BuiltinIndex = 13;
Chris Lattnerdc046542009-05-08 06:58:22 +0000483 NumFixed = 0;
484 break;
485 }
Mike Stump11289f42009-09-09 15:08:12 +0000486
Chris Lattnerdc046542009-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 Christopherabf1e182010-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 Stump11289f42009-09-09 15:08:12 +0000494
495
Chris Lattner5b9241b2009-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 Stump11289f42009-09-09 15:08:12 +0000501 FunctionDecl *NewBuiltinDecl =
Chris Lattner5b9241b2009-05-08 15:36:58 +0000502 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
503 TUScope, false, DRE->getLocStart()));
504 const FunctionProtoType *BuiltinFT =
John McCall9dd450b2009-09-21 23:43:11 +0000505 NewBuiltinDecl->getType()->getAs<FunctionProtoType>();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000506 ValType = BuiltinFT->getArgType(0)->getAs<PointerType>()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +0000507
Chris Lattner5b9241b2009-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 Friedman06ed2a52009-10-20 08:27:19 +0000510 ImpCastExprToType(FirstArg, BuiltinFT->getArgType(0), CastExpr::CK_BitCast);
Chris Lattner5b9241b2009-05-08 15:36:58 +0000511 TheCall->setArg(0, FirstArg);
512 }
Mike Stump11289f42009-09-09 15:08:12 +0000513
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000517
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000526
Chris Lattnerdc046542009-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 Carlssonf10e4142009-08-07 22:21:05 +0000529 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlssona70cff62010-04-24 19:06:50 +0000530 CXXBaseSpecifierArray BasePath;
531 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chris Lattnerdc046542009-05-08 06:58:22 +0000532 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000533
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000539 // FIXME: Do this check.
Anders Carlssonb34f8822010-04-24 16:36:20 +0000540 ImpCastExprToType(Arg, ValType, Kind);
Chris Lattnerdc046542009-05-08 06:58:22 +0000541 TheCall->setArg(i+1, Arg);
542 }
Mike Stump11289f42009-09-09 15:08:12 +0000543
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000547
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000553
Chris Lattnerdc046542009-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 Lattner6436fb62009-02-18 06:01:06 +0000561/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson98f07902007-08-17 05:31:46 +0000562/// CFString constructor is correct
Steve Narofffb46e862009-04-13 20:26:29 +0000563/// FIXME: GCC currently emits the following warning:
Mike Stump11289f42009-09-09 15:08:12 +0000564/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffb46e862009-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 Lattner6436fb62009-02-18 06:01:06 +0000568bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattnerf2660962008-02-13 01:02:39 +0000569 Arg = Arg->IgnoreParenCasts();
Anders Carlsson98f07902007-08-17 05:31:46 +0000570 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
571
572 if (!Literal || Literal->isWide()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000573 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
574 << Arg->getSourceRange();
Anders Carlssona3a9c432007-08-17 15:44:17 +0000575 return true;
Anders Carlsson98f07902007-08-17 05:31:46 +0000576 }
Mike Stump11289f42009-09-09 15:08:12 +0000577
Daniel Dunbarb879c3c2009-09-22 10:03:52 +0000578 const char *Data = Literal->getStrData();
579 unsigned Length = Literal->getByteLength();
Mike Stump11289f42009-09-09 15:08:12 +0000580
Daniel Dunbarb879c3c2009-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 Stump11289f42009-09-09 15:08:12 +0000589
Anders Carlssona3a9c432007-08-17 15:44:17 +0000590 return false;
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000591}
592
Chris Lattnere202e6a2007-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 Lattner08464942007-12-28 05:29:59 +0000595bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
596 Expr *Fn = TheCall->getCallee();
597 if (TheCall->getNumArgs() > 2) {
Chris Lattnercedef8d2008-11-21 18:44:24 +0000598 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000599 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000600 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
601 << Fn->getSourceRange()
Mike Stump11289f42009-09-09 15:08:12 +0000602 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000603 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner43be2e62007-12-19 23:59:04 +0000604 return true;
605 }
Eli Friedmanbb2b3be2008-12-15 22:05:35 +0000606
607 if (TheCall->getNumArgs() < 2) {
Eric Christopherabf1e182010-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 Friedmanbb2b3be2008-12-15 22:05:35 +0000611 }
612
Chris Lattnere202e6a2007-12-20 00:05:45 +0000613 // Determine whether the current function is variadic or not.
Douglas Gregor9a28e842010-03-01 23:15:13 +0000614 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnere202e6a2007-12-20 00:05:45 +0000615 bool isVariadic;
Steve Naroff439a3e42009-04-15 19:33:47 +0000616 if (CurBlock)
John McCall8e346702010-06-04 19:02:56 +0000617 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek186a0742010-04-29 16:49:01 +0000618 else if (FunctionDecl *FD = getCurFunctionDecl())
619 isVariadic = FD->isVariadic();
620 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000621 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump11289f42009-09-09 15:08:12 +0000622
Chris Lattnere202e6a2007-12-20 00:05:45 +0000623 if (!isVariadic) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000624 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
625 return true;
626 }
Mike Stump11289f42009-09-09 15:08:12 +0000627
Chris Lattner43be2e62007-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 Carlsson73cc5072008-02-13 01:22:59 +0000631 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +0000632
Anders Carlsson6a8350b2008-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 Lattner43be2e62007-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 Carlsson6a8350b2008-02-11 04:20:54 +0000637 const ParmVarDecl *LastArg;
Steve Naroff439a3e42009-04-15 19:33:47 +0000638 if (CurBlock)
639 LastArg = *(CurBlock->TheDecl->param_end()-1);
640 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner79413952008-12-04 23:50:19 +0000641 LastArg = *(FD->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000642 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000643 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000644 SecondArgIsLastNamedArgument = PV == LastArg;
645 }
646 }
Mike Stump11289f42009-09-09 15:08:12 +0000647
Chris Lattner43be2e62007-12-19 23:59:04 +0000648 if (!SecondArgIsLastNamedArgument)
Mike Stump11289f42009-09-09 15:08:12 +0000649 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner43be2e62007-12-19 23:59:04 +0000650 diag::warn_second_parameter_of_va_start_not_last_named_argument);
651 return false;
Eli Friedmanf8353032008-05-20 08:23:37 +0000652}
Chris Lattner43be2e62007-12-19 23:59:04 +0000653
Chris Lattner2da14fb2007-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 Lattner08464942007-12-28 05:29:59 +0000656bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
657 if (TheCall->getNumArgs() < 2)
Chris Lattnercedef8d2008-11-21 18:44:24 +0000658 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000659 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner08464942007-12-28 05:29:59 +0000660 if (TheCall->getNumArgs() > 2)
Mike Stump11289f42009-09-09 15:08:12 +0000661 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000662 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000663 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattner3b054132008-11-19 05:08:23 +0000664 << SourceRange(TheCall->getArg(2)->getLocStart(),
665 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000666
Chris Lattner08464942007-12-28 05:29:59 +0000667 Expr *OrigArg0 = TheCall->getArg(0);
668 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorc25f7662009-05-19 22:10:17 +0000669
Chris Lattner2da14fb2007-12-20 00:26:33 +0000670 // Do standard promotions between the two arguments, returning their common
671 // type.
Chris Lattner08464942007-12-28 05:29:59 +0000672 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar96f86772009-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 Stump11289f42009-09-09 15:08:12 +0000679
Douglas Gregorc25f7662009-05-19 22:10:17 +0000680 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
681 return false;
682
Chris Lattner2da14fb2007-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 Stump11289f42009-09-09 15:08:12 +0000686 return Diag(OrigArg0->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000687 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000688 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattner3b054132008-11-19 05:08:23 +0000689 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000690
Chris Lattner2da14fb2007-12-20 00:26:33 +0000691 return false;
692}
693
Benjamin Kramer634fc102010-02-15 22:42:31 +0000694/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
695/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer64aae502010-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 Friedman7e4faac2009-08-31 20:06:00 +0000700 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000701 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer64aae502010-02-16 10:07:31 +0000702 if (TheCall->getNumArgs() > NumArgs)
703 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000704 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000705 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer64aae502010-02-16 10:07:31 +0000706 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000707 (*(TheCall->arg_end()-1))->getLocEnd());
708
Benjamin Kramer64aae502010-02-16 10:07:31 +0000709 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump11289f42009-09-09 15:08:12 +0000710
Eli Friedman7e4faac2009-08-31 20:06:00 +0000711 if (OrigArg->isTypeDependent())
712 return false;
713
Chris Lattner68784ef2010-05-06 05:50:07 +0000714 // This operation requires a non-_Complex floating-point number.
Eli Friedman7e4faac2009-08-31 20:06:00 +0000715 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump11289f42009-09-09 15:08:12 +0000716 return Diag(OrigArg->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000717 diag::err_typecheck_call_invalid_unary_fp)
718 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +0000719
Chris Lattner68784ef2010-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 Friedman7e4faac2009-08-31 20:06:00 +0000733 return false;
734}
735
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000736/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
737// This is declared to take (...), so we have to check everything.
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000738Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begemana0110022010-06-08 00:16:34 +0000739 if (TheCall->getNumArgs() < 2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000740 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherabf1e182010-04-16 04:48:22 +0000741 diag::err_typecheck_call_too_few_args_at_least)
Nate Begemana0110022010-06-08 00:16:34 +0000742 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherabf1e182010-04-16 04:48:22 +0000743 << TheCall->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000744
Nate Begemana0110022010-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 Gregorc25f7662009-05-19 22:10:17 +0000752 if (!TheCall->getArg(0)->isTypeDependent() &&
753 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begemana0110022010-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 Gregorc25f7662009-05-19 22:10:17 +0000758 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000759 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000760 TheCall->getArg(1)->getLocEnd());
761 return ExprError();
762 }
Nate Begemana0110022010-06-08 00:16:34 +0000763
764 numElements = LHSType->getAs<VectorType>()->getNumElements();
765 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump11289f42009-09-09 15:08:12 +0000766
Nate Begemana0110022010-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 Gregorc25f7662009-05-19 22:10:17 +0000779 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000780 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000781 TheCall->getArg(1)->getLocEnd());
782 return ExprError();
Nate Begemana0110022010-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 Gregorc25f7662009-05-19 22:10:17 +0000786 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000787 }
788
789 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000790 if (TheCall->getArg(i)->isTypeDependent() ||
791 TheCall->getArg(i)->isValueDependent())
792 continue;
793
Nate Begemana0110022010-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 Redlc215cfc2009-01-19 00:08:26 +0000799
Chris Lattner7ab824e2008-08-10 02:05:13 +0000800 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000801 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000802 diag::err_shufflevector_argument_too_large)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000803 << TheCall->getArg(i)->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000804 }
805
806 llvm::SmallVector<Expr*, 32> exprs;
807
Chris Lattner7ab824e2008-08-10 02:05:13 +0000808 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000809 exprs.push_back(TheCall->getArg(i));
810 TheCall->setArg(i, 0);
811 }
812
Nate Begemanf485fb52009-08-12 02:10:25 +0000813 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begemana0110022010-06-08 00:16:34 +0000814 exprs.size(), resType,
Ted Kremenek5a201952009-02-07 01:47:29 +0000815 TheCall->getCallee()->getLocStart(),
816 TheCall->getRParenLoc()));
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000817}
Chris Lattner43be2e62007-12-19 23:59:04 +0000818
Daniel Dunbarb7257262008-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 Lattner3b054132008-11-19 05:08:23 +0000823 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000824
Chris Lattner3b054132008-11-19 05:08:23 +0000825 if (NumArgs > 3)
Eric Christopher2a5aaff2010-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 Dunbarb7257262008-07-21 22:59:13 +0000830
831 // Argument 0 is checked for us and the remaining arguments must be
832 // constant integers.
Chris Lattner3b054132008-11-19 05:08:23 +0000833 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbarb7257262008-07-21 22:59:13 +0000834 Expr *Arg = TheCall->getArg(i);
Eric Christopher8d0c6212010-04-17 02:26:23 +0000835
Eli Friedman5efba262009-12-04 00:30:06 +0000836 llvm::APSInt Result;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000837 if (SemaBuiltinConstantArg(TheCall, i, Result))
838 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000839
Daniel Dunbarb7257262008-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 Lattner3b054132008-11-19 05:08:23 +0000843 if (i == 1) {
Eli Friedman5efba262009-12-04 00:30:06 +0000844 if (Result.getLimitedValue() > 1)
Chris Lattner3b054132008-11-19 05:08:23 +0000845 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000846 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000847 } else {
Eli Friedman5efba262009-12-04 00:30:06 +0000848 if (Result.getLimitedValue() > 3)
Chris Lattner3b054132008-11-19 05:08:23 +0000849 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000850 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000851 }
852 }
853
Chris Lattner3b054132008-11-19 05:08:23 +0000854 return false;
Daniel Dunbarb7257262008-07-21 22:59:13 +0000855}
856
Eric Christopher8d0c6212010-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 Christopher63448c32010-04-19 18:23:02 +0000869 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher8d0c6212010-04-17 02:26:23 +0000870
Chris Lattnerd545ad12009-09-23 06:06:36 +0000871 return false;
872}
873
Daniel Dunbarb0d34c82008-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 Christopherc8791562009-12-23 03:49:37 +0000877// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000878bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher8d0c6212010-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 Dunbarb0d34c82008-09-03 21:13:56 +0000885 Expr *Arg = TheCall->getArg(1);
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000886 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattner3b054132008-11-19 05:08:23 +0000887 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
888 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000889 }
890
891 return false;
892}
893
Eli Friedmanc97d0142009-05-03 06:04:26 +0000894/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmaneed8ad22009-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 Christopher8d0c6212010-04-17 02:26:23 +0000898 llvm::APSInt Result;
Douglas Gregorc25f7662009-05-19 22:10:17 +0000899
Eric Christopher8d0c6212010-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 Friedmaneed8ad22009-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 Kremenek6dfeb552009-01-12 23:09:09 +0000911// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000912bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
913 bool HasVAListArg,
Douglas Gregore711f702009-02-14 18:57:46 +0000914 unsigned format_idx, unsigned firstDataArg) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000915 if (E->isTypeDependent() || E->isValueDependent())
916 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000917
918 switch (E->getStmtClass()) {
919 case Stmt::ConditionalOperatorClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000920 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Chris Lattnerd806cbc2009-12-22 06:00:13 +0000921 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall,
Douglas Gregore711f702009-02-14 18:57:46 +0000922 HasVAListArg, format_idx, firstDataArg)
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000923 && SemaCheckStringLiteral(C->getRHS(), TheCall,
Douglas Gregore711f702009-02-14 18:57:46 +0000924 HasVAListArg, format_idx, firstDataArg);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000925 }
926
927 case Stmt::ImplicitCastExprClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000928 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000929 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregore711f702009-02-14 18:57:46 +0000930 format_idx, firstDataArg);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000931 }
932
933 case Stmt::ParenExprClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000934 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000935 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregore711f702009-02-14 18:57:46 +0000936 format_idx, firstDataArg);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000937 }
Mike Stump11289f42009-09-09 15:08:12 +0000938
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000939 case Stmt::DeclRefExprClass: {
940 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +0000941
Ted Kremenekdfd72c22009-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 Kremenek6dfeb552009-01-12 23:09:09 +0000947
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000948 if (const ArrayType *AT = Context.getAsArrayType(T)) {
949 isConstant = AT->getElementType().isConstant(Context);
Mike Stump12b8ce12009-08-04 21:02:39 +0000950 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump11289f42009-09-09 15:08:12 +0000951 isConstant = T.isConstant(Context) &&
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000952 PT->getPointeeType().isConstant(Context);
953 }
Mike Stump11289f42009-09-09 15:08:12 +0000954
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000955 if (isConstant) {
Sebastian Redl5ca79842010-02-01 20:16:42 +0000956 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000957 return SemaCheckStringLiteral(Init, TheCall,
958 HasVAListArg, format_idx, firstDataArg);
959 }
Mike Stump11289f42009-09-09 15:08:12 +0000960
Anders Carlssonb012ca92009-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 Kremenekdfd72c22009-03-20 21:35:28 +0000982 }
Mike Stump11289f42009-09-09 15:08:12 +0000983
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000984 return false;
985 }
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000986
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +0000987 case Stmt::CallExprClass: {
988 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +0000989 if (const ImplicitCastExpr *ICE
Anders Carlssonf0a7f3b2009-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 Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000993 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +0000994 unsigned ArgIndex = FA->getFormatIdx();
995 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump11289f42009-09-09 15:08:12 +0000996
997 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +0000998 format_idx, firstDataArg);
999 }
1000 }
1001 }
1002 }
Mike Stump11289f42009-09-09 15:08:12 +00001003
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001004 return false;
1005 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001006 case Stmt::ObjCStringLiteralClass:
1007 case Stmt::StringLiteralClass: {
1008 const StringLiteral *StrE = NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001009
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001010 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001011 StrE = ObjCFExpr->getString();
1012 else
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001013 StrE = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001014
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001015 if (StrE) {
Mike Stump11289f42009-09-09 15:08:12 +00001016 CheckPrintfString(StrE, E, TheCall, HasVAListArg, format_idx,
Douglas Gregore711f702009-02-14 18:57:46 +00001017 firstDataArg);
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001018 return true;
1019 }
Mike Stump11289f42009-09-09 15:08:12 +00001020
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001021 return false;
1022 }
Mike Stump11289f42009-09-09 15:08:12 +00001023
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001024 default:
1025 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001026 }
1027}
1028
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001029void
Mike Stump11289f42009-09-09 15:08:12 +00001030Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1031 const CallExpr *TheCall) {
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001032 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1033 i != e; ++i) {
Chris Lattner23464b82009-05-25 18:23:36 +00001034 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001035 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00001036 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner23464b82009-05-25 18:23:36 +00001037 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1038 << ArgExpr->getSourceRange();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001039 }
1040}
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001041
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001042/// CheckPrintfArguments - Check calls to printf (and similar functions) for
Mike Stump11289f42009-09-09 15:08:12 +00001043/// correct use of format strings.
Ted Kremeneke68f1aa2007-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 Lattnerb87b1b32007-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 Kremeneke68f1aa2007-08-14 17:39:48 +00001057///
Ted Kremenek4a49d982010-02-26 19:18:41 +00001058/// TODO:
Ted Kremeneke68f1aa2007-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 Kremenek4a49d982010-02-26 19:18:41 +00001069/// corresponding data argument?
Ted Kremeneke68f1aa2007-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 Lattnerb87b1b32007-08-10 20:18:51 +00001088void
Mike Stump11289f42009-09-09 15:08:12 +00001089Sema::CheckPrintfArguments(const CallExpr *TheCall, bool HasVAListArg,
Douglas Gregore711f702009-02-14 18:57:46 +00001090 unsigned format_idx, unsigned firstDataArg) {
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001091 const Expr *Fn = TheCall->getCallee();
Chris Lattner08464942007-12-28 05:29:59 +00001092
Sebastian Redl6eedcc12009-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 Stump11289f42009-09-09 15:08:12 +00001105 // CHECK: printf-like function is called with no format string.
Chris Lattner08464942007-12-28 05:29:59 +00001106 if (format_idx >= TheCall->getNumArgs()) {
Chris Lattnerf490e152008-11-19 05:27:50 +00001107 Diag(TheCall->getRParenLoc(), diag::warn_printf_missing_format_string)
1108 << Fn->getSourceRange();
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001109 return;
1110 }
Mike Stump11289f42009-09-09 15:08:12 +00001111
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001112 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00001113
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001114 // CHECK: format string is not a string literal.
Mike Stump11289f42009-09-09 15:08:12 +00001115 //
Ted Kremeneke68f1aa2007-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 Kremenek34f664d2008-06-16 18:00:42 +00001121
Mike Stump11289f42009-09-09 15:08:12 +00001122 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek34f664d2008-06-16 18:00:42 +00001123 // C string (e.g. "%d")
Mike Stump11289f42009-09-09 15:08:12 +00001124 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek34f664d2008-06-16 18:00:42 +00001125 // the same format string checking logic for both ObjC and C strings.
Chris Lattnere009a882009-04-29 04:49:34 +00001126 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
1127 firstDataArg))
1128 return; // Literal format string found, check done!
Ted Kremenek34f664d2008-06-16 18:00:42 +00001129
Chris Lattnercc5d1c22009-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 Stump11289f42009-09-09 15:08:12 +00001133 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001134 diag::warn_printf_nonliteral_noargs)
1135 << OrigFormatExpr->getSourceRange();
1136 else
Mike Stump11289f42009-09-09 15:08:12 +00001137 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001138 diag::warn_printf_nonliteral)
1139 << OrigFormatExpr->getSourceRange();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001140}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001141
Ted Kremenekab278de2010-01-28 23:39:18 +00001142namespace {
Ted Kremenek1de17072010-02-04 20:46:58 +00001143class CheckPrintfHandler : public analyze_printf::FormatStringHandler {
Ted Kremenekab278de2010-01-28 23:39:18 +00001144 Sema &S;
1145 const StringLiteral *FExpr;
1146 const Expr *OrigFormatExpr;
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001147 const unsigned FirstDataArg;
Ted Kremenekab278de2010-01-28 23:39:18 +00001148 const unsigned NumDataArgs;
1149 const bool IsObjCLiteral;
1150 const char *Beg; // Start of format string.
Ted Kremenek5739de72010-01-29 01:06:55 +00001151 const bool HasVAListArg;
1152 const CallExpr *TheCall;
1153 unsigned FormatIdx;
Ted Kremenek4a49d982010-02-26 19:18:41 +00001154 llvm::BitVector CoveredArgs;
Ted Kremenekd1668192010-02-27 01:41:03 +00001155 bool usesPositionalArgs;
1156 bool atFirstArg;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001157public:
Ted Kremenekab278de2010-01-28 23:39:18 +00001158 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001159 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremenekab278de2010-01-28 23:39:18 +00001160 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek5739de72010-01-29 01:06:55 +00001161 const char *beg, bool hasVAListArg,
1162 const CallExpr *theCall, unsigned formatIdx)
Ted Kremenekab278de2010-01-28 23:39:18 +00001163 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001164 FirstDataArg(firstDataArg),
Ted Kremenek4a49d982010-02-26 19:18:41 +00001165 NumDataArgs(numDataArgs),
Ted Kremenek5739de72010-01-29 01:06:55 +00001166 IsObjCLiteral(isObjCLiteral), Beg(beg),
1167 HasVAListArg(hasVAListArg),
Ted Kremenekd1668192010-02-27 01:41:03 +00001168 TheCall(theCall), FormatIdx(formatIdx),
1169 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001170 CoveredArgs.resize(numDataArgs);
1171 CoveredArgs.reset();
1172 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001173
Ted Kremenek019d2242010-01-29 01:50:07 +00001174 void DoneProcessing();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001175
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001176 void HandleIncompleteFormatSpecifier(const char *startSpecifier,
1177 unsigned specifierLen);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001178
Ted Kremenek4a49d982010-02-26 19:18:41 +00001179 bool
Ted Kremenek1de17072010-02-04 20:46:58 +00001180 HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1181 const char *startSpecifier,
1182 unsigned specifierLen);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001183
Ted Kremenekd1668192010-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 Kremenekab278de2010-01-28 23:39:18 +00001190 void HandleNullChar(const char *nullCharacter);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001191
Ted Kremenekab278de2010-01-28 23:39:18 +00001192 bool HandleFormatSpecifier(const analyze_printf::FormatSpecifier &FS,
1193 const char *startSpecifier,
1194 unsigned specifierLen);
1195private:
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001196 SourceRange getFormatStringRange();
1197 SourceRange getFormatSpecifierRange(const char *startSpecifier,
Ted Kremenekfb45d352010-02-10 02:16:30 +00001198 unsigned specifierLen);
Ted Kremenekab278de2010-01-28 23:39:18 +00001199 SourceLocation getLocationOfByte(const char *x);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001200
Ted Kremenekd1668192010-02-27 01:41:03 +00001201 bool HandleAmount(const analyze_printf::OptionalAmount &Amt, unsigned k,
1202 const char *startSpecifier, unsigned specifierLen);
Tom Careb49ec692010-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 Kremenekc8b188d2010-02-16 01:46:59 +00001214
Ted Kremenek5739de72010-01-29 01:06:55 +00001215 const Expr *getDataArg(unsigned i) const;
Ted Kremenekab278de2010-01-28 23:39:18 +00001216};
1217}
1218
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001219SourceRange CheckPrintfHandler::getFormatStringRange() {
Ted Kremenekab278de2010-01-28 23:39:18 +00001220 return OrigFormatExpr->getSourceRange();
1221}
1222
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001223SourceRange CheckPrintfHandler::
1224getFormatSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
1225 return SourceRange(getLocationOfByte(startSpecifier),
Ted Kremenekfb45d352010-02-10 02:16:30 +00001226 getLocationOfByte(startSpecifier+specifierLen-1));
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001227}
1228
Ted Kremenekab278de2010-01-28 23:39:18 +00001229SourceLocation CheckPrintfHandler::getLocationOfByte(const char *x) {
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001230 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremenekab278de2010-01-28 23:39:18 +00001231}
1232
Ted Kremenek94af5752010-01-29 02:40:24 +00001233void CheckPrintfHandler::
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001234HandleIncompleteFormatSpecifier(const char *startSpecifier,
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001235 unsigned specifierLen) {
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001236 SourceLocation Loc = getLocationOfByte(startSpecifier);
1237 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001238 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001239}
1240
Ted Kremenekd1668192010-02-27 01:41:03 +00001241void
1242CheckPrintfHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1243 analyze_printf::PositionContext p) {
1244 SourceLocation Loc = getLocationOfByte(startPos);
1245 S.Diag(Loc, diag::warn_printf_invalid_positional_specifier)
1246 << (unsigned) p << getFormatSpecifierRange(startPos, posLen);
1247}
1248
1249void CheckPrintfHandler::HandleZeroPosition(const char *startPos,
1250 unsigned posLen) {
1251 SourceLocation Loc = getLocationOfByte(startPos);
1252 S.Diag(Loc, diag::warn_printf_zero_positional_specifier)
1253 << getFormatSpecifierRange(startPos, posLen);
1254}
1255
Ted Kremenek4a49d982010-02-26 19:18:41 +00001256bool CheckPrintfHandler::
Ted Kremenek94af5752010-01-29 02:40:24 +00001257HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1258 const char *startSpecifier,
1259 unsigned specifierLen) {
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001260
Ted Kremenek4a49d982010-02-26 19:18:41 +00001261 unsigned argIndex = FS.getArgIndex();
1262 bool keepGoing = true;
1263 if (argIndex < NumDataArgs) {
1264 // Consider the argument coverered, even though the specifier doesn't
1265 // make sense.
1266 CoveredArgs.set(argIndex);
1267 }
1268 else {
1269 // If argIndex exceeds the number of data arguments we
1270 // don't issue a warning because that is just a cascade of warnings (and
1271 // they may have intended '%%' anyway). We don't want to continue processing
1272 // the format string after this point, however, as we will like just get
1273 // gibberish when trying to match arguments.
1274 keepGoing = false;
1275 }
1276
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001277 const analyze_printf::ConversionSpecifier &CS =
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001278 FS.getConversionSpecifier();
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001279 SourceLocation Loc = getLocationOfByte(CS.getStart());
Ted Kremenek94af5752010-01-29 02:40:24 +00001280 S.Diag(Loc, diag::warn_printf_invalid_conversion)
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001281 << llvm::StringRef(CS.getStart(), CS.getLength())
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001282 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek4a49d982010-02-26 19:18:41 +00001283
1284 return keepGoing;
Ted Kremenek94af5752010-01-29 02:40:24 +00001285}
1286
Ted Kremenekab278de2010-01-28 23:39:18 +00001287void CheckPrintfHandler::HandleNullChar(const char *nullCharacter) {
1288 // The presence of a null character is likely an error.
1289 S.Diag(getLocationOfByte(nullCharacter),
1290 diag::warn_printf_format_string_contains_null_char)
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001291 << getFormatStringRange();
Ted Kremenekab278de2010-01-28 23:39:18 +00001292}
1293
Ted Kremenek5739de72010-01-29 01:06:55 +00001294const Expr *CheckPrintfHandler::getDataArg(unsigned i) const {
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001295 return TheCall->getArg(FirstDataArg + i);
Ted Kremenek5739de72010-01-29 01:06:55 +00001296}
1297
1298bool
1299CheckPrintfHandler::HandleAmount(const analyze_printf::OptionalAmount &Amt,
Ted Kremenekd1668192010-02-27 01:41:03 +00001300 unsigned k, const char *startSpecifier,
Ted Kremenekfb45d352010-02-10 02:16:30 +00001301 unsigned specifierLen) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001302
1303 if (Amt.hasDataArgument()) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001304 if (!HasVAListArg) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001305 unsigned argIndex = Amt.getArgIndex();
1306 if (argIndex >= NumDataArgs) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001307 S.Diag(getLocationOfByte(Amt.getStart()),
1308 diag::warn_printf_asterisk_missing_arg)
1309 << k << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek5739de72010-01-29 01:06:55 +00001310 // Don't do any more checking. We will just emit
1311 // spurious errors.
1312 return false;
1313 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001314
Ted Kremenek5739de72010-01-29 01:06:55 +00001315 // Type check the data argument. It should be an 'int'.
Ted Kremenek605b0112010-01-29 23:32:22 +00001316 // Although not in conformance with C99, we also allow the argument to be
1317 // an 'unsigned int' as that is a reasonably safe case. GCC also
1318 // doesn't emit a warning for that case.
Ted Kremenek4a49d982010-02-26 19:18:41 +00001319 CoveredArgs.set(argIndex);
1320 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek5739de72010-01-29 01:06:55 +00001321 QualType T = Arg->getType();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001322
1323 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1324 assert(ATR.isValid());
1325
1326 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001327 S.Diag(getLocationOfByte(Amt.getStart()),
1328 diag::warn_printf_asterisk_wrong_type)
1329 << k
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001330 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001331 << getFormatSpecifierRange(startSpecifier, specifierLen)
1332 << Arg->getSourceRange();
Ted Kremenek5739de72010-01-29 01:06:55 +00001333 // Don't do any more checking. We will just emit
1334 // spurious errors.
1335 return false;
1336 }
1337 }
1338 }
1339 return true;
1340}
Ted Kremenek5739de72010-01-29 01:06:55 +00001341
Tom Careb49ec692010-06-17 19:00:27 +00001342void CheckPrintfHandler::HandleInvalidAmount(
1343 const analyze_printf::FormatSpecifier &FS,
1344 const analyze_printf::OptionalAmount &Amt,
1345 unsigned type,
1346 const char *startSpecifier,
1347 unsigned specifierLen) {
1348 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1349 switch (Amt.getHowSpecified()) {
1350 case analyze_printf::OptionalAmount::Constant:
1351 S.Diag(getLocationOfByte(Amt.getStart()),
1352 diag::warn_printf_nonsensical_optional_amount)
1353 << type
1354 << CS.toString()
1355 << getFormatSpecifierRange(startSpecifier, specifierLen)
1356 << FixItHint::CreateRemoval(getFormatSpecifierRange(Amt.getStart(),
1357 Amt.getConstantLength()));
1358 break;
1359
1360 default:
1361 S.Diag(getLocationOfByte(Amt.getStart()),
1362 diag::warn_printf_nonsensical_optional_amount)
1363 << type
1364 << CS.toString()
1365 << getFormatSpecifierRange(startSpecifier, specifierLen);
1366 break;
1367 }
1368}
1369
1370void CheckPrintfHandler::HandleFlag(const analyze_printf::FormatSpecifier &FS,
1371 const analyze_printf::OptionalFlag &flag,
1372 const char *startSpecifier,
1373 unsigned specifierLen) {
1374 // Warn about pointless flag with a fixit removal.
1375 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1376 S.Diag(getLocationOfByte(flag.getPosition()),
1377 diag::warn_printf_nonsensical_flag)
1378 << flag.toString() << CS.toString()
1379 << getFormatSpecifierRange(startSpecifier, specifierLen)
1380 << FixItHint::CreateRemoval(getFormatSpecifierRange(flag.getPosition(), 1));
1381}
1382
1383void CheckPrintfHandler::HandleIgnoredFlag(
1384 const analyze_printf::FormatSpecifier &FS,
1385 const analyze_printf::OptionalFlag &ignoredFlag,
1386 const analyze_printf::OptionalFlag &flag,
1387 const char *startSpecifier,
1388 unsigned specifierLen) {
1389 // Warn about ignored flag with a fixit removal.
1390 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1391 diag::warn_printf_ignored_flag)
1392 << ignoredFlag.toString() << flag.toString()
1393 << getFormatSpecifierRange(startSpecifier, specifierLen)
1394 << FixItHint::CreateRemoval(getFormatSpecifierRange(
1395 ignoredFlag.getPosition(), 1));
1396}
1397
Ted Kremenekab278de2010-01-28 23:39:18 +00001398bool
Ted Kremenekd31b2632010-02-11 09:27:41 +00001399CheckPrintfHandler::HandleFormatSpecifier(const analyze_printf::FormatSpecifier
1400 &FS,
Ted Kremenekab278de2010-01-28 23:39:18 +00001401 const char *startSpecifier,
1402 unsigned specifierLen) {
1403
Ted Kremenekd1668192010-02-27 01:41:03 +00001404 using namespace analyze_printf;
Ted Kremenekab278de2010-01-28 23:39:18 +00001405 const ConversionSpecifier &CS = FS.getConversionSpecifier();
1406
Ted Kremenekd1668192010-02-27 01:41:03 +00001407 if (atFirstArg) {
1408 atFirstArg = false;
1409 usesPositionalArgs = FS.usesPositionalArg();
1410 }
1411 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1412 // Cannot mix-and-match positional and non-positional arguments.
1413 S.Diag(getLocationOfByte(CS.getStart()),
1414 diag::warn_printf_mix_positional_nonpositional_args)
1415 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek5739de72010-01-29 01:06:55 +00001416 return false;
1417 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001418
Ted Kremenekd1668192010-02-27 01:41:03 +00001419 // First check if the field width, precision, and conversion specifier
1420 // have matching data arguments.
1421 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1422 startSpecifier, specifierLen)) {
1423 return false;
1424 }
1425
1426 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1427 startSpecifier, specifierLen)) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001428 return false;
1429 }
1430
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001431 if (!CS.consumesDataArgument()) {
1432 // FIXME: Technically specifying a precision or field width here
1433 // makes no sense. Worth issuing a warning at some point.
Ted Kremenekfb45d352010-02-10 02:16:30 +00001434 return true;
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001435 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001436
Ted Kremenek4a49d982010-02-26 19:18:41 +00001437 // Consume the argument.
1438 unsigned argIndex = FS.getArgIndex();
Ted Kremenek09597b42010-02-27 08:34:51 +00001439 if (argIndex < NumDataArgs) {
1440 // The check to see if the argIndex is valid will come later.
1441 // We set the bit here because we may exit early from this
1442 // function if we encounter some other error.
1443 CoveredArgs.set(argIndex);
1444 }
Ted Kremenek4a49d982010-02-26 19:18:41 +00001445
1446 // Check for using an Objective-C specific conversion specifier
1447 // in a non-ObjC literal.
1448 if (!IsObjCLiteral && CS.isObjCArg()) {
1449 return HandleInvalidConversionSpecifier(FS, startSpecifier, specifierLen);
1450 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001451
Tom Careb49ec692010-06-17 19:00:27 +00001452 // Check for invalid use of field width
1453 if (!FS.hasValidFieldWidth()) {
1454 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 1,
1455 startSpecifier, specifierLen);
1456 }
1457
1458 // Check for invalid use of precision
1459 if (!FS.hasValidPrecision()) {
1460 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1461 startSpecifier, specifierLen);
1462 }
1463
1464 // Check each flag does not conflict with any other component.
1465 if (!FS.hasValidLeadingZeros())
1466 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1467 if (!FS.hasValidPlusPrefix())
1468 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
1469 // FIXME: the following lines are disabled due to clang assertions on
1470 // highlights containing spaces.
1471 // if (!FS.hasValidSpacePrefix())
1472 // HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
1473 if (!FS.hasValidAlternativeForm())
1474 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1475 if (!FS.hasValidLeftJustified())
1476 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1477
1478 // Check that flags are not ignored by another flag
1479 // FIXME: the following lines are disabled due to clang assertions on
1480 // highlights containing spaces.
1481 //if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1482 // HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1483 // startSpecifier, specifierLen);
1484 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1485 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1486 startSpecifier, specifierLen);
1487
1488 // Check the length modifier is valid with the given conversion specifier.
1489 const LengthModifier &LM = FS.getLengthModifier();
1490 if (!FS.hasValidLengthModifier())
1491 S.Diag(getLocationOfByte(LM.getStart()),
1492 diag::warn_printf_nonsensical_length)
1493 << LM.toString() << CS.toString()
1494 << getFormatSpecifierRange(startSpecifier, specifierLen)
1495 << FixItHint::CreateRemoval(getFormatSpecifierRange(LM.getStart(),
1496 LM.getLength()));
1497
1498 // Are we using '%n'?
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001499 if (CS.getKind() == ConversionSpecifier::OutIntPtrArg) {
Tom Careb49ec692010-06-17 19:00:27 +00001500 // Issue a warning about this being a possible security issue.
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001501 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001502 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001503 // Continue checking the other format specifiers.
1504 return true;
1505 }
Ted Kremenekd31b2632010-02-11 09:27:41 +00001506
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001507 // The remaining checks depend on the data arguments.
1508 if (HasVAListArg)
1509 return true;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001510
Ted Kremenek4a49d982010-02-26 19:18:41 +00001511 if (argIndex >= NumDataArgs) {
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001512 if (FS.usesPositionalArg()) {
1513 S.Diag(getLocationOfByte(CS.getStart()),
1514 diag::warn_printf_positional_arg_exceeds_data_args)
1515 << (argIndex+1) << NumDataArgs
1516 << getFormatSpecifierRange(startSpecifier, specifierLen);
1517 }
1518 else {
1519 S.Diag(getLocationOfByte(CS.getStart()),
1520 diag::warn_printf_insufficient_data_args)
1521 << getFormatSpecifierRange(startSpecifier, specifierLen);
1522 }
1523
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001524 // Don't do any more checking.
1525 return false;
1526 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001527
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001528 // Now type check the data expression that matches the
1529 // format specifier.
Ted Kremenek4a49d982010-02-26 19:18:41 +00001530 const Expr *Ex = getDataArg(argIndex);
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001531 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001532 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1533 // Check if we didn't match because of an implicit cast from a 'char'
1534 // or 'short' to an 'int'. This is done because printf is a varargs
1535 // function.
1536 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1537 if (ICE->getType() == S.Context.IntTy)
1538 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1539 return true;
Ted Kremenekfb20c412010-02-01 19:38:10 +00001540
Tom Careb7042702010-06-09 04:11:11 +00001541 // We may be able to offer a FixItHint if it is a supported type.
1542 FormatSpecifier fixedFS = FS;
1543 bool success = fixedFS.fixType(Ex->getType());
1544
1545 if (success) {
1546 // Get the fix string from the fixed format specifier
1547 llvm::SmallString<128> buf;
1548 llvm::raw_svector_ostream os(buf);
1549 fixedFS.toString(os);
1550
1551 S.Diag(getLocationOfByte(CS.getStart()),
1552 diag::warn_printf_conversion_argument_type_mismatch)
1553 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1554 << getFormatSpecifierRange(startSpecifier, specifierLen)
1555 << Ex->getSourceRange()
1556 << FixItHint::CreateReplacement(
1557 getFormatSpecifierRange(startSpecifier, specifierLen),
1558 os.str());
1559 }
1560 else {
1561 S.Diag(getLocationOfByte(CS.getStart()),
1562 diag::warn_printf_conversion_argument_type_mismatch)
1563 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1564 << getFormatSpecifierRange(startSpecifier, specifierLen)
1565 << Ex->getSourceRange();
1566 }
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001567 }
Ted Kremenekab278de2010-01-28 23:39:18 +00001568
1569 return true;
1570}
1571
Ted Kremenek019d2242010-01-29 01:50:07 +00001572void CheckPrintfHandler::DoneProcessing() {
1573 // Does the number of data arguments exceed the number of
1574 // format conversions in the format string?
Ted Kremenek4a49d982010-02-26 19:18:41 +00001575 if (!HasVAListArg) {
1576 // Find any arguments that weren't covered.
1577 CoveredArgs.flip();
1578 signed notCoveredArg = CoveredArgs.find_first();
1579 if (notCoveredArg >= 0) {
1580 assert((unsigned)notCoveredArg < NumDataArgs);
1581 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1582 diag::warn_printf_data_arg_not_used)
1583 << getFormatStringRange();
1584 }
1585 }
Ted Kremenek019d2242010-01-29 01:50:07 +00001586}
Ted Kremenekab278de2010-01-28 23:39:18 +00001587
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001588void Sema::CheckPrintfString(const StringLiteral *FExpr,
Ted Kremenekfb45d352010-02-10 02:16:30 +00001589 const Expr *OrigFormatExpr,
1590 const CallExpr *TheCall, bool HasVAListArg,
1591 unsigned format_idx, unsigned firstDataArg) {
1592
Ted Kremenekab278de2010-01-28 23:39:18 +00001593 // CHECK: is the format string a wide literal?
1594 if (FExpr->isWide()) {
1595 Diag(FExpr->getLocStart(),
1596 diag::warn_printf_format_string_is_wide_literal)
1597 << OrigFormatExpr->getSourceRange();
1598 return;
1599 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001600
Ted Kremenekab278de2010-01-28 23:39:18 +00001601 // Str - The format string. NOTE: this is NOT null-terminated!
1602 const char *Str = FExpr->getStrData();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001603
Ted Kremenekab278de2010-01-28 23:39:18 +00001604 // CHECK: empty format string?
1605 unsigned StrLen = FExpr->getByteLength();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001606
Ted Kremenekab278de2010-01-28 23:39:18 +00001607 if (StrLen == 0) {
1608 Diag(FExpr->getLocStart(), diag::warn_printf_empty_format_string)
1609 << OrigFormatExpr->getSourceRange();
1610 return;
1611 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001612
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001613 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremenekab278de2010-01-28 23:39:18 +00001614 TheCall->getNumArgs() - firstDataArg,
Ted Kremenek5739de72010-01-29 01:06:55 +00001615 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1616 HasVAListArg, TheCall, format_idx);
Ted Kremenekab278de2010-01-28 23:39:18 +00001617
Ted Kremenek1de17072010-02-04 20:46:58 +00001618 if (!analyze_printf::ParseFormatString(H, Str, Str + StrLen))
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001619 H.DoneProcessing();
Ted Kremenekc70ee862010-01-28 01:18:22 +00001620}
1621
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001622//===--- CHECK: Return Address of Stack Variable --------------------------===//
1623
1624static DeclRefExpr* EvalVal(Expr *E);
1625static DeclRefExpr* EvalAddr(Expr* E);
1626
1627/// CheckReturnStackAddr - Check if a return statement returns the address
1628/// of a stack variable.
1629void
1630Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1631 SourceLocation ReturnLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00001632
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001633 // Perform checking for returned stack addresses.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001634 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001635 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001636 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattnere3d20d92008-11-23 21:45:46 +00001637 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001638
Steve Naroff3b1e1722008-09-16 22:25:10 +00001639 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner870158e2009-09-08 00:36:37 +00001640 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroff3b1e1722008-09-16 22:25:10 +00001641
Chris Lattner252d36e2009-10-30 04:01:58 +00001642 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump5c3285b2009-04-17 00:09:41 +00001643 if (C->hasBlockDeclRefExprs())
1644 Diag(C->getLocStart(), diag::err_ret_local_block)
1645 << C->getSourceRange();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001646
Chris Lattner252d36e2009-10-30 04:01:58 +00001647 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1648 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1649 << ALE->getSourceRange();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001650
Mike Stump12b8ce12009-08-04 21:02:39 +00001651 } else if (lhsType->isReferenceType()) {
1652 // Perform checking for stack values returned by reference.
Douglas Gregore200adc2008-10-27 19:41:14 +00001653 // Check for a reference to the stack
1654 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerf490e152008-11-19 05:27:50 +00001655 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattnere3d20d92008-11-23 21:45:46 +00001656 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001657 }
1658}
1659
1660/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1661/// check if the expression in a return statement evaluates to an address
1662/// to a location on the stack. The recursion is used to traverse the
1663/// AST of the return expression, with recursion backtracking when we
1664/// encounter a subexpression that (1) clearly does not lead to the address
1665/// of a stack variable or (2) is something we cannot determine leads to
1666/// the address of a stack variable based on such local checking.
1667///
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00001668/// EvalAddr processes expressions that are pointers that are used as
1669/// references (and not L-values). EvalVal handles all other values.
Mike Stump11289f42009-09-09 15:08:12 +00001670/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001671/// the refers to a stack variable.
1672///
1673/// This implementation handles:
1674///
1675/// * pointer-to-pointer casts
1676/// * implicit conversions from array references to pointers
1677/// * taking the address of fields
1678/// * arbitrary interplay between "&" and "*" operators
1679/// * pointer arithmetic from an address of a stack variable
1680/// * taking the address of an array element where the array is on the stack
1681static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001682 // We should only be called for evaluating pointer expressions.
David Chisnall9f57c292009-08-17 16:35:33 +00001683 assert((E->getType()->isAnyPointerType() ||
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001684 E->getType()->isBlockPointerType() ||
Ted Kremenek1b0ea822008-01-07 19:49:32 +00001685 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattner934edb22007-12-28 05:31:15 +00001686 "EvalAddr only works on pointers");
Mike Stump11289f42009-09-09 15:08:12 +00001687
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001688 // Our "symbolic interpreter" is just a dispatch off the currently
1689 // viewed AST node. We then recursively traverse the AST by calling
1690 // EvalAddr and EvalVal appropriately.
1691 switch (E->getStmtClass()) {
Chris Lattner934edb22007-12-28 05:31:15 +00001692 case Stmt::ParenExprClass:
1693 // Ignore parentheses.
1694 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001695
Chris Lattner934edb22007-12-28 05:31:15 +00001696 case Stmt::UnaryOperatorClass: {
1697 // The only unary operator that make sense to handle here
1698 // is AddrOf. All others don't make sense as pointers.
1699 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001700
Chris Lattner934edb22007-12-28 05:31:15 +00001701 if (U->getOpcode() == UnaryOperator::AddrOf)
1702 return EvalVal(U->getSubExpr());
1703 else
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001704 return NULL;
1705 }
Mike Stump11289f42009-09-09 15:08:12 +00001706
Chris Lattner934edb22007-12-28 05:31:15 +00001707 case Stmt::BinaryOperatorClass: {
1708 // Handle pointer arithmetic. All other binary operators are not valid
1709 // in this context.
1710 BinaryOperator *B = cast<BinaryOperator>(E);
1711 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump11289f42009-09-09 15:08:12 +00001712
Chris Lattner934edb22007-12-28 05:31:15 +00001713 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1714 return NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001715
Chris Lattner934edb22007-12-28 05:31:15 +00001716 Expr *Base = B->getLHS();
1717
1718 // Determine which argument is the real pointer base. It could be
1719 // the RHS argument instead of the LHS.
1720 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump11289f42009-09-09 15:08:12 +00001721
Chris Lattner934edb22007-12-28 05:31:15 +00001722 assert (Base->getType()->isPointerType());
1723 return EvalAddr(Base);
1724 }
Steve Naroff2752a172008-09-10 19:17:48 +00001725
Chris Lattner934edb22007-12-28 05:31:15 +00001726 // For conditional operators we need to see if either the LHS or RHS are
1727 // valid DeclRefExpr*s. If one of them is valid, we return it.
1728 case Stmt::ConditionalOperatorClass: {
1729 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001730
Chris Lattner934edb22007-12-28 05:31:15 +00001731 // Handle the GNU extension for missing LHS.
1732 if (Expr *lhsExpr = C->getLHS())
1733 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1734 return LHS;
1735
1736 return EvalAddr(C->getRHS());
1737 }
Mike Stump11289f42009-09-09 15:08:12 +00001738
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001739 // For casts, we need to handle conversions from arrays to
1740 // pointer values, and pointer-to-pointer conversions.
Douglas Gregore200adc2008-10-27 19:41:14 +00001741 case Stmt::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00001742 case Stmt::CStyleCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00001743 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001744 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001745 QualType T = SubExpr->getType();
Mike Stump11289f42009-09-09 15:08:12 +00001746
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001747 if (SubExpr->getType()->isPointerType() ||
1748 SubExpr->getType()->isBlockPointerType() ||
1749 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001750 return EvalAddr(SubExpr);
1751 else if (T->isArrayType())
Chris Lattner934edb22007-12-28 05:31:15 +00001752 return EvalVal(SubExpr);
Chris Lattner934edb22007-12-28 05:31:15 +00001753 else
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001754 return 0;
Chris Lattner934edb22007-12-28 05:31:15 +00001755 }
Mike Stump11289f42009-09-09 15:08:12 +00001756
Chris Lattner934edb22007-12-28 05:31:15 +00001757 // C++ casts. For dynamic casts, static casts, and const casts, we
1758 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregore200adc2008-10-27 19:41:14 +00001759 // through the cast. In the case the dynamic cast doesn't fail (and
1760 // return NULL), we take the conservative route and report cases
Chris Lattner934edb22007-12-28 05:31:15 +00001761 // where we return the address of a stack variable. For Reinterpre
Douglas Gregore200adc2008-10-27 19:41:14 +00001762 // FIXME: The comment about is wrong; we're not always converting
1763 // from pointer to pointer. I'm guessing that this code should also
Mike Stump11289f42009-09-09 15:08:12 +00001764 // handle references to objects.
1765 case Stmt::CXXStaticCastExprClass:
1766 case Stmt::CXXDynamicCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00001767 case Stmt::CXXConstCastExprClass:
1768 case Stmt::CXXReinterpretCastExprClass: {
1769 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001770 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattner934edb22007-12-28 05:31:15 +00001771 return EvalAddr(S);
1772 else
1773 return NULL;
Chris Lattner934edb22007-12-28 05:31:15 +00001774 }
Mike Stump11289f42009-09-09 15:08:12 +00001775
Chris Lattner934edb22007-12-28 05:31:15 +00001776 // Everything else: we simply don't reason about them.
1777 default:
1778 return NULL;
1779 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001780}
Mike Stump11289f42009-09-09 15:08:12 +00001781
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001782
1783/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1784/// See the comments for EvalAddr for more details.
1785static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump11289f42009-09-09 15:08:12 +00001786
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00001787 // We should only be called for evaluating non-pointer expressions, or
1788 // expressions with a pointer type that are not used as references but instead
1789 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump11289f42009-09-09 15:08:12 +00001790
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001791 // Our "symbolic interpreter" is just a dispatch off the currently
1792 // viewed AST node. We then recursively traverse the AST by calling
1793 // EvalAddr and EvalVal appropriately.
1794 switch (E->getStmtClass()) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +00001795 case Stmt::DeclRefExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001796 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1797 // at code that refers to a variable's name. We check if it has local
1798 // storage within the function, and if so, return the expression.
1799 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001800
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001801 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump11289f42009-09-09 15:08:12 +00001802 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1803
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001804 return NULL;
1805 }
Mike Stump11289f42009-09-09 15:08:12 +00001806
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001807 case Stmt::ParenExprClass:
1808 // Ignore parentheses.
1809 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump11289f42009-09-09 15:08:12 +00001810
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001811 case Stmt::UnaryOperatorClass: {
1812 // The only unary operator that make sense to handle here
1813 // is Deref. All others don't resolve to a "name." This includes
1814 // handling all sorts of rvalues passed to a unary operator.
1815 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001816
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001817 if (U->getOpcode() == UnaryOperator::Deref)
1818 return EvalAddr(U->getSubExpr());
1819
1820 return NULL;
1821 }
Mike Stump11289f42009-09-09 15:08:12 +00001822
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001823 case Stmt::ArraySubscriptExprClass: {
1824 // Array subscripts are potential references to data on the stack. We
1825 // retrieve the DeclRefExpr* for the array variable if it indeed
1826 // has local storage.
Ted Kremenekc81614d2007-08-20 16:18:38 +00001827 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001828 }
Mike Stump11289f42009-09-09 15:08:12 +00001829
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001830 case Stmt::ConditionalOperatorClass: {
1831 // For conditional operators we need to see if either the LHS or RHS are
1832 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
1833 ConditionalOperator *C = cast<ConditionalOperator>(E);
1834
Anders Carlsson801c5c72007-11-30 19:04:31 +00001835 // Handle the GNU extension for missing LHS.
1836 if (Expr *lhsExpr = C->getLHS())
1837 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
1838 return LHS;
1839
1840 return EvalVal(C->getRHS());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001841 }
Mike Stump11289f42009-09-09 15:08:12 +00001842
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001843 // Accesses to members are potential references to data on the stack.
Douglas Gregorf405d7e2009-08-31 23:41:50 +00001844 case Stmt::MemberExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001845 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001846
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001847 // Check for indirect access. We only want direct field accesses.
1848 if (!M->isArrow())
1849 return EvalVal(M->getBase());
1850 else
1851 return NULL;
1852 }
Mike Stump11289f42009-09-09 15:08:12 +00001853
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001854 // Everything else: we simply don't reason about them.
1855 default:
1856 return NULL;
1857 }
1858}
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001859
1860//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
1861
1862/// Check for comparisons of floating point operands using != and ==.
1863/// Issue a warning if these are no self-comparisons, as they are not likely
1864/// to do what the programmer intended.
1865void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
1866 bool EmitWarning = true;
Mike Stump11289f42009-09-09 15:08:12 +00001867
Ted Kremenekfff70962008-01-17 16:57:34 +00001868 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32a33582008-01-17 17:55:13 +00001869 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001870
1871 // Special case: check for x == x (which is OK).
1872 // Do not emit warnings for such cases.
1873 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
1874 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
1875 if (DRL->getDecl() == DRR->getDecl())
1876 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00001877
1878
Ted Kremenekeda40e22007-11-29 00:59:04 +00001879 // Special case: check for comparisons against literals that can be exactly
1880 // represented by APFloat. In such cases, do not emit a warning. This
1881 // is a heuristic: often comparison against such literals are used to
1882 // detect if a value in a variable has not changed. This clearly can
1883 // lead to false negatives.
1884 if (EmitWarning) {
1885 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
1886 if (FLL->isExact())
1887 EmitWarning = false;
Mike Stump12b8ce12009-08-04 21:02:39 +00001888 } else
Ted Kremenekeda40e22007-11-29 00:59:04 +00001889 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
1890 if (FLR->isExact())
1891 EmitWarning = false;
1892 }
1893 }
Mike Stump11289f42009-09-09 15:08:12 +00001894
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001895 // Check for comparisons with builtin types.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001896 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001897 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00001898 if (CL->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001899 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00001900
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001901 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001902 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00001903 if (CR->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001904 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00001905
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001906 // Emit the diagnostic.
1907 if (EmitWarning)
Chris Lattner3b054132008-11-19 05:08:23 +00001908 Diag(loc, diag::warn_floatingpoint_eq)
1909 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00001910}
John McCallca01b222010-01-04 23:21:16 +00001911
John McCall70aa5392010-01-06 05:24:50 +00001912//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
1913//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallca01b222010-01-04 23:21:16 +00001914
John McCall70aa5392010-01-06 05:24:50 +00001915namespace {
John McCallca01b222010-01-04 23:21:16 +00001916
John McCall70aa5392010-01-06 05:24:50 +00001917/// Structure recording the 'active' range of an integer-valued
1918/// expression.
1919struct IntRange {
1920 /// The number of bits active in the int.
1921 unsigned Width;
John McCallca01b222010-01-04 23:21:16 +00001922
John McCall70aa5392010-01-06 05:24:50 +00001923 /// True if the int is known not to have negative values.
1924 bool NonNegative;
John McCallca01b222010-01-04 23:21:16 +00001925
John McCall70aa5392010-01-06 05:24:50 +00001926 IntRange() {}
1927 IntRange(unsigned Width, bool NonNegative)
1928 : Width(Width), NonNegative(NonNegative)
1929 {}
John McCallca01b222010-01-04 23:21:16 +00001930
John McCall70aa5392010-01-06 05:24:50 +00001931 // Returns the range of the bool type.
1932 static IntRange forBoolType() {
1933 return IntRange(1, true);
John McCall263a48b2010-01-04 23:31:57 +00001934 }
1935
John McCall70aa5392010-01-06 05:24:50 +00001936 // Returns the range of an integral type.
1937 static IntRange forType(ASTContext &C, QualType T) {
1938 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall263a48b2010-01-04 23:31:57 +00001939 }
1940
John McCall70aa5392010-01-06 05:24:50 +00001941 // Returns the range of an integeral type based on its canonical
1942 // representation.
1943 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
1944 assert(T->isCanonicalUnqualified());
1945
1946 if (const VectorType *VT = dyn_cast<VectorType>(T))
1947 T = VT->getElementType().getTypePtr();
1948 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
1949 T = CT->getElementType().getTypePtr();
John McCallcc7e5bf2010-05-06 08:58:33 +00001950
1951 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
1952 EnumDecl *Enum = ET->getDecl();
1953 unsigned NumPositive = Enum->getNumPositiveBits();
1954 unsigned NumNegative = Enum->getNumNegativeBits();
1955
1956 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
1957 }
John McCall70aa5392010-01-06 05:24:50 +00001958
1959 const BuiltinType *BT = cast<BuiltinType>(T);
1960 assert(BT->isInteger());
1961
1962 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
1963 }
1964
1965 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallff96ccd2010-02-23 19:22:29 +00001966 static IntRange join(IntRange L, IntRange R) {
John McCall70aa5392010-01-06 05:24:50 +00001967 return IntRange(std::max(L.Width, R.Width),
John McCall2ce81ad2010-01-06 22:07:33 +00001968 L.NonNegative && R.NonNegative);
1969 }
1970
1971 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallff96ccd2010-02-23 19:22:29 +00001972 static IntRange meet(IntRange L, IntRange R) {
John McCall2ce81ad2010-01-06 22:07:33 +00001973 return IntRange(std::min(L.Width, R.Width),
1974 L.NonNegative || R.NonNegative);
John McCall70aa5392010-01-06 05:24:50 +00001975 }
1976};
1977
1978IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
1979 if (value.isSigned() && value.isNegative())
1980 return IntRange(value.getMinSignedBits(), false);
1981
1982 if (value.getBitWidth() > MaxWidth)
1983 value.trunc(MaxWidth);
1984
1985 // isNonNegative() just checks the sign bit without considering
1986 // signedness.
1987 return IntRange(value.getActiveBits(), true);
1988}
1989
John McCall74430522010-01-06 22:57:21 +00001990IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCall70aa5392010-01-06 05:24:50 +00001991 unsigned MaxWidth) {
1992 if (result.isInt())
1993 return GetValueRange(C, result.getInt(), MaxWidth);
1994
1995 if (result.isVector()) {
John McCall74430522010-01-06 22:57:21 +00001996 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
1997 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
1998 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
1999 R = IntRange::join(R, El);
2000 }
John McCall70aa5392010-01-06 05:24:50 +00002001 return R;
2002 }
2003
2004 if (result.isComplexInt()) {
2005 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2006 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2007 return IntRange::join(R, I);
John McCall263a48b2010-01-04 23:31:57 +00002008 }
2009
2010 // This can happen with lossless casts to intptr_t of "based" lvalues.
2011 // Assume it might use arbitrary bits.
John McCall74430522010-01-06 22:57:21 +00002012 // FIXME: The only reason we need to pass the type in here is to get
2013 // the sign right on this one case. It would be nice if APValue
2014 // preserved this.
John McCall70aa5392010-01-06 05:24:50 +00002015 assert(result.isLValue());
John McCall74430522010-01-06 22:57:21 +00002016 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall263a48b2010-01-04 23:31:57 +00002017}
John McCall70aa5392010-01-06 05:24:50 +00002018
2019/// Pseudo-evaluate the given integer expression, estimating the
2020/// range of values it might take.
2021///
2022/// \param MaxWidth - the width to which the value will be truncated
2023IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2024 E = E->IgnoreParens();
2025
2026 // Try a full evaluation first.
2027 Expr::EvalResult result;
2028 if (E->Evaluate(result, C))
John McCall74430522010-01-06 22:57:21 +00002029 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00002030
2031 // I think we only want to look through implicit casts here; if the
2032 // user has an explicit widening cast, we should treat the value as
2033 // being of the new, wider type.
2034 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2035 if (CE->getCastKind() == CastExpr::CK_NoOp)
2036 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2037
2038 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2039
John McCall2ce81ad2010-01-06 22:07:33 +00002040 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2041 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2042 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2043
John McCall70aa5392010-01-06 05:24:50 +00002044 // Assume that non-integer casts can span the full range of the type.
John McCall2ce81ad2010-01-06 22:07:33 +00002045 if (!isIntegerCast)
John McCall70aa5392010-01-06 05:24:50 +00002046 return OutputTypeRange;
2047
2048 IntRange SubRange
2049 = GetExprRange(C, CE->getSubExpr(),
2050 std::min(MaxWidth, OutputTypeRange.Width));
2051
2052 // Bail out if the subexpr's range is as wide as the cast type.
2053 if (SubRange.Width >= OutputTypeRange.Width)
2054 return OutputTypeRange;
2055
2056 // Otherwise, we take the smaller width, and we're non-negative if
2057 // either the output type or the subexpr is.
2058 return IntRange(SubRange.Width,
2059 SubRange.NonNegative || OutputTypeRange.NonNegative);
2060 }
2061
2062 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2063 // If we can fold the condition, just take that operand.
2064 bool CondResult;
2065 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2066 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2067 : CO->getFalseExpr(),
2068 MaxWidth);
2069
2070 // Otherwise, conservatively merge.
2071 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2072 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2073 return IntRange::join(L, R);
2074 }
2075
2076 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2077 switch (BO->getOpcode()) {
2078
2079 // Boolean-valued operations are single-bit and positive.
2080 case BinaryOperator::LAnd:
2081 case BinaryOperator::LOr:
2082 case BinaryOperator::LT:
2083 case BinaryOperator::GT:
2084 case BinaryOperator::LE:
2085 case BinaryOperator::GE:
2086 case BinaryOperator::EQ:
2087 case BinaryOperator::NE:
2088 return IntRange::forBoolType();
2089
John McCallff96ccd2010-02-23 19:22:29 +00002090 // The type of these compound assignments is the type of the LHS,
2091 // so the RHS is not necessarily an integer.
2092 case BinaryOperator::MulAssign:
2093 case BinaryOperator::DivAssign:
2094 case BinaryOperator::RemAssign:
2095 case BinaryOperator::AddAssign:
2096 case BinaryOperator::SubAssign:
2097 return IntRange::forType(C, E->getType());
2098
John McCall70aa5392010-01-06 05:24:50 +00002099 // Operations with opaque sources are black-listed.
2100 case BinaryOperator::PtrMemD:
2101 case BinaryOperator::PtrMemI:
2102 return IntRange::forType(C, E->getType());
2103
John McCall2ce81ad2010-01-06 22:07:33 +00002104 // Bitwise-and uses the *infinum* of the two source ranges.
2105 case BinaryOperator::And:
John McCallff96ccd2010-02-23 19:22:29 +00002106 case BinaryOperator::AndAssign:
John McCall2ce81ad2010-01-06 22:07:33 +00002107 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2108 GetExprRange(C, BO->getRHS(), MaxWidth));
2109
John McCall70aa5392010-01-06 05:24:50 +00002110 // Left shift gets black-listed based on a judgement call.
2111 case BinaryOperator::Shl:
John McCall1bff9932010-04-07 01:14:35 +00002112 // ...except that we want to treat '1 << (blah)' as logically
2113 // positive. It's an important idiom.
2114 if (IntegerLiteral *I
2115 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2116 if (I->getValue() == 1) {
2117 IntRange R = IntRange::forType(C, E->getType());
2118 return IntRange(R.Width, /*NonNegative*/ true);
2119 }
2120 }
2121 // fallthrough
2122
John McCallff96ccd2010-02-23 19:22:29 +00002123 case BinaryOperator::ShlAssign:
John McCall70aa5392010-01-06 05:24:50 +00002124 return IntRange::forType(C, E->getType());
2125
John McCall2ce81ad2010-01-06 22:07:33 +00002126 // Right shift by a constant can narrow its left argument.
John McCallff96ccd2010-02-23 19:22:29 +00002127 case BinaryOperator::Shr:
2128 case BinaryOperator::ShrAssign: {
John McCall2ce81ad2010-01-06 22:07:33 +00002129 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2130
2131 // If the shift amount is a positive constant, drop the width by
2132 // that much.
2133 llvm::APSInt shift;
2134 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2135 shift.isNonNegative()) {
2136 unsigned zext = shift.getZExtValue();
2137 if (zext >= L.Width)
2138 L.Width = (L.NonNegative ? 0 : 1);
2139 else
2140 L.Width -= zext;
2141 }
2142
2143 return L;
2144 }
2145
2146 // Comma acts as its right operand.
John McCall70aa5392010-01-06 05:24:50 +00002147 case BinaryOperator::Comma:
2148 return GetExprRange(C, BO->getRHS(), MaxWidth);
2149
John McCall2ce81ad2010-01-06 22:07:33 +00002150 // Black-list pointer subtractions.
John McCall70aa5392010-01-06 05:24:50 +00002151 case BinaryOperator::Sub:
2152 if (BO->getLHS()->getType()->isPointerType())
2153 return IntRange::forType(C, E->getType());
2154 // fallthrough
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002155
John McCall70aa5392010-01-06 05:24:50 +00002156 default:
2157 break;
2158 }
2159
2160 // Treat every other operator as if it were closed on the
2161 // narrowest type that encompasses both operands.
2162 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2163 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2164 return IntRange::join(L, R);
2165 }
2166
2167 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2168 switch (UO->getOpcode()) {
2169 // Boolean-valued operations are white-listed.
2170 case UnaryOperator::LNot:
2171 return IntRange::forBoolType();
2172
2173 // Operations with opaque sources are black-listed.
2174 case UnaryOperator::Deref:
2175 case UnaryOperator::AddrOf: // should be impossible
2176 case UnaryOperator::OffsetOf:
2177 return IntRange::forType(C, E->getType());
2178
2179 default:
2180 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2181 }
2182 }
Douglas Gregor882211c2010-04-28 22:16:22 +00002183
2184 if (dyn_cast<OffsetOfExpr>(E)) {
2185 IntRange::forType(C, E->getType());
2186 }
John McCall70aa5392010-01-06 05:24:50 +00002187
2188 FieldDecl *BitField = E->getBitField();
2189 if (BitField) {
2190 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2191 unsigned BitWidth = BitWidthAP.getZExtValue();
2192
2193 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2194 }
2195
2196 return IntRange::forType(C, E->getType());
2197}
John McCall263a48b2010-01-04 23:31:57 +00002198
John McCallcc7e5bf2010-05-06 08:58:33 +00002199IntRange GetExprRange(ASTContext &C, Expr *E) {
2200 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2201}
2202
John McCall263a48b2010-01-04 23:31:57 +00002203/// Checks whether the given value, which currently has the given
2204/// source semantics, has the same value when coerced through the
2205/// target semantics.
John McCall70aa5392010-01-06 05:24:50 +00002206bool IsSameFloatAfterCast(const llvm::APFloat &value,
2207 const llvm::fltSemantics &Src,
2208 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002209 llvm::APFloat truncated = value;
2210
2211 bool ignored;
2212 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2213 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2214
2215 return truncated.bitwiseIsEqual(value);
2216}
2217
2218/// Checks whether the given value, which currently has the given
2219/// source semantics, has the same value when coerced through the
2220/// target semantics.
2221///
2222/// The value might be a vector of floats (or a complex number).
John McCall70aa5392010-01-06 05:24:50 +00002223bool IsSameFloatAfterCast(const APValue &value,
2224 const llvm::fltSemantics &Src,
2225 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002226 if (value.isFloat())
2227 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2228
2229 if (value.isVector()) {
2230 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2231 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2232 return false;
2233 return true;
2234 }
2235
2236 assert(value.isComplexFloat());
2237 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2238 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2239}
2240
John McCallcc7e5bf2010-05-06 08:58:33 +00002241void AnalyzeImplicitConversions(Sema &S, Expr *E);
2242
2243bool IsZero(Sema &S, Expr *E) {
2244 llvm::APSInt Value;
2245 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2246}
2247
2248void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2249 BinaryOperator::Opcode op = E->getOpcode();
2250 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2251 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2252 << "< 0" << "false"
2253 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2254 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2255 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2256 << ">= 0" << "true"
2257 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2258 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2259 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2260 << "0 >" << "false"
2261 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2262 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2263 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2264 << "0 <=" << "true"
2265 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2266 }
2267}
2268
2269/// Analyze the operands of the given comparison. Implements the
2270/// fallback case from AnalyzeComparison.
2271void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2272 AnalyzeImplicitConversions(S, E->getLHS());
2273 AnalyzeImplicitConversions(S, E->getRHS());
2274}
John McCall263a48b2010-01-04 23:31:57 +00002275
John McCallca01b222010-01-04 23:21:16 +00002276/// \brief Implements -Wsign-compare.
2277///
2278/// \param lex the left-hand expression
2279/// \param rex the right-hand expression
2280/// \param OpLoc the location of the joining operator
John McCall71d8d9b2010-03-11 19:43:18 +00002281/// \param BinOpc binary opcode or 0
John McCallcc7e5bf2010-05-06 08:58:33 +00002282void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2283 // The type the comparison is being performed in.
2284 QualType T = E->getLHS()->getType();
2285 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2286 && "comparison with mismatched types");
John McCallca01b222010-01-04 23:21:16 +00002287
John McCallcc7e5bf2010-05-06 08:58:33 +00002288 // We don't do anything special if this isn't an unsigned integral
2289 // comparison: we're only interested in integral comparisons, and
2290 // signed comparisons only happen in cases we don't care to warn about.
2291 if (!T->isUnsignedIntegerType())
2292 return AnalyzeImpConvsInComparison(S, E);
John McCall70aa5392010-01-06 05:24:50 +00002293
John McCallcc7e5bf2010-05-06 08:58:33 +00002294 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2295 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallca01b222010-01-04 23:21:16 +00002296
John McCallcc7e5bf2010-05-06 08:58:33 +00002297 // Check to see if one of the (unmodified) operands is of different
2298 // signedness.
2299 Expr *signedOperand, *unsignedOperand;
2300 if (lex->getType()->isSignedIntegerType()) {
2301 assert(!rex->getType()->isSignedIntegerType() &&
2302 "unsigned comparison between two signed integer expressions?");
2303 signedOperand = lex;
2304 unsignedOperand = rex;
2305 } else if (rex->getType()->isSignedIntegerType()) {
2306 signedOperand = rex;
2307 unsignedOperand = lex;
John McCallca01b222010-01-04 23:21:16 +00002308 } else {
John McCallcc7e5bf2010-05-06 08:58:33 +00002309 CheckTrivialUnsignedComparison(S, E);
2310 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002311 }
2312
John McCallcc7e5bf2010-05-06 08:58:33 +00002313 // Otherwise, calculate the effective range of the signed operand.
2314 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCall70aa5392010-01-06 05:24:50 +00002315
John McCallcc7e5bf2010-05-06 08:58:33 +00002316 // Go ahead and analyze implicit conversions in the operands. Note
2317 // that we skip the implicit conversions on both sides.
2318 AnalyzeImplicitConversions(S, lex);
2319 AnalyzeImplicitConversions(S, rex);
John McCallca01b222010-01-04 23:21:16 +00002320
John McCallcc7e5bf2010-05-06 08:58:33 +00002321 // If the signed range is non-negative, -Wsign-compare won't fire,
2322 // but we should still check for comparisons which are always true
2323 // or false.
2324 if (signedRange.NonNegative)
2325 return CheckTrivialUnsignedComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002326
2327 // For (in)equality comparisons, if the unsigned operand is a
2328 // constant which cannot collide with a overflowed signed operand,
2329 // then reinterpreting the signed operand as unsigned will not
2330 // change the result of the comparison.
John McCallcc7e5bf2010-05-06 08:58:33 +00002331 if (E->isEqualityOp()) {
2332 unsigned comparisonWidth = S.Context.getIntWidth(T);
2333 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallca01b222010-01-04 23:21:16 +00002334
John McCallcc7e5bf2010-05-06 08:58:33 +00002335 // We should never be unable to prove that the unsigned operand is
2336 // non-negative.
2337 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2338
2339 if (unsignedRange.Width < comparisonWidth)
2340 return;
2341 }
2342
2343 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2344 << lex->getType() << rex->getType()
2345 << lex->getSourceRange() << rex->getSourceRange();
John McCallca01b222010-01-04 23:21:16 +00002346}
2347
John McCall263a48b2010-01-04 23:31:57 +00002348/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCallcc7e5bf2010-05-06 08:58:33 +00002349void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall263a48b2010-01-04 23:31:57 +00002350 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2351}
2352
John McCallcc7e5bf2010-05-06 08:58:33 +00002353void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2354 bool *ICContext = 0) {
2355 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall263a48b2010-01-04 23:31:57 +00002356
John McCallcc7e5bf2010-05-06 08:58:33 +00002357 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2358 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2359 if (Source == Target) return;
2360 if (Target->isDependentType()) return;
John McCall263a48b2010-01-04 23:31:57 +00002361
2362 // Never diagnose implicit casts to bool.
2363 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2364 return;
2365
2366 // Strip vector types.
2367 if (isa<VectorType>(Source)) {
2368 if (!isa<VectorType>(Target))
John McCallcc7e5bf2010-05-06 08:58:33 +00002369 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall263a48b2010-01-04 23:31:57 +00002370
2371 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2372 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2373 }
2374
2375 // Strip complex types.
2376 if (isa<ComplexType>(Source)) {
2377 if (!isa<ComplexType>(Target))
John McCallcc7e5bf2010-05-06 08:58:33 +00002378 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall263a48b2010-01-04 23:31:57 +00002379
2380 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2381 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2382 }
2383
2384 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2385 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2386
2387 // If the source is floating point...
2388 if (SourceBT && SourceBT->isFloatingPoint()) {
2389 // ...and the target is floating point...
2390 if (TargetBT && TargetBT->isFloatingPoint()) {
2391 // ...then warn if we're dropping FP rank.
2392
2393 // Builtin FP kinds are ordered by increasing FP rank.
2394 if (SourceBT->getKind() > TargetBT->getKind()) {
2395 // Don't warn about float constants that are precisely
2396 // representable in the target type.
2397 Expr::EvalResult result;
John McCallcc7e5bf2010-05-06 08:58:33 +00002398 if (E->Evaluate(result, S.Context)) {
John McCall263a48b2010-01-04 23:31:57 +00002399 // Value might be a float, a float vector, or a float complex.
2400 if (IsSameFloatAfterCast(result.Val,
John McCallcc7e5bf2010-05-06 08:58:33 +00002401 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2402 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall263a48b2010-01-04 23:31:57 +00002403 return;
2404 }
2405
John McCallcc7e5bf2010-05-06 08:58:33 +00002406 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall263a48b2010-01-04 23:31:57 +00002407 }
2408 return;
2409 }
2410
2411 // If the target is integral, always warn.
2412 if ((TargetBT && TargetBT->isInteger()))
2413 // TODO: don't warn for integer values?
John McCallcc7e5bf2010-05-06 08:58:33 +00002414 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall263a48b2010-01-04 23:31:57 +00002415
2416 return;
2417 }
2418
John McCall70aa5392010-01-06 05:24:50 +00002419 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall263a48b2010-01-04 23:31:57 +00002420 return;
2421
John McCallcc7e5bf2010-05-06 08:58:33 +00002422 IntRange SourceRange = GetExprRange(S.Context, E);
2423 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCall70aa5392010-01-06 05:24:50 +00002424
2425 if (SourceRange.Width > TargetRange.Width) {
John McCall263a48b2010-01-04 23:31:57 +00002426 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2427 // and by god we'll let them.
John McCall70aa5392010-01-06 05:24:50 +00002428 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallcc7e5bf2010-05-06 08:58:33 +00002429 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2430 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2431 }
2432
2433 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2434 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2435 SourceRange.Width == TargetRange.Width)) {
2436 unsigned DiagID = diag::warn_impcast_integer_sign;
2437
2438 // Traditionally, gcc has warned about this under -Wsign-compare.
2439 // We also want to warn about it in -Wconversion.
2440 // So if -Wconversion is off, use a completely identical diagnostic
2441 // in the sign-compare group.
2442 // The conditional-checking code will
2443 if (ICContext) {
2444 DiagID = diag::warn_impcast_integer_sign_conditional;
2445 *ICContext = true;
2446 }
2447
2448 return DiagnoseImpCast(S, E, T, DiagID);
John McCall263a48b2010-01-04 23:31:57 +00002449 }
2450
2451 return;
2452}
2453
John McCallcc7e5bf2010-05-06 08:58:33 +00002454void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2455
2456void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2457 bool &ICContext) {
2458 E = E->IgnoreParenImpCasts();
2459
2460 if (isa<ConditionalOperator>(E))
2461 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2462
2463 AnalyzeImplicitConversions(S, E);
2464 if (E->getType() != T)
2465 return CheckImplicitConversion(S, E, T, &ICContext);
2466 return;
2467}
2468
2469void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2470 AnalyzeImplicitConversions(S, E->getCond());
2471
2472 bool Suspicious = false;
2473 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2474 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2475
2476 // If -Wconversion would have warned about either of the candidates
2477 // for a signedness conversion to the context type...
2478 if (!Suspicious) return;
2479
2480 // ...but it's currently ignored...
2481 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2482 return;
2483
2484 // ...and -Wsign-compare isn't...
2485 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2486 return;
2487
2488 // ...then check whether it would have warned about either of the
2489 // candidates for a signedness conversion to the condition type.
2490 if (E->getType() != T) {
2491 Suspicious = false;
2492 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2493 E->getType(), &Suspicious);
2494 if (!Suspicious)
2495 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2496 E->getType(), &Suspicious);
2497 if (!Suspicious)
2498 return;
2499 }
2500
2501 // If so, emit a diagnostic under -Wsign-compare.
2502 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2503 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2504 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2505 << lex->getType() << rex->getType()
2506 << lex->getSourceRange() << rex->getSourceRange();
2507}
2508
2509/// AnalyzeImplicitConversions - Find and report any interesting
2510/// implicit conversions in the given expression. There are a couple
2511/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2512void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2513 QualType T = OrigE->getType();
2514 Expr *E = OrigE->IgnoreParenImpCasts();
2515
2516 // For conditional operators, we analyze the arguments as if they
2517 // were being fed directly into the output.
2518 if (isa<ConditionalOperator>(E)) {
2519 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2520 CheckConditionalOperator(S, CO, T);
2521 return;
2522 }
2523
2524 // Go ahead and check any implicit conversions we might have skipped.
2525 // The non-canonical typecheck is just an optimization;
2526 // CheckImplicitConversion will filter out dead implicit conversions.
2527 if (E->getType() != T)
2528 CheckImplicitConversion(S, E, T);
2529
2530 // Now continue drilling into this expression.
2531
2532 // Skip past explicit casts.
2533 if (isa<ExplicitCastExpr>(E)) {
2534 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2535 return AnalyzeImplicitConversions(S, E);
2536 }
2537
2538 // Do a somewhat different check with comparison operators.
2539 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2540 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2541
2542 // These break the otherwise-useful invariant below. Fortunately,
2543 // we don't really need to recurse into them, because any internal
2544 // expressions should have been analyzed already when they were
2545 // built into statements.
2546 if (isa<StmtExpr>(E)) return;
2547
2548 // Don't descend into unevaluated contexts.
2549 if (isa<SizeOfAlignOfExpr>(E)) return;
2550
2551 // Now just recurse over the expression's children.
2552 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2553 I != IE; ++I)
2554 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2555}
2556
2557} // end anonymous namespace
2558
2559/// Diagnoses "dangerous" implicit conversions within the given
2560/// expression (which is a full expression). Implements -Wconversion
2561/// and -Wsign-compare.
2562void Sema::CheckImplicitConversions(Expr *E) {
2563 // Don't diagnose in unevaluated contexts.
2564 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2565 return;
2566
2567 // Don't diagnose for value- or type-dependent expressions.
2568 if (E->isTypeDependent() || E->isValueDependent())
2569 return;
2570
2571 AnalyzeImplicitConversions(*this, E);
2572}
2573
Mike Stump0c2ec772010-01-21 03:59:47 +00002574/// CheckParmsForFunctionDef - Check that the parameters of the given
2575/// function are appropriate for the definition of a function. This
2576/// takes care of any checks that cannot be performed on the
2577/// declaration itself, e.g., that the types of each of the function
2578/// parameters are complete.
2579bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2580 bool HasInvalidParm = false;
2581 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2582 ParmVarDecl *Param = FD->getParamDecl(p);
2583
2584 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2585 // function declarator that is part of a function definition of
2586 // that function shall not have incomplete type.
2587 //
2588 // This is also C++ [dcl.fct]p6.
2589 if (!Param->isInvalidDecl() &&
2590 RequireCompleteType(Param->getLocation(), Param->getType(),
2591 diag::err_typecheck_decl_incomplete_type)) {
2592 Param->setInvalidDecl();
2593 HasInvalidParm = true;
2594 }
2595
2596 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2597 // declaration of each parameter shall include an identifier.
2598 if (Param->getIdentifier() == 0 &&
2599 !Param->isImplicit() &&
2600 !getLangOptions().CPlusPlus)
2601 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigdeb55d52010-02-01 05:02:49 +00002602
2603 // C99 6.7.5.3p12:
2604 // If the function declarator is not part of a definition of that
2605 // function, parameters may have incomplete type and may use the [*]
2606 // notation in their sequences of declarator specifiers to specify
2607 // variable length array types.
2608 QualType PType = Param->getOriginalType();
2609 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2610 if (AT->getSizeModifier() == ArrayType::Star) {
2611 // FIXME: This diagnosic should point the the '[*]' if source-location
2612 // information is added for it.
2613 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2614 }
2615 }
Mike Stump0c2ec772010-01-21 03:59:47 +00002616 }
2617
2618 return HasInvalidParm;
2619}