source: trunk/packages/xen-3.1/xen-3.1/xen/arch/powerpc/of_handler/leap.S @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 1.3 KB
Line 
1/*
2 * Copyright (C) 2005 Jimi Xenidis <jimix@watson.ibm.com>, IBM Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 */
18#include <asm/config.h>
19#include <asm/processor.h>
20
21/*
22 * sval
23 * rh_leap(uval nargs, uval nrets, uval args[], uval rets[], uval ba,
24 *               rh_func_t f)
25 *    We need to deal with f actually bein a function descriptor, we can
26 *    assume that TOC is correct.
27 */     
28
29       
30_GLOBAL(io_leap)       
31_GLOBAL(leap)
32        ## r8 contains the base address for everyone
33        add     r8,r8,r7        # add
34        ld      r8, 0(r8)       # get the entry point
35        add     r8,r8,r7        # add
36        mtctr   r8              #     and
37        bctr                    #         leap
38        /* never get here */
Note: See TracBrowser for help on using the repository browser.