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
#ifndef config_key
34
#define config_key 1
35
 
36
#include "ossg_api.h"
37
#include "ossg.h"
38
 
39
#ifndef FS_LITTLE_ENDIAN
40
#define FS_LITTLE_ENDIAN 0
41
#endif
42
 
43
#define INCLUDE_INITS 1
44
#define isvax 0
45
#define ismips 1
46
#define is68000 0
47
#define is80x86 0
48
#define ispower 0
49
#define issparc 0
50
#define isirix 1
51
#define isAlpha 0
52
 
53
#define issco 0
54
#define has64bits 0
55
 
56
#define has_setcc 0
57
#define little_end 0
58
#define has_byte_regs 0
59
#define has_byte_ops 0
60
#define only_lengthen_ops 1
61
#define has_neg_shift 0
62
#define regable_union 0
63
#define substitute_params 1
64
#define special_fns 1
65
#define shift_is_byte 1
66
#define only_inline_static 0
67
 
68
#define remove_zero_offsets 1
69
#define replace_compound 1
70
#define no_bitfield_ops 0
71
#define dont_unpad_apply 0
72
 
73
#define target_dbl_maxexp 308
74
 
75
#define check_shape 1
76
 
77
#define remove_unused_counters 1
78
#define remove_unused_index_counters 1
79
#define good_index_factor(f) 0
80
#define good_pointer_factor(f) 1
81
 
82
#define div0_implemented 1
83
 
84
#define keep_PIC_vars 1
85
 
86
#define do_case_transforms 0
87
/* Parameters for TDF->TDF case_optimisation */
88
 
89
#define jump_table_density 10        /* between 0 and 100 */
90
 
91
/* jump_table density is the percentage of entries which must be filled 
92
 * in a jump table in order for it to be created
93
 * So 0 would try to make everything into a jump table whereas 100
94
 * would mean only full jump tables could be put out
95
 */
96
 
97
#define non_default_entries 4      /* a positive integer */
98
 
99
/* non_default_entries is the minimum number of non default entries a
100
 * jump table can contain
101
 */
102
 
103
#define non_default_destinations 2  /* a positive integer */
104
 
105
/* non_default_destinations is the minimum number of non default destinations
106
 * a jump table can contain
107
 */
108
#define substitute_complex 1
109
 
110
#define temp_mips 0
111
#define value_of_null 0
112
 
113
#define has_rotate 0
114
 
115
#define promote_pars 1
116
 
117
#define HAS_MAGIC
118
 
119
#endif