Lines Matching refs:vref
34 int aget_common_nohelper(int flag, u2 vA, u2 vref, u2 vindex) { in aget_common_nohelper() argument
38 requestVRFreeDelay(vref,VRDELAY_NULLCHECK); in aget_common_nohelper()
40 requestVRFreeDelay(vref,VRDELAY_BOUNDCHECK); in aget_common_nohelper()
44 get_virtual_reg(vref, OpndSize_32, 1, false); //array in aget_common_nohelper()
49 nullCheck(1, false, 1, vref); //maybe optimized away, if not, call in aget_common_nohelper()
50 cancelVRFreeDelayRequest(vref,VRDELAY_NULLCHECK); in aget_common_nohelper()
56 boundCheck(vref, 1, false, in aget_common_nohelper()
59 cancelVRFreeDelayRequest(vref,VRDELAY_BOUNDCHECK); in aget_common_nohelper()
96 int aget_common(int flag, u2 vA, u2 vref, u2 vindex) { in aget_common() argument
97 return aget_common_nohelper(flag, vA, vref, vindex); in aget_common()
108 u2 vref = FETCH(1) & 0xff; in op_aget() local
110 int retval = aget_common(AGET, vA, vref, vindex); in op_aget()
119 u2 vref = FETCH(1) & 0xff; in op_aget_wide() local
121 int retval = aget_common(AGET_WIDE, vA, vref, vindex); in op_aget_wide()
136 u2 vref = FETCH(1) & 0xff; in op_aget_boolean() local
138 int retval = aget_common(AGET_BOOLEAN, vA, vref, vindex); in op_aget_boolean()
147 u2 vref = FETCH(1) & 0xff; in op_aget_byte() local
149 int retval = aget_common(AGET_BYTE, vA, vref, vindex); in op_aget_byte()
158 u2 vref = FETCH(1) & 0xff; in op_aget_char() local
160 int retval = aget_common(AGET_CHAR, vA, vref, vindex); in op_aget_char()
169 u2 vref = FETCH(1) & 0xff; in op_aget_short() local
171 int retval = aget_common(AGET_SHORT, vA, vref, vindex); in op_aget_short()
183 int aput_common_nohelper(int flag, u2 vA, u2 vref, u2 vindex) { in aput_common_nohelper() argument
189 requestVRFreeDelay(vref,VRDELAY_NULLCHECK); in aput_common_nohelper()
191 requestVRFreeDelay(vref,VRDELAY_BOUNDCHECK); in aput_common_nohelper()
195 get_virtual_reg(vref, OpndSize_32, 1, false); //array in aput_common_nohelper()
200 nullCheck(1, false, 1, vref); //maybe optimized away, if not, call in aput_common_nohelper()
201 cancelVRFreeDelayRequest(vref,VRDELAY_NULLCHECK); in aput_common_nohelper()
207 boundCheck(vref, 1, false, in aput_common_nohelper()
210 cancelVRFreeDelayRequest(vref,VRDELAY_BOUNDCHECK); in aput_common_nohelper()
237 int aput_common(int flag, u2 vA, u2 vref, u2 vindex) { in aput_common() argument
238 return aput_common_nohelper(flag, vA, vref, vindex); in aput_common()
249 u2 vref = FETCH(1) & 0xff; in op_aput() local
251 int retval = aput_common(APUT, vA, vref, vindex); in op_aput()
260 u2 vref = FETCH(1) & 0xff; in op_aput_wide() local
262 int retval = aput_common(APUT_WIDE, vA, vref, vindex); in op_aput_wide()
271 u2 vref = FETCH(1) & 0xff; in op_aput_boolean() local
273 int retval = aput_common(APUT_BOOLEAN, vA, vref, vindex); in op_aput_boolean()
282 u2 vref = FETCH(1) & 0xff; in op_aput_byte() local
284 int retval = aput_common(APUT_BYTE, vA, vref, vindex); in op_aput_byte()
293 u2 vref = FETCH(1) & 0xff; in op_aput_char() local
295 int retval = aput_common(APUT_CHAR, vA, vref, vindex); in op_aput_char()
304 u2 vref = FETCH(1) & 0xff; in op_aput_short() local
306 int retval = aput_common(APUT_SHORT, vA, vref, vindex); in op_aput_short()
325 u2 vref = FETCH(1) & 0xff; in op_aput_object() local
333 requestVRFreeDelay(vref,VRDELAY_NULLCHECK); in op_aput_object()
335 requestVRFreeDelay(vref,VRDELAY_BOUNDCHECK); in op_aput_object()
339 get_virtual_reg(vref, OpndSize_32, 1, false); //array in op_aput_object()
345 cancelVRFreeDelayRequest(vref,VRDELAY_NULLCHECK); in op_aput_object()
354 cancelVRFreeDelayRequest(vref,VRDELAY_BOUNDCHECK); in op_aput_object()