ROSE 0.11.145.141
|
Static single assignment analysis. This analysis attaches uses an definitions to unfiltered CFG nodes rather than to AST nodes; as such its interfaces are more intuitive and easier to use. It also resolves some ambiguity issues when attaching definitions to AST nodes.
Known bugs:
Variables used to define the dimensions inside an array declaration are not detected as uses. This is because the SgVarRef nodes for these variables are not visited by AST traversals.
Definition at line 81 of file ssaUnfilteredCfg.h.
#include <midend/programAnalysis/ssaUnfilteredCfg/ssaUnfilteredCfg.h>
Public Types | |
typedef std::vector< SgInitializedName * > | VarName |
A compound variable name as used by the variable renaming. | |
typedef boost::shared_ptr< ReachingDef > | ReachingDefPtr |
typedef std::map< VarName, ReachingDefPtr > | NodeReachingDefTable |
A map from each variable to its reaching definitions at the current node. | |
typedef std::map< CFGNode, std::set< VarName > > | CFGNodeToVarNamesMap |
typedef std::map< SgNode *, std::set< SgVarRefExp * > > | ASTNodeToVarRefsMap |
typedef std::map< CFGNode, NodeReachingDefTable > | CFGNodeToDefTableMap |
Public Member Functions | |
SSA_UnfilteredCfg (SgProject *proj) | |
void | run () |
Run the analysis. | |
void | toDOT (const std::string fileName) |
Print the CFG with any UniqueNames and Def/Use information visible. | |
void | toFilteredDOT (const std::string fileName) |
Print the CFG with any UniqueNames and Def/Use information visible. | |
const NodeReachingDefTable & | getReachingDefsBefore (const CFGNode &node) const |
Returns the reaching definitions before the given node was executed. | |
const NodeReachingDefTable & | getReachingDefsAfter (const CFGNode &node) const |
Returns the reaching definitions after the given node was executed. | |
const NodeReachingDefTable & | getDefsAtNode (const CFGNode &node) const |
Returns the definitions that occur at the given node. | |
const NodeReachingDefTable & | getReachingDefsBefore (SgNode *astNode) const |
Get the reaching definitions before the given AST node is executed. | |
const NodeReachingDefTable & | getReachingDefsAfter (SgNode *astNode) const |
Get the reaching definitions after the given AST node is executed. | |
const NodeReachingDefTable & | getLastVersions (SgFunctionDefinition *astNode) const |
Get the final versions of all the variables at the end of the given function. | |
const std::set< SgVarRefExp * > & | getUsesAtNode (SgNode *astNode) const |
Returns all the SgVarRef objects that are used in the execution of the given AST node. | |
const ReachingDefPtr | getDefinitionForUse (SgVarRefExp *astNode) const |
Given a use obtained through getUsesAtNode, resolve its corresponding def. | |
const ASTNodeToVarRefsMap & | getUseTable () const |
Returns the entire use table, mapping each non-statement AST node to the variables used in its execution. | |
Static Public Member Functions | |
static bool | getDebug () |
static bool | getDebugExtra () |
static bool | isPrefixOfName (VarName name, VarName prefix) |
Find if the given prefix is a prefix of the given name. | |
static ssa_private::VarUniqueName * | getUniqueName (SgNode *node) |
Get the uniqueName attribute for the given node. | |
static const VarName & | getVarName (SgNode *node) |
Get the variable name of the given node. | |
static const VarName & | getVarForExpression (SgNode *node) |
If an expression evaluates to a reference of a variable, returns that variable. | |
static SgExpression * | buildVariableReference (const VarName &var, SgScopeStatement *scope=NULL) |
Get an AST fragment containing the appropriate varRefs and Dot/Arrow ops to access the given variable. | |
static std::string | varnameToString (const VarName &vec) |
Get a string representation of a varName. | |
static void | printNodeDefTable (const NodeReachingDefTable &table) |
static void | printFullDefTable (const CFGNodeToDefTableMap &defTable) |
Static Public Attributes | |
static VarName | emptyName |
typedef std::vector<SgInitializedName*> ssa_unfiltered_cfg::SSA_UnfilteredCfg::VarName |
A compound variable name as used by the variable renaming.
Definition at line 90 of file ssaUnfilteredCfg.h.
typedef boost::shared_ptr<ReachingDef> ssa_unfiltered_cfg::SSA_UnfilteredCfg::ReachingDefPtr |
Definition at line 92 of file ssaUnfilteredCfg.h.
typedef std::map<VarName, ReachingDefPtr> ssa_unfiltered_cfg::SSA_UnfilteredCfg::NodeReachingDefTable |
A map from each variable to its reaching definitions at the current node.
Definition at line 95 of file ssaUnfilteredCfg.h.
typedef std::map<CFGNode, std::set<VarName> > ssa_unfiltered_cfg::SSA_UnfilteredCfg::CFGNodeToVarNamesMap |
Definition at line 97 of file ssaUnfilteredCfg.h.
typedef std::map<SgNode*, std::set<SgVarRefExp*> > ssa_unfiltered_cfg::SSA_UnfilteredCfg::ASTNodeToVarRefsMap |
Definition at line 99 of file ssaUnfilteredCfg.h.
typedef std::map<CFGNode, NodeReachingDefTable> ssa_unfiltered_cfg::SSA_UnfilteredCfg::CFGNodeToDefTableMap |
Definition at line 101 of file ssaUnfilteredCfg.h.
|
inline |
Definition at line 121 of file ssaUnfilteredCfg.h.
|
inline |
Definition at line 123 of file ssaUnfilteredCfg.h.
|
inlinestatic |
Definition at line 128 of file ssaUnfilteredCfg.h.
|
inlinestatic |
Definition at line 133 of file ssaUnfilteredCfg.h.
void ssa_unfiltered_cfg::SSA_UnfilteredCfg::toDOT | ( | const std::string | fileName | ) |
Print the CFG with any UniqueNames and Def/Use information visible.
fileName | The filename to save graph as. Filenames will be prepended. |
void ssa_unfiltered_cfg::SSA_UnfilteredCfg::toFilteredDOT | ( | const std::string | fileName | ) |
Print the CFG with any UniqueNames and Def/Use information visible.
This will only print the nodes that are of interest to the filter function used by the def/use traversal.
fileName | The filename to save graph as. Filenames will be prepended. |
const NodeReachingDefTable & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getReachingDefsAfter | ( | const CFGNode & | node | ) | const |
Returns the reaching definitions after the given node was executed.
If there are no local defs at the node (i.e. getDefsAtNode returns empty), then the reaching defs After a node are identical to the reaching defs before the node.
const NodeReachingDefTable & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getDefsAtNode | ( | const CFGNode & | node | ) | const |
Returns the definitions that occur at the given node.
If no definitions occur at the node, the result is empty
const NodeReachingDefTable & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getReachingDefsBefore | ( | SgNode * | astNode | ) | const |
Get the reaching definitions before the given AST node is executed.
This method is equivalent to looking up the reaching definitions before astNode->cfgForBeginning()
const NodeReachingDefTable & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getReachingDefsAfter | ( | SgNode * | astNode | ) | const |
Get the reaching definitions after the given AST node is executed.
This method is equivalent to looking up the reaching definitions after astNode->cfgForEnd()
const std::set< SgVarRefExp * > & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getUsesAtNode | ( | SgNode * | astNode | ) | const |
Returns all the SgVarRef objects that are used in the execution of the given AST node.
Each of the SgVarRef objects returned corresponds to a variable name
const ReachingDefPtr ssa_unfiltered_cfg::SSA_UnfilteredCfg::getDefinitionForUse | ( | SgVarRefExp * | astNode | ) | const |
Given a use obtained through getUsesAtNode, resolve its corresponding def.
This function may return NULL for SgVarRef objects not returned by getUsesAtNode
const ASTNodeToVarRefsMap & ssa_unfiltered_cfg::SSA_UnfilteredCfg::getUseTable | ( | ) | const |
Returns the entire use table, mapping each non-statement AST node to the variables used in its execution.
|
static |
Find if the given prefix is a prefix of the given name.
This will return whether the given name has the given prefix inside it.
ex. a.b.c has prefix a.b, but not a.c
name | The name to search. |
prefix | The prefix to search for. |
|
static |
Get the uniqueName attribute for the given node.
node | Node to get the attribute from. |
Get the variable name of the given node.
node | The node to get the name for. |
|
static |
If an expression evaluates to a reference of a variable, returns that variable.
Handles casts, comma ops, address of ops, etc. For example, Given the expression (...., &a), this method would return the VarName for a.
|
static |
Get an AST fragment containing the appropriate varRefs and Dot/Arrow ops to access the given variable.
var | The variable to construct access for. |
scope | The scope within which to construct the access. |
|
static |
Get a string representation of a varName.
vec | varName to get string for. |
|
static |
Definition at line 203 of file ssaUnfilteredCfg.h.