/* LLRegOffsOperand.java (c) 2008-2016 Edward Swartz All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html */ package v9t9.tools.asm.operand.ll; import ejs.base.utils.HexUtils; import v9t9.common.asm.IMachineOperand; import v9t9.common.asm.IOperand; import v9t9.common.asm.ResolveException; import v9t9.tools.asm.operand.hl.RegOffsOperand; /** * @author Ed * */ public class LLRegOffsOperand extends LLOperand implements IOperand { int register; int offset; public LLRegOffsOperand(RegOffsOperand original, int reg, int offset) { super(original); setRegister(reg); setOffset(offset); } @Override public String toString() { return "@>" + HexUtils.toHex4(offset) + "(R" + register + ")"; } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + offset; result = prime * result + register; return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; LLRegOffsOperand other = (LLRegOffsOperand) obj; if (offset != other.offset) return false; if (register != other.register) return false; return true; } @Override public boolean isMemory() { return true; } @Override public boolean isRegister() { return false; } /* (non-Javadoc) * @see v9t9.tools.asm.operand.hl.AssemblerOperand#isConst() */ @Override public boolean isConst() { return false; } public int getRegister() { return register; } public void setRegister(int number) { this.register = number; } public int getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } @Override public boolean hasImmediate() { return true; } @Override public int getSize() { // don't pre-optimize //return offset != 0 ? 2 : 0; return 2; } @Override public int getImmediate() { return offset; } @Override public IMachineOperand createMachineOperand(IAsmMachineOperandFactory opFactory) throws ResolveException { return opFactory.createRegOffsOperand(this); } }