Class MemorySSA.Phi
A memory SSA phi, which sets the memory state to one of a list of potential memory SSA states.
Inherited Members
Namespace: Flame.Compiler.Analysis
Assembly: Flame.Compiler.dll
Syntax
public sealed class MemorySSA.Phi : MemorySSA.Value
Constructors
| Edit this page View SourcePhi(IReadOnlyList<Value>)
Creates a phi.
Declaration
public Phi(IReadOnlyList<MemorySSA.Value> operands)
Parameters
| Type | Name | Description |
|---|---|---|
| IReadOnlyList<MemorySSA.Value> | operands | The phi's operands. |
Properties
| Edit this page View SourceOperands
Gets the phi's operands.
Declaration
public IReadOnlyList<MemorySSA.Value> Operands { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<MemorySSA.Value> | The phi's operands. |