* Added irix subdirectory.
[cacao.git] / src / vm / jit / mips / md.c
1 /* src/vm/jit/mips/md.c - machine dependent MIPS 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 3116 2005-07-27 12:14:03Z twisti $
32
33 */
34
35
36 #include <assert.h>
37 #include <sys/mman.h>
38 #include <unistd.h>
39
40 #include "config.h"
41
42 #include "vm/jit/mips/types.h"
43
44 #include "vm/global.h"
45
46
47 void docacheflush(u1 *p, long bytelen)
48 {
49         u1 *e = p + bytelen;
50         long psize = sysconf(_SC_PAGESIZE);
51         p -= (long) p & (psize - 1);
52         e += psize - ((((long) e - 1) & (psize - 1)) + 1);
53         bytelen = e-p;
54         mprotect(p, bytelen, PROT_READ | PROT_WRITE | PROT_EXEC);
55 }
56
57
58 /* md_stacktrace_get_returnaddress *********************************************
59
60    Returns the return address of the current stackframe, specified by
61    the passed stack pointer and the stack frame size.
62
63 *******************************************************************************/
64
65 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize)
66 {
67         functionptr ra;
68
69         /* on MIPS the return address is located on the top of the stackframe */
70
71         ra = (functionptr) *((u1 **) (sp + framesize - SIZEOF_VOID_P));
72
73         return ra;
74 }
75
76
77 /* codegen_findmethod **********************************************************
78
79    Machine code:
80
81    6b5b4000    jsr     (pv)
82    237affe8    lda     pv,-24(ra)
83
84 *******************************************************************************/
85
86 functionptr codegen_findmethod(functionptr pc)
87 {
88         u1 *ra;
89         u1 *pv;
90         u4  mcode;
91         s4  offset;
92
93         ra = (u1 *) pc;
94         pv = ra;
95
96         /* get first instruction word after jump */
97
98         mcode = *((u4 *) ra);
99
100         /* check if we have 2 instructions (ldah, lda) */
101
102         if ((mcode >> 16) == 0x3c19) {
103                 /* get displacement of first instruction (lui) */
104
105                 offset = (s4) (mcode << 16);
106                 pv += offset;
107
108                 /* get displacement of second instruction (daddiu) */
109
110                 mcode = *((u4 *) (ra + 1 * 4));
111
112                 if ((mcode >> 16) != 0x6739) {
113                         log_text("No `daddiu' instruction found on return address!");
114                         assert(0);
115                 }
116
117                 offset = (s2) (mcode & 0x0000ffff);
118                 pv += offset;
119
120         } else {
121                 /* get offset of first instruction (daddiu) */
122
123                 mcode = *((u4 *) ra);
124
125                 if ((mcode >> 16) != 0x67fe) {
126                         log_text("No `daddiu s8,ra,x' instruction found on return address!");
127                         assert(0);
128                 }
129
130                 offset = (s2) (mcode & 0x0000ffff);
131                 pv += offset;
132         }
133
134         return (functionptr) pv;
135 }
136
137
138 /*
139  * These are local overrides for various environment variables in Emacs.
140  * Please do not remove this and leave it at the end of the file, where
141  * Emacs will automagically detect them.
142  * ---------------------------------------------------------------------
143  * Local variables:
144  * mode: c
145  * indent-tabs-mode: t
146  * c-basic-offset: 4
147  * tab-width: 4
148  * End:
149  */