File indexing completed on 2024-05-12 17:13:14

0001 /*
0002     This file is part of the clazy static checker.
0003 
0004     Copyright (C) 2016 Sergio Martins <smartins@kde.org>
0005 
0006     This library is free software; you can redistribute it and/or
0007     modify it under the terms of the GNU Library General Public
0008     License as published by the Free Software Foundation; either
0009     version 2 of the License, or (at your option) any later version.
0010 
0011     This library is distributed in the hope that it will be useful,
0012     but WITHOUT ANY WARRANTY; without even the implied warranty of
0013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014     Library General Public License for more details.
0015 
0016     You should have received a copy of the GNU Library General Public License
0017     along with this library; see the file COPYING.LIB.  If not, write to
0018     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0019     Boston, MA 02110-1301, USA.
0020 */
0021 
0022 #ifndef CLAZY_FUNC_ARGS_BY_VALUE_H
0023 #define CLAZY_FUNC_ARGS_BY_VALUE_H
0024 
0025 #include "checkbase.h"
0026 
0027 #include <clang/Basic/Diagnostic.h>
0028 
0029 #include <string>
0030 
0031 class ClazyContext;
0032 
0033 namespace clang {
0034 class Stmt;
0035 class Decl;
0036 class FunctionDecl;
0037 class ParmVarDecl;
0038 }
0039 
0040 namespace clazy {
0041 struct QualTypeClassification;
0042 }
0043 
0044 /**
0045  * Finds arguments that should be passed by value instead of const-ref
0046  *
0047  * See README-function-args-by-value for more info
0048  */
0049 class FunctionArgsByValue
0050     : public CheckBase
0051 {
0052 public:
0053     explicit FunctionArgsByValue(const std::string &name, ClazyContext *context);
0054     void VisitDecl(clang::Decl *decl) override;
0055     void VisitStmt(clang::Stmt *stmt) override;
0056 private:
0057     void processFunction(clang::FunctionDecl *);
0058     static bool shouldIgnoreClass(clang::CXXRecordDecl *);
0059     static bool shouldIgnoreOperator(clang::FunctionDecl *);
0060     static bool shouldIgnoreFunction(clang::FunctionDecl *);
0061     clang::FixItHint fixit(clang::FunctionDecl *func, const clang::ParmVarDecl *param,
0062                            clazy::QualTypeClassification);
0063 };
0064 
0065 #endif