blob: 6a818bd5757e39ddfd3a652f822fbe2ec922d4a4 [file] [log] [blame]
Chris Lattner59907c42007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner59907c42007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump1eb44332009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattner59907c42007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Sema.h"
Ted Kremeneke0e53132010-01-28 23:39:18 +000016#include "clang/Analysis/Analyses/PrintfFormatString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000017#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000018#include "clang/AST/CharUnits.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000020#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000021#include "clang/AST/ExprObjC.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000022#include "clang/AST/DeclObjC.h"
23#include "clang/AST/StmtCXX.h"
24#include "clang/AST/StmtObjC.h"
Chris Lattner719e6152009-02-18 19:21:10 +000025#include "clang/Lex/LiteralSupport.h"
Chris Lattner59907c42007-08-10 20:18:51 +000026#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000027#include "llvm/ADT/BitVector.h"
28#include "llvm/ADT/STLExtras.h"
Nate Begeman0d15c532010-06-13 04:47:52 +000029#include "llvm/ADT/StringExtras.h"
Tom Care3bfc5f42010-06-09 04:11:11 +000030#include "llvm/Support/raw_ostream.h"
Eric Christopher691ebc32010-04-17 02:26:23 +000031#include "clang/Basic/TargetBuiltins.h"
Nate Begeman26a31422010-06-08 02:47:44 +000032#include "clang/Basic/TargetInfo.h"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000033#include <limits>
Chris Lattner59907c42007-08-10 20:18:51 +000034using namespace clang;
35
Chris Lattner60800082009-02-18 17:49:48 +000036/// getLocationOfStringLiteralByte - Return a source location that points to the
37/// specified byte of the specified string literal.
38///
39/// Strings are amazingly complex. They can be formed from multiple tokens and
40/// can have escape sequences in them in addition to the usual trigraph and
41/// escaped newline business. This routine handles this complexity.
42///
43SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
44 unsigned ByteNo) const {
45 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000046
Chris Lattner60800082009-02-18 17:49:48 +000047 // Loop over all of the tokens in this string until we find the one that
48 // contains the byte we're looking for.
49 unsigned TokNo = 0;
50 while (1) {
51 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
52 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000053
Chris Lattner60800082009-02-18 17:49:48 +000054 // Get the spelling of the string so that we can get the data that makes up
55 // the string literal, not the identifier for the macro it is potentially
56 // expanded through.
57 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
58
59 // Re-lex the token to get its length and original spelling.
60 std::pair<FileID, unsigned> LocInfo =
61 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregorf715ca12010-03-16 00:06:06 +000062 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000063 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +000064 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000065 return StrTokSpellingLoc;
66
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000067 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner60800082009-02-18 17:49:48 +000069 // Create a langops struct and enable trigraphs. This is sufficient for
70 // relexing tokens.
71 LangOptions LangOpts;
72 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattner60800082009-02-18 17:49:48 +000074 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000075 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
76 Buffer.end());
Chris Lattner60800082009-02-18 17:49:48 +000077 Token TheTok;
78 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner443e53c2009-02-18 19:26:42 +000080 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregorb90f4b32010-05-26 05:35:51 +000081 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner443e53c2009-02-18 19:26:42 +000082 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000083
Chris Lattner2197c962009-02-18 18:52:52 +000084 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000085 if (ByteNo < TokNumBytes ||
86 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000087 unsigned Offset =
Douglas Gregorb90f4b32010-05-26 05:35:51 +000088 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
89 /*Complain=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +000090
Chris Lattner719e6152009-02-18 19:21:10 +000091 // Now that we know the offset of the token in the spelling, use the
92 // preprocessor to get the offset in the original source.
93 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Chris Lattner60800082009-02-18 17:49:48 +000096 // Move to the next string token.
97 ++TokNo;
98 ByteNo -= TokNumBytes;
99 }
100}
101
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000102/// CheckablePrintfAttr - does a function call have a "printf" attribute
103/// and arguments that merit checking?
104bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
105 if (Format->getType() == "printf") return true;
106 if (Format->getType() == "printf0") {
107 // printf0 allows null "format" string; if so don't check format/args
108 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000109 // Does the index refer to the implicit object argument?
110 if (isa<CXXMemberCallExpr>(TheCall)) {
111 if (format_idx == 0)
112 return false;
113 --format_idx;
114 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000115 if (format_idx < TheCall->getNumArgs()) {
116 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekefaff192010-02-27 01:41:03 +0000117 if (!Format->isNullPointerConstant(Context,
118 Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000119 return true;
120 }
121 }
122 return false;
123}
Chris Lattner60800082009-02-18 17:49:48 +0000124
Sebastian Redl0eb23302009-01-19 00:08:26 +0000125Action::OwningExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000126Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redl0eb23302009-01-19 00:08:26 +0000127 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000128
Anders Carlssond406bf02009-08-16 01:56:34 +0000129 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000130 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000131 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000132 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000133 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000134 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000135 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000136 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000137 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000138 if (SemaBuiltinVAStart(TheCall))
139 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000140 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000141 case Builtin::BI__builtin_isgreater:
142 case Builtin::BI__builtin_isgreaterequal:
143 case Builtin::BI__builtin_isless:
144 case Builtin::BI__builtin_islessequal:
145 case Builtin::BI__builtin_islessgreater:
146 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000147 if (SemaBuiltinUnorderedCompare(TheCall))
148 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000149 break;
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000150 case Builtin::BI__builtin_fpclassify:
151 if (SemaBuiltinFPClassification(TheCall, 6))
152 return ExprError();
153 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000154 case Builtin::BI__builtin_isfinite:
155 case Builtin::BI__builtin_isinf:
156 case Builtin::BI__builtin_isinf_sign:
157 case Builtin::BI__builtin_isnan:
158 case Builtin::BI__builtin_isnormal:
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000159 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman9ac6f622009-08-31 20:06:00 +0000160 return ExprError();
161 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000162 case Builtin::BI__builtin_return_address:
Eric Christopher691ebc32010-04-17 02:26:23 +0000163 case Builtin::BI__builtin_frame_address: {
164 llvm::APSInt Result;
165 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000166 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000167 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000168 }
169 case Builtin::BI__builtin_eh_return_data_regno: {
170 llvm::APSInt Result;
171 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattner21fb98e2009-09-23 06:06:36 +0000172 return ExprError();
173 break;
Eric Christopher691ebc32010-04-17 02:26:23 +0000174 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000175 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000176 return SemaBuiltinShuffleVector(TheCall);
177 // TheCall will be freed by the smart pointer here, but that's fine, since
178 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000179 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000180 if (SemaBuiltinPrefetch(TheCall))
181 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000182 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000183 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000184 if (SemaBuiltinObjectSize(TheCall))
185 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000186 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000187 case Builtin::BI__builtin_longjmp:
188 if (SemaBuiltinLongjmp(TheCall))
189 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000190 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000191 case Builtin::BI__sync_fetch_and_add:
192 case Builtin::BI__sync_fetch_and_sub:
193 case Builtin::BI__sync_fetch_and_or:
194 case Builtin::BI__sync_fetch_and_and:
195 case Builtin::BI__sync_fetch_and_xor:
196 case Builtin::BI__sync_add_and_fetch:
197 case Builtin::BI__sync_sub_and_fetch:
198 case Builtin::BI__sync_and_and_fetch:
199 case Builtin::BI__sync_or_and_fetch:
200 case Builtin::BI__sync_xor_and_fetch:
201 case Builtin::BI__sync_val_compare_and_swap:
202 case Builtin::BI__sync_bool_compare_and_swap:
203 case Builtin::BI__sync_lock_test_and_set:
204 case Builtin::BI__sync_lock_release:
Chandler Carruthd2014572010-07-09 18:59:35 +0000205 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman26a31422010-06-08 02:47:44 +0000206 }
207
208 // Since the target specific builtins for each arch overlap, only check those
209 // of the arch we are compiling for.
210 if (BuiltinID >= Builtin::FirstTSBuiltin) {
211 switch (Context.Target.getTriple().getArch()) {
212 case llvm::Triple::arm:
213 case llvm::Triple::thumb:
214 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
215 return ExprError();
216 break;
217 case llvm::Triple::x86:
218 case llvm::Triple::x86_64:
219 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
220 return ExprError();
221 break;
222 default:
223 break;
224 }
225 }
226
227 return move(TheCallResult);
228}
229
230bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
231 switch (BuiltinID) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000232 case X86::BI__builtin_ia32_palignr128:
233 case X86::BI__builtin_ia32_palignr: {
234 llvm::APSInt Result;
235 if (SemaBuiltinConstantArg(TheCall, 2, Result))
Nate Begeman26a31422010-06-08 02:47:44 +0000236 return true;
Eric Christopher691ebc32010-04-17 02:26:23 +0000237 break;
238 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000239 }
Nate Begeman26a31422010-06-08 02:47:44 +0000240 return false;
241}
Mike Stump1eb44332009-09-09 15:08:12 +0000242
Nate Begeman61eecf52010-06-14 05:21:25 +0000243// Get the valid immediate range for the specified NEON type code.
244static unsigned RFT(unsigned t, bool shift = false) {
245 bool quad = t & 0x10;
246
247 switch (t & 0x7) {
248 case 0: // i8
Nate Begemand69ec162010-06-17 02:26:59 +0000249 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000250 case 1: // i16
Nate Begemand69ec162010-06-17 02:26:59 +0000251 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000252 case 2: // i32
Nate Begemand69ec162010-06-17 02:26:59 +0000253 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000254 case 3: // i64
Nate Begemand69ec162010-06-17 02:26:59 +0000255 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000256 case 4: // f32
257 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000258 return (2 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000259 case 5: // poly8
260 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000261 return (8 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000262 case 6: // poly16
263 assert(!shift && "cannot shift polynomial types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000264 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000265 case 7: // float16
266 assert(!shift && "cannot shift float types!");
Nate Begemand69ec162010-06-17 02:26:59 +0000267 return (4 << (int)quad) - 1;
Nate Begeman61eecf52010-06-14 05:21:25 +0000268 }
269 return 0;
270}
271
Nate Begeman26a31422010-06-08 02:47:44 +0000272bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000273 llvm::APSInt Result;
274
Nate Begeman0d15c532010-06-13 04:47:52 +0000275 unsigned mask = 0;
Nate Begeman61eecf52010-06-14 05:21:25 +0000276 unsigned TV = 0;
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000277 switch (BuiltinID) {
Nate Begemana23326b2010-06-17 04:17:01 +0000278#define GET_NEON_OVERLOAD_CHECK
279#include "clang/Basic/arm_neon.inc"
280#undef GET_NEON_OVERLOAD_CHECK
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000281 }
282
Nate Begeman0d15c532010-06-13 04:47:52 +0000283 // For NEON intrinsics which are overloaded on vector element type, validate
284 // the immediate which specifies which variant to emit.
285 if (mask) {
286 unsigned ArgNo = TheCall->getNumArgs()-1;
287 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
288 return true;
289
Nate Begeman61eecf52010-06-14 05:21:25 +0000290 TV = Result.getLimitedValue(32);
291 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begeman0d15c532010-06-13 04:47:52 +0000292 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
293 << TheCall->getArg(ArgNo)->getSourceRange();
294 }
Nate Begeman1c2a88c2010-06-09 01:10:23 +0000295
Nate Begeman0d15c532010-06-13 04:47:52 +0000296 // For NEON intrinsics which take an immediate value as part of the
297 // instruction, range check them here.
Nate Begeman61eecf52010-06-14 05:21:25 +0000298 unsigned i = 0, l = 0, u = 0;
Nate Begeman0d15c532010-06-13 04:47:52 +0000299 switch (BuiltinID) {
300 default: return false;
Nate Begemana23326b2010-06-17 04:17:01 +0000301#define GET_NEON_IMMEDIATE_CHECK
302#include "clang/Basic/arm_neon.inc"
303#undef GET_NEON_IMMEDIATE_CHECK
Nate Begeman0d15c532010-06-13 04:47:52 +0000304 };
305
Nate Begeman61eecf52010-06-14 05:21:25 +0000306 // Check that the immediate argument is actually a constant.
Nate Begeman0d15c532010-06-13 04:47:52 +0000307 if (SemaBuiltinConstantArg(TheCall, i, Result))
308 return true;
309
Nate Begeman61eecf52010-06-14 05:21:25 +0000310 // Range check against the upper/lower values for this isntruction.
Nate Begeman0d15c532010-06-13 04:47:52 +0000311 unsigned Val = Result.getZExtValue();
Nate Begeman61eecf52010-06-14 05:21:25 +0000312 if (Val < l || Val > (u + l))
Nate Begeman0d15c532010-06-13 04:47:52 +0000313 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Nate Begeman61eecf52010-06-14 05:21:25 +0000314 << llvm::utostr(l) << llvm::utostr(u+l)
315 << TheCall->getArg(i)->getSourceRange();
Nate Begeman0d15c532010-06-13 04:47:52 +0000316
Nate Begeman26a31422010-06-08 02:47:44 +0000317 return false;
Anders Carlssond406bf02009-08-16 01:56:34 +0000318}
Daniel Dunbarde454282008-10-02 18:44:07 +0000319
Anders Carlssond406bf02009-08-16 01:56:34 +0000320/// CheckFunctionCall - Check a direct function call for various correctness
321/// and safety properties not strictly enforced by the C type system.
322bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
323 // Get the IdentifierInfo* for the called function.
324 IdentifierInfo *FnInfo = FDecl->getIdentifier();
325
326 // None of the checks below are needed for functions that don't have
327 // simple names (e.g., C++ conversion functions).
328 if (!FnInfo)
329 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Daniel Dunbarde454282008-10-02 18:44:07 +0000331 // FIXME: This mechanism should be abstracted to be less fragile and
332 // more efficient. For example, just map function ids to custom
333 // handlers.
334
Chris Lattner59907c42007-08-10 20:18:51 +0000335 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000336 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000337 if (CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000338 bool HasVAListArg = Format->getFirstArg() == 0;
Douglas Gregor3c385e52009-02-14 18:57:46 +0000339 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
Ted Kremenek3d692df2009-02-27 17:58:43 +0000340 HasVAListArg ? 0 : Format->getFirstArg() - 1);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000341 }
Chris Lattner59907c42007-08-10 20:18:51 +0000342 }
Mike Stump1eb44332009-09-09 15:08:12 +0000343
344 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssond406bf02009-08-16 01:56:34 +0000345 NonNull = NonNull->getNext<NonNullAttr>())
346 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000347
Anders Carlssond406bf02009-08-16 01:56:34 +0000348 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000349}
350
Anders Carlssond406bf02009-08-16 01:56:34 +0000351bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000352 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000353 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000354 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000355 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000357 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
358 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000359 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000361 QualType Ty = V->getType();
362 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000363 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Anders Carlssond406bf02009-08-16 01:56:34 +0000365 if (!CheckablePrintfAttr(Format, TheCall))
366 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Anders Carlssond406bf02009-08-16 01:56:34 +0000368 bool HasVAListArg = Format->getFirstArg() == 0;
Anders Carlssond406bf02009-08-16 01:56:34 +0000369 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
370 HasVAListArg ? 0 : Format->getFirstArg() - 1);
371
372 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000373}
374
Chris Lattner5caa3702009-05-08 06:58:22 +0000375/// SemaBuiltinAtomicOverloaded - We have a call to a function like
376/// __sync_fetch_and_add, which is an overloaded function based on the pointer
377/// type of its first argument. The main ActOnCallExpr routines have already
378/// promoted the types of arguments because all of these calls are prototyped as
379/// void(...).
380///
381/// This function goes through and does final semantic checking for these
382/// builtins,
Chandler Carruthd2014572010-07-09 18:59:35 +0000383Sema::OwningExprResult
384Sema::SemaBuiltinAtomicOverloaded(OwningExprResult TheCallResult) {
385 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattner5caa3702009-05-08 06:58:22 +0000386 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.
Chandler Carruthd2014572010-07-09 18:59:35 +0000390 if (TheCall->getNumArgs() < 1) {
391 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
392 << 0 << 1 << TheCall->getNumArgs()
393 << TheCall->getCallee()->getSourceRange();
394 return ExprError();
395 }
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Chris Lattner5caa3702009-05-08 06:58:22 +0000397 // Inspect the first argument of the atomic builtin. This should always be
398 // a pointer type, whose element is an integral scalar or pointer type.
399 // Because it is a pointer type, we don't have to worry about any implicit
400 // casts here.
Chandler Carruthd2014572010-07-09 18:59:35 +0000401 // FIXME: We don't allow floating point scalars as input.
Chris Lattner5caa3702009-05-08 06:58:22 +0000402 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruthd2014572010-07-09 18:59:35 +0000403 if (!FirstArg->getType()->isPointerType()) {
404 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
405 << FirstArg->getType() << FirstArg->getSourceRange();
406 return ExprError();
407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chandler Carruthd2014572010-07-09 18:59:35 +0000409 QualType ValType =
410 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000411 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruthd2014572010-07-09 18:59:35 +0000412 !ValType->isBlockPointerType()) {
413 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
414 << FirstArg->getType() << FirstArg->getSourceRange();
415 return ExprError();
416 }
Chris Lattner5caa3702009-05-08 06:58:22 +0000417
418 // We need to figure out which concrete builtin this maps onto. For example,
419 // __sync_fetch_and_add with a 2 byte object turns into
420 // __sync_fetch_and_add_2.
421#define BUILTIN_ROW(x) \
422 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
423 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chris Lattner5caa3702009-05-08 06:58:22 +0000425 static const unsigned BuiltinIndices[][5] = {
426 BUILTIN_ROW(__sync_fetch_and_add),
427 BUILTIN_ROW(__sync_fetch_and_sub),
428 BUILTIN_ROW(__sync_fetch_and_or),
429 BUILTIN_ROW(__sync_fetch_and_and),
430 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Chris Lattner5caa3702009-05-08 06:58:22 +0000432 BUILTIN_ROW(__sync_add_and_fetch),
433 BUILTIN_ROW(__sync_sub_and_fetch),
434 BUILTIN_ROW(__sync_and_and_fetch),
435 BUILTIN_ROW(__sync_or_and_fetch),
436 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Chris Lattner5caa3702009-05-08 06:58:22 +0000438 BUILTIN_ROW(__sync_val_compare_and_swap),
439 BUILTIN_ROW(__sync_bool_compare_and_swap),
440 BUILTIN_ROW(__sync_lock_test_and_set),
441 BUILTIN_ROW(__sync_lock_release)
442 };
Mike Stump1eb44332009-09-09 15:08:12 +0000443#undef BUILTIN_ROW
444
Chris Lattner5caa3702009-05-08 06:58:22 +0000445 // Determine the index of the size.
446 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000447 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000448 case 1: SizeIndex = 0; break;
449 case 2: SizeIndex = 1; break;
450 case 4: SizeIndex = 2; break;
451 case 8: SizeIndex = 3; break;
452 case 16: SizeIndex = 4; break;
453 default:
Chandler Carruthd2014572010-07-09 18:59:35 +0000454 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
455 << FirstArg->getType() << FirstArg->getSourceRange();
456 return ExprError();
Chris Lattner5caa3702009-05-08 06:58:22 +0000457 }
Mike Stump1eb44332009-09-09 15:08:12 +0000458
Chris Lattner5caa3702009-05-08 06:58:22 +0000459 // Each of these builtins has one pointer argument, followed by some number of
460 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
461 // that we ignore. Find out which row of BuiltinIndices to read from as well
462 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000463 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000464 unsigned BuiltinIndex, NumFixed = 1;
465 switch (BuiltinID) {
466 default: assert(0 && "Unknown overloaded atomic builtin!");
467 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
468 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
469 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
470 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
471 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000473 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
474 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
475 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
476 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
477 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Chris Lattner5caa3702009-05-08 06:58:22 +0000479 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000480 BuiltinIndex = 10;
Chris Lattner5caa3702009-05-08 06:58:22 +0000481 NumFixed = 2;
482 break;
483 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000484 BuiltinIndex = 11;
Chris Lattner5caa3702009-05-08 06:58:22 +0000485 NumFixed = 2;
486 break;
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000487 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000488 case Builtin::BI__sync_lock_release:
Daniel Dunbar7eff7c42010-03-25 17:13:09 +0000489 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000490 NumFixed = 0;
491 break;
492 }
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Chris Lattner5caa3702009-05-08 06:58:22 +0000494 // Now that we know how many fixed arguments we expect, first check that we
495 // have at least that many.
Chandler Carruthd2014572010-07-09 18:59:35 +0000496 if (TheCall->getNumArgs() < 1+NumFixed) {
497 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
498 << 0 << 1+NumFixed << TheCall->getNumArgs()
499 << TheCall->getCallee()->getSourceRange();
500 return ExprError();
501 }
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000503 // Get the decl for the concrete builtin from this, we can tell what the
504 // concrete integer type we should convert to is.
505 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
506 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
507 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000508 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000509 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
510 TUScope, false, DRE->getLocStart()));
511 const FunctionProtoType *BuiltinFT =
John McCall183700f2009-09-21 23:43:11 +0000512 NewBuiltinDecl->getType()->getAs<FunctionProtoType>();
Chandler Carruthd2014572010-07-09 18:59:35 +0000513
514 QualType OrigValType = ValType;
Ted Kremenek6217b802009-07-29 21:53:49 +0000515 ValType = BuiltinFT->getArgType(0)->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000516
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000517 // If the first type needs to be converted (e.g. void** -> int*), do it now.
518 if (BuiltinFT->getArgType(0) != FirstArg->getType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +0000519 ImpCastExprToType(FirstArg, BuiltinFT->getArgType(0), CastExpr::CK_BitCast);
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000520 TheCall->setArg(0, FirstArg);
521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Chris Lattner5caa3702009-05-08 06:58:22 +0000523 // Next, walk the valid ones promoting to the right type.
524 for (unsigned i = 0; i != NumFixed; ++i) {
525 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Chris Lattner5caa3702009-05-08 06:58:22 +0000527 // If the argument is an implicit cast, then there was a promotion due to
528 // "...", just remove it now.
529 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
530 Arg = ICE->getSubExpr();
531 ICE->setSubExpr(0);
532 ICE->Destroy(Context);
533 TheCall->setArg(i+1, Arg);
534 }
Mike Stump1eb44332009-09-09 15:08:12 +0000535
Chris Lattner5caa3702009-05-08 06:58:22 +0000536 // GCC does an implicit conversion to the pointer or integer ValType. This
537 // can fail in some cases (1i -> int**), check for this error case now.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000538 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000539 CXXBaseSpecifierArray BasePath;
540 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruthd2014572010-07-09 18:59:35 +0000541 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Chris Lattner5caa3702009-05-08 06:58:22 +0000543 // Okay, we have something that *can* be converted to the right type. Check
544 // to see if there is a potentially weird extension going on here. This can
545 // happen when you do an atomic operation on something like an char* and
546 // pass in 42. The 42 gets converted to char. This is even more strange
547 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000548 // FIXME: Do this check.
Anders Carlsson80971bd2010-04-24 16:36:20 +0000549 ImpCastExprToType(Arg, ValType, Kind);
Chris Lattner5caa3702009-05-08 06:58:22 +0000550 TheCall->setArg(i+1, Arg);
551 }
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattner5caa3702009-05-08 06:58:22 +0000553 // Switch the DeclRefExpr to refer to the new decl.
554 DRE->setDecl(NewBuiltinDecl);
555 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Chris Lattner5caa3702009-05-08 06:58:22 +0000557 // Set the callee in the CallExpr.
558 // FIXME: This leaks the original parens and implicit casts.
559 Expr *PromotedCall = DRE;
560 UsualUnaryConversions(PromotedCall);
561 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Chris Lattner5caa3702009-05-08 06:58:22 +0000563 // Change the result type of the call to match the result type of the decl.
564 TheCall->setType(NewBuiltinDecl->getResultType());
Chandler Carruthd2014572010-07-09 18:59:35 +0000565
566 // If the value type was converted to an integer when processing the
567 // arguments (e.g. void* -> int), we need to convert the result back.
568 if (!Context.hasSameUnqualifiedType(ValType, OrigValType)) {
569 Expr *E = TheCallResult.takeAs<Expr>();
570
571 assert(ValType->isIntegerType() &&
572 "We always convert atomic operation values to integers.");
573 CastExpr::CastKind Kind;
574 if (OrigValType->isIntegerType())
575 Kind = CastExpr::CK_IntegralCast;
576 else if (OrigValType->hasPointerRepresentation())
577 Kind = CastExpr::CK_IntegralToPointer;
578 else if (OrigValType->isRealFloatingType())
579 Kind = CastExpr::CK_IntegralToFloating;
580 else
581 llvm_unreachable("Unhandled original value type!");
582
583 ImpCastExprToType(E, OrigValType, Kind);
584 return Owned(E);
585 }
586
587 return move(TheCallResult);
Chris Lattner5caa3702009-05-08 06:58:22 +0000588}
589
590
Chris Lattner69039812009-02-18 06:01:06 +0000591/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000592/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000593/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000594/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000595/// belong to the input codeset UTF-8"
596/// Note: It might also make sense to do the UTF-16 conversion here (would
597/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000598bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000599 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000600 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
601
602 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000603 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
604 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000605 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000606 }
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Daniel Dunbarf015b032009-09-22 10:03:52 +0000608 const char *Data = Literal->getStrData();
609 unsigned Length = Literal->getByteLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000610
Daniel Dunbarf015b032009-09-22 10:03:52 +0000611 for (unsigned i = 0; i < Length; ++i) {
612 if (!Data[i]) {
613 Diag(getLocationOfStringLiteralByte(Literal, i),
614 diag::warn_cfstring_literal_contains_nul_character)
615 << Arg->getSourceRange();
616 break;
617 }
618 }
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000620 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000621}
622
Chris Lattnerc27c6652007-12-20 00:05:45 +0000623/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
624/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000625bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
626 Expr *Fn = TheCall->getCallee();
627 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000628 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000629 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000630 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
631 << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000632 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000633 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000634 return true;
635 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000636
637 if (TheCall->getNumArgs() < 2) {
Eric Christopherd77b9a22010-04-16 04:48:22 +0000638 return Diag(TheCall->getLocEnd(),
639 diag::err_typecheck_call_too_few_args_at_least)
640 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000641 }
642
Chris Lattnerc27c6652007-12-20 00:05:45 +0000643 // Determine whether the current function is variadic or not.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000644 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnerc27c6652007-12-20 00:05:45 +0000645 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000646 if (CurBlock)
John McCallc71a4912010-06-04 19:02:56 +0000647 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek9498d382010-04-29 16:49:01 +0000648 else if (FunctionDecl *FD = getCurFunctionDecl())
649 isVariadic = FD->isVariadic();
650 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000651 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Chris Lattnerc27c6652007-12-20 00:05:45 +0000653 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000654 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
655 return true;
656 }
Mike Stump1eb44332009-09-09 15:08:12 +0000657
Chris Lattner30ce3442007-12-19 23:59:04 +0000658 // Verify that the second argument to the builtin is the last argument of the
659 // current function or method.
660 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000661 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Anders Carlsson88cf2262008-02-11 04:20:54 +0000663 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
664 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000665 // FIXME: This isn't correct for methods (results in bogus warning).
666 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000667 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000668 if (CurBlock)
669 LastArg = *(CurBlock->TheDecl->param_end()-1);
670 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000671 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000672 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000673 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000674 SecondArgIsLastNamedArgument = PV == LastArg;
675 }
676 }
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Chris Lattner30ce3442007-12-19 23:59:04 +0000678 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000679 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000680 diag::warn_second_parameter_of_va_start_not_last_named_argument);
681 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000682}
Chris Lattner30ce3442007-12-19 23:59:04 +0000683
Chris Lattner1b9a0792007-12-20 00:26:33 +0000684/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
685/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000686bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
687 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000688 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000689 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000690 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000691 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000692 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000693 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000694 << SourceRange(TheCall->getArg(2)->getLocStart(),
695 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000696
Chris Lattner925e60d2007-12-28 05:29:59 +0000697 Expr *OrigArg0 = TheCall->getArg(0);
698 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000699
Chris Lattner1b9a0792007-12-20 00:26:33 +0000700 // Do standard promotions between the two arguments, returning their common
701 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000702 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000703
704 // Make sure any conversions are pushed back into the call; this is
705 // type safe since unordered compare builtins are declared as "_Bool
706 // foo(...)".
707 TheCall->setArg(0, OrigArg0);
708 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000709
Douglas Gregorcde01732009-05-19 22:10:17 +0000710 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
711 return false;
712
Chris Lattner1b9a0792007-12-20 00:26:33 +0000713 // If the common type isn't a real floating type, then the arguments were
714 // invalid for this operation.
715 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000716 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000717 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000718 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000719 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Chris Lattner1b9a0792007-12-20 00:26:33 +0000721 return false;
722}
723
Benjamin Kramere771a7a2010-02-15 22:42:31 +0000724/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
725/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000726/// to check everything. We expect the last argument to be a floating point
727/// value.
728bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
729 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman9ac6f622009-08-31 20:06:00 +0000730 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherd77b9a22010-04-16 04:48:22 +0000731 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000732 if (TheCall->getNumArgs() > NumArgs)
733 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000734 diag::err_typecheck_call_too_many_args)
Eric Christopherccfa9632010-04-16 04:56:46 +0000735 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000736 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000737 (*(TheCall->arg_end()-1))->getLocEnd());
738
Benjamin Kramer3b1e26b2010-02-16 10:07:31 +0000739 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000740
Eli Friedman9ac6f622009-08-31 20:06:00 +0000741 if (OrigArg->isTypeDependent())
742 return false;
743
Chris Lattner81368fb2010-05-06 05:50:07 +0000744 // This operation requires a non-_Complex floating-point number.
Eli Friedman9ac6f622009-08-31 20:06:00 +0000745 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000746 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000747 diag::err_typecheck_call_invalid_unary_fp)
748 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000749
Chris Lattner81368fb2010-05-06 05:50:07 +0000750 // If this is an implicit conversion from float -> double, remove it.
751 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
752 Expr *CastArg = Cast->getSubExpr();
753 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
754 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
755 "promotion from float to double is the only expected cast here");
756 Cast->setSubExpr(0);
757 Cast->Destroy(Context);
758 TheCall->setArg(NumArgs-1, CastArg);
759 OrigArg = CastArg;
760 }
761 }
762
Eli Friedman9ac6f622009-08-31 20:06:00 +0000763 return false;
764}
765
Eli Friedmand38617c2008-05-14 19:38:39 +0000766/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
767// This is declared to take (...), so we have to check everything.
Sebastian Redl0eb23302009-01-19 00:08:26 +0000768Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000769 if (TheCall->getNumArgs() < 2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000770 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherd77b9a22010-04-16 04:48:22 +0000771 diag::err_typecheck_call_too_few_args_at_least)
Nate Begeman37b6a572010-06-08 00:16:34 +0000772 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherd77b9a22010-04-16 04:48:22 +0000773 << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000774
Nate Begeman37b6a572010-06-08 00:16:34 +0000775 // Determine which of the following types of shufflevector we're checking:
776 // 1) unary, vector mask: (lhs, mask)
777 // 2) binary, vector mask: (lhs, rhs, mask)
778 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
779 QualType resType = TheCall->getArg(0)->getType();
780 unsigned numElements = 0;
781
Douglas Gregorcde01732009-05-19 22:10:17 +0000782 if (!TheCall->getArg(0)->isTypeDependent() &&
783 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begeman37b6a572010-06-08 00:16:34 +0000784 QualType LHSType = TheCall->getArg(0)->getType();
785 QualType RHSType = TheCall->getArg(1)->getType();
786
787 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000788 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000789 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000790 TheCall->getArg(1)->getLocEnd());
791 return ExprError();
792 }
Nate Begeman37b6a572010-06-08 00:16:34 +0000793
794 numElements = LHSType->getAs<VectorType>()->getNumElements();
795 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000796
Nate Begeman37b6a572010-06-08 00:16:34 +0000797 // Check to see if we have a call with 2 vector arguments, the unary shuffle
798 // with mask. If so, verify that RHS is an integer vector type with the
799 // same number of elts as lhs.
800 if (TheCall->getNumArgs() == 2) {
801 if (!RHSType->isIntegerType() ||
802 RHSType->getAs<VectorType>()->getNumElements() != numElements)
803 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
804 << SourceRange(TheCall->getArg(1)->getLocStart(),
805 TheCall->getArg(1)->getLocEnd());
806 numResElements = numElements;
807 }
808 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000809 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000810 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000811 TheCall->getArg(1)->getLocEnd());
812 return ExprError();
Nate Begeman37b6a572010-06-08 00:16:34 +0000813 } else if (numElements != numResElements) {
814 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner788b0fd2010-06-23 06:00:24 +0000815 resType = Context.getVectorType(eltType, numResElements,
816 VectorType::NotAltiVec);
Douglas Gregorcde01732009-05-19 22:10:17 +0000817 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000818 }
819
820 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000821 if (TheCall->getArg(i)->isTypeDependent() ||
822 TheCall->getArg(i)->isValueDependent())
823 continue;
824
Nate Begeman37b6a572010-06-08 00:16:34 +0000825 llvm::APSInt Result(32);
826 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
827 return ExprError(Diag(TheCall->getLocStart(),
828 diag::err_shufflevector_nonconstant_argument)
829 << TheCall->getArg(i)->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000830
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000831 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000832 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000833 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000834 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000835 }
836
837 llvm::SmallVector<Expr*, 32> exprs;
838
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000839 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000840 exprs.push_back(TheCall->getArg(i));
841 TheCall->setArg(i, 0);
842 }
843
Nate Begemana88dc302009-08-12 02:10:25 +0000844 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begeman37b6a572010-06-08 00:16:34 +0000845 exprs.size(), resType,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000846 TheCall->getCallee()->getLocStart(),
847 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000848}
Chris Lattner30ce3442007-12-19 23:59:04 +0000849
Daniel Dunbar4493f792008-07-21 22:59:13 +0000850/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
851// This is declared to take (const void*, ...) and can take two
852// optional constant int args.
853bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000854 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000855
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000856 if (NumArgs > 3)
Eric Christopherccfa9632010-04-16 04:56:46 +0000857 return Diag(TheCall->getLocEnd(),
858 diag::err_typecheck_call_too_many_args_at_most)
859 << 0 /*function call*/ << 3 << NumArgs
860 << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000861
862 // Argument 0 is checked for us and the remaining arguments must be
863 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000864 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000865 Expr *Arg = TheCall->getArg(i);
Eric Christopher691ebc32010-04-17 02:26:23 +0000866
Eli Friedman9aef7262009-12-04 00:30:06 +0000867 llvm::APSInt Result;
Eric Christopher691ebc32010-04-17 02:26:23 +0000868 if (SemaBuiltinConstantArg(TheCall, i, Result))
869 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000870
Daniel Dunbar4493f792008-07-21 22:59:13 +0000871 // FIXME: gcc issues a warning and rewrites these to 0. These
872 // seems especially odd for the third argument since the default
873 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000874 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000875 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000876 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000877 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000878 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000879 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000880 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000881 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000882 }
883 }
884
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000885 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000886}
887
Eric Christopher691ebc32010-04-17 02:26:23 +0000888/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
889/// TheCall is a constant expression.
890bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
891 llvm::APSInt &Result) {
892 Expr *Arg = TheCall->getArg(ArgNum);
893 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
894 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
895
896 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
897
898 if (!Arg->isIntegerConstantExpr(Result, Context))
899 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher5e896552010-04-19 18:23:02 +0000900 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher691ebc32010-04-17 02:26:23 +0000901
Chris Lattner21fb98e2009-09-23 06:06:36 +0000902 return false;
903}
904
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000905/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
906/// int type). This simply type checks that type is one of the defined
907/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000908// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000909bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher691ebc32010-04-17 02:26:23 +0000910 llvm::APSInt Result;
911
912 // Check constant-ness first.
913 if (SemaBuiltinConstantArg(TheCall, 1, Result))
914 return true;
915
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000916 Expr *Arg = TheCall->getArg(1);
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000917 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000918 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
919 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000920 }
921
922 return false;
923}
924
Eli Friedman586d6a82009-05-03 06:04:26 +0000925/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000926/// This checks that val is a constant 1.
927bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
928 Expr *Arg = TheCall->getArg(1);
Eric Christopher691ebc32010-04-17 02:26:23 +0000929 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000930
Eric Christopher691ebc32010-04-17 02:26:23 +0000931 // TODO: This is less than ideal. Overload this to take a value.
932 if (SemaBuiltinConstantArg(TheCall, 1, Result))
933 return true;
934
935 if (Result != 1)
Eli Friedmand875fed2009-05-03 04:46:36 +0000936 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
937 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
938
939 return false;
940}
941
Ted Kremenekd30ef872009-01-12 23:09:09 +0000942// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000943bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
944 bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000945 unsigned format_idx, unsigned firstDataArg) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000946 if (E->isTypeDependent() || E->isValueDependent())
947 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000948
949 switch (E->getStmtClass()) {
950 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000951 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Chris Lattner813b70d2009-12-22 06:00:13 +0000952 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000953 HasVAListArg, format_idx, firstDataArg)
Ted Kremenekd30ef872009-01-12 23:09:09 +0000954 && SemaCheckStringLiteral(C->getRHS(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000955 HasVAListArg, format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000956 }
957
958 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000959 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000960 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000961 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000962 }
963
964 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000965 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000966 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000967 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000968 }
Mike Stump1eb44332009-09-09 15:08:12 +0000969
Ted Kremenek082d9362009-03-20 21:35:28 +0000970 case Stmt::DeclRefExprClass: {
971 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Ted Kremenek082d9362009-03-20 21:35:28 +0000973 // As an exception, do not flag errors for variables binding to
974 // const string literals.
975 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
976 bool isConstant = false;
977 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000978
Ted Kremenek082d9362009-03-20 21:35:28 +0000979 if (const ArrayType *AT = Context.getAsArrayType(T)) {
980 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000981 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000982 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000983 PT->getPointeeType().isConstant(Context);
984 }
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Ted Kremenek082d9362009-03-20 21:35:28 +0000986 if (isConstant) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000987 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenek082d9362009-03-20 21:35:28 +0000988 return SemaCheckStringLiteral(Init, TheCall,
989 HasVAListArg, format_idx, firstDataArg);
990 }
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Anders Carlssond966a552009-06-28 19:55:58 +0000992 // For vprintf* functions (i.e., HasVAListArg==true), we add a
993 // special check to see if the format string is a function parameter
994 // of the function calling the printf function. If the function
995 // has an attribute indicating it is a printf-like function, then we
996 // should suppress warnings concerning non-literals being used in a call
997 // to a vprintf function. For example:
998 //
999 // void
1000 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
1001 // va_list ap;
1002 // va_start(ap, fmt);
1003 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
1004 // ...
1005 //
1006 //
1007 // FIXME: We don't have full attribute support yet, so just check to see
1008 // if the argument is a DeclRefExpr that references a parameter. We'll
1009 // add proper support for checking the attribute later.
1010 if (HasVAListArg)
1011 if (isa<ParmVarDecl>(VD))
1012 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +00001013 }
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Ted Kremenek082d9362009-03-20 21:35:28 +00001015 return false;
1016 }
Ted Kremenekd30ef872009-01-12 23:09:09 +00001017
Anders Carlsson8f031b32009-06-27 04:05:33 +00001018 case Stmt::CallExprClass: {
1019 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001020 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +00001021 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1022 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1023 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001024 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +00001025 unsigned ArgIndex = FA->getFormatIdx();
1026 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001027
1028 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Anders Carlsson8f031b32009-06-27 04:05:33 +00001029 format_idx, firstDataArg);
1030 }
1031 }
1032 }
1033 }
Mike Stump1eb44332009-09-09 15:08:12 +00001034
Anders Carlsson8f031b32009-06-27 04:05:33 +00001035 return false;
1036 }
Ted Kremenek082d9362009-03-20 21:35:28 +00001037 case Stmt::ObjCStringLiteralClass:
1038 case Stmt::StringLiteralClass: {
1039 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Ted Kremenek082d9362009-03-20 21:35:28 +00001041 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +00001042 StrE = ObjCFExpr->getString();
1043 else
Ted Kremenek082d9362009-03-20 21:35:28 +00001044 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Ted Kremenekd30ef872009-01-12 23:09:09 +00001046 if (StrE) {
Mike Stump1eb44332009-09-09 15:08:12 +00001047 CheckPrintfString(StrE, E, TheCall, HasVAListArg, format_idx,
Douglas Gregor3c385e52009-02-14 18:57:46 +00001048 firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +00001049 return true;
1050 }
Mike Stump1eb44332009-09-09 15:08:12 +00001051
Ted Kremenekd30ef872009-01-12 23:09:09 +00001052 return false;
1053 }
Mike Stump1eb44332009-09-09 15:08:12 +00001054
Ted Kremenek082d9362009-03-20 21:35:28 +00001055 default:
1056 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +00001057 }
1058}
1059
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001060void
Mike Stump1eb44332009-09-09 15:08:12 +00001061Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1062 const CallExpr *TheCall) {
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001063 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1064 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +00001065 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001066 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00001067 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +00001068 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1069 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +00001070 }
1071}
Ted Kremenekd30ef872009-01-12 23:09:09 +00001072
Chris Lattner59907c42007-08-10 20:18:51 +00001073/// CheckPrintfArguments - Check calls to printf (and similar functions) for
Mike Stump1eb44332009-09-09 15:08:12 +00001074/// correct use of format strings.
Ted Kremenek71895b92007-08-14 17:39:48 +00001075///
1076/// HasVAListArg - A predicate indicating whether the printf-like
1077/// function is passed an explicit va_arg argument (e.g., vprintf)
1078///
1079/// format_idx - The index into Args for the format string.
1080///
1081/// Improper format strings to functions in the printf family can be
1082/// the source of bizarre bugs and very serious security holes. A
1083/// good source of information is available in the following paper
1084/// (which includes additional references):
Chris Lattner59907c42007-08-10 20:18:51 +00001085///
1086/// FormatGuard: Automatic Protection From printf Format String
1087/// Vulnerabilities, Proceedings of the 10th USENIX Security Symposium, 2001.
Ted Kremenek71895b92007-08-14 17:39:48 +00001088///
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001089/// TODO:
Ted Kremenek71895b92007-08-14 17:39:48 +00001090/// Functionality implemented:
1091///
1092/// We can statically check the following properties for string
1093/// literal format strings for non v.*printf functions (where the
1094/// arguments are passed directly):
1095//
1096/// (1) Are the number of format conversions equal to the number of
1097/// data arguments?
1098///
1099/// (2) Does each format conversion correctly match the type of the
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001100/// corresponding data argument?
Ted Kremenek71895b92007-08-14 17:39:48 +00001101///
1102/// Moreover, for all printf functions we can:
1103///
1104/// (3) Check for a missing format string (when not caught by type checking).
1105///
1106/// (4) Check for no-operation flags; e.g. using "#" with format
1107/// conversion 'c' (TODO)
1108///
1109/// (5) Check the use of '%n', a major source of security holes.
1110///
1111/// (6) Check for malformed format conversions that don't specify anything.
1112///
1113/// (7) Check for empty format strings. e.g: printf("");
1114///
1115/// (8) Check that the format string is a wide literal.
1116///
1117/// All of these checks can be done by parsing the format string.
1118///
Chris Lattner59907c42007-08-10 20:18:51 +00001119void
Mike Stump1eb44332009-09-09 15:08:12 +00001120Sema::CheckPrintfArguments(const CallExpr *TheCall, bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +00001121 unsigned format_idx, unsigned firstDataArg) {
Ted Kremenek082d9362009-03-20 21:35:28 +00001122 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +00001123
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001124 // The way the format attribute works in GCC, the implicit this argument
1125 // of member functions is counted. However, it doesn't appear in our own
1126 // lists, so decrement format_idx in that case.
1127 if (isa<CXXMemberCallExpr>(TheCall)) {
1128 // Catch a format attribute mistakenly referring to the object argument.
1129 if (format_idx == 0)
1130 return;
1131 --format_idx;
1132 if(firstDataArg != 0)
1133 --firstDataArg;
1134 }
1135
Mike Stump1eb44332009-09-09 15:08:12 +00001136 // CHECK: printf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +00001137 if (format_idx >= TheCall->getNumArgs()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001138 Diag(TheCall->getRParenLoc(), diag::warn_printf_missing_format_string)
1139 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001140 return;
1141 }
Mike Stump1eb44332009-09-09 15:08:12 +00001142
Ted Kremenek082d9362009-03-20 21:35:28 +00001143 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001144
Chris Lattner59907c42007-08-10 20:18:51 +00001145 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001146 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001147 // Dynamically generated format strings are difficult to
1148 // automatically vet at compile time. Requiring that format strings
1149 // are string literals: (1) permits the checking of format strings by
1150 // the compiler and thereby (2) can practically remove the source of
1151 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001152
Mike Stump1eb44332009-09-09 15:08:12 +00001153 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001154 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001155 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001156 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001157 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
1158 firstDataArg))
1159 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001160
Chris Lattner655f1412009-04-29 04:59:47 +00001161 // If there are no arguments specified, warn with -Wformat-security, otherwise
1162 // warn only with -Wformat-nonliteral.
1163 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001164 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001165 diag::warn_printf_nonliteral_noargs)
1166 << OrigFormatExpr->getSourceRange();
1167 else
Mike Stump1eb44332009-09-09 15:08:12 +00001168 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001169 diag::warn_printf_nonliteral)
1170 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001171}
Ted Kremenek71895b92007-08-14 17:39:48 +00001172
Ted Kremeneke0e53132010-01-28 23:39:18 +00001173namespace {
Ted Kremenek74d56a12010-02-04 20:46:58 +00001174class CheckPrintfHandler : public analyze_printf::FormatStringHandler {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001175 Sema &S;
1176 const StringLiteral *FExpr;
1177 const Expr *OrigFormatExpr;
Ted Kremenek6ee76532010-03-25 03:59:12 +00001178 const unsigned FirstDataArg;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001179 const unsigned NumDataArgs;
1180 const bool IsObjCLiteral;
1181 const char *Beg; // Start of format string.
Ted Kremenek0d277352010-01-29 01:06:55 +00001182 const bool HasVAListArg;
1183 const CallExpr *TheCall;
1184 unsigned FormatIdx;
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001185 llvm::BitVector CoveredArgs;
Ted Kremenekefaff192010-02-27 01:41:03 +00001186 bool usesPositionalArgs;
1187 bool atFirstArg;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001188public:
Ted Kremeneke0e53132010-01-28 23:39:18 +00001189 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek6ee76532010-03-25 03:59:12 +00001190 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001191 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek0d277352010-01-29 01:06:55 +00001192 const char *beg, bool hasVAListArg,
1193 const CallExpr *theCall, unsigned formatIdx)
Ted Kremeneke0e53132010-01-28 23:39:18 +00001194 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek6ee76532010-03-25 03:59:12 +00001195 FirstDataArg(firstDataArg),
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001196 NumDataArgs(numDataArgs),
Ted Kremenek0d277352010-01-29 01:06:55 +00001197 IsObjCLiteral(isObjCLiteral), Beg(beg),
1198 HasVAListArg(hasVAListArg),
Ted Kremenekefaff192010-02-27 01:41:03 +00001199 TheCall(theCall), FormatIdx(formatIdx),
1200 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001201 CoveredArgs.resize(numDataArgs);
1202 CoveredArgs.reset();
1203 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001204
Ted Kremenek07d161f2010-01-29 01:50:07 +00001205 void DoneProcessing();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001206
Ted Kremenek808015a2010-01-29 03:16:21 +00001207 void HandleIncompleteFormatSpecifier(const char *startSpecifier,
1208 unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001209
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001210 bool
Ted Kremenek74d56a12010-02-04 20:46:58 +00001211 HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1212 const char *startSpecifier,
1213 unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001214
Ted Kremenekefaff192010-02-27 01:41:03 +00001215 virtual void HandleInvalidPosition(const char *startSpecifier,
1216 unsigned specifierLen,
1217 analyze_printf::PositionContext p);
1218
1219 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1220
Ted Kremeneke0e53132010-01-28 23:39:18 +00001221 void HandleNullChar(const char *nullCharacter);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001222
Ted Kremeneke0e53132010-01-28 23:39:18 +00001223 bool HandleFormatSpecifier(const analyze_printf::FormatSpecifier &FS,
1224 const char *startSpecifier,
1225 unsigned specifierLen);
1226private:
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001227 SourceRange getFormatStringRange();
Tom Care45f9b7e2010-06-21 21:21:01 +00001228 CharSourceRange getFormatSpecifierRange(const char *startSpecifier,
1229 unsigned specifierLen);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001230 SourceLocation getLocationOfByte(const char *x);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001231
Ted Kremenekefaff192010-02-27 01:41:03 +00001232 bool HandleAmount(const analyze_printf::OptionalAmount &Amt, unsigned k,
1233 const char *startSpecifier, unsigned specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001234 void HandleInvalidAmount(const analyze_printf::FormatSpecifier &FS,
1235 const analyze_printf::OptionalAmount &Amt,
1236 unsigned type,
1237 const char *startSpecifier, unsigned specifierLen);
1238 void HandleFlag(const analyze_printf::FormatSpecifier &FS,
1239 const analyze_printf::OptionalFlag &flag,
1240 const char *startSpecifier, unsigned specifierLen);
1241 void HandleIgnoredFlag(const analyze_printf::FormatSpecifier &FS,
1242 const analyze_printf::OptionalFlag &ignoredFlag,
1243 const analyze_printf::OptionalFlag &flag,
1244 const char *startSpecifier, unsigned specifierLen);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001245
Ted Kremenek0d277352010-01-29 01:06:55 +00001246 const Expr *getDataArg(unsigned i) const;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001247};
1248}
1249
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001250SourceRange CheckPrintfHandler::getFormatStringRange() {
Ted Kremeneke0e53132010-01-28 23:39:18 +00001251 return OrigFormatExpr->getSourceRange();
1252}
1253
Tom Care45f9b7e2010-06-21 21:21:01 +00001254CharSourceRange CheckPrintfHandler::
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001255getFormatSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001256 SourceLocation Start = getLocationOfByte(startSpecifier);
1257 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1258
1259 // Advance the end SourceLocation by one due to half-open ranges.
1260 End = End.getFileLocWithOffset(1);
1261
1262 return CharSourceRange::getCharRange(Start, End);
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001263}
1264
Ted Kremeneke0e53132010-01-28 23:39:18 +00001265SourceLocation CheckPrintfHandler::getLocationOfByte(const char *x) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001266 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001267}
1268
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001269void CheckPrintfHandler::
Ted Kremenek808015a2010-01-29 03:16:21 +00001270HandleIncompleteFormatSpecifier(const char *startSpecifier,
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001271 unsigned specifierLen) {
Ted Kremenek808015a2010-01-29 03:16:21 +00001272 SourceLocation Loc = getLocationOfByte(startSpecifier);
1273 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001274 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek808015a2010-01-29 03:16:21 +00001275}
1276
Ted Kremenekefaff192010-02-27 01:41:03 +00001277void
1278CheckPrintfHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1279 analyze_printf::PositionContext p) {
1280 SourceLocation Loc = getLocationOfByte(startPos);
1281 S.Diag(Loc, diag::warn_printf_invalid_positional_specifier)
1282 << (unsigned) p << getFormatSpecifierRange(startPos, posLen);
1283}
1284
1285void CheckPrintfHandler::HandleZeroPosition(const char *startPos,
1286 unsigned posLen) {
1287 SourceLocation Loc = getLocationOfByte(startPos);
1288 S.Diag(Loc, diag::warn_printf_zero_positional_specifier)
1289 << getFormatSpecifierRange(startPos, posLen);
1290}
1291
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001292bool CheckPrintfHandler::
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001293HandleInvalidConversionSpecifier(const analyze_printf::FormatSpecifier &FS,
1294 const char *startSpecifier,
1295 unsigned specifierLen) {
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001296
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001297 unsigned argIndex = FS.getArgIndex();
1298 bool keepGoing = true;
1299 if (argIndex < NumDataArgs) {
1300 // Consider the argument coverered, even though the specifier doesn't
1301 // make sense.
1302 CoveredArgs.set(argIndex);
1303 }
1304 else {
1305 // If argIndex exceeds the number of data arguments we
1306 // don't issue a warning because that is just a cascade of warnings (and
1307 // they may have intended '%%' anyway). We don't want to continue processing
1308 // the format string after this point, however, as we will like just get
1309 // gibberish when trying to match arguments.
1310 keepGoing = false;
1311 }
1312
Ted Kremenek808015a2010-01-29 03:16:21 +00001313 const analyze_printf::ConversionSpecifier &CS =
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001314 FS.getConversionSpecifier();
Ted Kremenek808015a2010-01-29 03:16:21 +00001315 SourceLocation Loc = getLocationOfByte(CS.getStart());
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001316 S.Diag(Loc, diag::warn_printf_invalid_conversion)
Ted Kremenek808015a2010-01-29 03:16:21 +00001317 << llvm::StringRef(CS.getStart(), CS.getLength())
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001318 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001319
1320 return keepGoing;
Ted Kremenek26ac2e02010-01-29 02:40:24 +00001321}
1322
Ted Kremeneke0e53132010-01-28 23:39:18 +00001323void CheckPrintfHandler::HandleNullChar(const char *nullCharacter) {
1324 // The presence of a null character is likely an error.
1325 S.Diag(getLocationOfByte(nullCharacter),
1326 diag::warn_printf_format_string_contains_null_char)
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001327 << getFormatStringRange();
Ted Kremeneke0e53132010-01-28 23:39:18 +00001328}
1329
Ted Kremenek0d277352010-01-29 01:06:55 +00001330const Expr *CheckPrintfHandler::getDataArg(unsigned i) const {
Ted Kremenek6ee76532010-03-25 03:59:12 +00001331 return TheCall->getArg(FirstDataArg + i);
Ted Kremenek0d277352010-01-29 01:06:55 +00001332}
1333
1334bool
1335CheckPrintfHandler::HandleAmount(const analyze_printf::OptionalAmount &Amt,
Ted Kremenekefaff192010-02-27 01:41:03 +00001336 unsigned k, const char *startSpecifier,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001337 unsigned specifierLen) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001338
1339 if (Amt.hasDataArgument()) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001340 if (!HasVAListArg) {
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001341 unsigned argIndex = Amt.getArgIndex();
1342 if (argIndex >= NumDataArgs) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001343 S.Diag(getLocationOfByte(Amt.getStart()),
1344 diag::warn_printf_asterisk_missing_arg)
1345 << k << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001346 // Don't do any more checking. We will just emit
1347 // spurious errors.
1348 return false;
1349 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001350
Ted Kremenek0d277352010-01-29 01:06:55 +00001351 // Type check the data argument. It should be an 'int'.
Ted Kremenek31f8e322010-01-29 23:32:22 +00001352 // Although not in conformance with C99, we also allow the argument to be
1353 // an 'unsigned int' as that is a reasonably safe case. GCC also
1354 // doesn't emit a warning for that case.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001355 CoveredArgs.set(argIndex);
1356 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek0d277352010-01-29 01:06:55 +00001357 QualType T = Arg->getType();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001358
1359 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1360 assert(ATR.isValid());
1361
1362 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekefaff192010-02-27 01:41:03 +00001363 S.Diag(getLocationOfByte(Amt.getStart()),
1364 diag::warn_printf_asterisk_wrong_type)
1365 << k
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001366 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001367 << getFormatSpecifierRange(startSpecifier, specifierLen)
1368 << Arg->getSourceRange();
Ted Kremenek0d277352010-01-29 01:06:55 +00001369 // Don't do any more checking. We will just emit
1370 // spurious errors.
1371 return false;
1372 }
1373 }
1374 }
1375 return true;
1376}
Ted Kremenek0d277352010-01-29 01:06:55 +00001377
Tom Caree4ee9662010-06-17 19:00:27 +00001378void CheckPrintfHandler::HandleInvalidAmount(
1379 const analyze_printf::FormatSpecifier &FS,
1380 const analyze_printf::OptionalAmount &Amt,
1381 unsigned type,
1382 const char *startSpecifier,
1383 unsigned specifierLen) {
1384 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1385 switch (Amt.getHowSpecified()) {
1386 case analyze_printf::OptionalAmount::Constant:
1387 S.Diag(getLocationOfByte(Amt.getStart()),
1388 diag::warn_printf_nonsensical_optional_amount)
1389 << type
1390 << CS.toString()
1391 << getFormatSpecifierRange(startSpecifier, specifierLen)
1392 << FixItHint::CreateRemoval(getFormatSpecifierRange(Amt.getStart(),
1393 Amt.getConstantLength()));
1394 break;
1395
1396 default:
1397 S.Diag(getLocationOfByte(Amt.getStart()),
1398 diag::warn_printf_nonsensical_optional_amount)
1399 << type
1400 << CS.toString()
1401 << getFormatSpecifierRange(startSpecifier, specifierLen);
1402 break;
1403 }
1404}
1405
1406void CheckPrintfHandler::HandleFlag(const analyze_printf::FormatSpecifier &FS,
1407 const analyze_printf::OptionalFlag &flag,
1408 const char *startSpecifier,
1409 unsigned specifierLen) {
1410 // Warn about pointless flag with a fixit removal.
1411 const analyze_printf::ConversionSpecifier &CS = FS.getConversionSpecifier();
1412 S.Diag(getLocationOfByte(flag.getPosition()),
1413 diag::warn_printf_nonsensical_flag)
1414 << flag.toString() << CS.toString()
1415 << getFormatSpecifierRange(startSpecifier, specifierLen)
1416 << FixItHint::CreateRemoval(getFormatSpecifierRange(flag.getPosition(), 1));
1417}
1418
1419void CheckPrintfHandler::HandleIgnoredFlag(
1420 const analyze_printf::FormatSpecifier &FS,
1421 const analyze_printf::OptionalFlag &ignoredFlag,
1422 const analyze_printf::OptionalFlag &flag,
1423 const char *startSpecifier,
1424 unsigned specifierLen) {
1425 // Warn about ignored flag with a fixit removal.
1426 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1427 diag::warn_printf_ignored_flag)
1428 << ignoredFlag.toString() << flag.toString()
1429 << getFormatSpecifierRange(startSpecifier, specifierLen)
1430 << FixItHint::CreateRemoval(getFormatSpecifierRange(
1431 ignoredFlag.getPosition(), 1));
1432}
1433
Ted Kremeneke0e53132010-01-28 23:39:18 +00001434bool
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001435CheckPrintfHandler::HandleFormatSpecifier(const analyze_printf::FormatSpecifier
1436 &FS,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001437 const char *startSpecifier,
1438 unsigned specifierLen) {
1439
Ted Kremenekefaff192010-02-27 01:41:03 +00001440 using namespace analyze_printf;
Ted Kremeneke0e53132010-01-28 23:39:18 +00001441 const ConversionSpecifier &CS = FS.getConversionSpecifier();
1442
Ted Kremenekefaff192010-02-27 01:41:03 +00001443 if (atFirstArg) {
1444 atFirstArg = false;
1445 usesPositionalArgs = FS.usesPositionalArg();
1446 }
1447 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1448 // Cannot mix-and-match positional and non-positional arguments.
1449 S.Diag(getLocationOfByte(CS.getStart()),
1450 diag::warn_printf_mix_positional_nonpositional_args)
1451 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek0d277352010-01-29 01:06:55 +00001452 return false;
1453 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001454
Ted Kremenekefaff192010-02-27 01:41:03 +00001455 // First check if the field width, precision, and conversion specifier
1456 // have matching data arguments.
1457 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1458 startSpecifier, specifierLen)) {
1459 return false;
1460 }
1461
1462 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1463 startSpecifier, specifierLen)) {
Ted Kremenek0d277352010-01-29 01:06:55 +00001464 return false;
1465 }
1466
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001467 if (!CS.consumesDataArgument()) {
1468 // FIXME: Technically specifying a precision or field width here
1469 // makes no sense. Worth issuing a warning at some point.
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001470 return true;
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001471 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001472
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001473 // Consume the argument.
1474 unsigned argIndex = FS.getArgIndex();
Ted Kremeneke3fc5472010-02-27 08:34:51 +00001475 if (argIndex < NumDataArgs) {
1476 // The check to see if the argIndex is valid will come later.
1477 // We set the bit here because we may exit early from this
1478 // function if we encounter some other error.
1479 CoveredArgs.set(argIndex);
1480 }
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001481
1482 // Check for using an Objective-C specific conversion specifier
1483 // in a non-ObjC literal.
1484 if (!IsObjCLiteral && CS.isObjCArg()) {
1485 return HandleInvalidConversionSpecifier(FS, startSpecifier, specifierLen);
1486 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001487
Tom Caree4ee9662010-06-17 19:00:27 +00001488 // Check for invalid use of field width
1489 if (!FS.hasValidFieldWidth()) {
Tom Care45f9b7e2010-06-21 21:21:01 +00001490 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Caree4ee9662010-06-17 19:00:27 +00001491 startSpecifier, specifierLen);
1492 }
1493
1494 // Check for invalid use of precision
1495 if (!FS.hasValidPrecision()) {
1496 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1497 startSpecifier, specifierLen);
1498 }
1499
1500 // Check each flag does not conflict with any other component.
1501 if (!FS.hasValidLeadingZeros())
1502 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1503 if (!FS.hasValidPlusPrefix())
1504 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care45f9b7e2010-06-21 21:21:01 +00001505 if (!FS.hasValidSpacePrefix())
1506 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001507 if (!FS.hasValidAlternativeForm())
1508 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1509 if (!FS.hasValidLeftJustified())
1510 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1511
1512 // Check that flags are not ignored by another flag
Tom Care45f9b7e2010-06-21 21:21:01 +00001513 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1514 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1515 startSpecifier, specifierLen);
Tom Caree4ee9662010-06-17 19:00:27 +00001516 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1517 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1518 startSpecifier, specifierLen);
1519
1520 // Check the length modifier is valid with the given conversion specifier.
1521 const LengthModifier &LM = FS.getLengthModifier();
1522 if (!FS.hasValidLengthModifier())
1523 S.Diag(getLocationOfByte(LM.getStart()),
1524 diag::warn_printf_nonsensical_length)
1525 << LM.toString() << CS.toString()
1526 << getFormatSpecifierRange(startSpecifier, specifierLen)
1527 << FixItHint::CreateRemoval(getFormatSpecifierRange(LM.getStart(),
1528 LM.getLength()));
1529
1530 // Are we using '%n'?
Ted Kremeneke82d8042010-01-29 01:35:25 +00001531 if (CS.getKind() == ConversionSpecifier::OutIntPtrArg) {
Tom Caree4ee9662010-06-17 19:00:27 +00001532 // Issue a warning about this being a possible security issue.
Ted Kremeneke82d8042010-01-29 01:35:25 +00001533 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001534 << getFormatSpecifierRange(startSpecifier, specifierLen);
Ted Kremeneke82d8042010-01-29 01:35:25 +00001535 // Continue checking the other format specifiers.
1536 return true;
1537 }
Ted Kremenek5c41ee82010-02-11 09:27:41 +00001538
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001539 // The remaining checks depend on the data arguments.
1540 if (HasVAListArg)
1541 return true;
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001542
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001543 if (argIndex >= NumDataArgs) {
Ted Kremenek6ee76532010-03-25 03:59:12 +00001544 if (FS.usesPositionalArg()) {
1545 S.Diag(getLocationOfByte(CS.getStart()),
1546 diag::warn_printf_positional_arg_exceeds_data_args)
1547 << (argIndex+1) << NumDataArgs
1548 << getFormatSpecifierRange(startSpecifier, specifierLen);
1549 }
1550 else {
1551 S.Diag(getLocationOfByte(CS.getStart()),
1552 diag::warn_printf_insufficient_data_args)
1553 << getFormatSpecifierRange(startSpecifier, specifierLen);
1554 }
1555
Ted Kremenekda51f0d2010-01-29 01:43:31 +00001556 // Don't do any more checking.
1557 return false;
1558 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001559
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001560 // Now type check the data expression that matches the
1561 // format specifier.
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001562 const Expr *Ex = getDataArg(argIndex);
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001563 const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001564 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1565 // Check if we didn't match because of an implicit cast from a 'char'
1566 // or 'short' to an 'int'. This is done because printf is a varargs
1567 // function.
1568 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1569 if (ICE->getType() == S.Context.IntTy)
1570 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1571 return true;
Ted Kremenek105d41c2010-02-01 19:38:10 +00001572
Tom Care3bfc5f42010-06-09 04:11:11 +00001573 // We may be able to offer a FixItHint if it is a supported type.
1574 FormatSpecifier fixedFS = FS;
1575 bool success = fixedFS.fixType(Ex->getType());
1576
1577 if (success) {
1578 // Get the fix string from the fixed format specifier
1579 llvm::SmallString<128> buf;
1580 llvm::raw_svector_ostream os(buf);
1581 fixedFS.toString(os);
1582
1583 S.Diag(getLocationOfByte(CS.getStart()),
1584 diag::warn_printf_conversion_argument_type_mismatch)
1585 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1586 << getFormatSpecifierRange(startSpecifier, specifierLen)
1587 << Ex->getSourceRange()
1588 << FixItHint::CreateReplacement(
1589 getFormatSpecifierRange(startSpecifier, specifierLen),
1590 os.str());
1591 }
1592 else {
1593 S.Diag(getLocationOfByte(CS.getStart()),
1594 diag::warn_printf_conversion_argument_type_mismatch)
1595 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1596 << getFormatSpecifierRange(startSpecifier, specifierLen)
1597 << Ex->getSourceRange();
1598 }
Ted Kremenekd635c5f2010-01-30 00:49:51 +00001599 }
Ted Kremeneke0e53132010-01-28 23:39:18 +00001600
1601 return true;
1602}
1603
Ted Kremenek07d161f2010-01-29 01:50:07 +00001604void CheckPrintfHandler::DoneProcessing() {
1605 // Does the number of data arguments exceed the number of
1606 // format conversions in the format string?
Ted Kremenek7f70dc82010-02-26 19:18:41 +00001607 if (!HasVAListArg) {
1608 // Find any arguments that weren't covered.
1609 CoveredArgs.flip();
1610 signed notCoveredArg = CoveredArgs.find_first();
1611 if (notCoveredArg >= 0) {
1612 assert((unsigned)notCoveredArg < NumDataArgs);
1613 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1614 diag::warn_printf_data_arg_not_used)
1615 << getFormatStringRange();
1616 }
1617 }
Ted Kremenek07d161f2010-01-29 01:50:07 +00001618}
Ted Kremeneke0e53132010-01-28 23:39:18 +00001619
Ted Kremenekf88c8e02010-01-29 20:55:36 +00001620void Sema::CheckPrintfString(const StringLiteral *FExpr,
Ted Kremenek0e5675d2010-02-10 02:16:30 +00001621 const Expr *OrigFormatExpr,
1622 const CallExpr *TheCall, bool HasVAListArg,
1623 unsigned format_idx, unsigned firstDataArg) {
1624
Ted Kremeneke0e53132010-01-28 23:39:18 +00001625 // CHECK: is the format string a wide literal?
1626 if (FExpr->isWide()) {
1627 Diag(FExpr->getLocStart(),
1628 diag::warn_printf_format_string_is_wide_literal)
1629 << OrigFormatExpr->getSourceRange();
1630 return;
1631 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001632
Ted Kremeneke0e53132010-01-28 23:39:18 +00001633 // Str - The format string. NOTE: this is NOT null-terminated!
1634 const char *Str = FExpr->getStrData();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001635
Ted Kremeneke0e53132010-01-28 23:39:18 +00001636 // CHECK: empty format string?
1637 unsigned StrLen = FExpr->getByteLength();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001638
Ted Kremeneke0e53132010-01-28 23:39:18 +00001639 if (StrLen == 0) {
1640 Diag(FExpr->getLocStart(), diag::warn_printf_empty_format_string)
1641 << OrigFormatExpr->getSourceRange();
1642 return;
1643 }
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001644
Ted Kremenek6ee76532010-03-25 03:59:12 +00001645 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
Ted Kremeneke0e53132010-01-28 23:39:18 +00001646 TheCall->getNumArgs() - firstDataArg,
Ted Kremenek0d277352010-01-29 01:06:55 +00001647 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1648 HasVAListArg, TheCall, format_idx);
Ted Kremeneke0e53132010-01-28 23:39:18 +00001649
Ted Kremenek74d56a12010-02-04 20:46:58 +00001650 if (!analyze_printf::ParseFormatString(H, Str, Str + StrLen))
Ted Kremenek808015a2010-01-29 03:16:21 +00001651 H.DoneProcessing();
Ted Kremenekce7024e2010-01-28 01:18:22 +00001652}
1653
Ted Kremenek06de2762007-08-17 16:46:58 +00001654//===--- CHECK: Return Address of Stack Variable --------------------------===//
1655
1656static DeclRefExpr* EvalVal(Expr *E);
1657static DeclRefExpr* EvalAddr(Expr* E);
1658
1659/// CheckReturnStackAddr - Check if a return statement returns the address
1660/// of a stack variable.
1661void
1662Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1663 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001664
Ted Kremenek06de2762007-08-17 16:46:58 +00001665 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001666 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001667 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001668 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001669 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001670
Steve Naroffc50a4a52008-09-16 22:25:10 +00001671 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001672 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001673
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001674 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001675 if (C->hasBlockDeclRefExprs())
1676 Diag(C->getLocStart(), diag::err_ret_local_block)
1677 << C->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001678
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001679 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1680 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1681 << ALE->getSourceRange();
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00001682
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001683 } else if (lhsType->isReferenceType()) {
1684 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001685 // Check for a reference to the stack
1686 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001687 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001688 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001689 }
1690}
1691
1692/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1693/// check if the expression in a return statement evaluates to an address
1694/// to a location on the stack. The recursion is used to traverse the
1695/// AST of the return expression, with recursion backtracking when we
1696/// encounter a subexpression that (1) clearly does not lead to the address
1697/// of a stack variable or (2) is something we cannot determine leads to
1698/// the address of a stack variable based on such local checking.
1699///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001700/// EvalAddr processes expressions that are pointers that are used as
1701/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001702/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001703/// the refers to a stack variable.
1704///
1705/// This implementation handles:
1706///
1707/// * pointer-to-pointer casts
1708/// * implicit conversions from array references to pointers
1709/// * taking the address of fields
1710/// * arbitrary interplay between "&" and "*" operators
1711/// * pointer arithmetic from an address of a stack variable
1712/// * taking the address of an array element where the array is on the stack
1713static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001714 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001715 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001716 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001717 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001718 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001719
Ted Kremenek06de2762007-08-17 16:46:58 +00001720 // Our "symbolic interpreter" is just a dispatch off the currently
1721 // viewed AST node. We then recursively traverse the AST by calling
1722 // EvalAddr and EvalVal appropriately.
1723 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001724 case Stmt::ParenExprClass:
1725 // Ignore parentheses.
1726 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001727
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001728 case Stmt::UnaryOperatorClass: {
1729 // The only unary operator that make sense to handle here
1730 // is AddrOf. All others don't make sense as pointers.
1731 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001732
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001733 if (U->getOpcode() == UnaryOperator::AddrOf)
1734 return EvalVal(U->getSubExpr());
1735 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001736 return NULL;
1737 }
Mike Stump1eb44332009-09-09 15:08:12 +00001738
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001739 case Stmt::BinaryOperatorClass: {
1740 // Handle pointer arithmetic. All other binary operators are not valid
1741 // in this context.
1742 BinaryOperator *B = cast<BinaryOperator>(E);
1743 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001744
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001745 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1746 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001747
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001748 Expr *Base = B->getLHS();
1749
1750 // Determine which argument is the real pointer base. It could be
1751 // the RHS argument instead of the LHS.
1752 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001753
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001754 assert (Base->getType()->isPointerType());
1755 return EvalAddr(Base);
1756 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001757
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001758 // For conditional operators we need to see if either the LHS or RHS are
1759 // valid DeclRefExpr*s. If one of them is valid, we return it.
1760 case Stmt::ConditionalOperatorClass: {
1761 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001762
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001763 // Handle the GNU extension for missing LHS.
1764 if (Expr *lhsExpr = C->getLHS())
1765 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1766 return LHS;
1767
1768 return EvalAddr(C->getRHS());
1769 }
Mike Stump1eb44332009-09-09 15:08:12 +00001770
Ted Kremenek54b52742008-08-07 00:49:01 +00001771 // For casts, we need to handle conversions from arrays to
1772 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001773 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001774 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001775 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001776 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001777 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001778
Steve Naroffdd972f22008-09-05 22:11:13 +00001779 if (SubExpr->getType()->isPointerType() ||
1780 SubExpr->getType()->isBlockPointerType() ||
1781 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001782 return EvalAddr(SubExpr);
1783 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001784 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001785 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001786 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001787 }
Mike Stump1eb44332009-09-09 15:08:12 +00001788
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001789 // C++ casts. For dynamic casts, static casts, and const casts, we
1790 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001791 // through the cast. In the case the dynamic cast doesn't fail (and
1792 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001793 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001794 // FIXME: The comment about is wrong; we're not always converting
1795 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001796 // handle references to objects.
1797 case Stmt::CXXStaticCastExprClass:
1798 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001799 case Stmt::CXXConstCastExprClass:
1800 case Stmt::CXXReinterpretCastExprClass: {
1801 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001802 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001803 return EvalAddr(S);
1804 else
1805 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001806 }
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001808 // Everything else: we simply don't reason about them.
1809 default:
1810 return NULL;
1811 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001812}
Mike Stump1eb44332009-09-09 15:08:12 +00001813
Ted Kremenek06de2762007-08-17 16:46:58 +00001814
1815/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1816/// See the comments for EvalAddr for more details.
1817static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +00001818
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001819 // We should only be called for evaluating non-pointer expressions, or
1820 // expressions with a pointer type that are not used as references but instead
1821 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001822
Ted Kremenek06de2762007-08-17 16:46:58 +00001823 // Our "symbolic interpreter" is just a dispatch off the currently
1824 // viewed AST node. We then recursively traverse the AST by calling
1825 // EvalAddr and EvalVal appropriately.
1826 switch (E->getStmtClass()) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00001827 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001828 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1829 // at code that refers to a variable's name. We check if it has local
1830 // storage within the function, and if so, return the expression.
1831 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Ted Kremenek06de2762007-08-17 16:46:58 +00001833 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001834 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1835
Ted Kremenek06de2762007-08-17 16:46:58 +00001836 return NULL;
1837 }
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Ted Kremenek06de2762007-08-17 16:46:58 +00001839 case Stmt::ParenExprClass:
1840 // Ignore parentheses.
1841 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +00001842
Ted Kremenek06de2762007-08-17 16:46:58 +00001843 case Stmt::UnaryOperatorClass: {
1844 // The only unary operator that make sense to handle here
1845 // is Deref. All others don't resolve to a "name." This includes
1846 // handling all sorts of rvalues passed to a unary operator.
1847 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001848
Ted Kremenek06de2762007-08-17 16:46:58 +00001849 if (U->getOpcode() == UnaryOperator::Deref)
1850 return EvalAddr(U->getSubExpr());
1851
1852 return NULL;
1853 }
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Ted Kremenek06de2762007-08-17 16:46:58 +00001855 case Stmt::ArraySubscriptExprClass: {
1856 // Array subscripts are potential references to data on the stack. We
1857 // retrieve the DeclRefExpr* for the array variable if it indeed
1858 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00001859 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00001860 }
Mike Stump1eb44332009-09-09 15:08:12 +00001861
Ted Kremenek06de2762007-08-17 16:46:58 +00001862 case Stmt::ConditionalOperatorClass: {
1863 // For conditional operators we need to see if either the LHS or RHS are
1864 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
1865 ConditionalOperator *C = cast<ConditionalOperator>(E);
1866
Anders Carlsson39073232007-11-30 19:04:31 +00001867 // Handle the GNU extension for missing LHS.
1868 if (Expr *lhsExpr = C->getLHS())
1869 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
1870 return LHS;
1871
1872 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00001873 }
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Ted Kremenek06de2762007-08-17 16:46:58 +00001875 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001876 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001877 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001878
Ted Kremenek06de2762007-08-17 16:46:58 +00001879 // Check for indirect access. We only want direct field accesses.
1880 if (!M->isArrow())
1881 return EvalVal(M->getBase());
1882 else
1883 return NULL;
1884 }
Mike Stump1eb44332009-09-09 15:08:12 +00001885
Ted Kremenek06de2762007-08-17 16:46:58 +00001886 // Everything else: we simply don't reason about them.
1887 default:
1888 return NULL;
1889 }
1890}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001891
1892//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
1893
1894/// Check for comparisons of floating point operands using != and ==.
1895/// Issue a warning if these are no self-comparisons, as they are not likely
1896/// to do what the programmer intended.
1897void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
1898 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001900 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00001901 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001902
1903 // Special case: check for x == x (which is OK).
1904 // Do not emit warnings for such cases.
1905 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
1906 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
1907 if (DRL->getDecl() == DRR->getDecl())
1908 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001909
1910
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001911 // Special case: check for comparisons against literals that can be exactly
1912 // represented by APFloat. In such cases, do not emit a warning. This
1913 // is a heuristic: often comparison against such literals are used to
1914 // detect if a value in a variable has not changed. This clearly can
1915 // lead to false negatives.
1916 if (EmitWarning) {
1917 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
1918 if (FLL->isExact())
1919 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001920 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001921 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
1922 if (FLR->isExact())
1923 EmitWarning = false;
1924 }
1925 }
Mike Stump1eb44332009-09-09 15:08:12 +00001926
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001927 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001928 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001929 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001930 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001931 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001932
Sebastian Redl0eb23302009-01-19 00:08:26 +00001933 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001934 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001935 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001936 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001937
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001938 // Emit the diagnostic.
1939 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001940 Diag(loc, diag::warn_floatingpoint_eq)
1941 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001942}
John McCallba26e582010-01-04 23:21:16 +00001943
John McCallf2370c92010-01-06 05:24:50 +00001944//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
1945//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00001946
John McCallf2370c92010-01-06 05:24:50 +00001947namespace {
John McCallba26e582010-01-04 23:21:16 +00001948
John McCallf2370c92010-01-06 05:24:50 +00001949/// Structure recording the 'active' range of an integer-valued
1950/// expression.
1951struct IntRange {
1952 /// The number of bits active in the int.
1953 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00001954
John McCallf2370c92010-01-06 05:24:50 +00001955 /// True if the int is known not to have negative values.
1956 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00001957
John McCallf2370c92010-01-06 05:24:50 +00001958 IntRange() {}
1959 IntRange(unsigned Width, bool NonNegative)
1960 : Width(Width), NonNegative(NonNegative)
1961 {}
John McCallba26e582010-01-04 23:21:16 +00001962
John McCallf2370c92010-01-06 05:24:50 +00001963 // Returns the range of the bool type.
1964 static IntRange forBoolType() {
1965 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00001966 }
1967
John McCallf2370c92010-01-06 05:24:50 +00001968 // Returns the range of an integral type.
1969 static IntRange forType(ASTContext &C, QualType T) {
1970 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00001971 }
1972
John McCallf2370c92010-01-06 05:24:50 +00001973 // Returns the range of an integeral type based on its canonical
1974 // representation.
1975 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
1976 assert(T->isCanonicalUnqualified());
1977
1978 if (const VectorType *VT = dyn_cast<VectorType>(T))
1979 T = VT->getElementType().getTypePtr();
1980 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
1981 T = CT->getElementType().getTypePtr();
John McCall323ed742010-05-06 08:58:33 +00001982
1983 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
1984 EnumDecl *Enum = ET->getDecl();
1985 unsigned NumPositive = Enum->getNumPositiveBits();
1986 unsigned NumNegative = Enum->getNumNegativeBits();
1987
1988 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
1989 }
John McCallf2370c92010-01-06 05:24:50 +00001990
1991 const BuiltinType *BT = cast<BuiltinType>(T);
1992 assert(BT->isInteger());
1993
1994 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
1995 }
1996
1997 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallc0cd21d2010-02-23 19:22:29 +00001998 static IntRange join(IntRange L, IntRange R) {
John McCallf2370c92010-01-06 05:24:50 +00001999 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00002000 L.NonNegative && R.NonNegative);
2001 }
2002
2003 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallc0cd21d2010-02-23 19:22:29 +00002004 static IntRange meet(IntRange L, IntRange R) {
John McCall60fad452010-01-06 22:07:33 +00002005 return IntRange(std::min(L.Width, R.Width),
2006 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00002007 }
2008};
2009
2010IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2011 if (value.isSigned() && value.isNegative())
2012 return IntRange(value.getMinSignedBits(), false);
2013
2014 if (value.getBitWidth() > MaxWidth)
2015 value.trunc(MaxWidth);
2016
2017 // isNonNegative() just checks the sign bit without considering
2018 // signedness.
2019 return IntRange(value.getActiveBits(), true);
2020}
2021
John McCall0acc3112010-01-06 22:57:21 +00002022IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00002023 unsigned MaxWidth) {
2024 if (result.isInt())
2025 return GetValueRange(C, result.getInt(), MaxWidth);
2026
2027 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00002028 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2029 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2030 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2031 R = IntRange::join(R, El);
2032 }
John McCallf2370c92010-01-06 05:24:50 +00002033 return R;
2034 }
2035
2036 if (result.isComplexInt()) {
2037 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2038 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2039 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00002040 }
2041
2042 // This can happen with lossless casts to intptr_t of "based" lvalues.
2043 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00002044 // FIXME: The only reason we need to pass the type in here is to get
2045 // the sign right on this one case. It would be nice if APValue
2046 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00002047 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00002048 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00002049}
John McCallf2370c92010-01-06 05:24:50 +00002050
2051/// Pseudo-evaluate the given integer expression, estimating the
2052/// range of values it might take.
2053///
2054/// \param MaxWidth - the width to which the value will be truncated
2055IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2056 E = E->IgnoreParens();
2057
2058 // Try a full evaluation first.
2059 Expr::EvalResult result;
2060 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00002061 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00002062
2063 // I think we only want to look through implicit casts here; if the
2064 // user has an explicit widening cast, we should treat the value as
2065 // being of the new, wider type.
2066 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2067 if (CE->getCastKind() == CastExpr::CK_NoOp)
2068 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2069
2070 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2071
John McCall60fad452010-01-06 22:07:33 +00002072 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2073 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2074 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2075
John McCallf2370c92010-01-06 05:24:50 +00002076 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00002077 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00002078 return OutputTypeRange;
2079
2080 IntRange SubRange
2081 = GetExprRange(C, CE->getSubExpr(),
2082 std::min(MaxWidth, OutputTypeRange.Width));
2083
2084 // Bail out if the subexpr's range is as wide as the cast type.
2085 if (SubRange.Width >= OutputTypeRange.Width)
2086 return OutputTypeRange;
2087
2088 // Otherwise, we take the smaller width, and we're non-negative if
2089 // either the output type or the subexpr is.
2090 return IntRange(SubRange.Width,
2091 SubRange.NonNegative || OutputTypeRange.NonNegative);
2092 }
2093
2094 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2095 // If we can fold the condition, just take that operand.
2096 bool CondResult;
2097 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2098 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2099 : CO->getFalseExpr(),
2100 MaxWidth);
2101
2102 // Otherwise, conservatively merge.
2103 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2104 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2105 return IntRange::join(L, R);
2106 }
2107
2108 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2109 switch (BO->getOpcode()) {
2110
2111 // Boolean-valued operations are single-bit and positive.
2112 case BinaryOperator::LAnd:
2113 case BinaryOperator::LOr:
2114 case BinaryOperator::LT:
2115 case BinaryOperator::GT:
2116 case BinaryOperator::LE:
2117 case BinaryOperator::GE:
2118 case BinaryOperator::EQ:
2119 case BinaryOperator::NE:
2120 return IntRange::forBoolType();
2121
John McCallc0cd21d2010-02-23 19:22:29 +00002122 // The type of these compound assignments is the type of the LHS,
2123 // so the RHS is not necessarily an integer.
2124 case BinaryOperator::MulAssign:
2125 case BinaryOperator::DivAssign:
2126 case BinaryOperator::RemAssign:
2127 case BinaryOperator::AddAssign:
2128 case BinaryOperator::SubAssign:
2129 return IntRange::forType(C, E->getType());
2130
John McCallf2370c92010-01-06 05:24:50 +00002131 // Operations with opaque sources are black-listed.
2132 case BinaryOperator::PtrMemD:
2133 case BinaryOperator::PtrMemI:
2134 return IntRange::forType(C, E->getType());
2135
John McCall60fad452010-01-06 22:07:33 +00002136 // Bitwise-and uses the *infinum* of the two source ranges.
2137 case BinaryOperator::And:
John McCallc0cd21d2010-02-23 19:22:29 +00002138 case BinaryOperator::AndAssign:
John McCall60fad452010-01-06 22:07:33 +00002139 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2140 GetExprRange(C, BO->getRHS(), MaxWidth));
2141
John McCallf2370c92010-01-06 05:24:50 +00002142 // Left shift gets black-listed based on a judgement call.
2143 case BinaryOperator::Shl:
John McCall3aae6092010-04-07 01:14:35 +00002144 // ...except that we want to treat '1 << (blah)' as logically
2145 // positive. It's an important idiom.
2146 if (IntegerLiteral *I
2147 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2148 if (I->getValue() == 1) {
2149 IntRange R = IntRange::forType(C, E->getType());
2150 return IntRange(R.Width, /*NonNegative*/ true);
2151 }
2152 }
2153 // fallthrough
2154
John McCallc0cd21d2010-02-23 19:22:29 +00002155 case BinaryOperator::ShlAssign:
John McCallf2370c92010-01-06 05:24:50 +00002156 return IntRange::forType(C, E->getType());
2157
John McCall60fad452010-01-06 22:07:33 +00002158 // Right shift by a constant can narrow its left argument.
John McCallc0cd21d2010-02-23 19:22:29 +00002159 case BinaryOperator::Shr:
2160 case BinaryOperator::ShrAssign: {
John McCall60fad452010-01-06 22:07:33 +00002161 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2162
2163 // If the shift amount is a positive constant, drop the width by
2164 // that much.
2165 llvm::APSInt shift;
2166 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2167 shift.isNonNegative()) {
2168 unsigned zext = shift.getZExtValue();
2169 if (zext >= L.Width)
2170 L.Width = (L.NonNegative ? 0 : 1);
2171 else
2172 L.Width -= zext;
2173 }
2174
2175 return L;
2176 }
2177
2178 // Comma acts as its right operand.
John McCallf2370c92010-01-06 05:24:50 +00002179 case BinaryOperator::Comma:
2180 return GetExprRange(C, BO->getRHS(), MaxWidth);
2181
John McCall60fad452010-01-06 22:07:33 +00002182 // Black-list pointer subtractions.
John McCallf2370c92010-01-06 05:24:50 +00002183 case BinaryOperator::Sub:
2184 if (BO->getLHS()->getType()->isPointerType())
2185 return IntRange::forType(C, E->getType());
2186 // fallthrough
Ted Kremenek4e4b30e2010-02-16 01:46:59 +00002187
John McCallf2370c92010-01-06 05:24:50 +00002188 default:
2189 break;
2190 }
2191
2192 // Treat every other operator as if it were closed on the
2193 // narrowest type that encompasses both operands.
2194 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2195 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2196 return IntRange::join(L, R);
2197 }
2198
2199 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2200 switch (UO->getOpcode()) {
2201 // Boolean-valued operations are white-listed.
2202 case UnaryOperator::LNot:
2203 return IntRange::forBoolType();
2204
2205 // Operations with opaque sources are black-listed.
2206 case UnaryOperator::Deref:
2207 case UnaryOperator::AddrOf: // should be impossible
2208 case UnaryOperator::OffsetOf:
2209 return IntRange::forType(C, E->getType());
2210
2211 default:
2212 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2213 }
2214 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00002215
2216 if (dyn_cast<OffsetOfExpr>(E)) {
2217 IntRange::forType(C, E->getType());
2218 }
John McCallf2370c92010-01-06 05:24:50 +00002219
2220 FieldDecl *BitField = E->getBitField();
2221 if (BitField) {
2222 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2223 unsigned BitWidth = BitWidthAP.getZExtValue();
2224
2225 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2226 }
2227
2228 return IntRange::forType(C, E->getType());
2229}
John McCall51313c32010-01-04 23:31:57 +00002230
John McCall323ed742010-05-06 08:58:33 +00002231IntRange GetExprRange(ASTContext &C, Expr *E) {
2232 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2233}
2234
John McCall51313c32010-01-04 23:31:57 +00002235/// Checks whether the given value, which currently has the given
2236/// source semantics, has the same value when coerced through the
2237/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00002238bool IsSameFloatAfterCast(const llvm::APFloat &value,
2239 const llvm::fltSemantics &Src,
2240 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002241 llvm::APFloat truncated = value;
2242
2243 bool ignored;
2244 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2245 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2246
2247 return truncated.bitwiseIsEqual(value);
2248}
2249
2250/// Checks whether the given value, which currently has the given
2251/// source semantics, has the same value when coerced through the
2252/// target semantics.
2253///
2254/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00002255bool IsSameFloatAfterCast(const APValue &value,
2256 const llvm::fltSemantics &Src,
2257 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00002258 if (value.isFloat())
2259 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2260
2261 if (value.isVector()) {
2262 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2263 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2264 return false;
2265 return true;
2266 }
2267
2268 assert(value.isComplexFloat());
2269 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2270 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2271}
2272
John McCall323ed742010-05-06 08:58:33 +00002273void AnalyzeImplicitConversions(Sema &S, Expr *E);
2274
2275bool IsZero(Sema &S, Expr *E) {
2276 llvm::APSInt Value;
2277 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2278}
2279
2280void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2281 BinaryOperator::Opcode op = E->getOpcode();
2282 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2283 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2284 << "< 0" << "false"
2285 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2286 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2287 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2288 << ">= 0" << "true"
2289 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2290 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2291 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2292 << "0 >" << "false"
2293 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2294 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2295 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2296 << "0 <=" << "true"
2297 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2298 }
2299}
2300
2301/// Analyze the operands of the given comparison. Implements the
2302/// fallback case from AnalyzeComparison.
2303void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2304 AnalyzeImplicitConversions(S, E->getLHS());
2305 AnalyzeImplicitConversions(S, E->getRHS());
2306}
John McCall51313c32010-01-04 23:31:57 +00002307
John McCallba26e582010-01-04 23:21:16 +00002308/// \brief Implements -Wsign-compare.
2309///
2310/// \param lex the left-hand expression
2311/// \param rex the right-hand expression
2312/// \param OpLoc the location of the joining operator
John McCalld1b47bf2010-03-11 19:43:18 +00002313/// \param BinOpc binary opcode or 0
John McCall323ed742010-05-06 08:58:33 +00002314void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2315 // The type the comparison is being performed in.
2316 QualType T = E->getLHS()->getType();
2317 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2318 && "comparison with mismatched types");
John McCallba26e582010-01-04 23:21:16 +00002319
John McCall323ed742010-05-06 08:58:33 +00002320 // We don't do anything special if this isn't an unsigned integral
2321 // comparison: we're only interested in integral comparisons, and
2322 // signed comparisons only happen in cases we don't care to warn about.
2323 if (!T->isUnsignedIntegerType())
2324 return AnalyzeImpConvsInComparison(S, E);
John McCallf2370c92010-01-06 05:24:50 +00002325
John McCall323ed742010-05-06 08:58:33 +00002326 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2327 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallba26e582010-01-04 23:21:16 +00002328
John McCall323ed742010-05-06 08:58:33 +00002329 // Check to see if one of the (unmodified) operands is of different
2330 // signedness.
2331 Expr *signedOperand, *unsignedOperand;
2332 if (lex->getType()->isSignedIntegerType()) {
2333 assert(!rex->getType()->isSignedIntegerType() &&
2334 "unsigned comparison between two signed integer expressions?");
2335 signedOperand = lex;
2336 unsignedOperand = rex;
2337 } else if (rex->getType()->isSignedIntegerType()) {
2338 signedOperand = rex;
2339 unsignedOperand = lex;
John McCallba26e582010-01-04 23:21:16 +00002340 } else {
John McCall323ed742010-05-06 08:58:33 +00002341 CheckTrivialUnsignedComparison(S, E);
2342 return AnalyzeImpConvsInComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002343 }
2344
John McCall323ed742010-05-06 08:58:33 +00002345 // Otherwise, calculate the effective range of the signed operand.
2346 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCallf2370c92010-01-06 05:24:50 +00002347
John McCall323ed742010-05-06 08:58:33 +00002348 // Go ahead and analyze implicit conversions in the operands. Note
2349 // that we skip the implicit conversions on both sides.
2350 AnalyzeImplicitConversions(S, lex);
2351 AnalyzeImplicitConversions(S, rex);
John McCallba26e582010-01-04 23:21:16 +00002352
John McCall323ed742010-05-06 08:58:33 +00002353 // If the signed range is non-negative, -Wsign-compare won't fire,
2354 // but we should still check for comparisons which are always true
2355 // or false.
2356 if (signedRange.NonNegative)
2357 return CheckTrivialUnsignedComparison(S, E);
John McCallba26e582010-01-04 23:21:16 +00002358
2359 // For (in)equality comparisons, if the unsigned operand is a
2360 // constant which cannot collide with a overflowed signed operand,
2361 // then reinterpreting the signed operand as unsigned will not
2362 // change the result of the comparison.
John McCall323ed742010-05-06 08:58:33 +00002363 if (E->isEqualityOp()) {
2364 unsigned comparisonWidth = S.Context.getIntWidth(T);
2365 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallba26e582010-01-04 23:21:16 +00002366
John McCall323ed742010-05-06 08:58:33 +00002367 // We should never be unable to prove that the unsigned operand is
2368 // non-negative.
2369 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2370
2371 if (unsignedRange.Width < comparisonWidth)
2372 return;
2373 }
2374
2375 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2376 << lex->getType() << rex->getType()
2377 << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00002378}
2379
John McCall51313c32010-01-04 23:31:57 +00002380/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCall323ed742010-05-06 08:58:33 +00002381void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall51313c32010-01-04 23:31:57 +00002382 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2383}
2384
John McCall323ed742010-05-06 08:58:33 +00002385void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2386 bool *ICContext = 0) {
2387 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall51313c32010-01-04 23:31:57 +00002388
John McCall323ed742010-05-06 08:58:33 +00002389 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2390 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2391 if (Source == Target) return;
2392 if (Target->isDependentType()) return;
John McCall51313c32010-01-04 23:31:57 +00002393
2394 // Never diagnose implicit casts to bool.
2395 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2396 return;
2397
2398 // Strip vector types.
2399 if (isa<VectorType>(Source)) {
2400 if (!isa<VectorType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002401 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall51313c32010-01-04 23:31:57 +00002402
2403 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2404 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2405 }
2406
2407 // Strip complex types.
2408 if (isa<ComplexType>(Source)) {
2409 if (!isa<ComplexType>(Target))
John McCall323ed742010-05-06 08:58:33 +00002410 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall51313c32010-01-04 23:31:57 +00002411
2412 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2413 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2414 }
2415
2416 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2417 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2418
2419 // If the source is floating point...
2420 if (SourceBT && SourceBT->isFloatingPoint()) {
2421 // ...and the target is floating point...
2422 if (TargetBT && TargetBT->isFloatingPoint()) {
2423 // ...then warn if we're dropping FP rank.
2424
2425 // Builtin FP kinds are ordered by increasing FP rank.
2426 if (SourceBT->getKind() > TargetBT->getKind()) {
2427 // Don't warn about float constants that are precisely
2428 // representable in the target type.
2429 Expr::EvalResult result;
John McCall323ed742010-05-06 08:58:33 +00002430 if (E->Evaluate(result, S.Context)) {
John McCall51313c32010-01-04 23:31:57 +00002431 // Value might be a float, a float vector, or a float complex.
2432 if (IsSameFloatAfterCast(result.Val,
John McCall323ed742010-05-06 08:58:33 +00002433 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2434 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall51313c32010-01-04 23:31:57 +00002435 return;
2436 }
2437
John McCall323ed742010-05-06 08:58:33 +00002438 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall51313c32010-01-04 23:31:57 +00002439 }
2440 return;
2441 }
2442
2443 // If the target is integral, always warn.
2444 if ((TargetBT && TargetBT->isInteger()))
2445 // TODO: don't warn for integer values?
John McCall323ed742010-05-06 08:58:33 +00002446 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall51313c32010-01-04 23:31:57 +00002447
2448 return;
2449 }
2450
John McCallf2370c92010-01-06 05:24:50 +00002451 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002452 return;
2453
John McCall323ed742010-05-06 08:58:33 +00002454 IntRange SourceRange = GetExprRange(S.Context, E);
2455 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCallf2370c92010-01-06 05:24:50 +00002456
2457 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002458 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2459 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002460 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall323ed742010-05-06 08:58:33 +00002461 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2462 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2463 }
2464
2465 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2466 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2467 SourceRange.Width == TargetRange.Width)) {
2468 unsigned DiagID = diag::warn_impcast_integer_sign;
2469
2470 // Traditionally, gcc has warned about this under -Wsign-compare.
2471 // We also want to warn about it in -Wconversion.
2472 // So if -Wconversion is off, use a completely identical diagnostic
2473 // in the sign-compare group.
2474 // The conditional-checking code will
2475 if (ICContext) {
2476 DiagID = diag::warn_impcast_integer_sign_conditional;
2477 *ICContext = true;
2478 }
2479
2480 return DiagnoseImpCast(S, E, T, DiagID);
John McCall51313c32010-01-04 23:31:57 +00002481 }
2482
2483 return;
2484}
2485
John McCall323ed742010-05-06 08:58:33 +00002486void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2487
2488void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2489 bool &ICContext) {
2490 E = E->IgnoreParenImpCasts();
2491
2492 if (isa<ConditionalOperator>(E))
2493 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2494
2495 AnalyzeImplicitConversions(S, E);
2496 if (E->getType() != T)
2497 return CheckImplicitConversion(S, E, T, &ICContext);
2498 return;
2499}
2500
2501void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2502 AnalyzeImplicitConversions(S, E->getCond());
2503
2504 bool Suspicious = false;
2505 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2506 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2507
2508 // If -Wconversion would have warned about either of the candidates
2509 // for a signedness conversion to the context type...
2510 if (!Suspicious) return;
2511
2512 // ...but it's currently ignored...
2513 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2514 return;
2515
2516 // ...and -Wsign-compare isn't...
2517 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2518 return;
2519
2520 // ...then check whether it would have warned about either of the
2521 // candidates for a signedness conversion to the condition type.
2522 if (E->getType() != T) {
2523 Suspicious = false;
2524 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2525 E->getType(), &Suspicious);
2526 if (!Suspicious)
2527 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2528 E->getType(), &Suspicious);
2529 if (!Suspicious)
2530 return;
2531 }
2532
2533 // If so, emit a diagnostic under -Wsign-compare.
2534 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2535 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2536 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2537 << lex->getType() << rex->getType()
2538 << lex->getSourceRange() << rex->getSourceRange();
2539}
2540
2541/// AnalyzeImplicitConversions - Find and report any interesting
2542/// implicit conversions in the given expression. There are a couple
2543/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2544void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2545 QualType T = OrigE->getType();
2546 Expr *E = OrigE->IgnoreParenImpCasts();
2547
2548 // For conditional operators, we analyze the arguments as if they
2549 // were being fed directly into the output.
2550 if (isa<ConditionalOperator>(E)) {
2551 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2552 CheckConditionalOperator(S, CO, T);
2553 return;
2554 }
2555
2556 // Go ahead and check any implicit conversions we might have skipped.
2557 // The non-canonical typecheck is just an optimization;
2558 // CheckImplicitConversion will filter out dead implicit conversions.
2559 if (E->getType() != T)
2560 CheckImplicitConversion(S, E, T);
2561
2562 // Now continue drilling into this expression.
2563
2564 // Skip past explicit casts.
2565 if (isa<ExplicitCastExpr>(E)) {
2566 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2567 return AnalyzeImplicitConversions(S, E);
2568 }
2569
2570 // Do a somewhat different check with comparison operators.
2571 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2572 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2573
2574 // These break the otherwise-useful invariant below. Fortunately,
2575 // we don't really need to recurse into them, because any internal
2576 // expressions should have been analyzed already when they were
2577 // built into statements.
2578 if (isa<StmtExpr>(E)) return;
2579
2580 // Don't descend into unevaluated contexts.
2581 if (isa<SizeOfAlignOfExpr>(E)) return;
2582
2583 // Now just recurse over the expression's children.
2584 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2585 I != IE; ++I)
2586 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2587}
2588
2589} // end anonymous namespace
2590
2591/// Diagnoses "dangerous" implicit conversions within the given
2592/// expression (which is a full expression). Implements -Wconversion
2593/// and -Wsign-compare.
2594void Sema::CheckImplicitConversions(Expr *E) {
2595 // Don't diagnose in unevaluated contexts.
2596 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2597 return;
2598
2599 // Don't diagnose for value- or type-dependent expressions.
2600 if (E->isTypeDependent() || E->isValueDependent())
2601 return;
2602
2603 AnalyzeImplicitConversions(*this, E);
2604}
2605
Mike Stumpf8c49212010-01-21 03:59:47 +00002606/// CheckParmsForFunctionDef - Check that the parameters of the given
2607/// function are appropriate for the definition of a function. This
2608/// takes care of any checks that cannot be performed on the
2609/// declaration itself, e.g., that the types of each of the function
2610/// parameters are complete.
2611bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2612 bool HasInvalidParm = false;
2613 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2614 ParmVarDecl *Param = FD->getParamDecl(p);
2615
2616 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2617 // function declarator that is part of a function definition of
2618 // that function shall not have incomplete type.
2619 //
2620 // This is also C++ [dcl.fct]p6.
2621 if (!Param->isInvalidDecl() &&
2622 RequireCompleteType(Param->getLocation(), Param->getType(),
2623 diag::err_typecheck_decl_incomplete_type)) {
2624 Param->setInvalidDecl();
2625 HasInvalidParm = true;
2626 }
2627
2628 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2629 // declaration of each parameter shall include an identifier.
2630 if (Param->getIdentifier() == 0 &&
2631 !Param->isImplicit() &&
2632 !getLangOptions().CPlusPlus)
2633 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigd17e3402010-02-01 05:02:49 +00002634
2635 // C99 6.7.5.3p12:
2636 // If the function declarator is not part of a definition of that
2637 // function, parameters may have incomplete type and may use the [*]
2638 // notation in their sequences of declarator specifiers to specify
2639 // variable length array types.
2640 QualType PType = Param->getOriginalType();
2641 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2642 if (AT->getSizeModifier() == ArrayType::Star) {
2643 // FIXME: This diagnosic should point the the '[*]' if source-location
2644 // information is added for it.
2645 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2646 }
2647 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002648 }
2649
2650 return HasInvalidParm;
2651}