WALA/com.ibm.wala.core/src/com/ibm/wala/ipa/callgraph/propagation/rta/RTAContextInterpreter.java

51 lines
1.8 KiB
Java

/*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.ibm.wala.ipa.callgraph.propagation.rta;
import java.util.Iterator;
import com.ibm.wala.classLoader.IClass;
import com.ibm.wala.classLoader.NewSiteReference;
import com.ibm.wala.ipa.callgraph.CGNode;
import com.ibm.wala.ipa.callgraph.cha.CHAContextInterpreter;
import com.ibm.wala.types.FieldReference;
/**
* This object will analyze a method in a context and return information needed for RTA.
*/
public interface RTAContextInterpreter extends CHAContextInterpreter {
/**
* @return an Iterator of the types that may be allocated by a given method in a given context.
*/
public abstract Iterator<NewSiteReference> iterateNewSites(CGNode node);
/**
* @return iterator of FieldReference
*/
public Iterator<FieldReference> iterateFieldsRead(CGNode node);
/**
* @return iterator of FieldReference
*/
public Iterator<FieldReference> iterateFieldsWritten(CGNode node);
/**
* record that the "factory" method of a node should be interpreted to allocate a particular class.
*
* TODO: this is a little ugly, is there a better place to move this?
*
* @param node
* @param klass
* @return true iff a NEW type was recorded, false if the type was previously recorded.
*/
public boolean recordFactoryType(CGNode node, IClass klass);
}