CACAO
md-trap.hpp
Go to the documentation of this file.
1 /* src/vm/jit/arm/md-trap.hpp - ARM hardware traps
2 
3  Copyright (C) 1996-2013
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_HPP_
27 #define MD_TRAP_HPP_ 1
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 {
44 
45  /* Skip 1 because it's the SIGTRAP illegal instruction. */
46 
56  TRAP_THROW = 11,
58 };
59 
60 
61 /**
62  * Macro to fixup a compiler stub. The XPC is the RA minus 4,
63  * because the RA points to the instruction after the call.
64  */
65 #define MD_TRAP_COMPILER_FIXUP(xpc, ra, sp, pv) \
66  do { \
67  (xpc) = (void*) (((uintptr_t) (ra)) - 4); \
68  } while(0)
69 
70 
71 #endif // MD_TRAP_HPP_
72 
73 
74 /*
75  * These are local overrides for various environment variables in Emacs.
76  * Please do not remove this and leave it at the end of the file, where
77  * Emacs will automagically detect them.
78  * ---------------------------------------------------------------------
79  * Local variables:
80  * mode: c++
81  * indent-tabs-mode: t
82  * c-basic-offset: 4
83  * tab-width: 4
84  * End:
85  * vim:noexpandtab:sw=4:ts=4:
86  */