* Removed all Id tags.
[cacao.git] / src / vm / types.h
1 /* src/vm/types.h - type definitions for CACAO's internal types
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Reinhard Grafl
28             Andreas  Krall
29
30    Changes: Christian Thalinger
31
32 */
33
34
35 #ifndef _CACAO_TYPES_H
36 #define _CACAO_TYPES_H
37
38 #include "config.h"
39
40
41 /* In this file we check for unknown pointersizes, so we don't have to
42    do this somewhere else. */
43
44 /* Define the sizes of the integer types used internally by CACAO. ************/
45
46 typedef signed char             s1;
47 typedef unsigned char           u1;
48  
49 typedef signed short int        s2;
50 typedef unsigned short int      u2;
51
52 typedef signed int              s4;
53 typedef unsigned int            u4;
54
55 #if SIZEOF_VOID_P == 8
56 typedef signed long int         s8;
57 typedef unsigned long int       u8;
58 #elif SIZEOF_VOID_P == 4
59 typedef signed long long int    s8;
60 typedef unsigned long long int  u8;
61 #else
62 #error unknown pointer size
63 #endif
64
65
66 /* Define the size of a function pointer used in function pointer casts. ******/
67
68 #if SIZEOF_VOID_P == 8
69 typedef u8                      ptrint;
70 #else
71 typedef u4                      ptrint;
72 #endif
73
74 #endif /* _CACAO_TYPES_H */
75
76
77 /*
78  * These are local overrides for various environment variables in Emacs.
79  * Please do not remove this and leave it at the end of the file, where
80  * Emacs will automagically detect them.
81  * ---------------------------------------------------------------------
82  * Local variables:
83  * mode: c
84  * indent-tabs-mode: t
85  * c-basic-offset: 4
86  * tab-width: 4
87  * End:
88  */