Fix LDC, LDC_W, and INSTANCEOF opcodes, more debugging
[jamvm-avr32-jem.git] / src / interp / inlining.h
blob3f77851568cce6db9bb3933f6404345b0e6517cf
1 /*
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007
3 * Robert Lougher <rob@lougher.org.uk>.
5 * This file is part of JamVM.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #define LABELS_SIZE 256
23 #define GOTO_START 230
24 #define GOTO_END 255
26 #ifdef USE_CACHE
27 #define HANDLERS 3
28 #define ENTRY_LABELS 0
29 #define START_LABELS 3
30 #define END_LABELS 6
31 #else
32 #define HANDLERS 1
33 #define ENTRY_LABELS 0
34 #define START_LABELS 1
35 #define END_LABELS 2
36 #endif
38 #define MEMCMP_FAILED -1
39 #define END_REORDERED -2
40 #define END_BEFORE_ENTRY -3
42 #ifdef INLINING
43 extern uintptr_t *executeJava2();
44 extern int calculateRelocatability(int handler_sizes[HANDLERS][LABELS_SIZE]);
45 #endif