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

Lines Matching refs:method

19     * Code: Call static direct method. Provides an "isrange" variable and
25 * Description: invoke-static is used to invoke static direct method.
47 FETCH 1, %eax # %eax<- method index
49 movl (%ecx, %eax, 4), %ecx # %ecx<- resolved method to call
52 jne common_invokeMethod${routine} # invoke method common code
57 movl offGlue_method(%edx), %edx # %edx<- glue->method
58 movl $$METHOD_STATIC, -4(%esp) # resolver method type
59 movl %eax, -8(%esp) # push parameter method index
60 movl offMethod_clazz(%edx), %edx # %edx<- glue->method->clazz
61 movl %edx, -12(%esp) # push parameter method
65 # return: Method*
67 cmp $$0, %eax # check for null method
69 movl %eax, %ecx # %ecx<- method
70 jmp common_invokeMethod${routine} # invoke method common code