2 |
7u83 |
1 |
/*
|
|
|
2 |
Crown Copyright (c) 1998
|
|
|
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/15 16:00:37 $
|
|
|
34 |
$Revision: 1.2 $
|
|
|
35 |
$Log: dw2_locdata.h,v $
|
|
|
36 |
* Revision 1.2 1998/03/15 16:00:37 pwe
|
|
|
37 |
* regtrack dwarf dagnostics added
|
|
|
38 |
*
|
|
|
39 |
* Revision 1.1 1998/03/11 11:03:47 pwe
|
|
|
40 |
* DWARF optimisation info
|
|
|
41 |
*
|
|
|
42 |
**********************************************************************/
|
|
|
43 |
|
|
|
44 |
#ifndef dw2_loc_key
|
|
|
45 |
#define dw2_loc_key
|
|
|
46 |
|
|
|
47 |
typedef struct obl
|
|
|
48 |
{
|
|
|
49 |
dg_name obj;
|
|
|
50 |
int islist;
|
|
|
51 |
struct obl * next;
|
|
|
52 |
} obj_list;
|
|
|
53 |
|
|
|
54 |
extern obj_list * local_objects;
|
|
|
55 |
|
|
|
56 |
extern void set_locdata PROTO_S ((obj_list this_obl));
|
|
|
57 |
extern void close_locdata PROTO_S ((obj_list this_obl));
|
|
|
58 |
extern void set_optim_objects PROTO_S ((dg_info optim, int start));
|
|
|
59 |
extern void set_remval_object PROTO_S ((dg_info rmv));
|
|
|
60 |
extern void set_obj_rets PROTO_S ((retrec * rec));
|
|
|
61 |
extern int decide_ll_type PROTO_S ((exp x));
|
|
|
62 |
extern void out_obj_loclist PROTO_S ((long l1, long l2, exp x));
|
|
|
63 |
extern void out_obj_extloclist PROTO_S ((long l1, long l2, exp x));
|
|
|
64 |
extern void out_obj_shared_set PROTO_S ((dg_name dn));
|
|
|
65 |
|
|
|
66 |
extern void * dw_new_regshare PROTO_S ((dg_name nm, int reg));
|
|
|
67 |
extern void dw_add_regshare PROTO_S ((void * w, dg_name nm, long start, long end));
|
|
|
68 |
extern dg_name find_equiv_object PROTO_S ((exp e, int isc));
|
|
|
69 |
|
|
|
70 |
extern void init_dw_locdata PROTO_S ((void));
|
|
|
71 |
extern void complete_dw_locdata PROTO_S ((void));
|
|
|
72 |
|
|
|
73 |
|
|
|
74 |
#endif
|