7763e56f1881132dedd7ed45d96cc3cac6dad289
[cacao.git] / src / vm / jit / x86_64 / types.h
1 /* jit/x86_64/types.h - cacao types for x86_64
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
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: Christian Thalinger
28
29    $Id: types.h 1621 2004-11-30 13:06:55Z twisti $
30
31 */
32
33
34 #ifndef _CACAO_TYPES_H
35 #define _CACAO_TYPES_H
36
37 #include "vm/jit/x86_64/arch.h"
38
39
40 /* define the sizes of the integer types used internally by cacao */
41
42 typedef signed char             s1;
43 typedef unsigned char           u1;
44  
45 typedef signed short int        s2;
46 typedef unsigned short int      u2;
47
48 typedef signed int              s4;
49 typedef unsigned int            u4;
50
51 #if U8_AVAILABLE
52 typedef signed long int         s8;
53 typedef unsigned long int       u8;
54 #else
55 typedef struct {u4 low, high;}  u8;
56 #define s8 u8
57 #endif
58
59
60 /* define size of a function pointer used in function pointer casts */
61
62 typedef u8                      ptrint;
63
64 #endif /* _CACAO_TYPES_H */
65
66
67 /*
68  * These are local overrides for various environment variables in Emacs.
69  * Please do not remove this and leave it at the end of the file, where
70  * Emacs will automagically detect them.
71  * ---------------------------------------------------------------------
72  * Local variables:
73  * mode: c
74  * indent-tabs-mode: t
75  * c-basic-offset: 4
76  * tab-width: 4
77  * End:
78  */