(src/vm/jit/m68k/md.c): md_stacktrace_get_returnaddress needs to be exported.
[cacao.git] / src / vm / jit / m68k / md.h
1 /*      src/vm/jit/m68k/md.h
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25 */
26
27
28 #ifndef _VM_JIT_M68K_MD_H
29 #define _VM_JIT_M68K_MD_H
30
31 #include "config.h"
32
33 #include <assert.h>
34 #include <stdint.h>
35
36 #include "vm/jit/codegen-common.h"
37
38
39 /* md_stacktrace_get_returnaddress *********************************************
40
41    Returns the return address of the current stackframe, specified by
42    the passed stack pointer and the stack frame size.
43
44 *******************************************************************************/
45
46 void *md_stacktrace_get_returnaddress(void *sp, int32_t stackframesize);
47
48
49 /* md_codegen_get_pv_from_pc ***************************************************
50
51    On this architecture just a wrapper function to
52    codegen_get_pv_from_pc.
53
54 *******************************************************************************/
55
56 inline static void *md_codegen_get_pv_from_pc(void *ra)
57 {
58         void *pv;
59
60         pv = codegen_get_pv_from_pc(ra);
61
62         return pv;
63 }
64
65
66 /* XXX i can't find a definition of cacheflush in any installed header files but i can find the symbol in libc */
67 /* lets extract the signature from the assembler code*/
68 /*
69     000e7158 <cacheflush>:
70     e7158:       707b            moveq #123,%d0
71     e715a:       2f04            movel %d4,%sp@-
72     e715c:       282f 0014       movel %sp@(20),%d4                     arg 
73     e7160:       2243            moveal %d3,%a1
74     e7162:       262f 0010       movel %sp@(16),%d3                     arg 
75     e7166:       2042            moveal %d2,%a0
76     e7168:       242f 000c       movel %sp@(12),%d2                     arg 
77     e716c:       222f 0008       movel %sp@(8),%d1                      arg 
78     e7170:       4e40            trap #0                                traps into system i guess
79     e7172:       2408            movel %a0,%d2
80     e7174:       2609            movel %a1,%d3
81     e7176:       281f            movel %sp@+,%d4
82     e7178:       223c ffff f001  movel #-4095,%d1
83     e717e:       b081            cmpl %d1,%d0
84     e7180:       6402            bccs e7184 <cacheflush+0x2c>
85     e7182:       4e75            rts
86     e7184:       4480            negl %d0
87     e7186:       2f00            movel %d0,%sp@-
88     e7188:       61ff fff3 82e2  bsrl 1f46c <D_MAX_EXP+0x1ec6d>
89     e718e:       209f            movel %sp@+,%a0@
90     e7190:       70ff            moveq #-1,%d0
91     e7192:       2040            moveal %d0,%a0
92     e7194:       4e75            rts
93     e7196:       4e75            rts
94                                                                         */
95
96 /* seems to have 4 arguments */
97 /* best guess: it is this syscall */
98 /* asmlinkage int sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) */
99 /* kernel 2.6.10 with freescale patches (the one I develop against) needs a patch of */
100 /* arch/m68k/kernel/sys_m68k.c(sys_cacheflush) */
101 /* evil hack: */
102 /*
103 void DcacheFlushInvalidateCacheBlock(void *start, unsigned long size);
104 void IcacheInvalidateCacheBlock(void *start, unsigned long size);
105
106 asmlinkage int
107 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
108 {
109         lock_kernel();
110         DcacheFlushInvalidateCacheBlock(addr, len);
111         IcacheInvalidateCacheBlock(addr, len);
112         unlock_kernel();
113         return 0;
114 }
115 */
116
117 extern int cacheflush(unsigned long addr, int scope, int cache, unsigned long len);
118
119 #include "asm/cachectl.h"       /* found more traces of the cacheflush function */
120 #include "errno.h"
121
122
123 /* md_cacheflush ***************************************************************
124
125    Calls the system's function to flush the instruction and data
126    cache.
127
128 *******************************************************************************/
129
130 inline static void md_cacheflush(void *addr, int nbytes)
131 {
132         cacheflush((unsigned long)addr, FLUSH_SCOPE_PAGE, FLUSH_CACHE_BOTH, nbytes);
133 }
134
135
136 /* md_icacheflush **************************************************************
137
138    Calls the system's function to flush the instruction cache.
139
140 *******************************************************************************/
141
142 inline static void md_icacheflush(void *addr, int nbytes)
143 {
144         cacheflush((unsigned long)addr, FLUSH_SCOPE_LINE, FLUSH_CACHE_INSN, nbytes);
145 }
146
147
148 /* md_dcacheflush **************************************************************
149
150    Calls the system's function to flush the data cache.
151
152 *******************************************************************************/
153
154 inline static void md_dcacheflush(void *addr, int nbytes)
155 {
156         cacheflush((unsigned long)addr, FLUSH_SCOPE_PAGE, FLUSH_CACHE_DATA, nbytes);
157 }
158
159 #endif /* _VM_JIT_M68K_MD_H */
160
161
162 /*
163  * These are local overrides for various environment variables in Emacs.
164  * Please do not remove this and leave it at the end of the file, where
165  * Emacs will automagically detect them.
166  * ---------------------------------------------------------------------
167  * Local variables:
168  * mode: c
169  * indent-tabs-mode: t
170  * c-basic-offset: 4
171  * tab-width: 4
172  * End:
173  * vim:noexpandtab:sw=4:ts=4:
174  */