Package ghidra.pcode.emu.jit.gen.opnd
Enum Class Opnd.LongToLong
- All Implemented Interfaces:
Opnd.StackToStackConv<Types.TLong,,JitType.LongJitType, Types.TLong, JitType.LongJitType> Serializable,Comparable<Opnd.LongToLong>,Constable
public static enum Opnd.LongToLong
extends Enum<Opnd.LongToLong>
implements Opnd.StackToStackConv<Types.TLong,JitType.LongJitType,Types.TLong,JitType.LongJitType>
Converter from long to long
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescription<N1 extends Emitter.Next,N0 extends Emitter.Ent<N1, Types.TLong>>
Emitter<Emitter.Ent<N1, Types.TLong>> convertStackToStack(Emitter<N0> em, JitType.LongJitType from, JitType.LongJitType to, Opnd.Ext ext) Convert a stack operand to another stack operandstatic Opnd.LongToLongReturns the enum constant of this class with the specified name.static Opnd.LongToLong[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
convertStackToStack
public <N1 extends Emitter.Next,N0 extends Emitter.Ent<N1, Emitter<Emitter.Ent<N1,Types.TLong>> Types.TLong>> convertStackToStack(Emitter<N0> em, JitType.LongJitType from, JitType.LongJitType to, Opnd.Ext ext) Description copied from interface:Opnd.StackToStackConvConvert a stack operand to another stack operand- Specified by:
convertStackToStackin interfaceOpnd.StackToStackConv<Types.TLong,JitType.LongJitType, Types.TLong, JitType.LongJitType> - Type Parameters:
N1- the tail of the stack (...)N0- ..., value- Parameters:
em- the emitterfrom- the source p-code typeto- the destination p-code typeext- the kind of extension to apply- Returns:
- the emitter with ..., result
-