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: coder.h,v 1.1.1.1 1998/01/17 15:55:59 release Exp $ */
|
|
|
32 |
/*
|
|
|
33 |
coder.h
|
|
|
34 |
*/
|
|
|
35 |
|
|
|
36 |
/*
|
|
|
37 |
$Log: coder.h,v $
|
|
|
38 |
* Revision 1.1.1.1 1998/01/17 15:55:59 release
|
|
|
39 |
* First version to be checked into rolling release.
|
|
|
40 |
*
|
|
|
41 |
* Revision 1.3 1995/08/21 08:44:07 john
|
|
|
42 |
* Changed include files
|
|
|
43 |
*
|
|
|
44 |
* Revision 1.2 1995/07/27 09:32:24 john
|
|
|
45 |
* New structure for postlude handling
|
|
|
46 |
*
|
|
|
47 |
* Revision 1.1.1.1 1995/03/23 10:39:29 john
|
|
|
48 |
* Entered into CVS
|
|
|
49 |
*
|
|
|
50 |
* Revision 1.4 1995/03/23 10:01:57 john
|
|
|
51 |
* Added support for scheduler
|
|
|
52 |
*
|
|
|
53 |
* Revision 1.3 1995/01/26 13:38:00 john
|
|
|
54 |
* Changed declaration of fscopefile
|
|
|
55 |
*
|
|
|
56 |
*/
|
|
|
57 |
|
|
|
58 |
#ifndef CODER_H
|
|
|
59 |
#define CODER_H
|
|
|
60 |
#include "addresstypes.h"
|
|
|
61 |
#include "procrectypes.h"
|
|
|
62 |
#include "exptypes.h"
|
|
|
63 |
|
|
|
64 |
extern where nowhere;
|
|
|
65 |
extern int fscopefile;
|
|
|
66 |
|
|
|
67 |
extern bool last_param PROTO_S ((exp));
|
|
|
68 |
extern makeans make_code PROTO_S ((exp e, space sp, where dest, int exitlab));
|
|
|
69 |
extern int bitsin PROTO_S ((int));
|
|
|
70 |
|
|
|
71 |
|
|
|
72 |
typedef struct _postl {
|
|
|
73 |
exp postlude;
|
|
|
74 |
struct _postl * outer;
|
|
|
75 |
} postlude_chain;
|
|
|
76 |
|
|
|
77 |
|
|
|
78 |
#if !DO_SCHEDULE
|
|
|
79 |
#define start_new_capsule(X)
|
|
|
80 |
#define close_capsule()
|
|
|
81 |
#define false 0
|
|
|
82 |
#define true 1
|
|
|
83 |
#endif
|
|
|
84 |
|
|
|
85 |
#endif
|