|
NAMEdwarf_producer_init ,
dwarf_producer_init_b —
allocate a DWARF producer descriptor
LIBRARYDWARF Access Library (libdwarf, -ldwarf)SYNOPSIS#include <libdwarf.h>
Dwarf_P_Debug
Dwarf_P_Debug
DESCRIPTIONThese functions allocate and return a Dwarf_P_Debug descriptor representing a DWARF producer instance.The argument errhand should contain the
address of a function to be called in case of an error. If this argument is
The argument errarg will be passed to the error handler function when it is invoked. The argument err references a memory location that would hold a Dwarf_Error descriptor in case of an error. The argument flags specifies additional characteristics of the DWARF producer instance. The following flags are recognized:
The following flags are mutually exclusive.
DW_DLC_TARGET_BIGENDIAN and
DW_DLC_TARGET_LITTLEENDIAN is set, the target's
endianness is assumed to be the same as the host's endianness.
Argument func should point to an
application-provided callback function of type
Dwarf_Callback_Func_b. The type
Dwarf_Callback_Func_b is defined in the header file
typedef int (*Dwarf_Callback_Func_b)(char *name, int size, Dwarf_Unsigned type, Dwarf_Unsigned flags, Dwarf_Unsigned link, Dwarf_Unsigned info, Dwarf_Unsigned *index, int *error); This function is called by the DWARF Access Library (libdwarf, -ldwarf) once for each section in the object file that the library needs to create. The arguments to this callback function specify the values in the ELF section header for the section being created:
On success, the callback function should return the section index value of the created section, and set the location pointed to by argument index to the symbol table index of the symbol that associated with the newly created section. This symbol table index will be used in relocation entries referring to the created section. In case of failure, the callback function should return -1 and set the location pointed to by argument error to an application-defined error code. This application returned error code is currently ignored by the library. Function Memory ManagementThe Dwarf_P_Debug instance returned by these functions should be freed using the functiondwarf_producer_finish ().
RETURN VALUESOn success, these functions return the created DWARF producer descriptor. In case of an error, they returnDW_DLV_BADADDR and set
the argument err.
EXAMPLESTo initialize a Dwarf_P_Debug instance for a MIPS32 big endian object, use:Dwarf_P_Debug dbg; Dwarf_Unsigned flags; Dwarf_Error de; /* ... assume cb_func points to the callback function ... */ flags = DW_DLC_WRITE | DW_DLC_SIZE_32 | DW_DLC_ISA_MIPS | DW_DLC_STREAM_RELOCATIONS | DW_DLC_TARGET_BIGENDIAN; if ((dbg = dwarf_producer_init(flags, cb_func, NULL, NULL, &de)) == DW_DLV_BADADDR) warnx("dwarf_producer_init failed: %s", dwarf_errmsg(-1)); ERRORSThese functions can fail with:
SEE ALSOdwarf(3), dwarf_errmsg(3), dwarf_producer_finish(3), dwarf_producer_set_isa(3), dwarf_transform_to_disk_form(3)
Visit the GSP FreeBSD Man Page Interface. |