package soot.JastAddJ;
import java.util.HashSet;
import java.util.LinkedHashSet;
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;
/**
* @ast node
* @declaredat java.ast:25
*/
public class SuperAccess extends Access implements Cloneable {
/**
* @apilevel low-level
*/
public void flushCache() {
super.flushCache();
decl_computed = false;
decl_value = null;
type_computed = false;
type_value = null;
}
/**
* @apilevel internal
*/
public void flushCollectionCache() {
super.flushCollectionCache();
}
/**
* @apilevel internal
*/
@SuppressWarnings({"unchecked", "cast"})
public SuperAccess clone() throws CloneNotSupportedException {
SuperAccess node = (SuperAccess)super.clone();
node.decl_computed = false;
node.decl_value = null;
node.type_computed = false;
node.type_value = null;
node.in$Circle(false);
node.is$Final(false);
return node;
}
/**
* @apilevel internal
*/
@SuppressWarnings({"unchecked", "cast"})
public SuperAccess copy() {
try {
SuperAccess node = (SuperAccess)clone();
if(children != null) node.children = (ASTNode[])children.clone();
return node;
} catch (CloneNotSupportedException e) {
}
System.err.println("Error: Could not clone node of type " + getClass().getName() + "!");
return null;
}
/**
* @apilevel low-level
*/
@SuppressWarnings({"unchecked", "cast"})
public SuperAccess fullCopy() {
SuperAccess res = (SuperAccess)copy();
for(int i = 0; i < getNumChildNoTransform(); i++) {
ASTNode node = getChildNoTransform(i);
if(node != null) node = node.fullCopy();
res.setChild(node, i);
}
return res;
}
/**
* @ast method
* @aspect PrettyPrint
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/PrettyPrint.jadd:506
*/
public void toString(StringBuffer s) {
s.append("super");
}
/**
* @ast method
* @aspect TypeHierarchyCheck
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/TypeHierarchyCheck.jrag:87
*/
public void nameCheck() {
if(isQualified()) {
if(!hostType().isInnerTypeOf(decl()) && hostType() != decl())
error("qualified super must name an enclosing type");
if(inStaticContext()) {
error("*** Qualified super may not occur in static context");
}
}
// 8.8.5.1
if(inExplicitConstructorInvocation() && hostType().instanceOf(decl().hostType()) )
error("super may not be accessed in an explicit constructor invocation");
// 8.4.3.2
if(inStaticContext())
error("super may not be accessed in a static context");
}
/**
* @ast method
* @aspect Expressions
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddExtensions/JimpleBackend/Expressions.jrag:424
*/
public soot.Value eval(Body b) {
return emitThis(b, decl());
}
/**
* @ast method
* @declaredat java.ast:1
*/
public SuperAccess() {
super();
}
/**
* @ast method
* @declaredat java.ast:7
*/
public SuperAccess(String p0) {
setID(p0);
}
/**
* @ast method
* @declaredat java.ast:10
*/
public SuperAccess(beaver.Symbol p0) {
setID(p0);
}
/**
* @apilevel low-level
* @ast method
* @declaredat java.ast:16
*/
protected int numChildren() {
return 0;
}
/**
* @apilevel internal
* @ast method
* @declaredat java.ast:22
*/
public boolean mayHaveRewrite() {
return false;
}
/**
* Setter for lexeme ID
* @apilevel high-level
* @ast method
* @declaredat java.ast:5
*/
public void setID(String value) {
tokenString_ID = value;
}
/** * @apilevel internal * @ast method
* @declaredat java.ast:8
*/
/** * @apilevel internal */ protected String tokenString_ID;
/**
* @ast method
* @declaredat java.ast:9
*/
public int IDstart;
/**
* @ast method
* @declaredat java.ast:10
*/
public int IDend;
/**
* @ast method
* @declaredat java.ast:11
*/
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();
}
/**
* Getter for lexeme ID
* @apilevel high-level
* @ast method
* @declaredat java.ast:22
*/
public String getID() {
return tokenString_ID != null ? tokenString_ID : "";
}
/**
* @ast method
* @aspect TypeScopePropagation
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/LookupType.jrag:163
*/
private TypeDecl refined_TypeScopePropagation_SuperAccess_decl()
{ return isQualified() ? qualifier().type() : hostType(); }
/**
* @attribute syn
* @aspect TypeScopePropagation
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/LookupType.jrag:161
*/
@SuppressWarnings({"unchecked", "cast"})
public SimpleSet decls() {
ASTNode$State state = state();
SimpleSet decls_value = decls_compute();
return decls_value;
}
/**
* @apilevel internal
*/
private SimpleSet decls_compute() { return SimpleSet.emptySet; }
/**
* @apilevel internal
*/
protected boolean decl_computed = false;
/**
* @apilevel internal
*/
protected TypeDecl decl_value;
/**
* @attribute syn
* @aspect GenericsTypeAnalysis
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.5Frontend/Generics.jrag:299
*/
@SuppressWarnings({"unchecked", "cast"})
public TypeDecl decl() {
if(decl_computed) {
return decl_value;
}
ASTNode$State state = state();
int num = state.boundariesCrossed;
boolean isFinal = this.is$Final();
decl_value = decl_compute();
if(isFinal && num == state().boundariesCrossed) decl_computed = true;
return decl_value;
}
/**
* @apilevel internal
*/
private TypeDecl decl_compute() {
TypeDecl typeDecl = refined_TypeScopePropagation_SuperAccess_decl();
if(typeDecl instanceof ParTypeDecl)
typeDecl = ((ParTypeDecl)typeDecl).genericDecl();
return typeDecl;
}
/**
* @attribute syn
* @aspect AccessTypes
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/ResolveAmbiguousNames.jrag:27
*/
@SuppressWarnings({"unchecked", "cast"})
public boolean isSuperAccess() {
ASTNode$State state = state();
boolean isSuperAccess_value = isSuperAccess_compute();
return isSuperAccess_value;
}
/**
* @apilevel internal
*/
private boolean isSuperAccess_compute() { return true; }
/**
* @attribute syn
* @aspect SyntacticClassification
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/SyntacticClassification.jrag:93
*/
@SuppressWarnings({"unchecked", "cast"})
public NameType predNameType() {
ASTNode$State state = state();
NameType predNameType_value = predNameType_compute();
return predNameType_value;
}
/**
* @apilevel internal
*/
private NameType predNameType_compute() { return NameType.TYPE_NAME; }
/**
* @apilevel internal
*/
protected boolean type_computed = false;
/**
* @apilevel internal
*/
protected TypeDecl type_value;
/**
* @attribute syn
* @aspect TypeAnalysis
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/TypeAnalysis.jrag:288
*/
@SuppressWarnings({"unchecked", "cast"})
public TypeDecl type() {
if(type_computed) {
return type_value;
}
ASTNode$State state = state();
int num = state.boundariesCrossed;
boolean isFinal = this.is$Final();
type_value = type_compute();
if(isFinal && num == state().boundariesCrossed) type_computed = true;
return type_value;
}
/**
* @apilevel internal
*/
private TypeDecl type_compute() {
TypeDecl typeDecl = decl();
if(!typeDecl.isClassDecl())
return unknownType();
ClassDecl classDecl = (ClassDecl)typeDecl;
if(!classDecl.hasSuperclass())
return unknownType();
return classDecl.superclass();
}
/**
* @attribute inh
* @aspect TypeHierarchyCheck
* @declaredat /Users/eric/Documents/workspaces/clara-soot/JastAddJ/Java1.4Frontend/TypeHierarchyCheck.jrag:124
*/
@SuppressWarnings({"unchecked", "cast"})
public boolean inExplicitConstructorInvocation() {
ASTNode$State state = state();
boolean inExplicitConstructorInvocation_value = getParent().Define_boolean_inExplicitConstructorInvocation(this, null);
return inExplicitConstructorInvocation_value;
}
/**
* @apilevel internal
*/
public ASTNode rewriteTo() {
return super.rewriteTo();
}
}