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

soot.baf.internal.BafLocal Maven / Gradle / Ivy

package soot.baf.internal;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1999 Patrick Lam, Patrick Pominville and Raja Vallee-Rai
 * %%
 * 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.Type;
import soot.UnitPrinter;
import soot.ValueBox;
import soot.util.Switch;

public class BafLocal implements Local {
  String name;
  Type type;

  int fixedHashCode;
  boolean isHashCodeChosen;
  private Local originalLocal;

  public BafLocal(String name, Type t) {
    this.name = name;
    this.type = t;
  }

  /* JimpleLocals are *NOT* equivalent to Baf Locals! */
  @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() {
    return name.hashCode() * 101 + type.hashCode() * 17;
  }

  @Override
  public Object clone() {
    BafLocal baf = new BafLocal(name, type);
    baf.originalLocal = originalLocal;
    return baf;
  }

  public Local getOriginalLocal() {
    return originalLocal;
  }

  public void setOriginalLocal(Local l) {
    originalLocal = l;
  }

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

  @Override
  public void setName(String name) {
    this.name = name;
  }

  @Override
  public Type getType() {
    return type;
  }

  @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 List getUseBoxes() {
    return Collections.emptyList();
  }

  @Override
  public void apply(Switch s) {
    throw new RuntimeException("invalid case switch");
  }

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

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

  private int number = 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy