Package org.renjin.gcc.jimple

Examples of org.renjin.gcc.jimple.JimpleExpr


    this.arrayExpr = new JimpleExpr(jimpleName);
    this.indexExpr = JimpleExpr.integerConstant(offset);
  }

  public ArrayRef(String jimpleArrayName, String jimpleOffsetName) {
    this.arrayExpr = new JimpleExpr(jimpleArrayName);
    this.indexExpr = new JimpleExpr(jimpleOffsetName);

  }
View Full Code Here


    this.indexExpr = new JimpleExpr(jimpleOffsetName);

  }

  public ArrayRef(String jimpleArrayName, JimpleExpr indexExpr) {
    this.arrayExpr = new JimpleExpr(jimpleArrayName);
    this.indexExpr = indexExpr;
  }
View Full Code Here

TOP

Related Classes of org.renjin.gcc.jimple.JimpleExpr

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.