2021-10-09 16:19:06 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2021-10-09 16:19:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef inferH
|
|
|
|
#define inferH
|
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "config.h"
|
2021-10-09 16:19:06 +02:00
|
|
|
#include "mathlib.h"
|
2023-01-26 22:23:22 +01:00
|
|
|
#include "vfvalue.h"
|
2021-10-09 16:19:06 +02:00
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
template<class T> class ValuePtr;
|
2021-10-09 16:19:06 +02:00
|
|
|
|
|
|
|
struct InferModel {
|
|
|
|
virtual bool match(const ValueFlow::Value& value) const = 0;
|
|
|
|
virtual ValueFlow::Value yield(MathLib::bigint value) const = 0;
|
2023-08-16 17:13:36 +02:00
|
|
|
virtual ~InferModel() = default;
|
2023-03-02 21:02:29 +01:00
|
|
|
InferModel(const InferModel&) = default;
|
|
|
|
protected:
|
|
|
|
InferModel() = default;
|
2021-10-09 16:19:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<ValueFlow::Value> infer(const ValuePtr<InferModel>& model,
|
|
|
|
const std::string& op,
|
|
|
|
std::list<ValueFlow::Value> lhsValues,
|
|
|
|
std::list<ValueFlow::Value> rhsValues);
|
|
|
|
|
|
|
|
std::vector<ValueFlow::Value> infer(const ValuePtr<InferModel>& model,
|
|
|
|
const std::string& op,
|
|
|
|
MathLib::bigint lhs,
|
|
|
|
std::list<ValueFlow::Value> rhsValues);
|
|
|
|
|
|
|
|
std::vector<ValueFlow::Value> infer(const ValuePtr<InferModel>& model,
|
|
|
|
const std::string& op,
|
|
|
|
std::list<ValueFlow::Value> lhsValues,
|
|
|
|
MathLib::bigint rhs);
|
|
|
|
|
2022-01-04 15:38:37 +01:00
|
|
|
CPPCHECKLIB std::vector<MathLib::bigint> getMinValue(const ValuePtr<InferModel>& model, const std::list<ValueFlow::Value>& values);
|
2022-01-04 10:21:54 +01:00
|
|
|
std::vector<MathLib::bigint> getMaxValue(const ValuePtr<InferModel>& model, const std::list<ValueFlow::Value>& values);
|
|
|
|
|
2021-10-09 16:19:06 +02:00
|
|
|
#endif
|