Package edu.cmu.cs.crystal.tac.model

Examples of edu.cmu.cs.crystal.tac.model.TempVariable


   * @return a fresh temp variable representing the result of the given node.
   */
  protected TempVariable createTemp(ASTNode node) {
    // allocate variable object
    // possible memory optimization: use instruction itself to represent temp
    return new TempVariable(node);
  }
View Full Code Here

TOP

Related Classes of edu.cmu.cs.crystal.tac.model.TempVariable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.