Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 1 | //===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 10 | // This file implements extra semantic analysis beyond what is enforced |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 11 | // by the C type system. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 15 | #include "clang/Sema/Sema.h" |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 16 | #include "clang/Sema/SemaInternal.h" |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 17 | #include "clang/Sema/ScopeInfo.h" |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 18 | #include "clang/Analysis/Analyses/FormatString.h" |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 19 | #include "clang/AST/ASTContext.h" |
Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 20 | #include "clang/AST/CharUnits.h" |
John McCall | 384aff8 | 2010-08-25 07:42:41 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclCXX.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclObjC.h" |
Ted Kremenek | 2324512 | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 23 | #include "clang/AST/ExprCXX.h" |
Ted Kremenek | 7ff22b2 | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 24 | #include "clang/AST/ExprObjC.h" |
Mike Stump | f8c4921 | 2010-01-21 03:59:47 +0000 | [diff] [blame] | 25 | #include "clang/AST/DeclObjC.h" |
| 26 | #include "clang/AST/StmtCXX.h" |
| 27 | #include "clang/AST/StmtObjC.h" |
Chris Lattner | 719e615 | 2009-02-18 19:21:10 +0000 | [diff] [blame] | 28 | #include "clang/Lex/LiteralSupport.h" |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 29 | #include "clang/Lex/Preprocessor.h" |
Mike Stump | f8c4921 | 2010-01-21 03:59:47 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/BitVector.h" |
| 31 | #include "llvm/ADT/STLExtras.h" |
Tom Care | 3bfc5f4 | 2010-06-09 04:11:11 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 33 | #include "clang/Basic/TargetBuiltins.h" |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 34 | #include "clang/Basic/TargetInfo.h" |
Fariborz Jahanian | 7da7102 | 2010-09-07 19:38:13 +0000 | [diff] [blame] | 35 | #include "clang/Basic/ConvertUTF.h" |
| 36 | |
Zhongxing Xu | a1f3dba | 2009-05-20 01:55:10 +0000 | [diff] [blame] | 37 | #include <limits> |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 38 | using namespace clang; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 39 | using namespace sema; |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 41 | /// getLocationOfStringLiteralByte - Return a source location that points to the |
| 42 | /// specified byte of the specified string literal. |
| 43 | /// |
| 44 | /// Strings are amazingly complex. They can be formed from multiple tokens and |
| 45 | /// can have escape sequences in them in addition to the usual trigraph and |
| 46 | /// escaped newline business. This routine handles this complexity. |
| 47 | /// |
| 48 | SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL, |
| 49 | unsigned ByteNo) const { |
| 50 | assert(!SL->isWide() && "This doesn't work for wide strings yet"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 51 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 52 | // Loop over all of the tokens in this string until we find the one that |
| 53 | // contains the byte we're looking for. |
| 54 | unsigned TokNo = 0; |
| 55 | while (1) { |
| 56 | assert(TokNo < SL->getNumConcatenated() && "Invalid byte number!"); |
| 57 | SourceLocation StrTokLoc = SL->getStrTokenLoc(TokNo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 59 | // Get the spelling of the string so that we can get the data that makes up |
| 60 | // the string literal, not the identifier for the macro it is potentially |
| 61 | // expanded through. |
| 62 | SourceLocation StrTokSpellingLoc = SourceMgr.getSpellingLoc(StrTokLoc); |
| 63 | |
| 64 | // Re-lex the token to get its length and original spelling. |
| 65 | std::pair<FileID, unsigned> LocInfo = |
| 66 | SourceMgr.getDecomposedLoc(StrTokSpellingLoc); |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 67 | bool Invalid = false; |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 68 | llvm::StringRef Buffer = SourceMgr.getBufferData(LocInfo.first, &Invalid); |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 69 | if (Invalid) |
Douglas Gregor | aea67db | 2010-03-15 22:54:52 +0000 | [diff] [blame] | 70 | return StrTokSpellingLoc; |
| 71 | |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 72 | const char *StrData = Buffer.data()+LocInfo.second; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 74 | // Create a langops struct and enable trigraphs. This is sufficient for |
| 75 | // relexing tokens. |
| 76 | LangOptions LangOpts; |
| 77 | LangOpts.Trigraphs = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 79 | // Create a lexer starting at the beginning of this token. |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 80 | Lexer TheLexer(StrTokSpellingLoc, LangOpts, Buffer.begin(), StrData, |
| 81 | Buffer.end()); |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 82 | Token TheTok; |
| 83 | TheLexer.LexFromRawLexer(TheTok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | |
Chris Lattner | 443e53c | 2009-02-18 19:26:42 +0000 | [diff] [blame] | 85 | // Use the StringLiteralParser to compute the length of the string in bytes. |
Douglas Gregor | b90f4b3 | 2010-05-26 05:35:51 +0000 | [diff] [blame] | 86 | StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false); |
Chris Lattner | 443e53c | 2009-02-18 19:26:42 +0000 | [diff] [blame] | 87 | unsigned TokNumBytes = SLP.GetStringLength(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 2197c96 | 2009-02-18 18:52:52 +0000 | [diff] [blame] | 89 | // If the byte is in this token, return the location of the byte. |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 90 | if (ByteNo < TokNumBytes || |
| 91 | (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 92 | unsigned Offset = |
Douglas Gregor | b90f4b3 | 2010-05-26 05:35:51 +0000 | [diff] [blame] | 93 | StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, PP, |
| 94 | /*Complain=*/false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 719e615 | 2009-02-18 19:21:10 +0000 | [diff] [blame] | 96 | // Now that we know the offset of the token in the spelling, use the |
| 97 | // preprocessor to get the offset in the original source. |
| 98 | return PP.AdvanceToTokenCharacter(StrTokLoc, Offset); |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 99 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 100 | |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 101 | // Move to the next string token. |
| 102 | ++TokNo; |
| 103 | ByteNo -= TokNumBytes; |
| 104 | } |
| 105 | } |
| 106 | |
Ryan Flynn | 4403a5e | 2009-08-06 03:00:50 +0000 | [diff] [blame] | 107 | /// CheckablePrintfAttr - does a function call have a "printf" attribute |
| 108 | /// and arguments that merit checking? |
| 109 | bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) { |
| 110 | if (Format->getType() == "printf") return true; |
| 111 | if (Format->getType() == "printf0") { |
| 112 | // printf0 allows null "format" string; if so don't check format/args |
| 113 | unsigned format_idx = Format->getFormatIdx() - 1; |
Sebastian Redl | 4a2614e | 2009-11-17 18:02:24 +0000 | [diff] [blame] | 114 | // Does the index refer to the implicit object argument? |
| 115 | if (isa<CXXMemberCallExpr>(TheCall)) { |
| 116 | if (format_idx == 0) |
| 117 | return false; |
| 118 | --format_idx; |
| 119 | } |
Ryan Flynn | 4403a5e | 2009-08-06 03:00:50 +0000 | [diff] [blame] | 120 | if (format_idx < TheCall->getNumArgs()) { |
| 121 | Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts(); |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 122 | if (!Format->isNullPointerConstant(Context, |
| 123 | Expr::NPC_ValueDependentIsNull)) |
Ryan Flynn | 4403a5e | 2009-08-06 03:00:50 +0000 | [diff] [blame] | 124 | return true; |
| 125 | } |
| 126 | } |
| 127 | return false; |
| 128 | } |
Chris Lattner | 6080008 | 2009-02-18 17:49:48 +0000 | [diff] [blame] | 129 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 130 | ExprResult |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 131 | Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 132 | ExprResult TheCallResult(Owned(TheCall)); |
Douglas Gregor | 2def483 | 2008-11-17 20:34:05 +0000 | [diff] [blame] | 133 | |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 134 | switch (BuiltinID) { |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 135 | case Builtin::BI__builtin___CFStringMakeConstantString: |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 136 | assert(TheCall->getNumArgs() == 1 && |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 137 | "Wrong # arguments to builtin CFStringMakeConstantString"); |
Chris Lattner | 6903981 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 138 | if (CheckObjCString(TheCall->getArg(0))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 139 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 140 | break; |
Ted Kremenek | 49ff7a1 | 2008-07-09 17:58:53 +0000 | [diff] [blame] | 141 | case Builtin::BI__builtin_stdarg_start: |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 142 | case Builtin::BI__builtin_va_start: |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 143 | if (SemaBuiltinVAStart(TheCall)) |
| 144 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 145 | break; |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 146 | case Builtin::BI__builtin_isgreater: |
| 147 | case Builtin::BI__builtin_isgreaterequal: |
| 148 | case Builtin::BI__builtin_isless: |
| 149 | case Builtin::BI__builtin_islessequal: |
| 150 | case Builtin::BI__builtin_islessgreater: |
| 151 | case Builtin::BI__builtin_isunordered: |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 152 | if (SemaBuiltinUnorderedCompare(TheCall)) |
| 153 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 154 | break; |
Benjamin Kramer | e771a7a | 2010-02-15 22:42:31 +0000 | [diff] [blame] | 155 | case Builtin::BI__builtin_fpclassify: |
| 156 | if (SemaBuiltinFPClassification(TheCall, 6)) |
| 157 | return ExprError(); |
| 158 | break; |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 159 | case Builtin::BI__builtin_isfinite: |
| 160 | case Builtin::BI__builtin_isinf: |
| 161 | case Builtin::BI__builtin_isinf_sign: |
| 162 | case Builtin::BI__builtin_isnan: |
| 163 | case Builtin::BI__builtin_isnormal: |
Benjamin Kramer | 3b1e26b | 2010-02-16 10:07:31 +0000 | [diff] [blame] | 164 | if (SemaBuiltinFPClassification(TheCall, 1)) |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 165 | return ExprError(); |
| 166 | break; |
Eli Friedman | 6cfda23 | 2008-05-20 08:23:37 +0000 | [diff] [blame] | 167 | case Builtin::BI__builtin_return_address: |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 168 | case Builtin::BI__builtin_frame_address: { |
| 169 | llvm::APSInt Result; |
| 170 | if (SemaBuiltinConstantArg(TheCall, 0, Result)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 171 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 172 | break; |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 173 | } |
| 174 | case Builtin::BI__builtin_eh_return_data_regno: { |
| 175 | llvm::APSInt Result; |
| 176 | if (SemaBuiltinConstantArg(TheCall, 0, Result)) |
Chris Lattner | 21fb98e | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 177 | return ExprError(); |
| 178 | break; |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 179 | } |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 180 | case Builtin::BI__builtin_shufflevector: |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 181 | return SemaBuiltinShuffleVector(TheCall); |
| 182 | // TheCall will be freed by the smart pointer here, but that's fine, since |
| 183 | // SemaBuiltinShuffleVector guts it, but then doesn't release it. |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 184 | case Builtin::BI__builtin_prefetch: |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 185 | if (SemaBuiltinPrefetch(TheCall)) |
| 186 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 187 | break; |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 188 | case Builtin::BI__builtin_object_size: |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 189 | if (SemaBuiltinObjectSize(TheCall)) |
| 190 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 191 | break; |
Eli Friedman | d875fed | 2009-05-03 04:46:36 +0000 | [diff] [blame] | 192 | case Builtin::BI__builtin_longjmp: |
| 193 | if (SemaBuiltinLongjmp(TheCall)) |
| 194 | return ExprError(); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 195 | break; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 196 | case Builtin::BI__sync_fetch_and_add: |
| 197 | case Builtin::BI__sync_fetch_and_sub: |
| 198 | case Builtin::BI__sync_fetch_and_or: |
| 199 | case Builtin::BI__sync_fetch_and_and: |
| 200 | case Builtin::BI__sync_fetch_and_xor: |
| 201 | case Builtin::BI__sync_add_and_fetch: |
| 202 | case Builtin::BI__sync_sub_and_fetch: |
| 203 | case Builtin::BI__sync_and_and_fetch: |
| 204 | case Builtin::BI__sync_or_and_fetch: |
| 205 | case Builtin::BI__sync_xor_and_fetch: |
| 206 | case Builtin::BI__sync_val_compare_and_swap: |
| 207 | case Builtin::BI__sync_bool_compare_and_swap: |
| 208 | case Builtin::BI__sync_lock_test_and_set: |
| 209 | case Builtin::BI__sync_lock_release: |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 210 | return SemaBuiltinAtomicOverloaded(move(TheCallResult)); |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | // Since the target specific builtins for each arch overlap, only check those |
| 214 | // of the arch we are compiling for. |
| 215 | if (BuiltinID >= Builtin::FirstTSBuiltin) { |
| 216 | switch (Context.Target.getTriple().getArch()) { |
| 217 | case llvm::Triple::arm: |
| 218 | case llvm::Triple::thumb: |
| 219 | if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall)) |
| 220 | return ExprError(); |
| 221 | break; |
| 222 | case llvm::Triple::x86: |
| 223 | case llvm::Triple::x86_64: |
| 224 | if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall)) |
| 225 | return ExprError(); |
| 226 | break; |
| 227 | default: |
| 228 | break; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return move(TheCallResult); |
| 233 | } |
| 234 | |
| 235 | bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { |
| 236 | switch (BuiltinID) { |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 237 | case X86::BI__builtin_ia32_palignr128: |
| 238 | case X86::BI__builtin_ia32_palignr: { |
| 239 | llvm::APSInt Result; |
| 240 | if (SemaBuiltinConstantArg(TheCall, 2, Result)) |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 241 | return true; |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 242 | break; |
| 243 | } |
Anders Carlsson | 71993dd | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 244 | } |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 245 | return false; |
| 246 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 247 | |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 248 | // Get the valid immediate range for the specified NEON type code. |
| 249 | static unsigned RFT(unsigned t, bool shift = false) { |
| 250 | bool quad = t & 0x10; |
| 251 | |
| 252 | switch (t & 0x7) { |
| 253 | case 0: // i8 |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 254 | return shift ? 7 : (8 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 255 | case 1: // i16 |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 256 | return shift ? 15 : (4 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 257 | case 2: // i32 |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 258 | return shift ? 31 : (2 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 259 | case 3: // i64 |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 260 | return shift ? 63 : (1 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 261 | case 4: // f32 |
| 262 | assert(!shift && "cannot shift float types!"); |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 263 | return (2 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 264 | case 5: // poly8 |
| 265 | assert(!shift && "cannot shift polynomial types!"); |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 266 | return (8 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 267 | case 6: // poly16 |
| 268 | assert(!shift && "cannot shift polynomial types!"); |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 269 | return (4 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 270 | case 7: // float16 |
| 271 | assert(!shift && "cannot shift float types!"); |
Nate Begeman | d69ec16 | 2010-06-17 02:26:59 +0000 | [diff] [blame] | 272 | return (4 << (int)quad) - 1; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 273 | } |
| 274 | return 0; |
| 275 | } |
| 276 | |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 277 | bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { |
Nate Begeman | 1c2a88c | 2010-06-09 01:10:23 +0000 | [diff] [blame] | 278 | llvm::APSInt Result; |
| 279 | |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 280 | unsigned mask = 0; |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 281 | unsigned TV = 0; |
Nate Begeman | 1c2a88c | 2010-06-09 01:10:23 +0000 | [diff] [blame] | 282 | switch (BuiltinID) { |
Nate Begeman | a23326b | 2010-06-17 04:17:01 +0000 | [diff] [blame] | 283 | #define GET_NEON_OVERLOAD_CHECK |
| 284 | #include "clang/Basic/arm_neon.inc" |
| 285 | #undef GET_NEON_OVERLOAD_CHECK |
Nate Begeman | 1c2a88c | 2010-06-09 01:10:23 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 288 | // For NEON intrinsics which are overloaded on vector element type, validate |
| 289 | // the immediate which specifies which variant to emit. |
| 290 | if (mask) { |
| 291 | unsigned ArgNo = TheCall->getNumArgs()-1; |
| 292 | if (SemaBuiltinConstantArg(TheCall, ArgNo, Result)) |
| 293 | return true; |
| 294 | |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 295 | TV = Result.getLimitedValue(32); |
| 296 | if ((TV > 31) || (mask & (1 << TV)) == 0) |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 297 | return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code) |
| 298 | << TheCall->getArg(ArgNo)->getSourceRange(); |
| 299 | } |
Nate Begeman | 1c2a88c | 2010-06-09 01:10:23 +0000 | [diff] [blame] | 300 | |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 301 | // For NEON intrinsics which take an immediate value as part of the |
| 302 | // instruction, range check them here. |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 303 | unsigned i = 0, l = 0, u = 0; |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 304 | switch (BuiltinID) { |
| 305 | default: return false; |
Nate Begeman | bb37f50 | 2010-07-29 22:48:34 +0000 | [diff] [blame] | 306 | case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break; |
| 307 | case ARM::BI__builtin_arm_usat: i = 1; u = 31; break; |
Nate Begeman | 99c40bb | 2010-08-03 21:32:34 +0000 | [diff] [blame] | 308 | case ARM::BI__builtin_arm_vcvtr_f: |
| 309 | case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break; |
Nate Begeman | a23326b | 2010-06-17 04:17:01 +0000 | [diff] [blame] | 310 | #define GET_NEON_IMMEDIATE_CHECK |
| 311 | #include "clang/Basic/arm_neon.inc" |
| 312 | #undef GET_NEON_IMMEDIATE_CHECK |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 313 | }; |
| 314 | |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 315 | // Check that the immediate argument is actually a constant. |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 316 | if (SemaBuiltinConstantArg(TheCall, i, Result)) |
| 317 | return true; |
| 318 | |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 319 | // Range check against the upper/lower values for this isntruction. |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 320 | unsigned Val = Result.getZExtValue(); |
Nate Begeman | 61eecf5 | 2010-06-14 05:21:25 +0000 | [diff] [blame] | 321 | if (Val < l || Val > (u + l)) |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 322 | return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range) |
Benjamin Kramer | 476d8b8 | 2010-08-11 14:47:12 +0000 | [diff] [blame] | 323 | << l << u+l << TheCall->getArg(i)->getSourceRange(); |
Nate Begeman | 0d15c53 | 2010-06-13 04:47:52 +0000 | [diff] [blame] | 324 | |
Nate Begeman | 99c40bb | 2010-08-03 21:32:34 +0000 | [diff] [blame] | 325 | // FIXME: VFP Intrinsics should error if VFP not present. |
Nate Begeman | 26a3142 | 2010-06-08 02:47:44 +0000 | [diff] [blame] | 326 | return false; |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 327 | } |
Daniel Dunbar | de45428 | 2008-10-02 18:44:07 +0000 | [diff] [blame] | 328 | |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 329 | /// CheckFunctionCall - Check a direct function call for various correctness |
| 330 | /// and safety properties not strictly enforced by the C type system. |
| 331 | bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) { |
| 332 | // Get the IdentifierInfo* for the called function. |
| 333 | IdentifierInfo *FnInfo = FDecl->getIdentifier(); |
| 334 | |
| 335 | // None of the checks below are needed for functions that don't have |
| 336 | // simple names (e.g., C++ conversion functions). |
| 337 | if (!FnInfo) |
| 338 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 | |
Daniel Dunbar | de45428 | 2008-10-02 18:44:07 +0000 | [diff] [blame] | 340 | // FIXME: This mechanism should be abstracted to be less fragile and |
| 341 | // more efficient. For example, just map function ids to custom |
| 342 | // handlers. |
| 343 | |
Ted Kremenek | c82faca | 2010-09-09 04:33:05 +0000 | [diff] [blame] | 344 | // Printf and scanf checking. |
| 345 | for (specific_attr_iterator<FormatAttr> |
| 346 | i = FDecl->specific_attr_begin<FormatAttr>(), |
| 347 | e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) { |
| 348 | |
| 349 | const FormatAttr *Format = *i; |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 350 | const bool b = Format->getType() == "scanf"; |
| 351 | if (b || CheckablePrintfAttr(Format, TheCall)) { |
Ted Kremenek | 3d692df | 2009-02-27 17:58:43 +0000 | [diff] [blame] | 352 | bool HasVAListArg = Format->getFirstArg() == 0; |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 353 | CheckPrintfScanfArguments(TheCall, HasVAListArg, |
| 354 | Format->getFormatIdx() - 1, |
| 355 | HasVAListArg ? 0 : Format->getFirstArg() - 1, |
| 356 | !b); |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 357 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 358 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 359 | |
Ted Kremenek | c82faca | 2010-09-09 04:33:05 +0000 | [diff] [blame] | 360 | for (specific_attr_iterator<NonNullAttr> |
| 361 | i = FDecl->specific_attr_begin<NonNullAttr>(), |
| 362 | e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) { |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 363 | CheckNonNullArguments(*i, TheCall); |
Ted Kremenek | c82faca | 2010-09-09 04:33:05 +0000 | [diff] [blame] | 364 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 365 | |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 366 | return false; |
Anders Carlsson | 71993dd | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 369 | bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) { |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 370 | // Printf checking. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 371 | const FormatAttr *Format = NDecl->getAttr<FormatAttr>(); |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 372 | if (!Format) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 373 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 374 | |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 375 | const VarDecl *V = dyn_cast<VarDecl>(NDecl); |
| 376 | if (!V) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 377 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 378 | |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 379 | QualType Ty = V->getType(); |
| 380 | if (!Ty->isBlockPointerType()) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 381 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 382 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 383 | const bool b = Format->getType() == "scanf"; |
| 384 | if (!b && !CheckablePrintfAttr(Format, TheCall)) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 385 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 386 | |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 387 | bool HasVAListArg = Format->getFirstArg() == 0; |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 388 | CheckPrintfScanfArguments(TheCall, HasVAListArg, Format->getFormatIdx() - 1, |
| 389 | HasVAListArg ? 0 : Format->getFirstArg() - 1, !b); |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 390 | |
| 391 | return false; |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 394 | /// SemaBuiltinAtomicOverloaded - We have a call to a function like |
| 395 | /// __sync_fetch_and_add, which is an overloaded function based on the pointer |
| 396 | /// type of its first argument. The main ActOnCallExpr routines have already |
| 397 | /// promoted the types of arguments because all of these calls are prototyped as |
| 398 | /// void(...). |
| 399 | /// |
| 400 | /// This function goes through and does final semantic checking for these |
| 401 | /// builtins, |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 402 | ExprResult |
| 403 | Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) { |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 404 | CallExpr *TheCall = (CallExpr *)TheCallResult.get(); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 405 | DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); |
| 406 | FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); |
| 407 | |
| 408 | // Ensure that we have at least one argument to do type inference from. |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 409 | if (TheCall->getNumArgs() < 1) { |
| 410 | Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least) |
| 411 | << 0 << 1 << TheCall->getNumArgs() |
| 412 | << TheCall->getCallee()->getSourceRange(); |
| 413 | return ExprError(); |
| 414 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 416 | // Inspect the first argument of the atomic builtin. This should always be |
| 417 | // a pointer type, whose element is an integral scalar or pointer type. |
| 418 | // Because it is a pointer type, we don't have to worry about any implicit |
| 419 | // casts here. |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 420 | // FIXME: We don't allow floating point scalars as input. |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 421 | Expr *FirstArg = TheCall->getArg(0); |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 422 | if (!FirstArg->getType()->isPointerType()) { |
| 423 | Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer) |
| 424 | << FirstArg->getType() << FirstArg->getSourceRange(); |
| 425 | return ExprError(); |
| 426 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 427 | |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 428 | QualType ValType = |
| 429 | FirstArg->getType()->getAs<PointerType>()->getPointeeType(); |
Chris Lattner | dd5fa7a | 2010-09-17 21:12:38 +0000 | [diff] [blame] | 430 | if (!ValType->isIntegerType() && !ValType->isAnyPointerType() && |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 431 | !ValType->isBlockPointerType()) { |
| 432 | Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr) |
| 433 | << FirstArg->getType() << FirstArg->getSourceRange(); |
| 434 | return ExprError(); |
| 435 | } |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 436 | |
Chandler Carruth | 8d13d22 | 2010-07-18 20:54:12 +0000 | [diff] [blame] | 437 | // The majority of builtins return a value, but a few have special return |
| 438 | // types, so allow them to override appropriately below. |
| 439 | QualType ResultType = ValType; |
| 440 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 441 | // We need to figure out which concrete builtin this maps onto. For example, |
| 442 | // __sync_fetch_and_add with a 2 byte object turns into |
| 443 | // __sync_fetch_and_add_2. |
| 444 | #define BUILTIN_ROW(x) \ |
| 445 | { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \ |
| 446 | Builtin::BI##x##_8, Builtin::BI##x##_16 } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 448 | static const unsigned BuiltinIndices[][5] = { |
| 449 | BUILTIN_ROW(__sync_fetch_and_add), |
| 450 | BUILTIN_ROW(__sync_fetch_and_sub), |
| 451 | BUILTIN_ROW(__sync_fetch_and_or), |
| 452 | BUILTIN_ROW(__sync_fetch_and_and), |
| 453 | BUILTIN_ROW(__sync_fetch_and_xor), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 455 | BUILTIN_ROW(__sync_add_and_fetch), |
| 456 | BUILTIN_ROW(__sync_sub_and_fetch), |
| 457 | BUILTIN_ROW(__sync_and_and_fetch), |
| 458 | BUILTIN_ROW(__sync_or_and_fetch), |
| 459 | BUILTIN_ROW(__sync_xor_and_fetch), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 461 | BUILTIN_ROW(__sync_val_compare_and_swap), |
| 462 | BUILTIN_ROW(__sync_bool_compare_and_swap), |
| 463 | BUILTIN_ROW(__sync_lock_test_and_set), |
| 464 | BUILTIN_ROW(__sync_lock_release) |
| 465 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 466 | #undef BUILTIN_ROW |
| 467 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 468 | // Determine the index of the size. |
| 469 | unsigned SizeIndex; |
Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 470 | switch (Context.getTypeSizeInChars(ValType).getQuantity()) { |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 471 | case 1: SizeIndex = 0; break; |
| 472 | case 2: SizeIndex = 1; break; |
| 473 | case 4: SizeIndex = 2; break; |
| 474 | case 8: SizeIndex = 3; break; |
| 475 | case 16: SizeIndex = 4; break; |
| 476 | default: |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 477 | Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size) |
| 478 | << FirstArg->getType() << FirstArg->getSourceRange(); |
| 479 | return ExprError(); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 480 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 481 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 482 | // Each of these builtins has one pointer argument, followed by some number of |
| 483 | // values (0, 1 or 2) followed by a potentially empty varags list of stuff |
| 484 | // that we ignore. Find out which row of BuiltinIndices to read from as well |
| 485 | // as the number of fixed args. |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 486 | unsigned BuiltinID = FDecl->getBuiltinID(); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 487 | unsigned BuiltinIndex, NumFixed = 1; |
| 488 | switch (BuiltinID) { |
| 489 | default: assert(0 && "Unknown overloaded atomic builtin!"); |
| 490 | case Builtin::BI__sync_fetch_and_add: BuiltinIndex = 0; break; |
| 491 | case Builtin::BI__sync_fetch_and_sub: BuiltinIndex = 1; break; |
| 492 | case Builtin::BI__sync_fetch_and_or: BuiltinIndex = 2; break; |
| 493 | case Builtin::BI__sync_fetch_and_and: BuiltinIndex = 3; break; |
| 494 | case Builtin::BI__sync_fetch_and_xor: BuiltinIndex = 4; break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 495 | |
Daniel Dunbar | 7eff7c4 | 2010-03-25 17:13:09 +0000 | [diff] [blame] | 496 | case Builtin::BI__sync_add_and_fetch: BuiltinIndex = 5; break; |
| 497 | case Builtin::BI__sync_sub_and_fetch: BuiltinIndex = 6; break; |
| 498 | case Builtin::BI__sync_and_and_fetch: BuiltinIndex = 7; break; |
| 499 | case Builtin::BI__sync_or_and_fetch: BuiltinIndex = 8; break; |
| 500 | case Builtin::BI__sync_xor_and_fetch: BuiltinIndex = 9; break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 501 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 502 | case Builtin::BI__sync_val_compare_and_swap: |
Daniel Dunbar | 7eff7c4 | 2010-03-25 17:13:09 +0000 | [diff] [blame] | 503 | BuiltinIndex = 10; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 504 | NumFixed = 2; |
| 505 | break; |
| 506 | case Builtin::BI__sync_bool_compare_and_swap: |
Daniel Dunbar | 7eff7c4 | 2010-03-25 17:13:09 +0000 | [diff] [blame] | 507 | BuiltinIndex = 11; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 508 | NumFixed = 2; |
Chandler Carruth | 8d13d22 | 2010-07-18 20:54:12 +0000 | [diff] [blame] | 509 | ResultType = Context.BoolTy; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 510 | break; |
Daniel Dunbar | 7eff7c4 | 2010-03-25 17:13:09 +0000 | [diff] [blame] | 511 | case Builtin::BI__sync_lock_test_and_set: BuiltinIndex = 12; break; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 512 | case Builtin::BI__sync_lock_release: |
Daniel Dunbar | 7eff7c4 | 2010-03-25 17:13:09 +0000 | [diff] [blame] | 513 | BuiltinIndex = 13; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 514 | NumFixed = 0; |
Chandler Carruth | 8d13d22 | 2010-07-18 20:54:12 +0000 | [diff] [blame] | 515 | ResultType = Context.VoidTy; |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 516 | break; |
| 517 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 518 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 519 | // Now that we know how many fixed arguments we expect, first check that we |
| 520 | // have at least that many. |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 521 | if (TheCall->getNumArgs() < 1+NumFixed) { |
| 522 | Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least) |
| 523 | << 0 << 1+NumFixed << TheCall->getNumArgs() |
| 524 | << TheCall->getCallee()->getSourceRange(); |
| 525 | return ExprError(); |
| 526 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 527 | |
Chris Lattner | e7ac0a9 | 2009-05-08 15:36:58 +0000 | [diff] [blame] | 528 | // Get the decl for the concrete builtin from this, we can tell what the |
| 529 | // concrete integer type we should convert to is. |
| 530 | unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex]; |
| 531 | const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID); |
| 532 | IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | FunctionDecl *NewBuiltinDecl = |
Chris Lattner | e7ac0a9 | 2009-05-08 15:36:58 +0000 | [diff] [blame] | 534 | cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID, |
| 535 | TUScope, false, DRE->getLocStart())); |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 536 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 537 | // The first argument --- the pointer --- has a fixed type; we |
| 538 | // deduce the types of the rest of the arguments accordingly. Walk |
| 539 | // the remaining arguments, converting them to the deduced value type. |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 540 | for (unsigned i = 0; i != NumFixed; ++i) { |
| 541 | Expr *Arg = TheCall->getArg(i+1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 542 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 543 | // If the argument is an implicit cast, then there was a promotion due to |
| 544 | // "...", just remove it now. |
| 545 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) { |
| 546 | Arg = ICE->getSubExpr(); |
| 547 | ICE->setSubExpr(0); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 548 | TheCall->setArg(i+1, Arg); |
| 549 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 550 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 551 | // GCC does an implicit conversion to the pointer or integer ValType. This |
| 552 | // can fail in some cases (1i -> int**), check for this error case now. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 553 | CastKind Kind = CK_Unknown; |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 554 | CXXCastPath BasePath; |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 555 | if (CheckCastTypes(Arg->getSourceRange(), ValType, Arg, Kind, BasePath)) |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 556 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 557 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 558 | // Okay, we have something that *can* be converted to the right type. Check |
| 559 | // to see if there is a potentially weird extension going on here. This can |
| 560 | // happen when you do an atomic operation on something like an char* and |
| 561 | // pass in 42. The 42 gets converted to char. This is even more strange |
| 562 | // for things like 45.123 -> char, etc. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 563 | // FIXME: Do this check. |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 564 | ImpCastExprToType(Arg, ValType, Kind, VK_RValue, &BasePath); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 565 | TheCall->setArg(i+1, Arg); |
| 566 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 567 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 568 | // Switch the DeclRefExpr to refer to the new decl. |
| 569 | DRE->setDecl(NewBuiltinDecl); |
| 570 | DRE->setType(NewBuiltinDecl->getType()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 571 | |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 572 | // Set the callee in the CallExpr. |
| 573 | // FIXME: This leaks the original parens and implicit casts. |
| 574 | Expr *PromotedCall = DRE; |
| 575 | UsualUnaryConversions(PromotedCall); |
| 576 | TheCall->setCallee(PromotedCall); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | |
Chandler Carruth | db4325b | 2010-07-18 07:23:17 +0000 | [diff] [blame] | 578 | // Change the result type of the call to match the original value type. This |
| 579 | // is arbitrary, but the codegen for these builtins ins design to handle it |
| 580 | // gracefully. |
Chandler Carruth | 8d13d22 | 2010-07-18 20:54:12 +0000 | [diff] [blame] | 581 | TheCall->setType(ResultType); |
Chandler Carruth | d201457 | 2010-07-09 18:59:35 +0000 | [diff] [blame] | 582 | |
| 583 | return move(TheCallResult); |
Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | |
Chris Lattner | 6903981 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 587 | /// CheckObjCString - Checks that the argument to the builtin |
Anders Carlsson | 71993dd | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 588 | /// CFString constructor is correct |
Steve Naroff | fd94262 | 2009-04-13 20:26:29 +0000 | [diff] [blame] | 589 | /// Note: It might also make sense to do the UTF-16 conversion here (would |
| 590 | /// simplify the backend). |
Chris Lattner | 6903981 | 2009-02-18 06:01:06 +0000 | [diff] [blame] | 591 | bool Sema::CheckObjCString(Expr *Arg) { |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 592 | Arg = Arg->IgnoreParenCasts(); |
Anders Carlsson | 71993dd | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 593 | StringLiteral *Literal = dyn_cast<StringLiteral>(Arg); |
| 594 | |
| 595 | if (!Literal || Literal->isWide()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 596 | Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant) |
| 597 | << Arg->getSourceRange(); |
Anders Carlsson | 9cdc4d3 | 2007-08-17 15:44:17 +0000 | [diff] [blame] | 598 | return true; |
Anders Carlsson | 71993dd | 2007-08-17 05:31:46 +0000 | [diff] [blame] | 599 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 600 | |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 601 | size_t NulPos = Literal->getString().find('\0'); |
| 602 | if (NulPos != llvm::StringRef::npos) { |
| 603 | Diag(getLocationOfStringLiteralByte(Literal, NulPos), |
| 604 | diag::warn_cfstring_literal_contains_nul_character) |
| 605 | << Arg->getSourceRange(); |
Daniel Dunbar | f015b03 | 2009-09-22 10:03:52 +0000 | [diff] [blame] | 606 | } |
Fariborz Jahanian | 7da7102 | 2010-09-07 19:38:13 +0000 | [diff] [blame] | 607 | if (Literal->containsNonAsciiOrNull()) { |
| 608 | llvm::StringRef String = Literal->getString(); |
| 609 | unsigned NumBytes = String.size(); |
| 610 | llvm::SmallVector<UTF16, 128> ToBuf(NumBytes); |
| 611 | const UTF8 *FromPtr = (UTF8 *)String.data(); |
| 612 | UTF16 *ToPtr = &ToBuf[0]; |
| 613 | |
| 614 | ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, |
| 615 | &ToPtr, ToPtr + NumBytes, |
| 616 | strictConversion); |
| 617 | // Check for conversion failure. |
| 618 | if (Result != conversionOK) |
| 619 | Diag(Arg->getLocStart(), |
| 620 | diag::warn_cfstring_truncated) << Arg->getSourceRange(); |
| 621 | } |
Anders Carlsson | 9cdc4d3 | 2007-08-17 15:44:17 +0000 | [diff] [blame] | 622 | return false; |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Chris Lattner | c27c665 | 2007-12-20 00:05:45 +0000 | [diff] [blame] | 625 | /// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity. |
| 626 | /// Emit an error and return true on failure, return false on success. |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 627 | bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) { |
| 628 | Expr *Fn = TheCall->getCallee(); |
| 629 | if (TheCall->getNumArgs() > 2) { |
Chris Lattner | 2c21a07 | 2008-11-21 18:44:24 +0000 | [diff] [blame] | 630 | Diag(TheCall->getArg(2)->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 631 | diag::err_typecheck_call_too_many_args) |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 632 | << 0 /*function call*/ << 2 << TheCall->getNumArgs() |
| 633 | << Fn->getSourceRange() |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 634 | << SourceRange(TheCall->getArg(2)->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 635 | (*(TheCall->arg_end()-1))->getLocEnd()); |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 636 | return true; |
| 637 | } |
Eli Friedman | 56f20ae | 2008-12-15 22:05:35 +0000 | [diff] [blame] | 638 | |
| 639 | if (TheCall->getNumArgs() < 2) { |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 640 | return Diag(TheCall->getLocEnd(), |
| 641 | diag::err_typecheck_call_too_few_args_at_least) |
| 642 | << 0 /*function call*/ << 2 << TheCall->getNumArgs(); |
Eli Friedman | 56f20ae | 2008-12-15 22:05:35 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Chris Lattner | c27c665 | 2007-12-20 00:05:45 +0000 | [diff] [blame] | 645 | // Determine whether the current function is variadic or not. |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 646 | BlockScopeInfo *CurBlock = getCurBlock(); |
Chris Lattner | c27c665 | 2007-12-20 00:05:45 +0000 | [diff] [blame] | 647 | bool isVariadic; |
Steve Naroff | cd9c514 | 2009-04-15 19:33:47 +0000 | [diff] [blame] | 648 | if (CurBlock) |
John McCall | c71a491 | 2010-06-04 19:02:56 +0000 | [diff] [blame] | 649 | isVariadic = CurBlock->TheDecl->isVariadic(); |
Ted Kremenek | 9498d38 | 2010-04-29 16:49:01 +0000 | [diff] [blame] | 650 | else if (FunctionDecl *FD = getCurFunctionDecl()) |
| 651 | isVariadic = FD->isVariadic(); |
| 652 | else |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 653 | isVariadic = getCurMethodDecl()->isVariadic(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 654 | |
Chris Lattner | c27c665 | 2007-12-20 00:05:45 +0000 | [diff] [blame] | 655 | if (!isVariadic) { |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 656 | Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function); |
| 657 | return true; |
| 658 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 659 | |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 660 | // Verify that the second argument to the builtin is the last argument of the |
| 661 | // current function or method. |
| 662 | bool SecondArgIsLastNamedArgument = false; |
Anders Carlsson | e2c1410 | 2008-02-13 01:22:59 +0000 | [diff] [blame] | 663 | const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 664 | |
Anders Carlsson | 88cf226 | 2008-02-11 04:20:54 +0000 | [diff] [blame] | 665 | if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) { |
| 666 | if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) { |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 667 | // FIXME: This isn't correct for methods (results in bogus warning). |
| 668 | // Get the last formal in the current function. |
Anders Carlsson | 88cf226 | 2008-02-11 04:20:54 +0000 | [diff] [blame] | 669 | const ParmVarDecl *LastArg; |
Steve Naroff | cd9c514 | 2009-04-15 19:33:47 +0000 | [diff] [blame] | 670 | if (CurBlock) |
| 671 | LastArg = *(CurBlock->TheDecl->param_end()-1); |
| 672 | else if (FunctionDecl *FD = getCurFunctionDecl()) |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 673 | LastArg = *(FD->param_end()-1); |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 674 | else |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 675 | LastArg = *(getCurMethodDecl()->param_end()-1); |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 676 | SecondArgIsLastNamedArgument = PV == LastArg; |
| 677 | } |
| 678 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 680 | if (!SecondArgIsLastNamedArgument) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 681 | Diag(TheCall->getArg(1)->getLocStart(), |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 682 | diag::warn_second_parameter_of_va_start_not_last_named_argument); |
| 683 | return false; |
Eli Friedman | 6cfda23 | 2008-05-20 08:23:37 +0000 | [diff] [blame] | 684 | } |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 685 | |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 686 | /// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and |
| 687 | /// friends. This is declared to take (...), so we have to check everything. |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 688 | bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) { |
| 689 | if (TheCall->getNumArgs() < 2) |
Chris Lattner | 2c21a07 | 2008-11-21 18:44:24 +0000 | [diff] [blame] | 690 | return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args) |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 691 | << 0 << 2 << TheCall->getNumArgs()/*function call*/; |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 692 | if (TheCall->getNumArgs() > 2) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 693 | return Diag(TheCall->getArg(2)->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 694 | diag::err_typecheck_call_too_many_args) |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 695 | << 0 /*function call*/ << 2 << TheCall->getNumArgs() |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 696 | << SourceRange(TheCall->getArg(2)->getLocStart(), |
| 697 | (*(TheCall->arg_end()-1))->getLocEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 698 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 699 | Expr *OrigArg0 = TheCall->getArg(0); |
| 700 | Expr *OrigArg1 = TheCall->getArg(1); |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 701 | |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 702 | // Do standard promotions between the two arguments, returning their common |
| 703 | // type. |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 704 | QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false); |
Daniel Dunbar | 403bc2b | 2009-02-19 19:28:43 +0000 | [diff] [blame] | 705 | |
| 706 | // Make sure any conversions are pushed back into the call; this is |
| 707 | // type safe since unordered compare builtins are declared as "_Bool |
| 708 | // foo(...)". |
| 709 | TheCall->setArg(0, OrigArg0); |
| 710 | TheCall->setArg(1, OrigArg1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 711 | |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 712 | if (OrigArg0->isTypeDependent() || OrigArg1->isTypeDependent()) |
| 713 | return false; |
| 714 | |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 715 | // If the common type isn't a real floating type, then the arguments were |
| 716 | // invalid for this operation. |
| 717 | if (!Res->isRealFloatingType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 718 | return Diag(OrigArg0->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 719 | diag::err_typecheck_call_invalid_ordered_compare) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 720 | << OrigArg0->getType() << OrigArg1->getType() |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 721 | << SourceRange(OrigArg0->getLocStart(), OrigArg1->getLocEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 722 | |
Chris Lattner | 1b9a079 | 2007-12-20 00:26:33 +0000 | [diff] [blame] | 723 | return false; |
| 724 | } |
| 725 | |
Benjamin Kramer | e771a7a | 2010-02-15 22:42:31 +0000 | [diff] [blame] | 726 | /// SemaBuiltinSemaBuiltinFPClassification - Handle functions like |
| 727 | /// __builtin_isnan and friends. This is declared to take (...), so we have |
Benjamin Kramer | 3b1e26b | 2010-02-16 10:07:31 +0000 | [diff] [blame] | 728 | /// to check everything. We expect the last argument to be a floating point |
| 729 | /// value. |
| 730 | bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) { |
| 731 | if (TheCall->getNumArgs() < NumArgs) |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 732 | return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args) |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 733 | << 0 << NumArgs << TheCall->getNumArgs()/*function call*/; |
Benjamin Kramer | 3b1e26b | 2010-02-16 10:07:31 +0000 | [diff] [blame] | 734 | if (TheCall->getNumArgs() > NumArgs) |
| 735 | return Diag(TheCall->getArg(NumArgs)->getLocStart(), |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 736 | diag::err_typecheck_call_too_many_args) |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 737 | << 0 /*function call*/ << NumArgs << TheCall->getNumArgs() |
Benjamin Kramer | 3b1e26b | 2010-02-16 10:07:31 +0000 | [diff] [blame] | 738 | << SourceRange(TheCall->getArg(NumArgs)->getLocStart(), |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 739 | (*(TheCall->arg_end()-1))->getLocEnd()); |
| 740 | |
Benjamin Kramer | 3b1e26b | 2010-02-16 10:07:31 +0000 | [diff] [blame] | 741 | Expr *OrigArg = TheCall->getArg(NumArgs-1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 742 | |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 743 | if (OrigArg->isTypeDependent()) |
| 744 | return false; |
| 745 | |
Chris Lattner | 81368fb | 2010-05-06 05:50:07 +0000 | [diff] [blame] | 746 | // This operation requires a non-_Complex floating-point number. |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 747 | if (!OrigArg->getType()->isRealFloatingType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 748 | return Diag(OrigArg->getLocStart(), |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 749 | diag::err_typecheck_call_invalid_unary_fp) |
| 750 | << OrigArg->getType() << OrigArg->getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 751 | |
Chris Lattner | 81368fb | 2010-05-06 05:50:07 +0000 | [diff] [blame] | 752 | // If this is an implicit conversion from float -> double, remove it. |
| 753 | if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) { |
| 754 | Expr *CastArg = Cast->getSubExpr(); |
| 755 | if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) { |
| 756 | assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) && |
| 757 | "promotion from float to double is the only expected cast here"); |
| 758 | Cast->setSubExpr(0); |
Chris Lattner | 81368fb | 2010-05-06 05:50:07 +0000 | [diff] [blame] | 759 | TheCall->setArg(NumArgs-1, CastArg); |
| 760 | OrigArg = CastArg; |
| 761 | } |
| 762 | } |
| 763 | |
Eli Friedman | 9ac6f62 | 2009-08-31 20:06:00 +0000 | [diff] [blame] | 764 | return false; |
| 765 | } |
| 766 | |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 767 | /// SemaBuiltinShuffleVector - Handle __builtin_shufflevector. |
| 768 | // This is declared to take (...), so we have to check everything. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 769 | ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) { |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 770 | if (TheCall->getNumArgs() < 2) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 771 | return ExprError(Diag(TheCall->getLocEnd(), |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 772 | diag::err_typecheck_call_too_few_args_at_least) |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 773 | << 0 /*function call*/ << 2 << TheCall->getNumArgs() |
Eric Christopher | d77b9a2 | 2010-04-16 04:48:22 +0000 | [diff] [blame] | 774 | << TheCall->getSourceRange()); |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 775 | |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 776 | // Determine which of the following types of shufflevector we're checking: |
| 777 | // 1) unary, vector mask: (lhs, mask) |
| 778 | // 2) binary, vector mask: (lhs, rhs, mask) |
| 779 | // 3) binary, scalar mask: (lhs, rhs, index, ..., index) |
| 780 | QualType resType = TheCall->getArg(0)->getType(); |
| 781 | unsigned numElements = 0; |
| 782 | |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 783 | if (!TheCall->getArg(0)->isTypeDependent() && |
| 784 | !TheCall->getArg(1)->isTypeDependent()) { |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 785 | QualType LHSType = TheCall->getArg(0)->getType(); |
| 786 | QualType RHSType = TheCall->getArg(1)->getType(); |
| 787 | |
| 788 | if (!LHSType->isVectorType() || !RHSType->isVectorType()) { |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 789 | Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 790 | << SourceRange(TheCall->getArg(0)->getLocStart(), |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 791 | TheCall->getArg(1)->getLocEnd()); |
| 792 | return ExprError(); |
| 793 | } |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 794 | |
| 795 | numElements = LHSType->getAs<VectorType>()->getNumElements(); |
| 796 | unsigned numResElements = TheCall->getNumArgs() - 2; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 797 | |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 798 | // Check to see if we have a call with 2 vector arguments, the unary shuffle |
| 799 | // with mask. If so, verify that RHS is an integer vector type with the |
| 800 | // same number of elts as lhs. |
| 801 | if (TheCall->getNumArgs() == 2) { |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 802 | if (!RHSType->hasIntegerRepresentation() || |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 803 | RHSType->getAs<VectorType>()->getNumElements() != numElements) |
| 804 | Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector) |
| 805 | << SourceRange(TheCall->getArg(1)->getLocStart(), |
| 806 | TheCall->getArg(1)->getLocEnd()); |
| 807 | numResElements = numElements; |
| 808 | } |
| 809 | else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 810 | Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 811 | << SourceRange(TheCall->getArg(0)->getLocStart(), |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 812 | TheCall->getArg(1)->getLocEnd()); |
| 813 | return ExprError(); |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 814 | } else if (numElements != numResElements) { |
| 815 | QualType eltType = LHSType->getAs<VectorType>()->getElementType(); |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 816 | resType = Context.getVectorType(eltType, numResElements, |
| 817 | VectorType::NotAltiVec); |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 818 | } |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | for (unsigned i = 2; i < TheCall->getNumArgs(); i++) { |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 822 | if (TheCall->getArg(i)->isTypeDependent() || |
| 823 | TheCall->getArg(i)->isValueDependent()) |
| 824 | continue; |
| 825 | |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 826 | llvm::APSInt Result(32); |
| 827 | if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context)) |
| 828 | return ExprError(Diag(TheCall->getLocStart(), |
| 829 | diag::err_shufflevector_nonconstant_argument) |
| 830 | << TheCall->getArg(i)->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 831 | |
Chris Lattner | d1a0b6d | 2008-08-10 02:05:13 +0000 | [diff] [blame] | 832 | if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 833 | return ExprError(Diag(TheCall->getLocStart(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 834 | diag::err_shufflevector_argument_too_large) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 835 | << TheCall->getArg(i)->getSourceRange()); |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | llvm::SmallVector<Expr*, 32> exprs; |
| 839 | |
Chris Lattner | d1a0b6d | 2008-08-10 02:05:13 +0000 | [diff] [blame] | 840 | for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) { |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 841 | exprs.push_back(TheCall->getArg(i)); |
| 842 | TheCall->setArg(i, 0); |
| 843 | } |
| 844 | |
Nate Begeman | a88dc30 | 2009-08-12 02:10:25 +0000 | [diff] [blame] | 845 | return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(), |
Nate Begeman | 37b6a57 | 2010-06-08 00:16:34 +0000 | [diff] [blame] | 846 | exprs.size(), resType, |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 847 | TheCall->getCallee()->getLocStart(), |
| 848 | TheCall->getRParenLoc())); |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 849 | } |
Chris Lattner | 30ce344 | 2007-12-19 23:59:04 +0000 | [diff] [blame] | 850 | |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 851 | /// SemaBuiltinPrefetch - Handle __builtin_prefetch. |
| 852 | // This is declared to take (const void*, ...) and can take two |
| 853 | // optional constant int args. |
| 854 | bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 855 | unsigned NumArgs = TheCall->getNumArgs(); |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 856 | |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 857 | if (NumArgs > 3) |
Eric Christopher | ccfa963 | 2010-04-16 04:56:46 +0000 | [diff] [blame] | 858 | return Diag(TheCall->getLocEnd(), |
| 859 | diag::err_typecheck_call_too_many_args_at_most) |
| 860 | << 0 /*function call*/ << 3 << NumArgs |
| 861 | << TheCall->getSourceRange(); |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 862 | |
| 863 | // Argument 0 is checked for us and the remaining arguments must be |
| 864 | // constant integers. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 865 | for (unsigned i = 1; i != NumArgs; ++i) { |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 866 | Expr *Arg = TheCall->getArg(i); |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 867 | |
Eli Friedman | 9aef726 | 2009-12-04 00:30:06 +0000 | [diff] [blame] | 868 | llvm::APSInt Result; |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 869 | if (SemaBuiltinConstantArg(TheCall, i, Result)) |
| 870 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 871 | |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 872 | // FIXME: gcc issues a warning and rewrites these to 0. These |
| 873 | // seems especially odd for the third argument since the default |
| 874 | // is 3. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 875 | if (i == 1) { |
Eli Friedman | 9aef726 | 2009-12-04 00:30:06 +0000 | [diff] [blame] | 876 | if (Result.getLimitedValue() > 1) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 877 | return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range) |
Chris Lattner | 21fb98e | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 878 | << "0" << "1" << Arg->getSourceRange(); |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 879 | } else { |
Eli Friedman | 9aef726 | 2009-12-04 00:30:06 +0000 | [diff] [blame] | 880 | if (Result.getLimitedValue() > 3) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 881 | return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range) |
Chris Lattner | 21fb98e | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 882 | << "0" << "3" << Arg->getSourceRange(); |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 883 | } |
| 884 | } |
| 885 | |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 886 | return false; |
Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 887 | } |
| 888 | |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 889 | /// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr |
| 890 | /// TheCall is a constant expression. |
| 891 | bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum, |
| 892 | llvm::APSInt &Result) { |
| 893 | Expr *Arg = TheCall->getArg(ArgNum); |
| 894 | DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); |
| 895 | FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); |
| 896 | |
| 897 | if (Arg->isTypeDependent() || Arg->isValueDependent()) return false; |
| 898 | |
| 899 | if (!Arg->isIntegerConstantExpr(Result, Context)) |
| 900 | return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type) |
Eric Christopher | 5e89655 | 2010-04-19 18:23:02 +0000 | [diff] [blame] | 901 | << FDecl->getDeclName() << Arg->getSourceRange(); |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 902 | |
Chris Lattner | 21fb98e | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 903 | return false; |
| 904 | } |
| 905 | |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 906 | /// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr, |
| 907 | /// int type). This simply type checks that type is one of the defined |
| 908 | /// constants (0-3). |
Eric Christopher | fee667f | 2009-12-23 03:49:37 +0000 | [diff] [blame] | 909 | // For compatability check 0-3, llvm only handles 0 and 2. |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 910 | bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) { |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 911 | llvm::APSInt Result; |
| 912 | |
| 913 | // Check constant-ness first. |
| 914 | if (SemaBuiltinConstantArg(TheCall, 1, Result)) |
| 915 | return true; |
| 916 | |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 917 | Expr *Arg = TheCall->getArg(1); |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 918 | if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 919 | return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range) |
| 920 | << "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd()); |
Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | return false; |
| 924 | } |
| 925 | |
Eli Friedman | 586d6a8 | 2009-05-03 06:04:26 +0000 | [diff] [blame] | 926 | /// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val). |
Eli Friedman | d875fed | 2009-05-03 04:46:36 +0000 | [diff] [blame] | 927 | /// This checks that val is a constant 1. |
| 928 | bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) { |
| 929 | Expr *Arg = TheCall->getArg(1); |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 930 | llvm::APSInt Result; |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 931 | |
Eric Christopher | 691ebc3 | 2010-04-17 02:26:23 +0000 | [diff] [blame] | 932 | // TODO: This is less than ideal. Overload this to take a value. |
| 933 | if (SemaBuiltinConstantArg(TheCall, 1, Result)) |
| 934 | return true; |
| 935 | |
| 936 | if (Result != 1) |
Eli Friedman | d875fed | 2009-05-03 04:46:36 +0000 | [diff] [blame] | 937 | return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val) |
| 938 | << SourceRange(Arg->getLocStart(), Arg->getLocEnd()); |
| 939 | |
| 940 | return false; |
| 941 | } |
| 942 | |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 943 | // Handle i > 1 ? "x" : "y", recursivelly |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 944 | bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall, |
| 945 | bool HasVAListArg, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 946 | unsigned format_idx, unsigned firstDataArg, |
| 947 | bool isPrintf) { |
Ted Kremenek | 4fe6441 | 2010-09-09 03:51:39 +0000 | [diff] [blame] | 948 | tryAgain: |
Douglas Gregor | cde0173 | 2009-05-19 22:10:17 +0000 | [diff] [blame] | 949 | if (E->isTypeDependent() || E->isValueDependent()) |
| 950 | return false; |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 951 | |
| 952 | switch (E->getStmtClass()) { |
| 953 | case Stmt::ConditionalOperatorClass: { |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 954 | const ConditionalOperator *C = cast<ConditionalOperator>(E); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 955 | return SemaCheckStringLiteral(C->getTrueExpr(), TheCall, HasVAListArg, |
| 956 | format_idx, firstDataArg, isPrintf) |
| 957 | && SemaCheckStringLiteral(C->getRHS(), TheCall, HasVAListArg, |
| 958 | format_idx, firstDataArg, isPrintf); |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Ted Kremenek | 95355bb | 2010-09-09 03:51:42 +0000 | [diff] [blame] | 961 | case Stmt::IntegerLiteralClass: |
| 962 | // Technically -Wformat-nonliteral does not warn about this case. |
| 963 | // The behavior of printf and friends in this case is implementation |
| 964 | // dependent. Ideally if the format string cannot be null then |
| 965 | // it should have a 'nonnull' attribute in the function prototype. |
| 966 | return true; |
| 967 | |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 968 | case Stmt::ImplicitCastExprClass: { |
Ted Kremenek | 4fe6441 | 2010-09-09 03:51:39 +0000 | [diff] [blame] | 969 | E = cast<ImplicitCastExpr>(E)->getSubExpr(); |
| 970 | goto tryAgain; |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | case Stmt::ParenExprClass: { |
Ted Kremenek | 4fe6441 | 2010-09-09 03:51:39 +0000 | [diff] [blame] | 974 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 975 | goto tryAgain; |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 976 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 977 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 978 | case Stmt::DeclRefExprClass: { |
| 979 | const DeclRefExpr *DR = cast<DeclRefExpr>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 980 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 981 | // As an exception, do not flag errors for variables binding to |
| 982 | // const string literals. |
| 983 | if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) { |
| 984 | bool isConstant = false; |
| 985 | QualType T = DR->getType(); |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 986 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 987 | if (const ArrayType *AT = Context.getAsArrayType(T)) { |
| 988 | isConstant = AT->getElementType().isConstant(Context); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 989 | } else if (const PointerType *PT = T->getAs<PointerType>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 990 | isConstant = T.isConstant(Context) && |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 991 | PT->getPointeeType().isConstant(Context); |
| 992 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 993 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 994 | if (isConstant) { |
Sebastian Redl | 31310a2 | 2010-02-01 20:16:42 +0000 | [diff] [blame] | 995 | if (const Expr *Init = VD->getAnyInitializer()) |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 996 | return SemaCheckStringLiteral(Init, TheCall, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 997 | HasVAListArg, format_idx, firstDataArg, |
| 998 | isPrintf); |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 999 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1000 | |
Anders Carlsson | d966a55 | 2009-06-28 19:55:58 +0000 | [diff] [blame] | 1001 | // For vprintf* functions (i.e., HasVAListArg==true), we add a |
| 1002 | // special check to see if the format string is a function parameter |
| 1003 | // of the function calling the printf function. If the function |
| 1004 | // has an attribute indicating it is a printf-like function, then we |
| 1005 | // should suppress warnings concerning non-literals being used in a call |
| 1006 | // to a vprintf function. For example: |
| 1007 | // |
| 1008 | // void |
| 1009 | // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){ |
| 1010 | // va_list ap; |
| 1011 | // va_start(ap, fmt); |
| 1012 | // vprintf(fmt, ap); // Do NOT emit a warning about "fmt". |
| 1013 | // ... |
| 1014 | // |
| 1015 | // |
| 1016 | // FIXME: We don't have full attribute support yet, so just check to see |
| 1017 | // if the argument is a DeclRefExpr that references a parameter. We'll |
| 1018 | // add proper support for checking the attribute later. |
| 1019 | if (HasVAListArg) |
| 1020 | if (isa<ParmVarDecl>(VD)) |
| 1021 | return true; |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1022 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1023 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1024 | return false; |
| 1025 | } |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1026 | |
Anders Carlsson | 8f031b3 | 2009-06-27 04:05:33 +0000 | [diff] [blame] | 1027 | case Stmt::CallExprClass: { |
| 1028 | const CallExpr *CE = cast<CallExpr>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1029 | if (const ImplicitCastExpr *ICE |
Anders Carlsson | 8f031b3 | 2009-06-27 04:05:33 +0000 | [diff] [blame] | 1030 | = dyn_cast<ImplicitCastExpr>(CE->getCallee())) { |
| 1031 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) { |
| 1032 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1033 | if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) { |
Anders Carlsson | 8f031b3 | 2009-06-27 04:05:33 +0000 | [diff] [blame] | 1034 | unsigned ArgIndex = FA->getFormatIdx(); |
| 1035 | const Expr *Arg = CE->getArg(ArgIndex - 1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1036 | |
| 1037 | return SemaCheckStringLiteral(Arg, TheCall, HasVAListArg, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1038 | format_idx, firstDataArg, isPrintf); |
Anders Carlsson | 8f031b3 | 2009-06-27 04:05:33 +0000 | [diff] [blame] | 1039 | } |
| 1040 | } |
| 1041 | } |
| 1042 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1043 | |
Anders Carlsson | 8f031b3 | 2009-06-27 04:05:33 +0000 | [diff] [blame] | 1044 | return false; |
| 1045 | } |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1046 | case Stmt::ObjCStringLiteralClass: |
| 1047 | case Stmt::StringLiteralClass: { |
| 1048 | const StringLiteral *StrE = NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1049 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1050 | if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E)) |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1051 | StrE = ObjCFExpr->getString(); |
| 1052 | else |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1053 | StrE = cast<StringLiteral>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1054 | |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1055 | if (StrE) { |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1056 | CheckFormatString(StrE, E, TheCall, HasVAListArg, format_idx, |
| 1057 | firstDataArg, isPrintf); |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1058 | return true; |
| 1059 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1060 | |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1061 | return false; |
| 1062 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1063 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1064 | default: |
| 1065 | return false; |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1066 | } |
| 1067 | } |
| 1068 | |
Fariborz Jahanian | e898f8a | 2009-05-21 18:48:51 +0000 | [diff] [blame] | 1069 | void |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1070 | Sema::CheckNonNullArguments(const NonNullAttr *NonNull, |
| 1071 | const CallExpr *TheCall) { |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1072 | for (NonNullAttr::args_iterator i = NonNull->args_begin(), |
| 1073 | e = NonNull->args_end(); |
Fariborz Jahanian | e898f8a | 2009-05-21 18:48:51 +0000 | [diff] [blame] | 1074 | i != e; ++i) { |
Chris Lattner | 12b97ff | 2009-05-25 18:23:36 +0000 | [diff] [blame] | 1075 | const Expr *ArgExpr = TheCall->getArg(*i); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1076 | if (ArgExpr->isNullPointerConstant(Context, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 1077 | Expr::NPC_ValueDependentIsNotNull)) |
Chris Lattner | 12b97ff | 2009-05-25 18:23:36 +0000 | [diff] [blame] | 1078 | Diag(TheCall->getCallee()->getLocStart(), diag::warn_null_arg) |
| 1079 | << ArgExpr->getSourceRange(); |
Fariborz Jahanian | e898f8a | 2009-05-21 18:48:51 +0000 | [diff] [blame] | 1080 | } |
| 1081 | } |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1082 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1083 | /// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar |
| 1084 | /// functions) for correct use of format strings. |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 1085 | void |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1086 | Sema::CheckPrintfScanfArguments(const CallExpr *TheCall, bool HasVAListArg, |
| 1087 | unsigned format_idx, unsigned firstDataArg, |
| 1088 | bool isPrintf) { |
| 1089 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1090 | const Expr *Fn = TheCall->getCallee(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 1091 | |
Sebastian Redl | 4a2614e | 2009-11-17 18:02:24 +0000 | [diff] [blame] | 1092 | // The way the format attribute works in GCC, the implicit this argument |
| 1093 | // of member functions is counted. However, it doesn't appear in our own |
| 1094 | // lists, so decrement format_idx in that case. |
| 1095 | if (isa<CXXMemberCallExpr>(TheCall)) { |
| 1096 | // Catch a format attribute mistakenly referring to the object argument. |
| 1097 | if (format_idx == 0) |
| 1098 | return; |
| 1099 | --format_idx; |
| 1100 | if(firstDataArg != 0) |
| 1101 | --firstDataArg; |
| 1102 | } |
| 1103 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1104 | // CHECK: printf/scanf-like function is called with no format string. |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 1105 | if (format_idx >= TheCall->getNumArgs()) { |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1106 | Diag(TheCall->getRParenLoc(), diag::warn_missing_format_string) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1107 | << Fn->getSourceRange(); |
Ted Kremenek | 71895b9 | 2007-08-14 17:39:48 +0000 | [diff] [blame] | 1108 | return; |
| 1109 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1110 | |
Ted Kremenek | 082d936 | 2009-03-20 21:35:28 +0000 | [diff] [blame] | 1111 | const Expr *OrigFormatExpr = TheCall->getArg(format_idx)->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1112 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 1113 | // CHECK: format string is not a string literal. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1114 | // |
Ted Kremenek | 71895b9 | 2007-08-14 17:39:48 +0000 | [diff] [blame] | 1115 | // Dynamically generated format strings are difficult to |
| 1116 | // automatically vet at compile time. Requiring that format strings |
| 1117 | // are string literals: (1) permits the checking of format strings by |
| 1118 | // the compiler and thereby (2) can practically remove the source of |
| 1119 | // many format string exploits. |
Ted Kremenek | 7ff22b2 | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 1120 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1121 | // Format string can be either ObjC string (e.g. @"%d") or |
Ted Kremenek | 7ff22b2 | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 1122 | // C string (e.g. "%d") |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1123 | // ObjC string uses the same format specifiers as C string, so we can use |
Ted Kremenek | 7ff22b2 | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 1124 | // the same format string checking logic for both ObjC and C strings. |
Chris Lattner | 1cd3e1f | 2009-04-29 04:49:34 +0000 | [diff] [blame] | 1125 | if (SemaCheckStringLiteral(OrigFormatExpr, TheCall, HasVAListArg, format_idx, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1126 | firstDataArg, isPrintf)) |
Chris Lattner | 1cd3e1f | 2009-04-29 04:49:34 +0000 | [diff] [blame] | 1127 | return; // Literal format string found, check done! |
Ted Kremenek | 7ff22b2 | 2008-06-16 18:00:42 +0000 | [diff] [blame] | 1128 | |
Chris Lattner | 655f141 | 2009-04-29 04:59:47 +0000 | [diff] [blame] | 1129 | // If there are no arguments specified, warn with -Wformat-security, otherwise |
| 1130 | // warn only with -Wformat-nonliteral. |
| 1131 | if (TheCall->getNumArgs() == format_idx+1) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1132 | Diag(TheCall->getArg(format_idx)->getLocStart(), |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1133 | diag::warn_format_nonliteral_noargs) |
Chris Lattner | 655f141 | 2009-04-29 04:59:47 +0000 | [diff] [blame] | 1134 | << OrigFormatExpr->getSourceRange(); |
| 1135 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1136 | Diag(TheCall->getArg(format_idx)->getLocStart(), |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1137 | diag::warn_format_nonliteral) |
Chris Lattner | 655f141 | 2009-04-29 04:59:47 +0000 | [diff] [blame] | 1138 | << OrigFormatExpr->getSourceRange(); |
Ted Kremenek | d30ef87 | 2009-01-12 23:09:09 +0000 | [diff] [blame] | 1139 | } |
Ted Kremenek | 71895b9 | 2007-08-14 17:39:48 +0000 | [diff] [blame] | 1140 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1141 | namespace { |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1142 | class CheckFormatHandler : public analyze_format_string::FormatStringHandler { |
| 1143 | protected: |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1144 | Sema &S; |
| 1145 | const StringLiteral *FExpr; |
| 1146 | const Expr *OrigFormatExpr; |
Ted Kremenek | 6ee7653 | 2010-03-25 03:59:12 +0000 | [diff] [blame] | 1147 | const unsigned FirstDataArg; |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1148 | const unsigned NumDataArgs; |
| 1149 | const bool IsObjCLiteral; |
| 1150 | const char *Beg; // Start of format string. |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1151 | const bool HasVAListArg; |
| 1152 | const CallExpr *TheCall; |
| 1153 | unsigned FormatIdx; |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1154 | llvm::BitVector CoveredArgs; |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1155 | bool usesPositionalArgs; |
| 1156 | bool atFirstArg; |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1157 | public: |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1158 | CheckFormatHandler(Sema &s, const StringLiteral *fexpr, |
Ted Kremenek | 6ee7653 | 2010-03-25 03:59:12 +0000 | [diff] [blame] | 1159 | const Expr *origFormatExpr, unsigned firstDataArg, |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1160 | unsigned numDataArgs, bool isObjCLiteral, |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1161 | const char *beg, bool hasVAListArg, |
| 1162 | const CallExpr *theCall, unsigned formatIdx) |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1163 | : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr), |
Ted Kremenek | 6ee7653 | 2010-03-25 03:59:12 +0000 | [diff] [blame] | 1164 | FirstDataArg(firstDataArg), |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1165 | NumDataArgs(numDataArgs), |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1166 | IsObjCLiteral(isObjCLiteral), Beg(beg), |
| 1167 | HasVAListArg(hasVAListArg), |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1168 | TheCall(theCall), FormatIdx(formatIdx), |
| 1169 | usesPositionalArgs(false), atFirstArg(true) { |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1170 | CoveredArgs.resize(numDataArgs); |
| 1171 | CoveredArgs.reset(); |
| 1172 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1173 | |
Ted Kremenek | 07d161f | 2010-01-29 01:50:07 +0000 | [diff] [blame] | 1174 | void DoneProcessing(); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1175 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1176 | void HandleIncompleteSpecifier(const char *startSpecifier, |
| 1177 | unsigned specifierLen); |
| 1178 | |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1179 | virtual void HandleInvalidPosition(const char *startSpecifier, |
| 1180 | unsigned specifierLen, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1181 | analyze_format_string::PositionContext p); |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1182 | |
| 1183 | virtual void HandleZeroPosition(const char *startPos, unsigned posLen); |
| 1184 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1185 | void HandleNullChar(const char *nullCharacter); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1186 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1187 | protected: |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1188 | bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc, |
| 1189 | const char *startSpec, |
| 1190 | unsigned specifierLen, |
| 1191 | const char *csStart, unsigned csLen); |
| 1192 | |
Ted Kremenek | f88c8e0 | 2010-01-29 20:55:36 +0000 | [diff] [blame] | 1193 | SourceRange getFormatStringRange(); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1194 | CharSourceRange getSpecifierRange(const char *startSpecifier, |
| 1195 | unsigned specifierLen); |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1196 | SourceLocation getLocationOfByte(const char *x); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1197 | |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1198 | const Expr *getDataArg(unsigned i) const; |
Ted Kremenek | 666a197 | 2010-07-26 19:45:42 +0000 | [diff] [blame] | 1199 | |
| 1200 | bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS, |
| 1201 | const analyze_format_string::ConversionSpecifier &CS, |
| 1202 | const char *startSpecifier, unsigned specifierLen, |
| 1203 | unsigned argIndex); |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1204 | }; |
| 1205 | } |
| 1206 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1207 | SourceRange CheckFormatHandler::getFormatStringRange() { |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1208 | return OrigFormatExpr->getSourceRange(); |
| 1209 | } |
| 1210 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1211 | CharSourceRange CheckFormatHandler:: |
| 1212 | getSpecifierRange(const char *startSpecifier, unsigned specifierLen) { |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 1213 | SourceLocation Start = getLocationOfByte(startSpecifier); |
| 1214 | SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1); |
| 1215 | |
| 1216 | // Advance the end SourceLocation by one due to half-open ranges. |
| 1217 | End = End.getFileLocWithOffset(1); |
| 1218 | |
| 1219 | return CharSourceRange::getCharRange(Start, End); |
Ted Kremenek | f88c8e0 | 2010-01-29 20:55:36 +0000 | [diff] [blame] | 1220 | } |
| 1221 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1222 | SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) { |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1223 | return S.getLocationOfStringLiteralByte(FExpr, x - Beg); |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1224 | } |
| 1225 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1226 | void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier, |
| 1227 | unsigned specifierLen){ |
Ted Kremenek | 808015a | 2010-01-29 03:16:21 +0000 | [diff] [blame] | 1228 | SourceLocation Loc = getLocationOfByte(startSpecifier); |
| 1229 | S.Diag(Loc, diag::warn_printf_incomplete_specifier) |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1230 | << getSpecifierRange(startSpecifier, specifierLen); |
Ted Kremenek | 808015a | 2010-01-29 03:16:21 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1233 | void |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1234 | CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen, |
| 1235 | analyze_format_string::PositionContext p) { |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1236 | SourceLocation Loc = getLocationOfByte(startPos); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1237 | S.Diag(Loc, diag::warn_format_invalid_positional_specifier) |
| 1238 | << (unsigned) p << getSpecifierRange(startPos, posLen); |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1239 | } |
| 1240 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1241 | void CheckFormatHandler::HandleZeroPosition(const char *startPos, |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1242 | unsigned posLen) { |
| 1243 | SourceLocation Loc = getLocationOfByte(startPos); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1244 | S.Diag(Loc, diag::warn_format_zero_positional_specifier) |
| 1245 | << getSpecifierRange(startPos, posLen); |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1246 | } |
| 1247 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1248 | void CheckFormatHandler::HandleNullChar(const char *nullCharacter) { |
| 1249 | // The presence of a null character is likely an error. |
| 1250 | S.Diag(getLocationOfByte(nullCharacter), |
| 1251 | diag::warn_printf_format_string_contains_null_char) |
| 1252 | << getFormatStringRange(); |
| 1253 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1254 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1255 | const Expr *CheckFormatHandler::getDataArg(unsigned i) const { |
| 1256 | return TheCall->getArg(FirstDataArg + i); |
| 1257 | } |
| 1258 | |
| 1259 | void CheckFormatHandler::DoneProcessing() { |
| 1260 | // Does the number of data arguments exceed the number of |
| 1261 | // format conversions in the format string? |
| 1262 | if (!HasVAListArg) { |
| 1263 | // Find any arguments that weren't covered. |
| 1264 | CoveredArgs.flip(); |
| 1265 | signed notCoveredArg = CoveredArgs.find_first(); |
| 1266 | if (notCoveredArg >= 0) { |
| 1267 | assert((unsigned)notCoveredArg < NumDataArgs); |
| 1268 | S.Diag(getDataArg((unsigned) notCoveredArg)->getLocStart(), |
| 1269 | diag::warn_printf_data_arg_not_used) |
| 1270 | << getFormatStringRange(); |
| 1271 | } |
| 1272 | } |
| 1273 | } |
| 1274 | |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1275 | bool |
| 1276 | CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex, |
| 1277 | SourceLocation Loc, |
| 1278 | const char *startSpec, |
| 1279 | unsigned specifierLen, |
| 1280 | const char *csStart, |
| 1281 | unsigned csLen) { |
| 1282 | |
| 1283 | bool keepGoing = true; |
| 1284 | if (argIndex < NumDataArgs) { |
| 1285 | // Consider the argument coverered, even though the specifier doesn't |
| 1286 | // make sense. |
| 1287 | CoveredArgs.set(argIndex); |
| 1288 | } |
| 1289 | else { |
| 1290 | // If argIndex exceeds the number of data arguments we |
| 1291 | // don't issue a warning because that is just a cascade of warnings (and |
| 1292 | // they may have intended '%%' anyway). We don't want to continue processing |
| 1293 | // the format string after this point, however, as we will like just get |
| 1294 | // gibberish when trying to match arguments. |
| 1295 | keepGoing = false; |
| 1296 | } |
| 1297 | |
| 1298 | S.Diag(Loc, diag::warn_format_invalid_conversion) |
| 1299 | << llvm::StringRef(csStart, csLen) |
| 1300 | << getSpecifierRange(startSpec, specifierLen); |
| 1301 | |
| 1302 | return keepGoing; |
| 1303 | } |
| 1304 | |
Ted Kremenek | 666a197 | 2010-07-26 19:45:42 +0000 | [diff] [blame] | 1305 | bool |
| 1306 | CheckFormatHandler::CheckNumArgs( |
| 1307 | const analyze_format_string::FormatSpecifier &FS, |
| 1308 | const analyze_format_string::ConversionSpecifier &CS, |
| 1309 | const char *startSpecifier, unsigned specifierLen, unsigned argIndex) { |
| 1310 | |
| 1311 | if (argIndex >= NumDataArgs) { |
| 1312 | if (FS.usesPositionalArg()) { |
| 1313 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1314 | diag::warn_printf_positional_arg_exceeds_data_args) |
| 1315 | << (argIndex+1) << NumDataArgs |
| 1316 | << getSpecifierRange(startSpecifier, specifierLen); |
| 1317 | } |
| 1318 | else { |
| 1319 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1320 | diag::warn_printf_insufficient_data_args) |
| 1321 | << getSpecifierRange(startSpecifier, specifierLen); |
| 1322 | } |
| 1323 | |
| 1324 | return false; |
| 1325 | } |
| 1326 | return true; |
| 1327 | } |
| 1328 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1329 | //===--- CHECK: Printf format string checking ------------------------------===// |
| 1330 | |
| 1331 | namespace { |
| 1332 | class CheckPrintfHandler : public CheckFormatHandler { |
| 1333 | public: |
| 1334 | CheckPrintfHandler(Sema &s, const StringLiteral *fexpr, |
| 1335 | const Expr *origFormatExpr, unsigned firstDataArg, |
| 1336 | unsigned numDataArgs, bool isObjCLiteral, |
| 1337 | const char *beg, bool hasVAListArg, |
| 1338 | const CallExpr *theCall, unsigned formatIdx) |
| 1339 | : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg, |
| 1340 | numDataArgs, isObjCLiteral, beg, hasVAListArg, |
| 1341 | theCall, formatIdx) {} |
| 1342 | |
| 1343 | |
| 1344 | bool HandleInvalidPrintfConversionSpecifier( |
| 1345 | const analyze_printf::PrintfSpecifier &FS, |
| 1346 | const char *startSpecifier, |
| 1347 | unsigned specifierLen); |
| 1348 | |
| 1349 | bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS, |
| 1350 | const char *startSpecifier, |
| 1351 | unsigned specifierLen); |
| 1352 | |
| 1353 | bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k, |
| 1354 | const char *startSpecifier, unsigned specifierLen); |
| 1355 | void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS, |
| 1356 | const analyze_printf::OptionalAmount &Amt, |
| 1357 | unsigned type, |
| 1358 | const char *startSpecifier, unsigned specifierLen); |
| 1359 | void HandleFlag(const analyze_printf::PrintfSpecifier &FS, |
| 1360 | const analyze_printf::OptionalFlag &flag, |
| 1361 | const char *startSpecifier, unsigned specifierLen); |
| 1362 | void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS, |
| 1363 | const analyze_printf::OptionalFlag &ignoredFlag, |
| 1364 | const analyze_printf::OptionalFlag &flag, |
| 1365 | const char *startSpecifier, unsigned specifierLen); |
| 1366 | }; |
| 1367 | } |
| 1368 | |
| 1369 | bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier( |
| 1370 | const analyze_printf::PrintfSpecifier &FS, |
| 1371 | const char *startSpecifier, |
| 1372 | unsigned specifierLen) { |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1373 | const analyze_printf::PrintfConversionSpecifier &CS = |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1374 | FS.getConversionSpecifier(); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1375 | |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1376 | return HandleInvalidConversionSpecifier(FS.getArgIndex(), |
| 1377 | getLocationOfByte(CS.getStart()), |
| 1378 | startSpecifier, specifierLen, |
| 1379 | CS.getStart(), CS.getLength()); |
Ted Kremenek | 26ac2e0 | 2010-01-29 02:40:24 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1382 | bool CheckPrintfHandler::HandleAmount( |
| 1383 | const analyze_format_string::OptionalAmount &Amt, |
| 1384 | unsigned k, const char *startSpecifier, |
| 1385 | unsigned specifierLen) { |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1386 | |
| 1387 | if (Amt.hasDataArgument()) { |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1388 | if (!HasVAListArg) { |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1389 | unsigned argIndex = Amt.getArgIndex(); |
| 1390 | if (argIndex >= NumDataArgs) { |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1391 | S.Diag(getLocationOfByte(Amt.getStart()), |
| 1392 | diag::warn_printf_asterisk_missing_arg) |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1393 | << k << getSpecifierRange(startSpecifier, specifierLen); |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1394 | // Don't do any more checking. We will just emit |
| 1395 | // spurious errors. |
| 1396 | return false; |
| 1397 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1398 | |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1399 | // Type check the data argument. It should be an 'int'. |
Ted Kremenek | 31f8e32 | 2010-01-29 23:32:22 +0000 | [diff] [blame] | 1400 | // Although not in conformance with C99, we also allow the argument to be |
| 1401 | // an 'unsigned int' as that is a reasonably safe case. GCC also |
| 1402 | // doesn't emit a warning for that case. |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1403 | CoveredArgs.set(argIndex); |
| 1404 | const Expr *Arg = getDataArg(argIndex); |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1405 | QualType T = Arg->getType(); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1406 | |
| 1407 | const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context); |
| 1408 | assert(ATR.isValid()); |
| 1409 | |
| 1410 | if (!ATR.matchesType(S.Context, T)) { |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1411 | S.Diag(getLocationOfByte(Amt.getStart()), |
| 1412 | diag::warn_printf_asterisk_wrong_type) |
| 1413 | << k |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1414 | << ATR.getRepresentativeType(S.Context) << T |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1415 | << getSpecifierRange(startSpecifier, specifierLen) |
Ted Kremenek | d635c5f | 2010-01-30 00:49:51 +0000 | [diff] [blame] | 1416 | << Arg->getSourceRange(); |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1417 | // Don't do any more checking. We will just emit |
| 1418 | // spurious errors. |
| 1419 | return false; |
| 1420 | } |
| 1421 | } |
| 1422 | } |
| 1423 | return true; |
| 1424 | } |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1425 | |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1426 | void CheckPrintfHandler::HandleInvalidAmount( |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1427 | const analyze_printf::PrintfSpecifier &FS, |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1428 | const analyze_printf::OptionalAmount &Amt, |
| 1429 | unsigned type, |
| 1430 | const char *startSpecifier, |
| 1431 | unsigned specifierLen) { |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1432 | const analyze_printf::PrintfConversionSpecifier &CS = |
| 1433 | FS.getConversionSpecifier(); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1434 | switch (Amt.getHowSpecified()) { |
| 1435 | case analyze_printf::OptionalAmount::Constant: |
| 1436 | S.Diag(getLocationOfByte(Amt.getStart()), |
| 1437 | diag::warn_printf_nonsensical_optional_amount) |
| 1438 | << type |
| 1439 | << CS.toString() |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1440 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1441 | << FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(), |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1442 | Amt.getConstantLength())); |
| 1443 | break; |
| 1444 | |
| 1445 | default: |
| 1446 | S.Diag(getLocationOfByte(Amt.getStart()), |
| 1447 | diag::warn_printf_nonsensical_optional_amount) |
| 1448 | << type |
| 1449 | << CS.toString() |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1450 | << getSpecifierRange(startSpecifier, specifierLen); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1451 | break; |
| 1452 | } |
| 1453 | } |
| 1454 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1455 | void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS, |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1456 | const analyze_printf::OptionalFlag &flag, |
| 1457 | const char *startSpecifier, |
| 1458 | unsigned specifierLen) { |
| 1459 | // Warn about pointless flag with a fixit removal. |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1460 | const analyze_printf::PrintfConversionSpecifier &CS = |
| 1461 | FS.getConversionSpecifier(); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1462 | S.Diag(getLocationOfByte(flag.getPosition()), |
| 1463 | diag::warn_printf_nonsensical_flag) |
| 1464 | << flag.toString() << CS.toString() |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1465 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1466 | << FixItHint::CreateRemoval(getSpecifierRange(flag.getPosition(), 1)); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | void CheckPrintfHandler::HandleIgnoredFlag( |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1470 | const analyze_printf::PrintfSpecifier &FS, |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1471 | const analyze_printf::OptionalFlag &ignoredFlag, |
| 1472 | const analyze_printf::OptionalFlag &flag, |
| 1473 | const char *startSpecifier, |
| 1474 | unsigned specifierLen) { |
| 1475 | // Warn about ignored flag with a fixit removal. |
| 1476 | S.Diag(getLocationOfByte(ignoredFlag.getPosition()), |
| 1477 | diag::warn_printf_ignored_flag) |
| 1478 | << ignoredFlag.toString() << flag.toString() |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1479 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1480 | << FixItHint::CreateRemoval(getSpecifierRange( |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1481 | ignoredFlag.getPosition(), 1)); |
| 1482 | } |
| 1483 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1484 | bool |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1485 | CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier |
Ted Kremenek | 5c41ee8 | 2010-02-11 09:27:41 +0000 | [diff] [blame] | 1486 | &FS, |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1487 | const char *startSpecifier, |
| 1488 | unsigned specifierLen) { |
| 1489 | |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1490 | using namespace analyze_format_string; |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1491 | using namespace analyze_printf; |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1492 | const PrintfConversionSpecifier &CS = FS.getConversionSpecifier(); |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1493 | |
Ted Kremenek | baa4006 | 2010-07-19 22:01:06 +0000 | [diff] [blame] | 1494 | if (FS.consumesDataArgument()) { |
| 1495 | if (atFirstArg) { |
| 1496 | atFirstArg = false; |
| 1497 | usesPositionalArgs = FS.usesPositionalArg(); |
| 1498 | } |
| 1499 | else if (usesPositionalArgs != FS.usesPositionalArg()) { |
| 1500 | // Cannot mix-and-match positional and non-positional arguments. |
| 1501 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1502 | diag::warn_format_mix_positional_nonpositional_args) |
| 1503 | << getSpecifierRange(startSpecifier, specifierLen); |
| 1504 | return false; |
| 1505 | } |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1506 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1507 | |
Ted Kremenek | efaff19 | 2010-02-27 01:41:03 +0000 | [diff] [blame] | 1508 | // First check if the field width, precision, and conversion specifier |
| 1509 | // have matching data arguments. |
| 1510 | if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0, |
| 1511 | startSpecifier, specifierLen)) { |
| 1512 | return false; |
| 1513 | } |
| 1514 | |
| 1515 | if (!HandleAmount(FS.getPrecision(), /* precision */ 1, |
| 1516 | startSpecifier, specifierLen)) { |
Ted Kremenek | 0d27735 | 2010-01-29 01:06:55 +0000 | [diff] [blame] | 1517 | return false; |
| 1518 | } |
| 1519 | |
Ted Kremenek | f88c8e0 | 2010-01-29 20:55:36 +0000 | [diff] [blame] | 1520 | if (!CS.consumesDataArgument()) { |
| 1521 | // FIXME: Technically specifying a precision or field width here |
| 1522 | // makes no sense. Worth issuing a warning at some point. |
Ted Kremenek | 0e5675d | 2010-02-10 02:16:30 +0000 | [diff] [blame] | 1523 | return true; |
Ted Kremenek | f88c8e0 | 2010-01-29 20:55:36 +0000 | [diff] [blame] | 1524 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1525 | |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1526 | // Consume the argument. |
| 1527 | unsigned argIndex = FS.getArgIndex(); |
Ted Kremenek | e3fc547 | 2010-02-27 08:34:51 +0000 | [diff] [blame] | 1528 | if (argIndex < NumDataArgs) { |
| 1529 | // The check to see if the argIndex is valid will come later. |
| 1530 | // We set the bit here because we may exit early from this |
| 1531 | // function if we encounter some other error. |
| 1532 | CoveredArgs.set(argIndex); |
| 1533 | } |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1534 | |
| 1535 | // Check for using an Objective-C specific conversion specifier |
| 1536 | // in a non-ObjC literal. |
| 1537 | if (!IsObjCLiteral && CS.isObjCArg()) { |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1538 | return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier, |
| 1539 | specifierLen); |
Ted Kremenek | 7f70dc8 | 2010-02-26 19:18:41 +0000 | [diff] [blame] | 1540 | } |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1541 | |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1542 | // Check for invalid use of field width |
| 1543 | if (!FS.hasValidFieldWidth()) { |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 1544 | HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0, |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1545 | startSpecifier, specifierLen); |
| 1546 | } |
| 1547 | |
| 1548 | // Check for invalid use of precision |
| 1549 | if (!FS.hasValidPrecision()) { |
| 1550 | HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1, |
| 1551 | startSpecifier, specifierLen); |
| 1552 | } |
| 1553 | |
| 1554 | // Check each flag does not conflict with any other component. |
| 1555 | if (!FS.hasValidLeadingZeros()) |
| 1556 | HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen); |
| 1557 | if (!FS.hasValidPlusPrefix()) |
| 1558 | HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen); |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 1559 | if (!FS.hasValidSpacePrefix()) |
| 1560 | HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1561 | if (!FS.hasValidAlternativeForm()) |
| 1562 | HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen); |
| 1563 | if (!FS.hasValidLeftJustified()) |
| 1564 | HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen); |
| 1565 | |
| 1566 | // Check that flags are not ignored by another flag |
Tom Care | 45f9b7e | 2010-06-21 21:21:01 +0000 | [diff] [blame] | 1567 | if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+' |
| 1568 | HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(), |
| 1569 | startSpecifier, specifierLen); |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1570 | if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-' |
| 1571 | HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(), |
| 1572 | startSpecifier, specifierLen); |
| 1573 | |
| 1574 | // Check the length modifier is valid with the given conversion specifier. |
| 1575 | const LengthModifier &LM = FS.getLengthModifier(); |
| 1576 | if (!FS.hasValidLengthModifier()) |
| 1577 | S.Diag(getLocationOfByte(LM.getStart()), |
Ted Kremenek | 649aecf | 2010-07-20 20:03:43 +0000 | [diff] [blame] | 1578 | diag::warn_format_nonsensical_length) |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1579 | << LM.toString() << CS.toString() |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1580 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1581 | << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(), |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1582 | LM.getLength())); |
| 1583 | |
| 1584 | // Are we using '%n'? |
Ted Kremenek | 35d353b | 2010-07-20 20:04:10 +0000 | [diff] [blame] | 1585 | if (CS.getKind() == ConversionSpecifier::nArg) { |
Tom Care | e4ee966 | 2010-06-17 19:00:27 +0000 | [diff] [blame] | 1586 | // Issue a warning about this being a possible security issue. |
Ted Kremenek | e82d804 | 2010-01-29 01:35:25 +0000 | [diff] [blame] | 1587 | S.Diag(getLocationOfByte(CS.getStart()), diag::warn_printf_write_back) |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1588 | << getSpecifierRange(startSpecifier, specifierLen); |
Ted Kremenek | e82d804 | 2010-01-29 01:35:25 +0000 | [diff] [blame] | 1589 | // Continue checking the other format specifiers. |
| 1590 | return true; |
| 1591 | } |
Ted Kremenek | 5c41ee8 | 2010-02-11 09:27:41 +0000 | [diff] [blame] | 1592 | |
Ted Kremenek | da51f0d | 2010-01-29 01:43:31 +0000 | [diff] [blame] | 1593 | // The remaining checks depend on the data arguments. |
| 1594 | if (HasVAListArg) |
| 1595 | return true; |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1596 | |
Ted Kremenek | 666a197 | 2010-07-26 19:45:42 +0000 | [diff] [blame] | 1597 | if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex)) |
Ted Kremenek | da51f0d | 2010-01-29 01:43:31 +0000 | [diff] [blame] | 1598 | return false; |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1599 | |
Michael J. Spencer | 96827eb | 2010-07-27 04:46:02 +0000 | [diff] [blame] | 1600 | // Now type check the data expression that matches the |
| 1601 | // format specifier. |
| 1602 | const Expr *Ex = getDataArg(argIndex); |
| 1603 | const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context); |
| 1604 | if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) { |
| 1605 | // Check if we didn't match because of an implicit cast from a 'char' |
| 1606 | // or 'short' to an 'int'. This is done because printf is a varargs |
| 1607 | // function. |
| 1608 | if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex)) |
| 1609 | if (ICE->getType() == S.Context.IntTy) |
| 1610 | if (ATR.matchesType(S.Context, ICE->getSubExpr()->getType())) |
| 1611 | return true; |
| 1612 | |
| 1613 | // We may be able to offer a FixItHint if it is a supported type. |
| 1614 | PrintfSpecifier fixedFS = FS; |
| 1615 | bool success = fixedFS.fixType(Ex->getType()); |
| 1616 | |
| 1617 | if (success) { |
| 1618 | // Get the fix string from the fixed format specifier |
| 1619 | llvm::SmallString<128> buf; |
| 1620 | llvm::raw_svector_ostream os(buf); |
| 1621 | fixedFS.toString(os); |
| 1622 | |
Ted Kremenek | 9325eaf | 2010-08-24 22:24:51 +0000 | [diff] [blame] | 1623 | // FIXME: getRepresentativeType() perhaps should return a string |
| 1624 | // instead of a QualType to better handle when the representative |
| 1625 | // type is 'wint_t' (which is defined in the system headers). |
Michael J. Spencer | 96827eb | 2010-07-27 04:46:02 +0000 | [diff] [blame] | 1626 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1627 | diag::warn_printf_conversion_argument_type_mismatch) |
| 1628 | << ATR.getRepresentativeType(S.Context) << Ex->getType() |
| 1629 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1630 | << Ex->getSourceRange() |
| 1631 | << FixItHint::CreateReplacement( |
| 1632 | getSpecifierRange(startSpecifier, specifierLen), |
| 1633 | os.str()); |
| 1634 | } |
| 1635 | else { |
| 1636 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1637 | diag::warn_printf_conversion_argument_type_mismatch) |
| 1638 | << ATR.getRepresentativeType(S.Context) << Ex->getType() |
| 1639 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1640 | << Ex->getSourceRange(); |
| 1641 | } |
| 1642 | } |
| 1643 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1644 | return true; |
| 1645 | } |
| 1646 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1647 | //===--- CHECK: Scanf format string checking ------------------------------===// |
| 1648 | |
| 1649 | namespace { |
| 1650 | class CheckScanfHandler : public CheckFormatHandler { |
| 1651 | public: |
| 1652 | CheckScanfHandler(Sema &s, const StringLiteral *fexpr, |
| 1653 | const Expr *origFormatExpr, unsigned firstDataArg, |
| 1654 | unsigned numDataArgs, bool isObjCLiteral, |
| 1655 | const char *beg, bool hasVAListArg, |
| 1656 | const CallExpr *theCall, unsigned formatIdx) |
| 1657 | : CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg, |
| 1658 | numDataArgs, isObjCLiteral, beg, hasVAListArg, |
| 1659 | theCall, formatIdx) {} |
| 1660 | |
| 1661 | bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS, |
| 1662 | const char *startSpecifier, |
| 1663 | unsigned specifierLen); |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1664 | |
| 1665 | bool HandleInvalidScanfConversionSpecifier( |
| 1666 | const analyze_scanf::ScanfSpecifier &FS, |
| 1667 | const char *startSpecifier, |
| 1668 | unsigned specifierLen); |
Ted Kremenek | b7c2101 | 2010-07-16 18:28:03 +0000 | [diff] [blame] | 1669 | |
| 1670 | void HandleIncompleteScanList(const char *start, const char *end); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1671 | }; |
Ted Kremenek | 07d161f | 2010-01-29 01:50:07 +0000 | [diff] [blame] | 1672 | } |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1673 | |
Ted Kremenek | b7c2101 | 2010-07-16 18:28:03 +0000 | [diff] [blame] | 1674 | void CheckScanfHandler::HandleIncompleteScanList(const char *start, |
| 1675 | const char *end) { |
| 1676 | S.Diag(getLocationOfByte(end), diag::warn_scanf_scanlist_incomplete) |
| 1677 | << getSpecifierRange(start, end - start); |
| 1678 | } |
| 1679 | |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1680 | bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier( |
| 1681 | const analyze_scanf::ScanfSpecifier &FS, |
| 1682 | const char *startSpecifier, |
| 1683 | unsigned specifierLen) { |
| 1684 | |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1685 | const analyze_scanf::ScanfConversionSpecifier &CS = |
Ted Kremenek | c09b6a5 | 2010-07-19 21:25:57 +0000 | [diff] [blame] | 1686 | FS.getConversionSpecifier(); |
| 1687 | |
| 1688 | return HandleInvalidConversionSpecifier(FS.getArgIndex(), |
| 1689 | getLocationOfByte(CS.getStart()), |
| 1690 | startSpecifier, specifierLen, |
| 1691 | CS.getStart(), CS.getLength()); |
| 1692 | } |
| 1693 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1694 | bool CheckScanfHandler::HandleScanfSpecifier( |
| 1695 | const analyze_scanf::ScanfSpecifier &FS, |
| 1696 | const char *startSpecifier, |
| 1697 | unsigned specifierLen) { |
| 1698 | |
| 1699 | using namespace analyze_scanf; |
| 1700 | using namespace analyze_format_string; |
| 1701 | |
Ted Kremenek | 6ecb950 | 2010-07-20 20:04:27 +0000 | [diff] [blame] | 1702 | const ScanfConversionSpecifier &CS = FS.getConversionSpecifier(); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1703 | |
Ted Kremenek | baa4006 | 2010-07-19 22:01:06 +0000 | [diff] [blame] | 1704 | // Handle case where '%' and '*' don't consume an argument. These shouldn't |
| 1705 | // be used to decide if we are using positional arguments consistently. |
| 1706 | if (FS.consumesDataArgument()) { |
| 1707 | if (atFirstArg) { |
| 1708 | atFirstArg = false; |
| 1709 | usesPositionalArgs = FS.usesPositionalArg(); |
| 1710 | } |
| 1711 | else if (usesPositionalArgs != FS.usesPositionalArg()) { |
| 1712 | // Cannot mix-and-match positional and non-positional arguments. |
| 1713 | S.Diag(getLocationOfByte(CS.getStart()), |
| 1714 | diag::warn_format_mix_positional_nonpositional_args) |
| 1715 | << getSpecifierRange(startSpecifier, specifierLen); |
| 1716 | return false; |
| 1717 | } |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1718 | } |
| 1719 | |
| 1720 | // Check if the field with is non-zero. |
| 1721 | const OptionalAmount &Amt = FS.getFieldWidth(); |
| 1722 | if (Amt.getHowSpecified() == OptionalAmount::Constant) { |
| 1723 | if (Amt.getConstantAmount() == 0) { |
| 1724 | const CharSourceRange &R = getSpecifierRange(Amt.getStart(), |
| 1725 | Amt.getConstantLength()); |
| 1726 | S.Diag(getLocationOfByte(Amt.getStart()), |
| 1727 | diag::warn_scanf_nonzero_width) |
| 1728 | << R << FixItHint::CreateRemoval(R); |
| 1729 | } |
| 1730 | } |
| 1731 | |
| 1732 | if (!FS.consumesDataArgument()) { |
| 1733 | // FIXME: Technically specifying a precision or field width here |
| 1734 | // makes no sense. Worth issuing a warning at some point. |
| 1735 | return true; |
| 1736 | } |
| 1737 | |
| 1738 | // Consume the argument. |
| 1739 | unsigned argIndex = FS.getArgIndex(); |
| 1740 | if (argIndex < NumDataArgs) { |
| 1741 | // The check to see if the argIndex is valid will come later. |
| 1742 | // We set the bit here because we may exit early from this |
| 1743 | // function if we encounter some other error. |
| 1744 | CoveredArgs.set(argIndex); |
| 1745 | } |
| 1746 | |
Ted Kremenek | 1e51c20 | 2010-07-20 20:04:47 +0000 | [diff] [blame] | 1747 | // Check the length modifier is valid with the given conversion specifier. |
| 1748 | const LengthModifier &LM = FS.getLengthModifier(); |
| 1749 | if (!FS.hasValidLengthModifier()) { |
| 1750 | S.Diag(getLocationOfByte(LM.getStart()), |
| 1751 | diag::warn_format_nonsensical_length) |
| 1752 | << LM.toString() << CS.toString() |
| 1753 | << getSpecifierRange(startSpecifier, specifierLen) |
| 1754 | << FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(), |
| 1755 | LM.getLength())); |
| 1756 | } |
| 1757 | |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1758 | // The remaining checks depend on the data arguments. |
| 1759 | if (HasVAListArg) |
| 1760 | return true; |
| 1761 | |
Ted Kremenek | 666a197 | 2010-07-26 19:45:42 +0000 | [diff] [blame] | 1762 | if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex)) |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1763 | return false; |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1764 | |
| 1765 | // FIXME: Check that the argument type matches the format specifier. |
| 1766 | |
| 1767 | return true; |
| 1768 | } |
| 1769 | |
| 1770 | void Sema::CheckFormatString(const StringLiteral *FExpr, |
Ted Kremenek | 0e5675d | 2010-02-10 02:16:30 +0000 | [diff] [blame] | 1771 | const Expr *OrigFormatExpr, |
| 1772 | const CallExpr *TheCall, bool HasVAListArg, |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1773 | unsigned format_idx, unsigned firstDataArg, |
| 1774 | bool isPrintf) { |
| 1775 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1776 | // CHECK: is the format string a wide literal? |
| 1777 | if (FExpr->isWide()) { |
| 1778 | Diag(FExpr->getLocStart(), |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1779 | diag::warn_format_string_is_wide_literal) |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1780 | << OrigFormatExpr->getSourceRange(); |
| 1781 | return; |
| 1782 | } |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1783 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1784 | // Str - The format string. NOTE: this is NOT null-terminated! |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 1785 | llvm::StringRef StrRef = FExpr->getString(); |
| 1786 | const char *Str = StrRef.data(); |
| 1787 | unsigned StrLen = StrRef.size(); |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1788 | |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1789 | // CHECK: empty format string? |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1790 | if (StrLen == 0) { |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1791 | Diag(FExpr->getLocStart(), diag::warn_empty_format_string) |
Ted Kremenek | e0e5313 | 2010-01-28 23:39:18 +0000 | [diff] [blame] | 1792 | << OrigFormatExpr->getSourceRange(); |
| 1793 | return; |
| 1794 | } |
Ted Kremenek | 826a345 | 2010-07-16 02:11:22 +0000 | [diff] [blame] | 1795 | |
| 1796 | if (isPrintf) { |
| 1797 | CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg, |
| 1798 | TheCall->getNumArgs() - firstDataArg, |
| 1799 | isa<ObjCStringLiteral>(OrigFormatExpr), Str, |
| 1800 | HasVAListArg, TheCall, format_idx); |
| 1801 | |
| 1802 | if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen)) |
| 1803 | H.DoneProcessing(); |
| 1804 | } |
| 1805 | else { |
| 1806 | CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg, |
| 1807 | TheCall->getNumArgs() - firstDataArg, |
| 1808 | isa<ObjCStringLiteral>(OrigFormatExpr), Str, |
| 1809 | HasVAListArg, TheCall, format_idx); |
| 1810 | |
| 1811 | if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen)) |
| 1812 | H.DoneProcessing(); |
| 1813 | } |
Ted Kremenek | ce7024e | 2010-01-28 01:18:22 +0000 | [diff] [blame] | 1814 | } |
| 1815 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1816 | //===--- CHECK: Return Address of Stack Variable --------------------------===// |
| 1817 | |
| 1818 | static DeclRefExpr* EvalVal(Expr *E); |
| 1819 | static DeclRefExpr* EvalAddr(Expr* E); |
| 1820 | |
| 1821 | /// CheckReturnStackAddr - Check if a return statement returns the address |
| 1822 | /// of a stack variable. |
| 1823 | void |
| 1824 | Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, |
| 1825 | SourceLocation ReturnLoc) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1826 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1827 | // Perform checking for returned stack addresses. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1828 | if (lhsType->isPointerType() || lhsType->isBlockPointerType()) { |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1829 | if (DeclRefExpr *DR = EvalAddr(RetValExp)) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1830 | Diag(DR->getLocStart(), diag::warn_ret_stack_addr) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 1831 | << DR->getDecl()->getDeclName() << RetValExp->getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1832 | |
Steve Naroff | c50a4a5 | 2008-09-16 22:25:10 +0000 | [diff] [blame] | 1833 | // Skip over implicit cast expressions when checking for block expressions. |
Chris Lattner | 4ca606e | 2009-09-08 00:36:37 +0000 | [diff] [blame] | 1834 | RetValExp = RetValExp->IgnoreParenCasts(); |
Steve Naroff | c50a4a5 | 2008-09-16 22:25:10 +0000 | [diff] [blame] | 1835 | |
Chris Lattner | 9e6b37a | 2009-10-30 04:01:58 +0000 | [diff] [blame] | 1836 | if (BlockExpr *C = dyn_cast<BlockExpr>(RetValExp)) |
Mike Stump | 397195b | 2009-04-17 00:09:41 +0000 | [diff] [blame] | 1837 | if (C->hasBlockDeclRefExprs()) |
| 1838 | Diag(C->getLocStart(), diag::err_ret_local_block) |
| 1839 | << C->getSourceRange(); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1840 | |
Chris Lattner | 9e6b37a | 2009-10-30 04:01:58 +0000 | [diff] [blame] | 1841 | if (AddrLabelExpr *ALE = dyn_cast<AddrLabelExpr>(RetValExp)) |
| 1842 | Diag(ALE->getLocStart(), diag::warn_ret_addr_label) |
| 1843 | << ALE->getSourceRange(); |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 1844 | |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 1845 | } else if (lhsType->isReferenceType()) { |
| 1846 | // Perform checking for stack values returned by reference. |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1847 | // Check for a reference to the stack |
| 1848 | if (DeclRefExpr *DR = EvalVal(RetValExp)) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1849 | Diag(DR->getLocStart(), diag::warn_ret_stack_ref) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 1850 | << DR->getDecl()->getDeclName() << RetValExp->getSourceRange(); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1851 | } |
| 1852 | } |
| 1853 | |
| 1854 | /// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that |
| 1855 | /// check if the expression in a return statement evaluates to an address |
| 1856 | /// to a location on the stack. The recursion is used to traverse the |
| 1857 | /// AST of the return expression, with recursion backtracking when we |
| 1858 | /// encounter a subexpression that (1) clearly does not lead to the address |
| 1859 | /// of a stack variable or (2) is something we cannot determine leads to |
| 1860 | /// the address of a stack variable based on such local checking. |
| 1861 | /// |
Ted Kremenek | e8c600f | 2007-08-28 17:02:55 +0000 | [diff] [blame] | 1862 | /// EvalAddr processes expressions that are pointers that are used as |
| 1863 | /// references (and not L-values). EvalVal handles all other values. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1864 | /// At the base case of the recursion is a check for a DeclRefExpr* in |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1865 | /// the refers to a stack variable. |
| 1866 | /// |
| 1867 | /// This implementation handles: |
| 1868 | /// |
| 1869 | /// * pointer-to-pointer casts |
| 1870 | /// * implicit conversions from array references to pointers |
| 1871 | /// * taking the address of fields |
| 1872 | /// * arbitrary interplay between "&" and "*" operators |
| 1873 | /// * pointer arithmetic from an address of a stack variable |
| 1874 | /// * taking the address of an array element where the array is on the stack |
| 1875 | static DeclRefExpr* EvalAddr(Expr *E) { |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1876 | // We should only be called for evaluating pointer expressions. |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1877 | assert((E->getType()->isAnyPointerType() || |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1878 | E->getType()->isBlockPointerType() || |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1879 | E->getType()->isObjCQualifiedIdType()) && |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1880 | "EvalAddr only works on pointers"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1881 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1882 | // Our "symbolic interpreter" is just a dispatch off the currently |
| 1883 | // viewed AST node. We then recursively traverse the AST by calling |
| 1884 | // EvalAddr and EvalVal appropriately. |
| 1885 | switch (E->getStmtClass()) { |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1886 | case Stmt::ParenExprClass: |
| 1887 | // Ignore parentheses. |
| 1888 | return EvalAddr(cast<ParenExpr>(E)->getSubExpr()); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1889 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1890 | case Stmt::UnaryOperatorClass: { |
| 1891 | // The only unary operator that make sense to handle here |
| 1892 | // is AddrOf. All others don't make sense as pointers. |
| 1893 | UnaryOperator *U = cast<UnaryOperator>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1894 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1895 | if (U->getOpcode() == UO_AddrOf) |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1896 | return EvalVal(U->getSubExpr()); |
| 1897 | else |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1898 | return NULL; |
| 1899 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1900 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1901 | case Stmt::BinaryOperatorClass: { |
| 1902 | // Handle pointer arithmetic. All other binary operators are not valid |
| 1903 | // in this context. |
| 1904 | BinaryOperator *B = cast<BinaryOperator>(E); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1905 | BinaryOperatorKind op = B->getOpcode(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1906 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1907 | if (op != BO_Add && op != BO_Sub) |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1908 | return NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1909 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1910 | Expr *Base = B->getLHS(); |
| 1911 | |
| 1912 | // Determine which argument is the real pointer base. It could be |
| 1913 | // the RHS argument instead of the LHS. |
| 1914 | if (!Base->getType()->isPointerType()) Base = B->getRHS(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1915 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1916 | assert (Base->getType()->isPointerType()); |
| 1917 | return EvalAddr(Base); |
| 1918 | } |
Steve Naroff | 61f40a2 | 2008-09-10 19:17:48 +0000 | [diff] [blame] | 1919 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1920 | // For conditional operators we need to see if either the LHS or RHS are |
| 1921 | // valid DeclRefExpr*s. If one of them is valid, we return it. |
| 1922 | case Stmt::ConditionalOperatorClass: { |
| 1923 | ConditionalOperator *C = cast<ConditionalOperator>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1924 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1925 | // Handle the GNU extension for missing LHS. |
| 1926 | if (Expr *lhsExpr = C->getLHS()) |
| 1927 | if (DeclRefExpr* LHS = EvalAddr(lhsExpr)) |
| 1928 | return LHS; |
| 1929 | |
| 1930 | return EvalAddr(C->getRHS()); |
| 1931 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1932 | |
Ted Kremenek | 54b5274 | 2008-08-07 00:49:01 +0000 | [diff] [blame] | 1933 | // For casts, we need to handle conversions from arrays to |
| 1934 | // pointer values, and pointer-to-pointer conversions. |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1935 | case Stmt::ImplicitCastExprClass: |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 1936 | case Stmt::CStyleCastExprClass: |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1937 | case Stmt::CXXFunctionalCastExprClass: { |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1938 | Expr* SubExpr = cast<CastExpr>(E)->getSubExpr(); |
Ted Kremenek | 54b5274 | 2008-08-07 00:49:01 +0000 | [diff] [blame] | 1939 | QualType T = SubExpr->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1940 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1941 | if (SubExpr->getType()->isPointerType() || |
| 1942 | SubExpr->getType()->isBlockPointerType() || |
| 1943 | SubExpr->getType()->isObjCQualifiedIdType()) |
Ted Kremenek | 54b5274 | 2008-08-07 00:49:01 +0000 | [diff] [blame] | 1944 | return EvalAddr(SubExpr); |
| 1945 | else if (T->isArrayType()) |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1946 | return EvalVal(SubExpr); |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1947 | else |
Ted Kremenek | 54b5274 | 2008-08-07 00:49:01 +0000 | [diff] [blame] | 1948 | return 0; |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1949 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1950 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1951 | // C++ casts. For dynamic casts, static casts, and const casts, we |
| 1952 | // are always converting from a pointer-to-pointer, so we just blow |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1953 | // through the cast. In the case the dynamic cast doesn't fail (and |
| 1954 | // return NULL), we take the conservative route and report cases |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1955 | // where we return the address of a stack variable. For Reinterpre |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1956 | // FIXME: The comment about is wrong; we're not always converting |
| 1957 | // from pointer to pointer. I'm guessing that this code should also |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1958 | // handle references to objects. |
| 1959 | case Stmt::CXXStaticCastExprClass: |
| 1960 | case Stmt::CXXDynamicCastExprClass: |
Douglas Gregor | 49badde | 2008-10-27 19:41:14 +0000 | [diff] [blame] | 1961 | case Stmt::CXXConstCastExprClass: |
| 1962 | case Stmt::CXXReinterpretCastExprClass: { |
| 1963 | Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1964 | if (S->getType()->isPointerType() || S->getType()->isBlockPointerType()) |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1965 | return EvalAddr(S); |
| 1966 | else |
| 1967 | return NULL; |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1968 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1969 | |
Chris Lattner | fae3f1f | 2007-12-28 05:31:15 +0000 | [diff] [blame] | 1970 | // Everything else: we simply don't reason about them. |
| 1971 | default: |
| 1972 | return NULL; |
| 1973 | } |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1974 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1975 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1976 | |
| 1977 | /// EvalVal - This function is complements EvalAddr in the mutual recursion. |
| 1978 | /// See the comments for EvalAddr for more details. |
| 1979 | static DeclRefExpr* EvalVal(Expr *E) { |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 1980 | do { |
Ted Kremenek | e8c600f | 2007-08-28 17:02:55 +0000 | [diff] [blame] | 1981 | // We should only be called for evaluating non-pointer expressions, or |
| 1982 | // expressions with a pointer type that are not used as references but instead |
| 1983 | // are l-values (e.g., DeclRefExpr with a pointer type). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1984 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1985 | // Our "symbolic interpreter" is just a dispatch off the currently |
| 1986 | // viewed AST node. We then recursively traverse the AST by calling |
| 1987 | // EvalAddr and EvalVal appropriately. |
| 1988 | switch (E->getStmtClass()) { |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 1989 | case Stmt::ImplicitCastExprClass: { |
| 1990 | ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E); |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 1991 | if (IE->getValueKind() == VK_LValue) { |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 1992 | E = IE->getSubExpr(); |
| 1993 | continue; |
| 1994 | } |
| 1995 | return NULL; |
| 1996 | } |
| 1997 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 1998 | case Stmt::DeclRefExprClass: { |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 1999 | // DeclRefExpr: the base case. When we hit a DeclRefExpr we are looking |
| 2000 | // at code that refers to a variable's name. We check if it has local |
| 2001 | // storage within the function, and if so, return the expression. |
| 2002 | DeclRefExpr *DR = cast<DeclRefExpr>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2003 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2004 | if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl())) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2005 | if (V->hasLocalStorage() && !V->getType()->isReferenceType()) return DR; |
| 2006 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2007 | return NULL; |
| 2008 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2009 | |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 2010 | case Stmt::ParenExprClass: { |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2011 | // Ignore parentheses. |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 2012 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 2013 | continue; |
| 2014 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2015 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2016 | case Stmt::UnaryOperatorClass: { |
| 2017 | // The only unary operator that make sense to handle here |
| 2018 | // is Deref. All others don't resolve to a "name." This includes |
| 2019 | // handling all sorts of rvalues passed to a unary operator. |
| 2020 | UnaryOperator *U = cast<UnaryOperator>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2021 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2022 | if (U->getOpcode() == UO_Deref) |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2023 | return EvalAddr(U->getSubExpr()); |
| 2024 | |
| 2025 | return NULL; |
| 2026 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2027 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2028 | case Stmt::ArraySubscriptExprClass: { |
| 2029 | // Array subscripts are potential references to data on the stack. We |
| 2030 | // retrieve the DeclRefExpr* for the array variable if it indeed |
| 2031 | // has local storage. |
Ted Kremenek | 2324512 | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 2032 | return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase()); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2033 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2034 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2035 | case Stmt::ConditionalOperatorClass: { |
| 2036 | // For conditional operators we need to see if either the LHS or RHS are |
| 2037 | // non-NULL DeclRefExpr's. If one is non-NULL, we return it. |
| 2038 | ConditionalOperator *C = cast<ConditionalOperator>(E); |
| 2039 | |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 2040 | // Handle the GNU extension for missing LHS. |
| 2041 | if (Expr *lhsExpr = C->getLHS()) |
| 2042 | if (DeclRefExpr *LHS = EvalVal(lhsExpr)) |
| 2043 | return LHS; |
| 2044 | |
| 2045 | return EvalVal(C->getRHS()); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2046 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2047 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2048 | // Accesses to members are potential references to data on the stack. |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 2049 | case Stmt::MemberExprClass: { |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2050 | MemberExpr *M = cast<MemberExpr>(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2051 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2052 | // Check for indirect access. We only want direct field accesses. |
Ted Kremenek | a423e81 | 2010-09-02 01:12:13 +0000 | [diff] [blame] | 2053 | if (M->isArrow()) |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2054 | return NULL; |
Ted Kremenek | a423e81 | 2010-09-02 01:12:13 +0000 | [diff] [blame] | 2055 | |
| 2056 | // Check whether the member type is itself a reference, in which case |
| 2057 | // we're not going to refer to the member, but to what the member refers to. |
| 2058 | if (M->getMemberDecl()->getType()->isReferenceType()) |
| 2059 | return NULL; |
| 2060 | |
| 2061 | return EvalVal(M->getBase()); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2062 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2063 | |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2064 | // Everything else: we simply don't reason about them. |
| 2065 | default: |
| 2066 | return NULL; |
| 2067 | } |
Ted Kremenek | 68957a9 | 2010-08-04 20:01:07 +0000 | [diff] [blame] | 2068 | } while (true); |
Ted Kremenek | 06de276 | 2007-08-17 16:46:58 +0000 | [diff] [blame] | 2069 | } |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2070 | |
| 2071 | //===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===// |
| 2072 | |
| 2073 | /// Check for comparisons of floating point operands using != and ==. |
| 2074 | /// Issue a warning if these are no self-comparisons, as they are not likely |
| 2075 | /// to do what the programmer intended. |
| 2076 | void Sema::CheckFloatComparison(SourceLocation loc, Expr* lex, Expr *rex) { |
| 2077 | bool EmitWarning = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2078 | |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 2079 | Expr* LeftExprSansParen = lex->IgnoreParens(); |
Ted Kremenek | 32e97b6 | 2008-01-17 17:55:13 +0000 | [diff] [blame] | 2080 | Expr* RightExprSansParen = rex->IgnoreParens(); |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2081 | |
| 2082 | // Special case: check for x == x (which is OK). |
| 2083 | // Do not emit warnings for such cases. |
| 2084 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen)) |
| 2085 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen)) |
| 2086 | if (DRL->getDecl() == DRR->getDecl()) |
| 2087 | EmitWarning = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2088 | |
| 2089 | |
Ted Kremenek | 1b500bb | 2007-11-29 00:59:04 +0000 | [diff] [blame] | 2090 | // Special case: check for comparisons against literals that can be exactly |
| 2091 | // represented by APFloat. In such cases, do not emit a warning. This |
| 2092 | // is a heuristic: often comparison against such literals are used to |
| 2093 | // detect if a value in a variable has not changed. This clearly can |
| 2094 | // lead to false negatives. |
| 2095 | if (EmitWarning) { |
| 2096 | if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) { |
| 2097 | if (FLL->isExact()) |
| 2098 | EmitWarning = false; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2099 | } else |
Ted Kremenek | 1b500bb | 2007-11-29 00:59:04 +0000 | [diff] [blame] | 2100 | if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){ |
| 2101 | if (FLR->isExact()) |
| 2102 | EmitWarning = false; |
| 2103 | } |
| 2104 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2105 | |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2106 | // Check for comparisons with builtin types. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2107 | if (EmitWarning) |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2108 | if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen)) |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2109 | if (CL->isBuiltinCall(Context)) |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2110 | EmitWarning = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2111 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2112 | if (EmitWarning) |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2113 | if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen)) |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2114 | if (CR->isBuiltinCall(Context)) |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2115 | EmitWarning = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2116 | |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2117 | // Emit the diagnostic. |
| 2118 | if (EmitWarning) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2119 | Diag(loc, diag::warn_floatingpoint_eq) |
| 2120 | << lex->getSourceRange() << rex->getSourceRange(); |
Ted Kremenek | 588e5eb | 2007-11-25 00:58:00 +0000 | [diff] [blame] | 2121 | } |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2122 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2123 | //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===// |
| 2124 | //===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===// |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2125 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2126 | namespace { |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2127 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2128 | /// Structure recording the 'active' range of an integer-valued |
| 2129 | /// expression. |
| 2130 | struct IntRange { |
| 2131 | /// The number of bits active in the int. |
| 2132 | unsigned Width; |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2133 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2134 | /// True if the int is known not to have negative values. |
| 2135 | bool NonNegative; |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2136 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2137 | IntRange(unsigned Width, bool NonNegative) |
| 2138 | : Width(Width), NonNegative(NonNegative) |
| 2139 | {} |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2140 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2141 | // Returns the range of the bool type. |
| 2142 | static IntRange forBoolType() { |
| 2143 | return IntRange(1, true); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2144 | } |
| 2145 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2146 | // Returns the range of an integral type. |
| 2147 | static IntRange forType(ASTContext &C, QualType T) { |
| 2148 | return forCanonicalType(C, T->getCanonicalTypeInternal().getTypePtr()); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2149 | } |
| 2150 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2151 | // Returns the range of an integeral type based on its canonical |
| 2152 | // representation. |
| 2153 | static IntRange forCanonicalType(ASTContext &C, const Type *T) { |
| 2154 | assert(T->isCanonicalUnqualified()); |
| 2155 | |
| 2156 | if (const VectorType *VT = dyn_cast<VectorType>(T)) |
| 2157 | T = VT->getElementType().getTypePtr(); |
| 2158 | if (const ComplexType *CT = dyn_cast<ComplexType>(T)) |
| 2159 | T = CT->getElementType().getTypePtr(); |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2160 | |
| 2161 | if (const EnumType *ET = dyn_cast<EnumType>(T)) { |
| 2162 | EnumDecl *Enum = ET->getDecl(); |
| 2163 | unsigned NumPositive = Enum->getNumPositiveBits(); |
| 2164 | unsigned NumNegative = Enum->getNumNegativeBits(); |
| 2165 | |
| 2166 | return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0); |
| 2167 | } |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2168 | |
| 2169 | const BuiltinType *BT = cast<BuiltinType>(T); |
| 2170 | assert(BT->isInteger()); |
| 2171 | |
| 2172 | return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger()); |
| 2173 | } |
| 2174 | |
| 2175 | // Returns the supremum of two ranges: i.e. their conservative merge. |
John McCall | c0cd21d | 2010-02-23 19:22:29 +0000 | [diff] [blame] | 2176 | static IntRange join(IntRange L, IntRange R) { |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2177 | return IntRange(std::max(L.Width, R.Width), |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2178 | L.NonNegative && R.NonNegative); |
| 2179 | } |
| 2180 | |
| 2181 | // Returns the infinum of two ranges: i.e. their aggressive merge. |
John McCall | c0cd21d | 2010-02-23 19:22:29 +0000 | [diff] [blame] | 2182 | static IntRange meet(IntRange L, IntRange R) { |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2183 | return IntRange(std::min(L.Width, R.Width), |
| 2184 | L.NonNegative || R.NonNegative); |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2185 | } |
| 2186 | }; |
| 2187 | |
| 2188 | IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) { |
| 2189 | if (value.isSigned() && value.isNegative()) |
| 2190 | return IntRange(value.getMinSignedBits(), false); |
| 2191 | |
| 2192 | if (value.getBitWidth() > MaxWidth) |
| 2193 | value.trunc(MaxWidth); |
| 2194 | |
| 2195 | // isNonNegative() just checks the sign bit without considering |
| 2196 | // signedness. |
| 2197 | return IntRange(value.getActiveBits(), true); |
| 2198 | } |
| 2199 | |
John McCall | 0acc311 | 2010-01-06 22:57:21 +0000 | [diff] [blame] | 2200 | IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2201 | unsigned MaxWidth) { |
| 2202 | if (result.isInt()) |
| 2203 | return GetValueRange(C, result.getInt(), MaxWidth); |
| 2204 | |
| 2205 | if (result.isVector()) { |
John McCall | 0acc311 | 2010-01-06 22:57:21 +0000 | [diff] [blame] | 2206 | IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); |
| 2207 | for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) { |
| 2208 | IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); |
| 2209 | R = IntRange::join(R, El); |
| 2210 | } |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2211 | return R; |
| 2212 | } |
| 2213 | |
| 2214 | if (result.isComplexInt()) { |
| 2215 | IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); |
| 2216 | IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); |
| 2217 | return IntRange::join(R, I); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2218 | } |
| 2219 | |
| 2220 | // This can happen with lossless casts to intptr_t of "based" lvalues. |
| 2221 | // Assume it might use arbitrary bits. |
John McCall | 0acc311 | 2010-01-06 22:57:21 +0000 | [diff] [blame] | 2222 | // FIXME: The only reason we need to pass the type in here is to get |
| 2223 | // the sign right on this one case. It would be nice if APValue |
| 2224 | // preserved this. |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2225 | assert(result.isLValue()); |
John McCall | 0acc311 | 2010-01-06 22:57:21 +0000 | [diff] [blame] | 2226 | return IntRange(MaxWidth, Ty->isUnsignedIntegerType()); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2227 | } |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2228 | |
| 2229 | /// Pseudo-evaluate the given integer expression, estimating the |
| 2230 | /// range of values it might take. |
| 2231 | /// |
| 2232 | /// \param MaxWidth - the width to which the value will be truncated |
| 2233 | IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) { |
| 2234 | E = E->IgnoreParens(); |
| 2235 | |
| 2236 | // Try a full evaluation first. |
| 2237 | Expr::EvalResult result; |
| 2238 | if (E->Evaluate(result, C)) |
John McCall | 0acc311 | 2010-01-06 22:57:21 +0000 | [diff] [blame] | 2239 | return GetValueRange(C, result.Val, E->getType(), MaxWidth); |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2240 | |
| 2241 | // I think we only want to look through implicit casts here; if the |
| 2242 | // user has an explicit widening cast, we should treat the value as |
| 2243 | // being of the new, wider type. |
| 2244 | if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2245 | if (CE->getCastKind() == CK_NoOp) |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2246 | return GetExprRange(C, CE->getSubExpr(), MaxWidth); |
| 2247 | |
| 2248 | IntRange OutputTypeRange = IntRange::forType(C, CE->getType()); |
| 2249 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2250 | bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast); |
| 2251 | if (!isIntegerCast && CE->getCastKind() == CK_Unknown) |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2252 | isIntegerCast = CE->getSubExpr()->getType()->isIntegerType(); |
| 2253 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2254 | // Assume that non-integer casts can span the full range of the type. |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2255 | if (!isIntegerCast) |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2256 | return OutputTypeRange; |
| 2257 | |
| 2258 | IntRange SubRange |
| 2259 | = GetExprRange(C, CE->getSubExpr(), |
| 2260 | std::min(MaxWidth, OutputTypeRange.Width)); |
| 2261 | |
| 2262 | // Bail out if the subexpr's range is as wide as the cast type. |
| 2263 | if (SubRange.Width >= OutputTypeRange.Width) |
| 2264 | return OutputTypeRange; |
| 2265 | |
| 2266 | // Otherwise, we take the smaller width, and we're non-negative if |
| 2267 | // either the output type or the subexpr is. |
| 2268 | return IntRange(SubRange.Width, |
| 2269 | SubRange.NonNegative || OutputTypeRange.NonNegative); |
| 2270 | } |
| 2271 | |
| 2272 | if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { |
| 2273 | // If we can fold the condition, just take that operand. |
| 2274 | bool CondResult; |
| 2275 | if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) |
| 2276 | return GetExprRange(C, CondResult ? CO->getTrueExpr() |
| 2277 | : CO->getFalseExpr(), |
| 2278 | MaxWidth); |
| 2279 | |
| 2280 | // Otherwise, conservatively merge. |
| 2281 | IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth); |
| 2282 | IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth); |
| 2283 | return IntRange::join(L, R); |
| 2284 | } |
| 2285 | |
| 2286 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
| 2287 | switch (BO->getOpcode()) { |
| 2288 | |
| 2289 | // Boolean-valued operations are single-bit and positive. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2290 | case BO_LAnd: |
| 2291 | case BO_LOr: |
| 2292 | case BO_LT: |
| 2293 | case BO_GT: |
| 2294 | case BO_LE: |
| 2295 | case BO_GE: |
| 2296 | case BO_EQ: |
| 2297 | case BO_NE: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2298 | return IntRange::forBoolType(); |
| 2299 | |
John McCall | c0cd21d | 2010-02-23 19:22:29 +0000 | [diff] [blame] | 2300 | // The type of these compound assignments is the type of the LHS, |
| 2301 | // so the RHS is not necessarily an integer. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2302 | case BO_MulAssign: |
| 2303 | case BO_DivAssign: |
| 2304 | case BO_RemAssign: |
| 2305 | case BO_AddAssign: |
| 2306 | case BO_SubAssign: |
John McCall | c0cd21d | 2010-02-23 19:22:29 +0000 | [diff] [blame] | 2307 | return IntRange::forType(C, E->getType()); |
| 2308 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2309 | // Operations with opaque sources are black-listed. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2310 | case BO_PtrMemD: |
| 2311 | case BO_PtrMemI: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2312 | return IntRange::forType(C, E->getType()); |
| 2313 | |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2314 | // Bitwise-and uses the *infinum* of the two source ranges. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2315 | case BO_And: |
| 2316 | case BO_AndAssign: |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2317 | return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth), |
| 2318 | GetExprRange(C, BO->getRHS(), MaxWidth)); |
| 2319 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2320 | // Left shift gets black-listed based on a judgement call. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2321 | case BO_Shl: |
John McCall | 3aae609 | 2010-04-07 01:14:35 +0000 | [diff] [blame] | 2322 | // ...except that we want to treat '1 << (blah)' as logically |
| 2323 | // positive. It's an important idiom. |
| 2324 | if (IntegerLiteral *I |
| 2325 | = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) { |
| 2326 | if (I->getValue() == 1) { |
| 2327 | IntRange R = IntRange::forType(C, E->getType()); |
| 2328 | return IntRange(R.Width, /*NonNegative*/ true); |
| 2329 | } |
| 2330 | } |
| 2331 | // fallthrough |
| 2332 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2333 | case BO_ShlAssign: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2334 | return IntRange::forType(C, E->getType()); |
| 2335 | |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2336 | // Right shift by a constant can narrow its left argument. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2337 | case BO_Shr: |
| 2338 | case BO_ShrAssign: { |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2339 | IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth); |
| 2340 | |
| 2341 | // If the shift amount is a positive constant, drop the width by |
| 2342 | // that much. |
| 2343 | llvm::APSInt shift; |
| 2344 | if (BO->getRHS()->isIntegerConstantExpr(shift, C) && |
| 2345 | shift.isNonNegative()) { |
| 2346 | unsigned zext = shift.getZExtValue(); |
| 2347 | if (zext >= L.Width) |
| 2348 | L.Width = (L.NonNegative ? 0 : 1); |
| 2349 | else |
| 2350 | L.Width -= zext; |
| 2351 | } |
| 2352 | |
| 2353 | return L; |
| 2354 | } |
| 2355 | |
| 2356 | // Comma acts as its right operand. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2357 | case BO_Comma: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2358 | return GetExprRange(C, BO->getRHS(), MaxWidth); |
| 2359 | |
John McCall | 60fad45 | 2010-01-06 22:07:33 +0000 | [diff] [blame] | 2360 | // Black-list pointer subtractions. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2361 | case BO_Sub: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2362 | if (BO->getLHS()->getType()->isPointerType()) |
| 2363 | return IntRange::forType(C, E->getType()); |
| 2364 | // fallthrough |
Ted Kremenek | 4e4b30e | 2010-02-16 01:46:59 +0000 | [diff] [blame] | 2365 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2366 | default: |
| 2367 | break; |
| 2368 | } |
| 2369 | |
| 2370 | // Treat every other operator as if it were closed on the |
| 2371 | // narrowest type that encompasses both operands. |
| 2372 | IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth); |
| 2373 | IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth); |
| 2374 | return IntRange::join(L, R); |
| 2375 | } |
| 2376 | |
| 2377 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { |
| 2378 | switch (UO->getOpcode()) { |
| 2379 | // Boolean-valued operations are white-listed. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2380 | case UO_LNot: |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2381 | return IntRange::forBoolType(); |
| 2382 | |
| 2383 | // Operations with opaque sources are black-listed. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2384 | case UO_Deref: |
| 2385 | case UO_AddrOf: // should be impossible |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2386 | return IntRange::forType(C, E->getType()); |
| 2387 | |
| 2388 | default: |
| 2389 | return GetExprRange(C, UO->getSubExpr(), MaxWidth); |
| 2390 | } |
| 2391 | } |
Douglas Gregor | 8ecdb65 | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 2392 | |
| 2393 | if (dyn_cast<OffsetOfExpr>(E)) { |
| 2394 | IntRange::forType(C, E->getType()); |
| 2395 | } |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2396 | |
| 2397 | FieldDecl *BitField = E->getBitField(); |
| 2398 | if (BitField) { |
| 2399 | llvm::APSInt BitWidthAP = BitField->getBitWidth()->EvaluateAsInt(C); |
| 2400 | unsigned BitWidth = BitWidthAP.getZExtValue(); |
| 2401 | |
| 2402 | return IntRange(BitWidth, BitField->getType()->isUnsignedIntegerType()); |
| 2403 | } |
| 2404 | |
| 2405 | return IntRange::forType(C, E->getType()); |
| 2406 | } |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2407 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2408 | IntRange GetExprRange(ASTContext &C, Expr *E) { |
| 2409 | return GetExprRange(C, E, C.getIntWidth(E->getType())); |
| 2410 | } |
| 2411 | |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2412 | /// Checks whether the given value, which currently has the given |
| 2413 | /// source semantics, has the same value when coerced through the |
| 2414 | /// target semantics. |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2415 | bool IsSameFloatAfterCast(const llvm::APFloat &value, |
| 2416 | const llvm::fltSemantics &Src, |
| 2417 | const llvm::fltSemantics &Tgt) { |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2418 | llvm::APFloat truncated = value; |
| 2419 | |
| 2420 | bool ignored; |
| 2421 | truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored); |
| 2422 | truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored); |
| 2423 | |
| 2424 | return truncated.bitwiseIsEqual(value); |
| 2425 | } |
| 2426 | |
| 2427 | /// Checks whether the given value, which currently has the given |
| 2428 | /// source semantics, has the same value when coerced through the |
| 2429 | /// target semantics. |
| 2430 | /// |
| 2431 | /// The value might be a vector of floats (or a complex number). |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2432 | bool IsSameFloatAfterCast(const APValue &value, |
| 2433 | const llvm::fltSemantics &Src, |
| 2434 | const llvm::fltSemantics &Tgt) { |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2435 | if (value.isFloat()) |
| 2436 | return IsSameFloatAfterCast(value.getFloat(), Src, Tgt); |
| 2437 | |
| 2438 | if (value.isVector()) { |
| 2439 | for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i) |
| 2440 | if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt)) |
| 2441 | return false; |
| 2442 | return true; |
| 2443 | } |
| 2444 | |
| 2445 | assert(value.isComplexFloat()); |
| 2446 | return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) && |
| 2447 | IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt)); |
| 2448 | } |
| 2449 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2450 | void AnalyzeImplicitConversions(Sema &S, Expr *E); |
| 2451 | |
Ted Kremenek | e3b159c | 2010-09-23 21:43:44 +0000 | [diff] [blame] | 2452 | static bool IsZero(Sema &S, Expr *E) { |
| 2453 | // Suppress cases where we are comparing against an enum constant. |
| 2454 | if (const DeclRefExpr *DR = |
| 2455 | dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 2456 | if (isa<EnumConstantDecl>(DR->getDecl())) |
| 2457 | return false; |
| 2458 | |
| 2459 | // Suppress cases where the '0' value is expanded from a macro. |
| 2460 | if (E->getLocStart().isMacroID()) |
| 2461 | return false; |
| 2462 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2463 | llvm::APSInt Value; |
| 2464 | return E->isIntegerConstantExpr(Value, S.Context) && Value == 0; |
| 2465 | } |
| 2466 | |
| 2467 | void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2468 | BinaryOperatorKind op = E->getOpcode(); |
| 2469 | if (op == BO_LT && IsZero(S, E->getRHS())) { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2470 | S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison) |
| 2471 | << "< 0" << "false" |
| 2472 | << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2473 | } else if (op == BO_GE && IsZero(S, E->getRHS())) { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2474 | S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison) |
| 2475 | << ">= 0" << "true" |
| 2476 | << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2477 | } else if (op == BO_GT && IsZero(S, E->getLHS())) { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2478 | S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison) |
| 2479 | << "0 >" << "false" |
| 2480 | << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2481 | } else if (op == BO_LE && IsZero(S, E->getLHS())) { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2482 | S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison) |
| 2483 | << "0 <=" << "true" |
| 2484 | << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); |
| 2485 | } |
| 2486 | } |
| 2487 | |
| 2488 | /// Analyze the operands of the given comparison. Implements the |
| 2489 | /// fallback case from AnalyzeComparison. |
| 2490 | void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) { |
| 2491 | AnalyzeImplicitConversions(S, E->getLHS()); |
| 2492 | AnalyzeImplicitConversions(S, E->getRHS()); |
| 2493 | } |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2494 | |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2495 | /// \brief Implements -Wsign-compare. |
| 2496 | /// |
| 2497 | /// \param lex the left-hand expression |
| 2498 | /// \param rex the right-hand expression |
| 2499 | /// \param OpLoc the location of the joining operator |
John McCall | d1b47bf | 2010-03-11 19:43:18 +0000 | [diff] [blame] | 2500 | /// \param BinOpc binary opcode or 0 |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2501 | void AnalyzeComparison(Sema &S, BinaryOperator *E) { |
| 2502 | // The type the comparison is being performed in. |
| 2503 | QualType T = E->getLHS()->getType(); |
| 2504 | assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType()) |
| 2505 | && "comparison with mismatched types"); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2506 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2507 | // We don't do anything special if this isn't an unsigned integral |
| 2508 | // comparison: we're only interested in integral comparisons, and |
| 2509 | // signed comparisons only happen in cases we don't care to warn about. |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 2510 | if (!T->hasUnsignedIntegerRepresentation()) |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2511 | return AnalyzeImpConvsInComparison(S, E); |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2512 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2513 | Expr *lex = E->getLHS()->IgnoreParenImpCasts(); |
| 2514 | Expr *rex = E->getRHS()->IgnoreParenImpCasts(); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2515 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2516 | // Check to see if one of the (unmodified) operands is of different |
| 2517 | // signedness. |
| 2518 | Expr *signedOperand, *unsignedOperand; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 2519 | if (lex->getType()->hasSignedIntegerRepresentation()) { |
| 2520 | assert(!rex->getType()->hasSignedIntegerRepresentation() && |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2521 | "unsigned comparison between two signed integer expressions?"); |
| 2522 | signedOperand = lex; |
| 2523 | unsignedOperand = rex; |
Douglas Gregor | f609462 | 2010-07-23 15:58:24 +0000 | [diff] [blame] | 2524 | } else if (rex->getType()->hasSignedIntegerRepresentation()) { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2525 | signedOperand = rex; |
| 2526 | unsignedOperand = lex; |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2527 | } else { |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2528 | CheckTrivialUnsignedComparison(S, E); |
| 2529 | return AnalyzeImpConvsInComparison(S, E); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2530 | } |
| 2531 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2532 | // Otherwise, calculate the effective range of the signed operand. |
| 2533 | IntRange signedRange = GetExprRange(S.Context, signedOperand); |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2534 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2535 | // Go ahead and analyze implicit conversions in the operands. Note |
| 2536 | // that we skip the implicit conversions on both sides. |
| 2537 | AnalyzeImplicitConversions(S, lex); |
| 2538 | AnalyzeImplicitConversions(S, rex); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2539 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2540 | // If the signed range is non-negative, -Wsign-compare won't fire, |
| 2541 | // but we should still check for comparisons which are always true |
| 2542 | // or false. |
| 2543 | if (signedRange.NonNegative) |
| 2544 | return CheckTrivialUnsignedComparison(S, E); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2545 | |
| 2546 | // For (in)equality comparisons, if the unsigned operand is a |
| 2547 | // constant which cannot collide with a overflowed signed operand, |
| 2548 | // then reinterpreting the signed operand as unsigned will not |
| 2549 | // change the result of the comparison. |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2550 | if (E->isEqualityOp()) { |
| 2551 | unsigned comparisonWidth = S.Context.getIntWidth(T); |
| 2552 | IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2553 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2554 | // We should never be unable to prove that the unsigned operand is |
| 2555 | // non-negative. |
| 2556 | assert(unsignedRange.NonNegative && "unsigned range includes negative?"); |
| 2557 | |
| 2558 | if (unsignedRange.Width < comparisonWidth) |
| 2559 | return; |
| 2560 | } |
| 2561 | |
| 2562 | S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison) |
| 2563 | << lex->getType() << rex->getType() |
| 2564 | << lex->getSourceRange() << rex->getSourceRange(); |
John McCall | ba26e58 | 2010-01-04 23:21:16 +0000 | [diff] [blame] | 2565 | } |
| 2566 | |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2567 | /// Diagnose an implicit cast; purely a helper for CheckImplicitConversion. |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2568 | void DiagnoseImpCast(Sema &S, Expr *E, QualType T, unsigned diag) { |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2569 | S.Diag(E->getExprLoc(), diag) << E->getType() << T << E->getSourceRange(); |
| 2570 | } |
| 2571 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2572 | void CheckImplicitConversion(Sema &S, Expr *E, QualType T, |
| 2573 | bool *ICContext = 0) { |
| 2574 | if (E->isTypeDependent() || E->isValueDependent()) return; |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2575 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2576 | const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr(); |
| 2577 | const Type *Target = S.Context.getCanonicalType(T).getTypePtr(); |
| 2578 | if (Source == Target) return; |
| 2579 | if (Target->isDependentType()) return; |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2580 | |
| 2581 | // Never diagnose implicit casts to bool. |
| 2582 | if (Target->isSpecificBuiltinType(BuiltinType::Bool)) |
| 2583 | return; |
| 2584 | |
| 2585 | // Strip vector types. |
| 2586 | if (isa<VectorType>(Source)) { |
| 2587 | if (!isa<VectorType>(Target)) |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2588 | return DiagnoseImpCast(S, E, T, diag::warn_impcast_vector_scalar); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2589 | |
| 2590 | Source = cast<VectorType>(Source)->getElementType().getTypePtr(); |
| 2591 | Target = cast<VectorType>(Target)->getElementType().getTypePtr(); |
| 2592 | } |
| 2593 | |
| 2594 | // Strip complex types. |
| 2595 | if (isa<ComplexType>(Source)) { |
| 2596 | if (!isa<ComplexType>(Target)) |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2597 | return DiagnoseImpCast(S, E, T, diag::warn_impcast_complex_scalar); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2598 | |
| 2599 | Source = cast<ComplexType>(Source)->getElementType().getTypePtr(); |
| 2600 | Target = cast<ComplexType>(Target)->getElementType().getTypePtr(); |
| 2601 | } |
| 2602 | |
| 2603 | const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source); |
| 2604 | const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target); |
| 2605 | |
| 2606 | // If the source is floating point... |
| 2607 | if (SourceBT && SourceBT->isFloatingPoint()) { |
| 2608 | // ...and the target is floating point... |
| 2609 | if (TargetBT && TargetBT->isFloatingPoint()) { |
| 2610 | // ...then warn if we're dropping FP rank. |
| 2611 | |
| 2612 | // Builtin FP kinds are ordered by increasing FP rank. |
| 2613 | if (SourceBT->getKind() > TargetBT->getKind()) { |
| 2614 | // Don't warn about float constants that are precisely |
| 2615 | // representable in the target type. |
| 2616 | Expr::EvalResult result; |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2617 | if (E->Evaluate(result, S.Context)) { |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2618 | // Value might be a float, a float vector, or a float complex. |
| 2619 | if (IsSameFloatAfterCast(result.Val, |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2620 | S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)), |
| 2621 | S.Context.getFloatTypeSemantics(QualType(SourceBT, 0)))) |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2622 | return; |
| 2623 | } |
| 2624 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2625 | DiagnoseImpCast(S, E, T, diag::warn_impcast_float_precision); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2626 | } |
| 2627 | return; |
| 2628 | } |
| 2629 | |
| 2630 | // If the target is integral, always warn. |
| 2631 | if ((TargetBT && TargetBT->isInteger())) |
| 2632 | // TODO: don't warn for integer values? |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2633 | DiagnoseImpCast(S, E, T, diag::warn_impcast_float_integer); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2634 | |
| 2635 | return; |
| 2636 | } |
| 2637 | |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2638 | if (!Source->isIntegerType() || !Target->isIntegerType()) |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2639 | return; |
| 2640 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2641 | IntRange SourceRange = GetExprRange(S.Context, E); |
| 2642 | IntRange TargetRange = IntRange::forCanonicalType(S.Context, Target); |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2643 | |
| 2644 | if (SourceRange.Width > TargetRange.Width) { |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2645 | // People want to build with -Wshorten-64-to-32 and not -Wconversion |
| 2646 | // and by god we'll let them. |
John McCall | f2370c9 | 2010-01-06 05:24:50 +0000 | [diff] [blame] | 2647 | if (SourceRange.Width == 64 && TargetRange.Width == 32) |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2648 | return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_64_32); |
| 2649 | return DiagnoseImpCast(S, E, T, diag::warn_impcast_integer_precision); |
| 2650 | } |
| 2651 | |
| 2652 | if ((TargetRange.NonNegative && !SourceRange.NonNegative) || |
| 2653 | (!TargetRange.NonNegative && SourceRange.NonNegative && |
| 2654 | SourceRange.Width == TargetRange.Width)) { |
| 2655 | unsigned DiagID = diag::warn_impcast_integer_sign; |
| 2656 | |
| 2657 | // Traditionally, gcc has warned about this under -Wsign-compare. |
| 2658 | // We also want to warn about it in -Wconversion. |
| 2659 | // So if -Wconversion is off, use a completely identical diagnostic |
| 2660 | // in the sign-compare group. |
| 2661 | // The conditional-checking code will |
| 2662 | if (ICContext) { |
| 2663 | DiagID = diag::warn_impcast_integer_sign_conditional; |
| 2664 | *ICContext = true; |
| 2665 | } |
| 2666 | |
| 2667 | return DiagnoseImpCast(S, E, T, DiagID); |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 2668 | } |
| 2669 | |
| 2670 | return; |
| 2671 | } |
| 2672 | |
John McCall | 323ed74 | 2010-05-06 08:58:33 +0000 | [diff] [blame] | 2673 | void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T); |
| 2674 | |
| 2675 | void CheckConditionalOperand(Sema &S, Expr *E, QualType T, |
| 2676 | bool &ICContext) { |
| 2677 | E = E->IgnoreParenImpCasts(); |
| 2678 | |
| 2679 | if (isa<ConditionalOperator>(E)) |
| 2680 | return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T); |
| 2681 | |
| 2682 | AnalyzeImplicitConversions(S, E); |
| 2683 | if (E->getType() != T) |
| 2684 | return CheckImplicitConversion(S, E, T, &ICContext); |
| 2685 | return; |
| 2686 | } |
| 2687 | |
| 2688 | void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) { |
| 2689 | AnalyzeImplicitConversions(S, E->getCond()); |
| 2690 | |
| 2691 | bool Suspicious = false; |
| 2692 | CheckConditionalOperand(S, E->getTrueExpr(), T, Suspicious); |
| 2693 | CheckConditionalOperand(S, E->getFalseExpr(), T, Suspicious); |
| 2694 | |
| 2695 | // If -Wconversion would have warned about either of the candidates |
| 2696 | // for a signedness conversion to the context type... |
| 2697 | if (!Suspicious) return; |
| 2698 | |
| 2699 | // ...but it's currently ignored... |
| 2700 | if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional)) |
| 2701 | return; |
| 2702 | |
| 2703 | // ...and -Wsign-compare isn't... |
| 2704 | if (!S.Diags.getDiagnosticLevel(diag::warn_mixed_sign_conditional)) |
| 2705 | return; |
| 2706 | |
| 2707 | // ...then check whether it would have warned about either of the |
| 2708 | // candidates for a signedness conversion to the condition type. |
| 2709 | if (E->getType() != T) { |
| 2710 | Suspicious = false; |
| 2711 | CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(), |
| 2712 | E->getType(), &Suspicious); |
| 2713 | if (!Suspicious) |
| 2714 | CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(), |
| 2715 | E->getType(), &Suspicious); |
| 2716 | if (!Suspicious) |
| 2717 | return; |
| 2718 | } |
| 2719 | |
| 2720 | // If so, emit a diagnostic under -Wsign-compare. |
| 2721 | Expr *lex = E->getTrueExpr()->IgnoreParenImpCasts(); |
| 2722 | Expr *rex = E->getFalseExpr()->IgnoreParenImpCasts(); |
| 2723 | S.Diag(E->getQuestionLoc(), diag::warn_mixed_sign_conditional) |
| 2724 | << lex->getType() << rex->getType() |
| 2725 | << lex->getSourceRange() << rex->getSourceRange(); |
| 2726 | } |
| 2727 | |
| 2728 | /// AnalyzeImplicitConversions - Find and report any interesting |
| 2729 | /// implicit conversions in the given expression. There are a couple |
| 2730 | /// of competing diagnostics here, -Wconversion and -Wsign-compare. |
| 2731 | void AnalyzeImplicitConversions(Sema &S, Expr *OrigE) { |
| 2732 | QualType T = OrigE->getType(); |
| 2733 | Expr *E = OrigE->IgnoreParenImpCasts(); |
| 2734 | |
| 2735 | // For conditional operators, we analyze the arguments as if they |
| 2736 | // were being fed directly into the output. |
| 2737 | if (isa<ConditionalOperator>(E)) { |
| 2738 | ConditionalOperator *CO = cast<ConditionalOperator>(E); |
| 2739 | CheckConditionalOperator(S, CO, T); |
| 2740 | return; |
| 2741 | } |
| 2742 | |
| 2743 | // Go ahead and check any implicit conversions we might have skipped. |
| 2744 | // The non-canonical typecheck is just an optimization; |
| 2745 | // CheckImplicitConversion will filter out dead implicit conversions. |
| 2746 | if (E->getType() != T) |
| 2747 | CheckImplicitConversion(S, E, T); |
| 2748 | |
| 2749 | // Now continue drilling into this expression. |
| 2750 | |
| 2751 | // Skip past explicit casts. |
| 2752 | if (isa<ExplicitCastExpr>(E)) { |
| 2753 | E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts(); |
| 2754 | return AnalyzeImplicitConversions(S, E); |
| 2755 | } |
| 2756 | |
| 2757 | // Do a somewhat different check with comparison operators. |
| 2758 | if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isComparisonOp()) |
| 2759 | return AnalyzeComparison(S, cast<BinaryOperator>(E)); |
| 2760 | |
| 2761 | // These break the otherwise-useful invariant below. Fortunately, |
| 2762 | // we don't really need to recurse into them, because any internal |
| 2763 | // expressions should have been analyzed already when they were |
| 2764 | // built into statements. |
| 2765 | if (isa<StmtExpr>(E)) return; |
| 2766 | |
| 2767 | // Don't descend into unevaluated contexts. |
| 2768 | if (isa<SizeOfAlignOfExpr>(E)) return; |
| 2769 | |
| 2770 | // Now just recurse over the expression's children. |
| 2771 | for (Stmt::child_iterator I = E->child_begin(), IE = E->child_end(); |
| 2772 | I != IE; ++I) |
| 2773 | AnalyzeImplicitConversions(S, cast<Expr>(*I)); |
| 2774 | } |
| 2775 | |
| 2776 | } // end anonymous namespace |
| 2777 | |
| 2778 | /// Diagnoses "dangerous" implicit conversions within the given |
| 2779 | /// expression (which is a full expression). Implements -Wconversion |
| 2780 | /// and -Wsign-compare. |
| 2781 | void Sema::CheckImplicitConversions(Expr *E) { |
| 2782 | // Don't diagnose in unevaluated contexts. |
| 2783 | if (ExprEvalContexts.back().Context == Sema::Unevaluated) |
| 2784 | return; |
| 2785 | |
| 2786 | // Don't diagnose for value- or type-dependent expressions. |
| 2787 | if (E->isTypeDependent() || E->isValueDependent()) |
| 2788 | return; |
| 2789 | |
| 2790 | AnalyzeImplicitConversions(*this, E); |
| 2791 | } |
| 2792 | |
Mike Stump | f8c4921 | 2010-01-21 03:59:47 +0000 | [diff] [blame] | 2793 | /// CheckParmsForFunctionDef - Check that the parameters of the given |
| 2794 | /// function are appropriate for the definition of a function. This |
| 2795 | /// takes care of any checks that cannot be performed on the |
| 2796 | /// declaration itself, e.g., that the types of each of the function |
| 2797 | /// parameters are complete. |
| 2798 | bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) { |
| 2799 | bool HasInvalidParm = false; |
| 2800 | for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) { |
| 2801 | ParmVarDecl *Param = FD->getParamDecl(p); |
| 2802 | |
| 2803 | // C99 6.7.5.3p4: the parameters in a parameter type list in a |
| 2804 | // function declarator that is part of a function definition of |
| 2805 | // that function shall not have incomplete type. |
| 2806 | // |
| 2807 | // This is also C++ [dcl.fct]p6. |
| 2808 | if (!Param->isInvalidDecl() && |
| 2809 | RequireCompleteType(Param->getLocation(), Param->getType(), |
| 2810 | diag::err_typecheck_decl_incomplete_type)) { |
| 2811 | Param->setInvalidDecl(); |
| 2812 | HasInvalidParm = true; |
| 2813 | } |
| 2814 | |
| 2815 | // C99 6.9.1p5: If the declarator includes a parameter type list, the |
| 2816 | // declaration of each parameter shall include an identifier. |
| 2817 | if (Param->getIdentifier() == 0 && |
| 2818 | !Param->isImplicit() && |
| 2819 | !getLangOptions().CPlusPlus) |
| 2820 | Diag(Param->getLocation(), diag::err_parameter_name_omitted); |
Sam Weinig | d17e340 | 2010-02-01 05:02:49 +0000 | [diff] [blame] | 2821 | |
| 2822 | // C99 6.7.5.3p12: |
| 2823 | // If the function declarator is not part of a definition of that |
| 2824 | // function, parameters may have incomplete type and may use the [*] |
| 2825 | // notation in their sequences of declarator specifiers to specify |
| 2826 | // variable length array types. |
| 2827 | QualType PType = Param->getOriginalType(); |
| 2828 | if (const ArrayType *AT = Context.getAsArrayType(PType)) { |
| 2829 | if (AT->getSizeModifier() == ArrayType::Star) { |
| 2830 | // FIXME: This diagnosic should point the the '[*]' if source-location |
| 2831 | // information is added for it. |
| 2832 | Diag(Param->getLocation(), diag::err_array_star_in_function_definition); |
| 2833 | } |
| 2834 | } |
Mike Stump | f8c4921 | 2010-01-21 03:59:47 +0000 | [diff] [blame] | 2835 | } |
| 2836 | |
| 2837 | return HasInvalidParm; |
| 2838 | } |
John McCall | b7f4ffe | 2010-08-12 21:44:57 +0000 | [diff] [blame] | 2839 | |
| 2840 | /// CheckCastAlign - Implements -Wcast-align, which warns when a |
| 2841 | /// pointer cast increases the alignment requirements. |
| 2842 | void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) { |
| 2843 | // This is actually a lot of work to potentially be doing on every |
| 2844 | // cast; don't do it if we're ignoring -Wcast_align (as is the default). |
| 2845 | if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align) |
| 2846 | == Diagnostic::Ignored) |
| 2847 | return; |
| 2848 | |
| 2849 | // Ignore dependent types. |
| 2850 | if (T->isDependentType() || Op->getType()->isDependentType()) |
| 2851 | return; |
| 2852 | |
| 2853 | // Require that the destination be a pointer type. |
| 2854 | const PointerType *DestPtr = T->getAs<PointerType>(); |
| 2855 | if (!DestPtr) return; |
| 2856 | |
| 2857 | // If the destination has alignment 1, we're done. |
| 2858 | QualType DestPointee = DestPtr->getPointeeType(); |
| 2859 | if (DestPointee->isIncompleteType()) return; |
| 2860 | CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee); |
| 2861 | if (DestAlign.isOne()) return; |
| 2862 | |
| 2863 | // Require that the source be a pointer type. |
| 2864 | const PointerType *SrcPtr = Op->getType()->getAs<PointerType>(); |
| 2865 | if (!SrcPtr) return; |
| 2866 | QualType SrcPointee = SrcPtr->getPointeeType(); |
| 2867 | |
| 2868 | // Whitelist casts from cv void*. We already implicitly |
| 2869 | // whitelisted casts to cv void*, since they have alignment 1. |
| 2870 | // Also whitelist casts involving incomplete types, which implicitly |
| 2871 | // includes 'void'. |
| 2872 | if (SrcPointee->isIncompleteType()) return; |
| 2873 | |
| 2874 | CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee); |
| 2875 | if (SrcAlign >= DestAlign) return; |
| 2876 | |
| 2877 | Diag(TRange.getBegin(), diag::warn_cast_align) |
| 2878 | << Op->getType() << T |
| 2879 | << static_cast<unsigned>(SrcAlign.getQuantity()) |
| 2880 | << static_cast<unsigned>(DestAlign.getQuantity()) |
| 2881 | << TRange << Op->getSourceRange(); |
| 2882 | } |
| 2883 | |