blob: b792ea8071cfa34c12f39b7b2409e93087b9e1cc [file] [log] [blame]
Chris Lattner59907c42007-08-10 20:18:51 +00001//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner59907c42007-08-10 20:18:51 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stump1eb44332009-09-09 15:08:12 +000010// This file implements extra semantic analysis beyond what is enforced
Chris Lattner59907c42007-08-10 20:18:51 +000011// by the C type system.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Sema.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000016#include "clang/Analysis/CFG.h"
17#include "clang/Analysis/PathSensitive/AnalysisContext.h"
Chris Lattner59907c42007-08-10 20:18:51 +000018#include "clang/AST/ASTContext.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000019#include "clang/AST/CharUnits.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000020#include "clang/AST/DeclObjC.h"
Ted Kremenek23245122007-08-20 16:18:38 +000021#include "clang/AST/ExprCXX.h"
Ted Kremenek7ff22b22008-06-16 18:00:42 +000022#include "clang/AST/ExprObjC.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000023#include "clang/AST/DeclObjC.h"
24#include "clang/AST/StmtCXX.h"
25#include "clang/AST/StmtObjC.h"
Chris Lattner719e6152009-02-18 19:21:10 +000026#include "clang/Lex/LiteralSupport.h"
Chris Lattner59907c42007-08-10 20:18:51 +000027#include "clang/Lex/Preprocessor.h"
Mike Stumpf8c49212010-01-21 03:59:47 +000028#include "llvm/ADT/BitVector.h"
29#include "llvm/ADT/STLExtras.h"
Zhongxing Xua1f3dba2009-05-20 01:55:10 +000030#include <limits>
Mike Stumpf8c49212010-01-21 03:59:47 +000031#include <queue>
Chris Lattner59907c42007-08-10 20:18:51 +000032using namespace clang;
33
Chris Lattner60800082009-02-18 17:49:48 +000034/// getLocationOfStringLiteralByte - Return a source location that points to the
35/// specified byte of the specified string literal.
36///
37/// Strings are amazingly complex. They can be formed from multiple tokens and
38/// can have escape sequences in them in addition to the usual trigraph and
39/// escaped newline business. This routine handles this complexity.
40///
41SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
42 unsigned ByteNo) const {
43 assert(!SL->isWide() && "This doesn't work for wide strings yet");
Mike Stump1eb44332009-09-09 15:08:12 +000044
Chris Lattner60800082009-02-18 17:49:48 +000045 // Loop over all of the tokens in this string until we find the one that
46 // contains the byte we're looking for.
47 unsigned TokNo = 0;
48 while (1) {
49 assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!");
50 SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +000051
Chris Lattner60800082009-02-18 17:49:48 +000052 // Get the spelling of the string so that we can get the data that makes up
53 // the string literal, not the identifier for the macro it is potentially
54 // expanded through.
55 SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc);
56
57 // Re-lex the token to get its length and original spelling.
58 std::pair<FileID, unsigned> LocInfo =
59 SourceMgr.getDecomposedLoc(StrTokSpellingLoc);
60 std::pair<const char *,const char *> Buffer =
61 SourceMgr.getBufferData(LocInfo.first);
62 const char *StrData = Buffer.first+LocInfo.second;
Mike Stump1eb44332009-09-09 15:08:12 +000063
Chris Lattner60800082009-02-18 17:49:48 +000064 // Create a langops struct and enable trigraphs. This is sufficient for
65 // relexing tokens.
66 LangOptions LangOpts;
67 LangOpts.Trigraphs = true;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner60800082009-02-18 17:49:48 +000069 // Create a lexer starting at the beginning of this token.
70 Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.first, StrData,
71 Buffer.second);
72 Token TheTok;
73 TheLexer.LexFromRawLexer(TheTok);
Mike Stump1eb44332009-09-09 15:08:12 +000074
Chris Lattner443e53c2009-02-18 19:26:42 +000075 // Use the StringLiteralParser to compute the length of the string in bytes.
76 StringLiteralParser SLP(&TheTok, 1, PP);
77 unsigned TokNumBytes = SLP.GetStringLength();
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner2197c962009-02-18 18:52:52 +000079 // If the byte is in this token, return the location of the byte.
Chris Lattner60800082009-02-18 17:49:48 +000080 if (ByteNo < TokNumBytes ||
81 (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) {
Mike Stump1eb44332009-09-09 15:08:12 +000082 unsigned Offset =
Chris Lattner719e6152009-02-18 19:21:10 +000083 StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP);
Mike Stump1eb44332009-09-09 15:08:12 +000084
Chris Lattner719e6152009-02-18 19:21:10 +000085 // Now that we know the offset of the token in the spelling, use the
86 // preprocessor to get the offset in the original source.
87 return PP.AdvanceToTokenCharacter(StrTokLoc, Offset);
Chris Lattner60800082009-02-18 17:49:48 +000088 }
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner60800082009-02-18 17:49:48 +000090 // Move to the next string token.
91 ++TokNo;
92 ByteNo -= TokNumBytes;
93 }
94}
95
Ryan Flynn4403a5e2009-08-06 03:00:50 +000096/// CheckablePrintfAttr - does a function call have a "printf" attribute
97/// and arguments that merit checking?
98bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
99 if (Format->getType() == "printf") return true;
100 if (Format->getType() == "printf0") {
101 // printf0 allows null "format" string; if so don't check format/args
102 unsigned format_idx = Format->getFormatIdx() - 1;
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000103 // Does the index refer to the implicit object argument?
104 if (isa<CXXMemberCallExpr>(TheCall)) {
105 if (format_idx == 0)
106 return false;
107 --format_idx;
108 }
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000109 if (format_idx < TheCall->getNumArgs()) {
110 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
Douglas Gregorce940492009-09-25 04:25:58 +0000111 if (!Format->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull))
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000112 return true;
113 }
114 }
115 return false;
116}
Chris Lattner60800082009-02-18 17:49:48 +0000117
Sebastian Redl0eb23302009-01-19 00:08:26 +0000118Action::OwningExprResult
Anders Carlssond406bf02009-08-16 01:56:34 +0000119Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Sebastian Redl0eb23302009-01-19 00:08:26 +0000120 OwningExprResult TheCallResult(Owned(TheCall));
Douglas Gregor2def4832008-11-17 20:34:05 +0000121
Anders Carlssond406bf02009-08-16 01:56:34 +0000122 switch (BuiltinID) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000123 case Builtin::BI__builtin___CFStringMakeConstantString:
Chris Lattner925e60d2007-12-28 05:29:59 +0000124 assert(TheCall->getNumArgs() == 1 &&
Chris Lattner1b9a0792007-12-20 00:26:33 +0000125 "Wrong # arguments to builtin CFStringMakeConstantString");
Chris Lattner69039812009-02-18 06:01:06 +0000126 if (CheckObjCString(TheCall->getArg(0)))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000127 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000128 break;
Ted Kremenek49ff7a12008-07-09 17:58:53 +0000129 case Builtin::BI__builtin_stdarg_start:
Chris Lattner30ce3442007-12-19 23:59:04 +0000130 case Builtin::BI__builtin_va_start:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000131 if (SemaBuiltinVAStart(TheCall))
132 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000133 break;
Chris Lattner1b9a0792007-12-20 00:26:33 +0000134 case Builtin::BI__builtin_isgreater:
135 case Builtin::BI__builtin_isgreaterequal:
136 case Builtin::BI__builtin_isless:
137 case Builtin::BI__builtin_islessequal:
138 case Builtin::BI__builtin_islessgreater:
139 case Builtin::BI__builtin_isunordered:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000140 if (SemaBuiltinUnorderedCompare(TheCall))
141 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000142 break;
Eli Friedman9ac6f622009-08-31 20:06:00 +0000143 case Builtin::BI__builtin_isfinite:
144 case Builtin::BI__builtin_isinf:
145 case Builtin::BI__builtin_isinf_sign:
146 case Builtin::BI__builtin_isnan:
147 case Builtin::BI__builtin_isnormal:
148 if (SemaBuiltinUnaryFP(TheCall))
149 return ExprError();
150 break;
Eli Friedman6cfda232008-05-20 08:23:37 +0000151 case Builtin::BI__builtin_return_address:
152 case Builtin::BI__builtin_frame_address:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000153 if (SemaBuiltinStackAddress(TheCall))
154 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000155 break;
Chris Lattner21fb98e2009-09-23 06:06:36 +0000156 case Builtin::BI__builtin_eh_return_data_regno:
157 if (SemaBuiltinEHReturnDataRegNo(TheCall))
158 return ExprError();
159 break;
Eli Friedmand38617c2008-05-14 19:38:39 +0000160 case Builtin::BI__builtin_shufflevector:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000161 return SemaBuiltinShuffleVector(TheCall);
162 // TheCall will be freed by the smart pointer here, but that's fine, since
163 // SemaBuiltinShuffleVector guts it, but then doesn't release it.
Daniel Dunbar4493f792008-07-21 22:59:13 +0000164 case Builtin::BI__builtin_prefetch:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000165 if (SemaBuiltinPrefetch(TheCall))
166 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000167 break;
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000168 case Builtin::BI__builtin_object_size:
Sebastian Redl0eb23302009-01-19 00:08:26 +0000169 if (SemaBuiltinObjectSize(TheCall))
170 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000171 break;
Eli Friedmand875fed2009-05-03 04:46:36 +0000172 case Builtin::BI__builtin_longjmp:
173 if (SemaBuiltinLongjmp(TheCall))
174 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000175 break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000176 case Builtin::BI__sync_fetch_and_add:
177 case Builtin::BI__sync_fetch_and_sub:
178 case Builtin::BI__sync_fetch_and_or:
179 case Builtin::BI__sync_fetch_and_and:
180 case Builtin::BI__sync_fetch_and_xor:
Chris Lattnereebd9d22009-05-13 04:37:52 +0000181 case Builtin::BI__sync_fetch_and_nand:
Chris Lattner5caa3702009-05-08 06:58:22 +0000182 case Builtin::BI__sync_add_and_fetch:
183 case Builtin::BI__sync_sub_and_fetch:
184 case Builtin::BI__sync_and_and_fetch:
185 case Builtin::BI__sync_or_and_fetch:
186 case Builtin::BI__sync_xor_and_fetch:
Chris Lattnereebd9d22009-05-13 04:37:52 +0000187 case Builtin::BI__sync_nand_and_fetch:
Chris Lattner5caa3702009-05-08 06:58:22 +0000188 case Builtin::BI__sync_val_compare_and_swap:
189 case Builtin::BI__sync_bool_compare_and_swap:
190 case Builtin::BI__sync_lock_test_and_set:
191 case Builtin::BI__sync_lock_release:
192 if (SemaBuiltinAtomicOverloaded(TheCall))
193 return ExprError();
Anders Carlssond406bf02009-08-16 01:56:34 +0000194 break;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000195 }
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Anders Carlssond406bf02009-08-16 01:56:34 +0000197 return move(TheCallResult);
198}
Daniel Dunbarde454282008-10-02 18:44:07 +0000199
Anders Carlssond406bf02009-08-16 01:56:34 +0000200/// CheckFunctionCall - Check a direct function call for various correctness
201/// and safety properties not strictly enforced by the C type system.
202bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
203 // Get the IdentifierInfo* for the called function.
204 IdentifierInfo *FnInfo = FDecl->getIdentifier();
205
206 // None of the checks below are needed for functions that don't have
207 // simple names (e.g., C++ conversion functions).
208 if (!FnInfo)
209 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000210
Daniel Dunbarde454282008-10-02 18:44:07 +0000211 // FIXME: This mechanism should be abstracted to be less fragile and
212 // more efficient. For example, just map function ids to custom
213 // handlers.
214
Chris Lattner59907c42007-08-10 20:18:51 +0000215 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000216 if (const FormatAttr *Format = FDecl->getAttr<FormatAttr>()) {
Ryan Flynn4403a5e2009-08-06 03:00:50 +0000217 if (CheckablePrintfAttr(Format, TheCall)) {
Ted Kremenek3d692df2009-02-27 17:58:43 +0000218 bool HasVAListArg = Format->getFirstArg() == 0;
219 if (!HasVAListArg) {
Mike Stump1eb44332009-09-09 15:08:12 +0000220 if (const FunctionProtoType *Proto
John McCall183700f2009-09-21 23:43:11 +0000221 = FDecl->getType()->getAs<FunctionProtoType>())
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000222 HasVAListArg = !Proto->isVariadic();
Ted Kremenek3d692df2009-02-27 17:58:43 +0000223 }
Douglas Gregor3c385e52009-02-14 18:57:46 +0000224 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
Ted Kremenek3d692df2009-02-27 17:58:43 +0000225 HasVAListArg ? 0 : Format->getFirstArg() - 1);
Douglas Gregor3c385e52009-02-14 18:57:46 +0000226 }
Chris Lattner59907c42007-08-10 20:18:51 +0000227 }
Mike Stump1eb44332009-09-09 15:08:12 +0000228
229 for (const NonNullAttr *NonNull = FDecl->getAttr<NonNullAttr>(); NonNull;
Anders Carlssond406bf02009-08-16 01:56:34 +0000230 NonNull = NonNull->getNext<NonNullAttr>())
231 CheckNonNullArguments(NonNull, TheCall);
Sebastian Redl0eb23302009-01-19 00:08:26 +0000232
Anders Carlssond406bf02009-08-16 01:56:34 +0000233 return false;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000234}
235
Anders Carlssond406bf02009-08-16 01:56:34 +0000236bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000237 // Printf checking.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000238 const FormatAttr *Format = NDecl->getAttr<FormatAttr>();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000239 if (!Format)
Anders Carlssond406bf02009-08-16 01:56:34 +0000240 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000242 const VarDecl *V = dyn_cast<VarDecl>(NDecl);
243 if (!V)
Anders Carlssond406bf02009-08-16 01:56:34 +0000244 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000245
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000246 QualType Ty = V->getType();
247 if (!Ty->isBlockPointerType())
Anders Carlssond406bf02009-08-16 01:56:34 +0000248 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Anders Carlssond406bf02009-08-16 01:56:34 +0000250 if (!CheckablePrintfAttr(Format, TheCall))
251 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000252
Anders Carlssond406bf02009-08-16 01:56:34 +0000253 bool HasVAListArg = Format->getFirstArg() == 0;
254 if (!HasVAListArg) {
Mike Stump1eb44332009-09-09 15:08:12 +0000255 const FunctionType *FT =
John McCall183700f2009-09-21 23:43:11 +0000256 Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Anders Carlssond406bf02009-08-16 01:56:34 +0000257 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
258 HasVAListArg = !Proto->isVariadic();
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000259 }
Anders Carlssond406bf02009-08-16 01:56:34 +0000260 CheckPrintfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1,
261 HasVAListArg ? 0 : Format->getFirstArg() - 1);
262
263 return false;
Fariborz Jahanian725165f2009-05-18 21:05:18 +0000264}
265
Chris Lattner5caa3702009-05-08 06:58:22 +0000266/// SemaBuiltinAtomicOverloaded - We have a call to a function like
267/// __sync_fetch_and_add, which is an overloaded function based on the pointer
268/// type of its first argument. The main ActOnCallExpr routines have already
269/// promoted the types of arguments because all of these calls are prototyped as
270/// void(...).
271///
272/// This function goes through and does final semantic checking for these
273/// builtins,
274bool Sema::SemaBuiltinAtomicOverloaded(CallExpr *TheCall) {
275 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
276 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
277
278 // Ensure that we have at least one argument to do type inference from.
279 if (TheCall->getNumArgs() < 1)
280 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
281 << 0 << TheCall->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Chris Lattner5caa3702009-05-08 06:58:22 +0000283 // Inspect the first argument of the atomic builtin. This should always be
284 // a pointer type, whose element is an integral scalar or pointer type.
285 // Because it is a pointer type, we don't have to worry about any implicit
286 // casts here.
287 Expr *FirstArg = TheCall->getArg(0);
288 if (!FirstArg->getType()->isPointerType())
289 return Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
290 << FirstArg->getType() << FirstArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000291
Ted Kremenek6217b802009-07-29 21:53:49 +0000292 QualType ValType = FirstArg->getType()->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000293 if (!ValType->isIntegerType() && !ValType->isPointerType() &&
Chris Lattner5caa3702009-05-08 06:58:22 +0000294 !ValType->isBlockPointerType())
295 return Diag(DRE->getLocStart(),
296 diag::err_atomic_builtin_must_be_pointer_intptr)
297 << FirstArg->getType() << FirstArg->getSourceRange();
298
299 // We need to figure out which concrete builtin this maps onto. For example,
300 // __sync_fetch_and_add with a 2 byte object turns into
301 // __sync_fetch_and_add_2.
302#define BUILTIN_ROW(x) \
303 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
304 Builtin::BI##x##_8, Builtin::BI##x##_16 }
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattner5caa3702009-05-08 06:58:22 +0000306 static const unsigned BuiltinIndices[][5] = {
307 BUILTIN_ROW(__sync_fetch_and_add),
308 BUILTIN_ROW(__sync_fetch_and_sub),
309 BUILTIN_ROW(__sync_fetch_and_or),
310 BUILTIN_ROW(__sync_fetch_and_and),
311 BUILTIN_ROW(__sync_fetch_and_xor),
Chris Lattnereebd9d22009-05-13 04:37:52 +0000312 BUILTIN_ROW(__sync_fetch_and_nand),
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Chris Lattner5caa3702009-05-08 06:58:22 +0000314 BUILTIN_ROW(__sync_add_and_fetch),
315 BUILTIN_ROW(__sync_sub_and_fetch),
316 BUILTIN_ROW(__sync_and_and_fetch),
317 BUILTIN_ROW(__sync_or_and_fetch),
318 BUILTIN_ROW(__sync_xor_and_fetch),
Chris Lattnereebd9d22009-05-13 04:37:52 +0000319 BUILTIN_ROW(__sync_nand_and_fetch),
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Chris Lattner5caa3702009-05-08 06:58:22 +0000321 BUILTIN_ROW(__sync_val_compare_and_swap),
322 BUILTIN_ROW(__sync_bool_compare_and_swap),
323 BUILTIN_ROW(__sync_lock_test_and_set),
324 BUILTIN_ROW(__sync_lock_release)
325 };
Mike Stump1eb44332009-09-09 15:08:12 +0000326#undef BUILTIN_ROW
327
Chris Lattner5caa3702009-05-08 06:58:22 +0000328 // Determine the index of the size.
329 unsigned SizeIndex;
Ken Dyck199c3d62010-01-11 17:06:35 +0000330 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattner5caa3702009-05-08 06:58:22 +0000331 case 1: SizeIndex = 0; break;
332 case 2: SizeIndex = 1; break;
333 case 4: SizeIndex = 2; break;
334 case 8: SizeIndex = 3; break;
335 case 16: SizeIndex = 4; break;
336 default:
337 return Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
338 << FirstArg->getType() << FirstArg->getSourceRange();
339 }
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Chris Lattner5caa3702009-05-08 06:58:22 +0000341 // Each of these builtins has one pointer argument, followed by some number of
342 // values (0, 1 or 2) followed by a potentially empty varags list of stuff
343 // that we ignore. Find out which row of BuiltinIndices to read from as well
344 // as the number of fixed args.
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000345 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattner5caa3702009-05-08 06:58:22 +0000346 unsigned BuiltinIndex, NumFixed = 1;
347 switch (BuiltinID) {
348 default: assert(0 && "Unknown overloaded atomic builtin!");
349 case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break;
350 case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break;
351 case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break;
352 case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break;
353 case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break;
Chris Lattnereebd9d22009-05-13 04:37:52 +0000354 case Builtin::BI__sync_fetch_and_nand:BuiltinIndex = 5; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Chris Lattnereebd9d22009-05-13 04:37:52 +0000356 case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 6; break;
357 case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 7; break;
358 case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 8; break;
359 case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 9; break;
360 case Builtin::BI__sync_xor_and_fetch: BuiltinIndex =10; break;
361 case Builtin::BI__sync_nand_and_fetch:BuiltinIndex =11; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Chris Lattner5caa3702009-05-08 06:58:22 +0000363 case Builtin::BI__sync_val_compare_and_swap:
Chris Lattnereebd9d22009-05-13 04:37:52 +0000364 BuiltinIndex = 12;
Chris Lattner5caa3702009-05-08 06:58:22 +0000365 NumFixed = 2;
366 break;
367 case Builtin::BI__sync_bool_compare_and_swap:
Chris Lattnereebd9d22009-05-13 04:37:52 +0000368 BuiltinIndex = 13;
Chris Lattner5caa3702009-05-08 06:58:22 +0000369 NumFixed = 2;
370 break;
Chris Lattnereebd9d22009-05-13 04:37:52 +0000371 case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 14; break;
Chris Lattner5caa3702009-05-08 06:58:22 +0000372 case Builtin::BI__sync_lock_release:
Chris Lattnereebd9d22009-05-13 04:37:52 +0000373 BuiltinIndex = 15;
Chris Lattner5caa3702009-05-08 06:58:22 +0000374 NumFixed = 0;
375 break;
376 }
Mike Stump1eb44332009-09-09 15:08:12 +0000377
Chris Lattner5caa3702009-05-08 06:58:22 +0000378 // Now that we know how many fixed arguments we expect, first check that we
379 // have at least that many.
380 if (TheCall->getNumArgs() < 1+NumFixed)
381 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
382 << 0 << TheCall->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000383
384
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000385 // Get the decl for the concrete builtin from this, we can tell what the
386 // concrete integer type we should convert to is.
387 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
388 const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
389 IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
Mike Stump1eb44332009-09-09 15:08:12 +0000390 FunctionDecl *NewBuiltinDecl =
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000391 cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
392 TUScope, false, DRE->getLocStart()));
393 const FunctionProtoType *BuiltinFT =
John McCall183700f2009-09-21 23:43:11 +0000394 NewBuiltinDecl->getType()->getAs<FunctionProtoType>();
Ted Kremenek6217b802009-07-29 21:53:49 +0000395 ValType = BuiltinFT->getArgType(0)->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000397 // If the first type needs to be converted (e.g. void** -> int*), do it now.
398 if (BuiltinFT->getArgType(0) != FirstArg->getType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +0000399 ImpCastExprToType(FirstArg, BuiltinFT->getArgType(0), CastExpr::CK_BitCast);
Chris Lattnere7ac0a92009-05-08 15:36:58 +0000400 TheCall->setArg(0, FirstArg);
401 }
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner5caa3702009-05-08 06:58:22 +0000403 // Next, walk the valid ones promoting to the right type.
404 for (unsigned i = 0; i != NumFixed; ++i) {
405 Expr *Arg = TheCall->getArg(i+1);
Mike Stump1eb44332009-09-09 15:08:12 +0000406
Chris Lattner5caa3702009-05-08 06:58:22 +0000407 // If the argument is an implicit cast, then there was a promotion due to
408 // "...", just remove it now.
409 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
410 Arg = ICE->getSubExpr();
411 ICE->setSubExpr(0);
412 ICE->Destroy(Context);
413 TheCall->setArg(i+1, Arg);
414 }
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Chris Lattner5caa3702009-05-08 06:58:22 +0000416 // GCC does an implicit conversion to the pointer or integer ValType. This
417 // can fail in some cases (1i -> int**), check for this error case now.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000418 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Fariborz Jahaniane9f42082009-08-26 18:55:36 +0000419 CXXMethodDecl *ConversionDecl = 0;
420 if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind,
421 ConversionDecl))
Chris Lattner5caa3702009-05-08 06:58:22 +0000422 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner5caa3702009-05-08 06:58:22 +0000424 // Okay, we have something that *can* be converted to the right type. Check
425 // to see if there is a potentially weird extension going on here. This can
426 // happen when you do an atomic operation on something like an char* and
427 // pass in 42. The 42 gets converted to char. This is even more strange
428 // for things like 45.123 -> char, etc.
Mike Stump1eb44332009-09-09 15:08:12 +0000429 // FIXME: Do this check.
Anders Carlssoncdb61972009-08-07 22:21:05 +0000430 ImpCastExprToType(Arg, ValType, Kind, /*isLvalue=*/false);
Chris Lattner5caa3702009-05-08 06:58:22 +0000431 TheCall->setArg(i+1, Arg);
432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattner5caa3702009-05-08 06:58:22 +0000434 // Switch the DeclRefExpr to refer to the new decl.
435 DRE->setDecl(NewBuiltinDecl);
436 DRE->setType(NewBuiltinDecl->getType());
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Chris Lattner5caa3702009-05-08 06:58:22 +0000438 // Set the callee in the CallExpr.
439 // FIXME: This leaks the original parens and implicit casts.
440 Expr *PromotedCall = DRE;
441 UsualUnaryConversions(PromotedCall);
442 TheCall->setCallee(PromotedCall);
Mike Stump1eb44332009-09-09 15:08:12 +0000443
Chris Lattner5caa3702009-05-08 06:58:22 +0000444
445 // Change the result type of the call to match the result type of the decl.
446 TheCall->setType(NewBuiltinDecl->getResultType());
447 return false;
448}
449
450
Chris Lattner69039812009-02-18 06:01:06 +0000451/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson71993dd2007-08-17 05:31:46 +0000452/// CFString constructor is correct
Steve Narofffd942622009-04-13 20:26:29 +0000453/// FIXME: GCC currently emits the following warning:
Mike Stump1eb44332009-09-09 15:08:12 +0000454/// "warning: input conversion stopped due to an input byte that does not
Steve Narofffd942622009-04-13 20:26:29 +0000455/// belong to the input codeset UTF-8"
456/// Note: It might also make sense to do the UTF-16 conversion here (would
457/// simplify the backend).
Chris Lattner69039812009-02-18 06:01:06 +0000458bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattner56f34942008-02-13 01:02:39 +0000459 Arg = Arg->IgnoreParenCasts();
Anders Carlsson71993dd2007-08-17 05:31:46 +0000460 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
461
462 if (!Literal || Literal->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000463 Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
464 << Arg->getSourceRange();
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000465 return true;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000466 }
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Daniel Dunbarf015b032009-09-22 10:03:52 +0000468 const char *Data = Literal->getStrData();
469 unsigned Length = Literal->getByteLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Daniel Dunbarf015b032009-09-22 10:03:52 +0000471 for (unsigned i = 0; i < Length; ++i) {
472 if (!Data[i]) {
473 Diag(getLocationOfStringLiteralByte(Literal, i),
474 diag::warn_cfstring_literal_contains_nul_character)
475 << Arg->getSourceRange();
476 break;
477 }
478 }
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Anders Carlsson9cdc4d32007-08-17 15:44:17 +0000480 return false;
Chris Lattner59907c42007-08-10 20:18:51 +0000481}
482
Chris Lattnerc27c6652007-12-20 00:05:45 +0000483/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
484/// Emit an error and return true on failure, return false on success.
Chris Lattner925e60d2007-12-28 05:29:59 +0000485bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
486 Expr *Fn = TheCall->getCallee();
487 if (TheCall->getNumArgs() > 2) {
Chris Lattner2c21a072008-11-21 18:44:24 +0000488 Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000489 diag::err_typecheck_call_too_many_args)
Chris Lattner2c21a072008-11-21 18:44:24 +0000490 << 0 /*function call*/ << Fn->getSourceRange()
Mike Stump1eb44332009-09-09 15:08:12 +0000491 << SourceRange(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000492 (*(TheCall->arg_end()-1))->getLocEnd());
Chris Lattner30ce3442007-12-19 23:59:04 +0000493 return true;
494 }
Eli Friedman56f20ae2008-12-15 22:05:35 +0000495
496 if (TheCall->getNumArgs() < 2) {
497 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
498 << 0 /*function call*/;
499 }
500
Chris Lattnerc27c6652007-12-20 00:05:45 +0000501 // Determine whether the current function is variadic or not.
502 bool isVariadic;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000503 if (CurBlock)
504 isVariadic = CurBlock->isVariadic;
505 else if (getCurFunctionDecl()) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000506 if (FunctionProtoType* FTP =
507 dyn_cast<FunctionProtoType>(getCurFunctionDecl()->getType()))
Eli Friedman56f20ae2008-12-15 22:05:35 +0000508 isVariadic = FTP->isVariadic();
509 else
510 isVariadic = false;
511 } else {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000512 isVariadic = getCurMethodDecl()->isVariadic();
Eli Friedman56f20ae2008-12-15 22:05:35 +0000513 }
Mike Stump1eb44332009-09-09 15:08:12 +0000514
Chris Lattnerc27c6652007-12-20 00:05:45 +0000515 if (!isVariadic) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000516 Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
517 return true;
518 }
Mike Stump1eb44332009-09-09 15:08:12 +0000519
Chris Lattner30ce3442007-12-19 23:59:04 +0000520 // Verify that the second argument to the builtin is the last argument of the
521 // current function or method.
522 bool SecondArgIsLastNamedArgument = false;
Anders Carlssone2c14102008-02-13 01:22:59 +0000523 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Anders Carlsson88cf2262008-02-11 04:20:54 +0000525 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
526 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
Chris Lattner30ce3442007-12-19 23:59:04 +0000527 // FIXME: This isn't correct for methods (results in bogus warning).
528 // Get the last formal in the current function.
Anders Carlsson88cf2262008-02-11 04:20:54 +0000529 const ParmVarDecl *LastArg;
Steve Naroffcd9c5142009-04-15 19:33:47 +0000530 if (CurBlock)
531 LastArg = *(CurBlock->TheDecl->param_end()-1);
532 else if (FunctionDecl *FD = getCurFunctionDecl())
Chris Lattner371f2582008-12-04 23:50:19 +0000533 LastArg = *(FD->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000534 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000535 LastArg = *(getCurMethodDecl()->param_end()-1);
Chris Lattner30ce3442007-12-19 23:59:04 +0000536 SecondArgIsLastNamedArgument = PV == LastArg;
537 }
538 }
Mike Stump1eb44332009-09-09 15:08:12 +0000539
Chris Lattner30ce3442007-12-19 23:59:04 +0000540 if (!SecondArgIsLastNamedArgument)
Mike Stump1eb44332009-09-09 15:08:12 +0000541 Diag(TheCall->getArg(1)->getLocStart(),
Chris Lattner30ce3442007-12-19 23:59:04 +0000542 diag::warn_second_parameter_of_va_start_not_last_named_argument);
543 return false;
Eli Friedman6cfda232008-05-20 08:23:37 +0000544}
Chris Lattner30ce3442007-12-19 23:59:04 +0000545
Chris Lattner1b9a0792007-12-20 00:26:33 +0000546/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
547/// friends. This is declared to take (...), so we have to check everything.
Chris Lattner925e60d2007-12-28 05:29:59 +0000548bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
549 if (TheCall->getNumArgs() < 2)
Chris Lattner2c21a072008-11-21 18:44:24 +0000550 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
551 << 0 /*function call*/;
Chris Lattner925e60d2007-12-28 05:29:59 +0000552 if (TheCall->getNumArgs() > 2)
Mike Stump1eb44332009-09-09 15:08:12 +0000553 return Diag(TheCall->getArg(2)->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000554 diag::err_typecheck_call_too_many_args)
Chris Lattner2c21a072008-11-21 18:44:24 +0000555 << 0 /*function call*/
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000556 << SourceRange(TheCall->getArg(2)->getLocStart(),
557 (*(TheCall->arg_end()-1))->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Chris Lattner925e60d2007-12-28 05:29:59 +0000559 Expr *OrigArg0 = TheCall->getArg(0);
560 Expr *OrigArg1 = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000561
Chris Lattner1b9a0792007-12-20 00:26:33 +0000562 // Do standard promotions between the two arguments, returning their common
563 // type.
Chris Lattner925e60d2007-12-28 05:29:59 +0000564 QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
Daniel Dunbar403bc2b2009-02-19 19:28:43 +0000565
566 // Make sure any conversions are pushed back into the call; this is
567 // type safe since unordered compare builtins are declared as "_Bool
568 // foo(...)".
569 TheCall->setArg(0, OrigArg0);
570 TheCall->setArg(1, OrigArg1);
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Douglas Gregorcde01732009-05-19 22:10:17 +0000572 if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent())
573 return false;
574
Chris Lattner1b9a0792007-12-20 00:26:33 +0000575 // If the common type isn't a real floating type, then the arguments were
576 // invalid for this operation.
577 if (!Res->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000578 return Diag(OrigArg0->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000579 diag::err_typecheck_call_invalid_ordered_compare)
Chris Lattnerd1625842008-11-24 06:25:27 +0000580 << OrigArg0->getType() << OrigArg1->getType()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000581 << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Chris Lattner1b9a0792007-12-20 00:26:33 +0000583 return false;
584}
585
Eli Friedman9ac6f622009-08-31 20:06:00 +0000586/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isnan and
587/// friends. This is declared to take (...), so we have to check everything.
588bool Sema::SemaBuiltinUnaryFP(CallExpr *TheCall) {
589 if (TheCall->getNumArgs() < 1)
590 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
591 << 0 /*function call*/;
592 if (TheCall->getNumArgs() > 1)
Mike Stump1eb44332009-09-09 15:08:12 +0000593 return Diag(TheCall->getArg(1)->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000594 diag::err_typecheck_call_too_many_args)
595 << 0 /*function call*/
596 << SourceRange(TheCall->getArg(1)->getLocStart(),
597 (*(TheCall->arg_end()-1))->getLocEnd());
598
599 Expr *OrigArg = TheCall->getArg(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Eli Friedman9ac6f622009-08-31 20:06:00 +0000601 if (OrigArg->isTypeDependent())
602 return false;
603
604 // This operation requires a floating-point number
605 if (!OrigArg->getType()->isRealFloatingType())
Mike Stump1eb44332009-09-09 15:08:12 +0000606 return Diag(OrigArg->getLocStart(),
Eli Friedman9ac6f622009-08-31 20:06:00 +0000607 diag::err_typecheck_call_invalid_unary_fp)
608 << OrigArg->getType() << OrigArg->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Eli Friedman9ac6f622009-08-31 20:06:00 +0000610 return false;
611}
612
Eli Friedman6cfda232008-05-20 08:23:37 +0000613bool Sema::SemaBuiltinStackAddress(CallExpr *TheCall) {
614 // The signature for these builtins is exact; the only thing we need
615 // to check is that the argument is a constant.
616 SourceLocation Loc;
Douglas Gregorcde01732009-05-19 22:10:17 +0000617 if (!TheCall->getArg(0)->isTypeDependent() &&
618 !TheCall->getArg(0)->isValueDependent() &&
619 !TheCall->getArg(0)->isIntegerConstantExpr(Context, &Loc))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000620 return Diag(Loc, diag::err_stack_const_level) << TheCall->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Eli Friedman6cfda232008-05-20 08:23:37 +0000622 return false;
623}
624
Eli Friedmand38617c2008-05-14 19:38:39 +0000625/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
626// This is declared to take (...), so we have to check everything.
Sebastian Redl0eb23302009-01-19 00:08:26 +0000627Action::OwningExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000628 if (TheCall->getNumArgs() < 3)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000629 return ExprError(Diag(TheCall->getLocEnd(),
630 diag::err_typecheck_call_too_few_args)
631 << 0 /*function call*/ << TheCall->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000632
Douglas Gregorcde01732009-05-19 22:10:17 +0000633 unsigned numElements = std::numeric_limits<unsigned>::max();
634 if (!TheCall->getArg(0)->isTypeDependent() &&
635 !TheCall->getArg(1)->isTypeDependent()) {
636 QualType FAType = TheCall->getArg(0)->getType();
637 QualType SAType = TheCall->getArg(1)->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Douglas Gregorcde01732009-05-19 22:10:17 +0000639 if (!FAType->isVectorType() || !SAType->isVectorType()) {
640 Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000641 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000642 TheCall->getArg(1)->getLocEnd());
643 return ExprError();
644 }
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Douglas Gregora4923eb2009-11-16 21:35:15 +0000646 if (!Context.hasSameUnqualifiedType(FAType, SAType)) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000647 Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
Mike Stump1eb44332009-09-09 15:08:12 +0000648 << SourceRange(TheCall->getArg(0)->getLocStart(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000649 TheCall->getArg(1)->getLocEnd());
650 return ExprError();
651 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000652
John McCall183700f2009-09-21 23:43:11 +0000653 numElements = FAType->getAs<VectorType>()->getNumElements();
Douglas Gregorcde01732009-05-19 22:10:17 +0000654 if (TheCall->getNumArgs() != numElements+2) {
655 if (TheCall->getNumArgs() < numElements+2)
656 return ExprError(Diag(TheCall->getLocEnd(),
657 diag::err_typecheck_call_too_few_args)
658 << 0 /*function call*/ << TheCall->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +0000659 return ExprError(Diag(TheCall->getLocEnd(),
Douglas Gregorcde01732009-05-19 22:10:17 +0000660 diag::err_typecheck_call_too_many_args)
661 << 0 /*function call*/ << TheCall->getSourceRange());
662 }
Eli Friedmand38617c2008-05-14 19:38:39 +0000663 }
664
665 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000666 if (TheCall->getArg(i)->isTypeDependent() ||
667 TheCall->getArg(i)->isValueDependent())
668 continue;
669
Eli Friedmand38617c2008-05-14 19:38:39 +0000670 llvm::APSInt Result(32);
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000671 if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
Sebastian Redl0eb23302009-01-19 00:08:26 +0000672 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000673 diag::err_shufflevector_nonconstant_argument)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000674 << TheCall->getArg(i)->getSourceRange());
675
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000676 if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000677 return ExprError(Diag(TheCall->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000678 diag::err_shufflevector_argument_too_large)
Sebastian Redl0eb23302009-01-19 00:08:26 +0000679 << TheCall->getArg(i)->getSourceRange());
Eli Friedmand38617c2008-05-14 19:38:39 +0000680 }
681
682 llvm::SmallVector<Expr*, 32> exprs;
683
Chris Lattnerd1a0b6d2008-08-10 02:05:13 +0000684 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
Eli Friedmand38617c2008-05-14 19:38:39 +0000685 exprs.push_back(TheCall->getArg(i));
686 TheCall->setArg(i, 0);
687 }
688
Nate Begemana88dc302009-08-12 02:10:25 +0000689 return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
690 exprs.size(), exprs[0]->getType(),
Ted Kremenek8189cde2009-02-07 01:47:29 +0000691 TheCall->getCallee()->getLocStart(),
692 TheCall->getRParenLoc()));
Eli Friedmand38617c2008-05-14 19:38:39 +0000693}
Chris Lattner30ce3442007-12-19 23:59:04 +0000694
Daniel Dunbar4493f792008-07-21 22:59:13 +0000695/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
696// This is declared to take (const void*, ...) and can take two
697// optional constant int args.
698bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000699 unsigned NumArgs = TheCall->getNumArgs();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000700
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000701 if (NumArgs > 3)
702 return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_many_args)
Chris Lattner2c21a072008-11-21 18:44:24 +0000703 << 0 /*function call*/ << TheCall->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000704
705 // Argument 0 is checked for us and the remaining arguments must be
706 // constant integers.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000707 for (unsigned i = 1; i != NumArgs; ++i) {
Daniel Dunbar4493f792008-07-21 22:59:13 +0000708 Expr *Arg = TheCall->getArg(i);
Douglas Gregorcde01732009-05-19 22:10:17 +0000709 if (Arg->isTypeDependent())
710 continue;
711
Eli Friedman9aef7262009-12-04 00:30:06 +0000712 if (!Arg->getType()->isIntegralType())
713 return Diag(TheCall->getLocStart(), diag::err_prefetch_invalid_arg_type)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000714 << Arg->getSourceRange();
Douglas Gregorcde01732009-05-19 22:10:17 +0000715
Eli Friedman9aef7262009-12-04 00:30:06 +0000716 ImpCastExprToType(Arg, Context.IntTy, CastExpr::CK_IntegralCast);
717 TheCall->setArg(i, Arg);
718
Douglas Gregorcde01732009-05-19 22:10:17 +0000719 if (Arg->isValueDependent())
720 continue;
721
Eli Friedman9aef7262009-12-04 00:30:06 +0000722 llvm::APSInt Result;
Douglas Gregorcde01732009-05-19 22:10:17 +0000723 if (!Arg->isIntegerConstantExpr(Result, Context))
Eli Friedman9aef7262009-12-04 00:30:06 +0000724 return Diag(TheCall->getLocStart(), diag::err_prefetch_invalid_arg_ice)
Douglas Gregorcde01732009-05-19 22:10:17 +0000725 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Daniel Dunbar4493f792008-07-21 22:59:13 +0000727 // FIXME: gcc issues a warning and rewrites these to 0. These
728 // seems especially odd for the third argument since the default
729 // is 3.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000730 if (i == 1) {
Eli Friedman9aef7262009-12-04 00:30:06 +0000731 if (Result.getLimitedValue() > 1)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000732 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000733 << "0" << "1" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000734 } else {
Eli Friedman9aef7262009-12-04 00:30:06 +0000735 if (Result.getLimitedValue() > 3)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000736 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
Chris Lattner21fb98e2009-09-23 06:06:36 +0000737 << "0" << "3" << Arg->getSourceRange();
Daniel Dunbar4493f792008-07-21 22:59:13 +0000738 }
739 }
740
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000741 return false;
Daniel Dunbar4493f792008-07-21 22:59:13 +0000742}
743
Chris Lattner21fb98e2009-09-23 06:06:36 +0000744/// SemaBuiltinEHReturnDataRegNo - Handle __builtin_eh_return_data_regno, the
745/// operand must be an integer constant.
746bool Sema::SemaBuiltinEHReturnDataRegNo(CallExpr *TheCall) {
747 llvm::APSInt Result;
748 if (!TheCall->getArg(0)->isIntegerConstantExpr(Result, Context))
749 return Diag(TheCall->getLocStart(), diag::err_expr_not_ice)
750 << TheCall->getArg(0)->getSourceRange();
751
752 return false;
753}
754
755
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000756/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
757/// int type). This simply type checks that type is one of the defined
758/// constants (0-3).
Eric Christopherfee667f2009-12-23 03:49:37 +0000759// For compatability check 0-3, llvm only handles 0 and 2.
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000760bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
761 Expr *Arg = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000762 if (Arg->isTypeDependent())
763 return false;
764
Mike Stump1eb44332009-09-09 15:08:12 +0000765 QualType ArgType = Arg->getType();
John McCall183700f2009-09-21 23:43:11 +0000766 const BuiltinType *BT = ArgType->getAs<BuiltinType>();
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000767 llvm::APSInt Result(32);
Douglas Gregorcde01732009-05-19 22:10:17 +0000768 if (!BT || BT->getKind() != BuiltinType::Int)
769 return Diag(TheCall->getLocStart(), diag::err_object_size_invalid_argument)
770 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
771
772 if (Arg->isValueDependent())
773 return false;
774
775 if (!Arg->isIntegerConstantExpr(Result, Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000776 return Diag(TheCall->getLocStart(), diag::err_object_size_invalid_argument)
777 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000778 }
779
780 if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000781 return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
782 << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
Daniel Dunbard5f8a4f2008-09-03 21:13:56 +0000783 }
784
785 return false;
786}
787
Eli Friedman586d6a82009-05-03 06:04:26 +0000788/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Eli Friedmand875fed2009-05-03 04:46:36 +0000789/// This checks that val is a constant 1.
790bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
791 Expr *Arg = TheCall->getArg(1);
Douglas Gregorcde01732009-05-19 22:10:17 +0000792 if (Arg->isTypeDependent() || Arg->isValueDependent())
793 return false;
794
Eli Friedmand875fed2009-05-03 04:46:36 +0000795 llvm::APSInt Result(32);
796 if (!Arg->isIntegerConstantExpr(Result, Context) || Result != 1)
797 return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
798 << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
799
800 return false;
801}
802
Ted Kremenekd30ef872009-01-12 23:09:09 +0000803// Handle i > 1 ? "x" : "y", recursivelly
Ted Kremenek082d9362009-03-20 21:35:28 +0000804bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall,
805 bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000806 unsigned format_idx, unsigned firstDataArg) {
Douglas Gregorcde01732009-05-19 22:10:17 +0000807 if (E->isTypeDependent() || E->isValueDependent())
808 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000809
810 switch (E->getStmtClass()) {
811 case Stmt::ConditionalOperatorClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000812 const ConditionalOperator *C = cast<ConditionalOperator>(E);
Chris Lattner813b70d2009-12-22 06:00:13 +0000813 return SemaCheckStringLiteral(C->getTrueExpr(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000814 HasVAListArg, format_idx, firstDataArg)
Ted Kremenekd30ef872009-01-12 23:09:09 +0000815 && SemaCheckStringLiteral(C->getRHS(), TheCall,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000816 HasVAListArg, format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000817 }
818
819 case Stmt::ImplicitCastExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000820 const ImplicitCastExpr *Expr = cast<ImplicitCastExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000821 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000822 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000823 }
824
825 case Stmt::ParenExprClass: {
Ted Kremenek082d9362009-03-20 21:35:28 +0000826 const ParenExpr *Expr = cast<ParenExpr>(E);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000827 return SemaCheckStringLiteral(Expr->getSubExpr(), TheCall, HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000828 format_idx, firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000829 }
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Ted Kremenek082d9362009-03-20 21:35:28 +0000831 case Stmt::DeclRefExprClass: {
832 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000833
Ted Kremenek082d9362009-03-20 21:35:28 +0000834 // As an exception, do not flag errors for variables binding to
835 // const string literals.
836 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
837 bool isConstant = false;
838 QualType T = DR->getType();
Ted Kremenekd30ef872009-01-12 23:09:09 +0000839
Ted Kremenek082d9362009-03-20 21:35:28 +0000840 if (const ArrayType *AT = Context.getAsArrayType(T)) {
841 isConstant = AT->getElementType().isConstant(Context);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000842 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000843 isConstant = T.isConstant(Context) &&
Ted Kremenek082d9362009-03-20 21:35:28 +0000844 PT->getPointeeType().isConstant(Context);
845 }
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Ted Kremenek082d9362009-03-20 21:35:28 +0000847 if (isConstant) {
848 const VarDecl *Def = 0;
849 if (const Expr *Init = VD->getDefinition(Def))
850 return SemaCheckStringLiteral(Init, TheCall,
851 HasVAListArg, format_idx, firstDataArg);
852 }
Mike Stump1eb44332009-09-09 15:08:12 +0000853
Anders Carlssond966a552009-06-28 19:55:58 +0000854 // For vprintf* functions (i.e., HasVAListArg==true), we add a
855 // special check to see if the format string is a function parameter
856 // of the function calling the printf function. If the function
857 // has an attribute indicating it is a printf-like function, then we
858 // should suppress warnings concerning non-literals being used in a call
859 // to a vprintf function. For example:
860 //
861 // void
862 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
863 // va_list ap;
864 // va_start(ap, fmt);
865 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
866 // ...
867 //
868 //
869 // FIXME: We don't have full attribute support yet, so just check to see
870 // if the argument is a DeclRefExpr that references a parameter. We'll
871 // add proper support for checking the attribute later.
872 if (HasVAListArg)
873 if (isa<ParmVarDecl>(VD))
874 return true;
Ted Kremenek082d9362009-03-20 21:35:28 +0000875 }
Mike Stump1eb44332009-09-09 15:08:12 +0000876
Ted Kremenek082d9362009-03-20 21:35:28 +0000877 return false;
878 }
Ted Kremenekd30ef872009-01-12 23:09:09 +0000879
Anders Carlsson8f031b32009-06-27 04:05:33 +0000880 case Stmt::CallExprClass: {
881 const CallExpr *CE = cast<CallExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000882 if (const ImplicitCastExpr *ICE
Anders Carlsson8f031b32009-06-27 04:05:33 +0000883 = dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
884 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
885 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000886 if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
Anders Carlsson8f031b32009-06-27 04:05:33 +0000887 unsigned ArgIndex = FA->getFormatIdx();
888 const Expr *Arg = CE->getArg(ArgIndex - 1);
Mike Stump1eb44332009-09-09 15:08:12 +0000889
890 return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg,
Anders Carlsson8f031b32009-06-27 04:05:33 +0000891 format_idx, firstDataArg);
892 }
893 }
894 }
895 }
Mike Stump1eb44332009-09-09 15:08:12 +0000896
Anders Carlsson8f031b32009-06-27 04:05:33 +0000897 return false;
898 }
Ted Kremenek082d9362009-03-20 21:35:28 +0000899 case Stmt::ObjCStringLiteralClass:
900 case Stmt::StringLiteralClass: {
901 const StringLiteral *StrE = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Ted Kremenek082d9362009-03-20 21:35:28 +0000903 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenekd30ef872009-01-12 23:09:09 +0000904 StrE = ObjCFExpr->getString();
905 else
Ted Kremenek082d9362009-03-20 21:35:28 +0000906 StrE = cast<StringLiteral>(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000907
Ted Kremenekd30ef872009-01-12 23:09:09 +0000908 if (StrE) {
Mike Stump1eb44332009-09-09 15:08:12 +0000909 CheckPrintfString(StrE, E, TheCall, HasVAListArg, format_idx,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000910 firstDataArg);
Ted Kremenekd30ef872009-01-12 23:09:09 +0000911 return true;
912 }
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Ted Kremenekd30ef872009-01-12 23:09:09 +0000914 return false;
915 }
Mike Stump1eb44332009-09-09 15:08:12 +0000916
Ted Kremenek082d9362009-03-20 21:35:28 +0000917 default:
918 return false;
Ted Kremenekd30ef872009-01-12 23:09:09 +0000919 }
920}
921
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +0000922void
Mike Stump1eb44332009-09-09 15:08:12 +0000923Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
924 const CallExpr *TheCall) {
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +0000925 for (NonNullAttr::iterator i = NonNull->begin(), e = NonNull->end();
926 i != e; ++i) {
Chris Lattner12b97ff2009-05-25 18:23:36 +0000927 const Expr *ArgExpr = TheCall->getArg(*i);
Douglas Gregorce940492009-09-25 04:25:58 +0000928 if (ArgExpr->isNullPointerConstant(Context,
929 Expr::NPC_ValueDependentIsNotNull))
Chris Lattner12b97ff2009-05-25 18:23:36 +0000930 Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg)
931 << ArgExpr->getSourceRange();
Fariborz Jahaniane898f8a2009-05-21 18:48:51 +0000932 }
933}
Ted Kremenekd30ef872009-01-12 23:09:09 +0000934
Chris Lattner59907c42007-08-10 20:18:51 +0000935/// CheckPrintfArguments - Check calls to printf (and similar functions) for
Mike Stump1eb44332009-09-09 15:08:12 +0000936/// correct use of format strings.
Ted Kremenek71895b92007-08-14 17:39:48 +0000937///
938/// HasVAListArg - A predicate indicating whether the printf-like
939/// function is passed an explicit va_arg argument (e.g., vprintf)
940///
941/// format_idx - The index into Args for the format string.
942///
943/// Improper format strings to functions in the printf family can be
944/// the source of bizarre bugs and very serious security holes. A
945/// good source of information is available in the following paper
946/// (which includes additional references):
Chris Lattner59907c42007-08-10 20:18:51 +0000947///
948/// FormatGuard: Automatic Protection From printf Format String
949/// Vulnerabilities, Proceedings of the 10th USENIX Security Symposium, 2001.
Ted Kremenek71895b92007-08-14 17:39:48 +0000950///
951/// Functionality implemented:
952///
953/// We can statically check the following properties for string
954/// literal format strings for non v.*printf functions (where the
955/// arguments are passed directly):
956//
957/// (1) Are the number of format conversions equal to the number of
958/// data arguments?
959///
960/// (2) Does each format conversion correctly match the type of the
961/// corresponding data argument? (TODO)
962///
963/// Moreover, for all printf functions we can:
964///
965/// (3) Check for a missing format string (when not caught by type checking).
966///
967/// (4) Check for no-operation flags; e.g. using "#" with format
968/// conversion 'c' (TODO)
969///
970/// (5) Check the use of '%n', a major source of security holes.
971///
972/// (6) Check for malformed format conversions that don't specify anything.
973///
974/// (7) Check for empty format strings. e.g: printf("");
975///
976/// (8) Check that the format string is a wide literal.
977///
978/// All of these checks can be done by parsing the format string.
979///
980/// For now, we ONLY do (1), (3), (5), (6), (7), and (8).
Chris Lattner59907c42007-08-10 20:18:51 +0000981void
Mike Stump1eb44332009-09-09 15:08:12 +0000982Sema::CheckPrintfArguments(const CallExpr *TheCall, bool HasVAListArg,
Douglas Gregor3c385e52009-02-14 18:57:46 +0000983 unsigned format_idx, unsigned firstDataArg) {
Ted Kremenek082d9362009-03-20 21:35:28 +0000984 const Expr *Fn = TheCall->getCallee();
Chris Lattner925e60d2007-12-28 05:29:59 +0000985
Sebastian Redl4a2614e2009-11-17 18:02:24 +0000986 // The way the format attribute works in GCC, the implicit this argument
987 // of member functions is counted. However, it doesn't appear in our own
988 // lists, so decrement format_idx in that case.
989 if (isa<CXXMemberCallExpr>(TheCall)) {
990 // Catch a format attribute mistakenly referring to the object argument.
991 if (format_idx == 0)
992 return;
993 --format_idx;
994 if(firstDataArg != 0)
995 --firstDataArg;
996 }
997
Mike Stump1eb44332009-09-09 15:08:12 +0000998 // CHECK: printf-like function is called with no format string.
Chris Lattner925e60d2007-12-28 05:29:59 +0000999 if (format_idx >= TheCall->getNumArgs()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001000 Diag(TheCall->getRParenLoc(), diag::warn_printf_missing_format_string)
1001 << Fn->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001002 return;
1003 }
Mike Stump1eb44332009-09-09 15:08:12 +00001004
Ted Kremenek082d9362009-03-20 21:35:28 +00001005 const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00001006
Chris Lattner59907c42007-08-10 20:18:51 +00001007 // CHECK: format string is not a string literal.
Mike Stump1eb44332009-09-09 15:08:12 +00001008 //
Ted Kremenek71895b92007-08-14 17:39:48 +00001009 // Dynamically generated format strings are difficult to
1010 // automatically vet at compile time. Requiring that format strings
1011 // are string literals: (1) permits the checking of format strings by
1012 // the compiler and thereby (2) can practically remove the source of
1013 // many format string exploits.
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001014
Mike Stump1eb44332009-09-09 15:08:12 +00001015 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001016 // C string (e.g. "%d")
Mike Stump1eb44332009-09-09 15:08:12 +00001017 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001018 // the same format string checking logic for both ObjC and C strings.
Chris Lattner1cd3e1f2009-04-29 04:49:34 +00001019 if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx,
1020 firstDataArg))
1021 return; // Literal format string found, check done!
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001022
Chris Lattner655f1412009-04-29 04:59:47 +00001023 // If there are no arguments specified, warn with -Wformat-security, otherwise
1024 // warn only with -Wformat-nonliteral.
1025 if (TheCall->getNumArgs() == format_idx+1)
Mike Stump1eb44332009-09-09 15:08:12 +00001026 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001027 diag::warn_printf_nonliteral_noargs)
1028 << OrigFormatExpr->getSourceRange();
1029 else
Mike Stump1eb44332009-09-09 15:08:12 +00001030 Diag(TheCall->getArg(format_idx)->getLocStart(),
Chris Lattner655f1412009-04-29 04:59:47 +00001031 diag::warn_printf_nonliteral)
1032 << OrigFormatExpr->getSourceRange();
Ted Kremenekd30ef872009-01-12 23:09:09 +00001033}
Ted Kremenek71895b92007-08-14 17:39:48 +00001034
Ted Kremenek082d9362009-03-20 21:35:28 +00001035void Sema::CheckPrintfString(const StringLiteral *FExpr,
1036 const Expr *OrigFormatExpr,
1037 const CallExpr *TheCall, bool HasVAListArg,
1038 unsigned format_idx, unsigned firstDataArg) {
Ted Kremenekd30ef872009-01-12 23:09:09 +00001039
Ted Kremenek082d9362009-03-20 21:35:28 +00001040 const ObjCStringLiteral *ObjCFExpr =
1041 dyn_cast<ObjCStringLiteral>(OrigFormatExpr);
1042
Ted Kremenek71895b92007-08-14 17:39:48 +00001043 // CHECK: is the format string a wide literal?
1044 if (FExpr->isWide()) {
Chris Lattner925e60d2007-12-28 05:29:59 +00001045 Diag(FExpr->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001046 diag::warn_printf_format_string_is_wide_literal)
1047 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001048 return;
1049 }
1050
1051 // Str - The format string. NOTE: this is NOT null-terminated!
Chris Lattnerb9fc8562009-04-29 04:12:34 +00001052 const char *Str = FExpr->getStrData();
Ted Kremenek71895b92007-08-14 17:39:48 +00001053
1054 // CHECK: empty format string?
Chris Lattnerb9fc8562009-04-29 04:12:34 +00001055 unsigned StrLen = FExpr->getByteLength();
Mike Stump1eb44332009-09-09 15:08:12 +00001056
Ted Kremenek71895b92007-08-14 17:39:48 +00001057 if (StrLen == 0) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001058 Diag(FExpr->getLocStart(), diag::warn_printf_empty_format_string)
1059 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001060 return;
1061 }
1062
1063 // We process the format string using a binary state machine. The
1064 // current state is stored in CurrentState.
1065 enum {
1066 state_OrdChr,
1067 state_Conversion
1068 } CurrentState = state_OrdChr;
Mike Stump1eb44332009-09-09 15:08:12 +00001069
Ted Kremenek71895b92007-08-14 17:39:48 +00001070 // numConversions - The number of conversions seen so far. This is
1071 // incremented as we traverse the format string.
1072 unsigned numConversions = 0;
1073
1074 // numDataArgs - The number of data arguments after the format
1075 // string. This can only be determined for non vprintf-like
1076 // functions. For those functions, this value is 1 (the sole
1077 // va_arg argument).
Douglas Gregor3c385e52009-02-14 18:57:46 +00001078 unsigned numDataArgs = TheCall->getNumArgs()-firstDataArg;
Ted Kremenek71895b92007-08-14 17:39:48 +00001079
1080 // Inspect the format string.
1081 unsigned StrIdx = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001082
Ted Kremenek71895b92007-08-14 17:39:48 +00001083 // LastConversionIdx - Index within the format string where we last saw
1084 // a '%' character that starts a new format conversion.
1085 unsigned LastConversionIdx = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001086
Chris Lattner925e60d2007-12-28 05:29:59 +00001087 for (; StrIdx < StrLen; ++StrIdx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001088
Ted Kremenek71895b92007-08-14 17:39:48 +00001089 // Is the number of detected conversion conversions greater than
1090 // the number of matching data arguments? If so, stop.
1091 if (!HasVAListArg && numConversions > numDataArgs) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001092
Ted Kremenek71895b92007-08-14 17:39:48 +00001093 // Handle "\0"
Chris Lattner925e60d2007-12-28 05:29:59 +00001094 if (Str[StrIdx] == '\0') {
Ted Kremenek71895b92007-08-14 17:39:48 +00001095 // The string returned by getStrData() is not null-terminated,
1096 // so the presence of a null character is likely an error.
Chris Lattner60800082009-02-18 17:49:48 +00001097 Diag(getLocationOfStringLiteralByte(FExpr, StrIdx),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001098 diag::warn_printf_format_string_contains_null_char)
1099 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001100 return;
1101 }
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Ted Kremenek71895b92007-08-14 17:39:48 +00001103 // Ordinary characters (not processing a format conversion).
1104 if (CurrentState == state_OrdChr) {
1105 if (Str[StrIdx] == '%') {
1106 CurrentState = state_Conversion;
1107 LastConversionIdx = StrIdx;
1108 }
1109 continue;
1110 }
1111
1112 // Seen '%'. Now processing a format conversion.
1113 switch (Str[StrIdx]) {
Mike Stump1eb44332009-09-09 15:08:12 +00001114 // Handle dynamic precision or width specifier.
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001115 case '*': {
1116 ++numConversions;
Mike Stump1eb44332009-09-09 15:08:12 +00001117
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001118 if (!HasVAListArg) {
1119 if (numConversions > numDataArgs) {
1120 SourceLocation Loc = getLocationOfStringLiteralByte(FExpr, StrIdx);
Ted Kremenek580b6642007-10-12 20:51:52 +00001121
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001122 if (Str[StrIdx-1] == '.')
1123 Diag(Loc, diag::warn_printf_asterisk_precision_missing_arg)
1124 << OrigFormatExpr->getSourceRange();
1125 else
1126 Diag(Loc, diag::warn_printf_asterisk_width_missing_arg)
1127 << OrigFormatExpr->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001128
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001129 // Don't do any more checking. We'll just emit spurious errors.
1130 return;
1131 }
Mike Stump1eb44332009-09-09 15:08:12 +00001132
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001133 // Perform type checking on width/precision specifier.
1134 const Expr *E = TheCall->getArg(format_idx+numConversions);
John McCall183700f2009-09-21 23:43:11 +00001135 if (const BuiltinType *BT = E->getType()->getAs<BuiltinType>())
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001136 if (BT->getKind() == BuiltinType::Int)
1137 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001139 SourceLocation Loc = getLocationOfStringLiteralByte(FExpr, StrIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001140
Ted Kremenek42ae3e82009-05-13 16:06:05 +00001141 if (Str[StrIdx-1] == '.')
1142 Diag(Loc, diag::warn_printf_asterisk_precision_wrong_type)
1143 << E->getType() << E->getSourceRange();
1144 else
1145 Diag(Loc, diag::warn_printf_asterisk_width_wrong_type)
1146 << E->getType() << E->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001147
1148 break;
Ted Kremenek580b6642007-10-12 20:51:52 +00001149 }
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001150 }
Mike Stump1eb44332009-09-09 15:08:12 +00001151
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001152 // Characters which can terminate a format conversion
1153 // (e.g. "%d"). Characters that specify length modifiers or
1154 // other flags are handled by the default case below.
1155 //
Mike Stump1eb44332009-09-09 15:08:12 +00001156 // FIXME: additional checks will go into the following cases.
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001157 case 'i':
1158 case 'd':
Mike Stump1eb44332009-09-09 15:08:12 +00001159 case 'o':
1160 case 'u':
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001161 case 'x':
1162 case 'X':
1163 case 'D':
1164 case 'O':
1165 case 'U':
1166 case 'e':
1167 case 'E':
1168 case 'f':
1169 case 'F':
1170 case 'g':
1171 case 'G':
1172 case 'a':
1173 case 'A':
1174 case 'c':
1175 case 'C':
1176 case 'S':
1177 case 's':
Mike Stump1eb44332009-09-09 15:08:12 +00001178 case 'p':
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001179 ++numConversions;
1180 CurrentState = state_OrdChr;
1181 break;
1182
Eli Friedmanb92abb42009-06-02 08:36:19 +00001183 case 'm':
1184 // FIXME: Warn in situations where this isn't supported!
1185 CurrentState = state_OrdChr;
1186 break;
1187
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001188 // CHECK: Are we using "%n"? Issue a warning.
1189 case 'n': {
1190 ++numConversions;
1191 CurrentState = state_OrdChr;
Chris Lattner60800082009-02-18 17:49:48 +00001192 SourceLocation Loc = getLocationOfStringLiteralByte(FExpr,
1193 LastConversionIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001194
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001195 Diag(Loc, diag::warn_printf_write_back)<<OrigFormatExpr->getSourceRange();
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001196 break;
1197 }
Mike Stump1eb44332009-09-09 15:08:12 +00001198
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001199 // Handle "%@"
1200 case '@':
1201 // %@ is allowed in ObjC format strings only.
Mike Stump1eb44332009-09-09 15:08:12 +00001202 if (ObjCFExpr != NULL)
1203 CurrentState = state_OrdChr;
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001204 else {
1205 // Issue a warning: invalid format conversion.
Mike Stump1eb44332009-09-09 15:08:12 +00001206 SourceLocation Loc =
Chris Lattner60800082009-02-18 17:49:48 +00001207 getLocationOfStringLiteralByte(FExpr, LastConversionIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001208
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001209 Diag(Loc, diag::warn_printf_invalid_conversion)
1210 << std::string(Str+LastConversionIdx,
1211 Str+std::min(LastConversionIdx+2, StrLen))
1212 << OrigFormatExpr->getSourceRange();
Ted Kremenek7ff22b22008-06-16 18:00:42 +00001213 }
1214 ++numConversions;
1215 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001216
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001217 // Handle "%%"
1218 case '%':
1219 // Sanity check: Was the first "%" character the previous one?
1220 // If not, we will assume that we have a malformed format
1221 // conversion, and that the current "%" character is the start
1222 // of a new conversion.
1223 if (StrIdx - LastConversionIdx == 1)
Mike Stump1eb44332009-09-09 15:08:12 +00001224 CurrentState = state_OrdChr;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001225 else {
1226 // Issue a warning: invalid format conversion.
Chris Lattner60800082009-02-18 17:49:48 +00001227 SourceLocation Loc =
1228 getLocationOfStringLiteralByte(FExpr, LastConversionIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001229
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001230 Diag(Loc, diag::warn_printf_invalid_conversion)
1231 << std::string(Str+LastConversionIdx, Str+StrIdx)
1232 << OrigFormatExpr->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001233
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001234 // This conversion is broken. Advance to the next format
1235 // conversion.
1236 LastConversionIdx = StrIdx;
1237 ++numConversions;
Ted Kremenek71895b92007-08-14 17:39:48 +00001238 }
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001239 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001240
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001241 default:
1242 // This case catches all other characters: flags, widths, etc.
1243 // We should eventually process those as well.
1244 break;
Ted Kremenek71895b92007-08-14 17:39:48 +00001245 }
1246 }
1247
1248 if (CurrentState == state_Conversion) {
1249 // Issue a warning: invalid format conversion.
Chris Lattner60800082009-02-18 17:49:48 +00001250 SourceLocation Loc =
1251 getLocationOfStringLiteralByte(FExpr, LastConversionIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001253 Diag(Loc, diag::warn_printf_invalid_conversion)
1254 << std::string(Str+LastConversionIdx,
1255 Str+std::min(LastConversionIdx+2, StrLen))
1256 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001257 return;
1258 }
Mike Stump1eb44332009-09-09 15:08:12 +00001259
Ted Kremenek71895b92007-08-14 17:39:48 +00001260 if (!HasVAListArg) {
1261 // CHECK: Does the number of format conversions exceed the number
1262 // of data arguments?
1263 if (numConversions > numDataArgs) {
Chris Lattner60800082009-02-18 17:49:48 +00001264 SourceLocation Loc =
1265 getLocationOfStringLiteralByte(FExpr, LastConversionIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00001266
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001267 Diag(Loc, diag::warn_printf_insufficient_data_args)
1268 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001269 }
1270 // CHECK: Does the number of data arguments exceed the number of
1271 // format conversions in the format string?
1272 else if (numConversions < numDataArgs)
Chris Lattner925e60d2007-12-28 05:29:59 +00001273 Diag(TheCall->getArg(format_idx+numConversions+1)->getLocStart(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001274 diag::warn_printf_too_many_data_args)
1275 << OrigFormatExpr->getSourceRange();
Ted Kremenek71895b92007-08-14 17:39:48 +00001276 }
1277}
Ted Kremenek06de2762007-08-17 16:46:58 +00001278
1279//===--- CHECK: Return Address of Stack Variable --------------------------===//
1280
1281static DeclRefExpr* EvalVal(Expr *E);
1282static DeclRefExpr* EvalAddr(Expr* E);
1283
1284/// CheckReturnStackAddr - Check if a return statement returns the address
1285/// of a stack variable.
1286void
1287Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
1288 SourceLocation ReturnLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +00001289
Ted Kremenek06de2762007-08-17 16:46:58 +00001290 // Perform checking for returned stack addresses.
Steve Naroffdd972f22008-09-05 22:11:13 +00001291 if (lhsType->isPointerType() || lhsType->isBlockPointerType()) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001292 if (DeclRefExpr *DR = EvalAddr(RetValExp))
Chris Lattner3c73c412008-11-19 08:23:25 +00001293 Diag(DR->getLocStart(), diag::warn_ret_stack_addr)
Chris Lattner08631c52008-11-23 21:45:46 +00001294 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001295
Steve Naroffc50a4a52008-09-16 22:25:10 +00001296 // Skip over implicit cast expressions when checking for block expressions.
Chris Lattner4ca606e2009-09-08 00:36:37 +00001297 RetValExp = RetValExp->IgnoreParenCasts();
Steve Naroffc50a4a52008-09-16 22:25:10 +00001298
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001299 if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp))
Mike Stump397195b2009-04-17 00:09:41 +00001300 if (C->hasBlockDeclRefExprs())
1301 Diag(C->getLocStart(), diag::err_ret_local_block)
1302 << C->getSourceRange();
Chris Lattner9e6b37a2009-10-30 04:01:58 +00001303
1304 if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp))
1305 Diag(ALE->getLocStart(), diag::warn_ret_addr_label)
1306 << ALE->getSourceRange();
1307
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001308 } else if (lhsType->isReferenceType()) {
1309 // Perform checking for stack values returned by reference.
Douglas Gregor49badde2008-10-27 19:41:14 +00001310 // Check for a reference to the stack
1311 if (DeclRefExpr *DR = EvalVal(RetValExp))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001312 Diag(DR->getLocStart(), diag::warn_ret_stack_ref)
Chris Lattner08631c52008-11-23 21:45:46 +00001313 << DR->getDecl()->getDeclName() << RetValExp->getSourceRange();
Ted Kremenek06de2762007-08-17 16:46:58 +00001314 }
1315}
1316
1317/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
1318/// check if the expression in a return statement evaluates to an address
1319/// to a location on the stack. The recursion is used to traverse the
1320/// AST of the return expression, with recursion backtracking when we
1321/// encounter a subexpression that (1) clearly does not lead to the address
1322/// of a stack variable or (2) is something we cannot determine leads to
1323/// the address of a stack variable based on such local checking.
1324///
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001325/// EvalAddr processes expressions that are pointers that are used as
1326/// references (and not L-values). EvalVal handles all other values.
Mike Stump1eb44332009-09-09 15:08:12 +00001327/// At the base case of the recursion is a check for a DeclRefExpr* in
Ted Kremenek06de2762007-08-17 16:46:58 +00001328/// the refers to a stack variable.
1329///
1330/// This implementation handles:
1331///
1332/// * pointer-to-pointer casts
1333/// * implicit conversions from array references to pointers
1334/// * taking the address of fields
1335/// * arbitrary interplay between "&" and "*" operators
1336/// * pointer arithmetic from an address of a stack variable
1337/// * taking the address of an array element where the array is on the stack
1338static DeclRefExpr* EvalAddr(Expr *E) {
Ted Kremenek06de2762007-08-17 16:46:58 +00001339 // We should only be called for evaluating pointer expressions.
David Chisnall0f436562009-08-17 16:35:33 +00001340 assert((E->getType()->isAnyPointerType() ||
Steve Naroffdd972f22008-09-05 22:11:13 +00001341 E->getType()->isBlockPointerType() ||
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001342 E->getType()->isObjCQualifiedIdType()) &&
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001343 "EvalAddr only works on pointers");
Mike Stump1eb44332009-09-09 15:08:12 +00001344
Ted Kremenek06de2762007-08-17 16:46:58 +00001345 // Our "symbolic interpreter" is just a dispatch off the currently
1346 // viewed AST node. We then recursively traverse the AST by calling
1347 // EvalAddr and EvalVal appropriately.
1348 switch (E->getStmtClass()) {
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001349 case Stmt::ParenExprClass:
1350 // Ignore parentheses.
1351 return EvalAddr(cast<ParenExpr>(E)->getSubExpr());
Ted Kremenek06de2762007-08-17 16:46:58 +00001352
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001353 case Stmt::UnaryOperatorClass: {
1354 // The only unary operator that make sense to handle here
1355 // is AddrOf. All others don't make sense as pointers.
1356 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001357
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001358 if (U->getOpcode() == UnaryOperator::AddrOf)
1359 return EvalVal(U->getSubExpr());
1360 else
Ted Kremenek06de2762007-08-17 16:46:58 +00001361 return NULL;
1362 }
Mike Stump1eb44332009-09-09 15:08:12 +00001363
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001364 case Stmt::BinaryOperatorClass: {
1365 // Handle pointer arithmetic. All other binary operators are not valid
1366 // in this context.
1367 BinaryOperator *B = cast<BinaryOperator>(E);
1368 BinaryOperator::Opcode op = B->getOpcode();
Mike Stump1eb44332009-09-09 15:08:12 +00001369
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001370 if (op != BinaryOperator::Add && op != BinaryOperator::Sub)
1371 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001372
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001373 Expr *Base = B->getLHS();
1374
1375 // Determine which argument is the real pointer base. It could be
1376 // the RHS argument instead of the LHS.
1377 if (!Base->getType()->isPointerType()) Base = B->getRHS();
Mike Stump1eb44332009-09-09 15:08:12 +00001378
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001379 assert (Base->getType()->isPointerType());
1380 return EvalAddr(Base);
1381 }
Steve Naroff61f40a22008-09-10 19:17:48 +00001382
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001383 // For conditional operators we need to see if either the LHS or RHS are
1384 // valid DeclRefExpr*s. If one of them is valid, we return it.
1385 case Stmt::ConditionalOperatorClass: {
1386 ConditionalOperator *C = cast<ConditionalOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001387
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001388 // Handle the GNU extension for missing LHS.
1389 if (Expr *lhsExpr = C->getLHS())
1390 if (DeclRefExpr* LHS = EvalAddr(lhsExpr))
1391 return LHS;
1392
1393 return EvalAddr(C->getRHS());
1394 }
Mike Stump1eb44332009-09-09 15:08:12 +00001395
Ted Kremenek54b52742008-08-07 00:49:01 +00001396 // For casts, we need to handle conversions from arrays to
1397 // pointer values, and pointer-to-pointer conversions.
Douglas Gregor49badde2008-10-27 19:41:14 +00001398 case Stmt::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001399 case Stmt::CStyleCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001400 case Stmt::CXXFunctionalCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001401 Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
Ted Kremenek54b52742008-08-07 00:49:01 +00001402 QualType T = SubExpr->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001403
Steve Naroffdd972f22008-09-05 22:11:13 +00001404 if (SubExpr->getType()->isPointerType() ||
1405 SubExpr->getType()->isBlockPointerType() ||
1406 SubExpr->getType()->isObjCQualifiedIdType())
Ted Kremenek54b52742008-08-07 00:49:01 +00001407 return EvalAddr(SubExpr);
1408 else if (T->isArrayType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001409 return EvalVal(SubExpr);
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001410 else
Ted Kremenek54b52742008-08-07 00:49:01 +00001411 return 0;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001412 }
Mike Stump1eb44332009-09-09 15:08:12 +00001413
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001414 // C++ casts. For dynamic casts, static casts, and const casts, we
1415 // are always converting from a pointer-to-pointer, so we just blow
Douglas Gregor49badde2008-10-27 19:41:14 +00001416 // through the cast. In the case the dynamic cast doesn't fail (and
1417 // return NULL), we take the conservative route and report cases
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001418 // where we return the address of a stack variable. For Reinterpre
Douglas Gregor49badde2008-10-27 19:41:14 +00001419 // FIXME: The comment about is wrong; we're not always converting
1420 // from pointer to pointer. I'm guessing that this code should also
Mike Stump1eb44332009-09-09 15:08:12 +00001421 // handle references to objects.
1422 case Stmt::CXXStaticCastExprClass:
1423 case Stmt::CXXDynamicCastExprClass:
Douglas Gregor49badde2008-10-27 19:41:14 +00001424 case Stmt::CXXConstCastExprClass:
1425 case Stmt::CXXReinterpretCastExprClass: {
1426 Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
Steve Naroffdd972f22008-09-05 22:11:13 +00001427 if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001428 return EvalAddr(S);
1429 else
1430 return NULL;
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001431 }
Mike Stump1eb44332009-09-09 15:08:12 +00001432
Chris Lattnerfae3f1f2007-12-28 05:31:15 +00001433 // Everything else: we simply don't reason about them.
1434 default:
1435 return NULL;
1436 }
Ted Kremenek06de2762007-08-17 16:46:58 +00001437}
Mike Stump1eb44332009-09-09 15:08:12 +00001438
Ted Kremenek06de2762007-08-17 16:46:58 +00001439
1440/// EvalVal - This function is complements EvalAddr in the mutual recursion.
1441/// See the comments for EvalAddr for more details.
1442static DeclRefExpr* EvalVal(Expr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +00001443
Ted Kremeneke8c600f2007-08-28 17:02:55 +00001444 // We should only be called for evaluating non-pointer expressions, or
1445 // expressions with a pointer type that are not used as references but instead
1446 // are l-values (e.g., DeclRefExpr with a pointer type).
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Ted Kremenek06de2762007-08-17 16:46:58 +00001448 // Our "symbolic interpreter" is just a dispatch off the currently
1449 // viewed AST node. We then recursively traverse the AST by calling
1450 // EvalAddr and EvalVal appropriately.
1451 switch (E->getStmtClass()) {
Douglas Gregora2813ce2009-10-23 18:54:35 +00001452 case Stmt::DeclRefExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001453 // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking
1454 // at code that refers to a variable's name. We check if it has local
1455 // storage within the function, and if so, return the expression.
1456 DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001457
Ted Kremenek06de2762007-08-17 16:46:58 +00001458 if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
Mike Stump1eb44332009-09-09 15:08:12 +00001459 if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR;
1460
Ted Kremenek06de2762007-08-17 16:46:58 +00001461 return NULL;
1462 }
Mike Stump1eb44332009-09-09 15:08:12 +00001463
Ted Kremenek06de2762007-08-17 16:46:58 +00001464 case Stmt::ParenExprClass:
1465 // Ignore parentheses.
1466 return EvalVal(cast<ParenExpr>(E)->getSubExpr());
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Ted Kremenek06de2762007-08-17 16:46:58 +00001468 case Stmt::UnaryOperatorClass: {
1469 // The only unary operator that make sense to handle here
1470 // is Deref. All others don't resolve to a "name." This includes
1471 // handling all sorts of rvalues passed to a unary operator.
1472 UnaryOperator *U = cast<UnaryOperator>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001473
Ted Kremenek06de2762007-08-17 16:46:58 +00001474 if (U->getOpcode() == UnaryOperator::Deref)
1475 return EvalAddr(U->getSubExpr());
1476
1477 return NULL;
1478 }
Mike Stump1eb44332009-09-09 15:08:12 +00001479
Ted Kremenek06de2762007-08-17 16:46:58 +00001480 case Stmt::ArraySubscriptExprClass: {
1481 // Array subscripts are potential references to data on the stack. We
1482 // retrieve the DeclRefExpr* for the array variable if it indeed
1483 // has local storage.
Ted Kremenek23245122007-08-20 16:18:38 +00001484 return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase());
Ted Kremenek06de2762007-08-17 16:46:58 +00001485 }
Mike Stump1eb44332009-09-09 15:08:12 +00001486
Ted Kremenek06de2762007-08-17 16:46:58 +00001487 case Stmt::ConditionalOperatorClass: {
1488 // For conditional operators we need to see if either the LHS or RHS are
1489 // non-NULL DeclRefExpr's. If one is non-NULL, we return it.
1490 ConditionalOperator *C = cast<ConditionalOperator>(E);
1491
Anders Carlsson39073232007-11-30 19:04:31 +00001492 // Handle the GNU extension for missing LHS.
1493 if (Expr *lhsExpr = C->getLHS())
1494 if (DeclRefExpr *LHS = EvalVal(lhsExpr))
1495 return LHS;
1496
1497 return EvalVal(C->getRHS());
Ted Kremenek06de2762007-08-17 16:46:58 +00001498 }
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Ted Kremenek06de2762007-08-17 16:46:58 +00001500 // Accesses to members are potential references to data on the stack.
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001501 case Stmt::MemberExprClass: {
Ted Kremenek06de2762007-08-17 16:46:58 +00001502 MemberExpr *M = cast<MemberExpr>(E);
Mike Stump1eb44332009-09-09 15:08:12 +00001503
Ted Kremenek06de2762007-08-17 16:46:58 +00001504 // Check for indirect access. We only want direct field accesses.
1505 if (!M->isArrow())
1506 return EvalVal(M->getBase());
1507 else
1508 return NULL;
1509 }
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Ted Kremenek06de2762007-08-17 16:46:58 +00001511 // Everything else: we simply don't reason about them.
1512 default:
1513 return NULL;
1514 }
1515}
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001516
1517//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
1518
1519/// Check for comparisons of floating point operands using != and ==.
1520/// Issue a warning if these are no self-comparisons, as they are not likely
1521/// to do what the programmer intended.
1522void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) {
1523 bool EmitWarning = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001524
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001525 Expr* LeftExprSansParen = lex->IgnoreParens();
Ted Kremenek32e97b62008-01-17 17:55:13 +00001526 Expr* RightExprSansParen = rex->IgnoreParens();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001527
1528 // Special case: check for x == x (which is OK).
1529 // Do not emit warnings for such cases.
1530 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
1531 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
1532 if (DRL->getDecl() == DRR->getDecl())
1533 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001534
1535
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001536 // Special case: check for comparisons against literals that can be exactly
1537 // represented by APFloat. In such cases, do not emit a warning. This
1538 // is a heuristic: often comparison against such literals are used to
1539 // detect if a value in a variable has not changed. This clearly can
1540 // lead to false negatives.
1541 if (EmitWarning) {
1542 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
1543 if (FLL->isExact())
1544 EmitWarning = false;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001545 } else
Ted Kremenek1b500bb2007-11-29 00:59:04 +00001546 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
1547 if (FLR->isExact())
1548 EmitWarning = false;
1549 }
1550 }
Mike Stump1eb44332009-09-09 15:08:12 +00001551
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001552 // Check for comparisons with builtin types.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001553 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001554 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001555 if (CL->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001556 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001557
Sebastian Redl0eb23302009-01-19 00:08:26 +00001558 if (EmitWarning)
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001559 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001560 if (CR->isBuiltinCall(Context))
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001561 EmitWarning = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001562
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001563 // Emit the diagnostic.
1564 if (EmitWarning)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001565 Diag(loc, diag::warn_floatingpoint_eq)
1566 << lex->getSourceRange() << rex->getSourceRange();
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001567}
John McCallba26e582010-01-04 23:21:16 +00001568
John McCallf2370c92010-01-06 05:24:50 +00001569//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
1570//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallba26e582010-01-04 23:21:16 +00001571
John McCallf2370c92010-01-06 05:24:50 +00001572namespace {
John McCallba26e582010-01-04 23:21:16 +00001573
John McCallf2370c92010-01-06 05:24:50 +00001574/// Structure recording the 'active' range of an integer-valued
1575/// expression.
1576struct IntRange {
1577 /// The number of bits active in the int.
1578 unsigned Width;
John McCallba26e582010-01-04 23:21:16 +00001579
John McCallf2370c92010-01-06 05:24:50 +00001580 /// True if the int is known not to have negative values.
1581 bool NonNegative;
John McCallba26e582010-01-04 23:21:16 +00001582
John McCallf2370c92010-01-06 05:24:50 +00001583 IntRange() {}
1584 IntRange(unsigned Width, bool NonNegative)
1585 : Width(Width), NonNegative(NonNegative)
1586 {}
John McCallba26e582010-01-04 23:21:16 +00001587
John McCallf2370c92010-01-06 05:24:50 +00001588 // Returns the range of the bool type.
1589 static IntRange forBoolType() {
1590 return IntRange(1, true);
John McCall51313c32010-01-04 23:31:57 +00001591 }
1592
John McCallf2370c92010-01-06 05:24:50 +00001593 // Returns the range of an integral type.
1594 static IntRange forType(ASTContext &C, QualType T) {
1595 return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr());
John McCall51313c32010-01-04 23:31:57 +00001596 }
1597
John McCallf2370c92010-01-06 05:24:50 +00001598 // Returns the range of an integeral type based on its canonical
1599 // representation.
1600 static IntRange forCanonicalType(ASTContext &C, const Type *T) {
1601 assert(T->isCanonicalUnqualified());
1602
1603 if (const VectorType *VT = dyn_cast<VectorType>(T))
1604 T = VT->getElementType().getTypePtr();
1605 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
1606 T = CT->getElementType().getTypePtr();
1607 if (const EnumType *ET = dyn_cast<EnumType>(T))
1608 T = ET->getDecl()->getIntegerType().getTypePtr();
1609
1610 const BuiltinType *BT = cast<BuiltinType>(T);
1611 assert(BT->isInteger());
1612
1613 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
1614 }
1615
1616 // Returns the supremum of two ranges: i.e. their conservative merge.
1617 static IntRange join(const IntRange &L, const IntRange &R) {
1618 return IntRange(std::max(L.Width, R.Width),
John McCall60fad452010-01-06 22:07:33 +00001619 L.NonNegative && R.NonNegative);
1620 }
1621
1622 // Returns the infinum of two ranges: i.e. their aggressive merge.
1623 static IntRange meet(const IntRange &L, const IntRange &R) {
1624 return IntRange(std::min(L.Width, R.Width),
1625 L.NonNegative || R.NonNegative);
John McCallf2370c92010-01-06 05:24:50 +00001626 }
1627};
1628
1629IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
1630 if (value.isSigned() && value.isNegative())
1631 return IntRange(value.getMinSignedBits(), false);
1632
1633 if (value.getBitWidth() > MaxWidth)
1634 value.trunc(MaxWidth);
1635
1636 // isNonNegative() just checks the sign bit without considering
1637 // signedness.
1638 return IntRange(value.getActiveBits(), true);
1639}
1640
John McCall0acc3112010-01-06 22:57:21 +00001641IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
John McCallf2370c92010-01-06 05:24:50 +00001642 unsigned MaxWidth) {
1643 if (result.isInt())
1644 return GetValueRange(C, result.getInt(), MaxWidth);
1645
1646 if (result.isVector()) {
John McCall0acc3112010-01-06 22:57:21 +00001647 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
1648 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
1649 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
1650 R = IntRange::join(R, El);
1651 }
John McCallf2370c92010-01-06 05:24:50 +00001652 return R;
1653 }
1654
1655 if (result.isComplexInt()) {
1656 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
1657 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
1658 return IntRange::join(R, I);
John McCall51313c32010-01-04 23:31:57 +00001659 }
1660
1661 // This can happen with lossless casts to intptr_t of "based" lvalues.
1662 // Assume it might use arbitrary bits.
John McCall0acc3112010-01-06 22:57:21 +00001663 // FIXME: The only reason we need to pass the type in here is to get
1664 // the sign right on this one case. It would be nice if APValue
1665 // preserved this.
John McCallf2370c92010-01-06 05:24:50 +00001666 assert(result.isLValue());
John McCall0acc3112010-01-06 22:57:21 +00001667 return IntRange(MaxWidth, Ty->isUnsignedIntegerType());
John McCall51313c32010-01-04 23:31:57 +00001668}
John McCallf2370c92010-01-06 05:24:50 +00001669
1670/// Pseudo-evaluate the given integer expression, estimating the
1671/// range of values it might take.
1672///
1673/// \param MaxWidth - the width to which the value will be truncated
1674IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
1675 E = E->IgnoreParens();
1676
1677 // Try a full evaluation first.
1678 Expr::EvalResult result;
1679 if (E->Evaluate(result, C))
John McCall0acc3112010-01-06 22:57:21 +00001680 return GetValueRange(C, result.Val, E->getType(), MaxWidth);
John McCallf2370c92010-01-06 05:24:50 +00001681
1682 // I think we only want to look through implicit casts here; if the
1683 // user has an explicit widening cast, we should treat the value as
1684 // being of the new, wider type.
1685 if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
1686 if (CE->getCastKind() == CastExpr::CK_NoOp)
1687 return GetExprRange(C, CE->getSubExpr(), MaxWidth);
1688
1689 IntRange OutputTypeRange = IntRange::forType(C, CE->getType());
1690
John McCall60fad452010-01-06 22:07:33 +00001691 bool isIntegerCast = (CE->getCastKind() == CastExpr::CK_IntegralCast);
1692 if (!isIntegerCast && CE->getCastKind() == CastExpr::CK_Unknown)
1693 isIntegerCast = CE->getSubExpr()->getType()->isIntegerType();
1694
John McCallf2370c92010-01-06 05:24:50 +00001695 // Assume that non-integer casts can span the full range of the type.
John McCall60fad452010-01-06 22:07:33 +00001696 if (!isIntegerCast)
John McCallf2370c92010-01-06 05:24:50 +00001697 return OutputTypeRange;
1698
1699 IntRange SubRange
1700 = GetExprRange(C, CE->getSubExpr(),
1701 std::min(MaxWidth, OutputTypeRange.Width));
1702
1703 // Bail out if the subexpr's range is as wide as the cast type.
1704 if (SubRange.Width >= OutputTypeRange.Width)
1705 return OutputTypeRange;
1706
1707 // Otherwise, we take the smaller width, and we're non-negative if
1708 // either the output type or the subexpr is.
1709 return IntRange(SubRange.Width,
1710 SubRange.NonNegative || OutputTypeRange.NonNegative);
1711 }
1712
1713 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1714 // If we can fold the condition, just take that operand.
1715 bool CondResult;
1716 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
1717 return GetExprRange(C, CondResult ? CO->getTrueExpr()
1718 : CO->getFalseExpr(),
1719 MaxWidth);
1720
1721 // Otherwise, conservatively merge.
1722 IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
1723 IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
1724 return IntRange::join(L, R);
1725 }
1726
1727 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1728 switch (BO->getOpcode()) {
1729
1730 // Boolean-valued operations are single-bit and positive.
1731 case BinaryOperator::LAnd:
1732 case BinaryOperator::LOr:
1733 case BinaryOperator::LT:
1734 case BinaryOperator::GT:
1735 case BinaryOperator::LE:
1736 case BinaryOperator::GE:
1737 case BinaryOperator::EQ:
1738 case BinaryOperator::NE:
1739 return IntRange::forBoolType();
1740
1741 // Operations with opaque sources are black-listed.
1742 case BinaryOperator::PtrMemD:
1743 case BinaryOperator::PtrMemI:
1744 return IntRange::forType(C, E->getType());
1745
John McCall60fad452010-01-06 22:07:33 +00001746 // Bitwise-and uses the *infinum* of the two source ranges.
1747 case BinaryOperator::And:
1748 return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
1749 GetExprRange(C, BO->getRHS(), MaxWidth));
1750
John McCallf2370c92010-01-06 05:24:50 +00001751 // Left shift gets black-listed based on a judgement call.
1752 case BinaryOperator::Shl:
1753 return IntRange::forType(C, E->getType());
1754
John McCall60fad452010-01-06 22:07:33 +00001755 // Right shift by a constant can narrow its left argument.
1756 case BinaryOperator::Shr: {
1757 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
1758
1759 // If the shift amount is a positive constant, drop the width by
1760 // that much.
1761 llvm::APSInt shift;
1762 if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
1763 shift.isNonNegative()) {
1764 unsigned zext = shift.getZExtValue();
1765 if (zext >= L.Width)
1766 L.Width = (L.NonNegative ? 0 : 1);
1767 else
1768 L.Width -= zext;
1769 }
1770
1771 return L;
1772 }
1773
1774 // Comma acts as its right operand.
John McCallf2370c92010-01-06 05:24:50 +00001775 case BinaryOperator::Comma:
1776 return GetExprRange(C, BO->getRHS(), MaxWidth);
1777
John McCall60fad452010-01-06 22:07:33 +00001778 // Black-list pointer subtractions.
John McCallf2370c92010-01-06 05:24:50 +00001779 case BinaryOperator::Sub:
1780 if (BO->getLHS()->getType()->isPointerType())
1781 return IntRange::forType(C, E->getType());
1782 // fallthrough
1783
1784 default:
1785 break;
1786 }
1787
1788 // Treat every other operator as if it were closed on the
1789 // narrowest type that encompasses both operands.
1790 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
1791 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
1792 return IntRange::join(L, R);
1793 }
1794
1795 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
1796 switch (UO->getOpcode()) {
1797 // Boolean-valued operations are white-listed.
1798 case UnaryOperator::LNot:
1799 return IntRange::forBoolType();
1800
1801 // Operations with opaque sources are black-listed.
1802 case UnaryOperator::Deref:
1803 case UnaryOperator::AddrOf: // should be impossible
1804 case UnaryOperator::OffsetOf:
1805 return IntRange::forType(C, E->getType());
1806
1807 default:
1808 return GetExprRange(C, UO->getSubExpr(), MaxWidth);
1809 }
1810 }
1811
1812 FieldDecl *BitField = E->getBitField();
1813 if (BitField) {
1814 llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C);
1815 unsigned BitWidth = BitWidthAP.getZExtValue();
1816
1817 return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType());
1818 }
1819
1820 return IntRange::forType(C, E->getType());
1821}
John McCall51313c32010-01-04 23:31:57 +00001822
1823/// Checks whether the given value, which currently has the given
1824/// source semantics, has the same value when coerced through the
1825/// target semantics.
John McCallf2370c92010-01-06 05:24:50 +00001826bool IsSameFloatAfterCast(const llvm::APFloat &value,
1827 const llvm::fltSemantics &Src,
1828 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00001829 llvm::APFloat truncated = value;
1830
1831 bool ignored;
1832 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
1833 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
1834
1835 return truncated.bitwiseIsEqual(value);
1836}
1837
1838/// Checks whether the given value, which currently has the given
1839/// source semantics, has the same value when coerced through the
1840/// target semantics.
1841///
1842/// The value might be a vector of floats (or a complex number).
John McCallf2370c92010-01-06 05:24:50 +00001843bool IsSameFloatAfterCast(const APValue &value,
1844 const llvm::fltSemantics &Src,
1845 const llvm::fltSemantics &Tgt) {
John McCall51313c32010-01-04 23:31:57 +00001846 if (value.isFloat())
1847 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
1848
1849 if (value.isVector()) {
1850 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
1851 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
1852 return false;
1853 return true;
1854 }
1855
1856 assert(value.isComplexFloat());
1857 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
1858 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
1859}
1860
John McCallf2370c92010-01-06 05:24:50 +00001861} // end anonymous namespace
John McCall51313c32010-01-04 23:31:57 +00001862
John McCallba26e582010-01-04 23:21:16 +00001863/// \brief Implements -Wsign-compare.
1864///
1865/// \param lex the left-hand expression
1866/// \param rex the right-hand expression
1867/// \param OpLoc the location of the joining operator
1868/// \param Equality whether this is an "equality-like" join, which
1869/// suppresses the warning in some cases
1870void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc,
1871 const PartialDiagnostic &PD, bool Equality) {
1872 // Don't warn if we're in an unevaluated context.
1873 if (ExprEvalContexts.back().Context == Unevaluated)
1874 return;
1875
John McCallf2370c92010-01-06 05:24:50 +00001876 // If either expression is value-dependent, don't warn. We'll get another
1877 // chance at instantiation time.
1878 if (lex->isValueDependent() || rex->isValueDependent())
1879 return;
1880
John McCallba26e582010-01-04 23:21:16 +00001881 QualType lt = lex->getType(), rt = rex->getType();
1882
1883 // Only warn if both operands are integral.
1884 if (!lt->isIntegerType() || !rt->isIntegerType())
1885 return;
1886
John McCallf2370c92010-01-06 05:24:50 +00001887 // In C, the width of a bitfield determines its type, and the
1888 // declared type only contributes the signedness. This duplicates
1889 // the work that will later be done by UsualUnaryConversions.
1890 // Eventually, this check will be reorganized in a way that avoids
1891 // this duplication.
1892 if (!getLangOptions().CPlusPlus) {
1893 QualType tmp;
1894 tmp = Context.isPromotableBitField(lex);
1895 if (!tmp.isNull()) lt = tmp;
1896 tmp = Context.isPromotableBitField(rex);
1897 if (!tmp.isNull()) rt = tmp;
1898 }
John McCallba26e582010-01-04 23:21:16 +00001899
1900 // The rule is that the signed operand becomes unsigned, so isolate the
1901 // signed operand.
John McCallf2370c92010-01-06 05:24:50 +00001902 Expr *signedOperand = lex, *unsignedOperand = rex;
1903 QualType signedType = lt, unsignedType = rt;
John McCallba26e582010-01-04 23:21:16 +00001904 if (lt->isSignedIntegerType()) {
1905 if (rt->isSignedIntegerType()) return;
John McCallba26e582010-01-04 23:21:16 +00001906 } else {
1907 if (!rt->isSignedIntegerType()) return;
John McCallf2370c92010-01-06 05:24:50 +00001908 std::swap(signedOperand, unsignedOperand);
1909 std::swap(signedType, unsignedType);
John McCallba26e582010-01-04 23:21:16 +00001910 }
1911
John McCallf2370c92010-01-06 05:24:50 +00001912 unsigned unsignedWidth = Context.getIntWidth(unsignedType);
1913 unsigned signedWidth = Context.getIntWidth(signedType);
1914
John McCallba26e582010-01-04 23:21:16 +00001915 // If the unsigned type is strictly smaller than the signed type,
1916 // then (1) the result type will be signed and (2) the unsigned
1917 // value will fit fully within the signed type, and thus the result
1918 // of the comparison will be exact.
John McCallf2370c92010-01-06 05:24:50 +00001919 if (signedWidth > unsignedWidth)
John McCallba26e582010-01-04 23:21:16 +00001920 return;
1921
John McCallf2370c92010-01-06 05:24:50 +00001922 // Otherwise, calculate the effective ranges.
1923 IntRange signedRange = GetExprRange(Context, signedOperand, signedWidth);
1924 IntRange unsignedRange = GetExprRange(Context, unsignedOperand, unsignedWidth);
1925
1926 // We should never be unable to prove that the unsigned operand is
1927 // non-negative.
1928 assert(unsignedRange.NonNegative && "unsigned range includes negative?");
1929
1930 // If the signed operand is non-negative, then the signed->unsigned
1931 // conversion won't change it.
1932 if (signedRange.NonNegative)
John McCallba26e582010-01-04 23:21:16 +00001933 return;
1934
1935 // For (in)equality comparisons, if the unsigned operand is a
1936 // constant which cannot collide with a overflowed signed operand,
1937 // then reinterpreting the signed operand as unsigned will not
1938 // change the result of the comparison.
John McCallf2370c92010-01-06 05:24:50 +00001939 if (Equality && unsignedRange.Width < unsignedWidth)
John McCallba26e582010-01-04 23:21:16 +00001940 return;
1941
1942 Diag(OpLoc, PD)
John McCallf2370c92010-01-06 05:24:50 +00001943 << lt << rt << lex->getSourceRange() << rex->getSourceRange();
John McCallba26e582010-01-04 23:21:16 +00001944}
1945
John McCall51313c32010-01-04 23:31:57 +00001946/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
1947static void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) {
1948 S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange();
1949}
1950
1951/// Implements -Wconversion.
1952void Sema::CheckImplicitConversion(Expr *E, QualType T) {
1953 // Don't diagnose in unevaluated contexts.
1954 if (ExprEvalContexts.back().Context == Sema::Unevaluated)
1955 return;
1956
1957 // Don't diagnose for value-dependent expressions.
1958 if (E->isValueDependent())
1959 return;
1960
1961 const Type *Source = Context.getCanonicalType(E->getType()).getTypePtr();
1962 const Type *Target = Context.getCanonicalType(T).getTypePtr();
1963
1964 // Never diagnose implicit casts to bool.
1965 if (Target->isSpecificBuiltinType(BuiltinType::Bool))
1966 return;
1967
1968 // Strip vector types.
1969 if (isa<VectorType>(Source)) {
1970 if (!isa<VectorType>(Target))
1971 return DiagnoseImpCast(*this, E, T, diag::warn_impcast_vector_scalar);
1972
1973 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
1974 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
1975 }
1976
1977 // Strip complex types.
1978 if (isa<ComplexType>(Source)) {
1979 if (!isa<ComplexType>(Target))
1980 return DiagnoseImpCast(*this, E, T, diag::warn_impcast_complex_scalar);
1981
1982 Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
1983 Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
1984 }
1985
1986 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
1987 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
1988
1989 // If the source is floating point...
1990 if (SourceBT && SourceBT->isFloatingPoint()) {
1991 // ...and the target is floating point...
1992 if (TargetBT && TargetBT->isFloatingPoint()) {
1993 // ...then warn if we're dropping FP rank.
1994
1995 // Builtin FP kinds are ordered by increasing FP rank.
1996 if (SourceBT->getKind() > TargetBT->getKind()) {
1997 // Don't warn about float constants that are precisely
1998 // representable in the target type.
1999 Expr::EvalResult result;
2000 if (E->Evaluate(result, Context)) {
2001 // Value might be a float, a float vector, or a float complex.
2002 if (IsSameFloatAfterCast(result.Val,
2003 Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
2004 Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
2005 return;
2006 }
2007
2008 DiagnoseImpCast(*this, E, T, diag::warn_impcast_float_precision);
2009 }
2010 return;
2011 }
2012
2013 // If the target is integral, always warn.
2014 if ((TargetBT && TargetBT->isInteger()))
2015 // TODO: don't warn for integer values?
2016 return DiagnoseImpCast(*this, E, T, diag::warn_impcast_float_integer);
2017
2018 return;
2019 }
2020
John McCallf2370c92010-01-06 05:24:50 +00002021 if (!Source->isIntegerType() || !Target->isIntegerType())
John McCall51313c32010-01-04 23:31:57 +00002022 return;
2023
John McCallf2370c92010-01-06 05:24:50 +00002024 IntRange SourceRange = GetExprRange(Context, E, Context.getIntWidth(E->getType()));
2025 IntRange TargetRange = IntRange::forCanonicalType(Context, Target);
John McCall51313c32010-01-04 23:31:57 +00002026
John McCallf2370c92010-01-06 05:24:50 +00002027 // FIXME: also signed<->unsigned?
2028
2029 if (SourceRange.Width > TargetRange.Width) {
John McCall51313c32010-01-04 23:31:57 +00002030 // People want to build with -Wshorten-64-to-32 and not -Wconversion
2031 // and by god we'll let them.
John McCallf2370c92010-01-06 05:24:50 +00002032 if (SourceRange.Width == 64 && TargetRange.Width == 32)
John McCall51313c32010-01-04 23:31:57 +00002033 return DiagnoseImpCast(*this, E, T, diag::warn_impcast_integer_64_32);
2034 return DiagnoseImpCast(*this, E, T, diag::warn_impcast_integer_precision);
2035 }
2036
2037 return;
2038}
2039
Mike Stumpf8c49212010-01-21 03:59:47 +00002040// MarkLive - Mark all the blocks reachable from e as live. Returns the total
2041// number of blocks just marked live.
2042static unsigned MarkLive(CFGBlock *e, llvm::BitVector &live) {
2043 unsigned count = 0;
2044 std::queue<CFGBlock*> workq;
2045 // Prep work queue
2046 live.set(e->getBlockID());
2047 ++count;
2048 workq.push(e);
2049 // Solve
2050 while (!workq.empty()) {
2051 CFGBlock *item = workq.front();
2052 workq.pop();
2053 for (CFGBlock::succ_iterator I=item->succ_begin(),
2054 E=item->succ_end();
2055 I != E;
2056 ++I) {
2057 if ((*I) && !live[(*I)->getBlockID()]) {
2058 live.set((*I)->getBlockID());
2059 ++count;
2060 workq.push(*I);
2061 }
2062 }
2063 }
2064 return count;
2065}
2066
Mike Stump55f988e2010-01-21 17:21:23 +00002067static SourceLocation GetUnreachableLoc(CFGBlock &b, SourceRange &R1,
2068 SourceRange &R2) {
Mike Stumpf8c49212010-01-21 03:59:47 +00002069 Stmt *S;
Mike Stumpe5fba702010-01-21 19:44:04 +00002070 unsigned sn = 0;
2071 R1 = R2 = SourceRange();
2072
2073 top:
2074 if (sn < b.size())
2075 S = b[sn].getStmt();
Mike Stumpf8c49212010-01-21 03:59:47 +00002076 else if (b.getTerminator())
2077 S = b.getTerminator();
2078 else
2079 return SourceLocation();
2080
2081 switch (S->getStmtClass()) {
2082 case Expr::BinaryOperatorClass: {
Mike Stump55f988e2010-01-21 17:21:23 +00002083 BinaryOperator *BO = cast<BinaryOperator>(S);
2084 if (BO->getOpcode() == BinaryOperator::Comma) {
Mike Stumpe5fba702010-01-21 19:44:04 +00002085 if (sn+1 < b.size())
2086 return b[sn+1].getStmt()->getLocStart();
Mike Stumpf8c49212010-01-21 03:59:47 +00002087 CFGBlock *n = &b;
2088 while (1) {
2089 if (n->getTerminator())
2090 return n->getTerminator()->getLocStart();
2091 if (n->succ_size() != 1)
2092 return SourceLocation();
2093 n = n[0].succ_begin()[0];
2094 if (n->pred_size() != 1)
2095 return SourceLocation();
2096 if (!n->empty())
2097 return n[0][0].getStmt()->getLocStart();
2098 }
2099 }
Mike Stump55f988e2010-01-21 17:21:23 +00002100 R1 = BO->getLHS()->getSourceRange();
2101 R2 = BO->getRHS()->getSourceRange();
2102 return BO->getOperatorLoc();
2103 }
2104 case Expr::UnaryOperatorClass: {
2105 const UnaryOperator *UO = cast<UnaryOperator>(S);
2106 R1 = UO->getSubExpr()->getSourceRange();
2107 return UO->getOperatorLoc();
Mike Stumpf8c49212010-01-21 03:59:47 +00002108 }
Mike Stump45db90d2010-01-21 17:31:41 +00002109 case Expr::CompoundAssignOperatorClass: {
2110 const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);
2111 R1 = CAO->getLHS()->getSourceRange();
2112 R2 = CAO->getRHS()->getSourceRange();
2113 return CAO->getOperatorLoc();
2114 }
Mike Stumpe5fba702010-01-21 19:44:04 +00002115 case Expr::ConditionalOperatorClass: {
2116 const ConditionalOperator *CO = cast<ConditionalOperator>(S);
2117 return CO->getQuestionLoc();
2118 }
Mike Stump44582302010-01-21 19:51:34 +00002119 case Expr::CStyleCastExprClass: {
2120 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S);
2121 R1 = CSC->getSubExpr()->getSourceRange();
2122 return CSC->getLParenLoc();
2123 }
Mike Stump2d6ceab2010-01-21 22:12:18 +00002124 case Expr::CXXFunctionalCastExprClass: {
2125 const CXXFunctionalCastExpr *CE = cast <CXXFunctionalCastExpr>(S);
2126 R1 = CE->getSubExpr()->getSourceRange();
2127 return CE->getTypeBeginLoc();
2128 }
Mike Stumpe5fba702010-01-21 19:44:04 +00002129 case Expr::ImplicitCastExprClass:
2130 ++sn;
2131 goto top;
Mike Stump4c45aa12010-01-21 15:20:48 +00002132 case Stmt::CXXTryStmtClass: {
2133 return cast<CXXTryStmt>(S)->getHandler(0)->getCatchLoc();
2134 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002135 default: ;
2136 }
2137 return S->getLocStart();
2138}
2139
2140static SourceLocation MarkLiveTop(CFGBlock *e, llvm::BitVector &live,
2141 SourceManager &SM) {
2142 std::queue<CFGBlock*> workq;
2143 // Prep work queue
2144 workq.push(e);
Mike Stump55f988e2010-01-21 17:21:23 +00002145 SourceRange R1, R2;
2146 SourceLocation top = GetUnreachableLoc(*e, R1, R2);
Mike Stumpf8c49212010-01-21 03:59:47 +00002147 bool FromMainFile = false;
2148 bool FromSystemHeader = false;
2149 bool TopValid = false;
2150 if (top.isValid()) {
2151 FromMainFile = SM.isFromMainFile(top);
2152 FromSystemHeader = SM.isInSystemHeader(top);
2153 TopValid = true;
2154 }
2155 // Solve
2156 while (!workq.empty()) {
2157 CFGBlock *item = workq.front();
2158 workq.pop();
Mike Stump55f988e2010-01-21 17:21:23 +00002159 SourceLocation c = GetUnreachableLoc(*item, R1, R2);
Mike Stumpf8c49212010-01-21 03:59:47 +00002160 if (c.isValid()
2161 && (!TopValid
2162 || (SM.isFromMainFile(c) && !FromMainFile)
2163 || (FromSystemHeader && !SM.isInSystemHeader(c))
2164 || SM.isBeforeInTranslationUnit(c, top))) {
2165 top = c;
2166 FromMainFile = SM.isFromMainFile(top);
2167 FromSystemHeader = SM.isInSystemHeader(top);
2168 }
2169 live.set(item->getBlockID());
2170 for (CFGBlock::succ_iterator I=item->succ_begin(),
2171 E=item->succ_end();
2172 I != E;
2173 ++I) {
2174 if ((*I) && !live[(*I)->getBlockID()]) {
2175 live.set((*I)->getBlockID());
2176 workq.push(*I);
2177 }
2178 }
2179 }
2180 return top;
2181}
2182
2183static int LineCmp(const void *p1, const void *p2) {
2184 SourceLocation *Line1 = (SourceLocation *)p1;
2185 SourceLocation *Line2 = (SourceLocation *)p2;
2186 return !(*Line1 < *Line2);
2187}
2188
2189/// CheckUnreachable - Check for unreachable code.
2190void Sema::CheckUnreachable(AnalysisContext &AC) {
2191 unsigned count;
2192 // We avoid checking when there are errors, as the CFG won't faithfully match
2193 // the user's code.
2194 if (getDiagnostics().hasErrorOccurred())
2195 return;
2196 if (Diags.getDiagnosticLevel(diag::warn_unreachable) == Diagnostic::Ignored)
2197 return;
2198
2199 CFG *cfg = AC.getCFG();
2200 if (cfg == 0)
2201 return;
2202
2203 llvm::BitVector live(cfg->getNumBlockIDs());
2204 // Mark all live things first.
2205 count = MarkLive(&cfg->getEntry(), live);
2206
2207 if (count == cfg->getNumBlockIDs())
2208 // If there are no dead blocks, we're done.
2209 return;
2210
Mike Stump55f988e2010-01-21 17:21:23 +00002211 SourceRange R1, R2;
2212
Mike Stumpf8c49212010-01-21 03:59:47 +00002213 llvm::SmallVector<SourceLocation, 24> lines;
Mike Stump4c45aa12010-01-21 15:20:48 +00002214 bool AddEHEdges = AC.getAddEHEdges();
Mike Stumpf8c49212010-01-21 03:59:47 +00002215 // First, give warnings for blocks with no predecessors, as they
2216 // can't be part of a loop.
2217 for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) {
2218 CFGBlock &b = **I;
2219 if (!live[b.getBlockID()]) {
2220 if (b.pred_begin() == b.pred_end()) {
Mike Stump4c45aa12010-01-21 15:20:48 +00002221 if (!AddEHEdges && b.getTerminator()
2222 && isa<CXXTryStmt>(b.getTerminator())) {
2223 // When not adding EH edges from calls, catch clauses
2224 // can otherwise seem dead. Avoid noting them as dead.
2225 count += MarkLive(&b, live);
2226 continue;
2227 }
Mike Stump55f988e2010-01-21 17:21:23 +00002228 SourceLocation c = GetUnreachableLoc(b, R1, R2);
Mike Stumpf8c49212010-01-21 03:59:47 +00002229 if (!c.isValid()) {
2230 // Blocks without a location can't produce a warning, so don't mark
2231 // reachable blocks from here as live.
2232 live.set(b.getBlockID());
2233 ++count;
2234 continue;
2235 }
2236 lines.push_back(c);
2237 // Avoid excessive errors by marking everything reachable from here
2238 count += MarkLive(&b, live);
2239 }
2240 }
2241 }
2242
2243 if (count < cfg->getNumBlockIDs()) {
2244 // And then give warnings for the tops of loops.
2245 for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) {
2246 CFGBlock &b = **I;
2247 if (!live[b.getBlockID()])
2248 // Avoid excessive errors by marking everything reachable from here
2249 lines.push_back(MarkLiveTop(&b, live, Context.getSourceManager()));
2250 }
2251 }
2252
2253 llvm::array_pod_sort(lines.begin(), lines.end(), LineCmp);
2254 for (llvm::SmallVector<SourceLocation, 24>::iterator I = lines.begin(),
2255 E = lines.end();
2256 I != E;
2257 ++I)
2258 if (I->isValid())
2259 Diag(*I, diag::warn_unreachable);
2260}
2261
2262/// CheckFallThrough - Check that we don't fall off the end of a
2263/// Statement that should return a value.
2264///
2265/// \returns AlwaysFallThrough iff we always fall off the end of the statement,
2266/// MaybeFallThrough iff we might or might not fall off the end,
2267/// NeverFallThroughOrReturn iff we never fall off the end of the statement or
2268/// return. We assume NeverFallThrough iff we never fall off the end of the
2269/// statement but we may return. We assume that functions not marked noreturn
2270/// will return.
2271Sema::ControlFlowKind Sema::CheckFallThrough(AnalysisContext &AC) {
2272 CFG *cfg = AC.getCFG();
2273 if (cfg == 0)
2274 // FIXME: This should be NeverFallThrough
2275 return NeverFallThroughOrReturn;
2276
Mike Stump4c45aa12010-01-21 15:20:48 +00002277 // The CFG leaves in dead things, and we don't want the dead code paths to
Mike Stumpf8c49212010-01-21 03:59:47 +00002278 // confuse us, so we mark all live things first.
2279 std::queue<CFGBlock*> workq;
2280 llvm::BitVector live(cfg->getNumBlockIDs());
Mike Stump4c45aa12010-01-21 15:20:48 +00002281 unsigned count = MarkLive(&cfg->getEntry(), live);
2282
2283 bool AddEHEdges = AC.getAddEHEdges();
2284 if (!AddEHEdges && count != cfg->getNumBlockIDs())
2285 // When there are things remaining dead, and we didn't add EH edges
2286 // from CallExprs to the catch clauses, we have to go back and
2287 // mark them as live.
2288 for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) {
2289 CFGBlock &b = **I;
2290 if (!live[b.getBlockID()]) {
2291 if (b.pred_begin() == b.pred_end()) {
2292 if (b.getTerminator() && isa<CXXTryStmt>(b.getTerminator()))
2293 // When not adding EH edges from calls, catch clauses
2294 // can otherwise seem dead. Avoid noting them as dead.
2295 count += MarkLive(&b, live);
2296 continue;
2297 }
2298 }
2299 }
Mike Stumpf8c49212010-01-21 03:59:47 +00002300
2301 // Now we know what is live, we check the live precessors of the exit block
2302 // and look for fall through paths, being careful to ignore normal returns,
2303 // and exceptional paths.
2304 bool HasLiveReturn = false;
2305 bool HasFakeEdge = false;
2306 bool HasPlainEdge = false;
2307 bool HasAbnormalEdge = false;
2308 for (CFGBlock::pred_iterator I=cfg->getExit().pred_begin(),
2309 E = cfg->getExit().pred_end();
2310 I != E;
2311 ++I) {
2312 CFGBlock& B = **I;
2313 if (!live[B.getBlockID()])
2314 continue;
2315 if (B.size() == 0) {
Mike Stump4c45aa12010-01-21 15:20:48 +00002316 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) {
2317 HasAbnormalEdge = true;
2318 continue;
2319 }
2320
Mike Stumpf8c49212010-01-21 03:59:47 +00002321 // A labeled empty statement, or the entry block...
2322 HasPlainEdge = true;
2323 continue;
2324 }
2325 Stmt *S = B[B.size()-1];
2326 if (isa<ReturnStmt>(S)) {
2327 HasLiveReturn = true;
2328 continue;
2329 }
2330 if (isa<ObjCAtThrowStmt>(S)) {
2331 HasFakeEdge = true;
2332 continue;
2333 }
2334 if (isa<CXXThrowExpr>(S)) {
2335 HasFakeEdge = true;
2336 continue;
2337 }
2338 if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {
2339 if (AS->isMSAsm()) {
2340 HasFakeEdge = true;
2341 HasLiveReturn = true;
2342 continue;
2343 }
2344 }
2345 if (isa<CXXTryStmt>(S)) {
2346 HasAbnormalEdge = true;
2347 continue;
2348 }
2349
2350 bool NoReturnEdge = false;
2351 if (CallExpr *C = dyn_cast<CallExpr>(S)) {
2352 if (B.succ_begin()[0] != &cfg->getExit()) {
2353 HasAbnormalEdge = true;
2354 continue;
2355 }
2356 Expr *CEE = C->getCallee()->IgnoreParenCasts();
2357 if (CEE->getType().getNoReturnAttr()) {
2358 NoReturnEdge = true;
2359 HasFakeEdge = true;
2360 } else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
2361 ValueDecl *VD = DRE->getDecl();
2362 if (VD->hasAttr<NoReturnAttr>()) {
2363 NoReturnEdge = true;
2364 HasFakeEdge = true;
2365 }
2366 }
2367 }
2368 // FIXME: Add noreturn message sends.
2369 if (NoReturnEdge == false)
2370 HasPlainEdge = true;
2371 }
2372 if (!HasPlainEdge) {
2373 if (HasLiveReturn)
2374 return NeverFallThrough;
2375 return NeverFallThroughOrReturn;
2376 }
2377 if (HasAbnormalEdge || HasFakeEdge || HasLiveReturn)
2378 return MaybeFallThrough;
2379 // This says AlwaysFallThrough for calls to functions that are not marked
2380 // noreturn, that don't return. If people would like this warning to be more
2381 // accurate, such functions should be marked as noreturn.
2382 return AlwaysFallThrough;
2383}
2384
2385/// CheckFallThroughForFunctionDef - Check that we don't fall off the end of a
2386/// function that should return a value. Check that we don't fall off the end
2387/// of a noreturn function. We assume that functions and blocks not marked
2388/// noreturn will return.
2389void Sema::CheckFallThroughForFunctionDef(Decl *D, Stmt *Body,
2390 AnalysisContext &AC) {
2391 // FIXME: Would be nice if we had a better way to control cascading errors,
2392 // but for now, avoid them. The problem is that when Parse sees:
2393 // int foo() { return a; }
2394 // The return is eaten and the Sema code sees just:
2395 // int foo() { }
2396 // which this code would then warn about.
2397 if (getDiagnostics().hasErrorOccurred())
2398 return;
2399
2400 bool ReturnsVoid = false;
2401 bool HasNoReturn = false;
2402 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2403 // If the result type of the function is a dependent type, we don't know
2404 // whether it will be void or not, so don't
2405 if (FD->getResultType()->isDependentType())
2406 return;
2407 if (FD->getResultType()->isVoidType())
2408 ReturnsVoid = true;
2409 if (FD->hasAttr<NoReturnAttr>())
2410 HasNoReturn = true;
2411 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2412 if (MD->getResultType()->isVoidType())
2413 ReturnsVoid = true;
2414 if (MD->hasAttr<NoReturnAttr>())
2415 HasNoReturn = true;
2416 }
2417
2418 // Short circuit for compilation speed.
2419 if ((Diags.getDiagnosticLevel(diag::warn_maybe_falloff_nonvoid_function)
2420 == Diagnostic::Ignored || ReturnsVoid)
2421 && (Diags.getDiagnosticLevel(diag::warn_noreturn_function_has_return_expr)
2422 == Diagnostic::Ignored || !HasNoReturn)
2423 && (Diags.getDiagnosticLevel(diag::warn_suggest_noreturn_block)
2424 == Diagnostic::Ignored || !ReturnsVoid))
2425 return;
2426 // FIXME: Function try block
2427 if (CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
2428 switch (CheckFallThrough(AC)) {
2429 case MaybeFallThrough:
2430 if (HasNoReturn)
2431 Diag(Compound->getRBracLoc(), diag::warn_falloff_noreturn_function);
2432 else if (!ReturnsVoid)
2433 Diag(Compound->getRBracLoc(),diag::warn_maybe_falloff_nonvoid_function);
2434 break;
2435 case AlwaysFallThrough:
2436 if (HasNoReturn)
2437 Diag(Compound->getRBracLoc(), diag::warn_falloff_noreturn_function);
2438 else if (!ReturnsVoid)
2439 Diag(Compound->getRBracLoc(), diag::warn_falloff_nonvoid_function);
2440 break;
2441 case NeverFallThroughOrReturn:
2442 if (ReturnsVoid && !HasNoReturn)
2443 Diag(Compound->getLBracLoc(), diag::warn_suggest_noreturn_function);
2444 break;
2445 case NeverFallThrough:
2446 break;
2447 }
2448 }
2449}
2450
2451/// CheckFallThroughForBlock - Check that we don't fall off the end of a block
2452/// that should return a value. Check that we don't fall off the end of a
2453/// noreturn block. We assume that functions and blocks not marked noreturn
2454/// will return.
2455void Sema::CheckFallThroughForBlock(QualType BlockTy, Stmt *Body,
2456 AnalysisContext &AC) {
2457 // FIXME: Would be nice if we had a better way to control cascading errors,
2458 // but for now, avoid them. The problem is that when Parse sees:
2459 // int foo() { return a; }
2460 // The return is eaten and the Sema code sees just:
2461 // int foo() { }
2462 // which this code would then warn about.
2463 if (getDiagnostics().hasErrorOccurred())
2464 return;
2465 bool ReturnsVoid = false;
2466 bool HasNoReturn = false;
2467 if (const FunctionType *FT =BlockTy->getPointeeType()->getAs<FunctionType>()){
2468 if (FT->getResultType()->isVoidType())
2469 ReturnsVoid = true;
2470 if (FT->getNoReturnAttr())
2471 HasNoReturn = true;
2472 }
2473
2474 // Short circuit for compilation speed.
2475 if (ReturnsVoid
2476 && !HasNoReturn
2477 && (Diags.getDiagnosticLevel(diag::warn_suggest_noreturn_block)
2478 == Diagnostic::Ignored || !ReturnsVoid))
2479 return;
2480 // FIXME: Funtion try block
2481 if (CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
2482 switch (CheckFallThrough(AC)) {
2483 case MaybeFallThrough:
2484 if (HasNoReturn)
2485 Diag(Compound->getRBracLoc(), diag::err_noreturn_block_has_return_expr);
2486 else if (!ReturnsVoid)
2487 Diag(Compound->getRBracLoc(), diag::err_maybe_falloff_nonvoid_block);
2488 break;
2489 case AlwaysFallThrough:
2490 if (HasNoReturn)
2491 Diag(Compound->getRBracLoc(), diag::err_noreturn_block_has_return_expr);
2492 else if (!ReturnsVoid)
2493 Diag(Compound->getRBracLoc(), diag::err_falloff_nonvoid_block);
2494 break;
2495 case NeverFallThroughOrReturn:
2496 if (ReturnsVoid)
2497 Diag(Compound->getLBracLoc(), diag::warn_suggest_noreturn_block);
2498 break;
2499 case NeverFallThrough:
2500 break;
2501 }
2502 }
2503}
2504
2505/// CheckParmsForFunctionDef - Check that the parameters of the given
2506/// function are appropriate for the definition of a function. This
2507/// takes care of any checks that cannot be performed on the
2508/// declaration itself, e.g., that the types of each of the function
2509/// parameters are complete.
2510bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
2511 bool HasInvalidParm = false;
2512 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2513 ParmVarDecl *Param = FD->getParamDecl(p);
2514
2515 // C99 6.7.5.3p4: the parameters in a parameter type list in a
2516 // function declarator that is part of a function definition of
2517 // that function shall not have incomplete type.
2518 //
2519 // This is also C++ [dcl.fct]p6.
2520 if (!Param->isInvalidDecl() &&
2521 RequireCompleteType(Param->getLocation(), Param->getType(),
2522 diag::err_typecheck_decl_incomplete_type)) {
2523 Param->setInvalidDecl();
2524 HasInvalidParm = true;
2525 }
2526
2527 // C99 6.9.1p5: If the declarator includes a parameter type list, the
2528 // declaration of each parameter shall include an identifier.
2529 if (Param->getIdentifier() == 0 &&
2530 !Param->isImplicit() &&
2531 !getLangOptions().CPlusPlus)
2532 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
2533 }
2534
2535 return HasInvalidParm;
2536}