WALA/com.ibm.wala.core/src/com/ibm/wala/ssa/SSAArrayLoadInstruction.java

90 lines
2.6 KiB
Java

/*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.ibm.wala.ssa;
import com.ibm.wala.types.TypeReference;
/**
* SSA instruction representing an array load.
*/
public abstract class SSAArrayLoadInstruction extends SSAArrayReferenceInstruction {
private final int result;
protected SSAArrayLoadInstruction(int iindex, int result, int arrayref, int index, TypeReference elementType) {
super(iindex, arrayref, index, elementType);
this.result = result;
}
@Override
public SSAInstruction copyForSSA(SSAInstructionFactory insts, int[] defs, int[] uses) throws IllegalArgumentException {
if (defs != null && defs.length == 0) {
throw new IllegalArgumentException("defs.length == 0");
}
if (uses != null && uses.length < 2) {
throw new IllegalArgumentException("uses.length < 2");
}
return insts.ArrayLoadInstruction(iindex, defs == null ? result : defs[0], uses == null ? getArrayRef() : uses[0],
uses == null ? getIndex() : uses[1], getElementType());
}
@Override
public String toString(SymbolTable symbolTable) {
return getValueString(symbolTable, result) + " = arrayload " + getValueString(symbolTable, getArrayRef()) + "["
+ getValueString(symbolTable, getIndex()) + "]";
}
/**
* @see com.ibm.wala.ssa.SSAInstruction#visit(IVisitor)
* @throws IllegalArgumentException
* if v is null
*/
@Override
public void visit(IVisitor v) {
if (v == null) {
throw new IllegalArgumentException("v is null");
}
v.visitArrayLoad(this);
}
/**
* @see com.ibm.wala.ssa.SSAInstruction#getDef()
*/
@Override
public boolean hasDef() {
return true;
}
@Override
public int getDef() {
return result;
}
@Override
public int getDef(int i) {
if (i != 0) {
throw new IllegalArgumentException("illegal i: " + i);
}
return result;
}
@Override
public int getNumberOfDefs() {
return 1;
}
@Override
public int hashCode() {
return 6311 * result ^ 2371 * getArrayRef() + getIndex();
}
}