/* * Copyright (c) 2009-2012 Panxiaobo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.googlecode.dex2jar.ir; import java.util.ArrayList; import java.util.List; import com.googlecode.dex2jar.ir.expr.Local; import com.googlecode.dex2jar.ir.stmt.LabelStmt; import com.googlecode.dex2jar.ir.stmt.StmtList; /** * * @author <a href="mailto:pxb1988@gmail.com">Panxiaobo</a> * @version $Rev$ */ public class IrMethod { public boolean isStatic; public String[] args; public List<Local> locals = new ArrayList<Local>(); public String name; public String owner; public String ret; public StmtList stmts = new StmtList(); public List<Trap> traps = new ArrayList<Trap>(); public List<LocalVar> vars = new ArrayList<LocalVar>(); public List<LabelStmt> phiLabels; public IrMethod clone() { IrMethod n = new IrMethod(); LabelAndLocalMapper mapper = new LabelAndLocalMapper(); n.name = name; n.args = args; n.isStatic = isStatic; n.owner = owner; n.ret = ret; n.stmts = stmts.clone(mapper); for (Trap trap : traps) { n.traps.add(trap.clone(mapper)); } for (LocalVar var : vars) { n.vars.add(var.clone(mapper)); } if (phiLabels != null) { List<LabelStmt> nPhiLabels = new ArrayList<>(phiLabels.size()); for (LabelStmt labelStmt : phiLabels) { nPhiLabels.add(labelStmt.clone(mapper)); } n.phiLabels = nPhiLabels; } for(Local local:locals){ n.locals.add((Local) local.clone(mapper)); } return n; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("// ").append(this.owner).append("\n"); if (isStatic) { sb.append(" static "); } sb.append(ret == null ? null : Util.toShortClassName(ret)).append(' ').append(this.name).append('('); if (args != null) { boolean first = true; for (String arg : args) { if (first) { first = false; } else { sb.append(','); } sb.append(Util.toShortClassName(arg)); } } sb.append(") {\n\n").append(stmts).append("\n"); if (traps.size() > 0 || vars.size() > 0) { sb.append("=============\n"); for (Trap trap : traps) { sb.append(trap).append('\n'); } for (LocalVar var : vars) { sb.append(var).append('\n'); } } sb.append("}"); return sb.toString(); } }