|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.ClassTraversal.Empty
jist.runtime.RewriterTraversalModifyEntityCreation
class RewriterTraversalModifyEntityCreation
Traversal object that ensures all entity creation operations are modified to
result in an EntityRef on the stack, instead of the original Entity. The way
this is done is by searching for constructor (<init>) method calls on
entity objects. At the end of this method call there is an instance of the
object on the stack. We use this instance to call
Controller.newRef(Entity)
, which creates and returns a new
entityRef that refers to the current entity. Additionally, this traversal
object modifies entity array creation.
JistAPI.Entity
,
EntityRef
,
Controller.newEntityReference(jist.runtime.Entity)
Field Summary | |
---|---|
private org.apache.bcel.generic.ConstantPoolGen |
cpg
class constant pool. |
private org.apache.bcel.generic.InstructionFactory |
ifc
class instruction factory. |
private int |
NEWs
number of (nested) new instructions. |
private Rewriter |
rewriter
primary rewriter. |
Constructor Summary | |
---|---|
RewriterTraversalModifyEntityCreation(Rewriter rewriter)
Create rewriter object to modify entity creation points. |
Method Summary | |
---|---|
org.apache.bcel.generic.ClassGen |
doClass(org.apache.bcel.generic.ClassGen cg)
Upcall to process class before field and method processing. |
void |
doInstruction(org.apache.bcel.generic.ClassGen cg,
org.apache.bcel.generic.MethodGen mg,
org.apache.bcel.generic.InstructionHandle ih,
org.apache.bcel.generic.Instruction inst)
Upcall to process instruction. Note that instructions can be inserted and deleted directly using the BCEL API, and therefore this method returns void . |
org.apache.bcel.generic.MethodGen |
doMethod(org.apache.bcel.generic.ClassGen cg,
org.apache.bcel.generic.MethodGen mg)
Upcall to process method before instruction processing. |
Methods inherited from class jist.runtime.ClassTraversal.Empty |
---|
doClassPost, doField, doMethodPost |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private Rewriter rewriter
private org.apache.bcel.generic.InstructionFactory ifc
private org.apache.bcel.generic.ConstantPoolGen cpg
private int NEWs
Constructor Detail |
---|
public RewriterTraversalModifyEntityCreation(Rewriter rewriter)
rewriter
- reference to primary rewriterMethod Detail |
---|
public org.apache.bcel.generic.ClassGen doClass(org.apache.bcel.generic.ClassGen cg)
doClass
in interface ClassTraversal.Visitor
doClass
in class ClassTraversal.Empty
cg
- BCEL class generator object to process
public org.apache.bcel.generic.MethodGen doMethod(org.apache.bcel.generic.ClassGen cg, org.apache.bcel.generic.MethodGen mg)
doMethod
in interface ClassTraversal.Visitor
doMethod
in class ClassTraversal.Empty
cg
- BCEL class generator objectmg
- BCEL method generator object to process
public void doInstruction(org.apache.bcel.generic.ClassGen cg, org.apache.bcel.generic.MethodGen mg, org.apache.bcel.generic.InstructionHandle ih, org.apache.bcel.generic.Instruction inst) throws java.lang.ClassNotFoundException
void
.
doInstruction
in interface ClassTraversal.Visitor
doInstruction
in class ClassTraversal.Empty
cg
- BCEL class generator objectmg
- BCEL method generator objectih
- BCEL instruction handle object to processinst
- BCEL instruction object to process
java.lang.ClassNotFoundException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |