blob: c48b4460646c5641a9223fc5c94b69e163a1b05d [file] [log] [blame]
Jonas Toth6b3d33e2018-11-12 16:01:39 +00001//===--- TooSmallLoopVariableCheck.h - clang-tidy ---------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Jonas Toth6b3d33e2018-11-12 16:01:39 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_TOOSMALLLOOPVARIABLECHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_TOOSMALLLOOPVARIABLECHECK_H
11
Alexander Kornienko478fc5c2019-03-25 12:38:26 +000012#include "../ClangTidyCheck.h"
Jonas Toth6b3d33e2018-11-12 16:01:39 +000013
14namespace clang {
15namespace tidy {
16namespace bugprone {
17
18/// This check gives a warning if a loop variable has a too small type which
19/// might not be able to represent all values which are part of the whole range
20/// in which the loop iterates.
21/// If the loop variable's type is too small we might end up in an infinite
22/// loop. Example:
23/// \code
24/// long size = 294967296l;
25/// for (short i = 0; i < size; ++i) {} { ... }
26/// \endcode
27///
28/// For the user-facing documentation see:
29/// http://clang.llvm.org/extra/clang-tidy/checks/bugprone-too-small-loop-variable.html
30class TooSmallLoopVariableCheck : public ClangTidyCheck {
31public:
Tamas Zolnai065480d2019-04-14 12:47:48 +000032 TooSmallLoopVariableCheck(StringRef Name, ClangTidyContext *Context);
33
34 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
Jonas Toth6b3d33e2018-11-12 16:01:39 +000035 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
36 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
Tamas Zolnai065480d2019-04-14 12:47:48 +000037
38private:
39 const unsigned MagnitudeBitsUpperLimit;
Jonas Toth6b3d33e2018-11-12 16:01:39 +000040};
41
42} // namespace bugprone
43} // namespace tidy
44} // namespace clang
45
46#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_TOOSMALLLOOPVARIABLECHECK_H