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
/* 80x86/coderdecs.h */
32
 
33
/**********************************************************************
34
$Author: pwe $
35
$Date: 1998/03/11 11:03:02 $
36
$Revision: 1.2 $
37
$Log: coder.h,v $
38
 * Revision 1.2  1998/03/11  11:03:02  pwe
39
 * DWARF optimisation info
40
 *
41
 * Revision 1.1.1.1  1998/01/17  15:55:51  release
42
 * First version to be checked into rolling release.
43
 *
44
 * Revision 1.7  1997/10/10  18:24:59  pwe
45
 * prep ANDF-DE revision
46
 *
47
 * Revision 1.6  1996/07/31  12:56:48  pwe
48
 * restore alloca stack after longjump
49
 *
50
 * Revision 1.5  1995/08/23  09:42:31  pwe
51
 * track fpu control word for trap etc
52
 *
53
 * Revision 1.4  1995/08/14  13:53:24  pwe
54
 * several corrections, tail calls and error jumps
55
 *
56
 * Revision 1.3  1995/08/04  08:29:04  pwe
57
 * 4.0 general procs implemented
58
 *
59
 * Revision 1.2  1995/01/30  12:56:02  pwe
60
 * Ownership -> PWE, tidy banners
61
 *
62
 * Revision 1.1  1994/10/27  14:15:22  jmf
63
 * Initial revision
64
 *
65
 * Revision 1.1  1994/07/12  14:28:42  jmf
66
 * Initial revision
67
 *
68
**********************************************************************/
69
 
70
#ifndef coder_key
71
#define coder_key 1
72
 
73
 
74
extern void coder PROTO_S ((where dest, ash stack, exp e));
75
extern int regsinuse;
76
extern int min_rfree;
77
extern int bits_in[16];
78
extern int max_stack;
79
extern int crt_ret_lab;
80
extern int crt_ret_lab_used;
81
extern outofline * odd_bits;
82
extern int last_odd_bit;
83
extern int doing_odd_bits;
84
extern outofline * current_odd_bit;
85
extern int repeat_level;
86
extern int not_in_params;
87
extern int not_in_postlude;
88
extern void clean_stack PROTO_S ((void));
89
extern int retjmp_count;
90
extern float scale;
91
extern exp crt_proc_exp;
92
extern exp vc_pointer;
93
extern int callee_size;
94
extern int has_dy_callees;
95
extern int has_tail_call;
96
extern int has_same_callees;
97
extern int need_preserve_stack;
98
extern int proc_has_asm;
99
 
100
#ifdef NEWDIAGS
101
extern void diag_arg PROTO_S ((where dest, ash stack, exp e));
102
#endif
103
 
104
#endif