Class Ssa::Definition
A static single assignment (SSA) definition. Either an explicit variable
definition (ExplicitDefinition
), an implicit variable definition
(ImplicitDefinition
), or a phi node (PhiNode
).
Import path
import csharp
Direct supertypes
Indirect supertypes
Known direct subtypes
Predicates
getAFirstRead | Gets a read of the source variable underlying this SSA definition that can be reached from this SSA definition without passing through any other SSA definition or read. Example: |
getAFirstReadAtNode | Gets a read of the source variable underlying this SSA definition at control flow node |
getALastRead | Gets a last read of the source variable underlying this SSA definition. That is, a read that can reach the end of the enclosing callable, or another SSA definition for the source variable, without passing through any other read. Example: |
getALastReadAtNode | Gets a last read of the source variable underlying this SSA definition at control flow node |
getARead | Gets a read of the source variable underlying this SSA definition that can be reached from this SSA definition without passing through any other SSA definitions. Example: |
getAReadAtNode | Gets a read of the source variable underlying this SSA definition at control flow node |
getAnUltimateDefinition | Gets a definition that ultimately defines this SSA definition and is not itself a phi node. Example: |
getControlFlowNode | Gets the control flow node of this SSA definition, if any. Phi nodes are examples of SSA definitions without a control flow node, as they are modeled at index |
getElement | Gets the syntax element associated with this SSA definition, if any. This is either an expression, for example |
getEnclosingCallable | Gets the callable to which this SSA definition belongs. |
getLocation | Gets the location of this SSA definition. |
isLiveAtEndOfBlock | Holds if this SSA definition is live at the end of basic block |
isLiveOutRefParameterDefinition | Holds if this SSA definition assigns to |
Inherited predicates
definesAt | Holds if this SSA definition defines | from Definition |
getBasicBlock | Gets the basic block to which this SSA definition belongs. | from Definition |
getSourceVariable | Gets the source variable underlying this SSA definition. | from Definition |
toString | Gets a textual representation of this SSA definition. | from Definition |