2007-08-11 04:18:51 +08:00
|
|
|
//===--- SemaChecking.cpp - Extra Semantic Checking -----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-08-11 04:18:51 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
// This file implements extra semantic analysis beyond what is enforced
|
2007-08-11 04:18:51 +08:00
|
|
|
// by the C type system.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-08-27 09:09:30 +08:00
|
|
|
#include "clang/Sema/Initialization.h"
|
2010-08-13 04:07:10 +08:00
|
|
|
#include "clang/Sema/Sema.h"
|
2010-08-26 06:03:47 +08:00
|
|
|
#include "clang/Sema/SemaInternal.h"
|
2011-10-11 10:20:01 +08:00
|
|
|
#include "clang/Sema/Initialization.h"
|
2010-08-25 16:40:02 +08:00
|
|
|
#include "clang/Sema/ScopeInfo.h"
|
2010-07-16 10:11:22 +08:00
|
|
|
#include "clang/Analysis/Analyses/FormatString.h"
|
2007-08-11 04:18:51 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-01-12 01:06:35 +08:00
|
|
|
#include "clang/AST/CharUnits.h"
|
2010-08-25 15:42:41 +08:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2008-08-11 13:35:13 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2007-08-21 00:18:38 +08:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
2008-06-17 02:00:42 +08:00
|
|
|
#include "clang/AST/ExprObjC.h"
|
2011-06-16 07:02:42 +08:00
|
|
|
#include "clang/AST/EvaluatedExprVisitor.h"
|
2010-01-21 11:59:47 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
|
|
|
#include "clang/AST/StmtCXX.h"
|
|
|
|
#include "clang/AST/StmtObjC.h"
|
2007-08-11 04:18:51 +08:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2010-01-21 11:59:47 +08:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2010-06-09 12:11:11 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-04-17 10:26:23 +08:00
|
|
|
#include "clang/Basic/TargetBuiltins.h"
|
2010-06-08 10:47:44 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2010-09-08 03:38:13 +08:00
|
|
|
#include "clang/Basic/ConvertUTF.h"
|
2009-05-20 09:55:10 +08:00
|
|
|
#include <limits>
|
2007-08-11 04:18:51 +08:00
|
|
|
using namespace clang;
|
2010-08-25 16:40:02 +08:00
|
|
|
using namespace sema;
|
2007-08-11 04:18:51 +08:00
|
|
|
|
2009-02-19 01:49:48 +08:00
|
|
|
SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
|
|
|
|
unsigned ByteNo) const {
|
2010-11-17 15:37:15 +08:00
|
|
|
return SL->getLocationOfByte(ByteNo, PP.getSourceManager(),
|
|
|
|
PP.getLangOptions(), PP.getTargetInfo());
|
2009-02-19 01:49:48 +08:00
|
|
|
}
|
|
|
|
|
2012-01-18 04:03:31 +08:00
|
|
|
bool Sema::CheckablePrintfAttr(const FormatAttr *Format, Expr **Args,
|
|
|
|
unsigned NumArgs, bool IsCXXMemberCall) {
|
|
|
|
StringRef Type = Format->getType();
|
|
|
|
// FIXME: add support for "CFString" Type. They are not string literal though,
|
|
|
|
// so they need special handling.
|
|
|
|
if (Type == "printf" || Type == "NSString") return true;
|
|
|
|
if (Type == "printf0") {
|
2009-08-06 11:00:50 +08:00
|
|
|
// printf0 allows null "format" string; if so don't check format/args
|
|
|
|
unsigned format_idx = Format->getFormatIdx() - 1;
|
2009-11-18 02:02:24 +08:00
|
|
|
// Does the index refer to the implicit object argument?
|
2012-01-18 04:03:31 +08:00
|
|
|
if (IsCXXMemberCall) {
|
2009-11-18 02:02:24 +08:00
|
|
|
if (format_idx == 0)
|
|
|
|
return false;
|
|
|
|
--format_idx;
|
|
|
|
}
|
2012-01-18 04:03:31 +08:00
|
|
|
if (format_idx < NumArgs) {
|
|
|
|
Expr *Format = Args[format_idx]->IgnoreParenCasts();
|
2010-02-27 09:41:03 +08:00
|
|
|
if (!Format->isNullPointerConstant(Context,
|
|
|
|
Expr::NPC_ValueDependentIsNull))
|
2009-08-06 11:00:50 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-19 01:49:48 +08:00
|
|
|
|
2011-02-26 13:39:39 +08:00
|
|
|
/// Checks that a call expression's argument count is the desired number.
|
|
|
|
/// This is useful when doing custom type-checking. Returns true on error.
|
|
|
|
static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
|
|
|
|
unsigned argCount = call->getNumArgs();
|
|
|
|
if (argCount == desiredArgCount) return false;
|
|
|
|
|
|
|
|
if (argCount < desiredArgCount)
|
|
|
|
return S.Diag(call->getLocEnd(), diag::err_typecheck_call_too_few_args)
|
|
|
|
<< 0 /*function call*/ << desiredArgCount << argCount
|
|
|
|
<< call->getSourceRange();
|
|
|
|
|
|
|
|
// Highlight all the excess arguments.
|
|
|
|
SourceRange range(call->getArg(desiredArgCount)->getLocStart(),
|
|
|
|
call->getArg(argCount - 1)->getLocEnd());
|
|
|
|
|
|
|
|
return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
|
|
|
|
<< 0 /*function call*/ << desiredArgCount << argCount
|
|
|
|
<< call->getArg(1)->getSourceRange();
|
|
|
|
}
|
|
|
|
|
2011-09-10 06:41:49 +08:00
|
|
|
/// CheckBuiltinAnnotationString - Checks that string argument to the builtin
|
|
|
|
/// annotation is a non wide string literal.
|
|
|
|
static bool CheckBuiltinAnnotationString(Sema &S, Expr *Arg) {
|
|
|
|
Arg = Arg->IgnoreParenCasts();
|
|
|
|
StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
|
|
|
|
if (!Literal || !Literal->isAscii()) {
|
|
|
|
S.Diag(Arg->getLocStart(), diag::err_builtin_annotation_not_string_constant)
|
|
|
|
<< Arg->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-24 14:29:42 +08:00
|
|
|
ExprResult
|
2009-08-16 09:56:34 +08:00
|
|
|
Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
|
2010-08-24 14:29:42 +08:00
|
|
|
ExprResult TheCallResult(Owned(TheCall));
|
2008-11-18 04:34:05 +08:00
|
|
|
|
2010-10-02 07:23:24 +08:00
|
|
|
// Find out if any arguments are required to be integer constant expressions.
|
|
|
|
unsigned ICEArguments = 0;
|
|
|
|
ASTContext::GetBuiltinTypeError Error;
|
|
|
|
Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
|
|
|
|
if (Error != ASTContext::GE_None)
|
|
|
|
ICEArguments = 0; // Don't diagnose previously diagnosed errors.
|
|
|
|
|
|
|
|
// If any arguments are required to be ICE's, check and diagnose.
|
|
|
|
for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
|
|
|
|
// Skip arguments not required to be ICE's.
|
|
|
|
if ((ICEArguments & (1 << ArgNo)) == 0) continue;
|
|
|
|
|
|
|
|
llvm::APSInt Result;
|
|
|
|
if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
|
|
|
|
return true;
|
|
|
|
ICEArguments &= ~(1 << ArgNo);
|
|
|
|
}
|
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
switch (BuiltinID) {
|
2007-12-20 07:59:04 +08:00
|
|
|
case Builtin::BI__builtin___CFStringMakeConstantString:
|
2007-12-28 13:29:59 +08:00
|
|
|
assert(TheCall->getNumArgs() == 1 &&
|
2007-12-20 08:26:33 +08:00
|
|
|
"Wrong # arguments to builtin CFStringMakeConstantString");
|
2009-02-18 14:01:06 +08:00
|
|
|
if (CheckObjCString(TheCall->getArg(0)))
|
2009-01-19 08:08:26 +08:00
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2008-07-10 01:58:53 +08:00
|
|
|
case Builtin::BI__builtin_stdarg_start:
|
2007-12-20 07:59:04 +08:00
|
|
|
case Builtin::BI__builtin_va_start:
|
2009-01-19 08:08:26 +08:00
|
|
|
if (SemaBuiltinVAStart(TheCall))
|
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2007-12-20 08:26:33 +08:00
|
|
|
case Builtin::BI__builtin_isgreater:
|
|
|
|
case Builtin::BI__builtin_isgreaterequal:
|
|
|
|
case Builtin::BI__builtin_isless:
|
|
|
|
case Builtin::BI__builtin_islessequal:
|
|
|
|
case Builtin::BI__builtin_islessgreater:
|
|
|
|
case Builtin::BI__builtin_isunordered:
|
2009-01-19 08:08:26 +08:00
|
|
|
if (SemaBuiltinUnorderedCompare(TheCall))
|
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2010-02-16 06:42:31 +08:00
|
|
|
case Builtin::BI__builtin_fpclassify:
|
|
|
|
if (SemaBuiltinFPClassification(TheCall, 6))
|
|
|
|
return ExprError();
|
|
|
|
break;
|
2009-09-01 04:06:00 +08:00
|
|
|
case Builtin::BI__builtin_isfinite:
|
|
|
|
case Builtin::BI__builtin_isinf:
|
|
|
|
case Builtin::BI__builtin_isinf_sign:
|
|
|
|
case Builtin::BI__builtin_isnan:
|
|
|
|
case Builtin::BI__builtin_isnormal:
|
2010-02-16 18:07:31 +08:00
|
|
|
if (SemaBuiltinFPClassification(TheCall, 1))
|
2009-09-01 04:06:00 +08:00
|
|
|
return ExprError();
|
|
|
|
break;
|
2008-05-15 03:38:39 +08:00
|
|
|
case Builtin::BI__builtin_shufflevector:
|
2009-01-19 08:08:26 +08:00
|
|
|
return SemaBuiltinShuffleVector(TheCall);
|
|
|
|
// TheCall will be freed by the smart pointer here, but that's fine, since
|
|
|
|
// SemaBuiltinShuffleVector guts it, but then doesn't release it.
|
2008-07-22 06:59:13 +08:00
|
|
|
case Builtin::BI__builtin_prefetch:
|
2009-01-19 08:08:26 +08:00
|
|
|
if (SemaBuiltinPrefetch(TheCall))
|
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2008-09-04 05:13:56 +08:00
|
|
|
case Builtin::BI__builtin_object_size:
|
2009-01-19 08:08:26 +08:00
|
|
|
if (SemaBuiltinObjectSize(TheCall))
|
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2009-05-03 12:46:36 +08:00
|
|
|
case Builtin::BI__builtin_longjmp:
|
|
|
|
if (SemaBuiltinLongjmp(TheCall))
|
|
|
|
return ExprError();
|
2009-08-16 09:56:34 +08:00
|
|
|
break;
|
2011-02-26 13:39:39 +08:00
|
|
|
|
|
|
|
case Builtin::BI__builtin_classify_type:
|
|
|
|
if (checkArgCount(*this, TheCall, 1)) return true;
|
|
|
|
TheCall->setType(Context.IntTy);
|
|
|
|
break;
|
2010-10-13 01:47:42 +08:00
|
|
|
case Builtin::BI__builtin_constant_p:
|
2011-02-26 13:39:39 +08:00
|
|
|
if (checkArgCount(*this, TheCall, 1)) return true;
|
|
|
|
TheCall->setType(Context.IntTy);
|
2010-10-13 01:47:42 +08:00
|
|
|
break;
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_add:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_add_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_sub:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_sub_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_or:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_or_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_and:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_and_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_xor:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_xor_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_add_and_fetch:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_add_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_sub_and_fetch:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_sub_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_and_and_fetch:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_and_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_or_and_fetch:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_or_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_xor_and_fetch:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_xor_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_val_compare_and_swap:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_val_compare_and_swap_1:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_2:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_4:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_8:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_bool_compare_and_swap:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_1:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_2:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_4:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_8:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_lock_test_and_set:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_lock_test_and_set_1:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_2:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_4:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_8:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_16:
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_lock_release:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_lock_release_1:
|
|
|
|
case Builtin::BI__sync_lock_release_2:
|
|
|
|
case Builtin::BI__sync_lock_release_4:
|
|
|
|
case Builtin::BI__sync_lock_release_8:
|
|
|
|
case Builtin::BI__sync_lock_release_16:
|
2011-04-09 11:57:26 +08:00
|
|
|
case Builtin::BI__sync_swap:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_swap_1:
|
|
|
|
case Builtin::BI__sync_swap_2:
|
|
|
|
case Builtin::BI__sync_swap_4:
|
|
|
|
case Builtin::BI__sync_swap_8:
|
|
|
|
case Builtin::BI__sync_swap_16:
|
2010-07-10 02:59:35 +08:00
|
|
|
return SemaBuiltinAtomicOverloaded(move(TheCallResult));
|
2011-10-11 10:20:01 +08:00
|
|
|
case Builtin::BI__atomic_load:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Load);
|
|
|
|
case Builtin::BI__atomic_store:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Store);
|
2012-01-17 01:27:18 +08:00
|
|
|
case Builtin::BI__atomic_init:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Init);
|
2011-10-11 10:20:01 +08:00
|
|
|
case Builtin::BI__atomic_exchange:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xchg);
|
|
|
|
case Builtin::BI__atomic_compare_exchange_strong:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult),
|
|
|
|
AtomicExpr::CmpXchgStrong);
|
|
|
|
case Builtin::BI__atomic_compare_exchange_weak:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult),
|
|
|
|
AtomicExpr::CmpXchgWeak);
|
|
|
|
case Builtin::BI__atomic_fetch_add:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Add);
|
|
|
|
case Builtin::BI__atomic_fetch_sub:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Sub);
|
|
|
|
case Builtin::BI__atomic_fetch_and:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::And);
|
|
|
|
case Builtin::BI__atomic_fetch_or:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Or);
|
|
|
|
case Builtin::BI__atomic_fetch_xor:
|
|
|
|
return SemaAtomicOpsOverloaded(move(TheCallResult), AtomicExpr::Xor);
|
2011-09-10 06:41:49 +08:00
|
|
|
case Builtin::BI__builtin_annotation:
|
|
|
|
if (CheckBuiltinAnnotationString(*this, TheCall->getArg(1)))
|
|
|
|
return ExprError();
|
|
|
|
break;
|
2010-06-08 10:47:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Since the target specific builtins for each arch overlap, only check those
|
|
|
|
// of the arch we are compiling for.
|
|
|
|
if (BuiltinID >= Builtin::FirstTSBuiltin) {
|
2011-09-02 08:18:52 +08:00
|
|
|
switch (Context.getTargetInfo().getTriple().getArch()) {
|
2010-06-08 10:47:44 +08:00
|
|
|
case llvm::Triple::arm:
|
|
|
|
case llvm::Triple::thumb:
|
|
|
|
if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
|
|
|
|
return ExprError();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return move(TheCallResult);
|
|
|
|
}
|
|
|
|
|
2010-06-14 13:21:25 +08:00
|
|
|
// Get the valid immediate range for the specified NEON type code.
|
|
|
|
static unsigned RFT(unsigned t, bool shift = false) {
|
2011-11-08 09:16:11 +08:00
|
|
|
NeonTypeFlags Type(t);
|
|
|
|
int IsQuad = Type.isQuad();
|
|
|
|
switch (Type.getEltType()) {
|
|
|
|
case NeonTypeFlags::Int8:
|
|
|
|
case NeonTypeFlags::Poly8:
|
|
|
|
return shift ? 7 : (8 << IsQuad) - 1;
|
|
|
|
case NeonTypeFlags::Int16:
|
|
|
|
case NeonTypeFlags::Poly16:
|
|
|
|
return shift ? 15 : (4 << IsQuad) - 1;
|
|
|
|
case NeonTypeFlags::Int32:
|
|
|
|
return shift ? 31 : (2 << IsQuad) - 1;
|
|
|
|
case NeonTypeFlags::Int64:
|
|
|
|
return shift ? 63 : (1 << IsQuad) - 1;
|
|
|
|
case NeonTypeFlags::Float16:
|
|
|
|
assert(!shift && "cannot shift float types!");
|
|
|
|
return (4 << IsQuad) - 1;
|
|
|
|
case NeonTypeFlags::Float32:
|
|
|
|
assert(!shift && "cannot shift float types!");
|
|
|
|
return (2 << IsQuad) - 1;
|
2010-06-14 13:21:25 +08:00
|
|
|
}
|
2012-01-17 14:56:22 +08:00
|
|
|
llvm_unreachable("Invalid NeonTypeFlag!");
|
2010-06-14 13:21:25 +08:00
|
|
|
}
|
|
|
|
|
2011-11-08 13:04:11 +08:00
|
|
|
/// getNeonEltType - Return the QualType corresponding to the elements of
|
|
|
|
/// the vector type specified by the NeonTypeFlags. This is used to check
|
|
|
|
/// the pointer arguments for Neon load/store intrinsics.
|
|
|
|
static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context) {
|
|
|
|
switch (Flags.getEltType()) {
|
|
|
|
case NeonTypeFlags::Int8:
|
|
|
|
return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
|
|
|
|
case NeonTypeFlags::Int16:
|
|
|
|
return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
|
|
|
|
case NeonTypeFlags::Int32:
|
|
|
|
return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
|
|
|
|
case NeonTypeFlags::Int64:
|
|
|
|
return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
|
|
|
|
case NeonTypeFlags::Poly8:
|
|
|
|
return Context.SignedCharTy;
|
|
|
|
case NeonTypeFlags::Poly16:
|
|
|
|
return Context.ShortTy;
|
|
|
|
case NeonTypeFlags::Float16:
|
|
|
|
return Context.UnsignedShortTy;
|
|
|
|
case NeonTypeFlags::Float32:
|
|
|
|
return Context.FloatTy;
|
|
|
|
}
|
2012-01-17 14:56:22 +08:00
|
|
|
llvm_unreachable("Invalid NeonTypeFlag!");
|
2011-11-08 13:04:11 +08:00
|
|
|
}
|
|
|
|
|
2010-06-08 10:47:44 +08:00
|
|
|
bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
|
2010-06-09 09:10:23 +08:00
|
|
|
llvm::APSInt Result;
|
|
|
|
|
2010-06-13 12:47:52 +08:00
|
|
|
unsigned mask = 0;
|
2010-06-14 13:21:25 +08:00
|
|
|
unsigned TV = 0;
|
2011-11-17 05:32:23 +08:00
|
|
|
int PtrArgNum = -1;
|
2011-11-08 13:04:11 +08:00
|
|
|
bool HasConstPtr = false;
|
2010-06-09 09:10:23 +08:00
|
|
|
switch (BuiltinID) {
|
2010-06-17 12:17:01 +08:00
|
|
|
#define GET_NEON_OVERLOAD_CHECK
|
|
|
|
#include "clang/Basic/arm_neon.inc"
|
|
|
|
#undef GET_NEON_OVERLOAD_CHECK
|
2010-06-09 09:10:23 +08:00
|
|
|
}
|
|
|
|
|
2010-06-13 12:47:52 +08:00
|
|
|
// For NEON intrinsics which are overloaded on vector element type, validate
|
|
|
|
// the immediate which specifies which variant to emit.
|
2011-11-08 13:04:11 +08:00
|
|
|
unsigned ImmArg = TheCall->getNumArgs()-1;
|
2010-06-13 12:47:52 +08:00
|
|
|
if (mask) {
|
2011-11-08 13:04:11 +08:00
|
|
|
if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
|
2010-06-13 12:47:52 +08:00
|
|
|
return true;
|
|
|
|
|
2011-11-08 09:16:11 +08:00
|
|
|
TV = Result.getLimitedValue(64);
|
|
|
|
if ((TV > 63) || (mask & (1 << TV)) == 0)
|
2010-06-13 12:47:52 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_invalid_neon_type_code)
|
2011-11-08 13:04:11 +08:00
|
|
|
<< TheCall->getArg(ImmArg)->getSourceRange();
|
|
|
|
}
|
|
|
|
|
2011-11-17 05:32:23 +08:00
|
|
|
if (PtrArgNum >= 0) {
|
2011-11-08 13:04:11 +08:00
|
|
|
// Check that pointer arguments have the specified type.
|
2011-11-17 05:32:23 +08:00
|
|
|
Expr *Arg = TheCall->getArg(PtrArgNum);
|
|
|
|
if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
|
|
|
|
Arg = ICE->getSubExpr();
|
|
|
|
ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
|
|
|
|
QualType RHSTy = RHS.get()->getType();
|
|
|
|
QualType EltTy = getNeonEltType(NeonTypeFlags(TV), Context);
|
|
|
|
if (HasConstPtr)
|
|
|
|
EltTy = EltTy.withConst();
|
|
|
|
QualType LHSTy = Context.getPointerType(EltTy);
|
|
|
|
AssignConvertType ConvTy;
|
|
|
|
ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
|
|
|
|
if (RHS.isInvalid())
|
|
|
|
return true;
|
|
|
|
if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
|
|
|
|
RHS.get(), AA_Assigning))
|
|
|
|
return true;
|
2010-06-13 12:47:52 +08:00
|
|
|
}
|
2010-06-09 09:10:23 +08:00
|
|
|
|
2010-06-13 12:47:52 +08:00
|
|
|
// For NEON intrinsics which take an immediate value as part of the
|
|
|
|
// instruction, range check them here.
|
2010-06-14 13:21:25 +08:00
|
|
|
unsigned i = 0, l = 0, u = 0;
|
2010-06-13 12:47:52 +08:00
|
|
|
switch (BuiltinID) {
|
|
|
|
default: return false;
|
2010-07-30 06:48:34 +08:00
|
|
|
case ARM::BI__builtin_arm_ssat: i = 1; l = 1; u = 31; break;
|
|
|
|
case ARM::BI__builtin_arm_usat: i = 1; u = 31; break;
|
2010-08-04 05:32:34 +08:00
|
|
|
case ARM::BI__builtin_arm_vcvtr_f:
|
|
|
|
case ARM::BI__builtin_arm_vcvtr_d: i = 1; u = 1; break;
|
2010-06-17 12:17:01 +08:00
|
|
|
#define GET_NEON_IMMEDIATE_CHECK
|
|
|
|
#include "clang/Basic/arm_neon.inc"
|
|
|
|
#undef GET_NEON_IMMEDIATE_CHECK
|
2010-06-13 12:47:52 +08:00
|
|
|
};
|
|
|
|
|
2010-06-14 13:21:25 +08:00
|
|
|
// Check that the immediate argument is actually a constant.
|
2010-06-13 12:47:52 +08:00
|
|
|
if (SemaBuiltinConstantArg(TheCall, i, Result))
|
|
|
|
return true;
|
|
|
|
|
2010-06-14 13:21:25 +08:00
|
|
|
// Range check against the upper/lower values for this isntruction.
|
2010-06-13 12:47:52 +08:00
|
|
|
unsigned Val = Result.getZExtValue();
|
2010-06-14 13:21:25 +08:00
|
|
|
if (Val < l || Val > (u + l))
|
2010-06-13 12:47:52 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
|
2010-08-11 22:47:12 +08:00
|
|
|
<< l << u+l << TheCall->getArg(i)->getSourceRange();
|
2010-06-13 12:47:52 +08:00
|
|
|
|
2010-08-04 05:32:34 +08:00
|
|
|
// FIXME: VFP Intrinsics should error if VFP not present.
|
2010-06-08 10:47:44 +08:00
|
|
|
return false;
|
2009-08-16 09:56:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// CheckFunctionCall - Check a direct function call for various correctness
|
|
|
|
/// and safety properties not strictly enforced by the C type system.
|
|
|
|
bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall) {
|
|
|
|
// Get the IdentifierInfo* for the called function.
|
|
|
|
IdentifierInfo *FnInfo = FDecl->getIdentifier();
|
2008-10-03 02:44:07 +08:00
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
// None of the checks below are needed for functions that don't have
|
|
|
|
// simple names (e.g., C++ conversion functions).
|
|
|
|
if (!FnInfo)
|
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-03 02:44:07 +08:00
|
|
|
// FIXME: This mechanism should be abstracted to be less fragile and
|
|
|
|
// more efficient. For example, just map function ids to custom
|
|
|
|
// handlers.
|
|
|
|
|
2010-09-09 12:33:05 +08:00
|
|
|
// Printf and scanf checking.
|
|
|
|
for (specific_attr_iterator<FormatAttr>
|
|
|
|
i = FDecl->specific_attr_begin<FormatAttr>(),
|
|
|
|
e = FDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
|
2012-01-18 04:03:31 +08:00
|
|
|
CheckFormatArguments(*i, TheCall);
|
2007-08-11 04:18:51 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-09-09 12:33:05 +08:00
|
|
|
for (specific_attr_iterator<NonNullAttr>
|
|
|
|
i = FDecl->specific_attr_begin<NonNullAttr>(),
|
|
|
|
e = FDecl->specific_attr_end<NonNullAttr>(); i != e; ++i) {
|
2011-03-25 09:44:32 +08:00
|
|
|
CheckNonNullArguments(*i, TheCall->getArgs(),
|
|
|
|
TheCall->getCallee()->getLocStart());
|
2010-09-09 12:33:05 +08:00
|
|
|
}
|
2009-01-19 08:08:26 +08:00
|
|
|
|
2012-01-17 08:37:07 +08:00
|
|
|
unsigned CMId = FDecl->getMemoryFunctionKind();
|
|
|
|
if (CMId == 0)
|
2012-01-14 05:52:01 +08:00
|
|
|
return false;
|
2011-08-19 04:55:45 +08:00
|
|
|
|
2012-01-14 05:52:01 +08:00
|
|
|
// Handle memory setting and copying functions.
|
2012-01-17 08:37:07 +08:00
|
|
|
if (CMId == Builtin::BIstrlcpy || CMId == Builtin::BIstrlcat)
|
2011-08-19 04:55:45 +08:00
|
|
|
CheckStrlcpycatArguments(TheCall, FnInfo);
|
2012-01-14 05:52:01 +08:00
|
|
|
else
|
2012-01-17 08:37:07 +08:00
|
|
|
CheckMemaccessArguments(TheCall, CMId, FnInfo);
|
2011-04-27 15:05:31 +08:00
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
return false;
|
2007-08-17 13:31:46 +08:00
|
|
|
}
|
|
|
|
|
2012-01-18 04:03:31 +08:00
|
|
|
bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
|
|
|
|
Expr **Args, unsigned NumArgs) {
|
|
|
|
for (specific_attr_iterator<FormatAttr>
|
|
|
|
i = Method->specific_attr_begin<FormatAttr>(),
|
|
|
|
e = Method->specific_attr_end<FormatAttr>(); i != e ; ++i) {
|
|
|
|
|
|
|
|
CheckFormatArguments(*i, Args, NumArgs, false, lbrac,
|
|
|
|
Method->getSourceRange());
|
|
|
|
}
|
|
|
|
|
|
|
|
// diagnose nonnull arguments.
|
|
|
|
for (specific_attr_iterator<NonNullAttr>
|
|
|
|
i = Method->specific_attr_begin<NonNullAttr>(),
|
|
|
|
e = Method->specific_attr_end<NonNullAttr>(); i != e; ++i) {
|
|
|
|
CheckNonNullArguments(*i, Args, lbrac);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
bool Sema::CheckBlockCall(NamedDecl *NDecl, CallExpr *TheCall) {
|
2009-05-19 05:05:18 +08:00
|
|
|
const VarDecl *V = dyn_cast<VarDecl>(NDecl);
|
|
|
|
if (!V)
|
2009-08-16 09:56:34 +08:00
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-19 05:05:18 +08:00
|
|
|
QualType Ty = V->getType();
|
|
|
|
if (!Ty->isBlockPointerType())
|
2009-08-16 09:56:34 +08:00
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2012-01-25 08:55:11 +08:00
|
|
|
// format string checking.
|
|
|
|
for (specific_attr_iterator<FormatAttr>
|
|
|
|
i = NDecl->specific_attr_begin<FormatAttr>(),
|
|
|
|
e = NDecl->specific_attr_end<FormatAttr>(); i != e ; ++i) {
|
|
|
|
CheckFormatArguments(*i, TheCall);
|
|
|
|
}
|
2009-08-16 09:56:34 +08:00
|
|
|
|
|
|
|
return false;
|
2009-05-19 05:05:18 +08:00
|
|
|
}
|
|
|
|
|
2011-10-11 10:20:01 +08:00
|
|
|
ExprResult
|
|
|
|
Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, AtomicExpr::AtomicOp Op) {
|
|
|
|
CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
|
|
|
|
DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
|
|
|
|
|
|
|
|
// All these operations take one of the following four forms:
|
|
|
|
// T __atomic_load(_Atomic(T)*, int) (loads)
|
|
|
|
// T* __atomic_add(_Atomic(T*)*, ptrdiff_t, int) (pointer add/sub)
|
|
|
|
// int __atomic_compare_exchange_strong(_Atomic(T)*, T*, T, int, int)
|
|
|
|
// (cmpxchg)
|
|
|
|
// T __atomic_exchange(_Atomic(T)*, T, int) (everything else)
|
|
|
|
// where T is an appropriate type, and the int paremeterss are for orderings.
|
|
|
|
unsigned NumVals = 1;
|
|
|
|
unsigned NumOrders = 1;
|
|
|
|
if (Op == AtomicExpr::Load) {
|
|
|
|
NumVals = 0;
|
|
|
|
} else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong) {
|
|
|
|
NumVals = 2;
|
|
|
|
NumOrders = 2;
|
|
|
|
}
|
2012-01-17 01:27:18 +08:00
|
|
|
if (Op == AtomicExpr::Init)
|
|
|
|
NumOrders = 0;
|
2011-10-11 10:20:01 +08:00
|
|
|
|
|
|
|
if (TheCall->getNumArgs() < NumVals+NumOrders+1) {
|
|
|
|
Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
|
|
|
|
<< 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
|
|
|
|
<< TheCall->getCallee()->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
} else if (TheCall->getNumArgs() > NumVals+NumOrders+1) {
|
|
|
|
Diag(TheCall->getArg(NumVals+NumOrders+1)->getLocStart(),
|
|
|
|
diag::err_typecheck_call_too_many_args)
|
|
|
|
<< 0 << NumVals+NumOrders+1 << TheCall->getNumArgs()
|
|
|
|
<< TheCall->getCallee()->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inspect the first argument of the atomic operation. This should always be
|
|
|
|
// a pointer to an _Atomic type.
|
2011-10-15 06:48:56 +08:00
|
|
|
Expr *Ptr = TheCall->getArg(0);
|
2011-10-11 10:20:01 +08:00
|
|
|
Ptr = DefaultFunctionArrayLvalueConversion(Ptr).get();
|
|
|
|
const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
|
|
|
|
if (!pointerType) {
|
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
|
|
|
|
<< Ptr->getType() << Ptr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType AtomTy = pointerType->getPointeeType();
|
|
|
|
if (!AtomTy->isAtomicType()) {
|
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic)
|
|
|
|
<< Ptr->getType() << Ptr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
QualType ValType = AtomTy->getAs<AtomicType>()->getValueType();
|
|
|
|
|
|
|
|
if ((Op == AtomicExpr::Add || Op == AtomicExpr::Sub) &&
|
|
|
|
!ValType->isIntegerType() && !ValType->isPointerType()) {
|
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_op_needs_atomic_int_or_ptr)
|
|
|
|
<< Ptr->getType() << Ptr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ValType->isIntegerType() &&
|
|
|
|
(Op == AtomicExpr::And || Op == AtomicExpr::Or || Op == AtomicExpr::Xor)){
|
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_op_logical_needs_atomic_int)
|
|
|
|
<< Ptr->getType() << Ptr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ValType.getObjCLifetime()) {
|
|
|
|
case Qualifiers::OCL_None:
|
|
|
|
case Qualifiers::OCL_ExplicitNone:
|
|
|
|
// okay
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Qualifiers::OCL_Weak:
|
|
|
|
case Qualifiers::OCL_Strong:
|
|
|
|
case Qualifiers::OCL_Autoreleasing:
|
|
|
|
Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
|
|
|
|
<< ValType << Ptr->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ResultType = ValType;
|
2012-01-17 01:27:18 +08:00
|
|
|
if (Op == AtomicExpr::Store || Op == AtomicExpr::Init)
|
2011-10-11 10:20:01 +08:00
|
|
|
ResultType = Context.VoidTy;
|
|
|
|
else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong)
|
|
|
|
ResultType = Context.BoolTy;
|
|
|
|
|
|
|
|
// The first argument --- the pointer --- has a fixed type; we
|
|
|
|
// deduce the types of the rest of the arguments accordingly. Walk
|
|
|
|
// the remaining arguments, converting them to the deduced value type.
|
|
|
|
for (unsigned i = 1; i != NumVals+NumOrders+1; ++i) {
|
|
|
|
ExprResult Arg = TheCall->getArg(i);
|
|
|
|
QualType Ty;
|
|
|
|
if (i < NumVals+1) {
|
|
|
|
// The second argument to a cmpxchg is a pointer to the data which will
|
|
|
|
// be exchanged. The second argument to a pointer add/subtract is the
|
|
|
|
// amount to add/subtract, which must be a ptrdiff_t. The third
|
|
|
|
// argument to a cmpxchg and the second argument in all other cases
|
|
|
|
// is the type of the value.
|
|
|
|
if (i == 1 && (Op == AtomicExpr::CmpXchgWeak ||
|
|
|
|
Op == AtomicExpr::CmpXchgStrong))
|
|
|
|
Ty = Context.getPointerType(ValType.getUnqualifiedType());
|
|
|
|
else if (!ValType->isIntegerType() &&
|
|
|
|
(Op == AtomicExpr::Add || Op == AtomicExpr::Sub))
|
|
|
|
Ty = Context.getPointerDiffType();
|
|
|
|
else
|
|
|
|
Ty = ValType;
|
|
|
|
} else {
|
|
|
|
// The order(s) are always converted to int.
|
|
|
|
Ty = Context.IntTy;
|
|
|
|
}
|
|
|
|
InitializedEntity Entity =
|
|
|
|
InitializedEntity::InitializeParameter(Context, Ty, false);
|
|
|
|
Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
|
|
|
|
if (Arg.isInvalid())
|
|
|
|
return true;
|
|
|
|
TheCall->setArg(i, Arg.get());
|
|
|
|
}
|
|
|
|
|
2011-10-15 06:48:56 +08:00
|
|
|
SmallVector<Expr*, 5> SubExprs;
|
|
|
|
SubExprs.push_back(Ptr);
|
2011-10-11 10:20:01 +08:00
|
|
|
if (Op == AtomicExpr::Load) {
|
2011-10-15 06:48:56 +08:00
|
|
|
SubExprs.push_back(TheCall->getArg(1)); // Order
|
2012-01-17 01:27:18 +08:00
|
|
|
} else if (Op == AtomicExpr::Init) {
|
|
|
|
SubExprs.push_back(TheCall->getArg(1)); // Val1
|
2011-10-11 10:20:01 +08:00
|
|
|
} else if (Op != AtomicExpr::CmpXchgWeak && Op != AtomicExpr::CmpXchgStrong) {
|
2011-10-15 06:48:56 +08:00
|
|
|
SubExprs.push_back(TheCall->getArg(2)); // Order
|
|
|
|
SubExprs.push_back(TheCall->getArg(1)); // Val1
|
2011-10-11 10:20:01 +08:00
|
|
|
} else {
|
2011-10-15 06:48:56 +08:00
|
|
|
SubExprs.push_back(TheCall->getArg(3)); // Order
|
|
|
|
SubExprs.push_back(TheCall->getArg(1)); // Val1
|
|
|
|
SubExprs.push_back(TheCall->getArg(2)); // Val2
|
|
|
|
SubExprs.push_back(TheCall->getArg(4)); // OrderFail
|
2011-10-11 10:20:01 +08:00
|
|
|
}
|
2011-10-15 06:48:56 +08:00
|
|
|
|
|
|
|
return Owned(new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(),
|
|
|
|
SubExprs.data(), SubExprs.size(),
|
|
|
|
ResultType, Op,
|
|
|
|
TheCall->getRParenLoc()));
|
2011-10-11 10:20:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-27 09:09:30 +08:00
|
|
|
/// checkBuiltinArgument - Given a call to a builtin function, perform
|
|
|
|
/// normal type-checking on the given argument, updating the call in
|
|
|
|
/// place. This is useful when a builtin function requires custom
|
|
|
|
/// type-checking for some of its arguments but not necessarily all of
|
|
|
|
/// them.
|
|
|
|
///
|
|
|
|
/// Returns true on error.
|
|
|
|
static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
|
|
|
|
FunctionDecl *Fn = E->getDirectCallee();
|
|
|
|
assert(Fn && "builtin call without direct callee!");
|
|
|
|
|
|
|
|
ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
|
|
|
|
InitializedEntity Entity =
|
|
|
|
InitializedEntity::InitializeParameter(S.Context, Param);
|
|
|
|
|
|
|
|
ExprResult Arg = E->getArg(0);
|
|
|
|
Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
|
|
|
|
if (Arg.isInvalid())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
E->setArg(ArgIndex, Arg.take());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
/// SemaBuiltinAtomicOverloaded - We have a call to a function like
|
|
|
|
/// __sync_fetch_and_add, which is an overloaded function based on the pointer
|
|
|
|
/// type of its first argument. The main ActOnCallExpr routines have already
|
|
|
|
/// promoted the types of arguments because all of these calls are prototyped as
|
|
|
|
/// void(...).
|
|
|
|
///
|
|
|
|
/// This function goes through and does final semantic checking for these
|
|
|
|
/// builtins,
|
2010-08-24 14:29:42 +08:00
|
|
|
ExprResult
|
|
|
|
Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
|
2010-07-10 02:59:35 +08:00
|
|
|
CallExpr *TheCall = (CallExpr *)TheCallResult.get();
|
2009-05-08 14:58:22 +08:00
|
|
|
DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
|
|
|
|
FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
|
|
|
|
|
|
|
|
// Ensure that we have at least one argument to do type inference from.
|
2010-07-10 02:59:35 +08:00
|
|
|
if (TheCall->getNumArgs() < 1) {
|
|
|
|
Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
|
|
|
|
<< 0 << 1 << TheCall->getNumArgs()
|
|
|
|
<< TheCall->getCallee()->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Inspect the first argument of the atomic builtin. This should always be
|
|
|
|
// a pointer type, whose element is an integral scalar or pointer type.
|
|
|
|
// Because it is a pointer type, we don't have to worry about any implicit
|
|
|
|
// casts here.
|
2010-07-10 02:59:35 +08:00
|
|
|
// FIXME: We don't allow floating point scalars as input.
|
2009-05-08 14:58:22 +08:00
|
|
|
Expr *FirstArg = TheCall->getArg(0);
|
2012-01-23 10:35:22 +08:00
|
|
|
ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
|
|
|
|
if (FirstArgResult.isInvalid())
|
|
|
|
return ExprError();
|
|
|
|
FirstArg = FirstArgResult.take();
|
|
|
|
TheCall->setArg(0, FirstArg);
|
|
|
|
|
2011-06-16 07:02:42 +08:00
|
|
|
const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
|
|
|
|
if (!pointerType) {
|
2010-07-10 02:59:35 +08:00
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer)
|
|
|
|
<< FirstArg->getType() << FirstArg->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-06-16 07:02:42 +08:00
|
|
|
QualType ValType = pointerType->getPointeeType();
|
2010-09-18 05:12:38 +08:00
|
|
|
if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
|
2010-07-10 02:59:35 +08:00
|
|
|
!ValType->isBlockPointerType()) {
|
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_builtin_must_be_pointer_intptr)
|
|
|
|
<< FirstArg->getType() << FirstArg->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
2009-05-08 14:58:22 +08:00
|
|
|
|
2011-06-16 07:02:42 +08:00
|
|
|
switch (ValType.getObjCLifetime()) {
|
|
|
|
case Qualifiers::OCL_None:
|
|
|
|
case Qualifiers::OCL_ExplicitNone:
|
|
|
|
// okay
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Qualifiers::OCL_Weak:
|
|
|
|
case Qualifiers::OCL_Strong:
|
|
|
|
case Qualifiers::OCL_Autoreleasing:
|
2011-06-24 08:08:59 +08:00
|
|
|
Diag(DRE->getLocStart(), diag::err_arc_atomic_ownership)
|
2011-06-16 07:02:42 +08:00
|
|
|
<< ValType << FirstArg->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
2011-10-05 15:41:44 +08:00
|
|
|
// Strip any qualifiers off ValType.
|
|
|
|
ValType = ValType.getUnqualifiedType();
|
|
|
|
|
2010-07-19 04:54:12 +08:00
|
|
|
// The majority of builtins return a value, but a few have special return
|
|
|
|
// types, so allow them to override appropriately below.
|
|
|
|
QualType ResultType = ValType;
|
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// We need to figure out which concrete builtin this maps onto. For example,
|
|
|
|
// __sync_fetch_and_add with a 2 byte object turns into
|
|
|
|
// __sync_fetch_and_add_2.
|
|
|
|
#define BUILTIN_ROW(x) \
|
|
|
|
{ Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
|
|
|
|
Builtin::BI##x##_8, Builtin::BI##x##_16 }
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
static const unsigned BuiltinIndices[][5] = {
|
|
|
|
BUILTIN_ROW(__sync_fetch_and_add),
|
|
|
|
BUILTIN_ROW(__sync_fetch_and_sub),
|
|
|
|
BUILTIN_ROW(__sync_fetch_and_or),
|
|
|
|
BUILTIN_ROW(__sync_fetch_and_and),
|
|
|
|
BUILTIN_ROW(__sync_fetch_and_xor),
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
BUILTIN_ROW(__sync_add_and_fetch),
|
|
|
|
BUILTIN_ROW(__sync_sub_and_fetch),
|
|
|
|
BUILTIN_ROW(__sync_and_and_fetch),
|
|
|
|
BUILTIN_ROW(__sync_or_and_fetch),
|
|
|
|
BUILTIN_ROW(__sync_xor_and_fetch),
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
BUILTIN_ROW(__sync_val_compare_and_swap),
|
|
|
|
BUILTIN_ROW(__sync_bool_compare_and_swap),
|
|
|
|
BUILTIN_ROW(__sync_lock_test_and_set),
|
2011-04-09 11:57:26 +08:00
|
|
|
BUILTIN_ROW(__sync_lock_release),
|
|
|
|
BUILTIN_ROW(__sync_swap)
|
2009-05-08 14:58:22 +08:00
|
|
|
};
|
2009-09-09 23:08:12 +08:00
|
|
|
#undef BUILTIN_ROW
|
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Determine the index of the size.
|
|
|
|
unsigned SizeIndex;
|
2010-01-12 01:06:35 +08:00
|
|
|
switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
|
2009-05-08 14:58:22 +08:00
|
|
|
case 1: SizeIndex = 0; break;
|
|
|
|
case 2: SizeIndex = 1; break;
|
|
|
|
case 4: SizeIndex = 2; break;
|
|
|
|
case 8: SizeIndex = 3; break;
|
|
|
|
case 16: SizeIndex = 4; break;
|
|
|
|
default:
|
2010-07-10 02:59:35 +08:00
|
|
|
Diag(DRE->getLocStart(), diag::err_atomic_builtin_pointer_size)
|
|
|
|
<< FirstArg->getType() << FirstArg->getSourceRange();
|
|
|
|
return ExprError();
|
2009-05-08 14:58:22 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Each of these builtins has one pointer argument, followed by some number of
|
|
|
|
// values (0, 1 or 2) followed by a potentially empty varags list of stuff
|
|
|
|
// that we ignore. Find out which row of BuiltinIndices to read from as well
|
|
|
|
// as the number of fixed args.
|
2009-09-12 08:22:50 +08:00
|
|
|
unsigned BuiltinID = FDecl->getBuiltinID();
|
2009-05-08 14:58:22 +08:00
|
|
|
unsigned BuiltinIndex, NumFixed = 1;
|
|
|
|
switch (BuiltinID) {
|
2011-09-23 13:06:16 +08:00
|
|
|
default: llvm_unreachable("Unknown overloaded atomic builtin!");
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_fetch_and_add:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_add_16:
|
|
|
|
BuiltinIndex = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_fetch_and_sub:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_sub_16:
|
|
|
|
BuiltinIndex = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_fetch_and_or:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_or_16:
|
|
|
|
BuiltinIndex = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_fetch_and_and:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_and_16:
|
|
|
|
BuiltinIndex = 3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_fetch_and_xor:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_1:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_2:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_4:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_8:
|
|
|
|
case Builtin::BI__sync_fetch_and_xor_16:
|
|
|
|
BuiltinIndex = 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_add_and_fetch:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_add_and_fetch_16:
|
|
|
|
BuiltinIndex = 5;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_sub_and_fetch:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_sub_and_fetch_16:
|
|
|
|
BuiltinIndex = 6;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_and_and_fetch:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_and_and_fetch_16:
|
|
|
|
BuiltinIndex = 7;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_or_and_fetch:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_or_and_fetch_16:
|
|
|
|
BuiltinIndex = 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Builtin::BI__sync_xor_and_fetch:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_1:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_2:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_4:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_8:
|
|
|
|
case Builtin::BI__sync_xor_and_fetch_16:
|
|
|
|
BuiltinIndex = 9;
|
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_val_compare_and_swap:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_val_compare_and_swap_1:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_2:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_4:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_8:
|
|
|
|
case Builtin::BI__sync_val_compare_and_swap_16:
|
2010-03-26 01:13:09 +08:00
|
|
|
BuiltinIndex = 10;
|
2009-05-08 14:58:22 +08:00
|
|
|
NumFixed = 2;
|
|
|
|
break;
|
2011-11-29 00:30:08 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_bool_compare_and_swap:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_1:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_2:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_4:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_8:
|
|
|
|
case Builtin::BI__sync_bool_compare_and_swap_16:
|
2010-03-26 01:13:09 +08:00
|
|
|
BuiltinIndex = 11;
|
2009-05-08 14:58:22 +08:00
|
|
|
NumFixed = 2;
|
2010-07-19 04:54:12 +08:00
|
|
|
ResultType = Context.BoolTy;
|
2009-05-08 14:58:22 +08:00
|
|
|
break;
|
2011-11-29 00:30:08 +08:00
|
|
|
|
|
|
|
case Builtin::BI__sync_lock_test_and_set:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_1:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_2:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_4:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_8:
|
|
|
|
case Builtin::BI__sync_lock_test_and_set_16:
|
|
|
|
BuiltinIndex = 12;
|
|
|
|
break;
|
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
case Builtin::BI__sync_lock_release:
|
2011-11-29 00:30:08 +08:00
|
|
|
case Builtin::BI__sync_lock_release_1:
|
|
|
|
case Builtin::BI__sync_lock_release_2:
|
|
|
|
case Builtin::BI__sync_lock_release_4:
|
|
|
|
case Builtin::BI__sync_lock_release_8:
|
|
|
|
case Builtin::BI__sync_lock_release_16:
|
2010-03-26 01:13:09 +08:00
|
|
|
BuiltinIndex = 13;
|
2009-05-08 14:58:22 +08:00
|
|
|
NumFixed = 0;
|
2010-07-19 04:54:12 +08:00
|
|
|
ResultType = Context.VoidTy;
|
2009-05-08 14:58:22 +08:00
|
|
|
break;
|
2011-11-29 00:30:08 +08:00
|
|
|
|
|
|
|
case Builtin::BI__sync_swap:
|
|
|
|
case Builtin::BI__sync_swap_1:
|
|
|
|
case Builtin::BI__sync_swap_2:
|
|
|
|
case Builtin::BI__sync_swap_4:
|
|
|
|
case Builtin::BI__sync_swap_8:
|
|
|
|
case Builtin::BI__sync_swap_16:
|
|
|
|
BuiltinIndex = 14;
|
|
|
|
break;
|
2009-05-08 14:58:22 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Now that we know how many fixed arguments we expect, first check that we
|
|
|
|
// have at least that many.
|
2010-07-10 02:59:35 +08:00
|
|
|
if (TheCall->getNumArgs() < 1+NumFixed) {
|
|
|
|
Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args_at_least)
|
|
|
|
<< 0 << 1+NumFixed << TheCall->getNumArgs()
|
|
|
|
<< TheCall->getCallee()->getSourceRange();
|
|
|
|
return ExprError();
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 23:36:58 +08:00
|
|
|
// Get the decl for the concrete builtin from this, we can tell what the
|
|
|
|
// concrete integer type we should convert to is.
|
|
|
|
unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
|
|
|
|
const char *NewBuiltinName = Context.BuiltinInfo.GetName(NewBuiltinID);
|
|
|
|
IdentifierInfo *NewBuiltinII = PP.getIdentifierInfo(NewBuiltinName);
|
2009-09-09 23:08:12 +08:00
|
|
|
FunctionDecl *NewBuiltinDecl =
|
2009-05-08 23:36:58 +08:00
|
|
|
cast<FunctionDecl>(LazilyCreateBuiltin(NewBuiltinII, NewBuiltinID,
|
|
|
|
TUScope, false, DRE->getLocStart()));
|
2010-07-10 02:59:35 +08:00
|
|
|
|
2010-08-07 14:22:56 +08:00
|
|
|
// The first argument --- the pointer --- has a fixed type; we
|
|
|
|
// deduce the types of the rest of the arguments accordingly. Walk
|
|
|
|
// the remaining arguments, converting them to the deduced value type.
|
2009-05-08 14:58:22 +08:00
|
|
|
for (unsigned i = 0; i != NumFixed; ++i) {
|
2011-04-09 02:41:53 +08:00
|
|
|
ExprResult Arg = TheCall->getArg(i+1);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// GCC does an implicit conversion to the pointer or integer ValType. This
|
|
|
|
// can fail in some cases (1i -> int**), check for this error case now.
|
2011-10-05 15:41:44 +08:00
|
|
|
// Initialize the argument.
|
|
|
|
InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
|
|
|
|
ValType, /*consume*/ false);
|
|
|
|
Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
|
2011-04-09 02:41:53 +08:00
|
|
|
if (Arg.isInvalid())
|
2010-07-10 02:59:35 +08:00
|
|
|
return ExprError();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Okay, we have something that *can* be converted to the right type. Check
|
|
|
|
// to see if there is a potentially weird extension going on here. This can
|
|
|
|
// happen when you do an atomic operation on something like an char* and
|
|
|
|
// pass in 42. The 42 gets converted to char. This is even more strange
|
|
|
|
// for things like 45.123 -> char, etc.
|
2009-09-09 23:08:12 +08:00
|
|
|
// FIXME: Do this check.
|
2011-10-05 15:41:44 +08:00
|
|
|
TheCall->setArg(i+1, Arg.take());
|
2009-05-08 14:58:22 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-09-10 00:51:10 +08:00
|
|
|
ASTContext& Context = this->getASTContext();
|
|
|
|
|
|
|
|
// Create a new DeclRefExpr to refer to the new decl.
|
|
|
|
DeclRefExpr* NewDRE = DeclRefExpr::Create(
|
|
|
|
Context,
|
|
|
|
DRE->getQualifierLoc(),
|
|
|
|
NewBuiltinDecl,
|
|
|
|
DRE->getLocation(),
|
|
|
|
NewBuiltinDecl->getType(),
|
|
|
|
DRE->getValueKind());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-08 14:58:22 +08:00
|
|
|
// Set the callee in the CallExpr.
|
|
|
|
// FIXME: This leaks the original parens and implicit casts.
|
2011-09-10 00:51:10 +08:00
|
|
|
ExprResult PromotedCall = UsualUnaryConversions(NewDRE);
|
2011-04-09 02:41:53 +08:00
|
|
|
if (PromotedCall.isInvalid())
|
|
|
|
return ExprError();
|
|
|
|
TheCall->setCallee(PromotedCall.take());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-07-18 15:23:17 +08:00
|
|
|
// Change the result type of the call to match the original value type. This
|
|
|
|
// is arbitrary, but the codegen for these builtins ins design to handle it
|
|
|
|
// gracefully.
|
2010-07-19 04:54:12 +08:00
|
|
|
TheCall->setType(ResultType);
|
2010-07-10 02:59:35 +08:00
|
|
|
|
|
|
|
return move(TheCallResult);
|
2009-05-08 14:58:22 +08:00
|
|
|
}
|
|
|
|
|
2009-02-18 14:01:06 +08:00
|
|
|
/// CheckObjCString - Checks that the argument to the builtin
|
2007-08-17 13:31:46 +08:00
|
|
|
/// CFString constructor is correct
|
2009-04-14 04:26:29 +08:00
|
|
|
/// Note: It might also make sense to do the UTF-16 conversion here (would
|
|
|
|
/// simplify the backend).
|
2009-02-18 14:01:06 +08:00
|
|
|
bool Sema::CheckObjCString(Expr *Arg) {
|
2008-02-13 09:02:39 +08:00
|
|
|
Arg = Arg->IgnoreParenCasts();
|
2007-08-17 13:31:46 +08:00
|
|
|
StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
|
|
|
|
|
2011-07-27 13:40:30 +08:00
|
|
|
if (!Literal || !Literal->isAscii()) {
|
2008-11-19 13:08:23 +08:00
|
|
|
Diag(Arg->getLocStart(), diag::err_cfstring_literal_not_string_constant)
|
|
|
|
<< Arg->getSourceRange();
|
2007-08-17 23:44:17 +08:00
|
|
|
return true;
|
2007-08-17 13:31:46 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-09-08 03:38:13 +08:00
|
|
|
if (Literal->containsNonAsciiOrNull()) {
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef String = Literal->getString();
|
2010-09-08 03:38:13 +08:00
|
|
|
unsigned NumBytes = String.size();
|
2011-07-23 18:55:15 +08:00
|
|
|
SmallVector<UTF16, 128> ToBuf(NumBytes);
|
2010-09-08 03:38:13 +08:00
|
|
|
const UTF8 *FromPtr = (UTF8 *)String.data();
|
|
|
|
UTF16 *ToPtr = &ToBuf[0];
|
|
|
|
|
|
|
|
ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes,
|
|
|
|
&ToPtr, ToPtr + NumBytes,
|
|
|
|
strictConversion);
|
|
|
|
// Check for conversion failure.
|
|
|
|
if (Result != conversionOK)
|
|
|
|
Diag(Arg->getLocStart(),
|
|
|
|
diag::warn_cfstring_truncated) << Arg->getSourceRange();
|
|
|
|
}
|
2007-08-17 23:44:17 +08:00
|
|
|
return false;
|
2007-08-11 04:18:51 +08:00
|
|
|
}
|
|
|
|
|
2007-12-20 08:05:45 +08:00
|
|
|
/// SemaBuiltinVAStart - Check the arguments to __builtin_va_start for validity.
|
|
|
|
/// Emit an error and return true on failure, return false on success.
|
2007-12-28 13:29:59 +08:00
|
|
|
bool Sema::SemaBuiltinVAStart(CallExpr *TheCall) {
|
|
|
|
Expr *Fn = TheCall->getCallee();
|
|
|
|
if (TheCall->getNumArgs() > 2) {
|
2008-11-22 02:44:24 +08:00
|
|
|
Diag(TheCall->getArg(2)->getLocStart(),
|
2008-11-19 13:08:23 +08:00
|
|
|
diag::err_typecheck_call_too_many_args)
|
2010-04-16 12:56:46 +08:00
|
|
|
<< 0 /*function call*/ << 2 << TheCall->getNumArgs()
|
|
|
|
<< Fn->getSourceRange()
|
2009-09-09 23:08:12 +08:00
|
|
|
<< SourceRange(TheCall->getArg(2)->getLocStart(),
|
2008-11-19 13:08:23 +08:00
|
|
|
(*(TheCall->arg_end()-1))->getLocEnd());
|
2007-12-20 07:59:04 +08:00
|
|
|
return true;
|
|
|
|
}
|
2008-12-16 06:05:35 +08:00
|
|
|
|
|
|
|
if (TheCall->getNumArgs() < 2) {
|
2010-04-16 12:48:22 +08:00
|
|
|
return Diag(TheCall->getLocEnd(),
|
|
|
|
diag::err_typecheck_call_too_few_args_at_least)
|
|
|
|
<< 0 /*function call*/ << 2 << TheCall->getNumArgs();
|
2008-12-16 06:05:35 +08:00
|
|
|
}
|
|
|
|
|
2011-08-27 09:09:30 +08:00
|
|
|
// Type-check the first argument normally.
|
|
|
|
if (checkBuiltinArgument(*this, TheCall, 0))
|
|
|
|
return true;
|
|
|
|
|
2007-12-20 08:05:45 +08:00
|
|
|
// Determine whether the current function is variadic or not.
|
Keep an explicit stack of function and block scopes, each element of
which has the label map, switch statement stack, etc. Previously, we
had a single set of maps in Sema (for the function) along with a stack
of block scopes. However, this lead to funky behavior with nested
functions, e.g., in the member functions of local classes.
The explicit-stack approach is far cleaner, and we retain a 1-element
cache so that we're not malloc/free'ing every time we enter a
function. Fixes PR6382.
Also, tweaked the unused-variable warning suppression logic to look at
errors within a given Scope rather than within a given function. The
prior code wasn't looking at the right number-of-errors count when
dealing with blocks, since the block's count would be deallocated
before we got to ActOnPopScope. This approach works with nested
blocks/functions, and gives tighter error recovery.
llvm-svn: 97518
2010-03-02 07:15:13 +08:00
|
|
|
BlockScopeInfo *CurBlock = getCurBlock();
|
2007-12-20 08:05:45 +08:00
|
|
|
bool isVariadic;
|
2009-04-16 03:33:47 +08:00
|
|
|
if (CurBlock)
|
2010-06-05 03:02:56 +08:00
|
|
|
isVariadic = CurBlock->TheDecl->isVariadic();
|
2010-04-30 00:49:01 +08:00
|
|
|
else if (FunctionDecl *FD = getCurFunctionDecl())
|
|
|
|
isVariadic = FD->isVariadic();
|
|
|
|
else
|
2008-06-28 14:07:14 +08:00
|
|
|
isVariadic = getCurMethodDecl()->isVariadic();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-20 08:05:45 +08:00
|
|
|
if (!isVariadic) {
|
2007-12-20 07:59:04 +08:00
|
|
|
Diag(Fn->getLocStart(), diag::err_va_start_used_in_non_variadic_function);
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-20 07:59:04 +08:00
|
|
|
// Verify that the second argument to the builtin is the last argument of the
|
|
|
|
// current function or method.
|
|
|
|
bool SecondArgIsLastNamedArgument = false;
|
2008-02-13 09:22:59 +08:00
|
|
|
const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-02-11 12:20:54 +08:00
|
|
|
if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
|
|
|
|
if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
|
2007-12-20 07:59:04 +08:00
|
|
|
// FIXME: This isn't correct for methods (results in bogus warning).
|
|
|
|
// Get the last formal in the current function.
|
2008-02-11 12:20:54 +08:00
|
|
|
const ParmVarDecl *LastArg;
|
2009-04-16 03:33:47 +08:00
|
|
|
if (CurBlock)
|
|
|
|
LastArg = *(CurBlock->TheDecl->param_end()-1);
|
|
|
|
else if (FunctionDecl *FD = getCurFunctionDecl())
|
2008-12-05 07:50:19 +08:00
|
|
|
LastArg = *(FD->param_end()-1);
|
2007-12-20 07:59:04 +08:00
|
|
|
else
|
2008-06-28 14:07:14 +08:00
|
|
|
LastArg = *(getCurMethodDecl()->param_end()-1);
|
2007-12-20 07:59:04 +08:00
|
|
|
SecondArgIsLastNamedArgument = PV == LastArg;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-20 07:59:04 +08:00
|
|
|
if (!SecondArgIsLastNamedArgument)
|
2009-09-09 23:08:12 +08:00
|
|
|
Diag(TheCall->getArg(1)->getLocStart(),
|
2007-12-20 07:59:04 +08:00
|
|
|
diag::warn_second_parameter_of_va_start_not_last_named_argument);
|
|
|
|
return false;
|
2008-05-20 16:23:37 +08:00
|
|
|
}
|
2007-12-20 07:59:04 +08:00
|
|
|
|
2007-12-20 08:26:33 +08:00
|
|
|
/// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
|
|
|
|
/// friends. This is declared to take (...), so we have to check everything.
|
2007-12-28 13:29:59 +08:00
|
|
|
bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
|
|
|
|
if (TheCall->getNumArgs() < 2)
|
2008-11-22 02:44:24 +08:00
|
|
|
return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
|
2010-04-16 12:48:22 +08:00
|
|
|
<< 0 << 2 << TheCall->getNumArgs()/*function call*/;
|
2007-12-28 13:29:59 +08:00
|
|
|
if (TheCall->getNumArgs() > 2)
|
2009-09-09 23:08:12 +08:00
|
|
|
return Diag(TheCall->getArg(2)->getLocStart(),
|
2008-11-19 13:08:23 +08:00
|
|
|
diag::err_typecheck_call_too_many_args)
|
2010-04-16 12:56:46 +08:00
|
|
|
<< 0 /*function call*/ << 2 << TheCall->getNumArgs()
|
2008-11-19 13:08:23 +08:00
|
|
|
<< SourceRange(TheCall->getArg(2)->getLocStart(),
|
|
|
|
(*(TheCall->arg_end()-1))->getLocEnd());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-04-09 02:41:53 +08:00
|
|
|
ExprResult OrigArg0 = TheCall->getArg(0);
|
|
|
|
ExprResult OrigArg1 = TheCall->getArg(1);
|
2009-05-20 06:10:17 +08:00
|
|
|
|
2007-12-20 08:26:33 +08:00
|
|
|
// Do standard promotions between the two arguments, returning their common
|
|
|
|
// type.
|
2007-12-28 13:29:59 +08:00
|
|
|
QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
|
2011-04-09 02:41:53 +08:00
|
|
|
if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
|
|
|
|
return true;
|
2009-02-20 03:28:43 +08:00
|
|
|
|
|
|
|
// Make sure any conversions are pushed back into the call; this is
|
|
|
|
// type safe since unordered compare builtins are declared as "_Bool
|
|
|
|
// foo(...)".
|
2011-04-09 02:41:53 +08:00
|
|
|
TheCall->setArg(0, OrigArg0.get());
|
|
|
|
TheCall->setArg(1, OrigArg1.get());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-04-09 02:41:53 +08:00
|
|
|
if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
|
2009-05-20 06:10:17 +08:00
|
|
|
return false;
|
|
|
|
|
2007-12-20 08:26:33 +08:00
|
|
|
// If the common type isn't a real floating type, then the arguments were
|
|
|
|
// invalid for this operation.
|
|
|
|
if (!Res->isRealFloatingType())
|
2011-04-09 02:41:53 +08:00
|
|
|
return Diag(OrigArg0.get()->getLocStart(),
|
2008-11-19 13:08:23 +08:00
|
|
|
diag::err_typecheck_call_invalid_ordered_compare)
|
2011-04-09 02:41:53 +08:00
|
|
|
<< OrigArg0.get()->getType() << OrigArg1.get()->getType()
|
|
|
|
<< SourceRange(OrigArg0.get()->getLocStart(), OrigArg1.get()->getLocEnd());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-20 08:26:33 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-16 06:42:31 +08:00
|
|
|
/// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
|
|
|
|
/// __builtin_isnan and friends. This is declared to take (...), so we have
|
2010-02-16 18:07:31 +08:00
|
|
|
/// to check everything. We expect the last argument to be a floating point
|
|
|
|
/// value.
|
|
|
|
bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
|
|
|
|
if (TheCall->getNumArgs() < NumArgs)
|
2009-09-01 04:06:00 +08:00
|
|
|
return Diag(TheCall->getLocEnd(), diag::err_typecheck_call_too_few_args)
|
2010-04-16 12:48:22 +08:00
|
|
|
<< 0 << NumArgs << TheCall->getNumArgs()/*function call*/;
|
2010-02-16 18:07:31 +08:00
|
|
|
if (TheCall->getNumArgs() > NumArgs)
|
|
|
|
return Diag(TheCall->getArg(NumArgs)->getLocStart(),
|
2009-09-01 04:06:00 +08:00
|
|
|
diag::err_typecheck_call_too_many_args)
|
2010-04-16 12:56:46 +08:00
|
|
|
<< 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
|
2010-02-16 18:07:31 +08:00
|
|
|
<< SourceRange(TheCall->getArg(NumArgs)->getLocStart(),
|
2009-09-01 04:06:00 +08:00
|
|
|
(*(TheCall->arg_end()-1))->getLocEnd());
|
|
|
|
|
2010-02-16 18:07:31 +08:00
|
|
|
Expr *OrigArg = TheCall->getArg(NumArgs-1);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-01 04:06:00 +08:00
|
|
|
if (OrigArg->isTypeDependent())
|
|
|
|
return false;
|
|
|
|
|
2010-05-06 13:50:07 +08:00
|
|
|
// This operation requires a non-_Complex floating-point number.
|
2009-09-01 04:06:00 +08:00
|
|
|
if (!OrigArg->getType()->isRealFloatingType())
|
2009-09-09 23:08:12 +08:00
|
|
|
return Diag(OrigArg->getLocStart(),
|
2009-09-01 04:06:00 +08:00
|
|
|
diag::err_typecheck_call_invalid_unary_fp)
|
|
|
|
<< OrigArg->getType() << OrigArg->getSourceRange();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-05-06 13:50:07 +08:00
|
|
|
// If this is an implicit conversion from float -> double, remove it.
|
|
|
|
if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
|
|
|
|
Expr *CastArg = Cast->getSubExpr();
|
|
|
|
if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
|
|
|
|
assert(Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) &&
|
|
|
|
"promotion from float to double is the only expected cast here");
|
|
|
|
Cast->setSubExpr(0);
|
|
|
|
TheCall->setArg(NumArgs-1, CastArg);
|
|
|
|
OrigArg = CastArg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-01 04:06:00 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-15 03:38:39 +08:00
|
|
|
/// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
|
|
|
|
// This is declared to take (...), so we have to check everything.
|
2010-08-24 14:29:42 +08:00
|
|
|
ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
|
2010-06-08 08:16:34 +08:00
|
|
|
if (TheCall->getNumArgs() < 2)
|
2009-01-19 08:08:26 +08:00
|
|
|
return ExprError(Diag(TheCall->getLocEnd(),
|
2010-04-16 12:48:22 +08:00
|
|
|
diag::err_typecheck_call_too_few_args_at_least)
|
2010-06-08 08:16:34 +08:00
|
|
|
<< 0 /*function call*/ << 2 << TheCall->getNumArgs()
|
2010-04-16 12:48:22 +08:00
|
|
|
<< TheCall->getSourceRange());
|
2008-05-15 03:38:39 +08:00
|
|
|
|
2010-06-08 08:16:34 +08:00
|
|
|
// Determine which of the following types of shufflevector we're checking:
|
|
|
|
// 1) unary, vector mask: (lhs, mask)
|
|
|
|
// 2) binary, vector mask: (lhs, rhs, mask)
|
|
|
|
// 3) binary, scalar mask: (lhs, rhs, index, ..., index)
|
|
|
|
QualType resType = TheCall->getArg(0)->getType();
|
|
|
|
unsigned numElements = 0;
|
|
|
|
|
2009-05-20 06:10:17 +08:00
|
|
|
if (!TheCall->getArg(0)->isTypeDependent() &&
|
|
|
|
!TheCall->getArg(1)->isTypeDependent()) {
|
2010-06-08 08:16:34 +08:00
|
|
|
QualType LHSType = TheCall->getArg(0)->getType();
|
|
|
|
QualType RHSType = TheCall->getArg(1)->getType();
|
|
|
|
|
|
|
|
if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
|
2009-05-20 06:10:17 +08:00
|
|
|
Diag(TheCall->getLocStart(), diag::err_shufflevector_non_vector)
|
2009-09-09 23:08:12 +08:00
|
|
|
<< SourceRange(TheCall->getArg(0)->getLocStart(),
|
2009-05-20 06:10:17 +08:00
|
|
|
TheCall->getArg(1)->getLocEnd());
|
|
|
|
return ExprError();
|
|
|
|
}
|
2010-06-08 08:16:34 +08:00
|
|
|
|
|
|
|
numElements = LHSType->getAs<VectorType>()->getNumElements();
|
|
|
|
unsigned numResElements = TheCall->getNumArgs() - 2;
|
|
|
|
|
|
|
|
// Check to see if we have a call with 2 vector arguments, the unary shuffle
|
|
|
|
// with mask. If so, verify that RHS is an integer vector type with the
|
|
|
|
// same number of elts as lhs.
|
|
|
|
if (TheCall->getNumArgs() == 2) {
|
2010-07-23 23:58:24 +08:00
|
|
|
if (!RHSType->hasIntegerRepresentation() ||
|
2010-06-08 08:16:34 +08:00
|
|
|
RHSType->getAs<VectorType>()->getNumElements() != numElements)
|
|
|
|
Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
|
|
|
|
<< SourceRange(TheCall->getArg(1)->getLocStart(),
|
|
|
|
TheCall->getArg(1)->getLocEnd());
|
|
|
|
numResElements = numElements;
|
|
|
|
}
|
|
|
|
else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
|
2009-05-20 06:10:17 +08:00
|
|
|
Diag(TheCall->getLocStart(), diag::err_shufflevector_incompatible_vector)
|
2009-09-09 23:08:12 +08:00
|
|
|
<< SourceRange(TheCall->getArg(0)->getLocStart(),
|
2009-05-20 06:10:17 +08:00
|
|
|
TheCall->getArg(1)->getLocEnd());
|
|
|
|
return ExprError();
|
2010-06-08 08:16:34 +08:00
|
|
|
} else if (numElements != numResElements) {
|
|
|
|
QualType eltType = LHSType->getAs<VectorType>()->getElementType();
|
2010-06-23 14:00:24 +08:00
|
|
|
resType = Context.getVectorType(eltType, numResElements,
|
2010-11-11 05:56:12 +08:00
|
|
|
VectorType::GenericVector);
|
2009-05-20 06:10:17 +08:00
|
|
|
}
|
2008-05-15 03:38:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
|
2009-05-20 06:10:17 +08:00
|
|
|
if (TheCall->getArg(i)->isTypeDependent() ||
|
|
|
|
TheCall->getArg(i)->isValueDependent())
|
|
|
|
continue;
|
|
|
|
|
2010-06-08 08:16:34 +08:00
|
|
|
llvm::APSInt Result(32);
|
|
|
|
if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
|
|
|
|
return ExprError(Diag(TheCall->getLocStart(),
|
|
|
|
diag::err_shufflevector_nonconstant_argument)
|
|
|
|
<< TheCall->getArg(i)->getSourceRange());
|
2009-01-19 08:08:26 +08:00
|
|
|
|
2008-08-10 10:05:13 +08:00
|
|
|
if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
|
2009-01-19 08:08:26 +08:00
|
|
|
return ExprError(Diag(TheCall->getLocStart(),
|
2008-11-19 13:08:23 +08:00
|
|
|
diag::err_shufflevector_argument_too_large)
|
2009-01-19 08:08:26 +08:00
|
|
|
<< TheCall->getArg(i)->getSourceRange());
|
2008-05-15 03:38:39 +08:00
|
|
|
}
|
|
|
|
|
2011-07-23 18:55:15 +08:00
|
|
|
SmallVector<Expr*, 32> exprs;
|
2008-05-15 03:38:39 +08:00
|
|
|
|
2008-08-10 10:05:13 +08:00
|
|
|
for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
|
2008-05-15 03:38:39 +08:00
|
|
|
exprs.push_back(TheCall->getArg(i));
|
|
|
|
TheCall->setArg(i, 0);
|
|
|
|
}
|
|
|
|
|
2009-08-12 10:10:25 +08:00
|
|
|
return Owned(new (Context) ShuffleVectorExpr(Context, exprs.begin(),
|
2010-06-08 08:16:34 +08:00
|
|
|
exprs.size(), resType,
|
2009-02-07 09:47:29 +08:00
|
|
|
TheCall->getCallee()->getLocStart(),
|
|
|
|
TheCall->getRParenLoc()));
|
2008-05-15 03:38:39 +08:00
|
|
|
}
|
2007-12-20 07:59:04 +08:00
|
|
|
|
2008-07-22 06:59:13 +08:00
|
|
|
/// SemaBuiltinPrefetch - Handle __builtin_prefetch.
|
|
|
|
// This is declared to take (const void*, ...) and can take two
|
|
|
|
// optional constant int args.
|
|
|
|
bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
|
2008-11-19 13:08:23 +08:00
|
|
|
unsigned NumArgs = TheCall->getNumArgs();
|
2008-07-22 06:59:13 +08:00
|
|
|
|
2008-11-19 13:08:23 +08:00
|
|
|
if (NumArgs > 3)
|
2010-04-16 12:56:46 +08:00
|
|
|
return Diag(TheCall->getLocEnd(),
|
|
|
|
diag::err_typecheck_call_too_many_args_at_most)
|
|
|
|
<< 0 /*function call*/ << 3 << NumArgs
|
|
|
|
<< TheCall->getSourceRange();
|
2008-07-22 06:59:13 +08:00
|
|
|
|
|
|
|
// Argument 0 is checked for us and the remaining arguments must be
|
|
|
|
// constant integers.
|
2008-11-19 13:08:23 +08:00
|
|
|
for (unsigned i = 1; i != NumArgs; ++i) {
|
2008-07-22 06:59:13 +08:00
|
|
|
Expr *Arg = TheCall->getArg(i);
|
2010-04-17 10:26:23 +08:00
|
|
|
|
2009-12-04 08:30:06 +08:00
|
|
|
llvm::APSInt Result;
|
2010-04-17 10:26:23 +08:00
|
|
|
if (SemaBuiltinConstantArg(TheCall, i, Result))
|
|
|
|
return true;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-07-22 06:59:13 +08:00
|
|
|
// FIXME: gcc issues a warning and rewrites these to 0. These
|
|
|
|
// seems especially odd for the third argument since the default
|
|
|
|
// is 3.
|
2008-11-19 13:08:23 +08:00
|
|
|
if (i == 1) {
|
2009-12-04 08:30:06 +08:00
|
|
|
if (Result.getLimitedValue() > 1)
|
2008-11-19 13:08:23 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
|
2009-09-23 14:06:36 +08:00
|
|
|
<< "0" << "1" << Arg->getSourceRange();
|
2008-07-22 06:59:13 +08:00
|
|
|
} else {
|
2009-12-04 08:30:06 +08:00
|
|
|
if (Result.getLimitedValue() > 3)
|
2008-11-19 13:08:23 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
|
2009-09-23 14:06:36 +08:00
|
|
|
<< "0" << "3" << Arg->getSourceRange();
|
2008-07-22 06:59:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-19 13:08:23 +08:00
|
|
|
return false;
|
2008-07-22 06:59:13 +08:00
|
|
|
}
|
|
|
|
|
2010-04-17 10:26:23 +08:00
|
|
|
/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
|
|
|
|
/// TheCall is a constant expression.
|
|
|
|
bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
|
|
|
|
llvm::APSInt &Result) {
|
|
|
|
Expr *Arg = TheCall->getArg(ArgNum);
|
|
|
|
DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
|
|
|
|
FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
|
|
|
|
|
|
|
|
if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
|
|
|
|
|
|
|
|
if (!Arg->isIntegerConstantExpr(Result, Context))
|
|
|
|
return Diag(TheCall->getLocStart(), diag::err_constant_integer_arg_type)
|
2010-04-20 02:23:02 +08:00
|
|
|
<< FDecl->getDeclName() << Arg->getSourceRange();
|
2010-04-17 10:26:23 +08:00
|
|
|
|
2009-09-23 14:06:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-09-04 05:13:56 +08:00
|
|
|
/// SemaBuiltinObjectSize - Handle __builtin_object_size(void *ptr,
|
|
|
|
/// int type). This simply type checks that type is one of the defined
|
|
|
|
/// constants (0-3).
|
2011-04-15 13:22:18 +08:00
|
|
|
// For compatibility check 0-3, llvm only handles 0 and 2.
|
2008-09-04 05:13:56 +08:00
|
|
|
bool Sema::SemaBuiltinObjectSize(CallExpr *TheCall) {
|
2010-04-17 10:26:23 +08:00
|
|
|
llvm::APSInt Result;
|
|
|
|
|
|
|
|
// Check constant-ness first.
|
|
|
|
if (SemaBuiltinConstantArg(TheCall, 1, Result))
|
|
|
|
return true;
|
2008-09-04 05:13:56 +08:00
|
|
|
|
2010-04-17 10:26:23 +08:00
|
|
|
Expr *Arg = TheCall->getArg(1);
|
2008-09-04 05:13:56 +08:00
|
|
|
if (Result.getSExtValue() < 0 || Result.getSExtValue() > 3) {
|
2008-11-19 13:08:23 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_argument_invalid_range)
|
|
|
|
<< "0" << "3" << SourceRange(Arg->getLocStart(), Arg->getLocEnd());
|
2008-09-04 05:13:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-03 14:04:26 +08:00
|
|
|
/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
|
2009-05-03 12:46:36 +08:00
|
|
|
/// This checks that val is a constant 1.
|
|
|
|
bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
|
|
|
|
Expr *Arg = TheCall->getArg(1);
|
2010-04-17 10:26:23 +08:00
|
|
|
llvm::APSInt Result;
|
2009-05-20 06:10:17 +08:00
|
|
|
|
2010-04-17 10:26:23 +08:00
|
|
|
// TODO: This is less than ideal. Overload this to take a value.
|
|
|
|
if (SemaBuiltinConstantArg(TheCall, 1, Result))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (Result != 1)
|
2009-05-03 12:46:36 +08:00
|
|
|
return Diag(TheCall->getLocStart(), diag::err_builtin_longjmp_invalid_val)
|
|
|
|
<< SourceRange(Arg->getLocStart(), Arg->getLocEnd());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-02-25 07:03:04 +08:00
|
|
|
// Handle i > 1 ? "x" : "y", recursively.
|
2012-01-18 04:03:31 +08:00
|
|
|
bool Sema::SemaCheckStringLiteral(const Expr *E, Expr **Args,
|
|
|
|
unsigned NumArgs, bool HasVAListArg,
|
2010-07-16 10:11:22 +08:00
|
|
|
unsigned format_idx, unsigned firstDataArg,
|
2011-10-28 08:41:25 +08:00
|
|
|
bool isPrintf, bool inFunctionCall) {
|
2010-09-09 11:51:39 +08:00
|
|
|
tryAgain:
|
2009-05-20 06:10:17 +08:00
|
|
|
if (E->isTypeDependent() || E->isValueDependent())
|
|
|
|
return false;
|
2009-01-13 07:09:09 +08:00
|
|
|
|
2011-04-15 08:35:48 +08:00
|
|
|
E = E->IgnoreParens();
|
|
|
|
|
2009-01-13 07:09:09 +08:00
|
|
|
switch (E->getStmtClass()) {
|
2011-02-17 18:25:35 +08:00
|
|
|
case Stmt::BinaryConditionalOperatorClass:
|
2009-01-13 07:09:09 +08:00
|
|
|
case Stmt::ConditionalOperatorClass: {
|
2011-02-17 18:25:35 +08:00
|
|
|
const AbstractConditionalOperator *C = cast<AbstractConditionalOperator>(E);
|
2012-01-18 04:03:31 +08:00
|
|
|
return SemaCheckStringLiteral(C->getTrueExpr(), Args, NumArgs, HasVAListArg,
|
2011-10-28 08:41:25 +08:00
|
|
|
format_idx, firstDataArg, isPrintf,
|
|
|
|
inFunctionCall)
|
2012-01-18 04:03:31 +08:00
|
|
|
&& SemaCheckStringLiteral(C->getFalseExpr(), Args, NumArgs, HasVAListArg,
|
2011-10-28 08:41:25 +08:00
|
|
|
format_idx, firstDataArg, isPrintf,
|
|
|
|
inFunctionCall);
|
2009-01-13 07:09:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-09 11:51:42 +08:00
|
|
|
case Stmt::IntegerLiteralClass:
|
|
|
|
// Technically -Wformat-nonliteral does not warn about this case.
|
|
|
|
// The behavior of printf and friends in this case is implementation
|
|
|
|
// dependent. Ideally if the format string cannot be null then
|
|
|
|
// it should have a 'nonnull' attribute in the function prototype.
|
|
|
|
return true;
|
|
|
|
|
2009-01-13 07:09:09 +08:00
|
|
|
case Stmt::ImplicitCastExprClass: {
|
2010-09-09 11:51:39 +08:00
|
|
|
E = cast<ImplicitCastExpr>(E)->getSubExpr();
|
|
|
|
goto tryAgain;
|
2009-01-13 07:09:09 +08:00
|
|
|
}
|
|
|
|
|
2011-02-17 18:25:35 +08:00
|
|
|
case Stmt::OpaqueValueExprClass:
|
|
|
|
if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
|
|
|
|
E = src;
|
|
|
|
goto tryAgain;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
2011-02-25 07:03:04 +08:00
|
|
|
case Stmt::PredefinedExprClass:
|
|
|
|
// While __func__, etc., are technically not string literals, they
|
|
|
|
// cannot contain format specifiers and thus are not a security
|
|
|
|
// liability.
|
|
|
|
return true;
|
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
case Stmt::DeclRefExprClass: {
|
|
|
|
const DeclRefExpr *DR = cast<DeclRefExpr>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
// As an exception, do not flag errors for variables binding to
|
|
|
|
// const string literals.
|
|
|
|
if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
|
|
|
|
bool isConstant = false;
|
|
|
|
QualType T = DR->getType();
|
|
|
|
|
|
|
|
if (const ArrayType *AT = Context.getAsArrayType(T)) {
|
|
|
|
isConstant = AT->getElementType().isConstant(Context);
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (const PointerType *PT = T->getAs<PointerType>()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
isConstant = T.isConstant(Context) &&
|
2009-03-21 05:35:28 +08:00
|
|
|
PT->getPointeeType().isConstant(Context);
|
2012-01-25 18:35:33 +08:00
|
|
|
} else if (T->isObjCObjectPointerType()) {
|
|
|
|
// In ObjC, there is usually no "const ObjectPointer" type,
|
|
|
|
// so don't check if the pointee type is constant.
|
|
|
|
isConstant = T.isConstant(Context);
|
2009-03-21 05:35:28 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
if (isConstant) {
|
2010-02-02 04:16:42 +08:00
|
|
|
if (const Expr *Init = VD->getAnyInitializer())
|
2012-01-18 04:03:31 +08:00
|
|
|
return SemaCheckStringLiteral(Init, Args, NumArgs,
|
2010-07-16 10:11:22 +08:00
|
|
|
HasVAListArg, format_idx, firstDataArg,
|
2011-10-28 08:41:25 +08:00
|
|
|
isPrintf, /*inFunctionCall*/false);
|
2009-03-21 05:35:28 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-29 03:55:58 +08:00
|
|
|
// For vprintf* functions (i.e., HasVAListArg==true), we add a
|
|
|
|
// special check to see if the format string is a function parameter
|
|
|
|
// of the function calling the printf function. If the function
|
|
|
|
// has an attribute indicating it is a printf-like function, then we
|
|
|
|
// should suppress warnings concerning non-literals being used in a call
|
|
|
|
// to a vprintf function. For example:
|
|
|
|
//
|
|
|
|
// void
|
|
|
|
// logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
|
|
|
|
// va_list ap;
|
|
|
|
// va_start(ap, fmt);
|
|
|
|
// vprintf(fmt, ap); // Do NOT emit a warning about "fmt".
|
|
|
|
// ...
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// FIXME: We don't have full attribute support yet, so just check to see
|
|
|
|
// if the argument is a DeclRefExpr that references a parameter. We'll
|
|
|
|
// add proper support for checking the attribute later.
|
|
|
|
if (HasVAListArg)
|
|
|
|
if (isa<ParmVarDecl>(VD))
|
|
|
|
return true;
|
2009-03-21 05:35:28 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-13 07:09:09 +08:00
|
|
|
|
2009-06-27 12:05:33 +08:00
|
|
|
case Stmt::CallExprClass: {
|
|
|
|
const CallExpr *CE = cast<CallExpr>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (const ImplicitCastExpr *ICE
|
2009-06-27 12:05:33 +08:00
|
|
|
= dyn_cast<ImplicitCastExpr>(CE->getCallee())) {
|
|
|
|
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
|
|
|
|
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
|
2009-06-30 10:34:44 +08:00
|
|
|
if (const FormatArgAttr *FA = FD->getAttr<FormatArgAttr>()) {
|
2009-06-27 12:05:33 +08:00
|
|
|
unsigned ArgIndex = FA->getFormatIdx();
|
|
|
|
const Expr *Arg = CE->getArg(ArgIndex - 1);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2012-01-18 04:03:31 +08:00
|
|
|
return SemaCheckStringLiteral(Arg, Args, NumArgs, HasVAListArg,
|
2011-10-28 08:41:25 +08:00
|
|
|
format_idx, firstDataArg, isPrintf,
|
|
|
|
inFunctionCall);
|
2009-06-27 12:05:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-27 12:05:33 +08:00
|
|
|
return false;
|
|
|
|
}
|
2009-03-21 05:35:28 +08:00
|
|
|
case Stmt::ObjCStringLiteralClass:
|
|
|
|
case Stmt::StringLiteralClass: {
|
|
|
|
const StringLiteral *StrE = NULL;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
|
2009-01-13 07:09:09 +08:00
|
|
|
StrE = ObjCFExpr->getString();
|
|
|
|
else
|
2009-03-21 05:35:28 +08:00
|
|
|
StrE = cast<StringLiteral>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-01-13 07:09:09 +08:00
|
|
|
if (StrE) {
|
2012-01-18 04:03:31 +08:00
|
|
|
CheckFormatString(StrE, E, Args, NumArgs, HasVAListArg, format_idx,
|
2011-10-28 08:41:25 +08:00
|
|
|
firstDataArg, isPrintf, inFunctionCall);
|
2009-01-13 07:09:09 +08:00
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-01-13 07:09:09 +08:00
|
|
|
return false;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-21 05:35:28 +08:00
|
|
|
default:
|
|
|
|
return false;
|
2009-01-13 07:09:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-22 02:48:51 +08:00
|
|
|
void
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::CheckNonNullArguments(const NonNullAttr *NonNull,
|
2011-03-25 09:44:32 +08:00
|
|
|
const Expr * const *ExprArgs,
|
|
|
|
SourceLocation CallSiteLoc) {
|
2010-08-19 07:23:40 +08:00
|
|
|
for (NonNullAttr::args_iterator i = NonNull->args_begin(),
|
|
|
|
e = NonNull->args_end();
|
2009-05-22 02:48:51 +08:00
|
|
|
i != e; ++i) {
|
2011-03-25 09:44:32 +08:00
|
|
|
const Expr *ArgExpr = ExprArgs[*i];
|
2010-02-16 09:46:59 +08:00
|
|
|
if (ArgExpr->isNullPointerConstant(Context,
|
2009-09-25 12:25:58 +08:00
|
|
|
Expr::NPC_ValueDependentIsNotNull))
|
2011-03-25 09:44:32 +08:00
|
|
|
Diag(CallSiteLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
|
2009-05-22 02:48:51 +08:00
|
|
|
}
|
|
|
|
}
|
2009-01-13 07:09:09 +08:00
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
/// CheckPrintfScanfArguments - Check calls to printf and scanf (and similar
|
|
|
|
/// functions) for correct use of format strings.
|
2012-01-18 04:03:31 +08:00
|
|
|
void Sema::CheckFormatArguments(const FormatAttr *Format, CallExpr *TheCall) {
|
|
|
|
bool IsCXXMember = false;
|
2009-11-18 02:02:24 +08:00
|
|
|
// The way the format attribute works in GCC, the implicit this argument
|
|
|
|
// of member functions is counted. However, it doesn't appear in our own
|
|
|
|
// lists, so decrement format_idx in that case.
|
|
|
|
if (isa<CXXMemberCallExpr>(TheCall)) {
|
2012-01-18 04:03:31 +08:00
|
|
|
const CXXMethodDecl *method_decl =
|
|
|
|
dyn_cast<CXXMethodDecl>(TheCall->getCalleeDecl());
|
|
|
|
IsCXXMember = method_decl && method_decl->isInstance();
|
|
|
|
}
|
|
|
|
CheckFormatArguments(Format, TheCall->getArgs(), TheCall->getNumArgs(),
|
|
|
|
IsCXXMember, TheCall->getRParenLoc(),
|
|
|
|
TheCall->getCallee()->getSourceRange());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::CheckFormatArguments(const FormatAttr *Format, Expr **Args,
|
|
|
|
unsigned NumArgs, bool IsCXXMember,
|
|
|
|
SourceLocation Loc, SourceRange Range) {
|
|
|
|
const bool b = Format->getType() == "scanf";
|
|
|
|
if (b || CheckablePrintfAttr(Format, Args, NumArgs, IsCXXMember)) {
|
|
|
|
bool HasVAListArg = Format->getFirstArg() == 0;
|
|
|
|
unsigned format_idx = Format->getFormatIdx() - 1;
|
|
|
|
unsigned firstDataArg = HasVAListArg ? 0 : Format->getFirstArg() - 1;
|
|
|
|
if (IsCXXMember) {
|
2010-11-16 16:49:43 +08:00
|
|
|
if (format_idx == 0)
|
|
|
|
return;
|
|
|
|
--format_idx;
|
|
|
|
if(firstDataArg != 0)
|
|
|
|
--firstDataArg;
|
|
|
|
}
|
2012-01-18 04:03:31 +08:00
|
|
|
CheckPrintfScanfArguments(Args, NumArgs, HasVAListArg, format_idx,
|
|
|
|
firstDataArg, !b, Loc, Range);
|
2009-11-18 02:02:24 +08:00
|
|
|
}
|
2012-01-18 04:03:31 +08:00
|
|
|
}
|
2009-11-18 02:02:24 +08:00
|
|
|
|
2012-01-18 04:03:31 +08:00
|
|
|
void Sema::CheckPrintfScanfArguments(Expr **Args, unsigned NumArgs,
|
|
|
|
bool HasVAListArg, unsigned format_idx,
|
|
|
|
unsigned firstDataArg, bool isPrintf,
|
|
|
|
SourceLocation Loc, SourceRange Range) {
|
2010-07-16 10:11:22 +08:00
|
|
|
// CHECK: printf/scanf-like function is called with no format string.
|
2012-01-18 04:03:31 +08:00
|
|
|
if (format_idx >= NumArgs) {
|
|
|
|
Diag(Loc, diag::warn_missing_format_string) << Range;
|
2007-08-15 01:39:48 +08:00
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2012-01-18 04:03:31 +08:00
|
|
|
const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-11 04:18:51 +08:00
|
|
|
// CHECK: format string is not a string literal.
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
2007-08-15 01:39:48 +08:00
|
|
|
// Dynamically generated format strings are difficult to
|
|
|
|
// automatically vet at compile time. Requiring that format strings
|
|
|
|
// are string literals: (1) permits the checking of format strings by
|
|
|
|
// the compiler and thereby (2) can practically remove the source of
|
|
|
|
// many format string exploits.
|
2008-06-17 02:00:42 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Format string can be either ObjC string (e.g. @"%d") or
|
2008-06-17 02:00:42 +08:00
|
|
|
// C string (e.g. "%d")
|
2009-09-09 23:08:12 +08:00
|
|
|
// ObjC string uses the same format specifiers as C string, so we can use
|
2008-06-17 02:00:42 +08:00
|
|
|
// the same format string checking logic for both ObjC and C strings.
|
2012-01-18 04:03:31 +08:00
|
|
|
if (SemaCheckStringLiteral(OrigFormatExpr, Args, NumArgs, HasVAListArg,
|
|
|
|
format_idx, firstDataArg, isPrintf))
|
2009-04-29 12:49:34 +08:00
|
|
|
return; // Literal format string found, check done!
|
|
|
|
|
2009-04-29 12:59:47 +08:00
|
|
|
// If there are no arguments specified, warn with -Wformat-security, otherwise
|
|
|
|
// warn only with -Wformat-nonliteral.
|
2012-01-18 04:03:31 +08:00
|
|
|
if (NumArgs == format_idx+1)
|
|
|
|
Diag(Args[format_idx]->getLocStart(),
|
2010-07-16 10:11:22 +08:00
|
|
|
diag::warn_format_nonliteral_noargs)
|
2009-04-29 12:59:47 +08:00
|
|
|
<< OrigFormatExpr->getSourceRange();
|
|
|
|
else
|
2012-01-18 04:03:31 +08:00
|
|
|
Diag(Args[format_idx]->getLocStart(),
|
2010-07-16 10:11:22 +08:00
|
|
|
diag::warn_format_nonliteral)
|
2009-04-29 12:59:47 +08:00
|
|
|
<< OrigFormatExpr->getSourceRange();
|
2009-01-13 07:09:09 +08:00
|
|
|
}
|
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
namespace {
|
2010-07-16 10:11:22 +08:00
|
|
|
class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
|
|
|
|
protected:
|
2010-01-29 07:39:18 +08:00
|
|
|
Sema &S;
|
|
|
|
const StringLiteral *FExpr;
|
|
|
|
const Expr *OrigFormatExpr;
|
2010-03-25 11:59:12 +08:00
|
|
|
const unsigned FirstDataArg;
|
2010-01-29 07:39:18 +08:00
|
|
|
const unsigned NumDataArgs;
|
|
|
|
const bool IsObjCLiteral;
|
|
|
|
const char *Beg; // Start of format string.
|
2010-01-29 09:06:55 +08:00
|
|
|
const bool HasVAListArg;
|
2012-01-18 04:03:31 +08:00
|
|
|
const Expr * const *Args;
|
|
|
|
const unsigned NumArgs;
|
2010-01-29 09:06:55 +08:00
|
|
|
unsigned FormatIdx;
|
2010-02-27 03:18:41 +08:00
|
|
|
llvm::BitVector CoveredArgs;
|
2010-02-27 09:41:03 +08:00
|
|
|
bool usesPositionalArgs;
|
|
|
|
bool atFirstArg;
|
2011-10-28 08:41:25 +08:00
|
|
|
bool inFunctionCall;
|
2010-02-16 09:46:59 +08:00
|
|
|
public:
|
2010-07-16 10:11:22 +08:00
|
|
|
CheckFormatHandler(Sema &s, const StringLiteral *fexpr,
|
2010-03-25 11:59:12 +08:00
|
|
|
const Expr *origFormatExpr, unsigned firstDataArg,
|
2010-01-29 07:39:18 +08:00
|
|
|
unsigned numDataArgs, bool isObjCLiteral,
|
2010-01-29 09:06:55 +08:00
|
|
|
const char *beg, bool hasVAListArg,
|
2012-01-18 04:03:31 +08:00
|
|
|
Expr **args, unsigned numArgs,
|
|
|
|
unsigned formatIdx, bool inFunctionCall)
|
2010-01-29 07:39:18 +08:00
|
|
|
: S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr),
|
2010-03-25 11:59:12 +08:00
|
|
|
FirstDataArg(firstDataArg),
|
2010-02-27 03:18:41 +08:00
|
|
|
NumDataArgs(numDataArgs),
|
2010-01-29 09:06:55 +08:00
|
|
|
IsObjCLiteral(isObjCLiteral), Beg(beg),
|
|
|
|
HasVAListArg(hasVAListArg),
|
2012-01-18 04:03:31 +08:00
|
|
|
Args(args), NumArgs(numArgs), FormatIdx(formatIdx),
|
2011-10-28 08:41:25 +08:00
|
|
|
usesPositionalArgs(false), atFirstArg(true),
|
|
|
|
inFunctionCall(inFunctionCall) {
|
2010-02-27 03:18:41 +08:00
|
|
|
CoveredArgs.resize(numDataArgs);
|
|
|
|
CoveredArgs.reset();
|
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-01-29 09:50:07 +08:00
|
|
|
void DoneProcessing();
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void HandleIncompleteSpecifier(const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
|
|
|
|
2010-02-27 09:41:03 +08:00
|
|
|
virtual void HandleInvalidPosition(const char *startSpecifier,
|
|
|
|
unsigned specifierLen,
|
2010-07-16 10:11:22 +08:00
|
|
|
analyze_format_string::PositionContext p);
|
2010-02-27 09:41:03 +08:00
|
|
|
|
|
|
|
virtual void HandleZeroPosition(const char *startPos, unsigned posLen);
|
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
void HandleNullChar(const char *nullCharacter);
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
template <typename Range>
|
|
|
|
static void EmitFormatDiagnostic(Sema &S, bool inFunctionCall,
|
|
|
|
const Expr *ArgumentExpr,
|
|
|
|
PartialDiagnostic PDiag,
|
|
|
|
SourceLocation StringLoc,
|
|
|
|
bool IsStringLocation, Range StringRange,
|
|
|
|
FixItHint Fixit = FixItHint());
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
protected:
|
2010-07-20 05:25:57 +08:00
|
|
|
bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
|
|
|
|
const char *startSpec,
|
|
|
|
unsigned specifierLen,
|
|
|
|
const char *csStart, unsigned csLen);
|
2011-10-28 08:41:25 +08:00
|
|
|
|
|
|
|
void HandlePositionalNonpositionalArgs(SourceLocation Loc,
|
|
|
|
const char *startSpec,
|
|
|
|
unsigned specifierLen);
|
2010-07-20 05:25:57 +08:00
|
|
|
|
2010-01-30 04:55:36 +08:00
|
|
|
SourceRange getFormatStringRange();
|
2010-07-16 10:11:22 +08:00
|
|
|
CharSourceRange getSpecifierRange(const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
2010-01-29 07:39:18 +08:00
|
|
|
SourceLocation getLocationOfByte(const char *x);
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-01-29 09:06:55 +08:00
|
|
|
const Expr *getDataArg(unsigned i) const;
|
2010-07-27 03:45:42 +08:00
|
|
|
|
|
|
|
bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
|
|
|
|
const analyze_format_string::ConversionSpecifier &CS,
|
|
|
|
const char *startSpecifier, unsigned specifierLen,
|
|
|
|
unsigned argIndex);
|
2011-10-28 08:41:25 +08:00
|
|
|
|
|
|
|
template <typename Range>
|
|
|
|
void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
|
|
|
|
bool IsStringLocation, Range StringRange,
|
|
|
|
FixItHint Fixit = FixItHint());
|
|
|
|
|
|
|
|
void CheckPositionalAndNonpositionalArgs(
|
|
|
|
const analyze_format_string::FormatSpecifier *FS);
|
2010-01-29 07:39:18 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
SourceRange CheckFormatHandler::getFormatStringRange() {
|
2010-01-29 07:39:18 +08:00
|
|
|
return OrigFormatExpr->getSourceRange();
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
CharSourceRange CheckFormatHandler::
|
|
|
|
getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
|
2010-06-22 05:21:01 +08:00
|
|
|
SourceLocation Start = getLocationOfByte(startSpecifier);
|
|
|
|
SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
|
|
|
|
|
|
|
|
// Advance the end SourceLocation by one due to half-open ranges.
|
2011-09-20 04:40:19 +08:00
|
|
|
End = End.getLocWithOffset(1);
|
2010-06-22 05:21:01 +08:00
|
|
|
|
|
|
|
return CharSourceRange::getCharRange(Start, End);
|
2010-01-30 04:55:36 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
|
2010-02-16 09:46:59 +08:00
|
|
|
return S.getLocationOfStringLiteralByte(FExpr, x - Beg);
|
2010-01-29 07:39:18 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
|
|
|
|
unsigned specifierLen){
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
|
|
|
|
getLocationOfByte(startSpecifier),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen));
|
2010-01-29 11:16:21 +08:00
|
|
|
}
|
|
|
|
|
2010-02-27 09:41:03 +08:00
|
|
|
void
|
2010-07-16 10:11:22 +08:00
|
|
|
CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
|
|
|
|
analyze_format_string::PositionContext p) {
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
|
|
|
|
<< (unsigned) p,
|
|
|
|
getLocationOfByte(startPos), /*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startPos, posLen));
|
2010-02-27 09:41:03 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void CheckFormatHandler::HandleZeroPosition(const char *startPos,
|
2010-02-27 09:41:03 +08:00
|
|
|
unsigned posLen) {
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
|
|
|
|
getLocationOfByte(startPos),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startPos, posLen));
|
2010-02-27 09:41:03 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
|
2011-03-16 05:18:48 +08:00
|
|
|
if (!IsObjCLiteral) {
|
|
|
|
// The presence of a null character is likely an error.
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(
|
|
|
|
S.PDiag(diag::warn_printf_format_string_contains_null_char),
|
|
|
|
getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
|
|
|
|
getFormatStringRange());
|
2011-03-16 05:18:48 +08:00
|
|
|
}
|
2010-07-16 10:11:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
|
2012-01-18 04:03:31 +08:00
|
|
|
return Args[FirstDataArg + i];
|
2010-07-16 10:11:22 +08:00
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void CheckFormatHandler::DoneProcessing() {
|
|
|
|
// Does the number of data arguments exceed the number of
|
|
|
|
// format conversions in the format string?
|
|
|
|
if (!HasVAListArg) {
|
|
|
|
// Find any arguments that weren't covered.
|
|
|
|
CoveredArgs.flip();
|
|
|
|
signed notCoveredArg = CoveredArgs.find_first();
|
|
|
|
if (notCoveredArg >= 0) {
|
|
|
|
assert((unsigned)notCoveredArg < NumDataArgs);
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_data_arg_not_used),
|
|
|
|
getDataArg((unsigned) notCoveredArg)->getLocStart(),
|
|
|
|
/*IsStringLocation*/false, getFormatStringRange());
|
2010-07-16 10:11:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-20 05:25:57 +08:00
|
|
|
bool
|
|
|
|
CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
|
|
|
|
SourceLocation Loc,
|
|
|
|
const char *startSpec,
|
|
|
|
unsigned specifierLen,
|
|
|
|
const char *csStart,
|
|
|
|
unsigned csLen) {
|
|
|
|
|
|
|
|
bool keepGoing = true;
|
|
|
|
if (argIndex < NumDataArgs) {
|
|
|
|
// Consider the argument coverered, even though the specifier doesn't
|
|
|
|
// make sense.
|
|
|
|
CoveredArgs.set(argIndex);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If argIndex exceeds the number of data arguments we
|
|
|
|
// don't issue a warning because that is just a cascade of warnings (and
|
|
|
|
// they may have intended '%%' anyway). We don't want to continue processing
|
|
|
|
// the format string after this point, however, as we will like just get
|
|
|
|
// gibberish when trying to match arguments.
|
|
|
|
keepGoing = false;
|
|
|
|
}
|
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_conversion)
|
|
|
|
<< StringRef(csStart, csLen),
|
|
|
|
Loc, /*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpec, specifierLen));
|
2010-07-20 05:25:57 +08:00
|
|
|
|
|
|
|
return keepGoing;
|
|
|
|
}
|
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
void
|
|
|
|
CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
|
|
|
|
const char *startSpec,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
EmitFormatDiagnostic(
|
|
|
|
S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
|
|
|
|
Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
|
|
|
|
}
|
|
|
|
|
2010-07-27 03:45:42 +08:00
|
|
|
bool
|
|
|
|
CheckFormatHandler::CheckNumArgs(
|
|
|
|
const analyze_format_string::FormatSpecifier &FS,
|
|
|
|
const analyze_format_string::ConversionSpecifier &CS,
|
|
|
|
const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
|
|
|
|
|
|
|
|
if (argIndex >= NumDataArgs) {
|
2011-10-28 08:41:25 +08:00
|
|
|
PartialDiagnostic PDiag = FS.usesPositionalArg()
|
|
|
|
? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
|
|
|
|
<< (argIndex+1) << NumDataArgs)
|
|
|
|
: S.PDiag(diag::warn_printf_insufficient_data_args);
|
|
|
|
EmitFormatDiagnostic(
|
|
|
|
PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen));
|
2010-07-27 03:45:42 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
template<typename Range>
|
|
|
|
void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
|
|
|
|
SourceLocation Loc,
|
|
|
|
bool IsStringLocation,
|
|
|
|
Range StringRange,
|
|
|
|
FixItHint FixIt) {
|
2012-01-18 04:03:31 +08:00
|
|
|
EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag,
|
2011-10-28 08:41:25 +08:00
|
|
|
Loc, IsStringLocation, StringRange, FixIt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief If the format string is not within the funcion call, emit a note
|
|
|
|
/// so that the function call and string are in diagnostic messages.
|
|
|
|
///
|
|
|
|
/// \param inFunctionCall if true, the format string is within the function
|
|
|
|
/// call and only one diagnostic message will be produced. Otherwise, an
|
|
|
|
/// extra note will be emitted pointing to location of the format string.
|
|
|
|
///
|
|
|
|
/// \param ArgumentExpr the expression that is passed as the format string
|
|
|
|
/// argument in the function call. Used for getting locations when two
|
|
|
|
/// diagnostics are emitted.
|
|
|
|
///
|
|
|
|
/// \param PDiag the callee should already have provided any strings for the
|
|
|
|
/// diagnostic message. This function only adds locations and fixits
|
|
|
|
/// to diagnostics.
|
|
|
|
///
|
|
|
|
/// \param Loc primary location for diagnostic. If two diagnostics are
|
|
|
|
/// required, one will be at Loc and a new SourceLocation will be created for
|
|
|
|
/// the other one.
|
|
|
|
///
|
|
|
|
/// \param IsStringLocation if true, Loc points to the format string should be
|
|
|
|
/// used for the note. Otherwise, Loc points to the argument list and will
|
|
|
|
/// be used with PDiag.
|
|
|
|
///
|
|
|
|
/// \param StringRange some or all of the string to highlight. This is
|
|
|
|
/// templated so it can accept either a CharSourceRange or a SourceRange.
|
|
|
|
///
|
|
|
|
/// \param Fixit optional fix it hint for the format string.
|
|
|
|
template<typename Range>
|
|
|
|
void CheckFormatHandler::EmitFormatDiagnostic(Sema &S, bool InFunctionCall,
|
|
|
|
const Expr *ArgumentExpr,
|
|
|
|
PartialDiagnostic PDiag,
|
|
|
|
SourceLocation Loc,
|
|
|
|
bool IsStringLocation,
|
|
|
|
Range StringRange,
|
|
|
|
FixItHint FixIt) {
|
|
|
|
if (InFunctionCall)
|
|
|
|
S.Diag(Loc, PDiag) << StringRange << FixIt;
|
|
|
|
else {
|
|
|
|
S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
|
|
|
|
<< ArgumentExpr->getSourceRange();
|
|
|
|
S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
|
|
|
|
diag::note_format_string_defined)
|
|
|
|
<< StringRange << FixIt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
//===--- CHECK: Printf format string checking ------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class CheckPrintfHandler : public CheckFormatHandler {
|
|
|
|
public:
|
|
|
|
CheckPrintfHandler(Sema &s, const StringLiteral *fexpr,
|
|
|
|
const Expr *origFormatExpr, unsigned firstDataArg,
|
|
|
|
unsigned numDataArgs, bool isObjCLiteral,
|
|
|
|
const char *beg, bool hasVAListArg,
|
2012-01-18 04:03:31 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
unsigned formatIdx, bool inFunctionCall)
|
2010-07-16 10:11:22 +08:00
|
|
|
: CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
|
|
|
|
numDataArgs, isObjCLiteral, beg, hasVAListArg,
|
2012-01-18 04:03:31 +08:00
|
|
|
Args, NumArgs, formatIdx, inFunctionCall) {}
|
2010-07-16 10:11:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
bool HandleInvalidPrintfConversionSpecifier(
|
|
|
|
const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
|
|
|
|
|
|
|
bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
|
|
|
|
|
|
|
bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
|
|
|
|
const char *startSpecifier, unsigned specifierLen);
|
|
|
|
void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const analyze_printf::OptionalAmount &Amt,
|
|
|
|
unsigned type,
|
|
|
|
const char *startSpecifier, unsigned specifierLen);
|
|
|
|
void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const analyze_printf::OptionalFlag &flag,
|
|
|
|
const char *startSpecifier, unsigned specifierLen);
|
|
|
|
void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const analyze_printf::OptionalFlag &ignoredFlag,
|
|
|
|
const analyze_printf::OptionalFlag &flag,
|
|
|
|
const char *startSpecifier, unsigned specifierLen);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
|
|
|
|
const analyze_printf::PrintfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
2010-07-21 04:04:27 +08:00
|
|
|
const analyze_printf::PrintfConversionSpecifier &CS =
|
2010-07-20 05:25:57 +08:00
|
|
|
FS.getConversionSpecifier();
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2010-07-20 05:25:57 +08:00
|
|
|
return HandleInvalidConversionSpecifier(FS.getArgIndex(),
|
|
|
|
getLocationOfByte(CS.getStart()),
|
|
|
|
startSpecifier, specifierLen,
|
|
|
|
CS.getStart(), CS.getLength());
|
2010-01-29 10:40:24 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
bool CheckPrintfHandler::HandleAmount(
|
|
|
|
const analyze_format_string::OptionalAmount &Amt,
|
|
|
|
unsigned k, const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
2010-01-29 09:06:55 +08:00
|
|
|
|
|
|
|
if (Amt.hasDataArgument()) {
|
|
|
|
if (!HasVAListArg) {
|
2010-02-27 03:18:41 +08:00
|
|
|
unsigned argIndex = Amt.getArgIndex();
|
|
|
|
if (argIndex >= NumDataArgs) {
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
|
|
|
|
<< k,
|
|
|
|
getLocationOfByte(Amt.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen));
|
2010-01-29 09:06:55 +08:00
|
|
|
// Don't do any more checking. We will just emit
|
|
|
|
// spurious errors.
|
|
|
|
return false;
|
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-01-29 09:06:55 +08:00
|
|
|
// Type check the data argument. It should be an 'int'.
|
2010-01-30 07:32:22 +08:00
|
|
|
// Although not in conformance with C99, we also allow the argument to be
|
|
|
|
// an 'unsigned int' as that is a reasonably safe case. GCC also
|
|
|
|
// doesn't emit a warning for that case.
|
2010-02-27 03:18:41 +08:00
|
|
|
CoveredArgs.set(argIndex);
|
|
|
|
const Expr *Arg = getDataArg(argIndex);
|
2010-01-29 09:06:55 +08:00
|
|
|
QualType T = Arg->getType();
|
2010-02-16 09:46:59 +08:00
|
|
|
|
|
|
|
const analyze_printf::ArgTypeResult &ATR = Amt.getArgType(S.Context);
|
|
|
|
assert(ATR.isValid());
|
|
|
|
|
|
|
|
if (!ATR.matchesType(S.Context, T)) {
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
|
2011-12-07 18:33:11 +08:00
|
|
|
<< k << ATR.getRepresentativeTypeName(S.Context)
|
2011-10-28 08:41:25 +08:00
|
|
|
<< T << Arg->getSourceRange(),
|
|
|
|
getLocationOfByte(Amt.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen));
|
2010-01-29 09:06:55 +08:00
|
|
|
// Don't do any more checking. We will just emit
|
|
|
|
// spurious errors.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-18 03:00:27 +08:00
|
|
|
void CheckPrintfHandler::HandleInvalidAmount(
|
2010-07-16 10:11:22 +08:00
|
|
|
const analyze_printf::PrintfSpecifier &FS,
|
2010-06-18 03:00:27 +08:00
|
|
|
const analyze_printf::OptionalAmount &Amt,
|
|
|
|
unsigned type,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
2010-07-21 04:04:27 +08:00
|
|
|
const analyze_printf::PrintfConversionSpecifier &CS =
|
|
|
|
FS.getConversionSpecifier();
|
2010-06-18 03:00:27 +08:00
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
FixItHint fixit =
|
|
|
|
Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
|
|
|
|
? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
|
|
|
|
Amt.getConstantLength()))
|
|
|
|
: FixItHint();
|
|
|
|
|
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
|
|
|
|
<< type << CS.toString(),
|
|
|
|
getLocationOfByte(Amt.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
fixit);
|
2010-06-18 03:00:27 +08:00
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
|
2010-06-18 03:00:27 +08:00
|
|
|
const analyze_printf::OptionalFlag &flag,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
// Warn about pointless flag with a fixit removal.
|
2010-07-21 04:04:27 +08:00
|
|
|
const analyze_printf::PrintfConversionSpecifier &CS =
|
|
|
|
FS.getConversionSpecifier();
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
|
|
|
|
<< flag.toString() << CS.toString(),
|
|
|
|
getLocationOfByte(flag.getPosition()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
FixItHint::CreateRemoval(
|
|
|
|
getSpecifierRange(flag.getPosition(), 1)));
|
2010-06-18 03:00:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckPrintfHandler::HandleIgnoredFlag(
|
2010-07-16 10:11:22 +08:00
|
|
|
const analyze_printf::PrintfSpecifier &FS,
|
2010-06-18 03:00:27 +08:00
|
|
|
const analyze_printf::OptionalFlag &ignoredFlag,
|
|
|
|
const analyze_printf::OptionalFlag &flag,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
// Warn about ignored flag with a fixit removal.
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
|
|
|
|
<< ignoredFlag.toString() << flag.toString(),
|
|
|
|
getLocationOfByte(ignoredFlag.getPosition()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
FixItHint::CreateRemoval(
|
|
|
|
getSpecifierRange(ignoredFlag.getPosition(), 1)));
|
2010-06-18 03:00:27 +08:00
|
|
|
}
|
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
bool
|
2010-07-16 10:11:22 +08:00
|
|
|
CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
|
2010-02-11 17:27:41 +08:00
|
|
|
&FS,
|
2010-01-29 07:39:18 +08:00
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
|
2010-07-21 04:04:27 +08:00
|
|
|
using namespace analyze_format_string;
|
2010-02-27 09:41:03 +08:00
|
|
|
using namespace analyze_printf;
|
2010-07-21 04:04:27 +08:00
|
|
|
const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
|
2010-01-29 07:39:18 +08:00
|
|
|
|
2010-07-20 06:01:06 +08:00
|
|
|
if (FS.consumesDataArgument()) {
|
|
|
|
if (atFirstArg) {
|
|
|
|
atFirstArg = false;
|
|
|
|
usesPositionalArgs = FS.usesPositionalArg();
|
|
|
|
}
|
|
|
|
else if (usesPositionalArgs != FS.usesPositionalArg()) {
|
2011-10-28 08:41:25 +08:00
|
|
|
HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
|
|
|
|
startSpecifier, specifierLen);
|
2010-07-20 06:01:06 +08:00
|
|
|
return false;
|
|
|
|
}
|
2010-02-27 09:41:03 +08:00
|
|
|
}
|
|
|
|
|
2010-01-29 09:06:55 +08:00
|
|
|
// First check if the field width, precision, and conversion specifier
|
|
|
|
// have matching data arguments.
|
2010-02-27 09:41:03 +08:00
|
|
|
if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
|
|
|
|
startSpecifier, specifierLen)) {
|
2010-01-29 09:06:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-02-27 09:41:03 +08:00
|
|
|
if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
|
|
|
|
startSpecifier, specifierLen)) {
|
2010-01-29 09:06:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-30 04:55:36 +08:00
|
|
|
if (!CS.consumesDataArgument()) {
|
|
|
|
// FIXME: Technically specifying a precision or field width here
|
|
|
|
// makes no sense. Worth issuing a warning at some point.
|
2010-02-10 10:16:30 +08:00
|
|
|
return true;
|
2010-01-30 04:55:36 +08:00
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-02-27 03:18:41 +08:00
|
|
|
// Consume the argument.
|
|
|
|
unsigned argIndex = FS.getArgIndex();
|
2010-02-27 16:34:51 +08:00
|
|
|
if (argIndex < NumDataArgs) {
|
|
|
|
// The check to see if the argIndex is valid will come later.
|
|
|
|
// We set the bit here because we may exit early from this
|
|
|
|
// function if we encounter some other error.
|
|
|
|
CoveredArgs.set(argIndex);
|
|
|
|
}
|
2010-02-27 03:18:41 +08:00
|
|
|
|
|
|
|
// Check for using an Objective-C specific conversion specifier
|
|
|
|
// in a non-ObjC literal.
|
|
|
|
if (!IsObjCLiteral && CS.isObjCArg()) {
|
2010-07-16 10:11:22 +08:00
|
|
|
return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
|
|
|
|
specifierLen);
|
2010-02-27 03:18:41 +08:00
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-06-18 03:00:27 +08:00
|
|
|
// Check for invalid use of field width
|
|
|
|
if (!FS.hasValidFieldWidth()) {
|
2010-06-22 05:21:01 +08:00
|
|
|
HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
|
2010-06-18 03:00:27 +08:00
|
|
|
startSpecifier, specifierLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for invalid use of precision
|
|
|
|
if (!FS.hasValidPrecision()) {
|
|
|
|
HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
|
|
|
|
startSpecifier, specifierLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check each flag does not conflict with any other component.
|
2011-01-08 13:28:46 +08:00
|
|
|
if (!FS.hasValidThousandsGroupingPrefix())
|
|
|
|
HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
|
2010-06-18 03:00:27 +08:00
|
|
|
if (!FS.hasValidLeadingZeros())
|
|
|
|
HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
|
|
|
|
if (!FS.hasValidPlusPrefix())
|
|
|
|
HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
|
2010-06-22 05:21:01 +08:00
|
|
|
if (!FS.hasValidSpacePrefix())
|
|
|
|
HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
|
2010-06-18 03:00:27 +08:00
|
|
|
if (!FS.hasValidAlternativeForm())
|
|
|
|
HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
|
|
|
|
if (!FS.hasValidLeftJustified())
|
|
|
|
HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
|
|
|
|
|
|
|
|
// Check that flags are not ignored by another flag
|
2010-06-22 05:21:01 +08:00
|
|
|
if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
|
|
|
|
HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
|
|
|
|
startSpecifier, specifierLen);
|
2010-06-18 03:00:27 +08:00
|
|
|
if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
|
|
|
|
HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
|
|
|
|
startSpecifier, specifierLen);
|
|
|
|
|
|
|
|
// Check the length modifier is valid with the given conversion specifier.
|
|
|
|
const LengthModifier &LM = FS.getLengthModifier();
|
|
|
|
if (!FS.hasValidLengthModifier())
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_format_nonsensical_length)
|
|
|
|
<< LM.toString() << CS.toString(),
|
|
|
|
getLocationOfByte(LM.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
FixItHint::CreateRemoval(
|
|
|
|
getSpecifierRange(LM.getStart(),
|
|
|
|
LM.getLength())));
|
2010-06-18 03:00:27 +08:00
|
|
|
|
|
|
|
// Are we using '%n'?
|
2010-07-21 04:04:10 +08:00
|
|
|
if (CS.getKind() == ConversionSpecifier::nArg) {
|
2010-06-18 03:00:27 +08:00
|
|
|
// Issue a warning about this being a possible security issue.
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_printf_write_back),
|
|
|
|
getLocationOfByte(CS.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen));
|
2010-01-29 09:35:25 +08:00
|
|
|
// Continue checking the other format specifiers.
|
|
|
|
return true;
|
|
|
|
}
|
2010-02-11 17:27:41 +08:00
|
|
|
|
2010-01-29 09:43:31 +08:00
|
|
|
// The remaining checks depend on the data arguments.
|
|
|
|
if (HasVAListArg)
|
|
|
|
return true;
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-07-27 03:45:42 +08:00
|
|
|
if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
|
2010-01-29 09:43:31 +08:00
|
|
|
return false;
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-07-27 12:46:02 +08:00
|
|
|
// Now type check the data expression that matches the
|
|
|
|
// format specifier.
|
|
|
|
const Expr *Ex = getDataArg(argIndex);
|
2011-12-03 07:21:43 +08:00
|
|
|
const analyze_printf::ArgTypeResult &ATR = FS.getArgType(S.Context);
|
2010-07-27 12:46:02 +08:00
|
|
|
if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
|
|
|
|
// Check if we didn't match because of an implicit cast from a 'char'
|
|
|
|
// or 'short' to an 'int'. This is done because printf is a varargs
|
|
|
|
// function.
|
|
|
|
if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Ex))
|
2010-10-21 12:00:58 +08:00
|
|
|
if (ICE->getType() == S.Context.IntTy) {
|
|
|
|
// All further checking is done on the subexpression.
|
|
|
|
Ex = ICE->getSubExpr();
|
|
|
|
if (ATR.matchesType(S.Context, Ex->getType()))
|
2010-07-27 12:46:02 +08:00
|
|
|
return true;
|
2010-10-21 12:00:58 +08:00
|
|
|
}
|
2010-07-27 12:46:02 +08:00
|
|
|
|
|
|
|
// We may be able to offer a FixItHint if it is a supported type.
|
|
|
|
PrintfSpecifier fixedFS = FS;
|
2011-10-18 16:10:06 +08:00
|
|
|
bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
|
2010-07-27 12:46:02 +08:00
|
|
|
|
|
|
|
if (success) {
|
|
|
|
// Get the fix string from the fixed format specifier
|
|
|
|
llvm::SmallString<128> buf;
|
|
|
|
llvm::raw_svector_ostream os(buf);
|
|
|
|
fixedFS.toString(os);
|
|
|
|
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(
|
|
|
|
S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
|
2011-12-07 18:33:11 +08:00
|
|
|
<< ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
|
2011-10-28 08:41:25 +08:00
|
|
|
<< Ex->getSourceRange(),
|
|
|
|
getLocationOfByte(CS.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
FixItHint::CreateReplacement(
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
os.str()));
|
2010-07-27 12:46:02 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
S.Diag(getLocationOfByte(CS.getStart()),
|
|
|
|
diag::warn_printf_conversion_argument_type_mismatch)
|
2011-12-07 18:33:11 +08:00
|
|
|
<< ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
|
2010-07-27 12:46:02 +08:00
|
|
|
<< getSpecifierRange(startSpecifier, specifierLen)
|
|
|
|
<< Ex->getSourceRange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
//===--- CHECK: Scanf format string checking ------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class CheckScanfHandler : public CheckFormatHandler {
|
|
|
|
public:
|
|
|
|
CheckScanfHandler(Sema &s, const StringLiteral *fexpr,
|
|
|
|
const Expr *origFormatExpr, unsigned firstDataArg,
|
|
|
|
unsigned numDataArgs, bool isObjCLiteral,
|
|
|
|
const char *beg, bool hasVAListArg,
|
2012-01-18 04:03:31 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
unsigned formatIdx, bool inFunctionCall)
|
2010-07-16 10:11:22 +08:00
|
|
|
: CheckFormatHandler(s, fexpr, origFormatExpr, firstDataArg,
|
|
|
|
numDataArgs, isObjCLiteral, beg, hasVAListArg,
|
2012-01-18 04:03:31 +08:00
|
|
|
Args, NumArgs, formatIdx, inFunctionCall) {}
|
2010-07-16 10:11:22 +08:00
|
|
|
|
|
|
|
bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
2010-07-20 05:25:57 +08:00
|
|
|
|
|
|
|
bool HandleInvalidScanfConversionSpecifier(
|
|
|
|
const analyze_scanf::ScanfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen);
|
2010-07-17 02:28:03 +08:00
|
|
|
|
|
|
|
void HandleIncompleteScanList(const char *start, const char *end);
|
2010-07-16 10:11:22 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-07-17 02:28:03 +08:00
|
|
|
void CheckScanfHandler::HandleIncompleteScanList(const char *start,
|
|
|
|
const char *end) {
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
|
|
|
|
getLocationOfByte(end), /*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(start, end - start));
|
2010-07-17 02:28:03 +08:00
|
|
|
}
|
|
|
|
|
2010-07-20 05:25:57 +08:00
|
|
|
bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
|
|
|
|
const analyze_scanf::ScanfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
|
2010-07-21 04:04:27 +08:00
|
|
|
const analyze_scanf::ScanfConversionSpecifier &CS =
|
2010-07-20 05:25:57 +08:00
|
|
|
FS.getConversionSpecifier();
|
|
|
|
|
|
|
|
return HandleInvalidConversionSpecifier(FS.getArgIndex(),
|
|
|
|
getLocationOfByte(CS.getStart()),
|
|
|
|
startSpecifier, specifierLen,
|
|
|
|
CS.getStart(), CS.getLength());
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
bool CheckScanfHandler::HandleScanfSpecifier(
|
|
|
|
const analyze_scanf::ScanfSpecifier &FS,
|
|
|
|
const char *startSpecifier,
|
|
|
|
unsigned specifierLen) {
|
|
|
|
|
|
|
|
using namespace analyze_scanf;
|
|
|
|
using namespace analyze_format_string;
|
|
|
|
|
2010-07-21 04:04:27 +08:00
|
|
|
const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2010-07-20 06:01:06 +08:00
|
|
|
// Handle case where '%' and '*' don't consume an argument. These shouldn't
|
|
|
|
// be used to decide if we are using positional arguments consistently.
|
|
|
|
if (FS.consumesDataArgument()) {
|
|
|
|
if (atFirstArg) {
|
|
|
|
atFirstArg = false;
|
|
|
|
usesPositionalArgs = FS.usesPositionalArg();
|
|
|
|
}
|
|
|
|
else if (usesPositionalArgs != FS.usesPositionalArg()) {
|
2011-10-28 08:41:25 +08:00
|
|
|
HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
|
|
|
|
startSpecifier, specifierLen);
|
2010-07-20 06:01:06 +08:00
|
|
|
return false;
|
|
|
|
}
|
2010-07-16 10:11:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the field with is non-zero.
|
|
|
|
const OptionalAmount &Amt = FS.getFieldWidth();
|
|
|
|
if (Amt.getHowSpecified() == OptionalAmount::Constant) {
|
|
|
|
if (Amt.getConstantAmount() == 0) {
|
|
|
|
const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
|
|
|
|
Amt.getConstantLength());
|
2011-10-28 08:41:25 +08:00
|
|
|
EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
|
|
|
|
getLocationOfByte(Amt.getStart()),
|
|
|
|
/*IsStringLocation*/true, R,
|
|
|
|
FixItHint::CreateRemoval(R));
|
2010-02-27 03:18:41 +08:00
|
|
|
}
|
|
|
|
}
|
2010-07-16 10:11:22 +08:00
|
|
|
|
|
|
|
if (!FS.consumesDataArgument()) {
|
|
|
|
// FIXME: Technically specifying a precision or field width here
|
|
|
|
// makes no sense. Worth issuing a warning at some point.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consume the argument.
|
|
|
|
unsigned argIndex = FS.getArgIndex();
|
|
|
|
if (argIndex < NumDataArgs) {
|
|
|
|
// The check to see if the argIndex is valid will come later.
|
|
|
|
// We set the bit here because we may exit early from this
|
|
|
|
// function if we encounter some other error.
|
|
|
|
CoveredArgs.set(argIndex);
|
|
|
|
}
|
|
|
|
|
2010-07-21 04:04:47 +08:00
|
|
|
// Check the length modifier is valid with the given conversion specifier.
|
|
|
|
const LengthModifier &LM = FS.getLengthModifier();
|
|
|
|
if (!FS.hasValidLengthModifier()) {
|
|
|
|
S.Diag(getLocationOfByte(LM.getStart()),
|
|
|
|
diag::warn_format_nonsensical_length)
|
|
|
|
<< LM.toString() << CS.toString()
|
|
|
|
<< getSpecifierRange(startSpecifier, specifierLen)
|
|
|
|
<< FixItHint::CreateRemoval(getSpecifierRange(LM.getStart(),
|
|
|
|
LM.getLength()));
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
// The remaining checks depend on the data arguments.
|
|
|
|
if (HasVAListArg)
|
|
|
|
return true;
|
|
|
|
|
2010-07-27 03:45:42 +08:00
|
|
|
if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
|
2010-07-16 10:11:22 +08:00
|
|
|
return false;
|
|
|
|
|
2011-12-10 21:20:11 +08:00
|
|
|
// Check that the argument type matches the format specifier.
|
|
|
|
const Expr *Ex = getDataArg(argIndex);
|
|
|
|
const analyze_scanf::ScanfArgTypeResult &ATR = FS.getArgType(S.Context);
|
|
|
|
if (ATR.isValid() && !ATR.matchesType(S.Context, Ex->getType())) {
|
|
|
|
ScanfSpecifier fixedFS = FS;
|
|
|
|
bool success = fixedFS.fixType(Ex->getType(), S.getLangOptions());
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
// Get the fix string from the fixed format specifier.
|
|
|
|
llvm::SmallString<128> buf;
|
|
|
|
llvm::raw_svector_ostream os(buf);
|
|
|
|
fixedFS.toString(os);
|
|
|
|
|
|
|
|
EmitFormatDiagnostic(
|
|
|
|
S.PDiag(diag::warn_printf_conversion_argument_type_mismatch)
|
|
|
|
<< ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
|
|
|
|
<< Ex->getSourceRange(),
|
|
|
|
getLocationOfByte(CS.getStart()),
|
|
|
|
/*IsStringLocation*/true,
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
FixItHint::CreateReplacement(
|
|
|
|
getSpecifierRange(startSpecifier, specifierLen),
|
|
|
|
os.str()));
|
|
|
|
} else {
|
|
|
|
S.Diag(getLocationOfByte(CS.getStart()),
|
|
|
|
diag::warn_printf_conversion_argument_type_mismatch)
|
|
|
|
<< ATR.getRepresentativeTypeName(S.Context) << Ex->getType()
|
|
|
|
<< getSpecifierRange(startSpecifier, specifierLen)
|
|
|
|
<< Ex->getSourceRange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
return true;
|
2010-01-29 09:50:07 +08:00
|
|
|
}
|
2010-01-29 07:39:18 +08:00
|
|
|
|
2010-07-16 10:11:22 +08:00
|
|
|
void Sema::CheckFormatString(const StringLiteral *FExpr,
|
2010-02-10 10:16:30 +08:00
|
|
|
const Expr *OrigFormatExpr,
|
2012-01-18 04:03:31 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
bool HasVAListArg, unsigned format_idx,
|
|
|
|
unsigned firstDataArg, bool isPrintf,
|
|
|
|
bool inFunctionCall) {
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
// CHECK: is the format string a wide literal?
|
2011-07-27 13:40:30 +08:00
|
|
|
if (!FExpr->isAscii()) {
|
2011-10-28 08:41:25 +08:00
|
|
|
CheckFormatHandler::EmitFormatDiagnostic(
|
2012-01-18 04:03:31 +08:00
|
|
|
*this, inFunctionCall, Args[format_idx],
|
2011-10-28 08:41:25 +08:00
|
|
|
PDiag(diag::warn_format_string_is_wide_literal), FExpr->getLocStart(),
|
|
|
|
/*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
|
2010-01-29 07:39:18 +08:00
|
|
|
return;
|
|
|
|
}
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
// Str - The format string. NOTE: this is NOT null-terminated!
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef StrRef = FExpr->getString();
|
2010-08-17 20:54:38 +08:00
|
|
|
const char *Str = StrRef.data();
|
|
|
|
unsigned StrLen = StrRef.size();
|
2012-01-18 04:03:31 +08:00
|
|
|
const unsigned numDataArgs = NumArgs - firstDataArg;
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2010-01-29 07:39:18 +08:00
|
|
|
// CHECK: empty format string?
|
2011-09-29 13:52:16 +08:00
|
|
|
if (StrLen == 0 && numDataArgs > 0) {
|
2011-10-28 08:41:25 +08:00
|
|
|
CheckFormatHandler::EmitFormatDiagnostic(
|
2012-01-18 04:03:31 +08:00
|
|
|
*this, inFunctionCall, Args[format_idx],
|
2011-10-28 08:41:25 +08:00
|
|
|
PDiag(diag::warn_empty_format_string), FExpr->getLocStart(),
|
|
|
|
/*IsStringLocation*/true, OrigFormatExpr->getSourceRange());
|
2010-01-29 07:39:18 +08:00
|
|
|
return;
|
|
|
|
}
|
2010-07-16 10:11:22 +08:00
|
|
|
|
|
|
|
if (isPrintf) {
|
|
|
|
CheckPrintfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
|
2011-09-29 13:52:16 +08:00
|
|
|
numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
|
2012-01-18 04:03:31 +08:00
|
|
|
Str, HasVAListArg, Args, NumArgs, format_idx,
|
2011-10-28 08:41:25 +08:00
|
|
|
inFunctionCall);
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2011-12-15 18:25:47 +08:00
|
|
|
if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
|
|
|
|
getLangOptions()))
|
2010-07-16 10:11:22 +08:00
|
|
|
H.DoneProcessing();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CheckScanfHandler H(*this, FExpr, OrigFormatExpr, firstDataArg,
|
2011-09-29 13:52:16 +08:00
|
|
|
numDataArgs, isa<ObjCStringLiteral>(OrigFormatExpr),
|
2012-01-18 04:03:31 +08:00
|
|
|
Str, HasVAListArg, Args, NumArgs, format_idx,
|
2011-10-28 08:41:25 +08:00
|
|
|
inFunctionCall);
|
2010-07-16 10:11:22 +08:00
|
|
|
|
2011-12-15 18:25:47 +08:00
|
|
|
if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
|
|
|
|
getLangOptions()))
|
2010-07-16 10:11:22 +08:00
|
|
|
H.DoneProcessing();
|
|
|
|
}
|
2010-01-28 09:18:22 +08:00
|
|
|
}
|
|
|
|
|
2011-04-27 15:05:31 +08:00
|
|
|
//===--- CHECK: Standard memory functions ---------------------------------===//
|
|
|
|
|
2011-05-04 04:05:22 +08:00
|
|
|
/// \brief Determine whether the given type is a dynamic class type (e.g.,
|
|
|
|
/// whether it has a vtable).
|
|
|
|
static bool isDynamicClassType(QualType T) {
|
|
|
|
if (CXXRecordDecl *Record = T->getAsCXXRecordDecl())
|
|
|
|
if (CXXRecordDecl *Definition = Record->getDefinition())
|
|
|
|
if (Definition->isDynamicClass())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-22 07:04:20 +08:00
|
|
|
/// \brief If E is a sizeof expression, returns its argument expression,
|
2011-06-16 17:09:40 +08:00
|
|
|
/// otherwise returns NULL.
|
|
|
|
static const Expr *getSizeOfExprArg(const Expr* E) {
|
2011-06-15 00:14:58 +08:00
|
|
|
if (const UnaryExprOrTypeTraitExpr *SizeOf =
|
2011-06-16 17:09:40 +08:00
|
|
|
dyn_cast<UnaryExprOrTypeTraitExpr>(E))
|
|
|
|
if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
|
|
|
|
return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
|
2011-06-15 00:14:58 +08:00
|
|
|
|
2011-06-16 17:09:40 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-22 07:04:20 +08:00
|
|
|
/// \brief If E is a sizeof expression, returns its argument type.
|
2011-06-16 17:09:40 +08:00
|
|
|
static QualType getSizeOfArgType(const Expr* E) {
|
|
|
|
if (const UnaryExprOrTypeTraitExpr *SizeOf =
|
|
|
|
dyn_cast<UnaryExprOrTypeTraitExpr>(E))
|
|
|
|
if (SizeOf->getKind() == clang::UETT_SizeOf)
|
|
|
|
return SizeOf->getTypeOfArgument();
|
|
|
|
|
|
|
|
return QualType();
|
2011-06-15 00:14:58 +08:00
|
|
|
}
|
|
|
|
|
2011-04-27 15:05:31 +08:00
|
|
|
/// \brief Check for dangerous or invalid arguments to memset().
|
|
|
|
///
|
2011-06-03 14:23:57 +08:00
|
|
|
/// This issues warnings on known problematic, dangerous or unspecified
|
2011-08-05 08:22:34 +08:00
|
|
|
/// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
|
|
|
|
/// function calls.
|
2011-04-27 15:05:31 +08:00
|
|
|
///
|
|
|
|
/// \param Call The call expression to diagnose.
|
2011-08-05 08:22:34 +08:00
|
|
|
void Sema::CheckMemaccessArguments(const CallExpr *Call,
|
2012-01-17 08:37:07 +08:00
|
|
|
unsigned BId,
|
2011-08-05 08:22:34 +08:00
|
|
|
IdentifierInfo *FnName) {
|
2012-01-17 08:37:07 +08:00
|
|
|
assert(BId != 0);
|
|
|
|
|
2011-04-28 09:38:02 +08:00
|
|
|
// It is possible to have a non-standard definition of memset. Validate
|
2011-06-17 01:56:04 +08:00
|
|
|
// we have enough arguments, and if not, abort further checking.
|
2012-01-17 08:37:07 +08:00
|
|
|
unsigned ExpectedNumArgs = (BId == Builtin::BIstrndup ? 2 : 3);
|
2011-10-14 06:30:23 +08:00
|
|
|
if (Call->getNumArgs() < ExpectedNumArgs)
|
2011-04-28 09:38:02 +08:00
|
|
|
return;
|
|
|
|
|
2012-01-17 08:37:07 +08:00
|
|
|
unsigned LastArg = (BId == Builtin::BImemset ||
|
|
|
|
BId == Builtin::BIstrndup ? 1 : 2);
|
|
|
|
unsigned LenArg = (BId == Builtin::BIstrndup ? 1 : 2);
|
2011-10-14 06:30:23 +08:00
|
|
|
const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
|
2011-06-16 17:09:40 +08:00
|
|
|
|
|
|
|
// We have special checking when the length is a sizeof expression.
|
|
|
|
QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
|
|
|
|
const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
|
|
|
|
llvm::FoldingSetNodeID SizeOfArgID;
|
|
|
|
|
2011-05-04 04:37:33 +08:00
|
|
|
for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
|
|
|
|
const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
|
2011-06-15 00:14:58 +08:00
|
|
|
SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
|
2011-05-04 04:37:33 +08:00
|
|
|
|
|
|
|
QualType DestTy = Dest->getType();
|
|
|
|
if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
|
|
|
|
QualType PointeeTy = DestPtrTy->getPointeeType();
|
2011-06-16 07:02:42 +08:00
|
|
|
|
2011-06-16 17:09:40 +08:00
|
|
|
// Never warn about void type pointers. This can be used to suppress
|
|
|
|
// false positives.
|
|
|
|
if (PointeeTy->isVoidType())
|
2011-05-04 04:37:33 +08:00
|
|
|
continue;
|
|
|
|
|
2011-06-16 17:09:40 +08:00
|
|
|
// Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
|
|
|
|
// actually comparing the expressions for equality. Because computing the
|
|
|
|
// expression IDs can be expensive, we only do this if the diagnostic is
|
|
|
|
// enabled.
|
|
|
|
if (SizeOfArg &&
|
|
|
|
Diags.getDiagnosticLevel(diag::warn_sizeof_pointer_expr_memaccess,
|
|
|
|
SizeOfArg->getExprLoc())) {
|
|
|
|
// We only compute IDs for expressions if the warning is enabled, and
|
|
|
|
// cache the sizeof arg's ID.
|
|
|
|
if (SizeOfArgID == llvm::FoldingSetNodeID())
|
|
|
|
SizeOfArg->Profile(SizeOfArgID, Context, true);
|
|
|
|
llvm::FoldingSetNodeID DestID;
|
|
|
|
Dest->Profile(DestID, Context, true);
|
|
|
|
if (DestID == SizeOfArgID) {
|
2011-10-14 06:30:23 +08:00
|
|
|
// TODO: For strncpy() and friends, this could suggest sizeof(dst)
|
|
|
|
// over sizeof(src) as well.
|
2011-06-16 17:09:40 +08:00
|
|
|
unsigned ActionIdx = 0; // Default is to suggest dereferencing.
|
|
|
|
if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
|
|
|
|
if (UnaryOp->getOpcode() == UO_AddrOf)
|
|
|
|
ActionIdx = 1; // If its an address-of operator, just remove it.
|
|
|
|
if (Context.getTypeSize(PointeeTy) == Context.getCharWidth())
|
|
|
|
ActionIdx = 2; // If the pointee's size is sizeof(char),
|
|
|
|
// suggest an explicit length.
|
2012-01-14 05:52:01 +08:00
|
|
|
unsigned DestSrcSelect =
|
2012-01-17 08:37:07 +08:00
|
|
|
(BId == Builtin::BIstrndup ? 1 : ArgIdx);
|
2011-06-16 17:09:40 +08:00
|
|
|
DiagRuntimeBehavior(SizeOfArg->getExprLoc(), Dest,
|
|
|
|
PDiag(diag::warn_sizeof_pointer_expr_memaccess)
|
2011-10-14 06:30:23 +08:00
|
|
|
<< FnName << DestSrcSelect << ActionIdx
|
2011-06-16 17:09:40 +08:00
|
|
|
<< Dest->getSourceRange()
|
|
|
|
<< SizeOfArg->getSourceRange());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Also check for cases where the sizeof argument is the exact same
|
|
|
|
// type as the memory argument, and where it points to a user-defined
|
|
|
|
// record type.
|
|
|
|
if (SizeOfArgTy != QualType()) {
|
|
|
|
if (PointeeTy->isRecordType() &&
|
|
|
|
Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
|
|
|
|
DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
|
|
|
|
PDiag(diag::warn_sizeof_pointer_type_memaccess)
|
|
|
|
<< FnName << SizeOfArgTy << ArgIdx
|
|
|
|
<< PointeeTy << Dest->getSourceRange()
|
|
|
|
<< LenExpr->getSourceRange());
|
|
|
|
break;
|
|
|
|
}
|
2011-06-15 00:14:58 +08:00
|
|
|
}
|
|
|
|
|
2011-05-04 04:37:33 +08:00
|
|
|
// Always complain about dynamic classes.
|
2012-01-17 08:37:07 +08:00
|
|
|
if (isDynamicClassType(PointeeTy)) {
|
|
|
|
|
|
|
|
unsigned OperationType = 0;
|
|
|
|
// "overwritten" if we're warning about the destination for any call
|
|
|
|
// but memcmp; otherwise a verb appropriate to the call.
|
|
|
|
if (ArgIdx != 0 || BId == Builtin::BImemcmp) {
|
|
|
|
if (BId == Builtin::BImemcpy)
|
|
|
|
OperationType = 1;
|
|
|
|
else if(BId == Builtin::BImemmove)
|
|
|
|
OperationType = 2;
|
|
|
|
else if (BId == Builtin::BImemcmp)
|
|
|
|
OperationType = 3;
|
|
|
|
}
|
|
|
|
|
2011-08-20 04:40:18 +08:00
|
|
|
DiagRuntimeBehavior(
|
|
|
|
Dest->getExprLoc(), Dest,
|
|
|
|
PDiag(diag::warn_dyn_class_memaccess)
|
2012-01-17 08:37:07 +08:00
|
|
|
<< (BId == Builtin::BImemcmp ? ArgIdx + 2 : ArgIdx)
|
2012-01-14 05:52:01 +08:00
|
|
|
<< FnName << PointeeTy
|
2012-01-17 08:37:07 +08:00
|
|
|
<< OperationType
|
2011-08-20 04:40:18 +08:00
|
|
|
<< Call->getCallee()->getSourceRange());
|
2012-01-17 08:37:07 +08:00
|
|
|
} else if (PointeeTy.hasNonTrivialObjCLifetime() &&
|
|
|
|
BId != Builtin::BImemset)
|
2011-08-20 04:40:18 +08:00
|
|
|
DiagRuntimeBehavior(
|
|
|
|
Dest->getExprLoc(), Dest,
|
|
|
|
PDiag(diag::warn_arc_object_memaccess)
|
|
|
|
<< ArgIdx << FnName << PointeeTy
|
|
|
|
<< Call->getCallee()->getSourceRange());
|
2011-06-16 07:02:42 +08:00
|
|
|
else
|
2011-05-04 04:37:33 +08:00
|
|
|
continue;
|
2011-06-16 07:02:42 +08:00
|
|
|
|
2011-05-04 04:37:33 +08:00
|
|
|
DiagRuntimeBehavior(
|
|
|
|
Dest->getExprLoc(), Dest,
|
2011-06-03 14:23:57 +08:00
|
|
|
PDiag(diag::note_bad_memaccess_silence)
|
2011-05-04 04:37:33 +08:00
|
|
|
<< FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
|
|
|
|
break;
|
|
|
|
}
|
2011-04-27 15:05:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-19 04:55:45 +08:00
|
|
|
// A little helper routine: ignore addition and subtraction of integer literals.
|
|
|
|
// This intentionally does not ignore all integer constant expressions because
|
|
|
|
// we don't want to remove sizeof().
|
|
|
|
static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
|
|
|
|
Ex = Ex->IgnoreParenCasts();
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
|
|
|
|
if (!BO || !BO->isAdditiveOp())
|
|
|
|
break;
|
|
|
|
|
|
|
|
const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
|
|
|
|
const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
|
|
|
|
|
|
|
|
if (isa<IntegerLiteral>(RHS))
|
|
|
|
Ex = LHS;
|
|
|
|
else if (isa<IntegerLiteral>(LHS))
|
|
|
|
Ex = RHS;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Warn if the user has made the 'size' argument to strlcpy or strlcat
|
|
|
|
// be the size of the source, instead of the destination.
|
|
|
|
void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
|
|
|
|
IdentifierInfo *FnName) {
|
|
|
|
|
|
|
|
// Don't crash if the user has the wrong number of arguments
|
|
|
|
if (Call->getNumArgs() != 3)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
|
|
|
|
const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
|
|
|
|
const Expr *CompareWithSrc = NULL;
|
|
|
|
|
|
|
|
// Look for 'strlcpy(dst, x, sizeof(x))'
|
|
|
|
if (const Expr *Ex = getSizeOfExprArg(SizeArg))
|
|
|
|
CompareWithSrc = Ex;
|
|
|
|
else {
|
|
|
|
// Look for 'strlcpy(dst, x, strlen(x))'
|
|
|
|
if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
|
2011-11-10 14:34:14 +08:00
|
|
|
if (SizeCall->isBuiltinCall() == Builtin::BIstrlen
|
2011-08-19 04:55:45 +08:00
|
|
|
&& SizeCall->getNumArgs() == 1)
|
|
|
|
CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CompareWithSrc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Determine if the argument to sizeof/strlen is equal to the source
|
|
|
|
// argument. In principle there's all kinds of things you could do
|
|
|
|
// here, for instance creating an == expression and evaluating it with
|
|
|
|
// EvaluateAsBooleanCondition, but this uses a more direct technique:
|
|
|
|
const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
|
|
|
|
if (!SrcArgDRE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
|
|
|
|
if (!CompareWithSrcDRE ||
|
|
|
|
SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const Expr *OriginalSizeArg = Call->getArg(2);
|
|
|
|
Diag(CompareWithSrcDRE->getLocStart(), diag::warn_strlcpycat_wrong_size)
|
|
|
|
<< OriginalSizeArg->getSourceRange() << FnName;
|
|
|
|
|
|
|
|
// Output a FIXIT hint if the destination is an array (rather than a
|
|
|
|
// pointer to an array). This could be enhanced to handle some
|
|
|
|
// pointers if we know the actual size, like if DstArg is 'array+2'
|
|
|
|
// we could say 'sizeof(array)-2'.
|
|
|
|
const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
|
2011-08-19 06:48:41 +08:00
|
|
|
QualType DstArgTy = DstArg->getType();
|
2011-08-19 04:55:45 +08:00
|
|
|
|
2011-08-19 06:48:41 +08:00
|
|
|
// Only handle constant-sized or VLAs, but not flexible members.
|
|
|
|
if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(DstArgTy)) {
|
|
|
|
// Only issue the FIXIT for arrays of size > 1.
|
|
|
|
if (CAT->getSize().getSExtValue() <= 1)
|
|
|
|
return;
|
|
|
|
} else if (!DstArgTy->isVariableArrayType()) {
|
|
|
|
return;
|
2011-08-19 04:55:45 +08:00
|
|
|
}
|
2011-08-19 06:48:41 +08:00
|
|
|
|
|
|
|
llvm::SmallString<128> sizeString;
|
|
|
|
llvm::raw_svector_ostream OS(sizeString);
|
|
|
|
OS << "sizeof(";
|
2011-09-28 07:30:47 +08:00
|
|
|
DstArg->printPretty(OS, Context, 0, getPrintingPolicy());
|
2011-08-19 06:48:41 +08:00
|
|
|
OS << ")";
|
|
|
|
|
|
|
|
Diag(OriginalSizeArg->getLocStart(), diag::note_strlcpycat_wrong_size)
|
|
|
|
<< FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
|
|
|
|
OS.str());
|
2011-08-19 04:55:45 +08:00
|
|
|
}
|
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
//===--- CHECK: Return Address of Stack Variable --------------------------===//
|
|
|
|
|
2011-07-23 18:55:15 +08:00
|
|
|
static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars);
|
|
|
|
static Expr *EvalAddr(Expr* E, SmallVectorImpl<DeclRefExpr *> &refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
|
|
|
|
/// CheckReturnStackAddr - Check if a return statement returns the address
|
|
|
|
/// of a stack variable.
|
|
|
|
void
|
|
|
|
Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,
|
|
|
|
SourceLocation ReturnLoc) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-12-01 06:57:32 +08:00
|
|
|
Expr *stackE = 0;
|
2011-07-23 18:55:15 +08:00
|
|
|
SmallVector<DeclRefExpr *, 8> refVars;
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2010-12-01 06:57:32 +08:00
|
|
|
// Perform checking for returned stack addresses, local blocks,
|
|
|
|
// label addresses or references to temporaries.
|
2011-06-16 07:02:42 +08:00
|
|
|
if (lhsType->isPointerType() ||
|
|
|
|
(!getLangOptions().ObjCAutoRefCount && lhsType->isBlockPointerType())) {
|
2010-12-01 06:57:32 +08:00
|
|
|
stackE = EvalAddr(RetValExp, refVars);
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (lhsType->isReferenceType()) {
|
2010-12-01 06:57:32 +08:00
|
|
|
stackE = EvalVal(RetValExp, refVars);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stackE == 0)
|
|
|
|
return; // Nothing suspicious was found.
|
|
|
|
|
|
|
|
SourceLocation diagLoc;
|
|
|
|
SourceRange diagRange;
|
|
|
|
if (refVars.empty()) {
|
|
|
|
diagLoc = stackE->getLocStart();
|
|
|
|
diagRange = stackE->getSourceRange();
|
|
|
|
} else {
|
|
|
|
// We followed through a reference variable. 'stackE' contains the
|
|
|
|
// problematic expression but we will warn at the return statement pointing
|
|
|
|
// at the reference variable. We will later display the "trail" of
|
|
|
|
// reference variables using notes.
|
|
|
|
diagLoc = refVars[0]->getLocStart();
|
|
|
|
diagRange = refVars[0]->getSourceRange();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
|
|
|
|
Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref
|
|
|
|
: diag::warn_ret_stack_addr)
|
|
|
|
<< DR->getDecl()->getDeclName() << diagRange;
|
|
|
|
} else if (isa<BlockExpr>(stackE)) { // local block.
|
|
|
|
Diag(diagLoc, diag::err_ret_local_block) << diagRange;
|
|
|
|
} else if (isa<AddrLabelExpr>(stackE)) { // address of label.
|
|
|
|
Diag(diagLoc, diag::warn_ret_addr_label) << diagRange;
|
|
|
|
} else { // local temporary.
|
|
|
|
Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref
|
|
|
|
: diag::warn_ret_local_temp_addr)
|
|
|
|
<< diagRange;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display the "trail" of reference variables that we followed until we
|
|
|
|
// found the problematic expression using notes.
|
|
|
|
for (unsigned i = 0, e = refVars.size(); i != e; ++i) {
|
|
|
|
VarDecl *VD = cast<VarDecl>(refVars[i]->getDecl());
|
|
|
|
// If this var binds to another reference var, show the range of the next
|
|
|
|
// var, otherwise the var binds to the problematic expression, in which case
|
|
|
|
// show the range of the expression.
|
|
|
|
SourceRange range = (i < e-1) ? refVars[i+1]->getSourceRange()
|
|
|
|
: stackE->getSourceRange();
|
|
|
|
Diag(VD->getLocation(), diag::note_ref_var_local_bind)
|
|
|
|
<< VD->getDeclName() << range;
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EvalAddr - EvalAddr and EvalVal are mutually recursive functions that
|
|
|
|
/// check if the expression in a return statement evaluates to an address
|
2010-12-01 06:57:32 +08:00
|
|
|
/// to a location on the stack, a local block, an address of a label, or a
|
|
|
|
/// reference to local temporary. The recursion is used to traverse the
|
2007-08-18 00:46:58 +08:00
|
|
|
/// AST of the return expression, with recursion backtracking when we
|
2010-12-01 06:57:32 +08:00
|
|
|
/// encounter a subexpression that (1) clearly does not lead to one of the
|
|
|
|
/// above problematic expressions (2) is something we cannot determine leads to
|
|
|
|
/// a problematic expression based on such local checking.
|
|
|
|
///
|
|
|
|
/// Both EvalAddr and EvalVal follow through reference variables to evaluate
|
|
|
|
/// the expression that they point to. Such variables are added to the
|
|
|
|
/// 'refVars' vector so that we know what the reference variable "trail" was.
|
2007-08-18 00:46:58 +08:00
|
|
|
///
|
2007-08-29 01:02:55 +08:00
|
|
|
/// EvalAddr processes expressions that are pointers that are used as
|
|
|
|
/// references (and not L-values). EvalVal handles all other values.
|
2010-12-01 06:57:32 +08:00
|
|
|
/// At the base case of the recursion is a check for the above problematic
|
|
|
|
/// expressions.
|
2007-08-18 00:46:58 +08:00
|
|
|
///
|
|
|
|
/// This implementation handles:
|
|
|
|
///
|
|
|
|
/// * pointer-to-pointer casts
|
|
|
|
/// * implicit conversions from array references to pointers
|
|
|
|
/// * taking the address of fields
|
|
|
|
/// * arbitrary interplay between "&" and "*" operators
|
|
|
|
/// * pointer arithmetic from an address of a stack variable
|
|
|
|
/// * taking the address of an array element where the array is on the stack
|
2011-07-23 18:55:15 +08:00
|
|
|
static Expr *EvalAddr(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
|
2010-12-01 06:57:32 +08:00
|
|
|
if (E->isTypeDependent())
|
|
|
|
return NULL;
|
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
// We should only be called for evaluating pointer expressions.
|
2009-08-18 00:35:33 +08:00
|
|
|
assert((E->getType()->isAnyPointerType() ||
|
2008-09-06 06:11:13 +08:00
|
|
|
E->getType()->isBlockPointerType() ||
|
2008-01-08 03:49:32 +08:00
|
|
|
E->getType()->isObjCQualifiedIdType()) &&
|
2007-12-28 13:31:15 +08:00
|
|
|
"EvalAddr only works on pointers");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-04-15 08:35:48 +08:00
|
|
|
E = E->IgnoreParens();
|
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
// Our "symbolic interpreter" is just a dispatch off the currently
|
|
|
|
// viewed AST node. We then recursively traverse the AST by calling
|
|
|
|
// EvalAddr and EvalVal appropriately.
|
|
|
|
switch (E->getStmtClass()) {
|
2010-12-01 06:57:32 +08:00
|
|
|
case Stmt::DeclRefExprClass: {
|
|
|
|
DeclRefExpr *DR = cast<DeclRefExpr>(E);
|
|
|
|
|
|
|
|
if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
|
|
|
|
// If this is a reference variable, follow through to the expression that
|
|
|
|
// it points to.
|
|
|
|
if (V->hasLocalStorage() &&
|
|
|
|
V->getType()->isReferenceType() && V->hasInit()) {
|
|
|
|
// Add the reference variable to the "trail".
|
|
|
|
refVars.push_back(DR);
|
|
|
|
return EvalAddr(V->getInit(), refVars);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-08-18 00:46:58 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
case Stmt::UnaryOperatorClass: {
|
|
|
|
// The only unary operator that make sense to handle here
|
|
|
|
// is AddrOf. All others don't make sense as pointers.
|
|
|
|
UnaryOperator *U = cast<UnaryOperator>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
if (U->getOpcode() == UO_AddrOf)
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalVal(U->getSubExpr(), refVars);
|
2007-12-28 13:31:15 +08:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
case Stmt::BinaryOperatorClass: {
|
|
|
|
// Handle pointer arithmetic. All other binary operators are not valid
|
|
|
|
// in this context.
|
|
|
|
BinaryOperator *B = cast<BinaryOperator>(E);
|
2010-08-25 19:45:40 +08:00
|
|
|
BinaryOperatorKind op = B->getOpcode();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
if (op != BO_Add && op != BO_Sub)
|
2007-12-28 13:31:15 +08:00
|
|
|
return NULL;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
Expr *Base = B->getLHS();
|
2007-12-01 03:04:31 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
// Determine which argument is the real pointer base. It could be
|
|
|
|
// the RHS argument instead of the LHS.
|
|
|
|
if (!Base->getType()->isPointerType()) Base = B->getRHS();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
assert (Base->getType()->isPointerType());
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(Base, refVars);
|
2007-12-28 13:31:15 +08:00
|
|
|
}
|
2008-09-11 03:17:48 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
// For conditional operators we need to see if either the LHS or RHS are
|
|
|
|
// valid DeclRefExpr*s. If one of them is valid, we return it.
|
|
|
|
case Stmt::ConditionalOperatorClass: {
|
|
|
|
ConditionalOperator *C = cast<ConditionalOperator>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
// Handle the GNU extension for missing LHS.
|
2010-10-22 00:21:08 +08:00
|
|
|
if (Expr *lhsExpr = C->getLHS()) {
|
|
|
|
// In C++, we can have a throw-expression, which has 'void' type.
|
|
|
|
if (!lhsExpr->getType()->isVoidType())
|
2010-12-01 06:57:32 +08:00
|
|
|
if (Expr* LHS = EvalAddr(lhsExpr, refVars))
|
2010-10-22 00:21:08 +08:00
|
|
|
return LHS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In C++, we can have a throw-expression, which has 'void' type.
|
|
|
|
if (C->getRHS()->getType()->isVoidType())
|
|
|
|
return NULL;
|
2007-08-18 00:46:58 +08:00
|
|
|
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(C->getRHS(), refVars);
|
2007-12-28 13:31:15 +08:00
|
|
|
}
|
2010-12-01 06:57:32 +08:00
|
|
|
|
|
|
|
case Stmt::BlockExprClass:
|
2011-02-02 21:00:07 +08:00
|
|
|
if (cast<BlockExpr>(E)->getBlockDecl()->hasCaptures())
|
2010-12-01 06:57:32 +08:00
|
|
|
return E; // local block.
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
case Stmt::AddrLabelExprClass:
|
|
|
|
return E; // address of label.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
case Stmt::ExprWithCleanupsClass:
|
|
|
|
return EvalAddr(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
|
|
|
|
|
2008-08-07 08:49:01 +08:00
|
|
|
// For casts, we need to handle conversions from arrays to
|
|
|
|
// pointer values, and pointer-to-pointer conversions.
|
2008-10-28 03:41:14 +08:00
|
|
|
case Stmt::ImplicitCastExprClass:
|
2008-10-28 23:36:24 +08:00
|
|
|
case Stmt::CStyleCastExprClass:
|
2011-06-16 07:02:42 +08:00
|
|
|
case Stmt::CXXFunctionalCastExprClass:
|
|
|
|
case Stmt::ObjCBridgedCastExprClass: {
|
2008-08-19 07:01:59 +08:00
|
|
|
Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
|
2008-08-07 08:49:01 +08:00
|
|
|
QualType T = SubExpr->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-09-06 06:11:13 +08:00
|
|
|
if (SubExpr->getType()->isPointerType() ||
|
|
|
|
SubExpr->getType()->isBlockPointerType() ||
|
|
|
|
SubExpr->getType()->isObjCQualifiedIdType())
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(SubExpr, refVars);
|
2008-08-07 08:49:01 +08:00
|
|
|
else if (T->isArrayType())
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalVal(SubExpr, refVars);
|
2007-12-28 13:31:15 +08:00
|
|
|
else
|
2008-08-07 08:49:01 +08:00
|
|
|
return 0;
|
2007-12-28 13:31:15 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
// C++ casts. For dynamic casts, static casts, and const casts, we
|
|
|
|
// are always converting from a pointer-to-pointer, so we just blow
|
2008-10-28 03:41:14 +08:00
|
|
|
// through the cast. In the case the dynamic cast doesn't fail (and
|
|
|
|
// return NULL), we take the conservative route and report cases
|
2007-12-28 13:31:15 +08:00
|
|
|
// where we return the address of a stack variable. For Reinterpre
|
2008-10-28 03:41:14 +08:00
|
|
|
// FIXME: The comment about is wrong; we're not always converting
|
|
|
|
// from pointer to pointer. I'm guessing that this code should also
|
2009-09-09 23:08:12 +08:00
|
|
|
// handle references to objects.
|
|
|
|
case Stmt::CXXStaticCastExprClass:
|
|
|
|
case Stmt::CXXDynamicCastExprClass:
|
2008-10-28 03:41:14 +08:00
|
|
|
case Stmt::CXXConstCastExprClass:
|
|
|
|
case Stmt::CXXReinterpretCastExprClass: {
|
|
|
|
Expr *S = cast<CXXNamedCastExpr>(E)->getSubExpr();
|
2008-09-06 06:11:13 +08:00
|
|
|
if (S->getType()->isPointerType() || S->getType()->isBlockPointerType())
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(S, refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
else
|
|
|
|
return NULL;
|
2007-12-28 13:31:15 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-06-22 01:03:29 +08:00
|
|
|
case Stmt::MaterializeTemporaryExprClass:
|
|
|
|
if (Expr *Result = EvalAddr(
|
|
|
|
cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
|
|
|
|
refVars))
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
return E;
|
|
|
|
|
2007-12-28 13:31:15 +08:00
|
|
|
// Everything else: we simply don't reason about them.
|
|
|
|
default:
|
|
|
|
return NULL;
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
|
|
|
|
/// EvalVal - This function is complements EvalAddr in the mutual recursion.
|
|
|
|
/// See the comments for EvalAddr for more details.
|
2011-07-23 18:55:15 +08:00
|
|
|
static Expr *EvalVal(Expr *E, SmallVectorImpl<DeclRefExpr *> &refVars) {
|
2010-08-05 04:01:07 +08:00
|
|
|
do {
|
2007-08-29 01:02:55 +08:00
|
|
|
// We should only be called for evaluating non-pointer expressions, or
|
|
|
|
// expressions with a pointer type that are not used as references but instead
|
|
|
|
// are l-values (e.g., DeclRefExpr with a pointer type).
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
// Our "symbolic interpreter" is just a dispatch off the currently
|
|
|
|
// viewed AST node. We then recursively traverse the AST by calling
|
|
|
|
// EvalAddr and EvalVal appropriately.
|
2011-04-15 08:35:48 +08:00
|
|
|
|
|
|
|
E = E->IgnoreParens();
|
2007-08-18 00:46:58 +08:00
|
|
|
switch (E->getStmtClass()) {
|
2010-08-05 04:01:07 +08:00
|
|
|
case Stmt::ImplicitCastExprClass: {
|
|
|
|
ImplicitCastExpr *IE = cast<ImplicitCastExpr>(E);
|
2010-08-25 18:28:54 +08:00
|
|
|
if (IE->getValueKind() == VK_LValue) {
|
2010-08-05 04:01:07 +08:00
|
|
|
E = IE->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
case Stmt::ExprWithCleanupsClass:
|
|
|
|
return EvalVal(cast<ExprWithCleanups>(E)->getSubExpr(), refVars);
|
|
|
|
|
2009-10-24 02:54:35 +08:00
|
|
|
case Stmt::DeclRefExprClass: {
|
2010-12-01 06:57:32 +08:00
|
|
|
// When we hit a DeclRefExpr we are looking at code that refers to a
|
|
|
|
// variable's name. If it's not a reference variable we check if it has
|
|
|
|
// local storage within the function, and if so, return the expression.
|
2007-08-18 00:46:58 +08:00
|
|
|
DeclRefExpr *DR = cast<DeclRefExpr>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
if (VarDecl *V = dyn_cast<VarDecl>(DR->getDecl()))
|
2010-12-01 06:57:32 +08:00
|
|
|
if (V->hasLocalStorage()) {
|
|
|
|
if (!V->getType()->isReferenceType())
|
|
|
|
return DR;
|
|
|
|
|
|
|
|
// Reference variable, follow through to the expression that
|
|
|
|
// it points to.
|
|
|
|
if (V->hasInit()) {
|
|
|
|
// Add the reference variable to the "trail".
|
|
|
|
refVars.push_back(DR);
|
|
|
|
return EvalVal(V->getInit(), refVars);
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
case Stmt::UnaryOperatorClass: {
|
|
|
|
// The only unary operator that make sense to handle here
|
|
|
|
// is Deref. All others don't resolve to a "name." This includes
|
|
|
|
// handling all sorts of rvalues passed to a unary operator.
|
|
|
|
UnaryOperator *U = cast<UnaryOperator>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
if (U->getOpcode() == UO_Deref)
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(U->getSubExpr(), refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
case Stmt::ArraySubscriptExprClass: {
|
|
|
|
// Array subscripts are potential references to data on the stack. We
|
|
|
|
// retrieve the DeclRefExpr* for the array variable if it indeed
|
|
|
|
// has local storage.
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalAddr(cast<ArraySubscriptExpr>(E)->getBase(), refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
case Stmt::ConditionalOperatorClass: {
|
|
|
|
// For conditional operators we need to see if either the LHS or RHS are
|
2010-12-01 06:57:32 +08:00
|
|
|
// non-NULL Expr's. If one is non-NULL, we return it.
|
2007-08-18 00:46:58 +08:00
|
|
|
ConditionalOperator *C = cast<ConditionalOperator>(E);
|
|
|
|
|
2007-12-01 03:04:31 +08:00
|
|
|
// Handle the GNU extension for missing LHS.
|
|
|
|
if (Expr *lhsExpr = C->getLHS())
|
2010-12-01 06:57:32 +08:00
|
|
|
if (Expr *LHS = EvalVal(lhsExpr, refVars))
|
2007-12-01 03:04:31 +08:00
|
|
|
return LHS;
|
|
|
|
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalVal(C->getRHS(), refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
// Accesses to members are potential references to data on the stack.
|
2009-09-01 07:41:50 +08:00
|
|
|
case Stmt::MemberExprClass: {
|
2007-08-18 00:46:58 +08:00
|
|
|
MemberExpr *M = cast<MemberExpr>(E);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
// Check for indirect access. We only want direct field accesses.
|
2010-09-02 09:12:13 +08:00
|
|
|
if (M->isArrow())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Check whether the member type is itself a reference, in which case
|
|
|
|
// we're not going to refer to the member, but to what the member refers to.
|
|
|
|
if (M->getMemberDecl()->getType()->isReferenceType())
|
2007-08-18 00:46:58 +08:00
|
|
|
return NULL;
|
2010-09-02 09:12:13 +08:00
|
|
|
|
2010-12-01 06:57:32 +08:00
|
|
|
return EvalVal(M->getBase(), refVars);
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-06-22 01:03:29 +08:00
|
|
|
case Stmt::MaterializeTemporaryExprClass:
|
|
|
|
if (Expr *Result = EvalVal(
|
|
|
|
cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(),
|
|
|
|
refVars))
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
return E;
|
|
|
|
|
2007-08-18 00:46:58 +08:00
|
|
|
default:
|
2010-12-01 06:57:32 +08:00
|
|
|
// Check that we don't return or take the address of a reference to a
|
|
|
|
// temporary. This is only useful in C++.
|
|
|
|
if (!E->isTypeDependent() && E->isRValue())
|
|
|
|
return E;
|
|
|
|
|
|
|
|
// Everything else: we simply don't reason about them.
|
2007-08-18 00:46:58 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-08-05 04:01:07 +08:00
|
|
|
} while (true);
|
2007-08-18 00:46:58 +08:00
|
|
|
}
|
2007-11-25 08:58:00 +08:00
|
|
|
|
|
|
|
//===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
|
|
|
|
|
|
|
|
/// Check for comparisons of floating point operands using != and ==.
|
|
|
|
/// Issue a warning if these are no self-comparisons, as they are not likely
|
|
|
|
/// to do what the programmer intended.
|
2011-09-16 05:56:47 +08:00
|
|
|
void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
|
2007-11-25 08:58:00 +08:00
|
|
|
bool EmitWarning = true;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2011-09-16 05:56:47 +08:00
|
|
|
Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
|
|
|
|
Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
|
2007-11-25 08:58:00 +08:00
|
|
|
|
|
|
|
// Special case: check for x == x (which is OK).
|
|
|
|
// Do not emit warnings for such cases.
|
|
|
|
if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
|
|
|
|
if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
|
|
|
|
if (DRL->getDecl() == DRR->getDecl())
|
|
|
|
EmitWarning = false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
|
2007-11-29 08:59:04 +08:00
|
|
|
// Special case: check for comparisons against literals that can be exactly
|
|
|
|
// represented by APFloat. In such cases, do not emit a warning. This
|
|
|
|
// is a heuristic: often comparison against such literals are used to
|
|
|
|
// detect if a value in a variable has not changed. This clearly can
|
|
|
|
// lead to false negatives.
|
|
|
|
if (EmitWarning) {
|
|
|
|
if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
|
|
|
|
if (FLL->isExact())
|
|
|
|
EmitWarning = false;
|
2009-08-05 05:02:39 +08:00
|
|
|
} else
|
2007-11-29 08:59:04 +08:00
|
|
|
if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)){
|
|
|
|
if (FLR->isExact())
|
|
|
|
EmitWarning = false;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-11-25 08:58:00 +08:00
|
|
|
// Check for comparisons with builtin types.
|
2009-01-19 08:08:26 +08:00
|
|
|
if (EmitWarning)
|
2007-11-25 08:58:00 +08:00
|
|
|
if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
|
2011-11-10 14:34:14 +08:00
|
|
|
if (CL->isBuiltinCall())
|
2007-11-25 08:58:00 +08:00
|
|
|
EmitWarning = false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-01-19 08:08:26 +08:00
|
|
|
if (EmitWarning)
|
2007-11-25 08:58:00 +08:00
|
|
|
if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
|
2011-11-10 14:34:14 +08:00
|
|
|
if (CR->isBuiltinCall())
|
2007-11-25 08:58:00 +08:00
|
|
|
EmitWarning = false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2007-11-25 08:58:00 +08:00
|
|
|
// Emit the diagnostic.
|
|
|
|
if (EmitWarning)
|
2011-09-16 05:56:47 +08:00
|
|
|
Diag(Loc, diag::warn_floatingpoint_eq)
|
|
|
|
<< LHS->getSourceRange() << RHS->getSourceRange();
|
2007-11-25 08:58:00 +08:00
|
|
|
}
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
|
|
|
|
//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
namespace {
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
/// Structure recording the 'active' range of an integer-valued
|
|
|
|
/// expression.
|
|
|
|
struct IntRange {
|
|
|
|
/// The number of bits active in the int.
|
|
|
|
unsigned Width;
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
/// True if the int is known not to have negative values.
|
|
|
|
bool NonNegative;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
IntRange(unsigned Width, bool NonNegative)
|
|
|
|
: Width(Width), NonNegative(NonNegative)
|
|
|
|
{}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
/// Returns the range of the bool type.
|
2010-01-06 13:24:50 +08:00
|
|
|
static IntRange forBoolType() {
|
|
|
|
return IntRange(1, true);
|
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
/// Returns the range of an opaque value of the given integral type.
|
|
|
|
static IntRange forValueOfType(ASTContext &C, QualType T) {
|
|
|
|
return forValueOfCanonicalType(C,
|
|
|
|
T->getCanonicalTypeInternal().getTypePtr());
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
/// Returns the range of an opaque value of a canonical integral type.
|
|
|
|
static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
|
2010-01-06 13:24:50 +08:00
|
|
|
assert(T->isCanonicalUnqualified());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(T))
|
|
|
|
T = VT->getElementType().getTypePtr();
|
|
|
|
if (const ComplexType *CT = dyn_cast<ComplexType>(T))
|
|
|
|
T = CT->getElementType().getTypePtr();
|
2010-05-06 16:58:33 +08:00
|
|
|
|
2010-11-10 06:22:12 +08:00
|
|
|
// For enum types, use the known bit width of the enumerators.
|
2010-05-06 16:58:33 +08:00
|
|
|
if (const EnumType *ET = dyn_cast<EnumType>(T)) {
|
|
|
|
EnumDecl *Enum = ET->getDecl();
|
2011-10-07 14:10:15 +08:00
|
|
|
if (!Enum->isCompleteDefinition())
|
2010-11-10 06:22:12 +08:00
|
|
|
return IntRange(C.getIntWidth(QualType(T, 0)), false);
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
unsigned NumPositive = Enum->getNumPositiveBits();
|
|
|
|
unsigned NumNegative = Enum->getNumNegativeBits();
|
|
|
|
|
|
|
|
return IntRange(std::max(NumPositive, NumNegative), NumNegative == 0);
|
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
const BuiltinType *BT = cast<BuiltinType>(T);
|
|
|
|
assert(BT->isInteger());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
/// Returns the "target" range of a canonical integral type, i.e.
|
|
|
|
/// the range of values expressible in the type.
|
|
|
|
///
|
|
|
|
/// This matches forValueOfCanonicalType except that enums have the
|
|
|
|
/// full range of their type, not the range of their enumerators.
|
|
|
|
static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
|
|
|
|
assert(T->isCanonicalUnqualified());
|
|
|
|
|
|
|
|
if (const VectorType *VT = dyn_cast<VectorType>(T))
|
|
|
|
T = VT->getElementType().getTypePtr();
|
|
|
|
if (const ComplexType *CT = dyn_cast<ComplexType>(T))
|
|
|
|
T = CT->getElementType().getTypePtr();
|
|
|
|
if (const EnumType *ET = dyn_cast<EnumType>(T))
|
2011-09-09 07:29:05 +08:00
|
|
|
T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
|
2010-11-11 07:38:19 +08:00
|
|
|
|
|
|
|
const BuiltinType *BT = cast<BuiltinType>(T);
|
|
|
|
assert(BT->isInteger());
|
|
|
|
|
|
|
|
return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the supremum of two ranges: i.e. their conservative merge.
|
2010-02-24 03:22:29 +08:00
|
|
|
static IntRange join(IntRange L, IntRange R) {
|
2010-01-06 13:24:50 +08:00
|
|
|
return IntRange(std::max(L.Width, R.Width),
|
2010-01-07 06:07:33 +08:00
|
|
|
L.NonNegative && R.NonNegative);
|
|
|
|
}
|
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
/// Returns the infinum of two ranges: i.e. their aggressive merge.
|
2010-02-24 03:22:29 +08:00
|
|
|
static IntRange meet(IntRange L, IntRange R) {
|
2010-01-07 06:07:33 +08:00
|
|
|
return IntRange(std::min(L.Width, R.Width),
|
|
|
|
L.NonNegative || R.NonNegative);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
2010-01-06 13:24:50 +08:00
|
|
|
};
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, unsigned MaxWidth) {
|
|
|
|
if (value.isSigned() && value.isNegative())
|
|
|
|
return IntRange(value.getMinSignedBits(), false);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (value.getBitWidth() > MaxWidth)
|
2010-12-07 16:25:34 +08:00
|
|
|
value = value.trunc(MaxWidth);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// isNonNegative() just checks the sign bit without considering
|
|
|
|
// signedness.
|
|
|
|
return IntRange(value.getActiveBits(), true);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-01-07 06:57:21 +08:00
|
|
|
IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
|
2010-01-06 13:24:50 +08:00
|
|
|
unsigned MaxWidth) {
|
|
|
|
if (result.isInt())
|
|
|
|
return GetValueRange(C, result.getInt(), MaxWidth);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (result.isVector()) {
|
2010-01-07 06:57:21 +08:00
|
|
|
IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
|
|
|
|
for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
|
|
|
|
IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
|
|
|
|
R = IntRange::join(R, El);
|
|
|
|
}
|
2010-01-06 13:24:50 +08:00
|
|
|
return R;
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (result.isComplexInt()) {
|
|
|
|
IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
|
|
|
|
IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
|
|
|
|
return IntRange::join(R, I);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This can happen with lossless casts to intptr_t of "based" lvalues.
|
|
|
|
// Assume it might use arbitrary bits.
|
2010-01-07 06:57:21 +08:00
|
|
|
// FIXME: The only reason we need to pass the type in here is to get
|
|
|
|
// the sign right on this one case. It would be nice if APValue
|
|
|
|
// preserved this.
|
2012-01-05 07:13:47 +08:00
|
|
|
assert(result.isLValue() || result.isAddrLabelDiff());
|
2011-05-22 00:28:01 +08:00
|
|
|
return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
/// Pseudo-evaluate the given integer expression, estimating the
|
|
|
|
/// range of values it might take.
|
|
|
|
///
|
|
|
|
/// \param MaxWidth - the width to which the value will be truncated
|
|
|
|
IntRange GetExprRange(ASTContext &C, Expr *E, unsigned MaxWidth) {
|
2010-01-05 07:31:57 +08:00
|
|
|
E = E->IgnoreParens();
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// Try a full evaluation first.
|
|
|
|
Expr::EvalResult result;
|
2011-10-29 08:50:52 +08:00
|
|
|
if (E->EvaluateAsRValue(result, C))
|
2010-01-07 06:57:21 +08:00
|
|
|
return GetValueRange(C, result.Val, E->getType(), MaxWidth);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// I think we only want to look through implicit casts here; if the
|
|
|
|
// user has an explicit widening cast, we should treat the value as
|
|
|
|
// being of the new, wider type.
|
|
|
|
if (ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) {
|
2011-12-15 10:41:52 +08:00
|
|
|
if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
|
2010-01-06 13:24:50 +08:00
|
|
|
return GetExprRange(C, CE->getSubExpr(), MaxWidth);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
IntRange OutputTypeRange = IntRange::forValueOfType(C, CE->getType());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
bool isIntegerCast = (CE->getCastKind() == CK_IntegralCast);
|
2010-01-07 06:07:33 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// Assume that non-integer casts can span the full range of the type.
|
2010-01-07 06:07:33 +08:00
|
|
|
if (!isIntegerCast)
|
2010-01-06 13:24:50 +08:00
|
|
|
return OutputTypeRange;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
IntRange SubRange
|
|
|
|
= GetExprRange(C, CE->getSubExpr(),
|
|
|
|
std::min(MaxWidth, OutputTypeRange.Width));
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// Bail out if the subexpr's range is as wide as the cast type.
|
|
|
|
if (SubRange.Width >= OutputTypeRange.Width)
|
|
|
|
return OutputTypeRange;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// Otherwise, we take the smaller width, and we're non-negative if
|
|
|
|
// either the output type or the subexpr is.
|
|
|
|
return IntRange(SubRange.Width,
|
|
|
|
SubRange.NonNegative || OutputTypeRange.NonNegative);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
|
|
|
|
// If we can fold the condition, just take that operand.
|
|
|
|
bool CondResult;
|
|
|
|
if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
|
|
|
|
return GetExprRange(C, CondResult ? CO->getTrueExpr()
|
|
|
|
: CO->getFalseExpr(),
|
|
|
|
MaxWidth);
|
|
|
|
|
|
|
|
// Otherwise, conservatively merge.
|
|
|
|
IntRange L = GetExprRange(C, CO->getTrueExpr(), MaxWidth);
|
|
|
|
IntRange R = GetExprRange(C, CO->getFalseExpr(), MaxWidth);
|
|
|
|
return IntRange::join(L, R);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
|
|
|
|
switch (BO->getOpcode()) {
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
// Boolean-valued operations are single-bit and positive.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_LAnd:
|
|
|
|
case BO_LOr:
|
|
|
|
case BO_LT:
|
|
|
|
case BO_GT:
|
|
|
|
case BO_LE:
|
|
|
|
case BO_GE:
|
|
|
|
case BO_EQ:
|
|
|
|
case BO_NE:
|
2010-01-06 13:24:50 +08:00
|
|
|
return IntRange::forBoolType();
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2011-07-13 14:35:24 +08:00
|
|
|
// The type of the assignments is the type of the LHS, so the RHS
|
|
|
|
// is not necessarily the same type.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_MulAssign:
|
|
|
|
case BO_DivAssign:
|
|
|
|
case BO_RemAssign:
|
|
|
|
case BO_AddAssign:
|
|
|
|
case BO_SubAssign:
|
2011-07-13 14:35:24 +08:00
|
|
|
case BO_XorAssign:
|
|
|
|
case BO_OrAssign:
|
|
|
|
// TODO: bitfields?
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2010-02-24 03:22:29 +08:00
|
|
|
|
2011-07-13 14:35:24 +08:00
|
|
|
// Simple assignments just pass through the RHS, which will have
|
|
|
|
// been coerced to the LHS type.
|
|
|
|
case BO_Assign:
|
|
|
|
// TODO: bitfields?
|
|
|
|
return GetExprRange(C, BO->getRHS(), MaxWidth);
|
|
|
|
|
2010-01-05 07:31:57 +08:00
|
|
|
// Operations with opaque sources are black-listed.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_PtrMemD:
|
|
|
|
case BO_PtrMemI:
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-07 06:07:33 +08:00
|
|
|
// Bitwise-and uses the *infinum* of the two source ranges.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_And:
|
|
|
|
case BO_AndAssign:
|
2010-01-07 06:07:33 +08:00
|
|
|
return IntRange::meet(GetExprRange(C, BO->getLHS(), MaxWidth),
|
|
|
|
GetExprRange(C, BO->getRHS(), MaxWidth));
|
|
|
|
|
2010-01-05 07:31:57 +08:00
|
|
|
// Left shift gets black-listed based on a judgement call.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_Shl:
|
2010-04-07 09:14:35 +08:00
|
|
|
// ...except that we want to treat '1 << (blah)' as logically
|
|
|
|
// positive. It's an important idiom.
|
|
|
|
if (IntegerLiteral *I
|
|
|
|
= dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
|
|
|
|
if (I->getValue() == 1) {
|
2010-11-11 07:38:19 +08:00
|
|
|
IntRange R = IntRange::forValueOfType(C, E->getType());
|
2010-04-07 09:14:35 +08:00
|
|
|
return IntRange(R.Width, /*NonNegative*/ true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// fallthrough
|
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_ShlAssign:
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-07 06:07:33 +08:00
|
|
|
// Right shift by a constant can narrow its left argument.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_Shr:
|
|
|
|
case BO_ShrAssign: {
|
2010-01-07 06:07:33 +08:00
|
|
|
IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
|
|
|
|
|
|
|
|
// If the shift amount is a positive constant, drop the width by
|
|
|
|
// that much.
|
|
|
|
llvm::APSInt shift;
|
|
|
|
if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
|
|
|
|
shift.isNonNegative()) {
|
|
|
|
unsigned zext = shift.getZExtValue();
|
|
|
|
if (zext >= L.Width)
|
|
|
|
L.Width = (L.NonNegative ? 0 : 1);
|
|
|
|
else
|
|
|
|
L.Width -= zext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Comma acts as its right operand.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_Comma:
|
2010-01-06 13:24:50 +08:00
|
|
|
return GetExprRange(C, BO->getRHS(), MaxWidth);
|
|
|
|
|
2010-01-07 06:07:33 +08:00
|
|
|
// Black-list pointer subtractions.
|
2010-08-25 19:45:40 +08:00
|
|
|
case BO_Sub:
|
2010-01-05 07:31:57 +08:00
|
|
|
if (BO->getLHS()->getType()->isPointerType())
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2011-07-15 06:39:48 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
// The width of a division result is mostly determined by the size
|
|
|
|
// of the LHS.
|
|
|
|
case BO_Div: {
|
|
|
|
// Don't 'pre-truncate' the operands.
|
|
|
|
unsigned opWidth = C.getIntWidth(E->getType());
|
|
|
|
IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
|
|
|
|
|
|
|
|
// If the divisor is constant, use that.
|
|
|
|
llvm::APSInt divisor;
|
|
|
|
if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
|
|
|
|
unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
|
|
|
|
if (log2 >= L.Width)
|
|
|
|
L.Width = (L.NonNegative ? 0 : 1);
|
|
|
|
else
|
|
|
|
L.Width = std::min(L.Width - log2, MaxWidth);
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, just use the LHS's width.
|
|
|
|
IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
|
|
|
|
return IntRange(L.Width, L.NonNegative && R.NonNegative);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The result of a remainder can't be larger than the result of
|
|
|
|
// either side.
|
|
|
|
case BO_Rem: {
|
|
|
|
// Don't 'pre-truncate' the operands.
|
|
|
|
unsigned opWidth = C.getIntWidth(E->getType());
|
|
|
|
IntRange L = GetExprRange(C, BO->getLHS(), opWidth);
|
|
|
|
IntRange R = GetExprRange(C, BO->getRHS(), opWidth);
|
|
|
|
|
|
|
|
IntRange meet = IntRange::meet(L, R);
|
|
|
|
meet.Width = std::min(meet.Width, MaxWidth);
|
|
|
|
return meet;
|
|
|
|
}
|
2010-02-16 09:46:59 +08:00
|
|
|
|
2011-07-15 06:39:48 +08:00
|
|
|
// The default behavior is okay for these.
|
|
|
|
case BO_Mul:
|
|
|
|
case BO_Add:
|
|
|
|
case BO_Xor:
|
|
|
|
case BO_Or:
|
2010-01-06 13:24:50 +08:00
|
|
|
break;
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
2010-01-06 13:24:50 +08:00
|
|
|
|
2011-07-15 06:39:48 +08:00
|
|
|
// The default case is to treat the operation as if it were closed
|
|
|
|
// on the narrowest type that encompasses both operands.
|
2010-01-06 13:24:50 +08:00
|
|
|
IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth);
|
|
|
|
IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth);
|
|
|
|
return IntRange::join(L, R);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
|
|
|
|
switch (UO->getOpcode()) {
|
|
|
|
// Boolean-valued operations are white-listed.
|
2010-08-25 19:45:40 +08:00
|
|
|
case UO_LNot:
|
2010-01-06 13:24:50 +08:00
|
|
|
return IntRange::forBoolType();
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
// Operations with opaque sources are black-listed.
|
2010-08-25 19:45:40 +08:00
|
|
|
case UO_Deref:
|
|
|
|
case UO_AddrOf: // should be impossible
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
default:
|
2010-01-06 13:24:50 +08:00
|
|
|
return GetExprRange(C, UO->getSubExpr(), MaxWidth);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
}
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
llvm-svn: 102542
2010-04-29 06:16:22 +08:00
|
|
|
|
|
|
|
if (dyn_cast<OffsetOfExpr>(E)) {
|
2010-11-11 07:38:19 +08:00
|
|
|
IntRange::forValueOfType(C, E->getType());
|
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.
This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.
OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.
There are two major caveats to this patch:
1) CodeGen cannot handle the case where __builtin_offsetof is not a
constant expression, so it produces an error. So, to avoid
regressing in C, we retain the old UnaryOperator-based
__builtin_offsetof implementation in C while using the shiny new
OffsetOfExpr implementation in C++. The old implementation can go
away once we have proper CodeGen support for this case, which we
expect won't cause much trouble in C++.
2) __builtin_offsetof doesn't work well with non-POD class types,
particularly when the designated field is found within a base
class. I will address this in a subsequent patch.
Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.
llvm-svn: 102542
2010-04-29 06:16:22 +08:00
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2011-10-11 02:28:20 +08:00
|
|
|
if (FieldDecl *BitField = E->getBitField())
|
|
|
|
return IntRange(BitField->getBitWidthValue(C),
|
2011-05-22 00:28:01 +08:00
|
|
|
BitField->getType()->isUnsignedIntegerOrEnumerationType());
|
2010-01-06 13:24:50 +08:00
|
|
|
|
2010-11-11 07:38:19 +08:00
|
|
|
return IntRange::forValueOfType(C, E->getType());
|
2010-01-06 13:24:50 +08:00
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
IntRange GetExprRange(ASTContext &C, Expr *E) {
|
|
|
|
return GetExprRange(C, E, C.getIntWidth(E->getType()));
|
|
|
|
}
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
/// Checks whether the given value, which currently has the given
|
|
|
|
/// source semantics, has the same value when coerced through the
|
|
|
|
/// target semantics.
|
|
|
|
bool IsSameFloatAfterCast(const llvm::APFloat &value,
|
|
|
|
const llvm::fltSemantics &Src,
|
|
|
|
const llvm::fltSemantics &Tgt) {
|
|
|
|
llvm::APFloat truncated = value;
|
|
|
|
|
|
|
|
bool ignored;
|
|
|
|
truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
|
|
|
|
truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
|
|
|
|
|
|
|
|
return truncated.bitwiseIsEqual(value);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
/// Checks whether the given value, which currently has the given
|
|
|
|
/// source semantics, has the same value when coerced through the
|
|
|
|
/// target semantics.
|
|
|
|
///
|
|
|
|
/// The value might be a vector of floats (or a complex number).
|
|
|
|
bool IsSameFloatAfterCast(const APValue &value,
|
|
|
|
const llvm::fltSemantics &Src,
|
|
|
|
const llvm::fltSemantics &Tgt) {
|
|
|
|
if (value.isFloat())
|
|
|
|
return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
|
|
|
|
|
|
|
|
if (value.isVector()) {
|
|
|
|
for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
|
|
|
|
if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(value.isComplexFloat());
|
|
|
|
return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
|
|
|
|
IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
|
|
|
|
}
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
|
2010-09-24 05:43:44 +08:00
|
|
|
static bool IsZero(Sema &S, Expr *E) {
|
|
|
|
// Suppress cases where we are comparing against an enum constant.
|
|
|
|
if (const DeclRefExpr *DR =
|
|
|
|
dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
|
|
|
|
if (isa<EnumConstantDecl>(DR->getDecl()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Suppress cases where the '0' value is expanded from a macro.
|
|
|
|
if (E->getLocStart().isMacroID())
|
|
|
|
return false;
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
llvm::APSInt Value;
|
|
|
|
return E->isIntegerConstantExpr(Value, S.Context) && Value == 0;
|
|
|
|
}
|
|
|
|
|
2010-10-06 08:25:24 +08:00
|
|
|
static bool HasEnumType(Expr *E) {
|
|
|
|
// Strip off implicit integral promotions.
|
|
|
|
while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
2010-10-08 05:52:18 +08:00
|
|
|
if (ICE->getCastKind() != CK_IntegralCast &&
|
|
|
|
ICE->getCastKind() != CK_NoOp)
|
2010-10-06 08:25:24 +08:00
|
|
|
break;
|
2010-10-08 05:52:18 +08:00
|
|
|
E = ICE->getSubExpr();
|
2010-10-06 08:25:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return E->getType()->isEnumeralType();
|
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
void CheckTrivialUnsignedComparison(Sema &S, BinaryOperator *E) {
|
2010-08-25 19:45:40 +08:00
|
|
|
BinaryOperatorKind op = E->getOpcode();
|
2010-12-21 15:22:56 +08:00
|
|
|
if (E->isValueDependent())
|
|
|
|
return;
|
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
if (op == BO_LT && IsZero(S, E->getRHS())) {
|
2010-05-06 16:58:33 +08:00
|
|
|
S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
|
2010-10-06 08:25:24 +08:00
|
|
|
<< "< 0" << "false" << HasEnumType(E->getLHS())
|
2010-05-06 16:58:33 +08:00
|
|
|
<< E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
|
2010-08-25 19:45:40 +08:00
|
|
|
} else if (op == BO_GE && IsZero(S, E->getRHS())) {
|
2010-05-06 16:58:33 +08:00
|
|
|
S.Diag(E->getOperatorLoc(), diag::warn_lunsigned_always_true_comparison)
|
2010-10-06 08:25:24 +08:00
|
|
|
<< ">= 0" << "true" << HasEnumType(E->getLHS())
|
2010-05-06 16:58:33 +08:00
|
|
|
<< E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
|
2010-08-25 19:45:40 +08:00
|
|
|
} else if (op == BO_GT && IsZero(S, E->getLHS())) {
|
2010-05-06 16:58:33 +08:00
|
|
|
S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
|
2010-10-06 08:25:24 +08:00
|
|
|
<< "0 >" << "false" << HasEnumType(E->getRHS())
|
2010-05-06 16:58:33 +08:00
|
|
|
<< E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
|
2010-08-25 19:45:40 +08:00
|
|
|
} else if (op == BO_LE && IsZero(S, E->getLHS())) {
|
2010-05-06 16:58:33 +08:00
|
|
|
S.Diag(E->getOperatorLoc(), diag::warn_runsigned_always_true_comparison)
|
2010-10-06 08:25:24 +08:00
|
|
|
<< "0 <=" << "true" << HasEnumType(E->getRHS())
|
2010-05-06 16:58:33 +08:00
|
|
|
<< E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Analyze the operands of the given comparison. Implements the
|
|
|
|
/// fallback case from AnalyzeComparison.
|
|
|
|
void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
|
2010-10-08 10:01:28 +08:00
|
|
|
AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
|
|
|
|
AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
2010-01-06 13:24:50 +08:00
|
|
|
|
2010-01-05 07:21:16 +08:00
|
|
|
/// \brief Implements -Wsign-compare.
|
|
|
|
///
|
2011-09-16 05:56:47 +08:00
|
|
|
/// \param E the binary operator to check for warnings
|
2010-05-06 16:58:33 +08:00
|
|
|
void AnalyzeComparison(Sema &S, BinaryOperator *E) {
|
|
|
|
// The type the comparison is being performed in.
|
|
|
|
QualType T = E->getLHS()->getType();
|
|
|
|
assert(S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())
|
|
|
|
&& "comparison with mismatched types");
|
|
|
|
|
|
|
|
// We don't do anything special if this isn't an unsigned integral
|
|
|
|
// comparison: we're only interested in integral comparisons, and
|
|
|
|
// signed comparisons only happen in cases we don't care to warn about.
|
2011-02-20 06:34:59 +08:00
|
|
|
//
|
|
|
|
// We also don't care about value-dependent expressions or expressions
|
|
|
|
// whose result is a constant.
|
|
|
|
if (!T->hasUnsignedIntegerRepresentation()
|
|
|
|
|| E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
|
2010-05-06 16:58:33 +08:00
|
|
|
return AnalyzeImpConvsInComparison(S, E);
|
|
|
|
|
2011-09-16 05:56:47 +08:00
|
|
|
Expr *LHS = E->getLHS()->IgnoreParenImpCasts();
|
|
|
|
Expr *RHS = E->getRHS()->IgnoreParenImpCasts();
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
// Check to see if one of the (unmodified) operands is of different
|
|
|
|
// signedness.
|
|
|
|
Expr *signedOperand, *unsignedOperand;
|
2011-09-16 05:56:47 +08:00
|
|
|
if (LHS->getType()->hasSignedIntegerRepresentation()) {
|
|
|
|
assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
|
2010-05-06 16:58:33 +08:00
|
|
|
"unsigned comparison between two signed integer expressions?");
|
2011-09-16 05:56:47 +08:00
|
|
|
signedOperand = LHS;
|
|
|
|
unsignedOperand = RHS;
|
|
|
|
} else if (RHS->getType()->hasSignedIntegerRepresentation()) {
|
|
|
|
signedOperand = RHS;
|
|
|
|
unsignedOperand = LHS;
|
2010-01-05 07:21:16 +08:00
|
|
|
} else {
|
2010-05-06 16:58:33 +08:00
|
|
|
CheckTrivialUnsignedComparison(S, E);
|
|
|
|
return AnalyzeImpConvsInComparison(S, E);
|
2010-01-05 07:21:16 +08:00
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
// Otherwise, calculate the effective range of the signed operand.
|
|
|
|
IntRange signedRange = GetExprRange(S.Context, signedOperand);
|
2010-01-06 13:24:50 +08:00
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
// Go ahead and analyze implicit conversions in the operands. Note
|
|
|
|
// that we skip the implicit conversions on both sides.
|
2011-09-16 05:56:47 +08:00
|
|
|
AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
|
|
|
|
AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
// If the signed range is non-negative, -Wsign-compare won't fire,
|
|
|
|
// but we should still check for comparisons which are always true
|
|
|
|
// or false.
|
|
|
|
if (signedRange.NonNegative)
|
|
|
|
return CheckTrivialUnsignedComparison(S, E);
|
2010-01-05 07:21:16 +08:00
|
|
|
|
|
|
|
// For (in)equality comparisons, if the unsigned operand is a
|
|
|
|
// constant which cannot collide with a overflowed signed operand,
|
|
|
|
// then reinterpreting the signed operand as unsigned will not
|
|
|
|
// change the result of the comparison.
|
2010-05-06 16:58:33 +08:00
|
|
|
if (E->isEqualityOp()) {
|
|
|
|
unsigned comparisonWidth = S.Context.getIntWidth(T);
|
|
|
|
IntRange unsignedRange = GetExprRange(S.Context, unsignedOperand);
|
|
|
|
|
|
|
|
// We should never be unable to prove that the unsigned operand is
|
|
|
|
// non-negative.
|
|
|
|
assert(unsignedRange.NonNegative && "unsigned range includes negative?");
|
2010-01-05 07:21:16 +08:00
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
if (unsignedRange.Width < comparisonWidth)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
S.Diag(E->getOperatorLoc(), diag::warn_mixed_sign_comparison)
|
2011-09-16 05:56:47 +08:00
|
|
|
<< LHS->getType() << RHS->getType()
|
|
|
|
<< LHS->getSourceRange() << RHS->getSourceRange();
|
2010-01-05 07:21:16 +08:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:21:53 +08:00
|
|
|
/// Analyzes an attempt to assign the given value to a bitfield.
|
|
|
|
///
|
|
|
|
/// Returns true if there was something fishy about the attempt.
|
|
|
|
bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
|
|
|
|
SourceLocation InitLoc) {
|
|
|
|
assert(Bitfield->isBitField());
|
|
|
|
if (Bitfield->isInvalidDecl())
|
|
|
|
return false;
|
|
|
|
|
2010-11-11 13:33:51 +08:00
|
|
|
// White-list bool bitfields.
|
|
|
|
if (Bitfield->getType()->isBooleanType())
|
|
|
|
return false;
|
|
|
|
|
2011-02-04 21:09:01 +08:00
|
|
|
// Ignore value- or type-dependent expressions.
|
|
|
|
if (Bitfield->getBitWidth()->isValueDependent() ||
|
|
|
|
Bitfield->getBitWidth()->isTypeDependent() ||
|
|
|
|
Init->isValueDependent() ||
|
|
|
|
Init->isTypeDependent())
|
|
|
|
return false;
|
|
|
|
|
2010-11-11 11:21:53 +08:00
|
|
|
Expr *OriginalInit = Init->IgnoreParenImpCasts();
|
|
|
|
|
2011-12-29 03:48:30 +08:00
|
|
|
llvm::APSInt Value;
|
|
|
|
if (!OriginalInit->EvaluateAsInt(Value, S.Context, Expr::SE_AllowSideEffects))
|
2010-11-11 11:21:53 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
unsigned OriginalWidth = Value.getBitWidth();
|
2011-10-11 02:28:20 +08:00
|
|
|
unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
|
2010-11-11 11:21:53 +08:00
|
|
|
|
|
|
|
if (OriginalWidth <= FieldWidth)
|
|
|
|
return false;
|
|
|
|
|
2012-01-27 07:11:39 +08:00
|
|
|
// Compute the value which the bitfield will contain.
|
2010-12-07 16:25:34 +08:00
|
|
|
llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
|
2012-01-27 07:11:39 +08:00
|
|
|
TruncatedValue.setIsSigned(Bitfield->getType()->isSignedIntegerType());
|
2010-11-11 11:21:53 +08:00
|
|
|
|
2012-01-27 07:11:39 +08:00
|
|
|
// Check whether the stored value is equal to the original value.
|
|
|
|
TruncatedValue = TruncatedValue.extend(OriginalWidth);
|
2010-11-11 11:21:53 +08:00
|
|
|
if (Value == TruncatedValue)
|
|
|
|
return false;
|
|
|
|
|
2012-01-27 07:11:39 +08:00
|
|
|
// Special-case bitfields of width 1: booleans are naturally 0/1, and
|
|
|
|
// therefore don't strictly fit into a bitfield of width 1.
|
|
|
|
if (FieldWidth == 1 && Value.getBoolValue() == TruncatedValue.getBoolValue())
|
|
|
|
return false;
|
|
|
|
|
2010-11-11 11:21:53 +08:00
|
|
|
std::string PrettyValue = Value.toString(10);
|
|
|
|
std::string PrettyTrunc = TruncatedValue.toString(10);
|
|
|
|
|
|
|
|
S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
|
|
|
|
<< PrettyValue << PrettyTrunc << OriginalInit->getType()
|
|
|
|
<< Init->getSourceRange();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-10 07:24:47 +08:00
|
|
|
/// Analyze the given simple or compound assignment for warning-worthy
|
|
|
|
/// operations.
|
|
|
|
void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
|
|
|
|
// Just recurse on the LHS.
|
|
|
|
AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
|
|
|
|
|
|
|
|
// We want to recurse on the RHS as normal unless we're assigning to
|
|
|
|
// a bitfield.
|
|
|
|
if (FieldDecl *Bitfield = E->getLHS()->getBitField()) {
|
2010-11-11 11:21:53 +08:00
|
|
|
if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
|
|
|
|
E->getOperatorLoc())) {
|
|
|
|
// Recurse, ignoring any implicit conversions on the RHS.
|
|
|
|
return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
|
|
|
|
E->getOperatorLoc());
|
2010-11-10 07:24:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
|
|
|
|
}
|
|
|
|
|
2011-03-12 08:14:31 +08:00
|
|
|
/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
|
|
|
|
void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
|
|
|
|
SourceLocation CContext, unsigned diag) {
|
|
|
|
S.Diag(E->getExprLoc(), diag)
|
|
|
|
<< SourceType << T << E->getSourceRange() << SourceRange(CContext);
|
|
|
|
}
|
|
|
|
|
2011-04-05 14:47:57 +08:00
|
|
|
/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
|
|
|
|
void DiagnoseImpCast(Sema &S, Expr *E, QualType T, SourceLocation CContext,
|
|
|
|
unsigned diag) {
|
|
|
|
DiagnoseImpCast(S, E, E->getType(), T, CContext, diag);
|
|
|
|
}
|
|
|
|
|
2011-10-14 23:36:25 +08:00
|
|
|
/// Diagnose an implicit cast from a literal expression. Does not warn when the
|
|
|
|
/// cast wouldn't lose information.
|
2011-04-10 16:36:24 +08:00
|
|
|
void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
|
|
|
|
SourceLocation CContext) {
|
2011-10-14 23:36:25 +08:00
|
|
|
// Try to convert the literal exactly to an integer. If we can, don't warn.
|
2011-04-10 16:36:24 +08:00
|
|
|
bool isExact = false;
|
2011-10-14 23:36:25 +08:00
|
|
|
const llvm::APFloat &Value = FL->getValue();
|
2011-07-16 01:03:07 +08:00
|
|
|
llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
|
|
|
|
T->hasUnsignedIntegerRepresentation());
|
|
|
|
if (Value.convertToInteger(IntegerValue,
|
2011-04-10 16:36:24 +08:00
|
|
|
llvm::APFloat::rmTowardZero, &isExact)
|
2011-10-14 23:36:25 +08:00
|
|
|
== llvm::APFloat::opOK && isExact)
|
2011-04-10 16:36:24 +08:00
|
|
|
return;
|
|
|
|
|
2011-10-14 23:36:25 +08:00
|
|
|
S.Diag(FL->getExprLoc(), diag::warn_impcast_literal_float_to_integer)
|
|
|
|
<< FL->getType() << T << FL->getSourceRange() << SourceRange(CContext);
|
2011-04-10 16:36:24 +08:00
|
|
|
}
|
|
|
|
|
2010-11-10 06:22:12 +08:00
|
|
|
std::string PrettyPrintInRange(const llvm::APSInt &Value, IntRange Range) {
|
|
|
|
if (!Range.Width) return "0";
|
|
|
|
|
|
|
|
llvm::APSInt ValueInRange = Value;
|
|
|
|
ValueInRange.setIsSigned(!Range.NonNegative);
|
2010-12-07 16:25:34 +08:00
|
|
|
ValueInRange = ValueInRange.trunc(Range.Width);
|
2010-11-10 06:22:12 +08:00
|
|
|
return ValueInRange.toString(10);
|
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
|
2010-10-08 10:01:28 +08:00
|
|
|
SourceLocation CC, bool *ICContext = 0) {
|
2010-05-06 16:58:33 +08:00
|
|
|
if (E->isTypeDependent() || E->isValueDependent()) return;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
|
|
|
|
const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
|
|
|
|
if (Source == Target) return;
|
|
|
|
if (Target->isDependentType()) return;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2011-07-26 13:40:03 +08:00
|
|
|
// If the conversion context location is invalid don't complain. We also
|
|
|
|
// don't want to emit a warning if the issue occurs from the expansion of
|
|
|
|
// a system macro. The problem is that 'getSpellingLoc()' is slow, so we
|
|
|
|
// delay this check as long as possible. Once we detect we are in that
|
|
|
|
// scenario, we just return.
|
2011-03-11 04:03:42 +08:00
|
|
|
if (CC.isInvalid())
|
2010-10-08 10:01:28 +08:00
|
|
|
return;
|
|
|
|
|
2011-09-24 04:10:00 +08:00
|
|
|
// Diagnose implicit casts to bool.
|
|
|
|
if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
|
|
|
|
if (isa<StringLiteral>(E))
|
|
|
|
// Warn on string literal to bool. Checks for string literals in logical
|
|
|
|
// expressions, for instances, assert(0 && "error here"), is prevented
|
|
|
|
// by a check in AnalyzeImplicitConversions().
|
|
|
|
return DiagnoseImpCast(S, E, T, CC,
|
|
|
|
diag::warn_impcast_string_literal_to_bool);
|
2011-12-06 04:49:50 +08:00
|
|
|
if (Source->isFunctionType()) {
|
|
|
|
// Warn on function to bool. Checks free functions and static member
|
|
|
|
// functions. Weakly imported functions are excluded from the check,
|
|
|
|
// since it's common to test their value to check whether the linker
|
|
|
|
// found a definition for them.
|
|
|
|
ValueDecl *D = 0;
|
|
|
|
if (DeclRefExpr* R = dyn_cast<DeclRefExpr>(E)) {
|
|
|
|
D = R->getDecl();
|
|
|
|
} else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
|
|
|
|
D = M->getMemberDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (D && !D->isWeak()) {
|
2011-12-06 12:48:01 +08:00
|
|
|
if (FunctionDecl* F = dyn_cast<FunctionDecl>(D)) {
|
|
|
|
S.Diag(E->getExprLoc(), diag::warn_impcast_function_to_bool)
|
|
|
|
<< F << E->getSourceRange() << SourceRange(CC);
|
2011-12-10 05:42:37 +08:00
|
|
|
S.Diag(E->getExprLoc(), diag::note_function_to_bool_silence)
|
|
|
|
<< FixItHint::CreateInsertion(E->getExprLoc(), "&");
|
|
|
|
QualType ReturnType;
|
|
|
|
UnresolvedSet<4> NonTemplateOverloads;
|
|
|
|
S.isExprCallable(*E, ReturnType, NonTemplateOverloads);
|
|
|
|
if (!ReturnType.isNull()
|
|
|
|
&& ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
|
|
|
|
S.Diag(E->getExprLoc(), diag::note_function_to_bool_call)
|
|
|
|
<< FixItHint::CreateInsertion(
|
|
|
|
S.getPreprocessor().getLocForEndOfToken(E->getLocEnd()), "()");
|
2011-12-06 12:48:01 +08:00
|
|
|
return;
|
|
|
|
}
|
2011-12-06 04:49:50 +08:00
|
|
|
}
|
|
|
|
}
|
2011-09-29 12:06:47 +08:00
|
|
|
return; // Other casts to bool are not checked.
|
2011-09-24 04:10:00 +08:00
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
// Strip vector types.
|
|
|
|
if (isa<VectorType>(Source)) {
|
2011-03-11 04:03:42 +08:00
|
|
|
if (!isa<VectorType>(Target)) {
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
2010-10-08 10:01:28 +08:00
|
|
|
return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
|
2011-03-11 04:03:42 +08:00
|
|
|
}
|
2011-06-14 12:51:15 +08:00
|
|
|
|
|
|
|
// If the vector cast is cast between two vectors of the same size, it is
|
|
|
|
// a bitcast, not a conversion.
|
|
|
|
if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
|
|
|
|
return;
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
Source = cast<VectorType>(Source)->getElementType().getTypePtr();
|
|
|
|
Target = cast<VectorType>(Target)->getElementType().getTypePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strip complex types.
|
|
|
|
if (isa<ComplexType>(Source)) {
|
2011-03-11 04:03:42 +08:00
|
|
|
if (!isa<ComplexType>(Target)) {
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_complex_scalar);
|
2011-03-11 04:03:42 +08:00
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
|
|
|
|
Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
|
|
|
|
const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
|
|
|
|
|
|
|
|
// If the source is floating point...
|
|
|
|
if (SourceBT && SourceBT->isFloatingPoint()) {
|
|
|
|
// ...and the target is floating point...
|
|
|
|
if (TargetBT && TargetBT->isFloatingPoint()) {
|
|
|
|
// ...then warn if we're dropping FP rank.
|
|
|
|
|
|
|
|
// Builtin FP kinds are ordered by increasing FP rank.
|
|
|
|
if (SourceBT->getKind() > TargetBT->getKind()) {
|
|
|
|
// Don't warn about float constants that are precisely
|
|
|
|
// representable in the target type.
|
|
|
|
Expr::EvalResult result;
|
2011-10-29 08:50:52 +08:00
|
|
|
if (E->EvaluateAsRValue(result, S.Context)) {
|
2010-01-05 07:31:57 +08:00
|
|
|
// Value might be a float, a float vector, or a float complex.
|
|
|
|
if (IsSameFloatAfterCast(result.Val,
|
2010-05-06 16:58:33 +08:00
|
|
|
S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
|
|
|
|
S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
|
2010-01-05 07:31:57 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-11 04:03:42 +08:00
|
|
|
// If the target is integral, always warn.
|
2011-02-17 19:05:49 +08:00
|
|
|
if ((TargetBT && TargetBT->isInteger())) {
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2011-02-17 19:05:49 +08:00
|
|
|
Expr *InnerE = E->IgnoreParenImpCasts();
|
2011-09-09 06:30:47 +08:00
|
|
|
// We also want to warn on, e.g., "int i = -1.234"
|
|
|
|
if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
|
|
|
|
if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
|
|
|
|
InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
|
|
|
|
|
2011-04-10 16:36:24 +08:00
|
|
|
if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
|
|
|
|
DiagnoseFloatingLiteralImpCast(S, FL, T, CC);
|
2011-02-17 19:05:49 +08:00
|
|
|
} else {
|
|
|
|
DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_integer);
|
|
|
|
}
|
|
|
|
}
|
2010-01-05 07:31:57 +08:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (!Source->isIntegerType() || !Target->isIntegerType())
|
2010-01-05 07:31:57 +08:00
|
|
|
return;
|
|
|
|
|
2011-05-30 03:59:02 +08:00
|
|
|
if ((E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)
|
|
|
|
== Expr::NPCK_GNUNull) && Target->isIntegerType()) {
|
|
|
|
S.Diag(E->getExprLoc(), diag::warn_impcast_null_pointer_to_integer)
|
|
|
|
<< E->getSourceRange() << clang::SourceRange(CC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
IntRange SourceRange = GetExprRange(S.Context, E);
|
2010-11-11 07:38:19 +08:00
|
|
|
IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
|
2010-01-05 07:31:57 +08:00
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (SourceRange.Width > TargetRange.Width) {
|
2010-11-10 06:22:12 +08:00
|
|
|
// If the source is a constant, use a default-on diagnostic.
|
|
|
|
// TODO: this should happen for bitfield stores, too.
|
|
|
|
llvm::APSInt Value(32);
|
|
|
|
if (E->isIntegerConstantExpr(Value, S.Context)) {
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2010-11-10 06:22:12 +08:00
|
|
|
std::string PrettySourceValue = Value.toString(10);
|
|
|
|
std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
|
|
|
|
|
2011-10-22 10:37:33 +08:00
|
|
|
S.DiagRuntimeBehavior(E->getExprLoc(), E,
|
|
|
|
S.PDiag(diag::warn_impcast_integer_precision_constant)
|
|
|
|
<< PrettySourceValue << PrettyTargetValue
|
|
|
|
<< E->getType() << T << E->getSourceRange()
|
|
|
|
<< clang::SourceRange(CC));
|
2010-11-10 06:22:12 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-14 12:51:15 +08:00
|
|
|
// People want to build with -Wshorten-64-to-32 and not -Wconversion.
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2010-01-06 13:24:50 +08:00
|
|
|
if (SourceRange.Width == 64 && TargetRange.Width == 32)
|
2010-10-08 10:01:28 +08:00
|
|
|
return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32);
|
|
|
|
return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
|
|
|
|
(!TargetRange.NonNegative && SourceRange.NonNegative &&
|
|
|
|
SourceRange.Width == TargetRange.Width)) {
|
2011-03-11 04:03:42 +08:00
|
|
|
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
unsigned DiagID = diag::warn_impcast_integer_sign;
|
|
|
|
|
|
|
|
// Traditionally, gcc has warned about this under -Wsign-compare.
|
|
|
|
// We also want to warn about it in -Wconversion.
|
|
|
|
// So if -Wconversion is off, use a completely identical diagnostic
|
|
|
|
// in the sign-compare group.
|
|
|
|
// The conditional-checking code will
|
|
|
|
if (ICContext) {
|
|
|
|
DiagID = diag::warn_impcast_integer_sign_conditional;
|
|
|
|
*ICContext = true;
|
|
|
|
}
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
return DiagnoseImpCast(S, E, T, CC, DiagID);
|
2010-01-05 07:31:57 +08:00
|
|
|
}
|
|
|
|
|
2011-02-22 10:45:07 +08:00
|
|
|
// Diagnose conversions between different enumeration types.
|
2011-03-12 08:14:31 +08:00
|
|
|
// In C, we pretend that the type of an EnumConstantDecl is its enumeration
|
|
|
|
// type, to give us better diagnostics.
|
|
|
|
QualType SourceType = E->getType();
|
|
|
|
if (!S.getLangOptions().CPlusPlus) {
|
|
|
|
if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
|
|
|
|
if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
|
|
|
|
EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
|
|
|
|
SourceType = S.Context.getTypeDeclType(Enum);
|
|
|
|
Source = S.Context.getCanonicalType(SourceType).getTypePtr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-22 10:45:07 +08:00
|
|
|
if (const EnumType *SourceEnum = Source->getAs<EnumType>())
|
|
|
|
if (const EnumType *TargetEnum = Target->getAs<EnumType>())
|
|
|
|
if ((SourceEnum->getDecl()->getIdentifier() ||
|
2011-04-15 22:24:37 +08:00
|
|
|
SourceEnum->getDecl()->getTypedefNameForAnonDecl()) &&
|
2011-02-22 10:45:07 +08:00
|
|
|
(TargetEnum->getDecl()->getIdentifier() ||
|
2011-04-15 22:24:37 +08:00
|
|
|
TargetEnum->getDecl()->getTypedefNameForAnonDecl()) &&
|
2011-03-11 04:03:42 +08:00
|
|
|
SourceEnum != TargetEnum) {
|
2012-01-07 06:43:58 +08:00
|
|
|
if (S.SourceMgr.isInSystemMacro(CC))
|
2011-03-11 04:03:42 +08:00
|
|
|
return;
|
|
|
|
|
2011-03-12 08:14:31 +08:00
|
|
|
return DiagnoseImpCast(S, E, SourceType, T, CC,
|
2011-02-22 10:45:07 +08:00
|
|
|
diag::warn_impcast_different_enum_types);
|
2011-03-11 04:03:42 +08:00
|
|
|
}
|
2011-02-22 10:45:07 +08:00
|
|
|
|
2010-01-05 07:31:57 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T);
|
|
|
|
|
|
|
|
void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
|
2010-10-08 10:01:28 +08:00
|
|
|
SourceLocation CC, bool &ICContext) {
|
2010-05-06 16:58:33 +08:00
|
|
|
E = E->IgnoreParenImpCasts();
|
|
|
|
|
|
|
|
if (isa<ConditionalOperator>(E))
|
|
|
|
return CheckConditionalOperator(S, cast<ConditionalOperator>(E), T);
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
AnalyzeImplicitConversions(S, E, CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
if (E->getType() != T)
|
2010-10-08 10:01:28 +08:00
|
|
|
return CheckImplicitConversion(S, E, T, CC, &ICContext);
|
2010-05-06 16:58:33 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckConditionalOperator(Sema &S, ConditionalOperator *E, QualType T) {
|
2010-10-08 10:01:28 +08:00
|
|
|
SourceLocation CC = E->getQuestionLoc();
|
|
|
|
|
|
|
|
AnalyzeImplicitConversions(S, E->getCond(), CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
bool Suspicious = false;
|
2010-10-08 10:01:28 +08:00
|
|
|
CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
|
|
|
|
CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
// If -Wconversion would have warned about either of the candidates
|
|
|
|
// for a signedness conversion to the context type...
|
|
|
|
if (!Suspicious) return;
|
|
|
|
|
|
|
|
// ...but it's currently ignored...
|
2010-12-16 02:44:22 +08:00
|
|
|
if (S.Diags.getDiagnosticLevel(diag::warn_impcast_integer_sign_conditional,
|
|
|
|
CC))
|
2010-05-06 16:58:33 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// ...then check whether it would have warned about either of the
|
|
|
|
// candidates for a signedness conversion to the condition type.
|
2011-07-21 10:46:28 +08:00
|
|
|
if (E->getType() == T) return;
|
|
|
|
|
|
|
|
Suspicious = false;
|
|
|
|
CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
|
|
|
|
E->getType(), CC, &Suspicious);
|
|
|
|
if (!Suspicious)
|
|
|
|
CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
|
2010-10-08 10:01:28 +08:00
|
|
|
E->getType(), CC, &Suspicious);
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// AnalyzeImplicitConversions - Find and report any interesting
|
|
|
|
/// implicit conversions in the given expression. There are a couple
|
|
|
|
/// of competing diagnostics here, -Wconversion and -Wsign-compare.
|
2010-10-08 10:01:28 +08:00
|
|
|
void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC) {
|
2010-05-06 16:58:33 +08:00
|
|
|
QualType T = OrigE->getType();
|
|
|
|
Expr *E = OrigE->IgnoreParenImpCasts();
|
|
|
|
|
2011-10-11 01:38:18 +08:00
|
|
|
if (E->isTypeDependent() || E->isValueDependent())
|
|
|
|
return;
|
|
|
|
|
2010-05-06 16:58:33 +08:00
|
|
|
// For conditional operators, we analyze the arguments as if they
|
|
|
|
// were being fed directly into the output.
|
|
|
|
if (isa<ConditionalOperator>(E)) {
|
|
|
|
ConditionalOperator *CO = cast<ConditionalOperator>(E);
|
|
|
|
CheckConditionalOperator(S, CO, T);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go ahead and check any implicit conversions we might have skipped.
|
|
|
|
// The non-canonical typecheck is just an optimization;
|
|
|
|
// CheckImplicitConversion will filter out dead implicit conversions.
|
|
|
|
if (E->getType() != T)
|
2010-10-08 10:01:28 +08:00
|
|
|
CheckImplicitConversion(S, E, T, CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
// Now continue drilling into this expression.
|
|
|
|
|
|
|
|
// Skip past explicit casts.
|
|
|
|
if (isa<ExplicitCastExpr>(E)) {
|
|
|
|
E = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreParenImpCasts();
|
2010-10-08 10:01:28 +08:00
|
|
|
return AnalyzeImplicitConversions(S, E, CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2010-11-10 07:24:47 +08:00
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
|
|
|
|
// Do a somewhat different check with comparison operators.
|
|
|
|
if (BO->isComparisonOp())
|
|
|
|
return AnalyzeComparison(S, BO);
|
|
|
|
|
2012-01-27 07:34:06 +08:00
|
|
|
// And with simple assignments.
|
|
|
|
if (BO->getOpcode() == BO_Assign)
|
2010-11-10 07:24:47 +08:00
|
|
|
return AnalyzeAssignment(S, BO);
|
|
|
|
}
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
// These break the otherwise-useful invariant below. Fortunately,
|
|
|
|
// we don't really need to recurse into them, because any internal
|
|
|
|
// expressions should have been analyzed already when they were
|
|
|
|
// built into statements.
|
|
|
|
if (isa<StmtExpr>(E)) return;
|
|
|
|
|
|
|
|
// Don't descend into unevaluated contexts.
|
2011-03-12 03:24:49 +08:00
|
|
|
if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
|
2010-05-06 16:58:33 +08:00
|
|
|
|
|
|
|
// Now just recurse over the expression's children.
|
2010-10-08 10:01:28 +08:00
|
|
|
CC = E->getExprLoc();
|
2011-09-24 04:10:00 +08:00
|
|
|
BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
|
|
|
|
bool IsLogicalOperator = BO && BO->isLogicalOp();
|
|
|
|
for (Stmt::child_range I = E->children(); I; ++I) {
|
|
|
|
Expr *ChildExpr = cast<Expr>(*I);
|
|
|
|
if (IsLogicalOperator &&
|
|
|
|
isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
|
|
|
|
// Ignore checking string literals that are in logical operators.
|
|
|
|
continue;
|
|
|
|
AnalyzeImplicitConversions(S, ChildExpr, CC);
|
|
|
|
}
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
/// Diagnoses "dangerous" implicit conversions within the given
|
|
|
|
/// expression (which is a full expression). Implements -Wconversion
|
|
|
|
/// and -Wsign-compare.
|
2010-10-08 10:01:28 +08:00
|
|
|
///
|
|
|
|
/// \param CC the "context" location of the implicit conversion, i.e.
|
|
|
|
/// the most location of the syntactic entity requiring the implicit
|
|
|
|
/// conversion
|
|
|
|
void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
|
2010-05-06 16:58:33 +08:00
|
|
|
// Don't diagnose in unevaluated contexts.
|
|
|
|
if (ExprEvalContexts.back().Context == Sema::Unevaluated)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Don't diagnose for value- or type-dependent expressions.
|
|
|
|
if (E->isTypeDependent() || E->isValueDependent())
|
|
|
|
return;
|
|
|
|
|
2011-08-06 07:18:04 +08:00
|
|
|
// Check for array bounds violations in cases where the check isn't triggered
|
|
|
|
// elsewhere for other Expr types (like BinaryOperators), e.g. when an
|
|
|
|
// ArraySubscriptExpr is on the RHS of a variable initialization.
|
|
|
|
CheckArrayAccess(E);
|
|
|
|
|
2010-10-08 10:01:28 +08:00
|
|
|
// This is not the right CC for (e.g.) a variable initialization.
|
|
|
|
AnalyzeImplicitConversions(*this, E, CC);
|
2010-05-06 16:58:33 +08:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:21:53 +08:00
|
|
|
void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
|
|
|
|
FieldDecl *BitField,
|
|
|
|
Expr *Init) {
|
|
|
|
(void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
|
|
|
|
}
|
|
|
|
|
2010-01-21 11:59:47 +08:00
|
|
|
/// CheckParmsForFunctionDef - Check that the parameters of the given
|
|
|
|
/// function are appropriate for the definition of a function. This
|
|
|
|
/// takes care of any checks that cannot be performed on the
|
|
|
|
/// declaration itself, e.g., that the types of each of the function
|
|
|
|
/// parameters are complete.
|
2010-11-02 02:37:59 +08:00
|
|
|
bool Sema::CheckParmsForFunctionDef(ParmVarDecl **P, ParmVarDecl **PEnd,
|
|
|
|
bool CheckParameterNames) {
|
2010-01-21 11:59:47 +08:00
|
|
|
bool HasInvalidParm = false;
|
2010-11-02 02:37:59 +08:00
|
|
|
for (; P != PEnd; ++P) {
|
|
|
|
ParmVarDecl *Param = *P;
|
|
|
|
|
2010-01-21 11:59:47 +08:00
|
|
|
// C99 6.7.5.3p4: the parameters in a parameter type list in a
|
|
|
|
// function declarator that is part of a function definition of
|
|
|
|
// that function shall not have incomplete type.
|
|
|
|
//
|
|
|
|
// This is also C++ [dcl.fct]p6.
|
|
|
|
if (!Param->isInvalidDecl() &&
|
|
|
|
RequireCompleteType(Param->getLocation(), Param->getType(),
|
|
|
|
diag::err_typecheck_decl_incomplete_type)) {
|
|
|
|
Param->setInvalidDecl();
|
|
|
|
HasInvalidParm = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// C99 6.9.1p5: If the declarator includes a parameter type list, the
|
|
|
|
// declaration of each parameter shall include an identifier.
|
2010-11-02 02:37:59 +08:00
|
|
|
if (CheckParameterNames &&
|
|
|
|
Param->getIdentifier() == 0 &&
|
2010-01-21 11:59:47 +08:00
|
|
|
!Param->isImplicit() &&
|
|
|
|
!getLangOptions().CPlusPlus)
|
|
|
|
Diag(Param->getLocation(), diag::err_parameter_name_omitted);
|
2010-02-01 13:02:49 +08:00
|
|
|
|
|
|
|
// C99 6.7.5.3p12:
|
|
|
|
// If the function declarator is not part of a definition of that
|
|
|
|
// function, parameters may have incomplete type and may use the [*]
|
|
|
|
// notation in their sequences of declarator specifiers to specify
|
|
|
|
// variable length array types.
|
|
|
|
QualType PType = Param->getOriginalType();
|
|
|
|
if (const ArrayType *AT = Context.getAsArrayType(PType)) {
|
|
|
|
if (AT->getSizeModifier() == ArrayType::Star) {
|
|
|
|
// FIXME: This diagnosic should point the the '[*]' if source-location
|
|
|
|
// information is added for it.
|
|
|
|
Diag(Param->getLocation(), diag::err_array_star_in_function_definition);
|
|
|
|
}
|
|
|
|
}
|
2010-01-21 11:59:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return HasInvalidParm;
|
|
|
|
}
|
2010-08-13 05:44:57 +08:00
|
|
|
|
|
|
|
/// CheckCastAlign - Implements -Wcast-align, which warns when a
|
|
|
|
/// pointer cast increases the alignment requirements.
|
|
|
|
void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
|
|
|
|
// This is actually a lot of work to potentially be doing on every
|
|
|
|
// cast; don't do it if we're ignoring -Wcast_align (as is the default).
|
2010-12-16 02:44:22 +08:00
|
|
|
if (getDiagnostics().getDiagnosticLevel(diag::warn_cast_align,
|
|
|
|
TRange.getBegin())
|
2011-09-26 07:23:43 +08:00
|
|
|
== DiagnosticsEngine::Ignored)
|
2010-08-13 05:44:57 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Ignore dependent types.
|
|
|
|
if (T->isDependentType() || Op->getType()->isDependentType())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Require that the destination be a pointer type.
|
|
|
|
const PointerType *DestPtr = T->getAs<PointerType>();
|
|
|
|
if (!DestPtr) return;
|
|
|
|
|
|
|
|
// If the destination has alignment 1, we're done.
|
|
|
|
QualType DestPointee = DestPtr->getPointeeType();
|
|
|
|
if (DestPointee->isIncompleteType()) return;
|
|
|
|
CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
|
|
|
|
if (DestAlign.isOne()) return;
|
|
|
|
|
|
|
|
// Require that the source be a pointer type.
|
|
|
|
const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
|
|
|
|
if (!SrcPtr) return;
|
|
|
|
QualType SrcPointee = SrcPtr->getPointeeType();
|
|
|
|
|
|
|
|
// Whitelist casts from cv void*. We already implicitly
|
|
|
|
// whitelisted casts to cv void*, since they have alignment 1.
|
|
|
|
// Also whitelist casts involving incomplete types, which implicitly
|
|
|
|
// includes 'void'.
|
|
|
|
if (SrcPointee->isIncompleteType()) return;
|
|
|
|
|
|
|
|
CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
|
|
|
|
if (SrcAlign >= DestAlign) return;
|
|
|
|
|
|
|
|
Diag(TRange.getBegin(), diag::warn_cast_align)
|
|
|
|
<< Op->getType() << T
|
|
|
|
<< static_cast<unsigned>(SrcAlign.getQuantity())
|
|
|
|
<< static_cast<unsigned>(DestAlign.getQuantity())
|
|
|
|
<< TRange << Op->getSourceRange();
|
|
|
|
}
|
|
|
|
|
2011-08-06 07:18:04 +08:00
|
|
|
static const Type* getElementType(const Expr *BaseExpr) {
|
|
|
|
const Type* EltType = BaseExpr->getType().getTypePtr();
|
|
|
|
if (EltType->isAnyPointerType())
|
|
|
|
return EltType->getPointeeType().getTypePtr();
|
|
|
|
else if (EltType->isArrayType())
|
|
|
|
return EltType->getBaseElementTypeUnsafe();
|
|
|
|
return EltType;
|
|
|
|
}
|
|
|
|
|
2011-08-05 17:10:50 +08:00
|
|
|
/// \brief Check whether this array fits the idiom of a size-one tail padded
|
|
|
|
/// array member of a struct.
|
|
|
|
///
|
|
|
|
/// We avoid emitting out-of-bounds access warnings for such arrays as they are
|
|
|
|
/// commonly used to emulate flexible arrays in C89 code.
|
|
|
|
static bool IsTailPaddedMemberArray(Sema &S, llvm::APInt Size,
|
|
|
|
const NamedDecl *ND) {
|
|
|
|
if (Size != 1 || !ND) return false;
|
|
|
|
|
|
|
|
const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
|
|
|
|
if (!FD) return false;
|
|
|
|
|
|
|
|
// Don't consider sizes resulting from macro expansions or template argument
|
|
|
|
// substitution to form C89 tail-padded arrays.
|
|
|
|
ConstantArrayTypeLoc TL =
|
|
|
|
cast<ConstantArrayTypeLoc>(FD->getTypeSourceInfo()->getTypeLoc());
|
|
|
|
const Expr *SizeExpr = dyn_cast<IntegerLiteral>(TL.getSizeExpr());
|
|
|
|
if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
|
2011-11-30 06:43:53 +08:00
|
|
|
if (!RD) return false;
|
|
|
|
if (RD->isUnion()) return false;
|
|
|
|
if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
|
|
|
|
if (!CRD->isStandardLayout()) return false;
|
|
|
|
}
|
2011-08-05 17:10:50 +08:00
|
|
|
|
2011-08-06 11:04:42 +08:00
|
|
|
// See if this is the last field decl in the record.
|
|
|
|
const Decl *D = FD;
|
|
|
|
while ((D = D->getNextDeclInContext()))
|
|
|
|
if (isa<FieldDecl>(D))
|
|
|
|
return false;
|
|
|
|
return true;
|
2011-08-05 17:10:50 +08:00
|
|
|
}
|
|
|
|
|
2011-08-06 07:18:04 +08:00
|
|
|
void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
|
2011-12-15 00:02:15 +08:00
|
|
|
const ArraySubscriptExpr *ASE,
|
2011-12-17 03:31:14 +08:00
|
|
|
bool AllowOnePastEnd, bool IndexNegated) {
|
2011-08-06 07:18:04 +08:00
|
|
|
IndexExpr = IndexExpr->IgnoreParenCasts();
|
2011-12-15 00:02:15 +08:00
|
|
|
if (IndexExpr->isValueDependent())
|
|
|
|
return;
|
2011-08-06 07:18:04 +08:00
|
|
|
|
2011-12-15 00:02:15 +08:00
|
|
|
const Type *EffectiveType = getElementType(BaseExpr);
|
|
|
|
BaseExpr = BaseExpr->IgnoreParenCasts();
|
2011-02-18 04:55:08 +08:00
|
|
|
const ConstantArrayType *ArrayTy =
|
2011-08-06 07:18:04 +08:00
|
|
|
Context.getAsConstantArrayType(BaseExpr->getType());
|
2011-02-18 04:55:08 +08:00
|
|
|
if (!ArrayTy)
|
2011-02-16 09:57:07 +08:00
|
|
|
return;
|
2011-02-18 05:10:52 +08:00
|
|
|
|
2011-02-18 04:55:08 +08:00
|
|
|
llvm::APSInt index;
|
2011-12-15 00:02:15 +08:00
|
|
|
if (!IndexExpr->EvaluateAsInt(index, Context))
|
2011-02-16 09:57:07 +08:00
|
|
|
return;
|
2011-12-17 03:31:14 +08:00
|
|
|
if (IndexNegated)
|
|
|
|
index = -index;
|
2011-02-16 12:01:44 +08:00
|
|
|
|
2011-08-05 16:07:29 +08:00
|
|
|
const NamedDecl *ND = NULL;
|
|
|
|
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
|
|
|
|
ND = dyn_cast<NamedDecl>(DRE->getDecl());
|
2011-08-05 17:10:50 +08:00
|
|
|
if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
|
2011-08-05 16:07:29 +08:00
|
|
|
ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
|
|
|
|
|
2011-02-24 07:06:04 +08:00
|
|
|
if (index.isUnsigned() || !index.isNegative()) {
|
2011-02-18 10:27:00 +08:00
|
|
|
llvm::APInt size = ArrayTy->getSize();
|
2011-02-18 05:10:52 +08:00
|
|
|
if (!size.isStrictlyPositive())
|
|
|
|
return;
|
2011-08-06 07:18:04 +08:00
|
|
|
|
|
|
|
const Type* BaseType = getElementType(BaseExpr);
|
2011-09-18 06:59:41 +08:00
|
|
|
if (BaseType != EffectiveType) {
|
2011-08-06 07:18:04 +08:00
|
|
|
// Make sure we're comparing apples to apples when comparing index to size
|
|
|
|
uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
|
|
|
|
uint64_t array_typesize = Context.getTypeSize(BaseType);
|
2011-08-11 03:47:25 +08:00
|
|
|
// Handle ptrarith_typesize being zero, such as when casting to void*
|
2011-08-11 02:49:28 +08:00
|
|
|
if (!ptrarith_typesize) ptrarith_typesize = 1;
|
2011-08-06 07:18:04 +08:00
|
|
|
if (ptrarith_typesize != array_typesize) {
|
|
|
|
// There's a cast to a different size type involved
|
|
|
|
uint64_t ratio = array_typesize / ptrarith_typesize;
|
|
|
|
// TODO: Be smarter about handling cases where array_typesize is not a
|
|
|
|
// multiple of ptrarith_typesize
|
|
|
|
if (ptrarith_typesize * ratio == array_typesize)
|
|
|
|
size *= llvm::APInt(size.getBitWidth(), ratio);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-18 04:55:08 +08:00
|
|
|
if (size.getBitWidth() > index.getBitWidth())
|
|
|
|
index = index.sext(size.getBitWidth());
|
2011-02-18 10:27:00 +08:00
|
|
|
else if (size.getBitWidth() < index.getBitWidth())
|
|
|
|
size = size.sext(index.getBitWidth());
|
|
|
|
|
2011-08-06 07:18:04 +08:00
|
|
|
// For array subscripting the index must be less than size, but for pointer
|
|
|
|
// arithmetic also allow the index (offset) to be equal to size since
|
|
|
|
// computing the next address after the end of the array is legal and
|
|
|
|
// commonly done e.g. in C++ iterators and range-based for loops.
|
|
|
|
if (AllowOnePastEnd ? index.sle(size) : index.slt(size))
|
2011-08-05 16:07:29 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Also don't warn for arrays of size 1 which are members of some
|
|
|
|
// structure. These are often used to approximate flexible arrays in C89
|
|
|
|
// code.
|
2011-08-06 07:18:04 +08:00
|
|
|
if (IsTailPaddedMemberArray(*this, size, ND))
|
2011-02-16 12:01:44 +08:00
|
|
|
return;
|
2011-02-18 04:55:08 +08:00
|
|
|
|
2011-12-15 00:02:15 +08:00
|
|
|
// Suppress the warning if the subscript expression (as identified by the
|
|
|
|
// ']' location) and the index expression are both from macro expansions
|
|
|
|
// within a system header.
|
|
|
|
if (ASE) {
|
|
|
|
SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
|
|
|
|
ASE->getRBracketLoc());
|
|
|
|
if (SourceMgr.isInSystemHeader(RBracketLoc)) {
|
|
|
|
SourceLocation IndexLoc = SourceMgr.getSpellingLoc(
|
|
|
|
IndexExpr->getLocStart());
|
|
|
|
if (SourceMgr.isFromSameFile(RBracketLoc, IndexLoc))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-06 07:18:04 +08:00
|
|
|
unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
|
2011-12-15 00:02:15 +08:00
|
|
|
if (ASE)
|
2011-08-06 07:18:04 +08:00
|
|
|
DiagID = diag::warn_array_index_exceeds_bounds;
|
|
|
|
|
|
|
|
DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
|
|
|
|
PDiag(DiagID) << index.toString(10, true)
|
|
|
|
<< size.toString(10, true)
|
|
|
|
<< (unsigned)size.getLimitedValue(~0U)
|
|
|
|
<< IndexExpr->getSourceRange());
|
2011-02-18 04:55:08 +08:00
|
|
|
} else {
|
2011-08-06 07:18:04 +08:00
|
|
|
unsigned DiagID = diag::warn_array_index_precedes_bounds;
|
2011-12-15 00:02:15 +08:00
|
|
|
if (!ASE) {
|
2011-08-06 07:18:04 +08:00
|
|
|
DiagID = diag::warn_ptr_arith_precedes_bounds;
|
|
|
|
if (index.isNegative()) index = -index;
|
|
|
|
}
|
|
|
|
|
|
|
|
DiagRuntimeBehavior(BaseExpr->getLocStart(), BaseExpr,
|
|
|
|
PDiag(DiagID) << index.toString(10, true)
|
|
|
|
<< IndexExpr->getSourceRange());
|
2011-02-16 09:57:07 +08:00
|
|
|
}
|
2011-02-18 05:10:52 +08:00
|
|
|
|
2011-11-30 03:27:11 +08:00
|
|
|
if (!ND) {
|
|
|
|
// Try harder to find a NamedDecl to point at in the note.
|
|
|
|
while (const ArraySubscriptExpr *ASE =
|
|
|
|
dyn_cast<ArraySubscriptExpr>(BaseExpr))
|
|
|
|
BaseExpr = ASE->getBase()->IgnoreParenCasts();
|
|
|
|
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
|
|
|
|
ND = dyn_cast<NamedDecl>(DRE->getDecl());
|
|
|
|
if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
|
|
|
|
ND = dyn_cast<NamedDecl>(ME->getMemberDecl());
|
|
|
|
}
|
|
|
|
|
2011-02-18 05:10:52 +08:00
|
|
|
if (ND)
|
2011-08-06 07:18:04 +08:00
|
|
|
DiagRuntimeBehavior(ND->getLocStart(), BaseExpr,
|
|
|
|
PDiag(diag::note_array_index_out_of_bounds)
|
|
|
|
<< ND->getDeclName());
|
2011-03-02 02:41:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::CheckArrayAccess(const Expr *expr) {
|
2011-08-06 07:18:04 +08:00
|
|
|
int AllowOnePastEnd = 0;
|
|
|
|
while (expr) {
|
|
|
|
expr = expr->IgnoreParenImpCasts();
|
2011-03-02 02:41:00 +08:00
|
|
|
switch (expr->getStmtClass()) {
|
2011-08-06 07:18:04 +08:00
|
|
|
case Stmt::ArraySubscriptExprClass: {
|
|
|
|
const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
|
2011-12-15 00:02:15 +08:00
|
|
|
CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
|
2011-08-06 07:18:04 +08:00
|
|
|
AllowOnePastEnd > 0);
|
2011-03-02 02:41:00 +08:00
|
|
|
return;
|
2011-08-06 07:18:04 +08:00
|
|
|
}
|
|
|
|
case Stmt::UnaryOperatorClass: {
|
|
|
|
// Only unwrap the * and & unary operators
|
|
|
|
const UnaryOperator *UO = cast<UnaryOperator>(expr);
|
|
|
|
expr = UO->getSubExpr();
|
|
|
|
switch (UO->getOpcode()) {
|
|
|
|
case UO_AddrOf:
|
|
|
|
AllowOnePastEnd++;
|
|
|
|
break;
|
|
|
|
case UO_Deref:
|
|
|
|
AllowOnePastEnd--;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2011-03-02 02:41:00 +08:00
|
|
|
case Stmt::ConditionalOperatorClass: {
|
|
|
|
const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
|
|
|
|
if (const Expr *lhs = cond->getLHS())
|
|
|
|
CheckArrayAccess(lhs);
|
|
|
|
if (const Expr *rhs = cond->getRHS())
|
|
|
|
CheckArrayAccess(rhs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2011-04-15 08:35:48 +08:00
|
|
|
}
|
2011-02-16 09:57:07 +08:00
|
|
|
}
|
2011-06-16 07:02:42 +08:00
|
|
|
|
|
|
|
//===--- CHECK: Objective-C retain cycles ----------------------------------//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct RetainCycleOwner {
|
|
|
|
RetainCycleOwner() : Variable(0), Indirect(false) {}
|
|
|
|
VarDecl *Variable;
|
|
|
|
SourceRange Range;
|
|
|
|
SourceLocation Loc;
|
|
|
|
bool Indirect;
|
|
|
|
|
|
|
|
void setLocsFrom(Expr *e) {
|
|
|
|
Loc = e->getExprLoc();
|
|
|
|
Range = e->getSourceRange();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Consider whether capturing the given variable can possibly lead to
|
|
|
|
/// a retain cycle.
|
|
|
|
static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
|
|
|
|
// In ARC, it's captured strongly iff the variable has __strong
|
|
|
|
// lifetime. In MRR, it's captured strongly if the variable is
|
|
|
|
// __block and has an appropriate type.
|
|
|
|
if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
owner.Variable = var;
|
|
|
|
owner.setLocsFrom(ref);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-11 03:28:26 +08:00
|
|
|
static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
|
2011-06-16 07:02:42 +08:00
|
|
|
while (true) {
|
|
|
|
e = e->IgnoreParens();
|
|
|
|
if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
|
|
|
|
switch (cast->getCastKind()) {
|
|
|
|
case CK_BitCast:
|
|
|
|
case CK_LValueBitCast:
|
|
|
|
case CK_LValueToRValue:
|
2011-09-10 14:18:15 +08:00
|
|
|
case CK_ARCReclaimReturnedObject:
|
2011-06-16 07:02:42 +08:00
|
|
|
e = cast->getSubExpr();
|
|
|
|
continue;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
|
|
|
|
ObjCIvarDecl *ivar = ref->getDecl();
|
|
|
|
if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Try to find a retain cycle in the base.
|
2012-01-11 03:28:26 +08:00
|
|
|
if (!findRetainCycleOwner(S, ref->getBase(), owner))
|
2011-06-16 07:02:42 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (ref->isFreeIvar()) owner.setLocsFrom(ref);
|
|
|
|
owner.Indirect = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
|
|
|
|
VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
|
|
|
|
if (!var) return false;
|
|
|
|
return considerVariable(var, ref, owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BlockDeclRefExpr *ref = dyn_cast<BlockDeclRefExpr>(e)) {
|
|
|
|
owner.Variable = ref->getDecl();
|
|
|
|
owner.setLocsFrom(ref);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
|
|
|
|
if (member->isArrow()) return false;
|
|
|
|
|
|
|
|
// Don't count this as an indirect ownership.
|
|
|
|
e = member->getBase();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-06 17:01:30 +08:00
|
|
|
if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
|
|
|
|
// Only pay attention to pseudo-objects on property references.
|
|
|
|
ObjCPropertyRefExpr *pre
|
|
|
|
= dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
|
|
|
|
->IgnoreParens());
|
|
|
|
if (!pre) return false;
|
|
|
|
if (pre->isImplicitProperty()) return false;
|
|
|
|
ObjCPropertyDecl *property = pre->getExplicitProperty();
|
|
|
|
if (!property->isRetaining() &&
|
|
|
|
!(property->getPropertyIvarDecl() &&
|
|
|
|
property->getPropertyIvarDecl()->getType()
|
|
|
|
.getObjCLifetime() == Qualifiers::OCL_Strong))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
owner.Indirect = true;
|
2012-01-11 03:28:26 +08:00
|
|
|
if (pre->isSuperReceiver()) {
|
|
|
|
owner.Variable = S.getCurMethodDecl()->getSelfDecl();
|
|
|
|
if (!owner.Variable)
|
|
|
|
return false;
|
|
|
|
owner.Loc = pre->getLocation();
|
|
|
|
owner.Range = pre->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-06 17:01:30 +08:00
|
|
|
e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
|
|
|
|
->getSourceExpr());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-06-16 07:02:42 +08:00
|
|
|
// Array ivars?
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
|
|
|
|
FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
|
|
|
|
: EvaluatedExprVisitor<FindCaptureVisitor>(Context),
|
|
|
|
Variable(variable), Capturer(0) {}
|
|
|
|
|
|
|
|
VarDecl *Variable;
|
|
|
|
Expr *Capturer;
|
|
|
|
|
|
|
|
void VisitDeclRefExpr(DeclRefExpr *ref) {
|
|
|
|
if (ref->getDecl() == Variable && !Capturer)
|
|
|
|
Capturer = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisitBlockDeclRefExpr(BlockDeclRefExpr *ref) {
|
|
|
|
if (ref->getDecl() == Variable && !Capturer)
|
|
|
|
Capturer = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
|
|
|
|
if (Capturer) return;
|
|
|
|
Visit(ref->getBase());
|
|
|
|
if (Capturer && ref->isFreeIvar())
|
|
|
|
Capturer = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisitBlockExpr(BlockExpr *block) {
|
|
|
|
// Look inside nested blocks
|
|
|
|
if (block->getBlockDecl()->capturesVariable(Variable))
|
|
|
|
Visit(block->getBlockDecl()->getBody());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check whether the given argument is a block which captures a
|
|
|
|
/// variable.
|
|
|
|
static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
|
|
|
|
assert(owner.Variable && owner.Loc.isValid());
|
|
|
|
|
|
|
|
e = e->IgnoreParenCasts();
|
|
|
|
BlockExpr *block = dyn_cast<BlockExpr>(e);
|
|
|
|
if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
FindCaptureVisitor visitor(S.Context, owner.Variable);
|
|
|
|
visitor.Visit(block->getBlockDecl()->getBody());
|
|
|
|
return visitor.Capturer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void diagnoseRetainCycle(Sema &S, Expr *capturer,
|
|
|
|
RetainCycleOwner &owner) {
|
|
|
|
assert(capturer);
|
|
|
|
assert(owner.Variable && owner.Loc.isValid());
|
|
|
|
|
|
|
|
S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
|
|
|
|
<< owner.Variable << capturer->getSourceRange();
|
|
|
|
S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
|
|
|
|
<< owner.Indirect << owner.Range;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check for a keyword selector that starts with the word 'add' or
|
|
|
|
/// 'set'.
|
|
|
|
static bool isSetterLikeSelector(Selector sel) {
|
|
|
|
if (sel.isUnarySelector()) return false;
|
|
|
|
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef str = sel.getNameForSlot(0);
|
2011-06-16 07:02:42 +08:00
|
|
|
while (!str.empty() && str.front() == '_') str = str.substr(1);
|
2011-12-01 08:59:21 +08:00
|
|
|
if (str.startswith("set"))
|
2011-06-16 07:02:42 +08:00
|
|
|
str = str.substr(3);
|
2011-12-01 08:59:21 +08:00
|
|
|
else if (str.startswith("add")) {
|
|
|
|
// Specially whitelist 'addOperationWithBlock:'.
|
|
|
|
if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
|
|
|
|
return false;
|
|
|
|
str = str.substr(3);
|
|
|
|
}
|
2011-06-16 07:02:42 +08:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (str.empty()) return true;
|
|
|
|
return !islower(str.front());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check a message send to see if it's likely to cause a retain cycle.
|
|
|
|
void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
|
|
|
|
// Only check instance methods whose selector looks like a setter.
|
|
|
|
if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Try to find a variable that the receiver is strongly owned by.
|
|
|
|
RetainCycleOwner owner;
|
|
|
|
if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
|
2012-01-11 03:28:26 +08:00
|
|
|
if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
|
2011-06-16 07:02:42 +08:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
|
|
|
|
owner.Variable = getCurMethodDecl()->getSelfDecl();
|
|
|
|
owner.Loc = msg->getSuperLoc();
|
|
|
|
owner.Range = msg->getSuperLoc();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether the receiver is captured by any of the arguments.
|
|
|
|
for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i)
|
|
|
|
if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner))
|
|
|
|
return diagnoseRetainCycle(*this, capturer, owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check a property assign to see if it's likely to cause a retain cycle.
|
|
|
|
void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
|
|
|
|
RetainCycleOwner owner;
|
2012-01-11 03:28:26 +08:00
|
|
|
if (!findRetainCycleOwner(*this, receiver, owner))
|
2011-06-16 07:02:42 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (Expr *capturer = findCapturingExpr(*this, argument, owner))
|
|
|
|
diagnoseRetainCycle(*this, capturer, owner);
|
|
|
|
}
|
|
|
|
|
2011-06-25 02:25:34 +08:00
|
|
|
bool Sema::checkUnsafeAssigns(SourceLocation Loc,
|
2011-06-16 07:02:42 +08:00
|
|
|
QualType LHS, Expr *RHS) {
|
|
|
|
Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
|
|
|
|
if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
|
2011-06-25 02:25:34 +08:00
|
|
|
return false;
|
|
|
|
// strip off any implicit cast added to get to the one arc-specific
|
|
|
|
while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
|
2011-09-10 14:18:15 +08:00
|
|
|
if (cast->getCastKind() == CK_ARCConsumeObject) {
|
2011-06-16 07:02:42 +08:00
|
|
|
Diag(Loc, diag::warn_arc_retained_assign)
|
|
|
|
<< (LT == Qualifiers::OCL_ExplicitNone)
|
|
|
|
<< RHS->getSourceRange();
|
2011-06-25 02:25:34 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
RHS = cast->getSubExpr();
|
|
|
|
}
|
|
|
|
return false;
|
2011-06-16 07:02:42 +08:00
|
|
|
}
|
|
|
|
|
2011-06-25 02:25:34 +08:00
|
|
|
void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
|
|
|
|
Expr *LHS, Expr *RHS) {
|
2012-01-18 06:58:16 +08:00
|
|
|
QualType LHSType;
|
|
|
|
// PropertyRef on LHS type need be directly obtained from
|
|
|
|
// its declaration as it has a PsuedoType.
|
|
|
|
ObjCPropertyRefExpr *PRE
|
|
|
|
= dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens());
|
|
|
|
if (PRE && !PRE->isImplicitProperty()) {
|
|
|
|
const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
|
|
|
|
if (PD)
|
|
|
|
LHSType = PD->getType();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LHSType.isNull())
|
|
|
|
LHSType = LHS->getType();
|
2011-06-25 02:25:34 +08:00
|
|
|
if (checkUnsafeAssigns(Loc, LHSType, RHS))
|
|
|
|
return;
|
|
|
|
Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
|
|
|
|
// FIXME. Check for other life times.
|
|
|
|
if (LT != Qualifiers::OCL_None)
|
|
|
|
return;
|
|
|
|
|
2012-01-18 06:58:16 +08:00
|
|
|
if (PRE) {
|
2011-06-25 02:25:34 +08:00
|
|
|
if (PRE->isImplicitProperty())
|
|
|
|
return;
|
|
|
|
const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
|
|
|
|
if (!PD)
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned Attributes = PD->getPropertyAttributes();
|
2012-01-18 06:58:16 +08:00
|
|
|
if (Attributes & ObjCPropertyDecl::OBJC_PR_assign) {
|
|
|
|
// when 'assign' attribute was not explicitly specified
|
|
|
|
// by user, ignore it and rely on property type itself
|
|
|
|
// for lifetime info.
|
|
|
|
unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten();
|
|
|
|
if (!(AsWrittenAttr & ObjCPropertyDecl::OBJC_PR_assign) &&
|
|
|
|
LHSType->isObjCRetainableType())
|
|
|
|
return;
|
|
|
|
|
2011-06-25 02:25:34 +08:00
|
|
|
while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
|
2011-09-10 14:18:15 +08:00
|
|
|
if (cast->getCastKind() == CK_ARCConsumeObject) {
|
2011-06-25 02:25:34 +08:00
|
|
|
Diag(Loc, diag::warn_arc_retained_property_assign)
|
|
|
|
<< RHS->getSourceRange();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
RHS = cast->getSubExpr();
|
|
|
|
}
|
2012-01-18 06:58:16 +08:00
|
|
|
}
|
2011-06-25 02:25:34 +08:00
|
|
|
}
|
|
|
|
}
|