Merged with tip.
[cacao.git] / src / vm / jit / arm / md-trap.h
1 /* src/vm/jit/arm/md-trap.h - ARM hardware traps
2
3    Copyright (C) 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _MD_TRAP_H
27 #define _MD_TRAP_H
28
29 #include "config.h"
30
31
32 /**
33  * Trap number defines.
34  *
35  * On this architecture (arm) we use illegal instructions as trap
36  * instructions.  Since the illegal instruction with the value 1 is
37  * used by the kernel to generate a SIGTRAP, we skip this one.
38  */
39
40 #define TRAP_INSTRUCTION_IS_LOAD    0
41
42 enum {
43         TRAP_NullPointerException           = 0,
44
45         /* Skip 1 because it's the SIGTRAP illegal instruction. */
46
47         TRAP_ArithmeticException            = 2,
48         TRAP_ArrayIndexOutOfBoundsException = 3,
49         TRAP_ArrayStoreException            = 4,
50         TRAP_ClassCastException             = 5,
51         TRAP_CHECK_EXCEPTION                = 6,
52         TRAP_PATCHER                        = 7,
53         TRAP_COMPILER                       = 8
54 };
55
56 #endif /* _MD_TRAP_H */
57
58
59 /*
60  * These are local overrides for various environment variables in Emacs.
61  * Please do not remove this and leave it at the end of the file, where
62  * Emacs will automagically detect them.
63  * ---------------------------------------------------------------------
64  * Local variables:
65  * mode: c
66  * indent-tabs-mode: t
67  * c-basic-offset: 4
68  * tab-width: 4
69  * End:
70  * vim:noexpandtab:sw=4:ts=4:
71  */