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 |
/* $Id: config.h,v 1.2 1998/03/16 11:25:30 release Exp $ */
|
|
|
32 |
/*
|
|
|
33 |
$Log: config.h,v $
|
|
|
34 |
* Revision 1.2 1998/03/16 11:25:30 release
|
|
|
35 |
* Modifications prior to version 4.1.2.
|
|
|
36 |
*
|
|
|
37 |
* Revision 1.1.1.1 1998/01/17 15:56:01 release
|
|
|
38 |
* First version to be checked into rolling release.
|
|
|
39 |
*
|
|
|
40 |
* Revision 1.7 1995/09/20 10:46:48 john
|
|
|
41 |
* Changes isAlpha macro
|
|
|
42 |
*
|
|
|
43 |
* Revision 1.6 1995/09/13 11:03:44 john
|
|
|
44 |
* Added HAS_MAGIC flag
|
|
|
45 |
*
|
|
|
46 |
* Revision 1.5 1995/07/27 09:34:50 john
|
|
|
47 |
* Set diagnose_registers macro
|
|
|
48 |
*
|
|
|
49 |
* Revision 1.4 1995/06/28 10:23:17 john
|
|
|
50 |
* New option: has_rotate
|
|
|
51 |
*
|
|
|
52 |
* Revision 1.3 1995/06/13 13:59:54 john
|
|
|
53 |
* Changed default value of DO_SCHEDULE
|
|
|
54 |
*
|
|
|
55 |
* Revision 1.2 1995/05/23 10:54:18 john
|
|
|
56 |
* New configuration flag : has_bitfield_ops
|
|
|
57 |
*
|
|
|
58 |
* Revision 1.1.1.1 1995/03/23 10:39:04 john
|
|
|
59 |
* Entered into CVS
|
|
|
60 |
*
|
|
|
61 |
* Revision 1.18 1995/03/23 10:02:34 john
|
|
|
62 |
* Added DO_SCHEDULE macro
|
|
|
63 |
*
|
|
|
64 |
* Revision 1.17 1995/01/31 14:24:50 john
|
|
|
65 |
* Moved some definitions into TenDRA.h
|
|
|
66 |
*
|
|
|
67 |
* Revision 1.16 1995/01/10 09:39:16 john
|
|
|
68 |
* Added definition of value_of_null
|
|
|
69 |
*
|
|
|
70 |
*/
|
|
|
71 |
#ifndef config_key
|
|
|
72 |
#define config_key 1
|
|
|
73 |
|
|
|
74 |
#include "ossg_api.h"
|
|
|
75 |
#include "ossg.h"
|
|
|
76 |
|
|
|
77 |
#ifndef FS_64_BIT
|
|
|
78 |
#define FS_64_BIT 1
|
|
|
79 |
#endif
|
|
|
80 |
|
|
|
81 |
#ifndef FS_LITTLE_ENDIAN
|
|
|
82 |
#define FS_LITTLE_ENDIAN 1
|
|
|
83 |
#endif
|
|
|
84 |
|
|
|
85 |
#define isvax 0
|
|
|
86 |
#define ismips 0
|
|
|
87 |
#define is68000 0
|
|
|
88 |
#define is80x86 0
|
|
|
89 |
#define ispower 0
|
|
|
90 |
#define issparc 0
|
|
|
91 |
#define isAlpha 1
|
|
|
92 |
#define is80586 0
|
|
|
93 |
|
|
|
94 |
#define issco 0
|
|
|
95 |
|
|
|
96 |
#define has_setcc 0
|
|
|
97 |
#define little_end 1
|
|
|
98 |
#define has_byte_regs 0
|
|
|
99 |
#define has_byte_ops 0
|
|
|
100 |
#define only_lengthen_ops 1
|
|
|
101 |
#define has_neg_shift 0
|
|
|
102 |
#define regable_union 0
|
|
|
103 |
#define substitute_params 1
|
|
|
104 |
#define special_fns 0
|
|
|
105 |
#define shift_is_byte 1
|
|
|
106 |
#define only_inline_static 0
|
|
|
107 |
|
|
|
108 |
#define remove_zero_offsets 1
|
|
|
109 |
#define replace_compound 1
|
|
|
110 |
#define no_bitfield_ops 0
|
|
|
111 |
#define dont_unpad_apply 0
|
|
|
112 |
|
|
|
113 |
#define target_dbl_maxexp 308
|
|
|
114 |
|
|
|
115 |
#define check_shape 1
|
|
|
116 |
#define has64bits 1
|
|
|
117 |
#define maxmin_implemented 0
|
|
|
118 |
|
|
|
119 |
#define temp_mips 0
|
|
|
120 |
|
|
|
121 |
/* settings for foralls optimisations */
|
|
|
122 |
#define remove_unused_counters 1
|
|
|
123 |
#define remove_unused_index_counters 0
|
|
|
124 |
#define good_index_factor(f) 0
|
|
|
125 |
#define good_pointer_factor(f) 1
|
|
|
126 |
|
|
|
127 |
|
|
|
128 |
#define div0_implemented 0
|
|
|
129 |
|
|
|
130 |
#define condassign_implemented 0
|
|
|
131 |
|
|
|
132 |
#define substitute_complex 1
|
|
|
133 |
|
|
|
134 |
#define do_case_transforms 0 /* This does not work on the alpha */
|
|
|
135 |
#define jump_table_density 10
|
|
|
136 |
#define non_default_entries 0 /* 4 */
|
|
|
137 |
#define non_default_destinations 2
|
|
|
138 |
|
|
|
139 |
#define value_of_null 0
|
|
|
140 |
|
|
|
141 |
#define has_bitfield_ops 0
|
|
|
142 |
#define has_rotate 0
|
|
|
143 |
|
|
|
144 |
#ifndef DO_SCHEDULE
|
|
|
145 |
#define DO_SCHEDULE 0
|
|
|
146 |
#endif
|
|
|
147 |
|
|
|
148 |
#define diagnose_registers 1
|
|
|
149 |
|
|
|
150 |
#define HAS_MAGIC 1
|
|
|
151 |
|
|
|
152 |
#endif
|