xref: /titanic_41/usr/src/tools/ctf/dwarf/common/pro_incl.h (revision 5aeb94743e3be0c51e86f73096334611ae3a058e)
1 /*
2 
3   Copyright (C) 2000, 2002 Silicon Graphics, Inc.  All Rights Reserved.
4 
5   This program is free software; you can redistribute it and/or modify it
6   under the terms of version 2.1 of the GNU Lesser General Public License
7   as published by the Free Software Foundation.
8 
9   This program is distributed in the hope that it would be useful, but
10   WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 
13   Further, this software is distributed without any warranty that it is
14   free of the rightful claim of any third person regarding infringement
15   or the like.  Any license provided herein, whether implied or
16   otherwise, applies only to this software file.  Patent licenses, if
17   any, provided herein do not apply to combinations of this program with
18   other software, or any other product whatsoever.
19 
20   You should have received a copy of the GNU Lesser General Public
21   License along with this program; if not, write the Free Software
22   Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307,
23   USA.
24 
25   Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pky,
26   Mountain View, CA 94043, or:
27 
28   http://www.sgi.com
29 
30   For further information regarding this notice, see:
31 
32   http://oss.sgi.com/projects/GenInfo/NoticeExplan
33 
34 */
35 
36 
37 
38 #ifdef HAVE_ELF_H
39 #include <elf.h>
40 #endif
41 
42 /* The target address is given: the place in the source integer
43    is to be determined.
44 */
45 #ifdef WORDS_BIGENDIAN
46 #define WRITE_UNALIGNED(dbg,dest,source, srclength,len_out) \
47     { \
48       dbg->de_copy_word(dest, \
49                         ((char *)source) +srclength-len_out,  \
50 			len_out) ; \
51     }
52 
53 
54 #else /* LITTLE ENDIAN */
55 
56 #define WRITE_UNALIGNED(dbg,dest,source, srclength,len_out) \
57     { \
58       dbg->de_copy_word( (dest) , \
59                         ((char *)source) ,  \
60 			len_out) ; \
61     }
62 #endif
63 
64 
65 
66 #include "libdwarf.h"
67 
68 #include "dwarf.h"
69 #include "pro_opaque.h"
70 #include "pro_error.h"
71 #include "pro_util.h"
72 #include "pro_encode_nm.h"
73 #include "pro_alloc.h"
74