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

soot.JavaToJimpleBodyPack Maven / Gradle / Ivy

The newest version!
package soot;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 2003 Ondrej Lhotak
 * %%
 * 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.Map;

import soot.jimple.JimpleBody;
import soot.options.JJOptions;
import soot.options.Options;

/**
 * A wrapper object for a pack of optimizations. Provides chain-like operations, except that the key is the phase name. This
 * is a specific one for the very messy jb phase.
 */
public class JavaToJimpleBodyPack extends BodyPack {

  public JavaToJimpleBodyPack() {
    super("jj");
  }

  /**
   * Applies the transformations corresponding to the given options.
   */
  private void applyPhaseOptions(JimpleBody b, Map opts) {
    JJOptions options = new JJOptions(opts);

    if (options.use_original_names()) {
      PhaseOptions.v().setPhaseOptionIfUnset("jj.lns", "only-stack-locals");
    }

    final PackManager pacman = PackManager.v();
    final boolean time = Options.v().time();

    if (time) {
      Timers.v().splitTimer.start();
    }

    pacman.getTransform("jj.ls").apply(b);

    if (time) {
      Timers.v().splitTimer.end();
    }

    pacman.getTransform("jj.a").apply(b);
    pacman.getTransform("jj.ule").apply(b);
    pacman.getTransform("jj.ne").apply(b);

    if (time) {
      Timers.v().assignTimer.start();
    }

    pacman.getTransform("jj.tr").apply(b);

    if (time) {
      Timers.v().assignTimer.end();
    }

    if (options.use_original_names()) {
      pacman.getTransform("jj.ulp").apply(b);
    }
    pacman.getTransform("jj.lns").apply(b);
    pacman.getTransform("jj.cp").apply(b);
    pacman.getTransform("jj.dae").apply(b);
    pacman.getTransform("jj.cp-ule").apply(b);
    pacman.getTransform("jj.lp").apply(b);
    // pacman.getTransform( "jj.ct" ).apply( b );
    pacman.getTransform("jj.uce").apply(b);

    if (time) {
      Timers.v().stmtCount += b.getUnits().size();
    }
  }

  @Override
  protected void internalApply(Body b) {
    applyPhaseOptions((JimpleBody) b, PhaseOptions.v().getPhaseOptions(getPhaseName()));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy