mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
84 lines
2.8 KiB
C++
84 lines
2.8 KiB
C++
//===--- ComparisonInTempFailureRetryCheck.cpp - clang-tidy----------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "../utils/Matchers.h"
|
|
#include "ComparisonInTempFailureRetryCheck.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
namespace clang {
|
|
namespace tidy {
|
|
namespace android {
|
|
|
|
namespace {
|
|
AST_MATCHER(BinaryOperator, isRHSATempFailureRetryArg) {
|
|
if (!Node.getBeginLoc().isMacroID())
|
|
return false;
|
|
|
|
const SourceManager &SM = Finder->getASTContext().getSourceManager();
|
|
if (!SM.isMacroArgExpansion(Node.getRHS()->IgnoreParenCasts()->getBeginLoc()))
|
|
return false;
|
|
|
|
const LangOptions &Opts = Finder->getASTContext().getLangOpts();
|
|
SourceLocation LocStart = Node.getBeginLoc();
|
|
while (LocStart.isMacroID()) {
|
|
SourceLocation Invocation = SM.getImmediateMacroCallerLoc(LocStart);
|
|
Token Tok;
|
|
if (!Lexer::getRawToken(SM.getSpellingLoc(Invocation), Tok, SM, Opts,
|
|
/*IgnoreWhiteSpace=*/true)) {
|
|
if (Tok.getKind() == tok::raw_identifier &&
|
|
Tok.getRawIdentifier() == "TEMP_FAILURE_RETRY")
|
|
return true;
|
|
}
|
|
|
|
LocStart = Invocation;
|
|
}
|
|
return false;
|
|
}
|
|
} // namespace
|
|
|
|
void ComparisonInTempFailureRetryCheck::registerMatchers(MatchFinder *Finder) {
|
|
// Both glibc's and Bionic's TEMP_FAILURE_RETRY macros structurally look like:
|
|
//
|
|
// #define TEMP_FAILURE_RETRY(x) ({ \
|
|
// typeof(x) y; \
|
|
// do y = (x); \
|
|
// while (y == -1 && errno == EINTR); \
|
|
// y; \
|
|
// })
|
|
//
|
|
// (glibc uses `long int` instead of `typeof(x)` for the type of y).
|
|
//
|
|
// It's unclear how to walk up the AST from inside the expansion of `x`, and
|
|
// we need to not complain about things like TEMP_FAILURE_RETRY(foo(x == 1)),
|
|
// so we just match the assignment of `y = (x)` and inspect `x` from there.
|
|
Finder->addMatcher(
|
|
binaryOperator(
|
|
hasOperatorName("="),
|
|
hasRHS(ignoringParenCasts(
|
|
binaryOperator(matchers::isComparisonOperator()).bind("binop"))),
|
|
isRHSATempFailureRetryArg()),
|
|
this);
|
|
}
|
|
|
|
void ComparisonInTempFailureRetryCheck::check(
|
|
const MatchFinder::MatchResult &Result) {
|
|
const auto &BinOp = *Result.Nodes.getNodeAs<BinaryOperator>("binop");
|
|
diag(BinOp.getOperatorLoc(), "top-level comparison in TEMP_FAILURE_RETRY");
|
|
|
|
// FIXME: FixIts would be nice, but potentially nontrivial when nested macros
|
|
// happen, e.g. `TEMP_FAILURE_RETRY(IS_ZERO(foo()))`
|
|
}
|
|
|
|
} // namespace android
|
|
} // namespace tidy
|
|
} // namespace clang
|