Home | History | Annotate | Download | only in x86-atom

Lines Matching refs:method

19     * Code: Call a non-static direct method. Provides an "isrange" variable and
25 * Description: invoke-direct is used to invoke a non-static direct method;
26 * an instance method that is non-overridable, for example,
27 * either a private instance method or a constructor.
49 FETCH 1, %eax # %eax<- method index
52 movl (%ecx, %eax, 4), %ecx # %ecx<- resolved method to call
64 jne common_invokeMethod${routine} # invoke method common code
75 movl $$METHOD_DIRECT, -8(%esp) # push parameter method type
76 movl offGlue_method(%edx), %edx # %edx<- glue->method
79 movl offMethod_clazz(%edx), %edx # %edx<- glue->method->clazz
83 # return: Method*
85 cmp $$0, %eax # check for null method return
90 movl %eax, %ecx # %ecx<- method
91 jne common_invokeMethod${routine} # invoke method common code