Package ghidra.pcode.emu.jit.gen
Interface InstanceFieldReq
- All Superinterfaces:
FieldReq
- All Known Implementing Classes:
FieldForArrDirect
,FieldForExitSlot
,FieldForSpaceIndirect
,FieldForUserop
An instance field request initialized in the class constructor
-
Method Summary
Modifier and TypeMethodDescriptionvoid
generateInitCode
(JitCodeGenerator gen, org.objectweb.asm.ClassVisitor cv, org.objectweb.asm.MethodVisitor iv) Emit the field declaration and its initialization bytecodeMethods inherited from interface ghidra.pcode.emu.jit.gen.FieldReq
generateLoadCode, name
-
Method Details
-
generateInitCode
void generateInitCode(JitCodeGenerator gen, org.objectweb.asm.ClassVisitor cv, org.objectweb.asm.MethodVisitor iv) Emit the field declaration and its initialization bytecodeThe declaration is emitted into the class definition, and the initialization code is emitted into the class constructor.
- Parameters:
gen
- the code generatorcv
- the visitor for the class definitioniv
- the visitor for the class constructor
-