Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    		 Crown Copyright (c) 1997
3
 
4
    This TenDRA(r) Computer Program is subject to Copyright
5
    owned by the United Kingdom Secretary of State for Defence
6
    acting through the Defence Evaluation and Research Agency
7
    (DERA).  It is made available to Recipients with a
8
    royalty-free licence for its use, reproduction, transfer
9
    to other parties and amendment for any purpose not excluding
10
    product development provided that any such use et cetera
11
    shall be deemed to be acceptance of the following conditions:-
12
 
13
        (1) Its Recipients shall ensure that this Notice is
14
        reproduced upon any copies or amended versions of it;
15
 
16
        (2) Any amended version of it shall be clearly marked to
17
        show both the nature of and the organisation responsible
18
        for the relevant amendment or amendments;
19
 
20
        (3) Its onward transfer from a recipient to another
21
        party shall be deemed to be that party's acceptance of
22
        these conditions;
23
 
24
        (4) DERA gives no warranty or assurance as to its
25
        quality or suitability for any purpose and DERA accepts
26
        no liability whatsoever in relation to any use to which
27
        it may be put.
28
*/
29
 
30
 
31
 
32
 
33
/*
34
			    VERSION INFORMATION
35
			    ===================
36
 
37
--------------------------------------------------------------------------
38
$Header: /u/g/release/CVSROOT/Source/src/installers/sparc/common/szs_als.h,v 1.1.1.1 1998/01/17 15:55:55 release Exp $
39
--------------------------------------------------------------------------
40
$Log: szs_als.h,v $
41
 * Revision 1.1.1.1  1998/01/17  15:55:55  release
42
 * First version to be checked into rolling release.
43
 *
44
 * Revision 1.3  1996/09/05  16:27:29  pwe
45
 * alloca alignment is 64, not 32
46
 *
47
 * Revision 1.2  1996/01/23  10:31:29  john
48
 * Changed frame alignment
49
 *
50
 * Revision 1.1.1.1  1995/03/13  10:18:58  john
51
 * Entered into CVS
52
 *
53
 * Revision 1.3  1995/02/28  14:02:27  john
54
 * Added 64 bit sizes & alignments
55
 *
56
 * Revision 1.2  1994/07/04  09:24:54  djch
57
 * Jun94 tape version
58
 *
59
 * Revision 1.1  1994/05/03  14:50:45  djch
60
 * Initial revision
61
 *
62
 * Revision 1.3  93/09/27  14:57:08  14:57:08  ra (Robert Andrews)
63
 * Correct LDOUBLE_BITS to 113.
64
 * 
65
 * Revision 1.2  93/08/13  14:47:25  14:47:25  ra (Robert Andrews)
66
 * Define DOUBLE_SZ according to the value of use_long_double.
67
 * 
68
 * Revision 1.1  93/06/24  14:59:31  14:59:31  ra (Robert Andrews)
69
 * Initial revision
70
 * 
71
--------------------------------------------------------------------------
72
*/
73
 
74
 
75
#ifndef SZS_ALS_INCLUDED
76
#define SZS_ALS_INCLUDED
77
 
78
 
79
/*
80
    BASIC SIZES AND ALIGNMENTS
81
*/
82
 
83
#define TOP_SZ			( ( long ) 0 )
84
#define TOP_ALIGN		const_al1
85
 
86
#define PROC_SZ			( ( long ) 32 )
87
#define PROC_ALIGN		const_al32
88
 
89
#define LLVALUE_SZ		( ( long ) 32 )
90
#define LLVALUE_ALIGN		const_al32
91
 
92
#define PTR_SZ			( ( long ) 32 )
93
#define PTR_ALIGN		const_al32
94
#define PTRBIT_SZ		( ( long ) 32 )
95
 
96
#define OFFSET_SZ		( ( long ) 32 )
97
#define OFFSET_ALIGN		const_al32
98
 
99
#define BF_ALIGN		const_al1
100
#define STRUCT_ALIGN		const_al8
101
 
102
#define SHREAL_SZ		( ( long ) 32 )
103
#define SHREAL_ALIGN		const_al32
104
 
105
#define REAL_SZ			( ( long ) 64 )
106
#define REAL_ALIGN		const_al64
107
 
108
#if use_long_double
109
#define DOUBLE_SZ		( ( long ) 128 )
110
#else
111
#define DOUBLE_SZ		( ( long ) 64 )
112
#endif
113
#define DOUBLE_ALIGN		const_al64
114
 
115
#define UCHAR_SZ		( ( long ) 8 )
116
#define UCHAR_ALIGN		const_al8
117
 
118
#define SCHAR_SZ		( ( long ) 8 )
119
#define SCHAR_ALIGN		const_al8
120
 
121
#define UWORD_SZ		( ( long ) 16 )
122
#define UWORD_ALIGN		const_al16
123
 
124
#define SWORD_SZ		( ( long ) 16 )
125
#define SWORD_ALIGN		const_al16
126
 
127
#define ULONG_SZ		( ( long ) 32 )
128
#define ULONG_ALIGN		const_al32
129
 
130
#define U64_SZ			( ( long ) 64 )
131
#define U64_ALIGN		const_al32
132
 
133
#define S64_SZ			( ( long ) 64 )
134
#define S64_ALIGN		const_al32
135
 
136
#define SLONG_SZ		( ( long ) 32 )
137
#define SLONG_ALIGN		const_al32
138
 
139
#define BF_STORE_UNIT		( ( long ) 32 )
140
#define MAX_BF_SIZE		const_al32
141
 
142
#define ALLOCA_ALIGN		const_al64
143
#define FRAME_ALIGN		const_al64
144
#define VAR_PARAM_ALIGN		const_al32
145
#define CODE_ALIGN		const_al32
146
#define MIN_PAR_ALIGNMENT	const_al32
147
 
148
/*
149
    FLOATING POINT MANTISSA SIZES
150
*/
151
 
152
#define FLOAT_BITS		24
153
#define DOUBLE_BITS		53
154
#define LDOUBLE_BITS		113
155
 
156
 
157
#endif /* SZS_ALS_INCLUDED */