Searched refs:vmslots (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.hpp155 #define VMSLOTS_SLOT(offset) ((intptr_t*)&vmslots[(offset)])
156 #define VMSLOTS_ADDR(offset) ((address)vmslots[(offset)])
157 #define VMSLOTS_INT(offset) (*((jint*)&vmslots[(offset)]))
158 #define VMSLOTS_FLOAT(offset) (*((jfloat*)&vmslots[(offset)]))
159 #define VMSLOTS_OBJECT(offset) ((oop)vmslots[(offset)])
160 #define VMSLOTS_DOUBLE(offset) (((VMJavaVal64*)&vmslots[(offset) - 1])->d)
161 #define VMSLOTS_LONG(offset) (((VMJavaVal64*)&vmslots[(offset) - 1])->l)
163 #define SET_VMSLOTS_SLOT(value, offset) (*(intptr_t*)&vmslots[(offset)] = *(intptr_t *)(value))
164 #define SET_VMSLOTS_ADDR(value, offset) (*((address *)&vmslots[(offset)]) = (value))
165 #define SET_VMSLOTS_INT(value, offset) (*((jint *)&vmslots[(offse
[all...]
H A DcppInterpreter_zero.cpp623 intptr_t *vmslots = stack->sp(); local
633 intptr_t *vmslots = stack->sp(); local
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java49 final int vmslots; // total number of parameter slots field in class:MethodTypeForm
191 this.vmslots = parameterSlotCount();

Completed in 34 milliseconds