GNU header update.
[cacao.git] / src / vm / jit / alpha / types.h
index fac2f72e252f7126de1063af804563a836fe3407..8576ea968187d3adbb73db21d5fea929fea4eb32 100644 (file)
@@ -1,10 +1,9 @@
-/* jit/alpha/types.h - machine specific definitions for alpha processor
+/* vm/jit/alpha/types.h - machine specific definitions for alpha
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   Institut f. Computersprachen, TU Wien
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
-   S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
-   J. Wenninger
+   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
+   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
+   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
+   Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    Authors: Reinhard Grafl
             Andreas  Krall
-            Michael Gschwind
 
-   $Id: types.h 557 2003-11-02 22:51:59Z twisti $
+   Changes: Christian Thalinger
+
+   $Id: types.h 1735 2004-12-07 14:33:27Z twisti $
 
 */
 
 #ifndef _TYPES_H
 #define _TYPES_H
 
-#define POINTERSIZE         8
-#define WORDS_BIGENDIAN     0
-
-#define SUPPORT_DIVISION    0
-#define SUPPORT_LONG        1
-#define SUPPORT_FLOAT       1
-#define SUPPORT_DOUBLE      1
-
-#define SUPPORT_LONG_ADD    1
-#define SUPPORT_LONG_CMP    1
-#define SUPPORT_LONG_LOG    1
-#define SUPPORT_LONG_SHIFT  1
-#define SUPPORT_LONG_MULDIV 1
-#define SUPPORT_LONG_ICVT   1
-#define SUPPORT_LONG_FCVT   1
-
-#define CONDITIONAL_LOADCONST
+#include "vm/jit/alpha/arch.h"
 
-#define U8_AVAILABLE        1
 
+/* Define the sizes of the integer types used internally by cacao. */
 
 typedef signed char             s1;
 typedef unsigned char           u1;
@@ -75,6 +59,11 @@ typedef struct {u4 low, high;}  u8;
 #define s8 u8
 #endif
 
+
+/* Define the size of a function pointer used in function pointer casts. */
+
+typedef u8                      ptrint;
+
 #endif /* _TYPES_H */