Renamed.
[cacao.git] / src / vm / jit / helper.c
1 /* src/vm/jit/asmhelper.c - code patching helper 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: helper.c 2250 2005-04-07 11:19:55Z twisti $
32
33 */
34
35
36 #include "vm/class.h"
37 #include "vm/exceptions.h"
38 #include "vm/method.h"
39 #include "vm/references.h"
40 #include "vm/resolve.h"
41
42 /* XXX class_resolveclassmethod */
43 #include "vm/loader.h"
44
45
46 /* asm_builtin_new_helper ******************************************************
47
48    This function is called from asm_builtin_new code patching function.
49
50 *******************************************************************************/
51
52 classinfo *asm_builtin_new_helper(constant_classref *cr)
53 {
54         classinfo  *c;
55
56         /* resolve and load the class */
57
58         if (!resolve_classref(NULL, cr, resolveEager, true, &c))
59                 return NULL;
60
61         /* return the classinfo pointer */
62
63         return c;
64 }
65
66
67 /* asm_invokespecial_helper ****************************************************
68
69    This function is called from asm_invokespecial code patching function.
70
71 *******************************************************************************/
72
73 u1 *asm_invokespecial_helper(unresolved_method *um)
74 {
75         methodinfo *m;
76
77         /* resolve the method */
78
79         if (!resolve_method(um, resolveEager, &m))
80                 return NULL;
81
82         /* return the method pointer */
83
84         return m->stubroutine;
85 }
86
87
88 /*
89  * These are local overrides for various environment variables in Emacs.
90  * Please do not remove this and leave it at the end of the file, where
91  * Emacs will automagically detect them.
92  * ---------------------------------------------------------------------
93  * Local variables:
94  * mode: c
95  * indent-tabs-mode: t
96  * c-basic-offset: 4
97  * tab-width: 4
98  * End:
99  * vim:noexpandtab:sw=4:ts=4:
100  */