Subversion Repositories tendra.SVN

Rev

Go to most recent revision | 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
/* freebsd/config.h */
32
 
33
#ifndef config_key
34
#define config_key 1
35
 
36
 
37
/* API SPECIFICATION */
38
#include "ossg_api.h"
39
#include "ossg.h"
40
 
41
#ifndef FS_LITTLE_ENDIAN
42
#define FS_LITTLE_ENDIAN	1
43
#endif
44
 
45
 
46
#define isvax 0
47
#define ismips 0
48
#define is68000 0
49
#define is80x86 1
50
#define ispower 0
51
#define issparc 0
52
#define istrans 0
53
#define ishppa 0
54
#define isAlpha 0
55
 
56
#define issco 0
57
#define issol86 0
58
#define islinux 0
59
#define isfreebsd 1
60
#define remove_struct_ref 1
61
 
62
#define has_setcc 1
63
#define little_end 1
64
#define has_byte_regs 1
65
#define has_byte_ops 1
66
#define only_lengthen_ops 1
67
#define has_neg_shift 0
68
#define regable_union 0
69
#define substitute_params 1
70
#define special_fns 1
71
#define shift_is_byte 1
72
#define only_inline_static 0
73
#define remove_zero_offsets 1
74
#define replace_compound 1
75
#define no_bitfield_ops 1
76
#define dont_unpad_apply 0
77
#define diagnose_registers 1
78
#define DWARF 0
79
#define load_ptr_pars 1
80
#define use_long_double 1
81
#define has64bits 1
82
#define keep_PIC_vars 0
83
#define div0_implemented 1
84
#define do_case_transforms 1
85
#define substitute_complex 1
86
#define has_rotate 1
87
#define GCC_STRUCTS 1
88
 
89
 
90
#define maxmin_implemented 1
91
#define condassign_implemented 0
92
 
93
#define target_dbl_maxexp 308
94
 
95
#define check_shape 1
96
#define value_of_null 0
97
#define no_trap_on_nil_contents 1
98
 
99
#define prefix_length 1	/* strlen(name_prefix) */
100
#define AVOID_INTOV 0	/* No software interrupts */
101
#define normal_fpucon 0x1272
102
 
103
 
104
/* Parameters for foralls optimisations */
105
 
106
#define remove_unused_counters 0
107
#define remove_unused_index_counters 0
108
#define good_index_factor(f) 0
109
#define good_pointer_factor(f) ((f) != 1 && (f) != 2 && (f) != 4 && (f) != 8)
110
 
111
/* Parameters for TDF->TDF case_optimisation */
112
 
113
#define jump_table_density 10        /* between 0 and 100 */
114
 
115
/* jump_table density is the percentage of entries which must be filled 
116
 * in a jump table in order for it to be created
117
 * So 0 would try to make everything into a jump table whereas 100
118
 * would mean only full jump tables could be put out
119
 */
120
 
121
#define non_default_entries 4      /* a positive integer */
122
 
123
/* non_default_entries is the minimum number of non default entries a
124
 * jump table can contain
125
 */
126
 
127
#define non_default_destinations 2  /* a positive integer */
128
 
129
/* non_default_destinations is the minimum number of non default destinations
130
 * a jump table can contain
131
 */
132
 
133
 
134
 
135
#define temp_mips 0
136
 
137
#endif