Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra5/src/installers/common/dwarf2/dw2_basic.h – Rev 2

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
/**********************************************************************
32
$Author: pwe $
33
$Date: 1998/03/15 16:00:33 $
34
$Revision: 1.3 $
35
$Log: dw2_basic.h,v $
36
 * Revision 1.3  1998/03/15  16:00:33  pwe
37
 * regtrack dwarf dagnostics added
38
 *
39
 * Revision 1.2  1998/03/11  11:03:38  pwe
40
 * DWARF optimisation info
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.8  1997/12/04  19:41:14  pwe
46
 * ANDF-DE V1.9
47
 *
48
 * Revision 1.7  1997/11/06  09:22:00  pwe
49
 * ANDF-DE V1.8
50
 *
51
 * Revision 1.6  1997/10/10  18:18:23  pwe
52
 * prep ANDF-DE revision
53
 *
54
 * Revision 1.5  1997/08/23  13:36:34  pwe
55
 * initial ANDF-DE
56
 *
57
 * Revision 1.4  1997/04/17  11:50:14  pwe
58
 * Sparc and 80x86 support
59
 *
60
 * Revision 1.3  1997/04/01  17:19:35  pwe
61
 * diagnose pl_tests and locate -> platform specific
62
 *
63
 * Revision 1.2  1997/03/24  11:10:20  pwe
64
 * struct bitfields
65
 *
66
 * Revision 1.1  1997/03/20  16:09:02  pwe
67
 * first version
68
 *
69
**********************************************************************/
70
 
71
#ifndef dw2_basic_key
72
#define dw2_basic_key
73
 
74
extern void uleb128 PROTO_S ((unsigned long value));
75
extern void sleb128 PROTO_S ((long value));
76
extern int uleb128_length PROTO_S ((unsigned long value));
77
extern int sleb128_length PROTO_S ((long value));
78
extern void set_attribute PROTO_S ((int name, int form));
79
extern void do_compunit_header PROTO_S ((void));
80
extern void close_compunit_info PROTO_S ((void));
81
extern void dw_sibling_end PROTO_S ((void));
82
extern void dw_at_address PROTO_S ((long lab));
83
extern void dw_at_ext_lab PROTO_S ((ext_lab lab));
84
extern void dw_set_ext_lab PROTO_S ((ext_lab lab));
85
extern void dw_at_ext_address PROTO_S ((dg_tag tg));
86
extern void set_ext_address PROTO_S ((dg_tag tg));
87
extern void dw_at_abstract_lab PROTO_S ((dg_tag tg));
88
extern void set_abstract_lab PROTO_S ((dg_tag tg));
89
extern void dw_at_string PROTO_S ((char* s));
90
extern void dw_at_form PROTO_S ((int f));
91
extern void dw_at_data PROTO_S ((int n, long d));
92
extern void dw_at_udata PROTO_S ((unsigned long n));
93
extern void dw_at_sdata PROTO_S ((long n));
94
extern void dw_at_flag PROTO_S ((int x));
95
extern void dw_at_decl PROTO_S ((short_sourcepos p));
96
extern void dw_no_locate PROTO_S ((void));
97
extern void dw_locate_offset PROTO_S ((int n));
98
extern void dw_locate_reloffset PROTO_S ((exp e));
99
extern void dw_at_distance PROTO_S ((long lo, long hi));
100
extern long set_dw_text_label PROTO_S ((void));
101
extern void out_text_label PROTO_S ((long n));
102
extern void out_loc_range PROTO_S ((long start, long end, int inclusive));
103
 
104
extern long last_text_label;
105
 
106
 
107
#endif