Search Results for

    Show / Hide Table of Contents

    Struct LatticeAnalysisResult<TCell>

    The result of a lattice analysis.

    Inherited Members
    ValueType.Equals(object)
    ValueType.GetHashCode()
    ValueType.ToString()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: Flame.Compiler.Analysis
    Assembly: Flame.Compiler.dll
    Syntax
    public struct LatticeAnalysisResult<TCell>
    Type Parameters
    Name Description
    TCell

    Constructors

    | Edit this page View Source

    LatticeAnalysisResult(IReadOnlyDictionary<ValueTag, TCell>, IEnumerable<BasicBlockTag>)

    Creates a lattice analysis result.

    Declaration
    public LatticeAnalysisResult(IReadOnlyDictionary<ValueTag, TCell> valueCells, IEnumerable<BasicBlockTag> liveBlocks)
    Parameters
    Type Name Description
    IReadOnlyDictionary<ValueTag, TCell> valueCells

    A mapping of values to lattice cells.

    IEnumerable<BasicBlockTag> liveBlocks

    The set of all live basic blocks.

    Properties

    | Edit this page View Source

    LiveBlocks

    Gets the set of all basic blocks that are live according to the analysis.

    Declaration
    public readonly IEnumerable<BasicBlockTag> LiveBlocks { get; }
    Property Value
    Type Description
    IEnumerable<BasicBlockTag>

    A set of basic blocks.

    | Edit this page View Source

    ValueCells

    Gets a mapping of values to lattice cells, as computed by the analysis.

    Declaration
    public readonly IReadOnlyDictionary<ValueTag, TCell> ValueCells { get; }
    Property Value
    Type Description
    IReadOnlyDictionary<ValueTag, TCell>

    A mapping of values to lattice cells.

    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX