mirror of
https://github.com/davea42/libdwarf-code.git
synced 2025-10-23 01:37:53 +08:00

dwarf_producer_init() function. The new interface is more extensible and allows for production of DWARF versions post version 2 (such later versions are not actually supported yet). Uses of the producer interface have to change their calls to dwarf_producer_init*() to match the new interface. Callers to the consumer (reader) interface are not affected. dwarfgen/dwarfgen.cc libdwarf/dwarf.h libdwarf/dwarf_error.c libdwarf/libdwarf.h.in libdwarf/libdwarf2p.1.mm libdwarf/libdwarf2p.1.pdf libdwarf/pro_forms.c libdwarf/pro_init.c libdwarf/pro_opaque.h libdwarf/pro_reloc.c libdwarf/pro_reloc_stream.c libdwarf/pro_reloc_symbolic.c libdwarf/pro_section.c libdwarf/pro_util.h
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/*
|
|
|
|
Copyright (C) 2000,2004 Silicon Graphics, Inc. All Rights Reserved.
|
|
Portions Copyright 2014-2014 David Anderson. All Rights Reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of version 2.1 of the GNU Lesser General Public License
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it would be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
Further, this software is distributed without any warranty that it is
|
|
free of the rightful claim of any third person regarding infringement
|
|
or the like. Any license provided herein, whether implied or
|
|
otherwise, applies only to this software file. Patent licenses, if
|
|
any, provided herein do not apply to combinations of this program with
|
|
other software, or any other product whatsoever.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this program; if not, write the Free Software
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
|
|
USA.
|
|
|
|
*/
|
|
|
|
/* Definition of sizes of types. Independent of
|
|
target or host, these are. */
|
|
#define sizeof_sbyte(dbg) sizeof(Dwarf_Sbyte)
|
|
#define sizeof_ubyte(dbg) sizeof(Dwarf_Ubyte)
|
|
#define sizeof_uhalf(dbg) sizeof(Dwarf_Half)
|
|
|
|
/* Computes amount of padding necessary to align n to a k-boundary. */
|
|
/* Important: Assumes n, k both GREATER than zero. */
|
|
#define PADDING(n, k) ( (k)-1 - ((n)-1)%(k) )
|
|
|
|
|