f7868d84e4eb5a28634f381454802b5350934307
[cacao.git] / src / vm / jit / powerpc / md.c
1 /* src/vm/jit/powerpc/md.c - machine dependent PowerPC functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: md.c 3752 2005-11-23 00:05:04Z twisti $
32
33 */
34
35 #include "config.h"
36 #include "vm/types.h"
37
38 #include "md-abi.h"
39
40 #include "vm/global.h"
41
42
43 /* md_init *********************************************************************
44
45    Do some machine dependent initialization.
46
47 *******************************************************************************/
48
49 void md_init(void)
50 {
51         /* nothing to do */
52 }
53
54
55 /* md_stacktrace_get_returnaddress *********************************************
56
57    Returns the return address of the current stackframe, specified by
58    the passed stack pointer and the stack frame size.
59
60 *******************************************************************************/
61
62 u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
63 {
64         u1 *ra;
65
66         /* on PowerPC the return address is located in the linkage area */
67
68         ra = *((u1 **) (sp + framesize + LA_LR_OFFSET));
69
70         return ra;
71 }
72
73
74 /* md_codegen_findmethod *******************************************************
75
76    Machine code:
77
78    7d6802a6    mflr  r11
79    39abffe0    addi  r13,r11,-32
80
81 *******************************************************************************/
82
83 u1 *md_codegen_findmethod(u1 *ra)
84 {
85         u1 *pv;
86         u4  mcode;
87         s2  offset;
88
89         pv = ra;
90
91         /* get offset of first instruction (addi) */
92
93         mcode = *((u4 *) (ra + 1 * 4));
94         offset = (s2) (mcode & 0x0000ffff);
95         pv += offset;
96
97         /* check for second instruction (addis) */
98
99         mcode = *((u4 *) (ra + 2 * 4));
100
101         if ((mcode >> 16) == 0x3dad) {
102                 offset = (s2) (mcode << 16);
103                 pv += offset;
104         }
105
106         return pv;
107 }
108
109
110 /*
111  * These are local overrides for various environment variables in Emacs.
112  * Please do not remove this and leave it at the end of the file, where
113  * Emacs will automagically detect them.
114  * ---------------------------------------------------------------------
115  * Local variables:
116  * mode: c
117  * indent-tabs-mode: t
118  * c-basic-offset: 4
119  * tab-width: 4
120  * End:
121  */