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

soot.dava.StaticDefinitionFinder Maven / Gradle / Ivy

package soot.dava;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 2005 Nomair A. Naeem
 * %%
 * 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 soot.SootField;
import soot.SootMethod;
import soot.Value;
import soot.dava.toolkits.base.AST.analysis.DepthFirstAdapter;
import soot.jimple.DefinitionStmt;
import soot.jimple.FieldRef;

public class StaticDefinitionFinder extends DepthFirstAdapter {

  SootMethod method;
  boolean finalFieldDefined;

  public StaticDefinitionFinder(SootMethod method) {
    this.method = method;
    finalFieldDefined = false;
  }

  public StaticDefinitionFinder(boolean verbose, SootMethod method) {
    super(verbose);
    this.method = method;
    finalFieldDefined = false;
  }

  public void inDefinitionStmt(DefinitionStmt s) {
    Value leftOp = s.getLeftOp();
    if (leftOp instanceof FieldRef) {
      // System.out.println("leftOp is a fieldRef:"+s);
      SootField field = ((FieldRef) leftOp).getField();
      // check if this is a final field
      if (field.isFinal()) {
        // System.out.println("the field is a final variable");
        finalFieldDefined = true;
      }
    }

  }

  public boolean anyFinalFieldDefined() {
    return finalFieldDefined;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy