WALA/com.ibm.wala.core/com.ibm.wala.core/src/com/ibm/wala/classLoader/ShrikeIRFactory.java

114 lines
3.9 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.classLoader;
import com.ibm.wala.cfg.ControlFlowGraph;
import com.ibm.wala.cfg.ShrikeCFG;
import com.ibm.wala.ipa.callgraph.Context;
import com.ibm.wala.ipa.cha.ClassHierarchy;
import com.ibm.wala.shrikeCT.InvalidClassFileException;
import com.ibm.wala.ssa.IR;
import com.ibm.wala.ssa.IRFactory;
import com.ibm.wala.ssa.SSABuilder;
import com.ibm.wala.ssa.SSACFG;
import com.ibm.wala.ssa.SSAInstruction;
import com.ibm.wala.ssa.SSAOptions;
import com.ibm.wala.ssa.SymbolTable;
import com.ibm.wala.ssa.analysis.DeadAssignmentElimination;
import com.ibm.wala.util.debug.Assertions;
import com.ibm.wala.util.warnings.WarningSet;
/**
* @author Julian Dolby
*
*/
public class ShrikeIRFactory implements IRFactory {
public final static boolean buildLocalMap = true;
/*
* (non-Javadoc)
*
* @see com.ibm.wala.ssa.IRFactory#makeCFG(com.ibm.wala.classLoader.IMethod,
* com.ibm.wala.ipa.cha.ClassHierarchy,
* com.ibm.wala.util.warnings.WarningSet)
*/
public ControlFlowGraph makeCFG(final IMethod method, Context C, final ClassHierarchy cha, final WarningSet warnings) {
return new ShrikeCFG((ShrikeCTMethodWrapper) method, warnings, cha);
}
/*
* (non-Javadoc)
*
* @see com.ibm.wala.ssa.IRFactory#makeIR(com.ibm.wala.classLoader.IMethod,
* com.ibm.wala.ipa.cha.ClassHierarchy, com.ibm.wala.ssa.SSAOptions,
* com.ibm.wala.util.warnings.WarningSet)
*/
public IR makeIR(final IMethod method, Context C, final ClassHierarchy cha, final SSAOptions options, final WarningSet warnings) {
// This should be a method from Shrike
Assertions._assert(method instanceof ShrikeCTMethodWrapper);
// Set up some ShrikeCT mapping information before constructing SSA
try {
((ShrikeCTMethodWrapper) method).processBytecodes();
} catch (InvalidClassFileException e) {
e.printStackTrace();
Assertions.UNREACHABLE();
}
com.ibm.wala.shrikeBT.Instruction[] shrikeInstructions;
try {
shrikeInstructions = ((ShrikeCTMethodWrapper) method).getInstructions();
} catch (InvalidClassFileException e) {
e.printStackTrace();
Assertions.UNREACHABLE();
shrikeInstructions = null;
}
final ShrikeCFG shrikeCFG = (ShrikeCFG) makeCFG(method, C, cha, warnings);
final SymbolTable symbolTable = new SymbolTable(method.getNumberOfParameters());
final SSAInstruction[] newInstrs = new SSAInstruction[shrikeInstructions.length];
final SSACFG newCfg = new SSACFG(method, shrikeCFG, newInstrs, warnings);
return new IR(method, newInstrs, symbolTable, newCfg, options) {
private final SSA2LocalMap localMap;
/**
* Remove any phis that are dead assignments.
*
* TODO: move this elsewhere?
*/
private void eliminateDeadPhis() {
DeadAssignmentElimination.perform(this);
}
public SSA2LocalMap getLocalMap() {
return localMap;
}
{
SSABuilder builder = new SSABuilder((ShrikeCTMethodWrapper) method, cha, newCfg, shrikeCFG, newInstrs, symbolTable,
buildLocalMap, options.getUsePiNodes(), warnings);
builder.build();
if (buildLocalMap)
localMap = builder.getLocalMap();
else
localMap = null;
eliminateDeadPhis();
setupLocationMap();
}
};
}
}