Subversion Repositories tendra.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    		 Crown Copyright (c) 1996
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
			    VERSION INFORMATION
31
			    ===================
32
 
33
--------------------------------------------------------------------------
34
$Header: /u/g/release/CVSROOT/Source/src/installers/680x0/common/mach_ins.h,v 1.1.1.1 1998/01/17 15:55:49 release Exp $
35
--------------------------------------------------------------------------
36
$Log: mach_ins.h,v $
37
 * Revision 1.1.1.1  1998/01/17  15:55:49  release
38
 * First version to be checked into rolling release.
39
 *
40
Revision 1.1.1.1  1997/10/13 12:42:55  ma
41
First version.
42
 
43
Revision 1.3  1997/10/13 08:49:37  ma
44
Made all pl_tests for general proc & exception handling pass.
45
 
46
Revision 1.2  1997/05/13 11:30:35  ma
47
Introduced make_comment for debug.
48
 
49
Revision 1.1.1.1  1997/03/14 07:50:14  ma
50
Imported from DRA
51
 
52
 * Revision 1.1.1.1  1996/09/20  10:56:55  john
53
 *
54
 * Revision 1.2  1996/07/05  14:22:32  john
55
 * Changes for spec 3.1
56
 *
57
 * Revision 1.1.1.1  1996/03/26  15:45:14  john
58
 *
59
 * Revision 1.2  94/02/21  16:00:14  16:00:14  ra (Robert Andrews)
60
 * A couple of flags which used to be bool are now int.
61
 * 
62
 * Revision 1.1  93/02/22  17:16:05  17:16:05  ra (Robert Andrews)
63
 * Initial revision
64
 * 
65
--------------------------------------------------------------------------
66
*/
67
 
68
 
69
#ifndef MACH_INS_INCLUDED
70
#define MACH_INS_INCLUDED
71
 
72
extern void make_instr_aux PROTO_S ( ( int, mach_op *, mach_op *, bitpattern, int ) ) ;
73
 
74
#define  make_instr( A, B, C, D )\
75
    make_instr_aux ( ( A ), ( B ), ( C ), ( D ), 0 )
76
 
77
extern int output_immediately ;
78
extern mach_ins *all_mach_ins ;
79
extern mach_ins *current_ins ;
80
extern void free_all_ins PROTO_S ( ( void ) ) ;
81
extern void reclaim_ins PROTO_S ( ( mach_ins * ) ) ;
82
 
83
extern long last_jump ;
84
extern bitpattern last_jump_regs ;
85
 
86
extern void make_external_label PROTO_S ( ( char * ) ) ;
87
extern void make_jump PROTO_S ( ( int, long ) ) ;
88
extern void make_label PROTO_S ( ( long ) ) ;
89
extern void set_special PROTO_S ( ( char *, mach_op * ) ) ;
90
#ifdef EBUG
91
extern void make_comment PROTO_S ( ( char *) ) ;
92
#else
93
#define make_comment( X )
94
#endif
95
 
96
#endif
97
 
98
 
99
 
100
 
101
 
102
 
103
 
104
 
105
 
106
 
107
 
108
 
109