122d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch   /* Copyright (C) 2008 The Android Open Source Project
222d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
322d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Licensed under the Apache License, Version 2.0 (the "License");
422d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * you may not use this file except in compliance with the License.
522d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * You may obtain a copy of the License at
622d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
722d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * http://www.apache.org/licenses/LICENSE-2.0
822d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
922d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Unless required by applicable law or agreed to in writing, software
1022d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * distributed under the License is distributed on an "AS IS" BASIS,
1122d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1222d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * See the License for the specific language governing permissions and
1322d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * limitations under the License.
1422d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    */
1522d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch
1622d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch   /*
1722d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * File: OP_RETURN_WIDE.S
1822d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
1922d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Code: Return a 64-bit value. Uses no substitutions.
2022d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
2122d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * For: return-wide
2222d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
2322d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Description: Copies the return value into the "glue"
2422d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *              structure, then jumps to the return handler.
2522d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
2622d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Format: AA|op (11x)
2722d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    *
2822d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    * Syntax: op vAA
2922d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    */
3022d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch
3122d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    movl        rGLUE, %edx             # %edx<- pMterpGlue
3222d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    movq        (rFP, rINST, 4), %xmm0  # %xmm0<- vAA
3322d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    movq        %xmm0, offGlue_retval(%edx)# glue->retval<- vAA
3422d404a75a00cda0b0ebed1034c2808ba060b05fJohnnie Birch    jmp         common_returnFromMethod # jump to common return code
35