soot.JastAddJ.LUBType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
/* This file was generated with JastAdd2 (http://jastadd.org) version R20130212 (r1031) */
package soot.JastAddJ;
import java.util.HashSet;
import java.io.File;
import java.util.*;
import beaver.*;
import java.util.ArrayList;
import java.util.zip.*;
import java.io.*;
import java.io.FileNotFoundException;
import java.util.Collection;
import soot.*;
import soot.util.*;
import soot.jimple.*;
import soot.coffi.ClassFile;
import soot.coffi.method_info;
import soot.coffi.CONSTANT_Utf8_info;
import soot.tagkit.SourceFileTag;
import soot.coffi.CoffiMethodSource;
/**
* @production LUBType : {@link ReferenceType} ::= {@link Modifiers} <ID:String> {@link BodyDecl}* TypeBound:{@link Access}*;
* @ast node
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/Generics.ast:46
*/
public class LUBType extends ReferenceType implements Cloneable {
/**
* @apilevel low-level
*/
public void flushCache() {
super.flushCache();
lub_computed = false;
lub_value = null;
subtype_TypeDecl_values = null;
getSootClassDecl_computed = false;
getSootClassDecl_value = null;
}
/**
* @apilevel internal
*/
public void flushCollectionCache() {
super.flushCollectionCache();
}
/**
* @apilevel internal
*/
@SuppressWarnings({"unchecked", "cast"})
public LUBType clone() throws CloneNotSupportedException {
LUBType node = (LUBType)super.clone();
node.lub_computed = false;
node.lub_value = null;
node.subtype_TypeDecl_values = null;
node.getSootClassDecl_computed = false;
node.getSootClassDecl_value = null;
node.in$Circle(false);
node.is$Final(false);
return node;
}
/**
* @apilevel internal
*/
@SuppressWarnings({"unchecked", "cast"})
public LUBType copy() {
try {
LUBType node = (LUBType) clone();
node.parent = null;
if(children != null)
node.children = (ASTNode[]) children.clone();
return node;
} catch (CloneNotSupportedException e) {
throw new Error("Error: clone not supported for " +
getClass().getName());
}
}
/**
* Create a deep copy of the AST subtree at this node.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
*/
@SuppressWarnings({"unchecked", "cast"})
public LUBType fullCopy() {
LUBType tree = (LUBType) copy();
if (children != null) {
for (int i = 0; i < children.length; ++i) {
ASTNode child = (ASTNode) children[i];
if(child != null) {
child = child.fullCopy();
tree.setChild(child, i);
}
}
}
return tree;
}
/**
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:668
*/
public static HashSet EC(ArrayList list) {
HashSet result = new HashSet();
boolean first = true;
for(Iterator iter = list.iterator(); iter.hasNext(); ) {
TypeDecl U = (TypeDecl)iter.next();
// erased supertype set of U
HashSet EST = LUBType.EST(U);
if(first) {
result.addAll(EST);
first = false;
}
else
result.retainAll(EST);
}
return result;
}
/**
* The minimal erased candidate set for Tj
* is MEC = {V | V in EC, forall W != V in EC, not W <: V}
* @return minimal erased candidate set for Tj
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:690
*/
public static HashSet MEC(ArrayList list) {
HashSet EC = LUBType.EC(list);
if(EC.size() == 1)
return EC;
HashSet MEC = new HashSet();
for(Iterator iter = EC.iterator(); iter.hasNext(); ) {
TypeDecl V = (TypeDecl)iter.next();
boolean keep = true;
for(Iterator i2 = EC.iterator(); i2.hasNext(); ) {
TypeDecl W = (TypeDecl)i2.next();
if(!(V instanceof TypeVariable) && V != W && W.instanceOf(V))
keep = false;
}
if(keep)
MEC.add(V);
}
return MEC;
}
/**
* relevant invocations of G, Inv(G)
* Inv(G) = {V | 1 <= i <= k, V in ST(Ui), V = G<...>}
* @return set of relevant invocations of G, Inv(G)
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:714
*/
public static HashSet Inv(TypeDecl G, ArrayList Us) {
HashSet result = new HashSet();
for(Iterator iter = Us.iterator(); iter.hasNext(); ) {
TypeDecl U = (TypeDecl)iter.next();
for(Iterator i2 = LUBType.ST(U).iterator(); i2.hasNext(); ) {
TypeDecl V = (TypeDecl)i2.next();
if(V instanceof ParTypeDecl && !V.isRawType() && ((ParTypeDecl)V).genericDecl() == G)
result.add(V);
}
}
return result;
}
/**
* @return least containing invocation (lci)
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:730
*/
public TypeDecl lci(HashSet set, TypeDecl G) {
ArrayList list = new ArrayList();
boolean first = true;
for(Iterator iter = set.iterator(); iter.hasNext(); ) {
ParTypeDecl decl = (ParTypeDecl)iter.next();
if(first) {
first = false;
for(int i = 0; i < decl.getNumArgument(); i++)
list.add(decl.getArgument(i).type());
}
else {
for(int i = 0; i < decl.getNumArgument(); i++)
list.set(i, lcta((TypeDecl)list.get(i), decl.getArgument(i).type()));
}
}
return ((GenericTypeDecl)G).lookupParTypeDecl(list);
}
/**
* least containing type arguments
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:751
*/
public TypeDecl lcta(TypeDecl X, TypeDecl Y) {
//System.err.println("Computing lcta for " + X.typeName() + " and " + Y.typeName());
if(!X.isWildcard() && !Y.isWildcard()) {
TypeDecl U = X;
TypeDecl V = Y;
return U == V ? U : lub(U, V).asWildcardExtends();
}
else if(!X.isWildcard() && Y instanceof WildcardExtendsType) {
TypeDecl U = X;
TypeDecl V = ((WildcardExtendsType)Y).getAccess().type();
return lub(U, V).asWildcardExtends();
}
else if(!X.isWildcard() && Y instanceof WildcardSuperType) {
TypeDecl U = X;
TypeDecl V = ((WildcardSuperType)Y).getAccess().type();
ArrayList bounds = new ArrayList();
bounds.add(U);
bounds.add(V);
return GLBTypeFactory.glb(bounds).asWildcardSuper();
}
else if(X instanceof WildcardExtendsType && Y instanceof WildcardExtendsType) {
TypeDecl U = ((WildcardExtendsType)X).getAccess().type();
TypeDecl V = ((WildcardExtendsType)Y).getAccess().type();
return lub(U, V).asWildcardExtends();
}
else if(X instanceof WildcardExtendsType && Y instanceof WildcardSuperType) {
TypeDecl U = ((WildcardExtendsType)X).getAccess().type();
TypeDecl V = ((WildcardSuperType)Y).getAccess().type();
return U == V ? U : U.typeWildcard();
}
else if(X instanceof WildcardSuperType && Y instanceof WildcardSuperType) {
TypeDecl U = ((WildcardSuperType)X).getAccess().type();
TypeDecl V = ((WildcardSuperType)Y).getAccess().type();
ArrayList bounds = new ArrayList();
bounds.add(U);
bounds.add(V);
return GLBTypeFactory.glb(bounds).asWildcardSuper();
}
else
throw new Error("lcta not defined for (" + X.getClass().getName() + ", " + Y.getClass().getName());
}
/**
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:793
*/
public TypeDecl lub(TypeDecl X, TypeDecl Y) {
ArrayList list = new ArrayList(2);
list.add(X);
list.add(Y);
return lub(list);
}
/**
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:800
*/
public TypeDecl lub(ArrayList list) {
return lookupLUBType(list);
}
/**
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:805
*/
public static HashSet EST(TypeDecl t) {
HashSet result = new HashSet();
for(Iterator iter = LUBType.ST(t).iterator(); iter.hasNext(); ) {
TypeDecl typeDecl = (TypeDecl)iter.next();
if(typeDecl instanceof TypeVariable)
result.add(typeDecl);
else
result.add(typeDecl.erasure());
}
return result;
}
/**
* @return supertype set of T
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:820
*/
public static HashSet ST(TypeDecl t) {
HashSet result = new HashSet();
LUBType.addSupertypes(result, t);
return result;
}
/**
* @ast method
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:826
*/
public static void addSupertypes(HashSet set, TypeDecl t) {
set.add(t);
if(t instanceof ClassDecl) {
ClassDecl type = (ClassDecl)t;
if(type.hasSuperclass()) {
addSupertypes(set, type.superclass());
}
for(int i = 0; i < type.getNumImplements(); i++) {
addSupertypes(set, type.getImplements(i).type());
}
}
else if(t instanceof InterfaceDecl) {
InterfaceDecl type = (InterfaceDecl)t;
for(int i = 0; i < type.getNumSuperInterfaceId(); i++) {
addSupertypes(set, type.getSuperInterfaceId(i).type());
}
if(type.getNumSuperInterfaceId() == 0)
set.add(type.typeObject());
}
else if(t instanceof TypeVariable) {
TypeVariable type = (TypeVariable)t;
for(int i = 0; i < type.getNumTypeBound(); i++) {
addSupertypes(set, type.getTypeBound(i).type());
}
if(type.getNumTypeBound() == 0)
set.add(type.typeObject());
}
else if(t instanceof LUBType) {
LUBType type = (LUBType)t;
for(int i = 0; i < type.getNumTypeBound(); i++) {
addSupertypes(set, type.getTypeBound(i).type());
}
if(type.getNumTypeBound() == 0)
set.add(type.typeObject());
}
else
throw new Error("Operation not supported for " + t.fullName() + ", " + t.getClass().getName());
}
/**
* @ast method
* @aspect LookupParTypeDecl
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/Generics.jrag:1444
*/
public HashSet implementedInterfaces(){
HashSet ret = new HashSet();
for (int i = 0; i < getNumTypeBound(); i++) {
ret.addAll(getTypeBound(i).type().implementedInterfaces());
}
return ret;
}
/**
* @ast method
*
*/
public LUBType() {
super();
}
/**
* Initializes the child array to the correct size.
* Initializes List and Opt nta children.
* @apilevel internal
* @ast method
* @ast method
*
*/
public void init$Children() {
children = new ASTNode[3];
setChild(new List(), 1);
setChild(new List(), 2);
}
/**
* @ast method
*
*/
public LUBType(Modifiers p0, String p1, List p2, List p3) {
setChild(p0, 0);
setID(p1);
setChild(p2, 1);
setChild(p3, 2);
}
/**
* @ast method
*
*/
public LUBType(Modifiers p0, beaver.Symbol p1, List p2, List p3) {
setChild(p0, 0);
setID(p1);
setChild(p2, 1);
setChild(p3, 2);
}
/**
* @apilevel low-level
* @ast method
*
*/
protected int numChildren() {
return 3;
}
/**
* @apilevel internal
* @ast method
*
*/
public boolean mayHaveRewrite() {
return false;
}
/**
* Replaces the Modifiers child.
* @param node The new node to replace the Modifiers child.
* @apilevel high-level
* @ast method
*
*/
public void setModifiers(Modifiers node) {
setChild(node, 0);
}
/**
* Retrieves the Modifiers child.
* @return The current node used as the Modifiers child.
* @apilevel high-level
* @ast method
*
*/
public Modifiers getModifiers() {
return (Modifiers)getChild(0);
}
/**
* Retrieves the Modifiers child.
* This method does not invoke AST transformations.
* @return The current node used as the Modifiers child.
* @apilevel low-level
* @ast method
*
*/
public Modifiers getModifiersNoTransform() {
return (Modifiers)getChildNoTransform(0);
}
/**
* Replaces the lexeme ID.
* @param value The new value for the lexeme ID.
* @apilevel high-level
* @ast method
*
*/
public void setID(String value) {
tokenString_ID = value;
}
/**
* JastAdd-internal setter for lexeme ID using the Beaver parser.
* @apilevel internal
* @ast method
*
*/
public void setID(beaver.Symbol symbol) {
if(symbol.value != null && !(symbol.value instanceof String))
throw new UnsupportedOperationException("setID is only valid for String lexemes");
tokenString_ID = (String)symbol.value;
IDstart = symbol.getStart();
IDend = symbol.getEnd();
}
/**
* Retrieves the value for the lexeme ID.
* @return The value for the lexeme ID.
* @apilevel high-level
* @ast method
*
*/
public String getID() {
return tokenString_ID != null ? tokenString_ID : "";
}
/**
* Replaces the BodyDecl list.
* @param list The new list node to be used as the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
public void setBodyDeclList(List list) {
setChild(list, 1);
}
/**
* Retrieves the number of children in the BodyDecl list.
* @return Number of children in the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
public int getNumBodyDecl() {
return getBodyDeclList().getNumChild();
}
/**
* Retrieves the number of children in the BodyDecl list.
* Calling this method will not trigger rewrites..
* @return Number of children in the BodyDecl list.
* @apilevel low-level
* @ast method
*
*/
public int getNumBodyDeclNoTransform() {
return getBodyDeclListNoTransform().getNumChildNoTransform();
}
/**
* Retrieves the element at index {@code i} in the BodyDecl list..
* @param i Index of the element to return.
* @return The element at position {@code i} in the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public BodyDecl getBodyDecl(int i) {
return (BodyDecl)getBodyDeclList().getChild(i);
}
/**
* Append an element to the BodyDecl list.
* @param node The element to append to the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
public void addBodyDecl(BodyDecl node) {
List list = (parent == null || state == null) ? getBodyDeclListNoTransform() : getBodyDeclList();
list.addChild(node);
}
/**
* @apilevel low-level
* @ast method
*
*/
public void addBodyDeclNoTransform(BodyDecl node) {
List list = getBodyDeclListNoTransform();
list.addChild(node);
}
/**
* Replaces the BodyDecl list element at index {@code i} with the new node {@code node}.
* @param node The new node to replace the old list element.
* @param i The list index of the node to be replaced.
* @apilevel high-level
* @ast method
*
*/
public void setBodyDecl(BodyDecl node, int i) {
List list = getBodyDeclList();
list.setChild(node, i);
}
/**
* Retrieves the BodyDecl list.
* @return The node representing the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
public List getBodyDecls() {
return getBodyDeclList();
}
/**
* Retrieves the BodyDecl list.
* This method does not invoke AST transformations.
* @return The node representing the BodyDecl list.
* @apilevel low-level
* @ast method
*
*/
public List getBodyDeclsNoTransform() {
return getBodyDeclListNoTransform();
}
/**
* Retrieves the BodyDecl list.
* @return The node representing the BodyDecl list.
* @apilevel high-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public List getBodyDeclList() {
List list = (List)getChild(1);
list.getNumChild();
return list;
}
/**
* Retrieves the BodyDecl list.
* This method does not invoke AST transformations.
* @return The node representing the BodyDecl list.
* @apilevel low-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public List getBodyDeclListNoTransform() {
return (List)getChildNoTransform(1);
}
/**
* Replaces the TypeBound list.
* @param list The new list node to be used as the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
public void setTypeBoundList(List list) {
setChild(list, 2);
}
/**
* Retrieves the number of children in the TypeBound list.
* @return Number of children in the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
public int getNumTypeBound() {
return getTypeBoundList().getNumChild();
}
/**
* Retrieves the number of children in the TypeBound list.
* Calling this method will not trigger rewrites..
* @return Number of children in the TypeBound list.
* @apilevel low-level
* @ast method
*
*/
public int getNumTypeBoundNoTransform() {
return getTypeBoundListNoTransform().getNumChildNoTransform();
}
/**
* Retrieves the element at index {@code i} in the TypeBound list..
* @param i Index of the element to return.
* @return The element at position {@code i} in the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public Access getTypeBound(int i) {
return (Access)getTypeBoundList().getChild(i);
}
/**
* Append an element to the TypeBound list.
* @param node The element to append to the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
public void addTypeBound(Access node) {
List list = (parent == null || state == null) ? getTypeBoundListNoTransform() : getTypeBoundList();
list.addChild(node);
}
/**
* @apilevel low-level
* @ast method
*
*/
public void addTypeBoundNoTransform(Access node) {
List list = getTypeBoundListNoTransform();
list.addChild(node);
}
/**
* Replaces the TypeBound list element at index {@code i} with the new node {@code node}.
* @param node The new node to replace the old list element.
* @param i The list index of the node to be replaced.
* @apilevel high-level
* @ast method
*
*/
public void setTypeBound(Access node, int i) {
List list = getTypeBoundList();
list.setChild(node, i);
}
/**
* Retrieves the TypeBound list.
* @return The node representing the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
public List getTypeBounds() {
return getTypeBoundList();
}
/**
* Retrieves the TypeBound list.
* This method does not invoke AST transformations.
* @return The node representing the TypeBound list.
* @apilevel low-level
* @ast method
*
*/
public List getTypeBoundsNoTransform() {
return getTypeBoundListNoTransform();
}
/**
* Retrieves the TypeBound list.
* @return The node representing the TypeBound list.
* @apilevel high-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public List getTypeBoundList() {
List list = (List)getChild(2);
list.getNumChild();
return list;
}
/**
* Retrieves the TypeBound list.
* This method does not invoke AST transformations.
* @return The node representing the TypeBound list.
* @apilevel low-level
* @ast method
*
*/
@SuppressWarnings({"unchecked", "cast"})
public List getTypeBoundListNoTransform() {
return (List)getChildNoTransform(2);
}
/**
* @apilevel internal
*/
protected boolean lub_computed = false;
/**
* @apilevel internal
*/
protected TypeDecl lub_value;
/**
* @attribute syn
* @aspect GenericMethodsInference
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericMethodsInference.jrag:650
*/
@SuppressWarnings({"unchecked", "cast"})
public TypeDecl lub() {
if(lub_computed) {
return lub_value;
}
ASTNode$State state = state();
int num = state.boundariesCrossed;
boolean isFinal = this.is$Final();
lub_value = lub_compute();
if(isFinal && num == state().boundariesCrossed) lub_computed = true;
return lub_value;
}
/**
* @apilevel internal
*/
private TypeDecl lub_compute() {
ArrayList list = new ArrayList();
for(int i = 0; i < getNumTypeBound(); i++)
list.add(getTypeBound(i).type());
ArrayList bounds = new ArrayList();
for(Iterator iter = LUBType.MEC(list).iterator(); iter.hasNext(); ) {
TypeDecl W = (TypeDecl)iter.next();
TypeDecl C = W instanceof GenericTypeDecl ? lci(Inv(W, list), W) : W;
bounds.add(C);
}
if(bounds.size() == 1)
return (TypeDecl)bounds.iterator().next();
return lookupLUBType(bounds);
}
/**
* @attribute syn
* @aspect LookupParTypeDecl
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/Generics.jrag:1434
*/
public String typeName() {
ASTNode$State state = state();
try {
if(getNumTypeBound() == 0)
return "";
StringBuffer s = new StringBuffer();
s.append(getTypeBound(0).type().typeName());
for(int i = 1; i < getNumTypeBound(); i++)
s.append(" & " + getTypeBound(i).type().typeName());
return s.toString();
}
finally {
}
}
protected java.util.Map subtype_TypeDecl_values;
/**
* @attribute syn
* @aspect GenericsSubtype
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericsSubtype.jrag:346
*/
@SuppressWarnings({"unchecked", "cast"})
public boolean subtype(TypeDecl type) {
Object _parameters = type;
if(subtype_TypeDecl_values == null) subtype_TypeDecl_values = new java.util.HashMap(4);
ASTNode$State.CircularValue _value;
if(subtype_TypeDecl_values.containsKey(_parameters)) {
Object _o = subtype_TypeDecl_values.get(_parameters);
if(!(_o instanceof ASTNode$State.CircularValue)) {
return ((Boolean)_o).booleanValue();
}
else
_value = (ASTNode$State.CircularValue)_o;
}
else {
_value = new ASTNode$State.CircularValue();
subtype_TypeDecl_values.put(_parameters, _value);
_value.value = Boolean.valueOf(true);
}
ASTNode$State state = state();
if (!state.IN_CIRCLE) {
state.IN_CIRCLE = true;
int num = state.boundariesCrossed;
boolean isFinal = this.is$Final();
boolean new_subtype_TypeDecl_value;
do {
_value.visited = new Integer(state.CIRCLE_INDEX);
state.CHANGE = false;
new_subtype_TypeDecl_value = subtype_compute(type);
if (new_subtype_TypeDecl_value!=((Boolean)_value.value).booleanValue()) {
state.CHANGE = true;
_value.value = Boolean.valueOf(new_subtype_TypeDecl_value);
}
state.CIRCLE_INDEX++;
} while (state.CHANGE);
if(isFinal && num == state().boundariesCrossed) {
subtype_TypeDecl_values.put(_parameters, new_subtype_TypeDecl_value);
}
else {
subtype_TypeDecl_values.remove(_parameters);
state.RESET_CYCLE = true;
subtype_compute(type);
state.RESET_CYCLE = false;
}
state.IN_CIRCLE = false;
return new_subtype_TypeDecl_value;
}
if(!new Integer(state.CIRCLE_INDEX).equals(_value.visited)) {
_value.visited = new Integer(state.CIRCLE_INDEX);
boolean new_subtype_TypeDecl_value = subtype_compute(type);
if (state.RESET_CYCLE) {
subtype_TypeDecl_values.remove(_parameters);
}
else if (new_subtype_TypeDecl_value!=((Boolean)_value.value).booleanValue()) {
state.CHANGE = true;
_value.value = new_subtype_TypeDecl_value;
}
return new_subtype_TypeDecl_value;
}
return ((Boolean)_value.value).booleanValue();
}
/**
* @apilevel internal
*/
private boolean subtype_compute(TypeDecl type) { return type.supertypeLUBType(this); }
/**
* @attribute syn
* @aspect GenericsSubtype
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericsSubtype.jrag:421
*/
public boolean supertypeClassDecl(ClassDecl type) {
ASTNode$State state = state();
try { return type.subtype(lub()); }
finally {
}
}
/**
* @attribute syn
* @aspect GenericsSubtype
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericsSubtype.jrag:437
*/
public boolean supertypeInterfaceDecl(InterfaceDecl type) {
ASTNode$State state = state();
try { return type.subtype(lub()); }
finally {
}
}
/**
* @attribute syn
* @aspect GenericsSubtype
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/GenericsSubtype.jrag:366
*/
public boolean supertypeGLBType(GLBType type) {
ASTNode$State state = state();
try {
ArrayList bounds = new ArrayList(getNumTypeBound());
for (int i = 0; i < getNumTypeBound(); i++) {
bounds.add(getTypeBound(i));
}
return type == lookupGLBType(bounds);
}
finally {
}
}
/**
* @apilevel internal
*/
protected boolean getSootClassDecl_computed = false;
/**
* @apilevel internal
*/
protected SootClass getSootClassDecl_value;
/**
* @attribute syn
* @aspect GenericsCodegen
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddExtensions/Jimple1.5Backend/GenericsCodegen.jrag:422
*/
@SuppressWarnings({"unchecked", "cast"})
public SootClass getSootClassDecl() {
if(getSootClassDecl_computed) {
return getSootClassDecl_value;
}
ASTNode$State state = state();
int num = state.boundariesCrossed;
boolean isFinal = this.is$Final();
getSootClassDecl_value = getSootClassDecl_compute();
if(isFinal && num == state().boundariesCrossed) getSootClassDecl_computed = true;
return getSootClassDecl_value;
}
/**
* @apilevel internal
*/
private SootClass getSootClassDecl_compute() { return typeObject().getSootClassDecl(); }
/**
* @apilevel internal
*/
public ASTNode rewriteTo() {
return super.rewriteTo();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy