Lines Matching refs:Method
135 * Common code for method invocation with range.
138 * %ecx is "Method* methodToCall", the method we're trying to call
175 * %ecx is "Method* methodToCall", the method we're trying to call
232 * %ecx is "Method* methodToCall", the method we're trying to call
266 movl %ecx, offStackSaveArea_method(%eax) # newSaveArea->method<- method to call
270 * Update "glue" values for the new method
274 movl offMethod_clazz(%ecx), %edx # %edx<- method->clazz
276 movl %ecx, offGlue_method(%eax) # glue->method<- methodToCall
277 movl offClassObject_pDvmDex(%edx), %edx # %edx<- method->clazz->pDvmDex
279 movl %edx, offGlue_methodClassDex(%eax) # glue->methodClassDex<- method->clazz->pDvmDex
328 movl %ecx, -4(%esp) # push method to call
333 call dvmHandleStackOverflow # call: (Thread* self, Method *meth)
385 movl (offStackSaveArea_method - sizeofStackSaveArea)(rFP), %edx # %edx<- method we are returning to
390 movl %edx, offGlue_method(rINST) # glue->method<- newSave->method
391 movl offMethod_clazz(%edx), %edx # %edx<- method->clazz
394 movl offClassObject_pDvmDex(%edx), %edx # %edx<- method->clazz->pDvmDex
395 movl %edx, offGlue_methodClassDex(rINST) # glue->pDvmDex<- method->clazz->pDvmDex
433 movl offGlue_method(%eax), %edx # %edx<- glue->method
434 movl offMethod_insns(%edx), %edx # %edx<- glue->method->insns
436 subl %edx, %ecx # %ecx<- pc - glue->method->insns
438 movl %ecx, -16(%esp) # push parameter 1<- glue->method->insns
482 movl rPC, offGlue_method(%ecx) # glue->method<- newMethod
483 movl offMethod_clazz(rPC), %edx # %edx<- method->clazz
484 movl offMethod_insns(rPC), rPC # rPC<- method->insns
485 movl offClassObject_pDvmDex(%edx), %edx # %edx<- method->clazz->pDvmDex
486 lea (rPC, %eax, 2), rPC # rPC<- method->insns + catchRelPc
487 movl %edx, offGlue_methodClassDex(%ecx) # glue->pDvmDex<- method->clazz->pDvmDex
610 * Invocation of a non-existent method.