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

soot.jimple.internal.JimpleLocal Maven / Gradle / Ivy

package soot.jimple.internal;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1999 Patrick Lam
 * %%
 * 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.Collections;
import java.util.List;

import soot.Local;
import soot.Scene;
import soot.Type;
import soot.Unit;
import soot.UnitPrinter;
import soot.ValueBox;
import soot.baf.Baf;
import soot.jimple.ConvertToBaf;
import soot.jimple.JimpleToBafContext;
import soot.jimple.JimpleValueSwitch;
import soot.util.ArrayNumberer;
import soot.util.Switch;

public class JimpleLocal implements Local, ConvertToBaf {
  protected String name;
  Type type;

  /** Constructs a JimpleLocal of the given name and type. */
  public JimpleLocal(String name, Type type) {
    setName(name);
    setType(type);
    ArrayNumberer numberer = Scene.v().getLocalNumberer();
    if (numberer != null) {
      numberer.add(this);
    }
  }

  /** Returns true if the given object is structurally equal to this one. */
  @Override
  public boolean equivTo(Object o) {
    return this.equals(o);
  }

  /**
   * Returns a hash code for this object, consistent with structural equality.
   */
  @Override
  public int equivHashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + ((name == null) ? 0 : name.hashCode());
    result = prime * result + ((type == null) ? 0 : type.hashCode());
    return result;
  }

  /** Returns a clone of the current JimpleLocal. */
  @Override
  public Object clone() {
    // do not intern the name again
    JimpleLocal local = new JimpleLocal(null, type);
    local.name = name;
    return local;
  }

  /** Returns the name of this object. */
  @Override
  public String getName() {
    return name;
  }

  /** Sets the name of this object as given. */
  @Override
  public void setName(String name) {
    this.name = (name == null) ? null : name.intern();
  }

  /** Returns the type of this local. */
  @Override
  public Type getType() {
    return type;
  }

  /** Sets the type of this local. */
  @Override
  public void setType(Type t) {
    this.type = t;
  }

  @Override
  public String toString() {
    return getName();
  }

  @Override
  public void toString(UnitPrinter up) {
    up.local(this);
  }

  @Override
  public final List getUseBoxes() {
    return Collections.emptyList();
  }

  @Override
  public void apply(Switch sw) {
    ((JimpleValueSwitch) sw).caseLocal(this);
  }

  @Override
  public void convertToBaf(JimpleToBafContext context, List out) {
    Unit u = Baf.v().newLoadInst(getType(), context.getBafLocalOfJimpleLocal(this));
    u.addAllTagsOf(context.getCurrentUnit());
    out.add(u);
  }

  @Override
  public final int getNumber() {
    return number;
  }

  @Override
  public void setNumber(int number) {
    this.number = number;
  }

  private volatile int number = 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy