|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.RewriterFlow
public final class RewriterFlow
Perform data flow analysis.
Nested Class Summary | |
---|---|
static class |
RewriterFlow.FlowInfoMap
An accessor class to conveniently query data flow information. |
private static class |
RewriterFlow.WildcardReturnaddressType
Utility class to replace BCEL's ReturnaddressType and ignore the return address when checking for type equality for stack merging purposes. |
Field Summary | |
---|---|
private org.apache.bcel.verifier.structurals.ExecutionVisitor |
ev
instruction execution visitor. |
private org.apache.bcel.verifier.structurals.ExceptionHandlers |
exInfo
exception handler lookup. |
private java.util.HashMap |
frames
frame information. |
private java.util.HashMap |
pointsTo
pointsTo information. |
private java.util.Vector |
remaining
remaining instructions to process. |
Constructor Summary | |
---|---|
RewriterFlow()
Create new rewriter data flow analysis object. |
Method Summary | |
---|---|
RewriterFlow.FlowInfoMap |
doFlow(org.apache.bcel.generic.ClassGen cg,
org.apache.bcel.generic.MethodGen mg)
Perform data flow analysis to determine the frame at each execution point in the method. |
private org.apache.bcel.generic.InstructionHandle[] |
execute(org.apache.bcel.generic.InstructionHandle ih,
org.apache.bcel.verifier.structurals.Frame f)
Helper flow analysis method: "executes" a given instruction to produce the next frame, and returns all successors of this instruction. |
static void |
main(java.lang.String[] args)
Small utility program to dump the methods of a given class file with flow information between every instruction. |
private boolean |
merge(org.apache.bcel.generic.InstructionHandle ih,
org.apache.bcel.verifier.structurals.Frame f,
org.apache.bcel.classfile.ConstantPool cp)
Helper flow analysis method: merges two frames ala the VM spec, and stores result. |
private org.apache.bcel.verifier.structurals.OperandStack |
removeRetTargets(org.apache.bcel.verifier.structurals.OperandStack os)
Replace any ReturnaddressTypes (placed on the stack by JSR) with WildcardReturnaddressTypes, so as to pass the verification performed during stack merge. |
private org.apache.bcel.verifier.structurals.OperandStack |
reverseStack(org.apache.bcel.verifier.structurals.OperandStack os)
Reverse the operand stack. |
private void |
updatePointsTo(org.apache.bcel.generic.InstructionHandle from,
org.apache.bcel.generic.InstructionHandle[] to)
Update table of which instructions "point to" which. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private java.util.Vector remaining
private org.apache.bcel.verifier.structurals.ExecutionVisitor ev
private org.apache.bcel.verifier.structurals.ExceptionHandlers exInfo
private java.util.HashMap frames
private java.util.HashMap pointsTo
Constructor Detail |
---|
public RewriterFlow()
Method Detail |
---|
public RewriterFlow.FlowInfoMap doFlow(org.apache.bcel.generic.ClassGen cg, org.apache.bcel.generic.MethodGen mg)
cg
- BCEL class objectmg
- BCEL method object
private org.apache.bcel.generic.InstructionHandle[] execute(org.apache.bcel.generic.InstructionHandle ih, org.apache.bcel.verifier.structurals.Frame f)
ih
- handle of instruction to executef
- pre-instruction state (is modified to post-instruction state)
private boolean merge(org.apache.bcel.generic.InstructionHandle ih, org.apache.bcel.verifier.structurals.Frame f, org.apache.bcel.classfile.ConstantPool cp)
ih
- location to merge information intof
- frame to merge incp
- class constant pool
private org.apache.bcel.verifier.structurals.OperandStack removeRetTargets(org.apache.bcel.verifier.structurals.OperandStack os)
os
- input operand stack, not modified
private org.apache.bcel.verifier.structurals.OperandStack reverseStack(org.apache.bcel.verifier.structurals.OperandStack os)
os
- input operand stack, not modified
private void updatePointsTo(org.apache.bcel.generic.InstructionHandle from, org.apache.bcel.generic.InstructionHandle[] to)
from
- predecessor instructionto
- list of successor instructionspublic static void main(java.lang.String[] args)
args
- list of filenames to process
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |