42879d658d995b8d1f805565b5f9cec71a75e01f
[cacao.git] / src / vm / types.h
1 /* src/vm/types.h - type definitions for CACAO's internal types
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28             Andreas  Krall
29
30    Changes: Christian Thalinger
31
32    $Id: types.h 3214 2005-09-19 13:03:22Z 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  */