clang-tools  10.0.0git
SIMDIntrinsicsCheck.h
Go to the documentation of this file.
1 //===--- SIMDIntrinsicsCheck.h - clang-tidy----------------------*- C++ -*-===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_SIMD_INTRINSICS_CHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_SIMD_INTRINSICS_CHECK_H
11 
12 #include "../ClangTidyCheck.h"
13 
14 #include "llvm/ADT/SmallString.h"
15 
16 namespace clang {
17 namespace tidy {
18 namespace portability {
19 
20 /// Find SIMD intrinsics calls and suggest std::experimental::simd alternatives.
21 ///
22 /// For the user-facing documentation see:
23 /// http://clang.llvm.org/extra/clang-tidy/checks/portability-simd-intrinsics.html
25 public:
26  SIMDIntrinsicsCheck(StringRef Name, ClangTidyContext *Context);
27 
28  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
29  void registerMatchers(ast_matchers::MatchFinder *Finder) override;
30  void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
31 
32  private:
33  llvm::SmallString<32> Std;
34  const bool Suggest;
35 };
36 
37 } // namespace portability
38 } // namespace tidy
39 } // namespace clang
40 
41 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_SIMD_INTRINSICS_CHECK_H
Base class for all clang-tidy checks.
SIMDIntrinsicsCheck(StringRef Name, ClangTidyContext *Context)
Find SIMD intrinsics calls and suggest std::experimental::simd alternatives.
static constexpr llvm::StringLiteral Name
std::map< std::string, std::string > OptionMap
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...