Package jminusminus

Class JArrayExpression

All Implemented Interfaces:
JLhs

class JArrayExpression extends JExpression implements JLhs
The AST for an array indexing operation. It has an expression denoting an array object and an expression denoting an integer index.
  • Constructor Details

    • JArrayExpression

      public JArrayExpression(int line, JExpression theArray, JExpression indexExpr)
      Constructs an AST node for an array indexing operation.
      Parameters:
      line - line in which the operation occurs in the source file.
      theArray - the array we're indexing.
      indexExpr - the index expression.
  • Method Details

    • analyze

      public JExpression analyze(Context context)
      Analyzes and returns a JExpression.
      Specified by:
      analyze in class JExpression
      Parameters:
      context - context in which names are resolved.
      Returns:
      the analyzed (and possibly rewritten) AST subtree.
    • analyzeLhs

      public JExpression analyzeLhs(Context context)
      Analyzes the lhs of an assignment. This is very much like the analyze() methods, but perhaps a little more selective here and there.
      Specified by:
      analyzeLhs in interface JLhs
      Parameters:
      context - context in which names are resolved.
      Returns:
      the analyzed (and possibly rewritten) AST subtree.
    • codegen

      public void codegen(CLEmitter output)
      Performs code generation for this AST.
      Specified by:
      codegen in class JAST
      Parameters:
      output - the code emitter.
    • codegen

      public void codegen(CLEmitter output, String targetLabel, boolean onTrue)
      Performs short-circuit code generation for a boolean expression, given the code emitter, a target label, and whether we branch to that label on true or on false.
      Overrides:
      codegen in class JExpression
      Parameters:
      output - the code emitter.
      targetLabel - the label to which we should branch.
      onTrue - do we branch on true?
    • codegenLoadLhsLvalue

      public void codegenLoadLhsLvalue(CLEmitter output)
      Generates code to load onto the stack any part of the lhs that must be there, as in a[i] = x.
      Specified by:
      codegenLoadLhsLvalue in interface JLhs
      Parameters:
      output - the code emitter.
    • codegenLoadLhsRvalue

      public void codegenLoadLhsRvalue(CLEmitter output)
      Generates code to load an Rvalue of the lhs, as in a += x.
      Specified by:
      codegenLoadLhsRvalue in interface JLhs
      Parameters:
      output - the code emitter.
    • codegenDuplicateRvalue

      public void codegenDuplicateRvalue(CLEmitter output)
      Generates the code to duplicate the Rvalue that is on the stack because it is to be used in a surrounding expression, as in a[i] = x--.
      Specified by:
      codegenDuplicateRvalue in interface JLhs
      Parameters:
      output - the code emitter.
    • codegenStore

      public void codegenStore(CLEmitter output)
      Generates the code to do the actual assignment.
      Specified by:
      codegenStore in interface JLhs
      Parameters:
      output - the code emitter.
    • toJSON

      public void toJSON(JSONElement json)
      Stores information about this AST in JSON format.
      Overrides:
      toJSON in class JAST
      Parameters:
      json - the JSON emitter.