af88926269a9280c7376c1bace08dd9b1d228ec0
[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    $Id: types.h 4357 2006-01-22 23:33:38Z twisti $
33
34 */
35
36
37 #ifndef _CACAO_TYPES_H
38 #define _CACAO_TYPES_H
39
40 #include "config.h"
41
42
43 /* In this file we check for unknown pointersizes, so we don't have to
44    do this somewhere else. */
45
46 /* Define the sizes of the integer types used internally by CACAO. ************/
47
48 typedef signed char             s1;
49 typedef unsigned char           u1;
50  
51 typedef signed short int        s2;
52 typedef unsigned short int      u2;
53
54 typedef signed int              s4;
55 typedef unsigned int            u4;
56
57 #if SIZEOF_VOID_P == 8
58 typedef signed long int         s8;
59 typedef unsigned long int       u8;
60 #elif SIZEOF_VOID_P == 4
61 typedef signed long long int    s8;
62 typedef unsigned long long int  u8;
63 #else
64 #error unknown pointer size
65 #endif
66
67
68 /* Define the size of a function pointer used in function pointer casts. ******/
69
70 #if SIZEOF_VOID_P == 8
71 typedef u8                      ptrint;
72 #else
73 typedef u4                      ptrint;
74 #endif
75
76 #endif /* _CACAO_TYPES_H */
77
78
79 /*
80  * These are local overrides for various environment variables in Emacs.
81  * Please do not remove this and leave it at the end of the file, where
82  * Emacs will automagically detect them.
83  * ---------------------------------------------------------------------
84  * Local variables:
85  * mode: c
86  * indent-tabs-mode: t
87  * c-basic-offset: 4
88  * tab-width: 4
89  * End:
90  */