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) 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
$Author: pwe $
33
$Date: 1998/03/11 11:03:45 $
34
$Revision: 1.3 $
35
$Log: dw2_info.h,v $
36
 * Revision 1.3  1998/03/11  11:03:45  pwe
37
 * DWARF optimisation info
38
 *
39
 * Revision 1.2  1998/02/18  11:22:22  pwe
40
 * test corrections
41
 *
42
 * Revision 1.1.1.1  1998/01/17  15:55:48  release
43
 * First version to be checked into rolling release.
44
 *
45
 * Revision 1.9  1997/12/04  19:41:37  pwe
46
 * ANDF-DE V1.9
47
 *
48
 * Revision 1.8  1997/11/06  09:22:18  pwe
49
 * ANDF-DE V1.8
50
 *
51
 * Revision 1.7  1997/10/28  10:14:26  pwe
52
 * local location corrections
53
 *
54
 * Revision 1.6  1997/10/23  09:27:45  pwe
55
 * ANDF-DE v1.7, extra diags
56
 *
57
 * Revision 1.5  1997/10/10  18:18:42  pwe
58
 * prep ANDF-DE revision
59
 *
60
 * Revision 1.4  1997/08/23  13:36:48  pwe
61
 * initial ANDF-DE
62
 *
63
 * Revision 1.3  1997/04/17  11:50:29  pwe
64
 * Sparc and 80x86 support
65
 *
66
 * Revision 1.2  1997/04/01  17:19:43  pwe
67
 * diagnose pl_tests and locate -> platform specific
68
 *
69
 * Revision 1.1  1997/03/20  16:09:21  pwe
70
 * first version
71
 *
72
**********************************************************************/
73
 
74
#ifndef dw2_info_key
75
#define dw2_info_key
76
 
77
typedef enum
78
{
79
  GLOBAL_NAME,
80
  LOCAL_NAME,
81
  DEAD_NAME,
82
  PARAM_NAME,
83
  INL_PARAM_NAME,
84
  EXCEPT_NAME,
85
  MEMBER_NAME
86
} dg_nm_contex;
87
 
88
extern void dw2_out_name PROTO_S ((dg_name di, dg_nm_contex contex));
89
extern void dw2_out_generic PROTO_S ((dg_name_list p));
90
extern void dw_out_const PROTO_S ((exp e));
91
extern void dw_out_default PROTO_S ((dg_default * d));
92
extern void complete_defaults PROTO_S ((void));
93
extern void dw2_proc_start PROTO_S ((exp p, dg_name d));
94
extern void dw2_return_pos PROTO_S ((long over));
95
extern void dw2_proc_end PROTO_S ((exp p));
96
extern void dw2_code_info PROTO_S ((dg_info d, void (*mcode)(void *), void * args));
97
extern dg_where find_diag_res PROTO_S ((void * args));
98
 
99
extern long dw2_scope_start;
100
extern int dw_doing_branch_tests;
101
 
102
#endif