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

soot.jimple.toolkits.pointer.FullObjectSet Maven / Gradle / Ivy

package soot.jimple.toolkits.pointer;

/*-
 * #%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.Collections;
import java.util.Set;

import soot.AnySubType;
import soot.G;
import soot.PointsToSet;
import soot.RefType;
import soot.Singletons;
import soot.Type;
import soot.jimple.ClassConstant;

public class FullObjectSet extends Union {
  public FullObjectSet(Singletons.Global g) {
    this(RefType.v("java.lang.Object"));
  }

  public static FullObjectSet v() {
    return G.v().soot_jimple_toolkits_pointer_FullObjectSet();
  }

  public static FullObjectSet v(RefType t) {
    if (t.getClassName().equals("java.lang.Object")) {
      return v();
    }
    return new FullObjectSet(t);
  }

  private final Set types;

  private FullObjectSet(RefType declaredType) {
    Type type = AnySubType.v(declaredType);
    types = Collections.singleton(type);
  }

  public Type type() {
    return types.iterator().next();
  }

  /** Returns true if this set contains no run-time objects. */
  public boolean isEmpty() {
    return false;
  }

  /** Returns true if this set is a subset of other. */
  public boolean hasNonEmptyIntersection(PointsToSet other) {
    return other != null;
  }

  /** Set of all possible run-time types of objects in the set. */
  @Override
  public Set possibleTypes() {
    return types;
  }

  /**
   * Adds all objects in s into this union of sets, returning true if this union was changed.
   */
  public boolean addAll(PointsToSet s) {
    return false;
  }

  public Set possibleStringConstants() {
    return null;
  }

  public Set possibleClassConstants() {
    return null;
  }

  /**
   * {@inheritDoc}
   */
  public int depth() {
    return 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy