Package ghidra.pcode.emu.jit.gen
Record Class FieldForUserop
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.gen.FieldForUserop
- Record Components:
userop- the definition to pre-fetch
- All Implemented Interfaces:
FieldReq,InstanceFieldReq
public record FieldForUserop(PcodeUseropLibrary.PcodeUseropDefinition<?> userop)
extends Record
implements InstanceFieldReq
A field request for a pre-fetched userop definition
These are used to invoke userops using the Standard or Direct strategies.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aFieldForUseroprecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidgenerateInitCode(JitCodeGenerator gen, org.objectweb.asm.ClassVisitor cv, org.objectweb.asm.MethodVisitor iv) Emit the field declaration and its initialization bytecodevoidgenerateLoadCode(JitCodeGenerator gen, org.objectweb.asm.MethodVisitor rv) Emit code to load the field onto the JVM stackfinal inthashCode()Returns a hash code value for this object.name()Derive a suitable name for the fieldfinal StringtoString()Returns a string representation of this record class.userop()Returns the value of theuseroprecord component.
-
Constructor Details
-
FieldForUserop
Creates an instance of aFieldForUseroprecord class.- Parameters:
userop- the value for theuseroprecord component
-
-
Method Details
-
name
Description copied from interface:FieldReqDerive a suitable name for the field -
generateInitCode
public 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.
Consider the userop
syscall(). The declaration is equivalent to:private final
PcodeUseropLibrary.PcodeUseropDefinitionuserop_syscall;And the initialization is equivalent to:
userop_syscall =
getUseropdDefinition("syscall");- Specified by:
generateInitCodein interfaceInstanceFieldReq- Parameters:
gen- the code generatorcv- the visitor for the class definitioniv- the visitor for the class constructor
-
generateLoadCode
Description copied from interface:FieldReqEmit code to load the field onto the JVM stack- Specified by:
generateLoadCodein interfaceFieldReq- Parameters:
gen- the code generatorrv- the visitor often for therunmethod, but could be the static initializer or constructor
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
userop
Returns the value of theuseroprecord component.- Returns:
- the value of the
useroprecord component
-