Branch data Line data Source code
1 : : /* Provides information and DIEs associated with the Dwarf_CU unit. 2 : : Copyright (C) 2018 Red Hat, Inc. 3 : : This file is part of elfutils. 4 : : 5 : : This file is free software; you can redistribute it and/or modify 6 : : it under the terms of either 7 : : 8 : : * the GNU Lesser General Public License as published by the Free 9 : : Software Foundation; either version 3 of the License, or (at 10 : : your option) any later version 11 : : 12 : : or 13 : : 14 : : * the GNU General Public License as published by the Free 15 : : Software Foundation; either version 2 of the License, or (at 16 : : your option) any later version 17 : : 18 : : or both in parallel, as here. 19 : : 20 : : elfutils is distributed in the hope that it will be useful, but 21 : : WITHOUT ANY WARRANTY; without even the implied warranty of 22 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 23 : : General Public License for more details. 24 : : 25 : : You should have received copies of the GNU General Public License and 26 : : the GNU Lesser General Public License along with this program. If 27 : : not, see <http://www.gnu.org/licenses/>. */ 28 : : 29 : : 30 : : #ifdef HAVE_CONFIG_H 31 : : # include <config.h> 32 : : #endif 33 : : 34 : : #include <string.h> 35 : : #include "libdwP.h" 36 : : 37 : : 38 : : int 39 : 12632 : dwarf_cu_info (Dwarf_CU *cu, 40 : : Dwarf_Half *version, uint8_t *unit_type, 41 : : Dwarf_Die *cudie, Dwarf_Die *subdie, 42 : : uint64_t *unit_id, 43 : : uint8_t *address_size, uint8_t *offset_size) 44 : : { 45 [ - + ]: 12632 : if (cu == NULL) 46 : : return -1; 47 : : 48 [ + + ]: 12632 : if (version != NULL) 49 : 4616 : *version = cu->version; 50 : : 51 [ + + ]: 12632 : if (unit_type != NULL) 52 : 12518 : *unit_type = cu->unit_type; 53 : : 54 [ + + ]: 12632 : if (cudie != NULL) 55 : : { 56 [ + - ]: 9302 : if (cu->version >= 2 && cu->version <= 5 57 [ - + ]: 9302 : && cu->unit_type >= DW_UT_compile 58 [ - + ]: 9302 : && cu->unit_type <= DW_UT_split_type) 59 : 9302 : *cudie = CUDIE (cu); 60 : : else 61 : : { 62 : 0 : invalid: 63 : 0 : __libdw_seterrno (DWARF_E_INVALID_DWARF); 64 : 0 : return -1; 65 : : } 66 : : } 67 : : 68 [ + + ]: 12632 : if (subdie != NULL) 69 : : { 70 [ + - ]: 12126 : if (cu->version >= 2 && cu->version <= 5) 71 : : { 72 : : /* For types, return the actual type DIE. For skeletons, 73 : : find the associated split compile unit and return its 74 : : DIE. */ 75 : 12126 : if (cu->unit_type == DW_UT_type 76 [ + + ]: 12126 : || cu->unit_type == DW_UT_split_type) 77 : 8 : *subdie = SUBDIE(cu); 78 [ + + ]: 12118 : else if (cu->unit_type == DW_UT_skeleton) 79 : : { 80 : 66 : Dwarf_CU *split_cu = __libdw_find_split_unit (cu); 81 [ + + ]: 66 : if (split_cu != NULL) 82 : 64 : *subdie = CUDIE(split_cu); 83 : : else 84 : 2 : memset (subdie, '\0', sizeof (Dwarf_Die)); 85 : : } 86 : : else 87 : 12052 : memset (subdie, '\0', sizeof (Dwarf_Die)); 88 : : } 89 : : else 90 : 0 : goto invalid; 91 : : } 92 : : 93 [ + + ]: 12632 : if (unit_id != NULL) 94 : 5036 : *unit_id = cu->unit_id8; 95 : : 96 [ + + ]: 12632 : if (address_size != NULL) 97 : 4616 : *address_size = cu->address_size; 98 : : 99 [ + + ]: 12632 : if (offset_size != NULL) 100 : 4616 : *offset_size = cu->offset_size; 101 : : 102 : : return 0; 103 : : }