Package org.ek9lang.compiler.phase7


package org.ek9lang.compiler.phase7
K - Intermediate Representation Generation.

All the symbols and plugins should now have been resolved. This means that it is now worth while creating the Intermediate Representation so that the code can be fully analysed/optimised and prepared for code generation.

IRGeneration is the main entry point for this phase.

  • Classes
    Class
    Description
    Given a ParamExpressionContext gets all the symbols and creates the appropriate 'Argument' for each.
    Processes the various ways of using assignment expressions.
    Accepts an instruction block parse tree context and creates an IR version of a Block.
    Creates the appropriate IR representation of a statement/expression that can be used within a block.
    Creates a call node (including appropriate call arguments).
    Creates an Expression node from the AST passed in.
    Deals with visiting all parts of the EK9 structure in a module (compilable source).
    MULTI THREADED All symbols resolve and so should be able to create an intermediate representation.
    Creates the appropriate node structure for object access.
    Creates the appropriate IR Node for a 'primary'.
    Creates the appropriate IR Construct for an Aggregate of type 'program'.
    If all has gone well in previous phases, this just adds the IR to the main program(s).
    Deals with the multitude of different types of statements to create the appropriate nodes.
    Deals with creating a set of instructions for the task of declaring a variable and assigning an initial value to it.