OpCodes.Ldind_R8 Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Loads a value of type float64
as a type F
(float) onto the evaluation stack indirectly.
public: static initonly System::Reflection::Emit::OpCode Ldind_R8;
public static readonly System.Reflection.Emit.OpCode Ldind_R8;
staticval mutable Ldind_R8 : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldind_R8 As OpCode
Field Value
Remarks
The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
Format | Assembly Format | Description |
---|---|---|
4F | ldind.r8 | Loads the float64 value at address addr onto the stack as a type F . |
The stack transitional behavior, in sequential order, is:
An address is pushed onto the stack.
The address is popped from the stack; the value located at the address is fetched.
The fetched value is pushed onto the stack.
The ldind.r8
instruction indirectly loads a float64
value from the specified address (of type native int
, &
, or *) onto the stack as a float64
.
All of the ldind
instructions are shortcuts for a Ldobj instruction that specifies the corresponding built-in value class.
Note that integer values of less than 4 bytes are extended to int32
(not native int
) when they are loaded onto the evaluation stack. Floating-point values are converted to F
type when loaded onto the evaluation stack.
Correctly-formed Microsoft Intermediate Language (MSIL) ensures that the ldind
instructions are used in a manner consistent with the type of the pointer.
The address initially pushed onto the stack must be aligned to the natural size of objects on the machine or a NullReferenceException can occur (see the Unaligned prefix instruction for preventative measures). The results of all MSIL instructions that return addresses (for example, Ldloca and Ldarga) are safely aligned. For datatypes larger than 1 byte, the byte ordering is dependent on the target CPU. Code that depends on byte ordering might not run on all platforms.
NullReferenceException can be thrown if an invalid address is detected.
The following Emit method overload can use the ldind.r8
opcode: