Uses of Class
serp.bytecode.LoadInstruction
Packages that use LoadInstruction
-
Uses of LoadInstruction in serp.bytecode
Methods in serp.bytecode that return LoadInstructionModifier and TypeMethodDescriptionCode.aload()
Load an object local variable onto the stack.Code.dload()
Load a double local variable onto the stack.Code.fload()
Load a float local variable onto the stack.Code.iload()
Load an int local variable onto the stack.Code.lload()
Load a long local variable onto the stack.LoadInstruction.setThis()
Equivalent tosetLocal (0).setType (Object.class)
; thethis
ptr is always passed in local variable 0.Code.xload()
Load a local variable onto the stack. -
Uses of LoadInstruction in serp.bytecode.visitor
Methods in serp.bytecode.visitor with parameters of type LoadInstructionModifier and TypeMethodDescriptionvoid
BCVisitor.enterLoadInstruction
(LoadInstruction obj) void
PrettyPrintVisitor.enterLoadInstruction
(LoadInstruction obj) void
BCVisitor.exitLoadInstruction
(LoadInstruction obj)