PandA-2024.02
var_pp_functor.hpp
Go to the documentation of this file.
1 /*
2  *
3  * _/_/_/ _/_/ _/ _/ _/_/_/ _/_/
4  * _/ _/ _/ _/ _/_/ _/ _/ _/ _/ _/
5  * _/_/_/ _/_/_/_/ _/ _/_/ _/ _/ _/_/_/_/
6  * _/ _/ _/ _/ _/ _/ _/ _/ _/
7  * _/ _/ _/ _/ _/ _/_/_/ _/ _/
8  *
9  * ***********************************************
10  * PandA Project
11  * URL: http://panda.dei.polimi.it
12  * Politecnico di Milano - DEIB
13  * System Architectures Group
14  * ***********************************************
15  * Copyright (C) 2004-2024 Politecnico di Milano
16  *
17  * This file is part of the PandA framework.
18  *
19  * The PandA framework is free software; you can redistribute it and/or modify
20  * it under the terms of the GNU General Public License as published by
21  * the Free Software Foundation; either version 3 of the License, or
22  * (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program. If not, see <http://www.gnu.org/licenses/>.
31  *
32  */
43 #ifndef _VAR_PP_FUNCTOR_HPP
44 #define _VAR_PP_FUNCTOR_HPP
45 
46 #include "custom_set.hpp" // for CustomSet
47 #include "refcount.hpp"
48 #include <string> // for string
49 #include <utility>
50 
59 
64 {
66  virtual ~var_pp_functor() = default;
67 
74  virtual std::string operator()(unsigned int var) const = 0;
75 };
78 
83 {
84  private:
87 
88  public:
90  explicit std_var_pp_functor(const BehavioralHelperConstRef _BH) : BH(_BH)
91  {
92  }
93 
95  ~std_var_pp_functor() override = default;
96 
101  std::string operator()(unsigned int var) const override;
102 };
103 
108 {
116  bool _add_restrict = false);
117 
121  ~pointer_var_pp_functor() override = default;
122 
127  std::string operator()(unsigned int var) const override;
128 
129  private:
132 
135 
138 
141 };
142 
147 {
148  public:
155  const CustomSet<unsigned int> pointer_vars);
156 
158  ~address_var_pp_functor() override = default;
159 
164  std::string operator()(unsigned int var) const override;
165 
166  private:
169 
172 
175 };
176 
178 {
179  private:
182  unsigned int repl_var;
183  std::string var_string;
184 
185  public:
187  isolated_var_pp_functor(const BehavioralHelperConstRef _BH, unsigned int _repl_var, const std::string& _var_string)
188  : BH(_BH), repl_var(_repl_var), var_string(_var_string)
189  {
190  }
191 
193  ~isolated_var_pp_functor() override = default;
194 
199  std::string operator()(unsigned int var) const override;
200 };
201 
202 #endif
isolated_var_pp_functor(const BehavioralHelperConstRef _BH, unsigned int _repl_var, const std::string &_var_string)
Constructor.
const CustomSet< unsigned int > addr_based_variables
reference to the set of variable that has to have a star in front when returned by operator() ...
const BehavioralHelperConstRef BH
behavioral helper
virtual std::string operator()(unsigned int var) const =0
This functor returns a string representing the variable (usually the name of the variable).
CONSTREF_FORWARD_DECL(BehavioralHelper)
const CustomSet< unsigned int > pointer_based_variables
reference to the set of variable that has to have a star in front when returned by operator() ...
const std_var_pp_functor std_functor
standard functor used for print array variable
Standard functor that returns the name of a variable.
const BehavioralHelperConstRef BH
behavioral helper
virtual ~var_pp_functor()=default
Destructor.
Address version functor that returns the name of a variable with "&" in front.
bool add_restrict
it controls the addition to the parameters declarations of the restrict keyword.
redefinition of set to manage ordered/unordered structures
Base class functor used by prettyPrintVertex to print variables.
const BehavioralHelperConstRef BH
behavioral helper
Template definition of refcount.
Pointer version functor that returns the name of a variable with a star in front. ...
Template borrowed from the ANTLR library by Terence Parr (http://www.jGuru.com - Software rights: htt...
Definition: refcount.hpp:94
std_var_pp_functor(const BehavioralHelperConstRef _BH)
Constructor.
REF_FORWARD_DECL(Parameter)
const BehavioralHelperConstRef BH
behavioral helper
const CustomSet< unsigned int > pointer_based_variables
reference to the set of variable that has to have a star in front when returned by operator() ...

Generated on Mon Feb 12 2024 13:02:56 for PandA-2024.02 by doxygen 1.8.13