LCOV - code coverage report
Current view: top level - libdw - dwarf_end.c (source / functions) Hit Total Coverage
Test: elfutils-0.189 Lines: 51 51 100.0 %
Date: 2023-04-14 15:57:06 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 33 34 97.1 %

           Branch data     Line data    Source code
       1                 :            : /* Release debugging handling context.
       2                 :            :    Copyright (C) 2002-2011, 2014, 2018 Red Hat, Inc.
       3                 :            :    This file is part of elfutils.
       4                 :            :    Written by Ulrich Drepper <drepper@redhat.com>, 2002.
       5                 :            : 
       6                 :            :    This file is free software; you can redistribute it and/or modify
       7                 :            :    it under the terms of either
       8                 :            : 
       9                 :            :      * the GNU Lesser General Public License as published by the Free
      10                 :            :        Software Foundation; either version 3 of the License, or (at
      11                 :            :        your option) any later version
      12                 :            : 
      13                 :            :    or
      14                 :            : 
      15                 :            :      * the GNU General Public License as published by the Free
      16                 :            :        Software Foundation; either version 2 of the License, or (at
      17                 :            :        your option) any later version
      18                 :            : 
      19                 :            :    or both in parallel, as here.
      20                 :            : 
      21                 :            :    elfutils is distributed in the hope that it will be useful, but
      22                 :            :    WITHOUT ANY WARRANTY; without even the implied warranty of
      23                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      24                 :            :    General Public License for more details.
      25                 :            : 
      26                 :            :    You should have received copies of the GNU General Public License and
      27                 :            :    the GNU Lesser General Public License along with this program.  If
      28                 :            :    not, see <http://www.gnu.org/licenses/>.  */
      29                 :            : 
      30                 :            : #ifdef HAVE_CONFIG_H
      31                 :            : # include <config.h>
      32                 :            : #endif
      33                 :            : 
      34                 :            : #include <search.h>
      35                 :            : #include <stdlib.h>
      36                 :            : #include <assert.h>
      37                 :            : #include <string.h>
      38                 :            : 
      39                 :            : #include "libdwP.h"
      40                 :            : #include "cfi.h"
      41                 :            : 
      42                 :            : 
      43                 :            : static void
      44                 :     578926 : noop_free (void *arg __attribute__ ((unused)))
      45                 :            : {
      46                 :     578926 : }
      47                 :            : 
      48                 :            : 
      49                 :            : static void
      50                 :      27777 : cu_free (void *arg)
      51                 :            : {
      52                 :      27777 :   struct Dwarf_CU *p = (struct Dwarf_CU *) arg;
      53                 :            : 
      54                 :      27777 :   tdestroy (p->locs, noop_free);
      55                 :            : 
      56                 :            :   /* Only free the CU internals if its not a fake CU.  */
      57   [ +  +  +  + ]:      27777 :   if(p != p->dbg->fake_loc_cu && p != p->dbg->fake_loclists_cu
      58         [ +  + ]:      22457 :      && p != p->dbg->fake_addr_cu)
      59                 :            :     {
      60                 :      22416 :       Dwarf_Abbrev_Hash_free (&p->abbrev_hash);
      61                 :            : 
      62                 :            :       /* Free split dwarf one way (from skeleton to split).  */
      63         [ +  + ]:      22416 :       if (p->unit_type == DW_UT_skeleton
      64   [ +  +  +  + ]:         67 :           && p->split != NULL && p->split != (void *)-1)
      65                 :            :         {
      66                 :            :           /* The fake_addr_cu might be shared, only release one.  */
      67         [ +  - ]:         48 :           if (p->dbg->fake_addr_cu == p->split->dbg->fake_addr_cu)
      68                 :         48 :             p->split->dbg->fake_addr_cu = NULL;
      69                 :         48 :           INTUSE(dwarf_end) (p->split->dbg);
      70                 :            :         }
      71                 :            :     }
      72                 :      27777 : }
      73                 :            : 
      74                 :            : 
      75                 :            : int
      76                 :       5784 : dwarf_end (Dwarf *dwarf)
      77                 :            : {
      78         [ +  + ]:       5784 :   if (dwarf != NULL)
      79                 :            :     {
      80         [ +  + ]:       5775 :       if (dwarf->cfi != NULL)
      81                 :            :         /* Clean up the CFI cache.  */
      82                 :         18 :         __libdw_destroy_frame_cache (dwarf->cfi);
      83                 :            : 
      84                 :       5775 :       Dwarf_Sig8_Hash_free (&dwarf->sig8_hash);
      85                 :            : 
      86                 :            :       /* The search tree for the CUs.  NB: the CU data itself is
      87                 :            :          allocated separately, but the abbreviation hash tables need
      88                 :            :          to be handled.  */
      89                 :       5775 :       tdestroy (dwarf->cu_tree, cu_free);
      90                 :       5775 :       tdestroy (dwarf->tu_tree, cu_free);
      91                 :            : 
      92                 :            :       /* Search tree for macro opcode tables.  */
      93                 :       5775 :       tdestroy (dwarf->macro_ops, noop_free);
      94                 :            : 
      95                 :            :       /* Search tree for decoded .debug_lines units.  */
      96                 :       5775 :       tdestroy (dwarf->files_lines, noop_free);
      97                 :            : 
      98                 :            :       /* And the split Dwarf.  */
      99                 :       5775 :       tdestroy (dwarf->split_tree, noop_free);
     100                 :            : 
     101                 :            :       /* Free the internally allocated memory.  */
     102         [ +  + ]:       6557 :       for (size_t i = 0; i < dwarf->mem_stacks; i++)
     103                 :            :         {
     104                 :        782 :           struct libdw_memblock *memp = dwarf->mem_tails[i];
     105         [ +  + ]:      18308 :           while (memp != NULL)
     106                 :            :             {
     107                 :      17526 :               struct libdw_memblock *prevp = memp->prev;
     108                 :      17526 :               free (memp);
     109                 :      17526 :               memp = prevp;
     110                 :            :             }
     111                 :            :         }
     112         [ +  + ]:       5775 :       if (dwarf->mem_tails != NULL)
     113                 :        705 :         free (dwarf->mem_tails);
     114                 :       5775 :       pthread_rwlock_destroy (&dwarf->mem_rwl);
     115                 :            : 
     116                 :            :       /* Free the pubnames helper structure.  */
     117                 :       5775 :       free (dwarf->pubnames_sets);
     118                 :            : 
     119                 :            :       /* Free the ELF descriptor if necessary.  */
     120         [ +  + ]:       5775 :       if (dwarf->free_elf)
     121                 :        223 :         elf_end (dwarf->elf);
     122                 :            : 
     123                 :            :       /* Free the fake location list CU.  */
     124         [ +  + ]:       5775 :       if (dwarf->fake_loc_cu != NULL)
     125                 :            :         {
     126                 :       5274 :           cu_free (dwarf->fake_loc_cu);
     127                 :       5274 :           free (dwarf->fake_loc_cu);
     128                 :            :         }
     129         [ +  + ]:       5775 :       if (dwarf->fake_loclists_cu != NULL)
     130                 :            :         {
     131                 :         46 :           cu_free (dwarf->fake_loclists_cu);
     132                 :         46 :           free (dwarf->fake_loclists_cu);
     133                 :            :         }
     134         [ +  + ]:       5775 :       if (dwarf->fake_addr_cu != NULL)
     135                 :            :         {
     136                 :         41 :           cu_free (dwarf->fake_addr_cu);
     137                 :         41 :           free (dwarf->fake_addr_cu);
     138                 :            :         }
     139                 :            : 
     140                 :            :       /* Did we find and allocate the alt Dwarf ourselves?  */
     141         [ +  + ]:       5775 :       if (dwarf->alt_fd != -1)
     142                 :            :         {
     143                 :          2 :           INTUSE(dwarf_end) (dwarf->alt_dwarf);
     144                 :          2 :           close (dwarf->alt_fd);
     145                 :            :         }
     146                 :            : 
     147                 :            :       /* The cached dir we found the Dwarf ELF file in.  */
     148                 :       5775 :       free (dwarf->debugdir);
     149                 :            : 
     150                 :            :       /* Free the context descriptor.  */
     151                 :       5775 :       free (dwarf);
     152                 :            :     }
     153                 :            : 
     154                 :       5784 :   return 0;
     155                 :            : }
     156                 :            : INTDEF(dwarf_end)

Generated by: LCOV version 1.14