All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.jimple.toolkits.scalar.MethodStaticnessCorrector Maven / Gradle / Ivy

package soot.jimple.toolkits.scalar;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1997 - 2018 Raja Vallée-Rai and others
 * %%
 * This program 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 program 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 General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.Iterator;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import soot.Body;
import soot.G;
import soot.Modifier;
import soot.Scene;
import soot.Singletons;
import soot.SootMethod;
import soot.Unit;
import soot.Value;
import soot.ValueBox;
import soot.jimple.InvokeExpr;
import soot.jimple.StaticInvokeExpr;
import soot.jimple.Stmt;

/**
 * Transformer that checks whether an instance method is used like a static method, and can easily be made static, i.e., does
 * not reference any field or method in the "this" object. In this case, we make the method static, so that it complies with
 * the invocations.
 *
 * Attention: This is not really a body transformer. It checks the current body, but modifies the invocation target.
 *
 * @author Steven Arzt
 *
 */
public class MethodStaticnessCorrector extends AbstractStaticnessCorrector {
  private static final Logger logger = LoggerFactory.getLogger(MethodStaticnessCorrector.class);

  public MethodStaticnessCorrector(Singletons.Global g) {
  }

  public static MethodStaticnessCorrector v() {
    return G.v().soot_jimple_toolkits_scalar_MethodStaticnessCorrector();
  }

  @Override
  protected void internalTransform(Body b, String phaseName, Map options) {
    for (Iterator unitIt = b.getUnits().snapshotIterator(); unitIt.hasNext();) {
      Unit u = unitIt.next();
      if (u instanceof Stmt) {
        Stmt s = (Stmt) u;
        if (s.containsInvokeExpr()) {
          InvokeExpr iexpr = s.getInvokeExpr();
          if (iexpr instanceof StaticInvokeExpr) {
            if (isClassLoaded(iexpr.getMethodRef().declaringClass())) {
              SootMethod target = Scene.v().grabMethod(iexpr.getMethodRef().getSignature());
              if (target != null && !target.isStatic()) {
                if (canBeMadeStatic(target)) {
                  // Remove the this-assignment to prevent
                  // 'this-assignment in a static method!' exception
                  target.getActiveBody().getUnits().remove(target.getActiveBody().getThisUnit());
                  target.setModifiers(target.getModifiers() | Modifier.STATIC);
                  logger.warn(target.getName() + " changed into a static method");
                }
              }
            }
          }
        }
      }
    }
  }

  /**
   * Checks whether the given method can be made static, i.e., does not reference the "this" object
   *
   * @param target
   *          The method to check
   * @return True if the given method can be made static, otherwise false
   */
  private boolean canBeMadeStatic(SootMethod target) {
    if (target.hasActiveBody()) {
      Body body = target.getActiveBody();
      Value thisLocal = body.getThisLocal();
      for (Unit u : body.getUnits()) {
        for (ValueBox vb : u.getUseBoxes()) {
          if (vb.getValue() == thisLocal) {
            return false;
          }
        }
      }
      return true;
    }
    return false;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy