Package jminusminus
Class NHIRPutField
java.lang.Object
jminusminus.NHIRInstruction
jminusminus.NHIRPutField
HIR instruction representing JVM (put) field instructions.
- 
Field SummaryFields inherited from class jminusminus.NHIRInstructionblock, hirMnemonic, id, lir, lType, sType
- 
Constructor SummaryConstructorsConstructorDescriptionNHIRPutField(NBasicBlock block, int id, int opcode, String target, String name, String sType, String lType, int value) Constructs an NHIRPutField object.
- 
Method SummaryMethods inherited from class jminusminus.NHIRInstructionequals, id
- 
Constructor Details- 
NHIRPutFieldpublic NHIRPutField(NBasicBlock block, int id, int opcode, String target, String name, String sType, String lType, int value) Constructs an NHIRPutField object.- Parameters:
- block- enclosing block.
- id- identifier of the instruction.
- opcode- JVM opcode for the instruction.
- target- target for the field.
- name- name of the field.
- sType- type (short name) of the field.
- lType- type (long name) of the field.
- value- HIR id of the value of the field.
 
 
- 
- 
Method Details- 
toLirConverts and returns a low-level representation (LIR) of this HIR instruction. Also adds the returned LIR instruction to the list of LIR instructions for the block containing this instruction, along with any other intermediate LIR instructions needed.- Overrides:
- toLirin class- NHIRInstruction
- Returns:
- the LIR instruction corresponding to this HIR instruction.
 
- 
toStringReturns a string representation of this instruction.- Overrides:
- toStringin class- NHIRInstruction
- Returns:
- a string representation of this instruction.
 
 
-