/* Soot - a J*va Optimization Framework * Copyright (C) 1999 Patrick Lam * Copyright (C) 2004 Ondrej Lhotak * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* * Modified by the Sable Research Group and others 1997-1999. * See the 'credits' file distributed with Soot for the complete list of * contributors. (Soot is distributed at http://www.sable.mcgill.ca/soot) */ package soot.jimple.internal; import soot.*; import soot.jimple.*; import soot.util.*; import java.util.*; import soot.tagkit.*; public abstract class AbstractVirtualInvokeExpr extends AbstractInstanceInvokeExpr implements VirtualInvokeExpr { protected AbstractVirtualInvokeExpr(ValueBox baseBox, SootMethodRef methodRef, ValueBox[] argBoxes) { if( methodRef.isStatic() ) throw new RuntimeException("wrong static-ness"); this.baseBox = baseBox; this.methodRef = methodRef; this.argBoxes = argBoxes; } public boolean equivTo(Object o) { if (o instanceof AbstractVirtualInvokeExpr) { AbstractVirtualInvokeExpr ie = (AbstractVirtualInvokeExpr)o; if (!(baseBox.getValue().equivTo(ie.baseBox.getValue()) && getMethod().equals(ie.getMethod()) && argBoxes.length == ie.argBoxes.length)) return false; int i = 0; for (ValueBox element : argBoxes) { if (!(element.getValue().equivTo(ie.getArg(i)))) return false; i++; } return true; } return false; } /** Returns a hash code for this object, consistent with structural equality. */ public int equivHashCode() { return baseBox.getValue().equivHashCode() * 101 + getMethod().equivHashCode() * 17; } public abstract Object clone(); public void apply(Switch sw) { ((ExprSwitch) sw).caseVirtualInvokeExpr(this); } public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append(Jimple.VIRTUALINVOKE + " " + baseBox.getValue().toString() + "." + methodRef.getSignature() + "("); for(int i = 0; i < argBoxes.length; i++) { if(i != 0) buffer.append(", "); buffer.append(argBoxes[i].getValue().toString()); } buffer.append(")"); return buffer.toString(); } public void toString(UnitPrinter up) { up.literal(Jimple.VIRTUALINVOKE); up.literal(" "); baseBox.toString(up); up.literal("."); up.methodRef(methodRef); up.literal("("); for(int i = 0; i < argBoxes.length; i++) { if(i != 0) up.literal(", "); argBoxes[i].toString(up); } up.literal(")"); } }