#include "config.h"
#include <stdio.h>
#include "dwarf_incl.h"
#include "dwarf_error.h"
#include "dwarf_types.h"
#include "dwarf_global.h"
int
dwarf_get_pubtypes(Dwarf_Debug dbg,
Dwarf_Type ** types,
Dwarf_Signed * ret_type_count, Dwarf_Error * error)
{
int
res = _dwarf_load_section(dbg, &dbg->de_debug_pubtypes,error);
if
(res != DW_DLV_OK) {
return
res;
}
if
(!dbg->de_debug_pubtypes.dss_size) {
return
(DW_DLV_NO_ENTRY);
}
return
_dwarf_internal_get_pubnames_like_data(dbg,
dbg->de_debug_pubtypes.dss_data,
dbg->de_debug_pubtypes.dss_size,
(Dwarf_Global **) types,
ret_type_count, error,
DW_DLA_PUBTYPES_CONTEXT,
DW_DLA_GLOBAL,
DW_DLE_DEBUG_PUBTYPES_LENGTH_BAD,
DW_DLE_DEBUG_PUBTYPES_VERSION_ERROR);
}
void
dwarf_pubtypes_dealloc(Dwarf_Debug dbg, Dwarf_Type * dwgl,
Dwarf_Signed count)
{
_dwarf_internal_globals_dealloc(dbg,
(Dwarf_Global *) dwgl,
count,
DW_DLA_PUBTYPES_CONTEXT,
DW_DLA_GLOBAL,
DW_DLA_LIST);
return
;
}
int
dwarf_pubtypename(Dwarf_Type type_in,
char
**ret_name,
Dwarf_Error * error)
{
Dwarf_Global type = (Dwarf_Global) type_in;
if
(type == NULL) {
_dwarf_error(NULL, error, DW_DLE_TYPE_NULL);
return
(DW_DLV_ERROR);
}
*ret_name = (
char
*) (type->gl_name);
return
DW_DLV_OK;
}
int
dwarf_pubtype_type_die_offset(Dwarf_Type type_in,
Dwarf_Off * ret_offset,
Dwarf_Error * error)
{
Dwarf_Global type = (Dwarf_Global) type_in;
return
dwarf_global_die_offset(type, ret_offset, error);
}
int
dwarf_pubtype_cu_offset(Dwarf_Type type_in,
Dwarf_Off * ret_offset, Dwarf_Error * error)
{
Dwarf_Global type = (Dwarf_Global) type_in;
return
dwarf_global_cu_offset(type, ret_offset, error);
}
int
dwarf_pubtype_name_offsets(Dwarf_Type type_in,
char
**returned_name,
Dwarf_Off * die_offset,
Dwarf_Off * cu_die_offset,
Dwarf_Error * error)
{
Dwarf_Global type = (Dwarf_Global) type_in;
return
dwarf_global_name_offsets(type,
returned_name,
die_offset, cu_die_offset, error);
}