Blame lib/check64bit.h

Packit 2035a7
/*
Packit 2035a7
 * Cppcheck - A tool for static C/C++ code analysis
Packit 2035a7
 * Copyright (C) 2007-2017 Cppcheck team.
Packit 2035a7
 *
Packit 2035a7
 * This program is free software: you can redistribute it and/or modify
Packit 2035a7
 * it under the terms of the GNU General Public License as published by
Packit 2035a7
 * the Free Software Foundation, either version 3 of the License, or
Packit 2035a7
 * (at your option) any later version.
Packit 2035a7
 *
Packit 2035a7
 * This program is distributed in the hope that it will be useful,
Packit 2035a7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 2035a7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 2035a7
 * GNU General Public License for more details.
Packit 2035a7
 *
Packit 2035a7
 * You should have received a copy of the GNU General Public License
Packit 2035a7
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 2035a7
 */
Packit 2035a7
Packit 2035a7
Packit 2035a7
//---------------------------------------------------------------------------
Packit 2035a7
#ifndef check64bitH
Packit 2035a7
#define check64bitH
Packit 2035a7
//---------------------------------------------------------------------------
Packit 2035a7
Packit 2035a7
#include "check.h"
Packit 2035a7
#include "config.h"
Packit 2035a7
Packit 2035a7
#include <string>
Packit 2035a7
Packit 2035a7
class ErrorLogger;
Packit 2035a7
class Settings;
Packit 2035a7
class Token;
Packit 2035a7
class Tokenizer;
Packit 2035a7
Packit 2035a7
Packit 2035a7
/// @addtogroup Checks
Packit 2035a7
/// @{
Packit 2035a7
Packit 2035a7
/**
Packit 2035a7
 * @brief Check for 64-bit portability issues
Packit 2035a7
 */
Packit 2035a7
Packit 2035a7
class CPPCHECKLIB Check64BitPortability : public Check {
Packit 2035a7
public:
Packit 2035a7
    /** This constructor is used when registering the Check64BitPortability */
Packit 2035a7
    Check64BitPortability() : Check(myName()) {
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    /** This constructor is used when running checks. */
Packit 2035a7
    Check64BitPortability(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
Packit 2035a7
        : Check(myName(), tokenizer, settings, errorLogger) {
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    /** @brief Run checks against the normal token list */
Packit 2035a7
    void runChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) {
Packit 2035a7
        Check64BitPortability check64BitPortability(tokenizer, settings, errorLogger);
Packit 2035a7
        check64BitPortability.pointerassignment();
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    /** @brief Run checks against the simplified token list */
Packit 2035a7
    void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) {
Packit 2035a7
        (void)tokenizer;
Packit 2035a7
        (void)settings;
Packit 2035a7
        (void)errorLogger;
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    /** Check for pointer assignment */
Packit 2035a7
    void pointerassignment();
Packit 2035a7
Packit 2035a7
private:
Packit 2035a7
Packit 2035a7
    void assignmentAddressToIntegerError(const Token *tok);
Packit 2035a7
    void assignmentIntegerToAddressError(const Token *tok);
Packit 2035a7
    void returnIntegerError(const Token *tok);
Packit 2035a7
    void returnPointerError(const Token *tok);
Packit 2035a7
Packit 2035a7
    void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const {
Packit 2035a7
        Check64BitPortability c(nullptr, settings, errorLogger);
Packit 2035a7
        c.assignmentAddressToIntegerError(nullptr);
Packit 2035a7
        c.assignmentIntegerToAddressError(nullptr);
Packit 2035a7
        c.returnIntegerError(nullptr);
Packit 2035a7
        c.returnPointerError(nullptr);
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    static std::string myName() {
Packit 2035a7
        return "64-bit portability";
Packit 2035a7
    }
Packit 2035a7
Packit 2035a7
    std::string classInfo() const {
Packit 2035a7
        return "Check if there is 64-bit portability issues:\n"
Packit 2035a7
               "- assign address to/from int/long\n"
Packit 2035a7
               "- casting address from/to integer when returning from function\n";
Packit 2035a7
    }
Packit 2035a7
};
Packit 2035a7
/// @}
Packit 2035a7
//---------------------------------------------------------------------------
Packit 2035a7
#endif // check64bitH