(codegen_emit_stub_builtin): Removed.
[cacao.git] / src / vm / jit / m68k / md.c
1 /*      src/vm/jit/m68k/md.c
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 #include "config.h"
29
30 #include <assert.h>
31 #include <stdint.h>
32
33 #include "md-os.h"
34
35 #include "vm/types.h"
36 #include "vm/jit/codegen-common.h"
37 #include "vm/jit/md.h"
38
39 #include "vm/vm.h"
40 #include "vmcore/class.h"
41 #include "vmcore/linker.h"
42 #include "vmcore/method.h"
43 #include "mm/memory.h"
44 #include "vm/jit/asmpart.h"
45
46
47 /*
48  *      As a sanity measuremnt we assert the offset.h values in here as m68k gets
49  *      crosscompiled for sure and noone thinks of offset.h wen changing compile flags
50  *      and subtile bugs will result...
51  *
52  *      m68k uses the trap instruction for hardware exceptions, need to register
53  *      according signal handler
54  */
55 void md_init(void) 
56 {
57 #ifdef __LINUX__
58         md_init_linux();
59 #endif
60 }
61
62 /* md_codegen_get_pv_from_pc ***************************************************
63
64    On this architecture just a wrapper function to
65    codegen_get_pv_from_pc.
66
67 *******************************************************************************/
68 u1* md_codegen_get_pv_from_pc(u1 *ra) 
69
70         u1 *pv;
71         pv = codegen_get_pv_from_pc(ra);
72
73         return pv;
74 }
75
76 /* md_jit_method_patch_address *************************************************
77  
78    Gets the patch address of the currently compiled method. Has to be 
79    extracted from the load instructions which lead to the jump.
80
81 from asmpart.S (asm_vm_call_method):
82 84:   2879 0000 0000  moveal 0 <asm_vm_call_method-0x34>,%a4
83 8a:   4e94            jsr %a4@
84
85
86 from invokestatic / invokespecial
87 0x40290882:   247c 4029 03b4    moveal #1076429748,%a2
88 0x40290888:   4e92              jsr %a2@
89
90 from invokevirtual
91 0x40297eca:   266a 0000         moveal %a2@(0),%a3
92 0x40297ece:   246b 002c         moveal %a3@(44),%a2
93 0x40297ed2:   4e92              jsr %a2@
94
95
96
97 *******************************************************************************/
98
99 void *md_jit_method_patch_address(void *pv, void *ra, void *mptr)
100 {
101         uint8_t *pc;
102         int16_t  disp;
103         void    *pa;
104
105         pc = (uint8_t *) ra;
106
107         if (*((u2*)(pc - 2)) == 0x4e94) {               /* jsr %a4@ */
108                 if (*((u2*)(pc - 6)) == 0x286b) {
109                         /* found an invokevirtual */
110                         /* get offset of load instruction 246b XXXX */
111                         disp = *((s2*)(pc - 4));
112
113                         /* return NULL if no mptr was specified (used for replacement) */
114
115                         if (mptr == NULL)
116                                 return NULL;
117
118                         pa = ((uint8_t *) mptr) + disp;/* mptr contains the magic we want */
119                 } else  {
120                         /* we had a moveal XXX, %a3 which is a 3 word opcode */
121                         /* 2679 0000 0000 */
122                         assert(*(u2*)(pc - 8) == 0x2879);               /* moveal */
123                         pa = (void*)*((u4*)(pc - 6));                           /* another indirection ! */
124                 }
125         } else if (*((u2*)(pc - 2)) == 0x4e92)  {               /* jsr %a2@ */
126                 if (*(u2*)(pc - 8) == 0x247c)   {
127                         /* found a invokestatic/invokespecial */
128                         pa = ((u4*)(pc - 6));                   /* no indirection ! */
129                 } else {
130                         assert(0);
131                 }
132         } else {
133                 assert(0);
134         }
135
136         return pa;
137 }
138
139 /* XXX i can't find a definition of cacheflush in any installed header files but i can find the symbol in libc */
140 /* lets extract the signature from the assembler code*/
141 /*
142     000e7158 <cacheflush>:
143     e7158:       707b            moveq #123,%d0
144     e715a:       2f04            movel %d4,%sp@-
145     e715c:       282f 0014       movel %sp@(20),%d4                     arg 
146     e7160:       2243            moveal %d3,%a1
147     e7162:       262f 0010       movel %sp@(16),%d3                     arg 
148     e7166:       2042            moveal %d2,%a0
149     e7168:       242f 000c       movel %sp@(12),%d2                     arg 
150     e716c:       222f 0008       movel %sp@(8),%d1                      arg 
151     e7170:       4e40            trap #0                                traps into system i guess
152     e7172:       2408            movel %a0,%d2
153     e7174:       2609            movel %a1,%d3
154     e7176:       281f            movel %sp@+,%d4
155     e7178:       223c ffff f001  movel #-4095,%d1
156     e717e:       b081            cmpl %d1,%d0
157     e7180:       6402            bccs e7184 <cacheflush+0x2c>
158     e7182:       4e75            rts
159     e7184:       4480            negl %d0
160     e7186:       2f00            movel %d0,%sp@-
161     e7188:       61ff fff3 82e2  bsrl 1f46c <D_MAX_EXP+0x1ec6d>
162     e718e:       209f            movel %sp@+,%a0@
163     e7190:       70ff            moveq #-1,%d0
164     e7192:       2040            moveal %d0,%a0
165     e7194:       4e75            rts
166     e7196:       4e75            rts
167                                                                         */
168
169 /* seems to have 4 arguments */
170 /* best guess: it is this syscall */
171 /* asmlinkage int sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) */
172 /* kernel 2.6.10 with freescale patches (the one I develop against) needs a patch of */
173 /* arch/m68k/kernel/sys_m68k.c(sys_cacheflush) */
174 /* evil hack: */
175 /*
176 void DcacheFlushInvalidateCacheBlock(void *start, unsigned long size);
177 void IcacheInvalidateCacheBlock(void *start, unsigned long size);
178
179 asmlinkage int
180 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
181 {
182         lock_kernel();
183         DcacheFlushInvalidateCacheBlock(addr, len);
184         IcacheInvalidateCacheBlock(addr, len);
185         unlock_kernel();
186         return 0;
187 }
188 */
189 extern int cacheflush(unsigned long addr, int scope, int cache, unsigned long len);
190
191 #include "asm/cachectl.h"       /* found more traces of the cacheflush function */
192 #include "errno.h"
193
194 void md_cacheflush(u1 *addr, s4 nbytes)  { cacheflush((unsigned long)addr, FLUSH_SCOPE_PAGE, FLUSH_CACHE_BOTH, nbytes); }
195 void md_dcacheflush(u1 *addr, s4 nbytes) { cacheflush((unsigned long)addr, FLUSH_SCOPE_PAGE, FLUSH_CACHE_DATA, nbytes); }
196 void md_icacheflush(u1* addr, s4 nbytes) { cacheflush((unsigned long)addr, FLUSH_SCOPE_LINE, FLUSH_CACHE_INSN, nbytes); }
197
198 /* md_stacktrace_get_returnaddress *********************************************
199
200    Returns the return address of the current stackframe, specified by
201    the passed stack pointer and the stack frame size.
202
203 *******************************************************************************/
204 u1* md_stacktrace_get_returnaddress(u1* sp, u4 framesize) 
205
206         /* return address is above stackpointer */
207         u1 *ra = *((u1**)(sp + framesize));
208         
209         /* XXX: This helps for now, but it's a ugly hack
210          * the problem _may_ be: the link instruction is used
211          * by some gcc generated code, and we get an additional word
212          * on the stack, the old framepointer. Its address is somewhere
213          * near sp, but that all depends the code generated by the compiler.
214          * I'm unsure about a clean solution.
215          */
216         #if 0
217         if (!(ra > 0x40000000 && ra < 0x80000000))      {
218                 ra = *((u1**)(sp + framesize + 4));
219         }
220         #endif
221         /* assert(ra > 0x40000000 && ra < 0x80000000);
222         printf("XXXXXX=%x\n", ra);
223          */
224         return ra;
225 }
226
227
228 /*
229  * These are local overrides for various environment variables in Emacs.
230  * Please do not remove this and leave it at the end of the file, where
231  * Emacs will automagically detect them.
232  * ---------------------------------------------------------------------
233  * Local variables:
234  * mode: c
235  * indent-tabs-mode: t
236  * c-basic-offset: 4
237  * tab-width: 4
238  * End:
239  * vim:noexpandtab:sw=4:ts=4:
240  */