Contents | Prev | Next | Index

dload_<n>

Operation
Load double from local variable

dload_<n>

Forms
dload_0 = 38 (0x26) dload_1 = 39 (0x27) dload_2 = 40 (0x28) dload_3 = 41 (0x29)

Stack
... ..., value.word1, value.word2

Description
Both <n> and <n> + 1 must be valid indices into the local variables of the current frame (§3.6). The local variables at <n> and <n> + 1 together must contain a double. The value of the local variables at <n> and <n> + 1 is pushed onto the operand stack.

Notes
Each of the dload_<n> instructions is the same as dload with an index of <n>, except that the operand <n> is implicit.


Contents | Prev | Next | Index

Java Virtual Machine Specification (HTML generated by dkramer on February 25, 1997)
Copyright © 1996 Sun Microsystems, Inc. All rights reserved
Please send any comments or corrections to doug.kramer@sun.com