blob: 1b689499edf9b25aa598381c6e2a1ea7586c8e43 [file] [log] [blame]
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump11289f42009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattnerb87b1b32007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Sema.h"
Ted Kremenek02087932010-07-16 02:11:22 +000016#include "clang/Analysis/Analyses/FormatString.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000017#include "clang/AST/ASTContext.h"
Ken Dyck40775002010-01-11 17:06:35 +000018#include "clang/AST/CharUnits.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Ted Kremenekc81614d2007-08-20 16:18:38 +000020#include "clang/AST/ExprCXX.h"
Ted Kremenek34f664d2008-06-16 18:00:42 +000021#include "clang/AST/ExprObjC.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000022#include "clang/AST/DeclObjC.h"
23#include "clang/AST/StmtCXX.h"
24#include "clang/AST/StmtObjC.h"
Chris Lattnerddb71912009-02-18 19:21:10 +000025#include "clang/Lex/LiteralSupport.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000026#include "clang/Lex/Preprocessor.h"
Mike Stump0c2ec772010-01-21 03:59:47 +000027#include "llvm/ADT/BitVector.h"
28#include "llvm/ADT/STLExtras.h"
Nate Begemand773fe62010-06-13 04:47:52 +000029#include "llvm/ADT/StringExtras.h"
Tom Careb7042702010-06-09 04:11:11 +000030#include "llvm/Support/raw_ostream.h"
Eric Christopher8d0c6212010-04-17 02:26:23 +000031#include "clang/Basic/TargetBuiltins.h"
Nate Begeman4904e322010-06-08 02:47:44 +000032#include "clang/Basic/TargetInfo.h"
Zhongxing Xu050379b2009-05-20 01:55:10 +000033#include <limits>
Chris Lattnerb87b1b32007-08-10 20:18:51 +000034using namespace clang;
35
Chris Lattnera26fb342009-02-18 17:49:48 +000036/// getLocationOfStringLiteralByte - Return a source location that points to the
37/// specified byte of the specified string literal.
38///
39/// Strings are amazingly complex. They can be formed from multiple tokens and
40/// can have escape sequences in them in addition to the usual trigraph and
41/// escaped newline business. This routine handles this complexity.
42///
43SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
44 unsigned ByteNo) const {
45 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump11289f42009-09-09 15:08:12 +000046
Chris Lattnera26fb342009-02-18 17:49:48 +000047 // Loop over all of the tokens in this string until we find the one that
48 // contains the byte we're looking for.
49 unsigned TokNo = 0;
50 while (1) {
51 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
52 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump11289f42009-09-09 15:08:12 +000053
Chris Lattnera26fb342009-02-18 17:49:48 +000054 // Get the spelling of the string so that we can get the data that makes up
55 // the string literal, not the identifier for the macro it is potentially
56 // expanded through.
57 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
58
59 // Re-lex the token to get its length and original spelling.
60 std::pair<FileID, unsigned> LocInfo =
61 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
Douglas Gregore0fbb832010-03-16 00:06:06 +000062 bool Invalid = false;
Benjamin Kramereb92dc02010-03-16 14:14:31 +000063 llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid);
Douglas Gregore0fbb832010-03-16 00:06:06 +000064 if (Invalid)
Douglas Gregor802b7762010-03-15 22:54:52 +000065 return StrTokSpellingLoc;
66
Benjamin Kramereb92dc02010-03-16 14:14:31 +000067 const char *StrData = Buffer.data()+LocInfo.second;
Mike Stump11289f42009-09-09 15:08:12 +000068
Chris Lattnera26fb342009-02-18 17:49:48 +000069 // Create a langops struct and enable trigraphs. This is sufficient for
70 // relexing tokens.
71 LangOptions LangOpts;
72 LangOpts.Trigraphs = true;
Mike Stump11289f42009-09-09 15:08:12 +000073
Chris Lattnera26fb342009-02-18 17:49:48 +000074 // Create a lexer starting at the beginning of this token.
Benjamin Kramereb92dc02010-03-16 14:14:31 +000075 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData,
76 Buffer.end());
Chris Lattnera26fb342009-02-18 17:49:48 +000077 Token TheTok;
78 TheLexer.LexFromRawLexer(TheTok);
Mike Stump11289f42009-09-09 15:08:12 +000079
Chris Lattner3dd56f92009-02-18 19:26:42 +000080 // Use the StringLiteralParser to compute the length of the string in bytes.
Douglas Gregor9af03022010-05-26 05:35:51 +000081 StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false);
Chris Lattner3dd56f92009-02-18 19:26:42 +000082 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump11289f42009-09-09 15:08:12 +000083
Chris Lattnerec396b52009-02-18 18:52:52 +000084 // If the byte is in this token, return the location of the byte.
Chris Lattnera26fb342009-02-18 17:49:48 +000085 if (ByteNo < TokNumBytes ||
86 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump11289f42009-09-09 15:08:12 +000087 unsigned Offset =
Douglas Gregor9af03022010-05-26 05:35:51 +000088 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP,
89 /*Complain=*/false);
Mike Stump11289f42009-09-09 15:08:12 +000090
Chris Lattnerddb71912009-02-18 19:21:10 +000091 // Now that we know the offset of the token in the spelling, use the
92 // preprocessor to get the offset in the original source.
93 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattnera26fb342009-02-18 17:49:48 +000094 }
Mike Stump11289f42009-09-09 15:08:12 +000095
Chris Lattnera26fb342009-02-18 17:49:48 +000096 // Move to the next string token.
97 ++TokNo;
98 ByteNo -= TokNumBytes;
99 }
100}
101
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +0000102/// CheckablePrintfAttr - does a function call have a "printf" attribute
103/// and arguments that merit checking?
104bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
105 if (Format->getType() == "printf") return true;
106 if (Format->getType() == "printf0") {
107 // printf0 allows null "format" string; if so don't check format/args
108 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl6eedcc12009-11-17 18:02:24 +0000109 // Does the index refer to the implicit object argument?
110 if (isa<CXXMemberCallExpr>(TheCall)) {
111 if (format_idx == 0)
112 return false;
113 --format_idx;
114 }
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +0000115 if (format_idx < TheCall->getNumArgs()) {
116 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Ted Kremenekd1668192010-02-27 01:41:03 +0000117 if (!Format->isNullPointerConstant(Context,
118 Expr::NPC_ValueDependentIsNull))
Ryan Flynnaa5e5fd2009-08-06 03:00:50 +0000119 return true;
120 }
121 }
122 return false;
123}
Chris Lattnera26fb342009-02-18 17:49:48 +0000124
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000125Action::OwningExprResult
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000126Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000127 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000128
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000129 switch (BuiltinID) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000130 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner08464942007-12-28 05:29:59 +0000131 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner2da14fb2007-12-20 00:26:33 +0000132 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner6436fb62009-02-18 06:01:06 +0000133 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000134 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000135 break;
Ted Kremeneka174c522008-07-09 17:58:53 +0000136 case Builtin::BI__builtin_stdarg_start:
Chris Lattner43be2e62007-12-19 23:59:04 +0000137 case Builtin::BI__builtin_va_start:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000138 if (SemaBuiltinVAStart(TheCall))
139 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000140 break;
Chris Lattner2da14fb2007-12-20 00:26:33 +0000141 case Builtin::BI__builtin_isgreater:
142 case Builtin::BI__builtin_isgreaterequal:
143 case Builtin::BI__builtin_isless:
144 case Builtin::BI__builtin_islessequal:
145 case Builtin::BI__builtin_islessgreater:
146 case Builtin::BI__builtin_isunordered:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000147 if (SemaBuiltinUnorderedCompare(TheCall))
148 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000149 break;
Benjamin Kramer634fc102010-02-15 22:42:31 +0000150 case Builtin::BI__builtin_fpclassify:
151 if (SemaBuiltinFPClassification(TheCall, 6))
152 return ExprError();
153 break;
Eli Friedman7e4faac2009-08-31 20:06:00 +0000154 case Builtin::BI__builtin_isfinite:
155 case Builtin::BI__builtin_isinf:
156 case Builtin::BI__builtin_isinf_sign:
157 case Builtin::BI__builtin_isnan:
158 case Builtin::BI__builtin_isnormal:
Benjamin Kramer64aae502010-02-16 10:07:31 +0000159 if (SemaBuiltinFPClassification(TheCall, 1))
Eli Friedman7e4faac2009-08-31 20:06:00 +0000160 return ExprError();
161 break;
Eli Friedmanf8353032008-05-20 08:23:37 +0000162 case Builtin::BI__builtin_return_address:
Eric Christopher8d0c6212010-04-17 02:26:23 +0000163 case Builtin::BI__builtin_frame_address: {
164 llvm::APSInt Result;
165 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000166 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000167 break;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000168 }
169 case Builtin::BI__builtin_eh_return_data_regno: {
170 llvm::APSInt Result;
171 if (SemaBuiltinConstantArg(TheCall, 0, Result))
Chris Lattnerd545ad12009-09-23 06:06:36 +0000172 return ExprError();
173 break;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000174 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000175 case Builtin::BI__builtin_shufflevector:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000176 return SemaBuiltinShuffleVector(TheCall);
177 // TheCall will be freed by the smart pointer here, but that's fine, since
178 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbarb7257262008-07-21 22:59:13 +0000179 case Builtin::BI__builtin_prefetch:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000180 if (SemaBuiltinPrefetch(TheCall))
181 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000182 break;
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000183 case Builtin::BI__builtin_object_size:
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000184 if (SemaBuiltinObjectSize(TheCall))
185 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000186 break;
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000187 case Builtin::BI__builtin_longjmp:
188 if (SemaBuiltinLongjmp(TheCall))
189 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000190 break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000191 case Builtin::BI__sync_fetch_and_add:
192 case Builtin::BI__sync_fetch_and_sub:
193 case Builtin::BI__sync_fetch_and_or:
194 case Builtin::BI__sync_fetch_and_and:
195 case Builtin::BI__sync_fetch_and_xor:
196 case Builtin::BI__sync_add_and_fetch:
197 case Builtin::BI__sync_sub_and_fetch:
198 case Builtin::BI__sync_and_and_fetch:
199 case Builtin::BI__sync_or_and_fetch:
200 case Builtin::BI__sync_xor_and_fetch:
201 case Builtin::BI__sync_val_compare_and_swap:
202 case Builtin::BI__sync_bool_compare_and_swap:
203 case Builtin::BI__sync_lock_test_and_set:
204 case Builtin::BI__sync_lock_release:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000205 return SemaBuiltinAtomicOverloaded(move(TheCallResult));
Nate Begeman4904e322010-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 Christopher8d0c6212010-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 Begeman4904e322010-06-08 02:47:44 +0000236 return true;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000237 break;
238 }
Anders Carlsson98f07902007-08-17 05:31:46 +0000239 }
Nate Begeman4904e322010-06-08 02:47:44 +0000240 return false;
241}
Mike Stump11289f42009-09-09 15:08:12 +0000242
Nate Begeman91e1fea2010-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 Begemandbafec12010-06-17 02:26:59 +0000249 return shift ? 7 : (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000250 case 1: // i16
Nate Begemandbafec12010-06-17 02:26:59 +0000251 return shift ? 15 : (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000252 case 2: // i32
Nate Begemandbafec12010-06-17 02:26:59 +0000253 return shift ? 31 : (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000254 case 3: // i64
Nate Begemandbafec12010-06-17 02:26:59 +0000255 return shift ? 63 : (1 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000256 case 4: // f32
257 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000258 return (2 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000259 case 5: // poly8
260 assert(!shift && "cannot shift polynomial types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000261 return (8 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000262 case 6: // poly16
263 assert(!shift && "cannot shift polynomial types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000264 return (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000265 case 7: // float16
266 assert(!shift && "cannot shift float types!");
Nate Begemandbafec12010-06-17 02:26:59 +0000267 return (4 << (int)quad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000268 }
269 return 0;
270}
271
Nate Begeman4904e322010-06-08 02:47:44 +0000272bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Nate Begeman55483092010-06-09 01:10:23 +0000273 llvm::APSInt Result;
274
Nate Begemand773fe62010-06-13 04:47:52 +0000275 unsigned mask = 0;
Nate Begeman91e1fea2010-06-14 05:21:25 +0000276 unsigned TV = 0;
Nate Begeman55483092010-06-09 01:10:23 +0000277 switch (BuiltinID) {
Nate Begeman35f4c1c2010-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 Begeman55483092010-06-09 01:10:23 +0000281 }
282
Nate Begemand773fe62010-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 Begeman91e1fea2010-06-14 05:21:25 +0000290 TV = Result.getLimitedValue(32);
291 if ((TV > 31) || (mask & (1 << TV)) == 0)
Nate Begemand773fe62010-06-13 04:47:52 +0000292 return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
293 << TheCall->getArg(ArgNo)->getSourceRange();
294 }
Nate Begeman55483092010-06-09 01:10:23 +0000295
Nate Begemand773fe62010-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 Begeman91e1fea2010-06-14 05:21:25 +0000298 unsigned i = 0, l = 0, u = 0;
Nate Begemand773fe62010-06-13 04:47:52 +0000299 switch (BuiltinID) {
300 default: return false;
Nate Begeman35f4c1c2010-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 Begemand773fe62010-06-13 04:47:52 +0000304 };
305
Nate Begeman91e1fea2010-06-14 05:21:25 +0000306 // Check that the immediate argument is actually a constant.
Nate Begemand773fe62010-06-13 04:47:52 +0000307 if (SemaBuiltinConstantArg(TheCall, i, Result))
308 return true;
309
Nate Begeman91e1fea2010-06-14 05:21:25 +0000310 // Range check against the upper/lower values for this isntruction.
Nate Begemand773fe62010-06-13 04:47:52 +0000311 unsigned Val = Result.getZExtValue();
Nate Begeman91e1fea2010-06-14 05:21:25 +0000312 if (Val < l || Val > (u + l))
Nate Begemand773fe62010-06-13 04:47:52 +0000313 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Nate Begeman91e1fea2010-06-14 05:21:25 +0000314 << llvm::utostr(l) << llvm::utostr(u+l)
315 << TheCall->getArg(i)->getSourceRange();
Nate Begemand773fe62010-06-13 04:47:52 +0000316
Nate Begeman4904e322010-06-08 02:47:44 +0000317 return false;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000318}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +0000319
Anders Carlssonbc4c1072009-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 Stump11289f42009-09-09 15:08:12 +0000330
Daniel Dunbardd9b2d12008-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 Lattnerb87b1b32007-08-10 20:18:51 +0000335 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000336 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ted Kremenek02087932010-07-16 02:11:22 +0000337 const bool b = Format->getType() == "scanf";
338 if (b || CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek9723bcf2009-02-27 17:58:43 +0000339 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000340 CheckPrintfScanfArguments(TheCall, HasVAListArg,
341 Format->getFormatIdx() - 1,
342 HasVAListArg ? 0 : Format->getFirstArg() - 1,
343 !b);
Douglas Gregore711f702009-02-14 18:57:46 +0000344 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000345 }
Mike Stump11289f42009-09-09 15:08:12 +0000346
347 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000348 NonNull = NonNull->getNext<NonNullAttr>())
349 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000350
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000351 return false;
Anders Carlsson98f07902007-08-17 05:31:46 +0000352}
353
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000354bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000355 // Printf checking.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000356 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000357 if (!Format)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000358 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000359
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000360 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
361 if (!V)
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000362 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000363
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000364 QualType Ty = V->getType();
365 if (!Ty->isBlockPointerType())
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000366 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000367
Ted Kremenek02087932010-07-16 02:11:22 +0000368 const bool b = Format->getType() == "scanf";
369 if (!b && !CheckablePrintfAttr(Format, TheCall))
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000370 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000371
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000372 bool HasVAListArg = Format->getFirstArg() == 0;
Ted Kremenek02087932010-07-16 02:11:22 +0000373 CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
374 HasVAListArg ? 0 : Format->getFirstArg() - 1, !b);
Anders Carlssonbc4c1072009-08-16 01:56:34 +0000375
376 return false;
Fariborz Jahanianc1585be2009-05-18 21:05:18 +0000377}
378
Chris Lattnerdc046542009-05-08 06:58:22 +0000379/// SemaBuiltinAtomicOverloaded - We have a call to a function like
380/// __sync_fetch_and_add, which is an overloaded function based on the pointer
381/// type of its first argument. The main ActOnCallExpr routines have already
382/// promoted the types of arguments because all of these calls are prototyped as
383/// void(...).
384///
385/// This function goes through and does final semantic checking for these
386/// builtins,
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000387Sema::OwningExprResult
388Sema::SemaBuiltinAtomicOverloaded(OwningExprResult TheCallResult) {
389 CallExpr *TheCall = (CallExpr *)TheCallResult.get();
Chris Lattnerdc046542009-05-08 06:58:22 +0000390 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
391 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
392
393 // Ensure that we have at least one argument to do type inference from.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000394 if (TheCall->getNumArgs() < 1) {
395 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
396 << 0 << 1 << TheCall->getNumArgs()
397 << TheCall->getCallee()->getSourceRange();
398 return ExprError();
399 }
Mike Stump11289f42009-09-09 15:08:12 +0000400
Chris Lattnerdc046542009-05-08 06:58:22 +0000401 // Inspect the first argument of the atomic builtin. This should always be
402 // a pointer type, whose element is an integral scalar or pointer type.
403 // Because it is a pointer type, we don't have to worry about any implicit
404 // casts here.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000405 // FIXME: We don't allow floating point scalars as input.
Chris Lattnerdc046542009-05-08 06:58:22 +0000406 Expr *FirstArg = TheCall->getArg(0);
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000407 if (!FirstArg->getType()->isPointerType()) {
408 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
409 << FirstArg->getType() << FirstArg->getSourceRange();
410 return ExprError();
411 }
Mike Stump11289f42009-09-09 15:08:12 +0000412
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000413 QualType ValType =
414 FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +0000415 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000416 !ValType->isBlockPointerType()) {
417 Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
418 << FirstArg->getType() << FirstArg->getSourceRange();
419 return ExprError();
420 }
Chris Lattnerdc046542009-05-08 06:58:22 +0000421
Chandler Carruth3973af72010-07-18 20:54:12 +0000422 // The majority of builtins return a value, but a few have special return
423 // types, so allow them to override appropriately below.
424 QualType ResultType = ValType;
425
Chris Lattnerdc046542009-05-08 06:58:22 +0000426 // We need to figure out which concrete builtin this maps onto. For example,
427 // __sync_fetch_and_add with a 2 byte object turns into
428 // __sync_fetch_and_add_2.
429#define BUILTIN_ROW(x) \
430 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
431 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump11289f42009-09-09 15:08:12 +0000432
Chris Lattnerdc046542009-05-08 06:58:22 +0000433 static const unsigned BuiltinIndices[][5] = {
434 BUILTIN_ROW(__sync_fetch_and_add),
435 BUILTIN_ROW(__sync_fetch_and_sub),
436 BUILTIN_ROW(__sync_fetch_and_or),
437 BUILTIN_ROW(__sync_fetch_and_and),
438 BUILTIN_ROW(__sync_fetch_and_xor),
Mike Stump11289f42009-09-09 15:08:12 +0000439
Chris Lattnerdc046542009-05-08 06:58:22 +0000440 BUILTIN_ROW(__sync_add_and_fetch),
441 BUILTIN_ROW(__sync_sub_and_fetch),
442 BUILTIN_ROW(__sync_and_and_fetch),
443 BUILTIN_ROW(__sync_or_and_fetch),
444 BUILTIN_ROW(__sync_xor_and_fetch),
Mike Stump11289f42009-09-09 15:08:12 +0000445
Chris Lattnerdc046542009-05-08 06:58:22 +0000446 BUILTIN_ROW(__sync_val_compare_and_swap),
447 BUILTIN_ROW(__sync_bool_compare_and_swap),
448 BUILTIN_ROW(__sync_lock_test_and_set),
449 BUILTIN_ROW(__sync_lock_release)
450 };
Mike Stump11289f42009-09-09 15:08:12 +0000451#undef BUILTIN_ROW
452
Chris Lattnerdc046542009-05-08 06:58:22 +0000453 // Determine the index of the size.
454 unsigned SizeIndex;
Ken Dyck40775002010-01-11 17:06:35 +0000455 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattnerdc046542009-05-08 06:58:22 +0000456 case 1: SizeIndex = 0; break;
457 case 2: SizeIndex = 1; break;
458 case 4: SizeIndex = 2; break;
459 case 8: SizeIndex = 3; break;
460 case 16: SizeIndex = 4; break;
461 default:
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000462 Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
463 << FirstArg->getType() << FirstArg->getSourceRange();
464 return ExprError();
Chris Lattnerdc046542009-05-08 06:58:22 +0000465 }
Mike Stump11289f42009-09-09 15:08:12 +0000466
Chris Lattnerdc046542009-05-08 06:58:22 +0000467 // Each of these builtins has one pointer argument, followed by some number of
468 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
469 // that we ignore. Find out which row of BuiltinIndices to read from as well
470 // as the number of fixed args.
Douglas Gregor15fc9562009-09-12 00:22:50 +0000471 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattnerdc046542009-05-08 06:58:22 +0000472 unsigned BuiltinIndex, NumFixed = 1;
473 switch (BuiltinID) {
474 default: assert(0 && "Unknown overloaded atomic builtin!");
475 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
476 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
477 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
478 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
479 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Mike Stump11289f42009-09-09 15:08:12 +0000480
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000481 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break;
482 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break;
483 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break;
484 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break;
485 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break;
Mike Stump11289f42009-09-09 15:08:12 +0000486
Chris Lattnerdc046542009-05-08 06:58:22 +0000487 case Builtin::BI__sync_val_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000488 BuiltinIndex = 10;
Chris Lattnerdc046542009-05-08 06:58:22 +0000489 NumFixed = 2;
490 break;
491 case Builtin::BI__sync_bool_compare_and_swap:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000492 BuiltinIndex = 11;
Chris Lattnerdc046542009-05-08 06:58:22 +0000493 NumFixed = 2;
Chandler Carruth3973af72010-07-18 20:54:12 +0000494 ResultType = Context.BoolTy;
Chris Lattnerdc046542009-05-08 06:58:22 +0000495 break;
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000496 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break;
Chris Lattnerdc046542009-05-08 06:58:22 +0000497 case Builtin::BI__sync_lock_release:
Daniel Dunbar3f540c0d2010-03-25 17:13:09 +0000498 BuiltinIndex = 13;
Chris Lattnerdc046542009-05-08 06:58:22 +0000499 NumFixed = 0;
Chandler Carruth3973af72010-07-18 20:54:12 +0000500 ResultType = Context.VoidTy;
Chris Lattnerdc046542009-05-08 06:58:22 +0000501 break;
502 }
Mike Stump11289f42009-09-09 15:08:12 +0000503
Chris Lattnerdc046542009-05-08 06:58:22 +0000504 // Now that we know how many fixed arguments we expect, first check that we
505 // have at least that many.
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000506 if (TheCall->getNumArgs() < 1+NumFixed) {
507 Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
508 << 0 << 1+NumFixed << TheCall->getNumArgs()
509 << TheCall->getCallee()->getSourceRange();
510 return ExprError();
511 }
Mike Stump11289f42009-09-09 15:08:12 +0000512
Chris Lattner5b9241b2009-05-08 15:36:58 +0000513 // Get the decl for the concrete builtin from this, we can tell what the
514 // concrete integer type we should convert to is.
515 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
516 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
517 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump11289f42009-09-09 15:08:12 +0000518 FunctionDecl *NewBuiltinDecl =
Chris Lattner5b9241b2009-05-08 15:36:58 +0000519 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
520 TUScope, false, DRE->getLocStart()));
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000521
Chandler Carruthbc8cab12010-07-18 07:23:17 +0000522 // The first argument is by definition correct, we use it's type as the type
523 // of the entire operation. Walk the remaining arguments promoting them to
524 // the deduced value type.
Chris Lattnerdc046542009-05-08 06:58:22 +0000525 for (unsigned i = 0; i != NumFixed; ++i) {
526 Expr *Arg = TheCall->getArg(i+1);
Mike Stump11289f42009-09-09 15:08:12 +0000527
Chris Lattnerdc046542009-05-08 06:58:22 +0000528 // If the argument is an implicit cast, then there was a promotion due to
529 // "...", just remove it now.
530 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
531 Arg = ICE->getSubExpr();
532 ICE->setSubExpr(0);
Chris Lattnerdc046542009-05-08 06:58:22 +0000533 TheCall->setArg(i+1, Arg);
534 }
Mike Stump11289f42009-09-09 15:08:12 +0000535
Chris Lattnerdc046542009-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 Carlssonf10e4142009-08-07 22:21:05 +0000538 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlssona70cff62010-04-24 19:06:50 +0000539 CXXBaseSpecifierArray BasePath;
540 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath))
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000541 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000542
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000548 // FIXME: Do this check.
Anders Carlssonb34f8822010-04-24 16:36:20 +0000549 ImpCastExprToType(Arg, ValType, Kind);
Chris Lattnerdc046542009-05-08 06:58:22 +0000550 TheCall->setArg(i+1, Arg);
551 }
Mike Stump11289f42009-09-09 15:08:12 +0000552
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000556
Chris Lattnerdc046542009-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 Stump11289f42009-09-09 15:08:12 +0000562
Chandler Carruthbc8cab12010-07-18 07:23:17 +0000563 // Change the result type of the call to match the original value type. This
564 // is arbitrary, but the codegen for these builtins ins design to handle it
565 // gracefully.
Chandler Carruth3973af72010-07-18 20:54:12 +0000566 TheCall->setType(ResultType);
Chandler Carruth741e5ce2010-07-09 18:59:35 +0000567
568 return move(TheCallResult);
Chris Lattnerdc046542009-05-08 06:58:22 +0000569}
570
571
Chris Lattner6436fb62009-02-18 06:01:06 +0000572/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson98f07902007-08-17 05:31:46 +0000573/// CFString constructor is correct
Steve Narofffb46e862009-04-13 20:26:29 +0000574/// FIXME: GCC currently emits the following warning:
Mike Stump11289f42009-09-09 15:08:12 +0000575/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffb46e862009-04-13 20:26:29 +0000576/// belong to the input codeset UTF-8"
577/// Note: It might also make sense to do the UTF-16 conversion here (would
578/// simplify the backend).
Chris Lattner6436fb62009-02-18 06:01:06 +0000579bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattnerf2660962008-02-13 01:02:39 +0000580 Arg = Arg->IgnoreParenCasts();
Anders Carlsson98f07902007-08-17 05:31:46 +0000581 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
582
583 if (!Literal || Literal->isWide()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000584 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
585 << Arg->getSourceRange();
Anders Carlssona3a9c432007-08-17 15:44:17 +0000586 return true;
Anders Carlsson98f07902007-08-17 05:31:46 +0000587 }
Mike Stump11289f42009-09-09 15:08:12 +0000588
Daniel Dunbarb879c3c2009-09-22 10:03:52 +0000589 const char *Data = Literal->getStrData();
590 unsigned Length = Literal->getByteLength();
Mike Stump11289f42009-09-09 15:08:12 +0000591
Daniel Dunbarb879c3c2009-09-22 10:03:52 +0000592 for (unsigned i = 0; i < Length; ++i) {
593 if (!Data[i]) {
594 Diag(getLocationOfStringLiteralByte(Literal, i),
595 diag::warn_cfstring_literal_contains_nul_character)
596 << Arg->getSourceRange();
597 break;
598 }
599 }
Mike Stump11289f42009-09-09 15:08:12 +0000600
Anders Carlssona3a9c432007-08-17 15:44:17 +0000601 return false;
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000602}
603
Chris Lattnere202e6a2007-12-20 00:05:45 +0000604/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
605/// Emit an error and return true on failure, return false on success.
Chris Lattner08464942007-12-28 05:29:59 +0000606bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
607 Expr *Fn = TheCall->getCallee();
608 if (TheCall->getNumArgs() > 2) {
Chris Lattnercedef8d2008-11-21 18:44:24 +0000609 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000610 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000611 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
612 << Fn->getSourceRange()
Mike Stump11289f42009-09-09 15:08:12 +0000613 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000614 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner43be2e62007-12-19 23:59:04 +0000615 return true;
616 }
Eli Friedmanbb2b3be2008-12-15 22:05:35 +0000617
618 if (TheCall->getNumArgs() < 2) {
Eric Christopherabf1e182010-04-16 04:48:22 +0000619 return Diag(TheCall->getLocEnd(),
620 diag::err_typecheck_call_too_few_args_at_least)
621 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Eli Friedmanbb2b3be2008-12-15 22:05:35 +0000622 }
623
Chris Lattnere202e6a2007-12-20 00:05:45 +0000624 // Determine whether the current function is variadic or not.
Douglas Gregor9a28e842010-03-01 23:15:13 +0000625 BlockScopeInfo *CurBlock = getCurBlock();
Chris Lattnere202e6a2007-12-20 00:05:45 +0000626 bool isVariadic;
Steve Naroff439a3e42009-04-15 19:33:47 +0000627 if (CurBlock)
John McCall8e346702010-06-04 19:02:56 +0000628 isVariadic = CurBlock->TheDecl->isVariadic();
Ted Kremenek186a0742010-04-29 16:49:01 +0000629 else if (FunctionDecl *FD = getCurFunctionDecl())
630 isVariadic = FD->isVariadic();
631 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000632 isVariadic = getCurMethodDecl()->isVariadic();
Mike Stump11289f42009-09-09 15:08:12 +0000633
Chris Lattnere202e6a2007-12-20 00:05:45 +0000634 if (!isVariadic) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000635 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
636 return true;
637 }
Mike Stump11289f42009-09-09 15:08:12 +0000638
Chris Lattner43be2e62007-12-19 23:59:04 +0000639 // Verify that the second argument to the builtin is the last argument of the
640 // current function or method.
641 bool SecondArgIsLastNamedArgument = false;
Anders Carlsson73cc5072008-02-13 01:22:59 +0000642 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +0000643
Anders Carlsson6a8350b2008-02-11 04:20:54 +0000644 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
645 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner43be2e62007-12-19 23:59:04 +0000646 // FIXME: This isn't correct for methods (results in bogus warning).
647 // Get the last formal in the current function.
Anders Carlsson6a8350b2008-02-11 04:20:54 +0000648 const ParmVarDecl *LastArg;
Steve Naroff439a3e42009-04-15 19:33:47 +0000649 if (CurBlock)
650 LastArg = *(CurBlock->TheDecl->param_end()-1);
651 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner79413952008-12-04 23:50:19 +0000652 LastArg = *(FD->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000653 else
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000654 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner43be2e62007-12-19 23:59:04 +0000655 SecondArgIsLastNamedArgument = PV == LastArg;
656 }
657 }
Mike Stump11289f42009-09-09 15:08:12 +0000658
Chris Lattner43be2e62007-12-19 23:59:04 +0000659 if (!SecondArgIsLastNamedArgument)
Mike Stump11289f42009-09-09 15:08:12 +0000660 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner43be2e62007-12-19 23:59:04 +0000661 diag::warn_second_parameter_of_va_start_not_last_named_argument);
662 return false;
Eli Friedmanf8353032008-05-20 08:23:37 +0000663}
Chris Lattner43be2e62007-12-19 23:59:04 +0000664
Chris Lattner2da14fb2007-12-20 00:26:33 +0000665/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
666/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner08464942007-12-28 05:29:59 +0000667bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
668 if (TheCall->getNumArgs() < 2)
Chris Lattnercedef8d2008-11-21 18:44:24 +0000669 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000670 << 0 << 2 << TheCall->getNumArgs()/*function call*/;
Chris Lattner08464942007-12-28 05:29:59 +0000671 if (TheCall->getNumArgs() > 2)
Mike Stump11289f42009-09-09 15:08:12 +0000672 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000673 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000674 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Chris Lattner3b054132008-11-19 05:08:23 +0000675 << SourceRange(TheCall->getArg(2)->getLocStart(),
676 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000677
Chris Lattner08464942007-12-28 05:29:59 +0000678 Expr *OrigArg0 = TheCall->getArg(0);
679 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorc25f7662009-05-19 22:10:17 +0000680
Chris Lattner2da14fb2007-12-20 00:26:33 +0000681 // Do standard promotions between the two arguments, returning their common
682 // type.
Chris Lattner08464942007-12-28 05:29:59 +0000683 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar96f86772009-02-19 19:28:43 +0000684
685 // Make sure any conversions are pushed back into the call; this is
686 // type safe since unordered compare builtins are declared as "_Bool
687 // foo(...)".
688 TheCall->setArg(0, OrigArg0);
689 TheCall->setArg(1, OrigArg1);
Mike Stump11289f42009-09-09 15:08:12 +0000690
Douglas Gregorc25f7662009-05-19 22:10:17 +0000691 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
692 return false;
693
Chris Lattner2da14fb2007-12-20 00:26:33 +0000694 // If the common type isn't a real floating type, then the arguments were
695 // invalid for this operation.
696 if (!Res->isRealFloatingType())
Mike Stump11289f42009-09-09 15:08:12 +0000697 return Diag(OrigArg0->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000698 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000699 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattner3b054132008-11-19 05:08:23 +0000700 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump11289f42009-09-09 15:08:12 +0000701
Chris Lattner2da14fb2007-12-20 00:26:33 +0000702 return false;
703}
704
Benjamin Kramer634fc102010-02-15 22:42:31 +0000705/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
706/// __builtin_isnan and friends. This is declared to take (...), so we have
Benjamin Kramer64aae502010-02-16 10:07:31 +0000707/// to check everything. We expect the last argument to be a floating point
708/// value.
709bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
710 if (TheCall->getNumArgs() < NumArgs)
Eli Friedman7e4faac2009-08-31 20:06:00 +0000711 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
Eric Christopherabf1e182010-04-16 04:48:22 +0000712 << 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
Benjamin Kramer64aae502010-02-16 10:07:31 +0000713 if (TheCall->getNumArgs() > NumArgs)
714 return Diag(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000715 diag::err_typecheck_call_too_many_args)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000716 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
Benjamin Kramer64aae502010-02-16 10:07:31 +0000717 << SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000718 (*(TheCall->arg_end()-1))->getLocEnd());
719
Benjamin Kramer64aae502010-02-16 10:07:31 +0000720 Expr *OrigArg = TheCall->getArg(NumArgs-1);
Mike Stump11289f42009-09-09 15:08:12 +0000721
Eli Friedman7e4faac2009-08-31 20:06:00 +0000722 if (OrigArg->isTypeDependent())
723 return false;
724
Chris Lattner68784ef2010-05-06 05:50:07 +0000725 // This operation requires a non-_Complex floating-point number.
Eli Friedman7e4faac2009-08-31 20:06:00 +0000726 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump11289f42009-09-09 15:08:12 +0000727 return Diag(OrigArg->getLocStart(),
Eli Friedman7e4faac2009-08-31 20:06:00 +0000728 diag::err_typecheck_call_invalid_unary_fp)
729 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +0000730
Chris Lattner68784ef2010-05-06 05:50:07 +0000731 // If this is an implicit conversion from float -> double, remove it.
732 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
733 Expr *CastArg = Cast->getSubExpr();
734 if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
735 assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
736 "promotion from float to double is the only expected cast here");
737 Cast->setSubExpr(0);
Chris Lattner68784ef2010-05-06 05:50:07 +0000738 TheCall->setArg(NumArgs-1, CastArg);
739 OrigArg = CastArg;
740 }
741 }
742
Eli Friedman7e4faac2009-08-31 20:06:00 +0000743 return false;
744}
745
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000746/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
747// This is declared to take (...), so we have to check everything.
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000748Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Nate Begemana0110022010-06-08 00:16:34 +0000749 if (TheCall->getNumArgs() < 2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000750 return ExprError(Diag(TheCall->getLocEnd(),
Eric Christopherabf1e182010-04-16 04:48:22 +0000751 diag::err_typecheck_call_too_few_args_at_least)
Nate Begemana0110022010-06-08 00:16:34 +0000752 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
Eric Christopherabf1e182010-04-16 04:48:22 +0000753 << TheCall->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000754
Nate Begemana0110022010-06-08 00:16:34 +0000755 // Determine which of the following types of shufflevector we're checking:
756 // 1) unary, vector mask: (lhs, mask)
757 // 2) binary, vector mask: (lhs, rhs, mask)
758 // 3) binary, scalar mask: (lhs, rhs, index, ..., index)
759 QualType resType = TheCall->getArg(0)->getType();
760 unsigned numElements = 0;
761
Douglas Gregorc25f7662009-05-19 22:10:17 +0000762 if (!TheCall->getArg(0)->isTypeDependent() &&
763 !TheCall->getArg(1)->isTypeDependent()) {
Nate Begemana0110022010-06-08 00:16:34 +0000764 QualType LHSType = TheCall->getArg(0)->getType();
765 QualType RHSType = TheCall->getArg(1)->getType();
766
767 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000768 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000769 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000770 TheCall->getArg(1)->getLocEnd());
771 return ExprError();
772 }
Nate Begemana0110022010-06-08 00:16:34 +0000773
774 numElements = LHSType->getAs<VectorType>()->getNumElements();
775 unsigned numResElements = TheCall->getNumArgs() - 2;
Mike Stump11289f42009-09-09 15:08:12 +0000776
Nate Begemana0110022010-06-08 00:16:34 +0000777 // Check to see if we have a call with 2 vector arguments, the unary shuffle
778 // with mask. If so, verify that RHS is an integer vector type with the
779 // same number of elts as lhs.
780 if (TheCall->getNumArgs() == 2) {
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +0000781 if (!RHSType->hasIntegerRepresentation() ||
Nate Begemana0110022010-06-08 00:16:34 +0000782 RHSType->getAs<VectorType>()->getNumElements() != numElements)
783 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
784 << SourceRange(TheCall->getArg(1)->getLocStart(),
785 TheCall->getArg(1)->getLocEnd());
786 numResElements = numElements;
787 }
788 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000789 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump11289f42009-09-09 15:08:12 +0000790 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorc25f7662009-05-19 22:10:17 +0000791 TheCall->getArg(1)->getLocEnd());
792 return ExprError();
Nate Begemana0110022010-06-08 00:16:34 +0000793 } else if (numElements != numResElements) {
794 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
Chris Lattner37141f42010-06-23 06:00:24 +0000795 resType = Context.getVectorType(eltType, numResElements,
796 VectorType::NotAltiVec);
Douglas Gregorc25f7662009-05-19 22:10:17 +0000797 }
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000798 }
799
800 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorc25f7662009-05-19 22:10:17 +0000801 if (TheCall->getArg(i)->isTypeDependent() ||
802 TheCall->getArg(i)->isValueDependent())
803 continue;
804
Nate Begemana0110022010-06-08 00:16:34 +0000805 llvm::APSInt Result(32);
806 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
807 return ExprError(Diag(TheCall->getLocStart(),
808 diag::err_shufflevector_nonconstant_argument)
809 << TheCall->getArg(i)->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000810
Chris Lattner7ab824e2008-08-10 02:05:13 +0000811 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000812 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000813 diag::err_shufflevector_argument_too_large)
Sebastian Redlc215cfc2009-01-19 00:08:26 +0000814 << TheCall->getArg(i)->getSourceRange());
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000815 }
816
817 llvm::SmallVector<Expr*, 32> exprs;
818
Chris Lattner7ab824e2008-08-10 02:05:13 +0000819 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000820 exprs.push_back(TheCall->getArg(i));
821 TheCall->setArg(i, 0);
822 }
823
Nate Begemanf485fb52009-08-12 02:10:25 +0000824 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
Nate Begemana0110022010-06-08 00:16:34 +0000825 exprs.size(), resType,
Ted Kremenek5a201952009-02-07 01:47:29 +0000826 TheCall->getCallee()->getLocStart(),
827 TheCall->getRParenLoc()));
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000828}
Chris Lattner43be2e62007-12-19 23:59:04 +0000829
Daniel Dunbarb7257262008-07-21 22:59:13 +0000830/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
831// This is declared to take (const void*, ...) and can take two
832// optional constant int args.
833bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattner3b054132008-11-19 05:08:23 +0000834 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000835
Chris Lattner3b054132008-11-19 05:08:23 +0000836 if (NumArgs > 3)
Eric Christopher2a5aaff2010-04-16 04:56:46 +0000837 return Diag(TheCall->getLocEnd(),
838 diag::err_typecheck_call_too_many_args_at_most)
839 << 0 /*function call*/ << 3 << NumArgs
840 << TheCall->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000841
842 // Argument 0 is checked for us and the remaining arguments must be
843 // constant integers.
Chris Lattner3b054132008-11-19 05:08:23 +0000844 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbarb7257262008-07-21 22:59:13 +0000845 Expr *Arg = TheCall->getArg(i);
Eric Christopher8d0c6212010-04-17 02:26:23 +0000846
Eli Friedman5efba262009-12-04 00:30:06 +0000847 llvm::APSInt Result;
Eric Christopher8d0c6212010-04-17 02:26:23 +0000848 if (SemaBuiltinConstantArg(TheCall, i, Result))
849 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000850
Daniel Dunbarb7257262008-07-21 22:59:13 +0000851 // FIXME: gcc issues a warning and rewrites these to 0. These
852 // seems especially odd for the third argument since the default
853 // is 3.
Chris Lattner3b054132008-11-19 05:08:23 +0000854 if (i == 1) {
Eli Friedman5efba262009-12-04 00:30:06 +0000855 if (Result.getLimitedValue() > 1)
Chris Lattner3b054132008-11-19 05:08:23 +0000856 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000857 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000858 } else {
Eli Friedman5efba262009-12-04 00:30:06 +0000859 if (Result.getLimitedValue() > 3)
Chris Lattner3b054132008-11-19 05:08:23 +0000860 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattnerd545ad12009-09-23 06:06:36 +0000861 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbarb7257262008-07-21 22:59:13 +0000862 }
863 }
864
Chris Lattner3b054132008-11-19 05:08:23 +0000865 return false;
Daniel Dunbarb7257262008-07-21 22:59:13 +0000866}
867
Eric Christopher8d0c6212010-04-17 02:26:23 +0000868/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
869/// TheCall is a constant expression.
870bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
871 llvm::APSInt &Result) {
872 Expr *Arg = TheCall->getArg(ArgNum);
873 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
874 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
875
876 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
877
878 if (!Arg->isIntegerConstantExpr(Result, Context))
879 return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
Eric Christopher63448c32010-04-19 18:23:02 +0000880 << FDecl->getDeclName() << Arg->getSourceRange();
Eric Christopher8d0c6212010-04-17 02:26:23 +0000881
Chris Lattnerd545ad12009-09-23 06:06:36 +0000882 return false;
883}
884
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000885/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
886/// int type). This simply type checks that type is one of the defined
887/// constants (0-3).
Eric Christopherc8791562009-12-23 03:49:37 +0000888// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000889bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
Eric Christopher8d0c6212010-04-17 02:26:23 +0000890 llvm::APSInt Result;
891
892 // Check constant-ness first.
893 if (SemaBuiltinConstantArg(TheCall, 1, Result))
894 return true;
895
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000896 Expr *Arg = TheCall->getArg(1);
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000897 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattner3b054132008-11-19 05:08:23 +0000898 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
899 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbarb0d34c82008-09-03 21:13:56 +0000900 }
901
902 return false;
903}
904
Eli Friedmanc97d0142009-05-03 06:04:26 +0000905/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000906/// This checks that val is a constant 1.
907bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
908 Expr *Arg = TheCall->getArg(1);
Eric Christopher8d0c6212010-04-17 02:26:23 +0000909 llvm::APSInt Result;
Douglas Gregorc25f7662009-05-19 22:10:17 +0000910
Eric Christopher8d0c6212010-04-17 02:26:23 +0000911 // TODO: This is less than ideal. Overload this to take a value.
912 if (SemaBuiltinConstantArg(TheCall, 1, Result))
913 return true;
914
915 if (Result != 1)
Eli Friedmaneed8ad22009-05-03 04:46:36 +0000916 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
917 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
918
919 return false;
920}
921
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000922// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000923bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
924 bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +0000925 unsigned format_idx, unsigned firstDataArg,
926 bool isPrintf) {
927
Douglas Gregorc25f7662009-05-19 22:10:17 +0000928 if (E->isTypeDependent() || E->isValueDependent())
929 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000930
931 switch (E->getStmtClass()) {
932 case Stmt::ConditionalOperatorClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000933 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Ted Kremenek02087932010-07-16 02:11:22 +0000934 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg,
935 format_idx, firstDataArg, isPrintf)
936 && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg,
937 format_idx, firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000938 }
939
940 case Stmt::ImplicitCastExprClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000941 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000942 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +0000943 format_idx, firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000944 }
945
946 case Stmt::ParenExprClass: {
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000947 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000948 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +0000949 format_idx, firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000950 }
Mike Stump11289f42009-09-09 15:08:12 +0000951
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000952 case Stmt::DeclRefExprClass: {
953 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +0000954
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000955 // As an exception, do not flag errors for variables binding to
956 // const string literals.
957 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
958 bool isConstant = false;
959 QualType T = DR->getType();
Ted Kremenek6dfeb552009-01-12 23:09:09 +0000960
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000961 if (const ArrayType *AT = Context.getAsArrayType(T)) {
962 isConstant = AT->getElementType().isConstant(Context);
Mike Stump12b8ce12009-08-04 21:02:39 +0000963 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump11289f42009-09-09 15:08:12 +0000964 isConstant = T.isConstant(Context) &&
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000965 PT->getPointeeType().isConstant(Context);
966 }
Mike Stump11289f42009-09-09 15:08:12 +0000967
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000968 if (isConstant) {
Sebastian Redl5ca79842010-02-01 20:16:42 +0000969 if (const Expr *Init = VD->getAnyInitializer())
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000970 return SemaCheckStringLiteral(Init, TheCall,
Ted Kremenek02087932010-07-16 02:11:22 +0000971 HasVAListArg, format_idx, firstDataArg,
972 isPrintf);
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000973 }
Mike Stump11289f42009-09-09 15:08:12 +0000974
Anders Carlssonb012ca92009-06-28 19:55:58 +0000975 // For vprintf* functions (i.e., HasVAListArg==true), we add a
976 // special check to see if the format string is a function parameter
977 // of the function calling the printf function. If the function
978 // has an attribute indicating it is a printf-like function, then we
979 // should suppress warnings concerning non-literals being used in a call
980 // to a vprintf function. For example:
981 //
982 // void
983 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
984 // va_list ap;
985 // va_start(ap, fmt);
986 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
987 // ...
988 //
989 //
990 // FIXME: We don't have full attribute support yet, so just check to see
991 // if the argument is a DeclRefExpr that references a parameter. We'll
992 // add proper support for checking the attribute later.
993 if (HasVAListArg)
994 if (isa<ParmVarDecl>(VD))
995 return true;
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000996 }
Mike Stump11289f42009-09-09 15:08:12 +0000997
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000998 return false;
999 }
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001000
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001001 case Stmt::CallExprClass: {
1002 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001003 if (const ImplicitCastExpr *ICE
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001004 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
1005 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1006 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001007 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001008 unsigned ArgIndex = FA->getFormatIdx();
1009 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump11289f42009-09-09 15:08:12 +00001010
1011 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00001012 format_idx, firstDataArg, isPrintf);
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001013 }
1014 }
1015 }
1016 }
Mike Stump11289f42009-09-09 15:08:12 +00001017
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00001018 return false;
1019 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001020 case Stmt::ObjCStringLiteralClass:
1021 case Stmt::StringLiteralClass: {
1022 const StringLiteral *StrE = NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001023
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001024 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001025 StrE = ObjCFExpr->getString();
1026 else
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001027 StrE = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001028
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001029 if (StrE) {
Ted Kremenek02087932010-07-16 02:11:22 +00001030 CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx,
1031 firstDataArg, isPrintf);
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001032 return true;
1033 }
Mike Stump11289f42009-09-09 15:08:12 +00001034
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001035 return false;
1036 }
Mike Stump11289f42009-09-09 15:08:12 +00001037
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001038 default:
1039 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001040 }
1041}
1042
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001043void
Mike Stump11289f42009-09-09 15:08:12 +00001044Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
1045 const CallExpr *TheCall) {
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001046 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
1047 i != e; ++i) {
Chris Lattner23464b82009-05-25 18:23:36 +00001048 const Expr *ArgExpr = TheCall->getArg(*i);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001049 if (ArgExpr->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00001050 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner23464b82009-05-25 18:23:36 +00001051 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
1052 << ArgExpr->getSourceRange();
Fariborz Jahaniancd1a88d2009-05-21 18:48:51 +00001053 }
1054}
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001055
Ted Kremenek02087932010-07-16 02:11:22 +00001056/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
1057/// functions) for correct use of format strings.
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001058void
Ted Kremenek02087932010-07-16 02:11:22 +00001059Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg,
1060 unsigned format_idx, unsigned firstDataArg,
1061 bool isPrintf) {
1062
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001063 const Expr *Fn = TheCall->getCallee();
Chris Lattner08464942007-12-28 05:29:59 +00001064
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001065 // The way the format attribute works in GCC, the implicit this argument
1066 // of member functions is counted. However, it doesn't appear in our own
1067 // lists, so decrement format_idx in that case.
1068 if (isa<CXXMemberCallExpr>(TheCall)) {
1069 // Catch a format attribute mistakenly referring to the object argument.
1070 if (format_idx == 0)
1071 return;
1072 --format_idx;
1073 if(firstDataArg != 0)
1074 --firstDataArg;
1075 }
1076
Ted Kremenek02087932010-07-16 02:11:22 +00001077 // CHECK: printf/scanf-like function is called with no format string.
Chris Lattner08464942007-12-28 05:29:59 +00001078 if (format_idx >= TheCall->getNumArgs()) {
Ted Kremenek02087932010-07-16 02:11:22 +00001079 Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string)
Chris Lattnerf490e152008-11-19 05:27:50 +00001080 << Fn->getSourceRange();
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001081 return;
1082 }
Mike Stump11289f42009-09-09 15:08:12 +00001083
Ted Kremenekdfd72c22009-03-20 21:35:28 +00001084 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00001085
Chris Lattnerb87b1b32007-08-10 20:18:51 +00001086 // CHECK: format string is not a string literal.
Mike Stump11289f42009-09-09 15:08:12 +00001087 //
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001088 // Dynamically generated format strings are difficult to
1089 // automatically vet at compile time. Requiring that format strings
1090 // are string literals: (1) permits the checking of format strings by
1091 // the compiler and thereby (2) can practically remove the source of
1092 // many format string exploits.
Ted Kremenek34f664d2008-06-16 18:00:42 +00001093
Mike Stump11289f42009-09-09 15:08:12 +00001094 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek34f664d2008-06-16 18:00:42 +00001095 // C string (e.g. "%d")
Mike Stump11289f42009-09-09 15:08:12 +00001096 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek34f664d2008-06-16 18:00:42 +00001097 // the same format string checking logic for both ObjC and C strings.
Chris Lattnere009a882009-04-29 04:49:34 +00001098 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
Ted Kremenek02087932010-07-16 02:11:22 +00001099 firstDataArg, isPrintf))
Chris Lattnere009a882009-04-29 04:49:34 +00001100 return; // Literal format string found, check done!
Ted Kremenek34f664d2008-06-16 18:00:42 +00001101
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001102 // If there are no arguments specified, warn with -Wformat-security, otherwise
1103 // warn only with -Wformat-nonliteral.
1104 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump11289f42009-09-09 15:08:12 +00001105 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001106 diag::warn_format_nonliteral_noargs)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001107 << OrigFormatExpr->getSourceRange();
1108 else
Mike Stump11289f42009-09-09 15:08:12 +00001109 Diag(TheCall->getArg(format_idx)->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001110 diag::warn_format_nonliteral)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00001111 << OrigFormatExpr->getSourceRange();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00001112}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00001113
Ted Kremenekab278de2010-01-28 23:39:18 +00001114namespace {
Ted Kremenek02087932010-07-16 02:11:22 +00001115class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
1116protected:
Ted Kremenekab278de2010-01-28 23:39:18 +00001117 Sema &S;
1118 const StringLiteral *FExpr;
1119 const Expr *OrigFormatExpr;
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001120 const unsigned FirstDataArg;
Ted Kremenekab278de2010-01-28 23:39:18 +00001121 const unsigned NumDataArgs;
1122 const bool IsObjCLiteral;
1123 const char *Beg; // Start of format string.
Ted Kremenek5739de72010-01-29 01:06:55 +00001124 const bool HasVAListArg;
1125 const CallExpr *TheCall;
1126 unsigned FormatIdx;
Ted Kremenek4a49d982010-02-26 19:18:41 +00001127 llvm::BitVector CoveredArgs;
Ted Kremenekd1668192010-02-27 01:41:03 +00001128 bool usesPositionalArgs;
1129 bool atFirstArg;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001130public:
Ted Kremenek02087932010-07-16 02:11:22 +00001131 CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001132 const Expr *origFormatExpr, unsigned firstDataArg,
Ted Kremenekab278de2010-01-28 23:39:18 +00001133 unsigned numDataArgs, bool isObjCLiteral,
Ted Kremenek5739de72010-01-29 01:06:55 +00001134 const char *beg, bool hasVAListArg,
1135 const CallExpr *theCall, unsigned formatIdx)
Ted Kremenekab278de2010-01-28 23:39:18 +00001136 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
Ted Kremenek4d745dd2010-03-25 03:59:12 +00001137 FirstDataArg(firstDataArg),
Ted Kremenek4a49d982010-02-26 19:18:41 +00001138 NumDataArgs(numDataArgs),
Ted Kremenek5739de72010-01-29 01:06:55 +00001139 IsObjCLiteral(isObjCLiteral), Beg(beg),
1140 HasVAListArg(hasVAListArg),
Ted Kremenekd1668192010-02-27 01:41:03 +00001141 TheCall(theCall), FormatIdx(formatIdx),
1142 usesPositionalArgs(false), atFirstArg(true) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001143 CoveredArgs.resize(numDataArgs);
1144 CoveredArgs.reset();
1145 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001146
Ted Kremenek019d2242010-01-29 01:50:07 +00001147 void DoneProcessing();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001148
Ted Kremenek02087932010-07-16 02:11:22 +00001149 void HandleIncompleteSpecifier(const char *startSpecifier,
1150 unsigned specifierLen);
1151
Ted Kremenekd1668192010-02-27 01:41:03 +00001152 virtual void HandleInvalidPosition(const char *startSpecifier,
1153 unsigned specifierLen,
Ted Kremenek02087932010-07-16 02:11:22 +00001154 analyze_format_string::PositionContext p);
Ted Kremenekd1668192010-02-27 01:41:03 +00001155
1156 virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
1157
Ted Kremenekab278de2010-01-28 23:39:18 +00001158 void HandleNullChar(const char *nullCharacter);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001159
Ted Kremenek02087932010-07-16 02:11:22 +00001160protected:
Ted Kremenekce815422010-07-19 21:25:57 +00001161 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
1162 const char *startSpec,
1163 unsigned specifierLen,
1164 const char *csStart, unsigned csLen);
1165
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001166 SourceRange getFormatStringRange();
Ted Kremenek02087932010-07-16 02:11:22 +00001167 CharSourceRange getSpecifierRange(const char *startSpecifier,
1168 unsigned specifierLen);
Ted Kremenekab278de2010-01-28 23:39:18 +00001169 SourceLocation getLocationOfByte(const char *x);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001170
Ted Kremenek5739de72010-01-29 01:06:55 +00001171 const Expr *getDataArg(unsigned i) const;
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001172
1173 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
1174 const analyze_format_string::ConversionSpecifier &CS,
1175 const char *startSpecifier, unsigned specifierLen,
1176 unsigned argIndex);
Ted Kremenekdf4472b2010-07-26 19:45:54 +00001177
1178 void CheckArgType(const analyze_format_string::FormatSpecifier &FS,
1179 const analyze_format_string::ConversionSpecifier &CS,
1180 const char *startSpecifier, unsigned specifierLen,
1181 unsigned argIndex);
Ted Kremenekab278de2010-01-28 23:39:18 +00001182};
1183}
1184
Ted Kremenek02087932010-07-16 02:11:22 +00001185SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremenekab278de2010-01-28 23:39:18 +00001186 return OrigFormatExpr->getSourceRange();
1187}
1188
Ted Kremenek02087932010-07-16 02:11:22 +00001189CharSourceRange CheckFormatHandler::
1190getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care3f272b82010-06-21 21:21:01 +00001191 SourceLocation Start = getLocationOfByte(startSpecifier);
1192 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
1193
1194 // Advance the end SourceLocation by one due to half-open ranges.
1195 End = End.getFileLocWithOffset(1);
1196
1197 return CharSourceRange::getCharRange(Start, End);
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001198}
1199
Ted Kremenek02087932010-07-16 02:11:22 +00001200SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001201 return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
Ted Kremenekab278de2010-01-28 23:39:18 +00001202}
1203
Ted Kremenek02087932010-07-16 02:11:22 +00001204void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
1205 unsigned specifierLen){
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001206 SourceLocation Loc = getLocationOfByte(startSpecifier);
1207 S.Diag(Loc, diag::warn_printf_incomplete_specifier)
Ted Kremenek02087932010-07-16 02:11:22 +00001208 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekc22f78d2010-01-29 03:16:21 +00001209}
1210
Ted Kremenekd1668192010-02-27 01:41:03 +00001211void
Ted Kremenek02087932010-07-16 02:11:22 +00001212CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
1213 analyze_format_string::PositionContext p) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001214 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek02087932010-07-16 02:11:22 +00001215 S.Diag(Loc, diag::warn_format_invalid_positional_specifier)
1216 << (unsigned) p << getSpecifierRange(startPos, posLen);
Ted Kremenekd1668192010-02-27 01:41:03 +00001217}
1218
Ted Kremenek02087932010-07-16 02:11:22 +00001219void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekd1668192010-02-27 01:41:03 +00001220 unsigned posLen) {
1221 SourceLocation Loc = getLocationOfByte(startPos);
Ted Kremenek02087932010-07-16 02:11:22 +00001222 S.Diag(Loc, diag::warn_format_zero_positional_specifier)
1223 << getSpecifierRange(startPos, posLen);
Ted Kremenekd1668192010-02-27 01:41:03 +00001224}
1225
Ted Kremenek02087932010-07-16 02:11:22 +00001226void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
1227 // The presence of a null character is likely an error.
1228 S.Diag(getLocationOfByte(nullCharacter),
1229 diag::warn_printf_format_string_contains_null_char)
1230 << getFormatStringRange();
1231}
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001232
Ted Kremenek02087932010-07-16 02:11:22 +00001233const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
1234 return TheCall->getArg(FirstDataArg + i);
1235}
1236
1237void CheckFormatHandler::DoneProcessing() {
1238 // Does the number of data arguments exceed the number of
1239 // format conversions in the format string?
1240 if (!HasVAListArg) {
1241 // Find any arguments that weren't covered.
1242 CoveredArgs.flip();
1243 signed notCoveredArg = CoveredArgs.find_first();
1244 if (notCoveredArg >= 0) {
1245 assert((unsigned)notCoveredArg < NumDataArgs);
1246 S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(),
1247 diag::warn_printf_data_arg_not_used)
1248 << getFormatStringRange();
1249 }
1250 }
1251}
1252
Ted Kremenekce815422010-07-19 21:25:57 +00001253bool
1254CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
1255 SourceLocation Loc,
1256 const char *startSpec,
1257 unsigned specifierLen,
1258 const char *csStart,
1259 unsigned csLen) {
1260
1261 bool keepGoing = true;
1262 if (argIndex < NumDataArgs) {
1263 // Consider the argument coverered, even though the specifier doesn't
1264 // make sense.
1265 CoveredArgs.set(argIndex);
1266 }
1267 else {
1268 // If argIndex exceeds the number of data arguments we
1269 // don't issue a warning because that is just a cascade of warnings (and
1270 // they may have intended '%%' anyway). We don't want to continue processing
1271 // the format string after this point, however, as we will like just get
1272 // gibberish when trying to match arguments.
1273 keepGoing = false;
1274 }
1275
1276 S.Diag(Loc, diag::warn_format_invalid_conversion)
1277 << llvm::StringRef(csStart, csLen)
1278 << getSpecifierRange(startSpec, specifierLen);
1279
1280 return keepGoing;
1281}
1282
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001283bool
1284CheckFormatHandler::CheckNumArgs(
1285 const analyze_format_string::FormatSpecifier &FS,
1286 const analyze_format_string::ConversionSpecifier &CS,
1287 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1288
1289 if (argIndex >= NumDataArgs) {
1290 if (FS.usesPositionalArg()) {
1291 S.Diag(getLocationOfByte(CS.getStart()),
1292 diag::warn_printf_positional_arg_exceeds_data_args)
1293 << (argIndex+1) << NumDataArgs
1294 << getSpecifierRange(startSpecifier, specifierLen);
1295 }
1296 else {
1297 S.Diag(getLocationOfByte(CS.getStart()),
1298 diag::warn_printf_insufficient_data_args)
1299 << getSpecifierRange(startSpecifier, specifierLen);
1300 }
1301
1302 return false;
1303 }
1304 return true;
1305}
1306
Ted Kremenekdf4472b2010-07-26 19:45:54 +00001307void CheckFormatHandler::CheckArgType(
1308 const analyze_format_string::FormatSpecifier &FS,
1309 const analyze_format_string::ConversionSpecifier &CS,
1310 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
1311
1312 const Expr *Ex = getDataArg(argIndex);
1313 const analyze_format_string::ArgTypeResult &ATR = FS.getArgType(S.Context);
1314
1315 if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
1316 // Check if we didn't match because of an implicit cast from a 'char'
1317 // or 'short' to an 'int'. This is done because scanf/printf are varargs
1318 // functions.
1319 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
1320 if (ICE->getType() == S.Context.IntTy)
1321 if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType()))
1322 return;
1323
1324 if (const analyze_printf::PrintfSpecifier *PFS =
1325 dyn_cast<analyze_printf::PrintfSpecifier>(&FS)) {
1326 // We may be able to offer a FixItHint if it is a supported type.
1327 analyze_printf::PrintfSpecifier fixedFS(*PFS);
1328 if (fixedFS.fixType(Ex->getType())) {
1329 // Get the fix string from the fixed format specifier
1330 llvm::SmallString<128> buf;
1331 llvm::raw_svector_ostream os(buf);
1332 fixedFS.toString(os);
1333
1334 S.Diag(getLocationOfByte(CS.getStart()),
1335 diag::warn_printf_conversion_argument_type_mismatch)
1336 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1337 << getSpecifierRange(startSpecifier, specifierLen)
1338 << Ex->getSourceRange()
1339 << FixItHint::CreateReplacement(
1340 getSpecifierRange(startSpecifier, specifierLen), os.str());
1341 }
1342 else {
1343 S.Diag(getLocationOfByte(CS.getStart()),
1344 diag::warn_printf_conversion_argument_type_mismatch)
1345 << ATR.getRepresentativeType(S.Context) << Ex->getType()
1346 << getSpecifierRange(startSpecifier, specifierLen)
1347 << Ex->getSourceRange();
1348 }
1349 }
1350 }
1351}
1352
Ted Kremenek02087932010-07-16 02:11:22 +00001353//===--- CHECK: Printf format string checking ------------------------------===//
1354
1355namespace {
1356class CheckPrintfHandler : public CheckFormatHandler {
1357public:
1358 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
1359 const Expr *origFormatExpr, unsigned firstDataArg,
1360 unsigned numDataArgs, bool isObjCLiteral,
1361 const char *beg, bool hasVAListArg,
1362 const CallExpr *theCall, unsigned formatIdx)
1363 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1364 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1365 theCall, formatIdx) {}
1366
1367
1368 bool HandleInvalidPrintfConversionSpecifier(
1369 const analyze_printf::PrintfSpecifier &FS,
1370 const char *startSpecifier,
1371 unsigned specifierLen);
1372
1373 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
1374 const char *startSpecifier,
1375 unsigned specifierLen);
1376
1377 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
1378 const char *startSpecifier, unsigned specifierLen);
1379 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
1380 const analyze_printf::OptionalAmount &Amt,
1381 unsigned type,
1382 const char *startSpecifier, unsigned specifierLen);
1383 void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
1384 const analyze_printf::OptionalFlag &flag,
1385 const char *startSpecifier, unsigned specifierLen);
1386 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
1387 const analyze_printf::OptionalFlag &ignoredFlag,
1388 const analyze_printf::OptionalFlag &flag,
1389 const char *startSpecifier, unsigned specifierLen);
1390};
1391}
1392
1393bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
1394 const analyze_printf::PrintfSpecifier &FS,
1395 const char *startSpecifier,
1396 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001397 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00001398 FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00001399
Ted Kremenekce815422010-07-19 21:25:57 +00001400 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1401 getLocationOfByte(CS.getStart()),
1402 startSpecifier, specifierLen,
1403 CS.getStart(), CS.getLength());
Ted Kremenek94af5752010-01-29 02:40:24 +00001404}
1405
Ted Kremenek02087932010-07-16 02:11:22 +00001406bool CheckPrintfHandler::HandleAmount(
1407 const analyze_format_string::OptionalAmount &Amt,
1408 unsigned k, const char *startSpecifier,
1409 unsigned specifierLen) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001410
1411 if (Amt.hasDataArgument()) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001412 if (!HasVAListArg) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00001413 unsigned argIndex = Amt.getArgIndex();
1414 if (argIndex >= NumDataArgs) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001415 S.Diag(getLocationOfByte(Amt.getStart()),
1416 diag::warn_printf_asterisk_missing_arg)
Ted Kremenek02087932010-07-16 02:11:22 +00001417 << k << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenek5739de72010-01-29 01:06:55 +00001418 // Don't do any more checking. We will just emit
1419 // spurious errors.
1420 return false;
1421 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001422
Ted Kremenek5739de72010-01-29 01:06:55 +00001423 // Type check the data argument. It should be an 'int'.
Ted Kremenek605b0112010-01-29 23:32:22 +00001424 // Although not in conformance with C99, we also allow the argument to be
1425 // an 'unsigned int' as that is a reasonably safe case. GCC also
1426 // doesn't emit a warning for that case.
Ted Kremenek4a49d982010-02-26 19:18:41 +00001427 CoveredArgs.set(argIndex);
1428 const Expr *Arg = getDataArg(argIndex);
Ted Kremenek5739de72010-01-29 01:06:55 +00001429 QualType T = Arg->getType();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001430
1431 const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
1432 assert(ATR.isValid());
1433
1434 if (!ATR.matchesType(S.Context, T)) {
Ted Kremenekd1668192010-02-27 01:41:03 +00001435 S.Diag(getLocationOfByte(Amt.getStart()),
1436 diag::warn_printf_asterisk_wrong_type)
1437 << k
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001438 << ATR.getRepresentativeType(S.Context) << T
Ted Kremenek02087932010-07-16 02:11:22 +00001439 << getSpecifierRange(startSpecifier, specifierLen)
Ted Kremenekc3bdff72010-01-30 00:49:51 +00001440 << Arg->getSourceRange();
Ted Kremenek5739de72010-01-29 01:06:55 +00001441 // Don't do any more checking. We will just emit
1442 // spurious errors.
1443 return false;
1444 }
1445 }
1446 }
1447 return true;
1448}
Ted Kremenek5739de72010-01-29 01:06:55 +00001449
Tom Careb49ec692010-06-17 19:00:27 +00001450void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek02087932010-07-16 02:11:22 +00001451 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001452 const analyze_printf::OptionalAmount &Amt,
1453 unsigned type,
1454 const char *startSpecifier,
1455 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001456 const analyze_printf::PrintfConversionSpecifier &CS =
1457 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00001458 switch (Amt.getHowSpecified()) {
1459 case analyze_printf::OptionalAmount::Constant:
1460 S.Diag(getLocationOfByte(Amt.getStart()),
1461 diag::warn_printf_nonsensical_optional_amount)
1462 << type
1463 << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001464 << getSpecifierRange(startSpecifier, specifierLen)
1465 << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
Tom Careb49ec692010-06-17 19:00:27 +00001466 Amt.getConstantLength()));
1467 break;
1468
1469 default:
1470 S.Diag(getLocationOfByte(Amt.getStart()),
1471 diag::warn_printf_nonsensical_optional_amount)
1472 << type
1473 << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001474 << getSpecifierRange(startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001475 break;
1476 }
1477}
1478
Ted Kremenek02087932010-07-16 02:11:22 +00001479void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001480 const analyze_printf::OptionalFlag &flag,
1481 const char *startSpecifier,
1482 unsigned specifierLen) {
1483 // Warn about pointless flag with a fixit removal.
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001484 const analyze_printf::PrintfConversionSpecifier &CS =
1485 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00001486 S.Diag(getLocationOfByte(flag.getPosition()),
1487 diag::warn_printf_nonsensical_flag)
1488 << flag.toString() << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001489 << getSpecifierRange(startSpecifier, specifierLen)
1490 << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1));
Tom Careb49ec692010-06-17 19:00:27 +00001491}
1492
1493void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek02087932010-07-16 02:11:22 +00001494 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00001495 const analyze_printf::OptionalFlag &ignoredFlag,
1496 const analyze_printf::OptionalFlag &flag,
1497 const char *startSpecifier,
1498 unsigned specifierLen) {
1499 // Warn about ignored flag with a fixit removal.
1500 S.Diag(getLocationOfByte(ignoredFlag.getPosition()),
1501 diag::warn_printf_ignored_flag)
1502 << ignoredFlag.toString() << flag.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001503 << getSpecifierRange(startSpecifier, specifierLen)
1504 << FixItHint::CreateRemoval(getSpecifierRange(
Tom Careb49ec692010-06-17 19:00:27 +00001505 ignoredFlag.getPosition(), 1));
1506}
1507
Ted Kremenekab278de2010-01-28 23:39:18 +00001508bool
Ted Kremenek02087932010-07-16 02:11:22 +00001509CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenekd31b2632010-02-11 09:27:41 +00001510 &FS,
Ted Kremenekab278de2010-01-28 23:39:18 +00001511 const char *startSpecifier,
1512 unsigned specifierLen) {
1513
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001514 using namespace analyze_format_string;
Ted Kremenekd1668192010-02-27 01:41:03 +00001515 using namespace analyze_printf;
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001516 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenekab278de2010-01-28 23:39:18 +00001517
Ted Kremenek6cd69422010-07-19 22:01:06 +00001518 if (FS.consumesDataArgument()) {
1519 if (atFirstArg) {
1520 atFirstArg = false;
1521 usesPositionalArgs = FS.usesPositionalArg();
1522 }
1523 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1524 // Cannot mix-and-match positional and non-positional arguments.
1525 S.Diag(getLocationOfByte(CS.getStart()),
1526 diag::warn_format_mix_positional_nonpositional_args)
1527 << getSpecifierRange(startSpecifier, specifierLen);
1528 return false;
1529 }
Ted Kremenek5739de72010-01-29 01:06:55 +00001530 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001531
Ted Kremenekd1668192010-02-27 01:41:03 +00001532 // First check if the field width, precision, and conversion specifier
1533 // have matching data arguments.
1534 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
1535 startSpecifier, specifierLen)) {
1536 return false;
1537 }
1538
1539 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
1540 startSpecifier, specifierLen)) {
Ted Kremenek5739de72010-01-29 01:06:55 +00001541 return false;
1542 }
1543
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001544 if (!CS.consumesDataArgument()) {
1545 // FIXME: Technically specifying a precision or field width here
1546 // makes no sense. Worth issuing a warning at some point.
Ted Kremenekfb45d352010-02-10 02:16:30 +00001547 return true;
Ted Kremenek8d9842d2010-01-29 20:55:36 +00001548 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001549
Ted Kremenek4a49d982010-02-26 19:18:41 +00001550 // Consume the argument.
1551 unsigned argIndex = FS.getArgIndex();
Ted Kremenek09597b42010-02-27 08:34:51 +00001552 if (argIndex < NumDataArgs) {
1553 // The check to see if the argIndex is valid will come later.
1554 // We set the bit here because we may exit early from this
1555 // function if we encounter some other error.
1556 CoveredArgs.set(argIndex);
1557 }
Ted Kremenek4a49d982010-02-26 19:18:41 +00001558
1559 // Check for using an Objective-C specific conversion specifier
1560 // in a non-ObjC literal.
1561 if (!IsObjCLiteral && CS.isObjCArg()) {
Ted Kremenek02087932010-07-16 02:11:22 +00001562 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
1563 specifierLen);
Ted Kremenek4a49d982010-02-26 19:18:41 +00001564 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001565
Tom Careb49ec692010-06-17 19:00:27 +00001566 // Check for invalid use of field width
1567 if (!FS.hasValidFieldWidth()) {
Tom Care3f272b82010-06-21 21:21:01 +00001568 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Careb49ec692010-06-17 19:00:27 +00001569 startSpecifier, specifierLen);
1570 }
1571
1572 // Check for invalid use of precision
1573 if (!FS.hasValidPrecision()) {
1574 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
1575 startSpecifier, specifierLen);
1576 }
1577
1578 // Check each flag does not conflict with any other component.
1579 if (!FS.hasValidLeadingZeros())
1580 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
1581 if (!FS.hasValidPlusPrefix())
1582 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care3f272b82010-06-21 21:21:01 +00001583 if (!FS.hasValidSpacePrefix())
1584 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001585 if (!FS.hasValidAlternativeForm())
1586 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
1587 if (!FS.hasValidLeftJustified())
1588 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
1589
1590 // Check that flags are not ignored by another flag
Tom Care3f272b82010-06-21 21:21:01 +00001591 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
1592 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
1593 startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00001594 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
1595 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
1596 startSpecifier, specifierLen);
1597
1598 // Check the length modifier is valid with the given conversion specifier.
1599 const LengthModifier &LM = FS.getLengthModifier();
1600 if (!FS.hasValidLengthModifier())
1601 S.Diag(getLocationOfByte(LM.getStart()),
Ted Kremenekb65a9d52010-07-20 20:03:43 +00001602 diag::warn_format_nonsensical_length)
Tom Careb49ec692010-06-17 19:00:27 +00001603 << LM.toString() << CS.toString()
Ted Kremenek02087932010-07-16 02:11:22 +00001604 << getSpecifierRange(startSpecifier, specifierLen)
1605 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
Tom Careb49ec692010-06-17 19:00:27 +00001606 LM.getLength()));
1607
1608 // Are we using '%n'?
Ted Kremenek516ef222010-07-20 20:04:10 +00001609 if (CS.getKind() == ConversionSpecifier::nArg) {
Tom Careb49ec692010-06-17 19:00:27 +00001610 // Issue a warning about this being a possible security issue.
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001611 S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back)
Ted Kremenek02087932010-07-16 02:11:22 +00001612 << getSpecifierRange(startSpecifier, specifierLen);
Ted Kremenekd5fd0fa2010-01-29 01:35:25 +00001613 // Continue checking the other format specifiers.
1614 return true;
1615 }
Ted Kremenekd31b2632010-02-11 09:27:41 +00001616
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001617 // The remaining checks depend on the data arguments.
1618 if (HasVAListArg)
1619 return true;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001620
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001621 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek9fcd8302010-01-29 01:43:31 +00001622 return false;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001623
Ted Kremenekdf4472b2010-07-26 19:45:54 +00001624 CheckArgType(FS, CS, startSpecifier, specifierLen, argIndex);
1625
Ted Kremenekab278de2010-01-28 23:39:18 +00001626 return true;
1627}
1628
Ted Kremenek02087932010-07-16 02:11:22 +00001629//===--- CHECK: Scanf format string checking ------------------------------===//
1630
1631namespace {
1632class CheckScanfHandler : public CheckFormatHandler {
1633public:
1634 CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
1635 const Expr *origFormatExpr, unsigned firstDataArg,
1636 unsigned numDataArgs, bool isObjCLiteral,
1637 const char *beg, bool hasVAListArg,
1638 const CallExpr *theCall, unsigned formatIdx)
1639 : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
1640 numDataArgs, isObjCLiteral, beg, hasVAListArg,
1641 theCall, formatIdx) {}
1642
1643 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
1644 const char *startSpecifier,
1645 unsigned specifierLen);
Ted Kremenekce815422010-07-19 21:25:57 +00001646
1647 bool HandleInvalidScanfConversionSpecifier(
1648 const analyze_scanf::ScanfSpecifier &FS,
1649 const char *startSpecifier,
1650 unsigned specifierLen);
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00001651
1652 void HandleIncompleteScanList(const char *start, const char *end);
Ted Kremenek02087932010-07-16 02:11:22 +00001653};
Ted Kremenek019d2242010-01-29 01:50:07 +00001654}
Ted Kremenekab278de2010-01-28 23:39:18 +00001655
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00001656void CheckScanfHandler::HandleIncompleteScanList(const char *start,
1657 const char *end) {
1658 S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete)
1659 << getSpecifierRange(start, end - start);
1660}
1661
Ted Kremenekce815422010-07-19 21:25:57 +00001662bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
1663 const analyze_scanf::ScanfSpecifier &FS,
1664 const char *startSpecifier,
1665 unsigned specifierLen) {
1666
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001667 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00001668 FS.getConversionSpecifier();
1669
1670 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
1671 getLocationOfByte(CS.getStart()),
1672 startSpecifier, specifierLen,
1673 CS.getStart(), CS.getLength());
1674}
1675
Ted Kremenek02087932010-07-16 02:11:22 +00001676bool CheckScanfHandler::HandleScanfSpecifier(
1677 const analyze_scanf::ScanfSpecifier &FS,
1678 const char *startSpecifier,
1679 unsigned specifierLen) {
1680
1681 using namespace analyze_scanf;
1682 using namespace analyze_format_string;
1683
Ted Kremenekf03e6d852010-07-20 20:04:27 +00001684 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00001685
Ted Kremenek6cd69422010-07-19 22:01:06 +00001686 // Handle case where '%' and '*' don't consume an argument. These shouldn't
1687 // be used to decide if we are using positional arguments consistently.
1688 if (FS.consumesDataArgument()) {
1689 if (atFirstArg) {
1690 atFirstArg = false;
1691 usesPositionalArgs = FS.usesPositionalArg();
1692 }
1693 else if (usesPositionalArgs != FS.usesPositionalArg()) {
1694 // Cannot mix-and-match positional and non-positional arguments.
1695 S.Diag(getLocationOfByte(CS.getStart()),
1696 diag::warn_format_mix_positional_nonpositional_args)
1697 << getSpecifierRange(startSpecifier, specifierLen);
1698 return false;
1699 }
Ted Kremenek02087932010-07-16 02:11:22 +00001700 }
1701
1702 // Check if the field with is non-zero.
1703 const OptionalAmount &Amt = FS.getFieldWidth();
1704 if (Amt.getHowSpecified() == OptionalAmount::Constant) {
1705 if (Amt.getConstantAmount() == 0) {
1706 const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
1707 Amt.getConstantLength());
1708 S.Diag(getLocationOfByte(Amt.getStart()),
1709 diag::warn_scanf_nonzero_width)
1710 << R << FixItHint::CreateRemoval(R);
1711 }
1712 }
1713
1714 if (!FS.consumesDataArgument()) {
1715 // FIXME: Technically specifying a precision or field width here
1716 // makes no sense. Worth issuing a warning at some point.
1717 return true;
1718 }
1719
1720 // Consume the argument.
1721 unsigned argIndex = FS.getArgIndex();
1722 if (argIndex < NumDataArgs) {
1723 // The check to see if the argIndex is valid will come later.
1724 // We set the bit here because we may exit early from this
1725 // function if we encounter some other error.
1726 CoveredArgs.set(argIndex);
1727 }
1728
Ted Kremenek4407ea42010-07-20 20:04:47 +00001729 // Check the length modifier is valid with the given conversion specifier.
1730 const LengthModifier &LM = FS.getLengthModifier();
1731 if (!FS.hasValidLengthModifier()) {
1732 S.Diag(getLocationOfByte(LM.getStart()),
1733 diag::warn_format_nonsensical_length)
1734 << LM.toString() << CS.toString()
1735 << getSpecifierRange(startSpecifier, specifierLen)
1736 << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
1737 LM.getLength()));
1738 }
1739
Ted Kremenek02087932010-07-16 02:11:22 +00001740 // The remaining checks depend on the data arguments.
1741 if (HasVAListArg)
1742 return true;
1743
Ted Kremenek6adb7e32010-07-26 19:45:42 +00001744 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek02087932010-07-16 02:11:22 +00001745 return false;
Ted Kremenek02087932010-07-16 02:11:22 +00001746
1747 // FIXME: Check that the argument type matches the format specifier.
1748
1749 return true;
1750}
1751
1752void Sema::CheckFormatString(const StringLiteral *FExpr,
Ted Kremenekfb45d352010-02-10 02:16:30 +00001753 const Expr *OrigFormatExpr,
1754 const CallExpr *TheCall, bool HasVAListArg,
Ted Kremenek02087932010-07-16 02:11:22 +00001755 unsigned format_idx, unsigned firstDataArg,
1756 bool isPrintf) {
1757
Ted Kremenekab278de2010-01-28 23:39:18 +00001758 // CHECK: is the format string a wide literal?
1759 if (FExpr->isWide()) {
1760 Diag(FExpr->getLocStart(),
Ted Kremenek02087932010-07-16 02:11:22 +00001761 diag::warn_format_string_is_wide_literal)
Ted Kremenekab278de2010-01-28 23:39:18 +00001762 << OrigFormatExpr->getSourceRange();
1763 return;
1764 }
Ted Kremenek02087932010-07-16 02:11:22 +00001765
Ted Kremenekab278de2010-01-28 23:39:18 +00001766 // Str - The format string. NOTE: this is NOT null-terminated!
1767 const char *Str = FExpr->getStrData();
Ted Kremenek02087932010-07-16 02:11:22 +00001768
Ted Kremenekab278de2010-01-28 23:39:18 +00001769 // CHECK: empty format string?
1770 unsigned StrLen = FExpr->getByteLength();
Ted Kremenek02087932010-07-16 02:11:22 +00001771
Ted Kremenekab278de2010-01-28 23:39:18 +00001772 if (StrLen == 0) {
Ted Kremenek02087932010-07-16 02:11:22 +00001773 Diag(FExpr->getLocStart(), diag::warn_empty_format_string)
Ted Kremenekab278de2010-01-28 23:39:18 +00001774 << OrigFormatExpr->getSourceRange();
1775 return;
1776 }
Ted Kremenek02087932010-07-16 02:11:22 +00001777
1778 if (isPrintf) {
1779 CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1780 TheCall->getNumArgs() - firstDataArg,
1781 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1782 HasVAListArg, TheCall, format_idx);
1783
1784 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen))
1785 H.DoneProcessing();
1786 }
1787 else {
1788 CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
1789 TheCall->getNumArgs() - firstDataArg,
1790 isa<ObjCStringLiteral>(OrigFormatExpr), Str,
1791 HasVAListArg, TheCall, format_idx);
1792
1793 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen))
1794 H.DoneProcessing();
1795 }
Ted Kremenekc70ee862010-01-28 01:18:22 +00001796}
1797
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001798//===--- CHECK: Return Address of Stack Variable --------------------------===//
1799
1800static DeclRefExpr* EvalVal(Expr *E);
1801static DeclRefExpr* EvalAddr(Expr* E);
1802
1803/// CheckReturnStackAddr - Check if a return statement returns the address
1804/// of a stack variable.
1805void
1806Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1807 SourceLocation ReturnLoc) {
Mike Stump11289f42009-09-09 15:08:12 +00001808
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001809 // Perform checking for returned stack addresses.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001810 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001811 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001812 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattnere3d20d92008-11-23 21:45:46 +00001813 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001814
Steve Naroff3b1e1722008-09-16 22:25:10 +00001815 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner870158e2009-09-08 00:36:37 +00001816 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroff3b1e1722008-09-16 22:25:10 +00001817
Chris Lattner252d36e2009-10-30 04:01:58 +00001818 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump5c3285b2009-04-17 00:09:41 +00001819 if (C->hasBlockDeclRefExprs())
1820 Diag(C->getLocStart(), diag::err_ret_local_block)
1821 << C->getSourceRange();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001822
Chris Lattner252d36e2009-10-30 04:01:58 +00001823 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1824 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1825 << ALE->getSourceRange();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00001826
Mike Stump12b8ce12009-08-04 21:02:39 +00001827 } else if (lhsType->isReferenceType()) {
1828 // Perform checking for stack values returned by reference.
Douglas Gregore200adc2008-10-27 19:41:14 +00001829 // Check for a reference to the stack
1830 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerf490e152008-11-19 05:27:50 +00001831 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattnere3d20d92008-11-23 21:45:46 +00001832 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001833 }
1834}
1835
1836/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1837/// check if the expression in a return statement evaluates to an address
1838/// to a location on the stack. The recursion is used to traverse the
1839/// AST of the return expression, with recursion backtracking when we
1840/// encounter a subexpression that (1) clearly does not lead to the address
1841/// of a stack variable or (2) is something we cannot determine leads to
1842/// the address of a stack variable based on such local checking.
1843///
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00001844/// EvalAddr processes expressions that are pointers that are used as
1845/// references (and not L-values). EvalVal handles all other values.
Mike Stump11289f42009-09-09 15:08:12 +00001846/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001847/// the refers to a stack variable.
1848///
1849/// This implementation handles:
1850///
1851/// * pointer-to-pointer casts
1852/// * implicit conversions from array references to pointers
1853/// * taking the address of fields
1854/// * arbitrary interplay between "&" and "*" operators
1855/// * pointer arithmetic from an address of a stack variable
1856/// * taking the address of an array element where the array is on the stack
1857static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001858 // We should only be called for evaluating pointer expressions.
David Chisnall9f57c292009-08-17 16:35:33 +00001859 assert((E->getType()->isAnyPointerType() ||
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001860 E->getType()->isBlockPointerType() ||
Ted Kremenek1b0ea822008-01-07 19:49:32 +00001861 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattner934edb22007-12-28 05:31:15 +00001862 "EvalAddr only works on pointers");
Mike Stump11289f42009-09-09 15:08:12 +00001863
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001864 // Our "symbolic interpreter" is just a dispatch off the currently
1865 // viewed AST node. We then recursively traverse the AST by calling
1866 // EvalAddr and EvalVal appropriately.
1867 switch (E->getStmtClass()) {
Chris Lattner934edb22007-12-28 05:31:15 +00001868 case Stmt::ParenExprClass:
1869 // Ignore parentheses.
1870 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001871
Chris Lattner934edb22007-12-28 05:31:15 +00001872 case Stmt::UnaryOperatorClass: {
1873 // The only unary operator that make sense to handle here
1874 // is AddrOf. All others don't make sense as pointers.
1875 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001876
Chris Lattner934edb22007-12-28 05:31:15 +00001877 if (U->getOpcode() == UnaryOperator::AddrOf)
1878 return EvalVal(U->getSubExpr());
1879 else
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001880 return NULL;
1881 }
Mike Stump11289f42009-09-09 15:08:12 +00001882
Chris Lattner934edb22007-12-28 05:31:15 +00001883 case Stmt::BinaryOperatorClass: {
1884 // Handle pointer arithmetic. All other binary operators are not valid
1885 // in this context.
1886 BinaryOperator *B = cast<BinaryOperator>(E);
1887 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump11289f42009-09-09 15:08:12 +00001888
Chris Lattner934edb22007-12-28 05:31:15 +00001889 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1890 return NULL;
Mike Stump11289f42009-09-09 15:08:12 +00001891
Chris Lattner934edb22007-12-28 05:31:15 +00001892 Expr *Base = B->getLHS();
1893
1894 // Determine which argument is the real pointer base. It could be
1895 // the RHS argument instead of the LHS.
1896 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump11289f42009-09-09 15:08:12 +00001897
Chris Lattner934edb22007-12-28 05:31:15 +00001898 assert (Base->getType()->isPointerType());
1899 return EvalAddr(Base);
1900 }
Steve Naroff2752a172008-09-10 19:17:48 +00001901
Chris Lattner934edb22007-12-28 05:31:15 +00001902 // For conditional operators we need to see if either the LHS or RHS are
1903 // valid DeclRefExpr*s. If one of them is valid, we return it.
1904 case Stmt::ConditionalOperatorClass: {
1905 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001906
Chris Lattner934edb22007-12-28 05:31:15 +00001907 // Handle the GNU extension for missing LHS.
1908 if (Expr *lhsExpr = C->getLHS())
1909 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1910 return LHS;
1911
1912 return EvalAddr(C->getRHS());
1913 }
Mike Stump11289f42009-09-09 15:08:12 +00001914
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001915 // For casts, we need to handle conversions from arrays to
1916 // pointer values, and pointer-to-pointer conversions.
Douglas Gregore200adc2008-10-27 19:41:14 +00001917 case Stmt::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00001918 case Stmt::CStyleCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00001919 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001920 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001921 QualType T = SubExpr->getType();
Mike Stump11289f42009-09-09 15:08:12 +00001922
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001923 if (SubExpr->getType()->isPointerType() ||
1924 SubExpr->getType()->isBlockPointerType() ||
1925 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001926 return EvalAddr(SubExpr);
1927 else if (T->isArrayType())
Chris Lattner934edb22007-12-28 05:31:15 +00001928 return EvalVal(SubExpr);
Chris Lattner934edb22007-12-28 05:31:15 +00001929 else
Ted Kremenekc3b4c522008-08-07 00:49:01 +00001930 return 0;
Chris Lattner934edb22007-12-28 05:31:15 +00001931 }
Mike Stump11289f42009-09-09 15:08:12 +00001932
Chris Lattner934edb22007-12-28 05:31:15 +00001933 // C++ casts. For dynamic casts, static casts, and const casts, we
1934 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregore200adc2008-10-27 19:41:14 +00001935 // through the cast. In the case the dynamic cast doesn't fail (and
1936 // return NULL), we take the conservative route and report cases
Chris Lattner934edb22007-12-28 05:31:15 +00001937 // where we return the address of a stack variable. For Reinterpre
Douglas Gregore200adc2008-10-27 19:41:14 +00001938 // FIXME: The comment about is wrong; we're not always converting
1939 // from pointer to pointer. I'm guessing that this code should also
Mike Stump11289f42009-09-09 15:08:12 +00001940 // handle references to objects.
1941 case Stmt::CXXStaticCastExprClass:
1942 case Stmt::CXXDynamicCastExprClass:
Douglas Gregore200adc2008-10-27 19:41:14 +00001943 case Stmt::CXXConstCastExprClass:
1944 case Stmt::CXXReinterpretCastExprClass: {
1945 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001946 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattner934edb22007-12-28 05:31:15 +00001947 return EvalAddr(S);
1948 else
1949 return NULL;
Chris Lattner934edb22007-12-28 05:31:15 +00001950 }
Mike Stump11289f42009-09-09 15:08:12 +00001951
Chris Lattner934edb22007-12-28 05:31:15 +00001952 // Everything else: we simply don't reason about them.
1953 default:
1954 return NULL;
1955 }
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001956}
Mike Stump11289f42009-09-09 15:08:12 +00001957
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001958
1959/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1960/// See the comments for EvalAddr for more details.
1961static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump11289f42009-09-09 15:08:12 +00001962
Ted Kremeneke07a8cd2007-08-28 17:02:55 +00001963 // We should only be called for evaluating non-pointer expressions, or
1964 // expressions with a pointer type that are not used as references but instead
1965 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump11289f42009-09-09 15:08:12 +00001966
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001967 // Our "symbolic interpreter" is just a dispatch off the currently
1968 // viewed AST node. We then recursively traverse the AST by calling
1969 // EvalAddr and EvalVal appropriately.
1970 switch (E->getStmtClass()) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +00001971 case Stmt::DeclRefExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001972 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1973 // at code that refers to a variable's name. We check if it has local
1974 // storage within the function, and if so, return the expression.
1975 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001976
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001977 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump11289f42009-09-09 15:08:12 +00001978 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1979
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001980 return NULL;
1981 }
Mike Stump11289f42009-09-09 15:08:12 +00001982
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001983 case Stmt::ParenExprClass:
1984 // Ignore parentheses.
1985 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump11289f42009-09-09 15:08:12 +00001986
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001987 case Stmt::UnaryOperatorClass: {
1988 // The only unary operator that make sense to handle here
1989 // is Deref. All others don't resolve to a "name." This includes
1990 // handling all sorts of rvalues passed to a unary operator.
1991 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump11289f42009-09-09 15:08:12 +00001992
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001993 if (U->getOpcode() == UnaryOperator::Deref)
1994 return EvalAddr(U->getSubExpr());
1995
1996 return NULL;
1997 }
Mike Stump11289f42009-09-09 15:08:12 +00001998
Ted Kremenekcff94fa2007-08-17 16:46:58 +00001999 case Stmt::ArraySubscriptExprClass: {
2000 // Array subscripts are potential references to data on the stack. We
2001 // retrieve the DeclRefExpr* for the array variable if it indeed
2002 // has local storage.
Ted Kremenekc81614d2007-08-20 16:18:38 +00002003 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002004 }
Mike Stump11289f42009-09-09 15:08:12 +00002005
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002006 case Stmt::ConditionalOperatorClass: {
2007 // For conditional operators we need to see if either the LHS or RHS are
2008 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
2009 ConditionalOperator *C = cast<ConditionalOperator>(E);
2010
Anders Carlsson801c5c72007-11-30 19:04:31 +00002011 // Handle the GNU extension for missing LHS.
2012 if (Expr *lhsExpr = C->getLHS())
2013 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
2014 return LHS;
2015
2016 return EvalVal(C->getRHS());
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002017 }
Mike Stump11289f42009-09-09 15:08:12 +00002018
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002019 // Accesses to members are potential references to data on the stack.
Douglas Gregorf405d7e2009-08-31 23:41:50 +00002020 case Stmt::MemberExprClass: {
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002021 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00002022
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002023 // Check for indirect access. We only want direct field accesses.
2024 if (!M->isArrow())
2025 return EvalVal(M->getBase());
2026 else
2027 return NULL;
2028 }
Mike Stump11289f42009-09-09 15:08:12 +00002029
Ted Kremenekcff94fa2007-08-17 16:46:58 +00002030 // Everything else: we simply don't reason about them.
2031 default:
2032 return NULL;
2033 }
2034}
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002035
2036//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
2037
2038/// Check for comparisons of floating point operands using != and ==.
2039/// Issue a warning if these are no self-comparisons, as they are not likely
2040/// to do what the programmer intended.
2041void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
2042 bool EmitWarning = true;
Mike Stump11289f42009-09-09 15:08:12 +00002043
Ted Kremenekfff70962008-01-17 16:57:34 +00002044 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32a33582008-01-17 17:55:13 +00002045 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002046
2047 // Special case: check for x == x (which is OK).
2048 // Do not emit warnings for such cases.
2049 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
2050 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
2051 if (DRL->getDecl() == DRR->getDecl())
2052 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002053
2054
Ted Kremenekeda40e22007-11-29 00:59:04 +00002055 // Special case: check for comparisons against literals that can be exactly
2056 // represented by APFloat. In such cases, do not emit a warning. This
2057 // is a heuristic: often comparison against such literals are used to
2058 // detect if a value in a variable has not changed. This clearly can
2059 // lead to false negatives.
2060 if (EmitWarning) {
2061 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
2062 if (FLL->isExact())
2063 EmitWarning = false;
Mike Stump12b8ce12009-08-04 21:02:39 +00002064 } else
Ted Kremenekeda40e22007-11-29 00:59:04 +00002065 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
2066 if (FLR->isExact())
2067 EmitWarning = false;
2068 }
2069 }
Mike Stump11289f42009-09-09 15:08:12 +00002070
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002071 // Check for comparisons with builtin types.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002072 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002073 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00002074 if (CL->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002075 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002076
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002077 if (EmitWarning)
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002078 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregore711f702009-02-14 18:57:46 +00002079 if (CR->isBuiltinCall(Context))
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002080 EmitWarning = false;
Mike Stump11289f42009-09-09 15:08:12 +00002081
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002082 // Emit the diagnostic.
2083 if (EmitWarning)
Chris Lattner3b054132008-11-19 05:08:23 +00002084 Diag(loc, diag::warn_floatingpoint_eq)
2085 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00002086}
John McCallca01b222010-01-04 23:21:16 +00002087
John McCall70aa5392010-01-06 05:24:50 +00002088//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
2089//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallca01b222010-01-04 23:21:16 +00002090
John McCall70aa5392010-01-06 05:24:50 +00002091namespace {
John McCallca01b222010-01-04 23:21:16 +00002092
John McCall70aa5392010-01-06 05:24:50 +00002093/// Structure recording the 'active' range of an integer-valued
2094/// expression.
2095struct IntRange {
2096 /// The number of bits active in the int.
2097 unsigned Width;
John McCallca01b222010-01-04 23:21:16 +00002098
John McCall70aa5392010-01-06 05:24:50 +00002099 /// True if the int is known not to have negative values.
2100 bool NonNegative;
John McCallca01b222010-01-04 23:21:16 +00002101
John McCall70aa5392010-01-06 05:24:50 +00002102 IntRange() {}
2103 IntRange(unsigned Width, bool NonNegative)
2104 : Width(Width), NonNegative(NonNegative)
2105 {}
John McCallca01b222010-01-04 23:21:16 +00002106
John McCall70aa5392010-01-06 05:24:50 +00002107 // Returns the range of the bool type.
2108 static IntRange forBoolType() {
2109 return IntRange(1, true);
John McCall263a48b2010-01-04 23:31:57 +00002110 }
2111
John McCall70aa5392010-01-06 05:24:50 +00002112 // Returns the range of an integral type.
2113 static IntRange forType(ASTContext &C, QualType T) {
2114 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall263a48b2010-01-04 23:31:57 +00002115 }
2116
John McCall70aa5392010-01-06 05:24:50 +00002117 // Returns the range of an integeral type based on its canonical
2118 // representation.
2119 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
2120 assert(T->isCanonicalUnqualified());
2121
2122 if (const VectorType *VT = dyn_cast<VectorType>(T))
2123 T = VT->getElementType().getTypePtr();
2124 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
2125 T = CT->getElementType().getTypePtr();
John McCallcc7e5bf2010-05-06 08:58:33 +00002126
2127 if (const EnumType *ET = dyn_cast<EnumType>(T)) {
2128 EnumDecl *Enum = ET->getDecl();
2129 unsigned NumPositive = Enum->getNumPositiveBits();
2130 unsigned NumNegative = Enum->getNumNegativeBits();
2131
2132 return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
2133 }
John McCall70aa5392010-01-06 05:24:50 +00002134
2135 const BuiltinType *BT = cast<BuiltinType>(T);
2136 assert(BT->isInteger());
2137
2138 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
2139 }
2140
2141 // Returns the supremum of two ranges: i.e. their conservative merge.
John McCallff96ccd2010-02-23 19:22:29 +00002142 static IntRange join(IntRange L, IntRange R) {
John McCall70aa5392010-01-06 05:24:50 +00002143 return IntRange(std::max(L.Width, R.Width),
John McCall2ce81ad2010-01-06 22:07:33 +00002144 L.NonNegative && R.NonNegative);
2145 }
2146
2147 // Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallff96ccd2010-02-23 19:22:29 +00002148 static IntRange meet(IntRange L, IntRange R) {
John McCall2ce81ad2010-01-06 22:07:33 +00002149 return IntRange(std::min(L.Width, R.Width),
2150 L.NonNegative || R.NonNegative);
John McCall70aa5392010-01-06 05:24:50 +00002151 }
2152};
2153
2154IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
2155 if (value.isSigned() && value.isNegative())
2156 return IntRange(value.getMinSignedBits(), false);
2157
2158 if (value.getBitWidth() > MaxWidth)
2159 value.trunc(MaxWidth);
2160
2161 // isNonNegative() just checks the sign bit without considering
2162 // signedness.
2163 return IntRange(value.getActiveBits(), true);
2164}
2165
John McCall74430522010-01-06 22:57:21 +00002166IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCall70aa5392010-01-06 05:24:50 +00002167 unsigned MaxWidth) {
2168 if (result.isInt())
2169 return GetValueRange(C, result.getInt(), MaxWidth);
2170
2171 if (result.isVector()) {
John McCall74430522010-01-06 22:57:21 +00002172 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
2173 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
2174 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
2175 R = IntRange::join(R, El);
2176 }
John McCall70aa5392010-01-06 05:24:50 +00002177 return R;
2178 }
2179
2180 if (result.isComplexInt()) {
2181 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
2182 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
2183 return IntRange::join(R, I);
John McCall263a48b2010-01-04 23:31:57 +00002184 }
2185
2186 // This can happen with lossless casts to intptr_t of "based" lvalues.
2187 // Assume it might use arbitrary bits.
John McCall74430522010-01-06 22:57:21 +00002188 // FIXME: The only reason we need to pass the type in here is to get
2189 // the sign right on this one case. It would be nice if APValue
2190 // preserved this.
John McCall70aa5392010-01-06 05:24:50 +00002191 assert(result.isLValue());
John McCall74430522010-01-06 22:57:21 +00002192 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall263a48b2010-01-04 23:31:57 +00002193}
John McCall70aa5392010-01-06 05:24:50 +00002194
2195/// Pseudo-evaluate the given integer expression, estimating the
2196/// range of values it might take.
2197///
2198/// \param MaxWidth - the width to which the value will be truncated
2199IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
2200 E = E->IgnoreParens();
2201
2202 // Try a full evaluation first.
2203 Expr::EvalResult result;
2204 if (E->Evaluate(result, C))
John McCall74430522010-01-06 22:57:21 +00002205 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00002206
2207 // I think we only want to look through implicit casts here; if the
2208 // user has an explicit widening cast, we should treat the value as
2209 // being of the new, wider type.
2210 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
2211 if (CE->getCastKind() == CastExpr::CK_NoOp)
2212 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
2213
2214 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
2215
John McCall2ce81ad2010-01-06 22:07:33 +00002216 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
2217 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
2218 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
2219
John McCall70aa5392010-01-06 05:24:50 +00002220 // Assume that non-integer casts can span the full range of the type.
John McCall2ce81ad2010-01-06 22:07:33 +00002221 if (!isIntegerCast)
John McCall70aa5392010-01-06 05:24:50 +00002222 return OutputTypeRange;
2223
2224 IntRange SubRange
2225 = GetExprRange(C, CE->getSubExpr(),
2226 std::min(MaxWidth, OutputTypeRange.Width));
2227
2228 // Bail out if the subexpr's range is as wide as the cast type.
2229 if (SubRange.Width >= OutputTypeRange.Width)
2230 return OutputTypeRange;
2231
2232 // Otherwise, we take the smaller width, and we're non-negative if
2233 // either the output type or the subexpr is.
2234 return IntRange(SubRange.Width,
2235 SubRange.NonNegative || OutputTypeRange.NonNegative);
2236 }
2237
2238 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2239 // If we can fold the condition, just take that operand.
2240 bool CondResult;
2241 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
2242 return GetExprRange(C, CondResult ? CO->getTrueExpr()
2243 : CO->getFalseExpr(),
2244 MaxWidth);
2245
2246 // Otherwise, conservatively merge.
2247 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
2248 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
2249 return IntRange::join(L, R);
2250 }
2251
2252 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2253 switch (BO->getOpcode()) {
2254
2255 // Boolean-valued operations are single-bit and positive.
2256 case BinaryOperator::LAnd:
2257 case BinaryOperator::LOr:
2258 case BinaryOperator::LT:
2259 case BinaryOperator::GT:
2260 case BinaryOperator::LE:
2261 case BinaryOperator::GE:
2262 case BinaryOperator::EQ:
2263 case BinaryOperator::NE:
2264 return IntRange::forBoolType();
2265
John McCallff96ccd2010-02-23 19:22:29 +00002266 // The type of these compound assignments is the type of the LHS,
2267 // so the RHS is not necessarily an integer.
2268 case BinaryOperator::MulAssign:
2269 case BinaryOperator::DivAssign:
2270 case BinaryOperator::RemAssign:
2271 case BinaryOperator::AddAssign:
2272 case BinaryOperator::SubAssign:
2273 return IntRange::forType(C, E->getType());
2274
John McCall70aa5392010-01-06 05:24:50 +00002275 // Operations with opaque sources are black-listed.
2276 case BinaryOperator::PtrMemD:
2277 case BinaryOperator::PtrMemI:
2278 return IntRange::forType(C, E->getType());
2279
John McCall2ce81ad2010-01-06 22:07:33 +00002280 // Bitwise-and uses the *infinum* of the two source ranges.
2281 case BinaryOperator::And:
John McCallff96ccd2010-02-23 19:22:29 +00002282 case BinaryOperator::AndAssign:
John McCall2ce81ad2010-01-06 22:07:33 +00002283 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
2284 GetExprRange(C, BO->getRHS(), MaxWidth));
2285
John McCall70aa5392010-01-06 05:24:50 +00002286 // Left shift gets black-listed based on a judgement call.
2287 case BinaryOperator::Shl:
John McCall1bff9932010-04-07 01:14:35 +00002288 // ...except that we want to treat '1 << (blah)' as logically
2289 // positive. It's an important idiom.
2290 if (IntegerLiteral *I
2291 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
2292 if (I->getValue() == 1) {
2293 IntRange R = IntRange::forType(C, E->getType());
2294 return IntRange(R.Width, /*NonNegative*/ true);
2295 }
2296 }
2297 // fallthrough
2298
John McCallff96ccd2010-02-23 19:22:29 +00002299 case BinaryOperator::ShlAssign:
John McCall70aa5392010-01-06 05:24:50 +00002300 return IntRange::forType(C, E->getType());
2301
John McCall2ce81ad2010-01-06 22:07:33 +00002302 // Right shift by a constant can narrow its left argument.
John McCallff96ccd2010-02-23 19:22:29 +00002303 case BinaryOperator::Shr:
2304 case BinaryOperator::ShrAssign: {
John McCall2ce81ad2010-01-06 22:07:33 +00002305 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2306
2307 // If the shift amount is a positive constant, drop the width by
2308 // that much.
2309 llvm::APSInt shift;
2310 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
2311 shift.isNonNegative()) {
2312 unsigned zext = shift.getZExtValue();
2313 if (zext >= L.Width)
2314 L.Width = (L.NonNegative ? 0 : 1);
2315 else
2316 L.Width -= zext;
2317 }
2318
2319 return L;
2320 }
2321
2322 // Comma acts as its right operand.
John McCall70aa5392010-01-06 05:24:50 +00002323 case BinaryOperator::Comma:
2324 return GetExprRange(C, BO->getRHS(), MaxWidth);
2325
John McCall2ce81ad2010-01-06 22:07:33 +00002326 // Black-list pointer subtractions.
John McCall70aa5392010-01-06 05:24:50 +00002327 case BinaryOperator::Sub:
2328 if (BO->getLHS()->getType()->isPointerType())
2329 return IntRange::forType(C, E->getType());
2330 // fallthrough
Ted Kremenekc8b188d2010-02-16 01:46:59 +00002331
John McCall70aa5392010-01-06 05:24:50 +00002332 default:
2333 break;
2334 }
2335
2336 // Treat every other operator as if it were closed on the
2337 // narrowest type that encompasses both operands.
2338 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
2339 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
2340 return IntRange::join(L, R);
2341 }
2342
2343 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2344 switch (UO->getOpcode()) {
2345 // Boolean-valued operations are white-listed.
2346 case UnaryOperator::LNot:
2347 return IntRange::forBoolType();
2348
2349 // Operations with opaque sources are black-listed.
2350 case UnaryOperator::Deref:
2351 case UnaryOperator::AddrOf: // should be impossible
2352 case UnaryOperator::OffsetOf:
2353 return IntRange::forType(C, E->getType());
2354
2355 default:
2356 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
2357 }
2358 }
Douglas Gregor882211c2010-04-28 22:16:22 +00002359
2360 if (dyn_cast<OffsetOfExpr>(E)) {
2361 IntRange::forType(C, E->getType());
2362 }
John McCall70aa5392010-01-06 05:24:50 +00002363
2364 FieldDecl *BitField = E->getBitField();
2365 if (BitField) {
2366 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
2367 unsigned BitWidth = BitWidthAP.getZExtValue();
2368
2369 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
2370 }
2371
2372 return IntRange::forType(C, E->getType());
2373}
John McCall263a48b2010-01-04 23:31:57 +00002374
John McCallcc7e5bf2010-05-06 08:58:33 +00002375IntRange GetExprRange(ASTContext &C, Expr *E) {
2376 return GetExprRange(C, E, C.getIntWidth(E->getType()));
2377}
2378
John McCall263a48b2010-01-04 23:31:57 +00002379/// Checks whether the given value, which currently has the given
2380/// source semantics, has the same value when coerced through the
2381/// target semantics.
John McCall70aa5392010-01-06 05:24:50 +00002382bool IsSameFloatAfterCast(const llvm::APFloat &value,
2383 const llvm::fltSemantics &Src,
2384 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002385 llvm::APFloat truncated = value;
2386
2387 bool ignored;
2388 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
2389 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
2390
2391 return truncated.bitwiseIsEqual(value);
2392}
2393
2394/// Checks whether the given value, which currently has the given
2395/// source semantics, has the same value when coerced through the
2396/// target semantics.
2397///
2398/// The value might be a vector of floats (or a complex number).
John McCall70aa5392010-01-06 05:24:50 +00002399bool IsSameFloatAfterCast(const APValue &value,
2400 const llvm::fltSemantics &Src,
2401 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +00002402 if (value.isFloat())
2403 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
2404
2405 if (value.isVector()) {
2406 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
2407 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
2408 return false;
2409 return true;
2410 }
2411
2412 assert(value.isComplexFloat());
2413 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
2414 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
2415}
2416
John McCallcc7e5bf2010-05-06 08:58:33 +00002417void AnalyzeImplicitConversions(Sema &S, Expr *E);
2418
2419bool IsZero(Sema &S, Expr *E) {
2420 llvm::APSInt Value;
2421 return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
2422}
2423
2424void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
2425 BinaryOperator::Opcode op = E->getOpcode();
2426 if (op == BinaryOperator::LT && IsZero(S, E->getRHS())) {
2427 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2428 << "< 0" << "false"
2429 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2430 } else if (op == BinaryOperator::GE && IsZero(S, E->getRHS())) {
2431 S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
2432 << ">= 0" << "true"
2433 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2434 } else if (op == BinaryOperator::GT && IsZero(S, E->getLHS())) {
2435 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2436 << "0 >" << "false"
2437 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2438 } else if (op == BinaryOperator::LE && IsZero(S, E->getLHS())) {
2439 S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
2440 << "0 <=" << "true"
2441 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
2442 }
2443}
2444
2445/// Analyze the operands of the given comparison. Implements the
2446/// fallback case from AnalyzeComparison.
2447void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
2448 AnalyzeImplicitConversions(S, E->getLHS());
2449 AnalyzeImplicitConversions(S, E->getRHS());
2450}
John McCall263a48b2010-01-04 23:31:57 +00002451
John McCallca01b222010-01-04 23:21:16 +00002452/// \brief Implements -Wsign-compare.
2453///
2454/// \param lex the left-hand expression
2455/// \param rex the right-hand expression
2456/// \param OpLoc the location of the joining operator
John McCall71d8d9b2010-03-11 19:43:18 +00002457/// \param BinOpc binary opcode or 0
John McCallcc7e5bf2010-05-06 08:58:33 +00002458void AnalyzeComparison(Sema &S, BinaryOperator *E) {
2459 // The type the comparison is being performed in.
2460 QualType T = E->getLHS()->getType();
2461 assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
2462 && "comparison with mismatched types");
John McCallca01b222010-01-04 23:21:16 +00002463
John McCallcc7e5bf2010-05-06 08:58:33 +00002464 // We don't do anything special if this isn't an unsigned integral
2465 // comparison: we're only interested in integral comparisons, and
2466 // signed comparisons only happen in cases we don't care to warn about.
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00002467 if (!T->hasUnsignedIntegerRepresentation())
John McCallcc7e5bf2010-05-06 08:58:33 +00002468 return AnalyzeImpConvsInComparison(S, E);
John McCall70aa5392010-01-06 05:24:50 +00002469
John McCallcc7e5bf2010-05-06 08:58:33 +00002470 Expr *lex = E->getLHS()->IgnoreParenImpCasts();
2471 Expr *rex = E->getRHS()->IgnoreParenImpCasts();
John McCallca01b222010-01-04 23:21:16 +00002472
John McCallcc7e5bf2010-05-06 08:58:33 +00002473 // Check to see if one of the (unmodified) operands is of different
2474 // signedness.
2475 Expr *signedOperand, *unsignedOperand;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00002476 if (lex->getType()->hasSignedIntegerRepresentation()) {
2477 assert(!rex->getType()->hasSignedIntegerRepresentation() &&
John McCallcc7e5bf2010-05-06 08:58:33 +00002478 "unsigned comparison between two signed integer expressions?");
2479 signedOperand = lex;
2480 unsignedOperand = rex;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00002481 } else if (rex->getType()->hasSignedIntegerRepresentation()) {
John McCallcc7e5bf2010-05-06 08:58:33 +00002482 signedOperand = rex;
2483 unsignedOperand = lex;
John McCallca01b222010-01-04 23:21:16 +00002484 } else {
John McCallcc7e5bf2010-05-06 08:58:33 +00002485 CheckTrivialUnsignedComparison(S, E);
2486 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002487 }
2488
John McCallcc7e5bf2010-05-06 08:58:33 +00002489 // Otherwise, calculate the effective range of the signed operand.
2490 IntRange signedRange = GetExprRange(S.Context, signedOperand);
John McCall70aa5392010-01-06 05:24:50 +00002491
John McCallcc7e5bf2010-05-06 08:58:33 +00002492 // Go ahead and analyze implicit conversions in the operands. Note
2493 // that we skip the implicit conversions on both sides.
2494 AnalyzeImplicitConversions(S, lex);
2495 AnalyzeImplicitConversions(S, rex);
John McCallca01b222010-01-04 23:21:16 +00002496
John McCallcc7e5bf2010-05-06 08:58:33 +00002497 // If the signed range is non-negative, -Wsign-compare won't fire,
2498 // but we should still check for comparisons which are always true
2499 // or false.
2500 if (signedRange.NonNegative)
2501 return CheckTrivialUnsignedComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +00002502
2503 // For (in)equality comparisons, if the unsigned operand is a
2504 // constant which cannot collide with a overflowed signed operand,
2505 // then reinterpreting the signed operand as unsigned will not
2506 // change the result of the comparison.
John McCallcc7e5bf2010-05-06 08:58:33 +00002507 if (E->isEqualityOp()) {
2508 unsigned comparisonWidth = S.Context.getIntWidth(T);
2509 IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
John McCallca01b222010-01-04 23:21:16 +00002510
John McCallcc7e5bf2010-05-06 08:58:33 +00002511 // We should never be unable to prove that the unsigned operand is
2512 // non-negative.
2513 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
2514
2515 if (unsignedRange.Width < comparisonWidth)
2516 return;
2517 }
2518
2519 S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
2520 << lex->getType() << rex->getType()
2521 << lex->getSourceRange() << rex->getSourceRange();
John McCallca01b222010-01-04 23:21:16 +00002522}
2523
John McCall263a48b2010-01-04 23:31:57 +00002524/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
John McCallcc7e5bf2010-05-06 08:58:33 +00002525void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
John McCall263a48b2010-01-04 23:31:57 +00002526 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
2527}
2528
John McCallcc7e5bf2010-05-06 08:58:33 +00002529void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
2530 bool *ICContext = 0) {
2531 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall263a48b2010-01-04 23:31:57 +00002532
John McCallcc7e5bf2010-05-06 08:58:33 +00002533 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
2534 const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
2535 if (Source == Target) return;
2536 if (Target->isDependentType()) return;
John McCall263a48b2010-01-04 23:31:57 +00002537
2538 // Never diagnose implicit casts to bool.
2539 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
2540 return;
2541
2542 // Strip vector types.
2543 if (isa<VectorType>(Source)) {
2544 if (!isa<VectorType>(Target))
John McCallcc7e5bf2010-05-06 08:58:33 +00002545 return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar);
John McCall263a48b2010-01-04 23:31:57 +00002546
2547 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
2548 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
2549 }
2550
2551 // Strip complex types.
2552 if (isa<ComplexType>(Source)) {
2553 if (!isa<ComplexType>(Target))
John McCallcc7e5bf2010-05-06 08:58:33 +00002554 return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar);
John McCall263a48b2010-01-04 23:31:57 +00002555
2556 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
2557 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
2558 }
2559
2560 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
2561 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
2562
2563 // If the source is floating point...
2564 if (SourceBT && SourceBT->isFloatingPoint()) {
2565 // ...and the target is floating point...
2566 if (TargetBT && TargetBT->isFloatingPoint()) {
2567 // ...then warn if we're dropping FP rank.
2568
2569 // Builtin FP kinds are ordered by increasing FP rank.
2570 if (SourceBT->getKind() > TargetBT->getKind()) {
2571 // Don't warn about float constants that are precisely
2572 // representable in the target type.
2573 Expr::EvalResult result;
John McCallcc7e5bf2010-05-06 08:58:33 +00002574 if (E->Evaluate(result, S.Context)) {
John McCall263a48b2010-01-04 23:31:57 +00002575 // Value might be a float, a float vector, or a float complex.
2576 if (IsSameFloatAfterCast(result.Val,
John McCallcc7e5bf2010-05-06 08:58:33 +00002577 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2578 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall263a48b2010-01-04 23:31:57 +00002579 return;
2580 }
2581
John McCallcc7e5bf2010-05-06 08:58:33 +00002582 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision);
John McCall263a48b2010-01-04 23:31:57 +00002583 }
2584 return;
2585 }
2586
2587 // If the target is integral, always warn.
2588 if ((TargetBT && TargetBT->isInteger()))
2589 // TODO: don't warn for integer values?
John McCallcc7e5bf2010-05-06 08:58:33 +00002590 DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer);
John McCall263a48b2010-01-04 23:31:57 +00002591
2592 return;
2593 }
2594
John McCall70aa5392010-01-06 05:24:50 +00002595 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall263a48b2010-01-04 23:31:57 +00002596 return;
2597
John McCallcc7e5bf2010-05-06 08:58:33 +00002598 IntRange SourceRange = GetExprRange(S.Context, E);
2599 IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target);
John McCall70aa5392010-01-06 05:24:50 +00002600
2601 if (SourceRange.Width > TargetRange.Width) {
John McCall263a48b2010-01-04 23:31:57 +00002602 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2603 // and by god we'll let them.
John McCall70aa5392010-01-06 05:24:50 +00002604 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCallcc7e5bf2010-05-06 08:58:33 +00002605 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32);
2606 return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision);
2607 }
2608
2609 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
2610 (!TargetRange.NonNegative && SourceRange.NonNegative &&
2611 SourceRange.Width == TargetRange.Width)) {
2612 unsigned DiagID = diag::warn_impcast_integer_sign;
2613
2614 // Traditionally, gcc has warned about this under -Wsign-compare.
2615 // We also want to warn about it in -Wconversion.
2616 // So if -Wconversion is off, use a completely identical diagnostic
2617 // in the sign-compare group.
2618 // The conditional-checking code will
2619 if (ICContext) {
2620 DiagID = diag::warn_impcast_integer_sign_conditional;
2621 *ICContext = true;
2622 }
2623
2624 return DiagnoseImpCast(S, E, T, DiagID);
John McCall263a48b2010-01-04 23:31:57 +00002625 }
2626
2627 return;
2628}
2629
John McCallcc7e5bf2010-05-06 08:58:33 +00002630void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
2631
2632void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
2633 bool &ICContext) {
2634 E = E->IgnoreParenImpCasts();
2635
2636 if (isa<ConditionalOperator>(E))
2637 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
2638
2639 AnalyzeImplicitConversions(S, E);
2640 if (E->getType() != T)
2641 return CheckImplicitConversion(S, E, T, &ICContext);
2642 return;
2643}
2644
2645void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
2646 AnalyzeImplicitConversions(S, E->getCond());
2647
2648 bool Suspicious = false;
2649 CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious);
2650 CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious);
2651
2652 // If -Wconversion would have warned about either of the candidates
2653 // for a signedness conversion to the context type...
2654 if (!Suspicious) return;
2655
2656 // ...but it's currently ignored...
2657 if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional))
2658 return;
2659
2660 // ...and -Wsign-compare isn't...
2661 if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional))
2662 return;
2663
2664 // ...then check whether it would have warned about either of the
2665 // candidates for a signedness conversion to the condition type.
2666 if (E->getType() != T) {
2667 Suspicious = false;
2668 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
2669 E->getType(), &Suspicious);
2670 if (!Suspicious)
2671 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
2672 E->getType(), &Suspicious);
2673 if (!Suspicious)
2674 return;
2675 }
2676
2677 // If so, emit a diagnostic under -Wsign-compare.
2678 Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts();
2679 Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts();
2680 S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional)
2681 << lex->getType() << rex->getType()
2682 << lex->getSourceRange() << rex->getSourceRange();
2683}
2684
2685/// AnalyzeImplicitConversions - Find and report any interesting
2686/// implicit conversions in the given expression. There are a couple
2687/// of competing diagnostics here, -Wconversion and -Wsign-compare.
2688void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) {
2689 QualType T = OrigE->getType();
2690 Expr *E = OrigE->IgnoreParenImpCasts();
2691
2692 // For conditional operators, we analyze the arguments as if they
2693 // were being fed directly into the output.
2694 if (isa<ConditionalOperator>(E)) {
2695 ConditionalOperator *CO = cast<ConditionalOperator>(E);
2696 CheckConditionalOperator(S, CO, T);
2697 return;
2698 }
2699
2700 // Go ahead and check any implicit conversions we might have skipped.
2701 // The non-canonical typecheck is just an optimization;
2702 // CheckImplicitConversion will filter out dead implicit conversions.
2703 if (E->getType() != T)
2704 CheckImplicitConversion(S, E, T);
2705
2706 // Now continue drilling into this expression.
2707
2708 // Skip past explicit casts.
2709 if (isa<ExplicitCastExpr>(E)) {
2710 E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
2711 return AnalyzeImplicitConversions(S, E);
2712 }
2713
2714 // Do a somewhat different check with comparison operators.
2715 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp())
2716 return AnalyzeComparison(S, cast<BinaryOperator>(E));
2717
2718 // These break the otherwise-useful invariant below. Fortunately,
2719 // we don't really need to recurse into them, because any internal
2720 // expressions should have been analyzed already when they were
2721 // built into statements.
2722 if (isa<StmtExpr>(E)) return;
2723
2724 // Don't descend into unevaluated contexts.
2725 if (isa<SizeOfAlignOfExpr>(E)) return;
2726
2727 // Now just recurse over the expression's children.
2728 for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end();
2729 I != IE; ++I)
2730 AnalyzeImplicitConversions(S, cast<Expr>(*I));
2731}
2732
2733} // end anonymous namespace
2734
2735/// Diagnoses "dangerous" implicit conversions within the given
2736/// expression (which is a full expression). Implements -Wconversion
2737/// and -Wsign-compare.
2738void Sema::CheckImplicitConversions(Expr *E) {
2739 // Don't diagnose in unevaluated contexts.
2740 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
2741 return;
2742
2743 // Don't diagnose for value- or type-dependent expressions.
2744 if (E->isTypeDependent() || E->isValueDependent())
2745 return;
2746
2747 AnalyzeImplicitConversions(*this, E);
2748}
2749
Mike Stump0c2ec772010-01-21 03:59:47 +00002750/// CheckParmsForFunctionDef - Check that the parameters of the given
2751/// function are appropriate for the definition of a function. This
2752/// takes care of any checks that cannot be performed on the
2753/// declaration itself, e.g., that the types of each of the function
2754/// parameters are complete.
2755bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2756 bool HasInvalidParm = false;
2757 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2758 ParmVarDecl *Param = FD->getParamDecl(p);
2759
2760 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2761 // function declarator that is part of a function definition of
2762 // that function shall not have incomplete type.
2763 //
2764 // This is also C++ [dcl.fct]p6.
2765 if (!Param->isInvalidDecl() &&
2766 RequireCompleteType(Param->getLocation(), Param->getType(),
2767 diag::err_typecheck_decl_incomplete_type)) {
2768 Param->setInvalidDecl();
2769 HasInvalidParm = true;
2770 }
2771
2772 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2773 // declaration of each parameter shall include an identifier.
2774 if (Param->getIdentifier() == 0 &&
2775 !Param->isImplicit() &&
2776 !getLangOptions().CPlusPlus)
2777 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigdeb55d52010-02-01 05:02:49 +00002778
2779 // C99 6.7.5.3p12:
2780 // If the function declarator is not part of a definition of that
2781 // function, parameters may have incomplete type and may use the [*]
2782 // notation in their sequences of declarator specifiers to specify
2783 // variable length array types.
2784 QualType PType = Param->getOriginalType();
2785 if (const ArrayType *AT = Context.getAsArrayType(PType)) {
2786 if (AT->getSizeModifier() == ArrayType::Star) {
2787 // FIXME: This diagnosic should point the the '[*]' if source-location
2788 // information is added for it.
2789 Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
2790 }
2791 }
Mike Stump0c2ec772010-01-21 03:59:47 +00002792 }
2793
2794 return HasInvalidParm;
2795}