This class can be used as a lookup table between an instance id of a module or hierarchical channel and the instance tree. More...
#include <path_instance_mapper.h>


Public Types | |
| typedef std::pair < InstanceTree, int >  | PathWithID | 
Public Member Functions | |
| PathInstanceMapper () | |
| void | print_mapping () | 
| The function prints the lookup table in the terminal.  More... | |
| virtual bool | perform_dynamic_analysis ()=0 | 
| This functions returns true if the path instance mapper should perform a dynamic analysis.  More... | |
| virtual InstanceTree | get_instance_tree (int id, std::list< InstanceTree > potential_instances) | 
| This function returns for a given id and potential mapping candidates the corresponding instance tree. CAUTION: This function is only for the StaticPathInstanceMapper.  More... | |
| virtual int | get_id (InstanceTree tree) | 
| This function returns for a given tree the corresponding instance id. CAUTION: This function is only for the StaticPathInstanceMapper.  More... | |
| virtual DynamicModule * | get_dynamic_tree_root () | 
| This function returns the root node of the dynamic analysis CAUTION: This function is only for the DynamicPathInstanceMapper.  More... | |
| virtual int * | get_global_variable_address (std::string variable_name) | 
| This functions returns the address of the global variable with the name 'variable_name' CAUTION: This function is only for the DynamicPathInstanceMapper.  More... | |
| virtual std::string | get_global_variable_name (int *variable_address) | 
| This functions translates the address of a global variable into the associated variable name CAUTION: This function is only for the DynamicPathInstanceMapper.  More... | |
Public Attributes | |
| std::vector< PathWithID > | path_to_id_mapping_ | 
| This is the lookup table from path to instance id.  More... | |
| int | max_instances_ | 
| This variable counts what is the max of instances.  More... | |
This class can be used as a lookup table between an instance id of a module or hierarchical channel and the instance tree.
There is a significant difference between the PathInstanceMapper and the DynamicPathInstanceMapper. The DynamicPathInstanceMapper will be generated from the pre simulation of evaluation.
| typedef std::pair<InstanceTree, int> risc::PathInstanceMapper::PathWithID | 
| risc::PathInstanceMapper::PathInstanceMapper | ( | ) | 
      
  | 
  virtual | 
This function returns the root node of the dynamic analysis CAUTION: This function is only for the DynamicPathInstanceMapper.
Reimplemented in risc::DynamicPathInstanceMapper.
      
  | 
  virtual | 
This functions returns the address of the global variable with the name 'variable_name' CAUTION: This function is only for the DynamicPathInstanceMapper.
Reimplemented in risc::DynamicPathInstanceMapper.
      
  | 
  virtual | 
This functions translates the address of a global variable into the associated variable name CAUTION: This function is only for the DynamicPathInstanceMapper.
Reimplemented in risc::DynamicPathInstanceMapper.
      
  | 
  virtual | 
This function returns for a given tree the corresponding instance id. CAUTION: This function is only for the StaticPathInstanceMapper.
Reimplemented in risc::StaticPathInstanceMapper.
      
  | 
  virtual | 
This function returns for a given id and potential mapping candidates the corresponding instance tree. CAUTION: This function is only for the StaticPathInstanceMapper.
Reimplemented in risc::StaticPathInstanceMapper.
      
  | 
  pure virtual | 
This functions returns true if the path instance mapper should perform a dynamic analysis.
Implemented in risc::DynamicPathInstanceMapper, and risc::StaticPathInstanceMapper.
| risc::PathInstanceMapper::print_mapping | ( | ) | 
The function prints the lookup table in the terminal.
| int risc::PathInstanceMapper::max_instances_ | 
This variable counts what is the max of instances.
| std::vector<PathWithID> risc::PathInstanceMapper::path_to_id_mapping_ | 
This is the lookup table from path to instance id.
 1.8.5