Package | Description |
---|---|
serp.bytecode |
Bytecode Manipuation
|
serp.bytecode.visitor |
Bytecode Visitor
|
Modifier and Type | Method and Description |
---|---|
LoadInstruction |
Code.aload()
Load an object local variable onto the stack.
|
LoadInstruction |
Code.dload()
Load a double local variable onto the stack.
|
LoadInstruction |
Code.fload()
Load a float local variable onto the stack.
|
LoadInstruction |
Code.iload()
Load an int local variable onto the stack.
|
LoadInstruction |
Code.lload()
Load a long local variable onto the stack.
|
LoadInstruction |
LoadInstruction.setThis()
Equivalent to
setLocal (0).setType (Object.class) ; the
this ptr is always passed in local variable 0. |
LoadInstruction |
Code.xload()
Load a local variable onto the stack.
|
Modifier and Type | Method and Description |
---|---|
void |
BCVisitor.enterLoadInstruction(LoadInstruction obj) |
void |
PrettyPrintVisitor.enterLoadInstruction(LoadInstruction obj) |
void |
BCVisitor.exitLoadInstruction(LoadInstruction obj) |
Copyright © 2002–2019. All rights reserved.