Package wyvern.targets.Common.wyvernIL.IL.Imm

Examples of wyvern.targets.Common.wyvernIL.IL.Imm.Operand


    return val;
  }

  @Override
  public BytecodeValue visit(BinOp binOp) {
    Operand l = binOp.getL();
    Operand r = binOp.getR();
    String op = binOp.getOp();
    BytecodeValue left = l.accept(opVisitor);
    BytecodeValue right = r.accept(opVisitor);
    return left.doInvoke(right, op);
  }
View Full Code Here


    return fun.run(unpacked);
  }

  @Override
  public BytecodeValue visit(Immediate immediate) {
    Operand inner = immediate.getInner();
    return inner.accept(new BytecodeOperandVisitor(context));
  }
View Full Code Here

TOP

Related Classes of wyvern.targets.Common.wyvernIL.IL.Imm.Operand

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.