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

soot.jimple.spark.sets.PointsToBitVector Maven / Gradle / Ivy

package soot.jimple.spark.sets;

/*-
 * #%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 soot.jimple.spark.pag.Node;
import soot.util.BitVector;

/**
 * An extension of a bit vector which is convenient to use to represent points-to sets. Used by SharedHybridSet.
 *
 * We have to extend soot.util.BitVector rather than java.util.BitSet because PointsToSetInternal.getBitMask() returns a
 * soot.util.BitVector. which must be combined with other bit vectors.
 *
 * @author Adam Richard
 *
 */
public class PointsToBitVector extends BitVector {
  public PointsToBitVector(int size) {
    super(size);
  }

  /**
   * Adds n to this
   *
   * @return Whether this actually changed
   */
  public boolean add(Node n) {
    int num = n.getNumber();
    if (!get(num))
    // if it's not already in this
    {
      set(num);
      return true;
    } else {
      return false;
    }
  }

  public boolean contains(Node n) {
    // Ripped from the HybridPointsToSet implementation
    // I'm assuming `number' in Node is the location of the node out of all
    // possible nodes.
    return get(n.getNumber());
  }

  /**
   * Adds the Nodes in arr to this bitvector, adding at most size Nodes.
   *
   * @return The number of new nodes actually added.
   */
  /*
   * public int add(Node[] arr, int size) { //assert size <= arr.length; int retVal = 0; for (int i = 0; i < size; ++i) { int
   * num = arr[i].getNumber(); if (!get(num)) { set(num); ++retVal; } } return retVal; }
   */

  /** Returns true iff other is a subset of this bitvector */
  public boolean isSubsetOf(PointsToBitVector other) {
    // B is a subset of A iff the "and" of A and B gives A.
    BitVector andResult = BitVector.and(this, other); // Don't want to modify either one
    return andResult.equals(this);
  }

  /**
   * @return number of 1 bits in the bitset. Call this sparingly because it's probably expensive.
   */

  /*
   * Old algorithm: public int cardinality() { int retVal = 0; BitSetIterator it = iterator(); while (it.hasNext()) {
   * it.next(); ++retVal; } return retVal; }
   */

  public PointsToBitVector(PointsToBitVector other) {
    super(other);
    /*
     * PointsToBitVector retVal = (PointsToBitVector)(other.clone()); return retVal;
     */
  }

  // Reference counting:
  private int refCount = 0;

  public void incRefCount() {
    ++refCount;
    // An estimate of how much sharing is going on (but it should be 1 less
    // than the printed value in some cases, because incRefCount is called
    // for an intermediate result in nativeAddAll.
    // System.out.println("Reference count = " + refCount);
  }

  public void decRefCount() {
    --refCount;
  }

  public boolean unused() {
    return refCount == 0;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy