Package org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions

Examples of org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions.LoadCon


  public CodeBlock LABEL(String arg){
    return add(new Label(this, arg));
  }
 
  public CodeBlock LOADCON(boolean arg){
    return add(new LoadCon(this, getConstantIndex(vf.bool(arg))));
  }
View Full Code Here


  public CodeBlock LOADCON(boolean arg){
    return add(new LoadCon(this, getConstantIndex(vf.bool(arg))));
  }
 
  public CodeBlock LOADCON(int arg){
    return add(new LoadCon(this, getConstantIndex(vf.integer(arg))));
  }
View Full Code Here

  public CodeBlock LOADCON(int arg){
    return add(new LoadCon(this, getConstantIndex(vf.integer(arg))));
  }
 
  public CodeBlock LOADCON(String arg){
    return add(new LoadCon(this, getConstantIndex(vf.string(arg))));
  }
View Full Code Here

  public CodeBlock LOADCON(String arg){
    return add(new LoadCon(this, getConstantIndex(vf.string(arg))));
  }
 
  public CodeBlock LOADCON(IValue val){
    return add(new LoadCon(this, getConstantIndex(val)));
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions.LoadCon

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.