1 //===--- NoAssemblerCheck.cpp - clang-tidy---------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "NoAssemblerCheck.h"
10 #include "clang/AST/ASTContext.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 using namespace clang::ast_matchers
;
15 namespace clang::tidy::hicpp
{
18 AST_MATCHER(VarDecl
, isAsm
) { return Node
.hasAttr
<clang::AsmLabelAttr
>(); }
19 const ast_matchers::internal::VariadicDynCastAllOfMatcher
<Decl
,
24 void NoAssemblerCheck::registerMatchers(MatchFinder
*Finder
) {
25 Finder
->addMatcher(asmStmt().bind("asm-stmt"), this);
26 Finder
->addMatcher(fileScopeAsmDecl().bind("asm-file-scope"), this);
27 Finder
->addMatcher(varDecl(isAsm()).bind("asm-var"), this);
30 void NoAssemblerCheck::check(const MatchFinder::MatchResult
&Result
) {
31 SourceLocation ASMLocation
;
32 if (const auto *ASM
= Result
.Nodes
.getNodeAs
<AsmStmt
>("asm-stmt"))
33 ASMLocation
= ASM
->getAsmLoc();
34 else if (const auto *ASM
=
35 Result
.Nodes
.getNodeAs
<FileScopeAsmDecl
>("asm-file-scope"))
36 ASMLocation
= ASM
->getAsmLoc();
37 else if (const auto *ASM
= Result
.Nodes
.getNodeAs
<VarDecl
>("asm-var"))
38 ASMLocation
= ASM
->getLocation();
40 llvm_unreachable("Unhandled case in matcher.");
42 diag(ASMLocation
, "do not use inline assembler in safety-critical code");
45 } // namespace clang::tidy::hicpp