Class Make::MakeSsa::SsaPhiDefinition
An SSA phi definition, that is, a pseudo definition for a variable at a point in the flow graph where otherwise two or more definitions for the variable would be visible.
For example, in
if b
x = 0
else
x = 1
end
puts x
a phi definition for x is inserted just before the call puts x.
Import path
import codeql.ssa.SsaDirect supertypes
Indirect supertypes
Predicates
| getAnInput | Gets an input of this phi definition. |
| hasInputFromBlock | Holds if |
Inherited predicates
| definesAt | Holds if this SSA definition defines | from Definition |
| getARead | Gets a read of this SSA definition. | from SsaDefinition |
| getAnUltimateDefinition | Gets a definition that ultimately defines this SSA definition and is not itself a phi definition. | from SsaDefinition |
| getBasicBlock | Gets the basic block to which this SSA definition belongs. | from Definition |
| getControlFlowNode | Gets the control flow node of this SSA definition. | from SsaDefinition |
| getLocation | Gets the location of this SSA definition. | from Definition |
| getSourceVariable | Gets the source variable underlying this SSA definition. | from Definition |
| isLiveAtEndOfBlock | Holds if this SSA definition is live at the end of basic block | from SsaDefinition |
| toString | Gets a textual representation of this SSA definition. | from SsaDefinition |