Package ghidra.pcode.emu.jit.gen
Interface StaticFieldReq
- All Superinterfaces:
FieldReq
- All Known Implementing Classes:
FieldForVarnode
A static field request initialized in the class initializer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
generateClinitCode
(JitCodeGenerator gen, org.objectweb.asm.ClassVisitor cv, org.objectweb.asm.MethodVisitor sv) Emit the field declaration and its initialization bytecodeMethods inherited from interface ghidra.pcode.emu.jit.gen.FieldReq
generateLoadCode, name
-
Method Details
-
generateClinitCode
void generateClinitCode(JitCodeGenerator gen, org.objectweb.asm.ClassVisitor cv, org.objectweb.asm.MethodVisitor sv) Emit the field declaration and its initialization bytecodeThe declaration is emitted into the class definition, and the initialization code is emitted into the class initializer.
- Parameters:
gen
- the code generatorcv
- the visitor for the class definitionsv
- the visitor for the class (static) initializer
-