4674ba14695f982afcbb630146e3a2b05c3ba24a
[cacao.git] / src / vm / jit / inline / parseRT.h
1 /* jit/parseRT.h - RTA parser header
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
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: Carolyn Oates
28
29    $Id: parseRT.h 1557 2004-11-22 12:01:16Z carolyn $
30
31 */
32
33 #ifndef _PARSERT_H
34 #define _PARSERT_H
35
36 #include "global.h"
37
38 extern FILE *rtMissed;   /* Methods missed during RTA parse of Main  */
39
40 typedef struct {
41         listnode linkage;
42         methodinfo *method;
43         } rtaNode ;
44
45
46 extern int RT_jit_parse(methodinfo *m);
47
48 #define METHINFOx(mm) \
49     { \
50         printf("<c%i/m%i/p%i>\t", \
51                 mm->class->classUsed,mm->methodUsed, mm->monoPoly); \
52         method_display_w_class(mm); }
53
54 #define METHINFO(mm,flg) \
55 if (flg) { \
56         printf("<c%i/m%i/p%i>\t", \
57                 mm->class->classUsed,mm->methodUsed, mm->monoPoly); \
58         method_display_w_class(mm); }
59
60 #define METHINFOtx(mm,TXT) \
61                  { \
62                 printf(TXT); \
63                 METHINFOx(mm) \
64                 }
65
66 #define METHINFOt(mm,TXT,flg) \
67 if (flg) { \
68                 printf(TXT); \
69                 METHINFO(mm,flg) \
70                 }
71
72 #define CLASSNAME1(cls,TXT,flg) \
73 if (flg) {printf(TXT); \
74         printf("<c%i>\t",cls->classUsed); \
75         utf_display(cls->name); fflush(stdout);}
76
77 #define CLASSNAMEop(cls,flg) \
78 if (flg) {printf("\t%s: ",opcode_names[opcode]);\
79         printf("<c%i>\t",cls->classUsed); \
80         utf_display(cls->name); printf("\n");fflush(stdout);}
81
82 #define CLASSNAME(cls,TXT,flg) \
83 if (flg) { printf(TXT); \
84                 printf("<c%i>\t",cls->classUsed); \
85                 utf_display(cls->name); printf("\n");fflush(stdout);} 
86
87 #define SHOWOPCODE \
88 if (DEBUGopcodes== true) {printf("Parse p=%i<%i<   opcode=<%i> %s\n", \
89                            p, m->jcodelength,opcode,opcode_names[opcode]);}
90
91
92
93 #endif /* _PARSERT_H */
94
95 /*
96  * These are local overrides for various environment variables in Emacs.
97  * Please do not remove this and leave it at the end of the file, where
98  * Emacs will automagically detect them.
99  * ---------------------------------------------------------------------
100  * Local variables:
101  * mode: c
102  * indent-tabs-mode: t
103  * c-basic-offset: 4
104  * tab-width: 4
105  * End:
106  */
107