All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.extendj.ast.EnhancedForStmt Maven / Gradle / Ivy

There is a newer version: 8.1.2
Show newest version
/* This file was generated with JastAdd2 (http://jastadd.org) version 2.3.0 */
package org.extendj.ast;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.ArrayList;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import java.util.zip.*;
import java.io.*;
import org.jastadd.util.PrettyPrintable;
import org.jastadd.util.PrettyPrinter;
import org.jastadd.util.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.IOException;
import java.util.Set;
import beaver.*;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentSkipListMap;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
/**
 * @ast node
 * @declaredat /home/jesper/git/extendj/java5/grammar/EnhancedFor.ast:1
 * @astdecl EnhancedForStmt : BranchTargetStmt ::= Modifiers TypeAccess:Access VariableDecl:VariableDeclarator Expr Stmt;
 * @production EnhancedForStmt : {@link BranchTargetStmt} ::= {@link Modifiers} TypeAccess:{@link Access} VariableDecl:{@link VariableDeclarator} {@link Expr} {@link Stmt};

 */
public class EnhancedForStmt extends BranchTargetStmt implements Cloneable, VariableScope {
  /**
   * @aspect EnhancedFor
   * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:158
   */
  public void prettyPrint(PrettyPrinter out) {
    out.print("for (");
    out.print(getModifiers());
    out.print(getTypeAccess());
    out.print(" " + getVariableDecl().name());
    out.print(" : ");
    out.print(getExpr());
    out.print(") ");
    if (getStmt() instanceof Block) {
      out.print(getStmt());
    } else {
      out.print("{");
      out.println();
      out.indent(1);
      out.print(getStmt());
      out.println();
      out.print("}");
    }
  }
  /**
   * @aspect EnhancedForToBytecode
   * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:51
   */
  public void createBCode(CodeGeneration gen) {
    VariableDeclarator decl = getVariableDecl();
    gen.addLocalVariableEntryAtCurrentPC(decl.name(), decl.type(),
        extraLocalIndex(), variableScopeEndLabel(gen));
    TypeDecl exprType = getExpr().type();
    if (exprType.isArrayDecl()) {
      getExpr().createBCode(gen);
      gen.ASTORE(extraLocalIndex(), exprType);
      IntegerLiteral.push(gen, 0);
      gen.ISTORE(extraLocalIndex() + 1);
      gen.addLabel(cond_label());
      gen.ILOAD(extraLocalIndex() + 1);
      gen.ALOAD(extraLocalIndex(), exprType);
      gen.ARRAYLENGTH();
      gen.IF_ICMPGE(end_label());
      gen.ALOAD(extraLocalIndex(), exprType);
      gen.ILOAD(extraLocalIndex() + 1);
      exprType.componentType().emitArrayLoad(gen);
      exprType.componentType().emitCastTo(gen, getTypeAccess().type());
      getTypeAccess().type().emitStoreLocal(gen, getVariableDecl().localNum());
      getStmt().createBCode(gen);
      gen.addLabel(update_label());
      gen.IINC(extraLocalIndex() + 1, 1);
      gen.GOTO(cond_label());
      gen.addLabel(end_label());
    } else {
      TypeDecl typeIterable = lookupType("java.lang", "Iterable");
      TypeDecl typeIterator = lookupType("java.util", "Iterator");
      MethodDecl iteratorMethod = getMethod(typeIterable, "iterator");
      MethodDecl hasNextMethod = getMethod(typeIterator, "hasNext");
      MethodDecl nextMethod = getMethod(typeIterator, "next");
      getExpr().createBCode(gen);
      iteratorMethod.emitInvokeMethod(gen, typeIterable);
      gen.ASTORE(extraLocalIndex(), typeIterator);
      gen.addLabel(cond_label());
      gen.ALOAD(extraLocalIndex(), typeIterator);
      hasNextMethod.emitInvokeMethod(gen, typeIterator);
      gen.IFEQ(end_label());
      gen.ALOAD(extraLocalIndex(), typeIterator);
      nextMethod.emitInvokeMethod(gen, typeIterator);
      VariableDeclarator obj = getVariableDecl();
      if (!obj.type().boxed().isUnknown()) {
        gen.CHECKCAST(obj.type().boxed());
        obj.type().boxed().emitCastTo(gen, obj.type());
        obj.type().emitStoreLocal(gen, obj.localNum());
      } else {
        gen.CHECKCAST(obj.type());
        gen.ASTORE(obj.localNum(), obj.type());
      }
      getStmt().createBCode(gen);
      gen.addLabel(update_label());
      gen.GOTO(cond_label());
      gen.addLabel(end_label());
    }
    gen.addVariableScopeLabel(variableScopeEndLabel(gen));
  }
  /**
   * @declaredat ASTNode:1
   */
  public EnhancedForStmt() {
    super();
  }
  /**
   * Initializes the child array to the correct size.
   * Initializes List and Opt nta children.
   * @apilevel internal
   * @ast method
   * @declaredat ASTNode:10
   */
  public void init$Children() {
    children = new ASTNode[5];
  }
  /**
   * @declaredat ASTNode:13
   */
  @ASTNodeAnnotation.Constructor(
    name = {"Modifiers", "TypeAccess", "VariableDecl", "Expr", "Stmt"},
    type = {"Modifiers", "Access", "VariableDeclarator", "Expr", "Stmt"},
    kind = {"Child", "Child", "Child", "Child", "Child"}
  )
  public EnhancedForStmt(Modifiers p0, Access p1, VariableDeclarator p2, Expr p3, Stmt p4) {
    setChild(p0, 0);
    setChild(p1, 1);
    setChild(p2, 2);
    setChild(p3, 3);
    setChild(p4, 4);
  }
  /** @apilevel low-level 
   * @declaredat ASTNode:26
   */
  protected int numChildren() {
    return 5;
  }
  /**
   * @apilevel internal
   * @declaredat ASTNode:32
   */
  public boolean mayHaveRewrite() {
    return false;
  }
  /** @apilevel internal 
   * @declaredat ASTNode:36
   */
  public void flushAttrCache() {
    super.flushAttrCache();
    canCompleteNormally_reset();
    assignedAfter_Variable_reset();
    unassignedAfter_Variable_reset();
    cond_label_reset();
    update_label_reset();
    end_label_reset();
    extraLocalIndex_reset();
    variableScopeEndLabel_CodeGeneration_reset();
  }
  /** @apilevel internal 
   * @declaredat ASTNode:48
   */
  public void flushCollectionCache() {
    super.flushCollectionCache();
  }
  /** @apilevel internal 
   * @declaredat ASTNode:52
   */
  public EnhancedForStmt clone() throws CloneNotSupportedException {
    EnhancedForStmt node = (EnhancedForStmt) super.clone();
    return node;
  }
  /** @apilevel internal 
   * @declaredat ASTNode:57
   */
  public EnhancedForStmt copy() {
    try {
      EnhancedForStmt node = (EnhancedForStmt) clone();
      node.parent = null;
      if (children != null) {
        node.children = (ASTNode[]) children.clone();
      }
      return node;
    } catch (CloneNotSupportedException e) {
      throw new Error("Error: clone not supported for " + getClass().getName());
    }
  }
  /**
   * Create a deep copy of the AST subtree at this node.
   * The copy is dangling, i.e. has no parent.
   * @return dangling copy of the subtree at this node
   * @apilevel low-level
   * @deprecated Please use treeCopy or treeCopyNoTransform instead
   * @declaredat ASTNode:76
   */
  @Deprecated
  public EnhancedForStmt fullCopy() {
    return treeCopyNoTransform();
  }
  /**
   * Create a deep copy of the AST subtree at this node.
   * The copy is dangling, i.e. has no parent.
   * @return dangling copy of the subtree at this node
   * @apilevel low-level
   * @declaredat ASTNode:86
   */
  public EnhancedForStmt treeCopyNoTransform() {
    EnhancedForStmt tree = (EnhancedForStmt) copy();
    if (children != null) {
      for (int i = 0; i < children.length; ++i) {
        ASTNode child = (ASTNode) children[i];
        if (child != null) {
          child = child.treeCopyNoTransform();
          tree.setChild(child, i);
        }
      }
    }
    return tree;
  }
  /**
   * Create a deep copy of the AST subtree at this node.
   * The subtree of this node is traversed to trigger rewrites before copy.
   * The copy is dangling, i.e. has no parent.
   * @return dangling copy of the subtree at this node
   * @apilevel low-level
   * @declaredat ASTNode:106
   */
  public EnhancedForStmt treeCopy() {
    EnhancedForStmt tree = (EnhancedForStmt) copy();
    if (children != null) {
      for (int i = 0; i < children.length; ++i) {
        ASTNode child = (ASTNode) getChild(i);
        if (child != null) {
          child = child.treeCopy();
          tree.setChild(child, i);
        }
      }
    }
    return tree;
  }
  /** @apilevel internal 
   * @declaredat ASTNode:120
   */
  protected boolean is$Equal(ASTNode node) {
    return super.is$Equal(node);    
  }
  /**
   * Replaces the Modifiers child.
   * @param node The new node to replace the Modifiers child.
   * @apilevel high-level
   */
  public void setModifiers(Modifiers node) {
    setChild(node, 0);
  }
  /**
   * Retrieves the Modifiers child.
   * @return The current node used as the Modifiers child.
   * @apilevel high-level
   */
  @ASTNodeAnnotation.Child(name="Modifiers")
  public Modifiers getModifiers() {
    return (Modifiers) getChild(0);
  }
  /**
   * Retrieves the Modifiers child.
   * 

This method does not invoke AST transformations.

* @return The current node used as the Modifiers child. * @apilevel low-level */ public Modifiers getModifiersNoTransform() { return (Modifiers) getChildNoTransform(0); } /** * Replaces the TypeAccess child. * @param node The new node to replace the TypeAccess child. * @apilevel high-level */ public void setTypeAccess(Access node) { setChild(node, 1); } /** * Retrieves the TypeAccess child. * @return The current node used as the TypeAccess child. * @apilevel high-level */ @ASTNodeAnnotation.Child(name="TypeAccess") public Access getTypeAccess() { return (Access) getChild(1); } /** * Retrieves the TypeAccess child. *

This method does not invoke AST transformations.

* @return The current node used as the TypeAccess child. * @apilevel low-level */ public Access getTypeAccessNoTransform() { return (Access) getChildNoTransform(1); } /** * Replaces the VariableDecl child. * @param node The new node to replace the VariableDecl child. * @apilevel high-level */ public void setVariableDecl(VariableDeclarator node) { setChild(node, 2); } /** * Retrieves the VariableDecl child. * @return The current node used as the VariableDecl child. * @apilevel high-level */ @ASTNodeAnnotation.Child(name="VariableDecl") public VariableDeclarator getVariableDecl() { return (VariableDeclarator) getChild(2); } /** * Retrieves the VariableDecl child. *

This method does not invoke AST transformations.

* @return The current node used as the VariableDecl child. * @apilevel low-level */ public VariableDeclarator getVariableDeclNoTransform() { return (VariableDeclarator) getChildNoTransform(2); } /** * Replaces the Expr child. * @param node The new node to replace the Expr child. * @apilevel high-level */ public void setExpr(Expr node) { setChild(node, 3); } /** * Retrieves the Expr child. * @return The current node used as the Expr child. * @apilevel high-level */ @ASTNodeAnnotation.Child(name="Expr") public Expr getExpr() { return (Expr) getChild(3); } /** * Retrieves the Expr child. *

This method does not invoke AST transformations.

* @return The current node used as the Expr child. * @apilevel low-level */ public Expr getExprNoTransform() { return (Expr) getChildNoTransform(3); } /** * Replaces the Stmt child. * @param node The new node to replace the Stmt child. * @apilevel high-level */ public void setStmt(Stmt node) { setChild(node, 4); } /** * Retrieves the Stmt child. * @return The current node used as the Stmt child. * @apilevel high-level */ @ASTNodeAnnotation.Child(name="Stmt") public Stmt getStmt() { return (Stmt) getChild(4); } /** * Retrieves the Stmt child. *

This method does not invoke AST transformations.

* @return The current node used as the Stmt child. * @apilevel low-level */ public Stmt getStmtNoTransform() { return (Stmt) getChildNoTransform(4); } /** * @return true if this statement is a potential * branch target of the given branch statement. * @attribute syn * @aspect BranchTarget * @declaredat /home/jesper/git/extendj/java4/frontend/BranchTarget.jrag:215 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="BranchTarget", declaredAt="/home/jesper/git/extendj/java4/frontend/BranchTarget.jrag:215") public boolean potentialTargetOf(Stmt branch) { boolean potentialTargetOf_Stmt_value = branch.canBranchTo(this); return potentialTargetOf_Stmt_value; } /** * @attribute syn * @aspect EnhancedFor * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:45 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedFor", declaredAt="/home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:45") public Collection typeProblems() { { Collection problems = new LinkedList(); TypeDecl exprType = getExpr().type(); if (!exprType.isArrayDecl() && !exprType.isIterable()) { problems.add(errorf( "type %s of expression in foreach is neither array type nor java.lang.Iterable", exprType.name())); } else if (exprType.isArrayDecl() && !exprType.componentType() .assignConversionTo(getTypeAccess().type(), null)) { problems.add(errorf("parameter of type %s can not be assigned an element of type %s", getTypeAccess().type().typeName(), exprType.componentType().typeName())); } else if (exprType.isIterable() && !exprType.isUnknown()) { TypeDecl componentType = exprType.iterableElementType(); if (!componentType.assignConversionTo(getTypeAccess().type(), null)) { problems.add(errorf("parameter of type %s can not be assigned an element of type %s", getTypeAccess().type().typeName(), componentType.typeName())); } } return problems; } } /** * @attribute syn * @aspect EnhancedFor * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:150 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedFor", declaredAt="/home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:150") public SimpleSet localLookupVariable(String name) { { if (getVariableDecl().name().equals(name)) { return getVariableDecl(); } return lookupVariable(name); } } /** @apilevel internal */ private void canCompleteNormally_reset() { canCompleteNormally_computed = null; } /** @apilevel internal */ protected ASTState.Cycle canCompleteNormally_computed = null; /** @apilevel internal */ protected boolean canCompleteNormally_value; /** * @attribute syn * @aspect UnreachableStatements * @declaredat /home/jesper/git/extendj/java4/frontend/UnreachableStatements.jrag:50 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="UnreachableStatements", declaredAt="/home/jesper/git/extendj/java4/frontend/UnreachableStatements.jrag:50") public boolean canCompleteNormally() { ASTState state = state(); if (canCompleteNormally_computed == ASTState.NON_CYCLE || canCompleteNormally_computed == state().cycle()) { return canCompleteNormally_value; } canCompleteNormally_value = reachable(); if (state().inCircle()) { canCompleteNormally_computed = state().cycle(); } else { canCompleteNormally_computed = ASTState.NON_CYCLE; } return canCompleteNormally_value; } /** @apilevel internal */ private void assignedAfter_Variable_reset() { assignedAfter_Variable_values = null; } protected java.util.Map assignedAfter_Variable_values; @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN, isCircular=true) @ASTNodeAnnotation.Source(aspect="DefiniteAssignment", declaredAt="/home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:264") public boolean assignedAfter(Variable v) { Object _parameters = v; if (assignedAfter_Variable_values == null) assignedAfter_Variable_values = new java.util.HashMap(4); ASTState.CircularValue _value; if (assignedAfter_Variable_values.containsKey(_parameters)) { Object _cache = assignedAfter_Variable_values.get(_parameters); if (!(_cache instanceof ASTState.CircularValue)) { return (Boolean) _cache; } else { _value = (ASTState.CircularValue) _cache; } } else { _value = new ASTState.CircularValue(); assignedAfter_Variable_values.put(_parameters, _value); _value.value = true; } ASTState state = state(); if (!state.inCircle() || state.calledByLazyAttribute()) { state.enterCircle(); boolean new_assignedAfter_Variable_value; do { _value.cycle = state.nextCycle(); new_assignedAfter_Variable_value = assignedAfter_compute(v); if (((Boolean)_value.value) != new_assignedAfter_Variable_value) { state.setChangeInCycle(); _value.value = new_assignedAfter_Variable_value; } } while (state.testAndClearChangeInCycle()); assignedAfter_Variable_values.put(_parameters, new_assignedAfter_Variable_value); state.leaveCircle(); return new_assignedAfter_Variable_value; } else if (_value.cycle != state.cycle()) { _value.cycle = state.cycle(); boolean new_assignedAfter_Variable_value = assignedAfter_compute(v); if (((Boolean)_value.value) != new_assignedAfter_Variable_value) { state.setChangeInCycle(); _value.value = new_assignedAfter_Variable_value; } return new_assignedAfter_Variable_value; } else { return (Boolean) _value.value; } } /** @apilevel internal */ private boolean assignedAfter_compute(Variable v) { if (!getExpr().assignedAfter(v)) { return false; } return true; } /** @apilevel internal */ private void unassignedAfter_Variable_reset() { unassignedAfter_Variable_values = null; } protected java.util.Map unassignedAfter_Variable_values; @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN, isCircular=true) @ASTNodeAnnotation.Source(aspect="DefiniteUnassignment", declaredAt="/home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:895") public boolean unassignedAfter(Variable v) { Object _parameters = v; if (unassignedAfter_Variable_values == null) unassignedAfter_Variable_values = new java.util.HashMap(4); ASTState.CircularValue _value; if (unassignedAfter_Variable_values.containsKey(_parameters)) { Object _cache = unassignedAfter_Variable_values.get(_parameters); if (!(_cache instanceof ASTState.CircularValue)) { return (Boolean) _cache; } else { _value = (ASTState.CircularValue) _cache; } } else { _value = new ASTState.CircularValue(); unassignedAfter_Variable_values.put(_parameters, _value); _value.value = true; } ASTState state = state(); if (!state.inCircle() || state.calledByLazyAttribute()) { state.enterCircle(); boolean new_unassignedAfter_Variable_value; do { _value.cycle = state.nextCycle(); new_unassignedAfter_Variable_value = unassignedAfter_compute(v); if (((Boolean)_value.value) != new_unassignedAfter_Variable_value) { state.setChangeInCycle(); _value.value = new_unassignedAfter_Variable_value; } } while (state.testAndClearChangeInCycle()); unassignedAfter_Variable_values.put(_parameters, new_unassignedAfter_Variable_value); state.leaveCircle(); return new_unassignedAfter_Variable_value; } else if (_value.cycle != state.cycle()) { _value.cycle = state.cycle(); boolean new_unassignedAfter_Variable_value = unassignedAfter_compute(v); if (((Boolean)_value.value) != new_unassignedAfter_Variable_value) { state.setChangeInCycle(); _value.value = new_unassignedAfter_Variable_value; } return new_unassignedAfter_Variable_value; } else { return (Boolean) _value.value; } } /** @apilevel internal */ private boolean unassignedAfter_compute(Variable v) { if (!getExpr().unassignedAfter(v)) { return false; } for (BreakStmt stmt : targetBreaks()) { if (!stmt.unassignedAfterReachedFinallyBlocks(v)) { return false; } } return true; } /** * @attribute syn * @aspect NameCheck * @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:567 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="NameCheck", declaredAt="/home/jesper/git/extendj/java4/frontend/NameCheck.jrag:567") public boolean continueLabel() { boolean continueLabel_value = true; return continueLabel_value; } /** @apilevel internal */ private void cond_label_reset() { cond_label_computed = null; } /** @apilevel internal */ protected ASTState.Cycle cond_label_computed = null; /** @apilevel internal */ protected int cond_label_value; /** * @attribute syn * @aspect EnhancedForToBytecode * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:34 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedForToBytecode", declaredAt="/home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:34") public int cond_label() { ASTState state = state(); if (cond_label_computed == ASTState.NON_CYCLE || cond_label_computed == state().cycle()) { return cond_label_value; } cond_label_value = hostType().constantPool().newLabel(); if (state().inCircle()) { cond_label_computed = state().cycle(); } else { cond_label_computed = ASTState.NON_CYCLE; } return cond_label_value; } /** @apilevel internal */ private void update_label_reset() { update_label_computed = null; } /** @apilevel internal */ protected ASTState.Cycle update_label_computed = null; /** @apilevel internal */ protected int update_label_value; /** * @attribute syn * @aspect EnhancedForToBytecode * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:35 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedForToBytecode", declaredAt="/home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:35") public int update_label() { ASTState state = state(); if (update_label_computed == ASTState.NON_CYCLE || update_label_computed == state().cycle()) { return update_label_value; } update_label_value = hostType().constantPool().newLabel(); if (state().inCircle()) { update_label_computed = state().cycle(); } else { update_label_computed = ASTState.NON_CYCLE; } return update_label_value; } /** @apilevel internal */ private void end_label_reset() { end_label_computed = null; } /** @apilevel internal */ protected ASTState.Cycle end_label_computed = null; /** @apilevel internal */ protected int end_label_value; /** * @attribute syn * @aspect EnhancedForToBytecode * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:36 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedForToBytecode", declaredAt="/home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:36") public int end_label() { ASTState state = state(); if (end_label_computed == ASTState.NON_CYCLE || end_label_computed == state().cycle()) { return end_label_value; } end_label_value = hostType().constantPool().newLabel(); if (state().inCircle()) { end_label_computed = state().cycle(); } else { end_label_computed = ASTState.NON_CYCLE; } return end_label_value; } /** @apilevel internal */ private void extraLocalIndex_reset() { extraLocalIndex_computed = null; } /** @apilevel internal */ protected ASTState.Cycle extraLocalIndex_computed = null; /** @apilevel internal */ protected int extraLocalIndex_value; /** * @attribute syn * @aspect EnhancedForToBytecode * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:38 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedForToBytecode", declaredAt="/home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:38") public int extraLocalIndex() { ASTState state = state(); if (extraLocalIndex_computed == ASTState.NON_CYCLE || extraLocalIndex_computed == state().cycle()) { return extraLocalIndex_value; } extraLocalIndex_value = localNum(); if (state().inCircle()) { extraLocalIndex_computed = state().cycle(); } else { extraLocalIndex_computed = ASTState.NON_CYCLE; } return extraLocalIndex_value; } /** * @attribute syn * @aspect CreateBCode * @declaredat /home/jesper/git/extendj/java4/backend/CreateBCode.jrag:1698 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="CreateBCode", declaredAt="/home/jesper/git/extendj/java4/backend/CreateBCode.jrag:1698") public int break_label() { int break_label_value = end_label(); return break_label_value; } /** * @attribute syn * @aspect CreateBCode * @declaredat /home/jesper/git/extendj/java4/backend/CreateBCode.jrag:1723 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="CreateBCode", declaredAt="/home/jesper/git/extendj/java4/backend/CreateBCode.jrag:1723") public int continue_label() { int continue_label_value = update_label(); return continue_label_value; } /** @apilevel internal */ private void variableScopeEndLabel_CodeGeneration_reset() { variableScopeEndLabel_CodeGeneration_computed = null; variableScopeEndLabel_CodeGeneration_values = null; } /** @apilevel internal */ protected java.util.Map variableScopeEndLabel_CodeGeneration_values; /** @apilevel internal */ protected java.util.Map variableScopeEndLabel_CodeGeneration_computed; /** * @attribute syn * @aspect EnhancedForToBytecode * @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:48 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.SYN) @ASTNodeAnnotation.Source(aspect="EnhancedForToBytecode", declaredAt="/home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:48") public int variableScopeEndLabel(CodeGeneration gen) { Object _parameters = gen; if (variableScopeEndLabel_CodeGeneration_computed == null) variableScopeEndLabel_CodeGeneration_computed = new java.util.HashMap(4); if (variableScopeEndLabel_CodeGeneration_values == null) variableScopeEndLabel_CodeGeneration_values = new java.util.HashMap(4); ASTState state = state(); if (variableScopeEndLabel_CodeGeneration_values.containsKey(_parameters) && variableScopeEndLabel_CodeGeneration_computed.containsKey(_parameters) && (variableScopeEndLabel_CodeGeneration_computed.get(_parameters) == ASTState.NON_CYCLE || variableScopeEndLabel_CodeGeneration_computed.get(_parameters) == state().cycle())) { return (Integer) variableScopeEndLabel_CodeGeneration_values.get(_parameters); } int variableScopeEndLabel_CodeGeneration_value = gen.variableScopeLabel(); if (state().inCircle()) { variableScopeEndLabel_CodeGeneration_values.put(_parameters, variableScopeEndLabel_CodeGeneration_value); variableScopeEndLabel_CodeGeneration_computed.put(_parameters, state().cycle()); } else { variableScopeEndLabel_CodeGeneration_values.put(_parameters, variableScopeEndLabel_CodeGeneration_value); variableScopeEndLabel_CodeGeneration_computed.put(_parameters, ASTState.NON_CYCLE); } return variableScopeEndLabel_CodeGeneration_value; } /** * @attribute inh * @aspect EnhancedFor * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:138 */ @ASTNodeAnnotation.Attribute(kind=ASTNodeAnnotation.Kind.INH) @ASTNodeAnnotation.Source(aspect="EnhancedFor", declaredAt="/home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:138") public SimpleSet lookupVariable(String name) { SimpleSet lookupVariable_String_value = getParent().Define_lookupVariable(this, null, name); return lookupVariable_String_value; } /** * @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1385 * @apilevel internal */ public FieldDecl Define_fieldDecl(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1391 return null; } else { return getParent().Define_fieldDecl(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1385 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute fieldDecl */ protected boolean canDefine_fieldDecl(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1644 * @apilevel internal */ public FieldDeclarator Define_erasedField(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1655 { throw new Error("FieldDeclarator child of EnhancedForStmt"); } } else { return getParent().Define_erasedField(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java5/frontend/Generics.jrag:1644 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute erasedField */ protected boolean canDefine_erasedField(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/BranchTarget.jrag:230 * @apilevel internal */ public Stmt Define_branchTarget(ASTNode _callerNode, ASTNode _childNode, Stmt branch) { int childIndex = this.getIndexOfChild(_callerNode); return branch.canBranchTo(this) ? this : branchTarget(branch); } /** * @declaredat /home/jesper/git/extendj/java4/frontend/BranchTarget.jrag:230 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute branchTarget */ protected boolean canDefine_branchTarget(ASTNode _callerNode, ASTNode _childNode, Stmt branch) { return true; } /** * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:138 * @apilevel internal */ public SimpleSet Define_lookupVariable(ASTNode _callerNode, ASTNode _childNode, String name) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:141 return localLookupVariable(name); } else if (getExprNoTransform() != null && _callerNode == getExpr()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:140 return localLookupVariable(name); } else if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:139 return localLookupVariable(name); } else { return getParent().Define_lookupVariable(this, _callerNode, name); } } /** * @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:138 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute lookupVariable */ protected boolean canDefine_lookupVariable(ASTNode _callerNode, ASTNode _childNode, String name) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/SyntacticClassification.jrag:36 * @apilevel internal */ public NameType Define_nameType(ASTNode _callerNode, ASTNode _childNode) { if (getTypeAccessNoTransform() != null && _callerNode == getTypeAccess()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:143 return NameType.TYPE_NAME; } else { return getParent().Define_nameType(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/SyntacticClassification.jrag:36 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute nameType */ protected boolean canDefine_nameType(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:439 * @apilevel internal */ public VariableScope Define_outerScope(ASTNode _callerNode, ASTNode _childNode) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:148 return this; } else if (getExprNoTransform() != null && _callerNode == getExpr()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:147 return this; } else if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:146 return this; } else { return getParent().Define_outerScope(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:439 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute outerScope */ protected boolean canDefine_outerScope(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/Modifiers.jrag:436 * @apilevel internal */ public boolean Define_mayBeFinal(ASTNode _callerNode, ASTNode _childNode) { if (getModifiersNoTransform() != null && _callerNode == getModifiers()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:178 return true; } else { return getParent().Define_mayBeFinal(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/Modifiers.jrag:436 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute mayBeFinal */ protected boolean canDefine_mayBeFinal(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:82 * @apilevel internal */ public boolean Define_isMethodParameter(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:182 return false; } else { return getParent().Define_isMethodParameter(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:82 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute isMethodParameter */ protected boolean canDefine_isMethodParameter(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:83 * @apilevel internal */ public boolean Define_isConstructorParameter(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:183 return false; } else { return getParent().Define_isConstructorParameter(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:83 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute isConstructorParameter */ protected boolean canDefine_isConstructorParameter(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:84 * @apilevel internal */ public boolean Define_isExceptionHandlerParameter(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:184 return false; } else { return getParent().Define_isExceptionHandlerParameter(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:84 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute isExceptionHandlerParameter */ protected boolean canDefine_isExceptionHandlerParameter(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:133 * @apilevel internal */ public Modifiers Define_declarationModifiers(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:186 return getModifiers(); } else { return getParent().Define_declarationModifiers(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:133 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute declarationModifiers */ protected boolean canDefine_declarationModifiers(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:144 * @apilevel internal */ public Access Define_declarationType(ASTNode _callerNode, ASTNode _childNode) { if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:188 return getTypeAccess(); } else { return getParent().Define_declarationType(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/VariableDeclaration.jrag:144 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute declarationType */ protected boolean canDefine_declarationType(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/UnreachableStatements.jrag:49 * @apilevel internal */ public boolean Define_reachable(ASTNode _callerNode, ASTNode _childNode) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:192 return reachable(); } else { return getParent().Define_reachable(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/UnreachableStatements.jrag:49 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute reachable */ protected boolean canDefine_reachable(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:256 * @apilevel internal */ public boolean Define_assignedBefore(ASTNode _callerNode, ASTNode _childNode, Variable v) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:205 return getExpr().assignedAfter(v); } else if (getExprNoTransform() != null && _callerNode == getExpr()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:202 return v == getVariableDecl() || assignedBefore(v); } else { return getParent().Define_assignedBefore(this, _callerNode, v); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:256 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute assignedBefore */ protected boolean canDefine_assignedBefore(ASTNode _callerNode, ASTNode _childNode, Variable v) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:887 * @apilevel internal */ public boolean Define_unassignedBefore(ASTNode _callerNode, ASTNode _childNode, Variable v) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:222 return getExpr().unassignedAfter(v); } else if (getExprNoTransform() != null && _callerNode == getExpr()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:219 return v != getVariableDecl() && unassignedBefore(v); } else { return getParent().Define_unassignedBefore(this, _callerNode, v); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/DefiniteAssignment.jrag:887 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute unassignedBefore */ protected boolean canDefine_unassignedBefore(ASTNode _callerNode, ASTNode _childNode, Variable v) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:523 * @apilevel internal */ public boolean Define_insideLoop(ASTNode _callerNode, ASTNode _childNode) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:224 return true; } else { return getParent().Define_insideLoop(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/frontend/NameCheck.jrag:523 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute insideLoop */ protected boolean canDefine_insideLoop(ASTNode _callerNode, ASTNode _childNode) { return true; } /** * @declaredat /home/jesper/git/extendj/java4/backend/LocalNum.jrag:63 * @apilevel internal */ public int Define_localNum(ASTNode _callerNode, ASTNode _childNode) { if (getStmtNoTransform() != null && _callerNode == getStmt()) { // @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:41 return getVariableDecl().localNum() + getTypeAccess().type().size(); } else if (getVariableDeclNoTransform() != null && _callerNode == getVariableDecl()) { // @declaredat /home/jesper/git/extendj/java5/backend/EnhancedForCodegen.jrag:39 return localNum() + (getExpr().type().isArrayDecl() ? 2 : 1); } else { return getParent().Define_localNum(this, _callerNode); } } /** * @declaredat /home/jesper/git/extendj/java4/backend/LocalNum.jrag:63 * @apilevel internal * @return {@code true} if this node has an equation for the inherited attribute localNum */ protected boolean canDefine_localNum(ASTNode _callerNode, ASTNode _childNode) { return true; } /** @apilevel internal */ public ASTNode rewriteTo() { return super.rewriteTo(); } /** @apilevel internal */ public boolean canRewrite() { return false; } /** @apilevel internal */ protected void collect_contributors_CompilationUnit_problems(CompilationUnit _root, java.util.Map> _map) { // @declaredat /home/jesper/git/extendj/java5/frontend/EnhancedFor.jrag:43 { java.util.Set contributors = _map.get(_root); if (contributors == null) { contributors = new java.util.LinkedHashSet(); _map.put((ASTNode) _root, contributors); } contributors.add(this); } super.collect_contributors_CompilationUnit_problems(_root, _map); } /** @apilevel internal */ protected void contributeTo_CompilationUnit_problems(LinkedList collection) { super.contributeTo_CompilationUnit_problems(collection); for (Problem value : typeProblems()) { collection.add(value); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy