LCOV - code coverage report
Current view: top level - libasm - asm_adduleb128.c (source / functions) Hit Total Coverage
Test: elfutils-0.191 Lines: 18 23 78.3 %
Date: 2024-03-01 16:42:08 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 7 14 50.0 %

           Branch data     Line data    Source code
       1                 :            : /* Add integer to a section.
       2                 :            :    Copyright (C) 2002, 2005 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 <inttypes.h>
      35                 :            : #include <string.h>
      36                 :            : 
      37                 :            : #include "libasmP.h"
      38                 :            : 
      39                 :            : 
      40                 :            : int
      41                 :         32 : asm_adduleb128 (AsmScn_t *asmscn, uint32_t num)
      42                 :            : {
      43         [ -  + ]:         32 :   if (asmscn == NULL)
      44                 :          0 :     return -1;
      45                 :            : 
      46   [ -  +  -  - ]:         32 :   if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
      47                 :            :     {
      48                 :          0 :       __libasm_seterrno (ASM_E_TYPE);
      49                 :          0 :       return -1;
      50                 :            :     }
      51                 :            : 
      52         [ -  + ]:         32 :   if (unlikely (asmscn->ctx->textp))
      53                 :          0 :     fprintf (asmscn->ctx->out.file, "\t.uleb128\t%" PRIu32 "\n", num);
      54                 :            :   else
      55                 :            :     {
      56                 :            :       char tmpbuf[(sizeof (num) * 8 + 6) / 7];
      57                 :         32 :       char *dest = tmpbuf;
      58                 :            :       uint32_t byte;
      59                 :            : 
      60                 :            :       while (1)
      61                 :            :         {
      62                 :        112 :           byte = num & 0x7f;
      63                 :            : 
      64                 :        112 :           num >>= 7;
      65         [ +  + ]:        112 :           if (num == 0)
      66                 :            :             /* This is the last byte.  */
      67                 :         32 :             break;
      68                 :            : 
      69                 :         80 :           *dest++ = byte | 0x80;
      70                 :            :         }
      71                 :            : 
      72                 :         32 :       *dest++ = byte;
      73                 :            : 
      74                 :            :       /* Number of bytes produced.  */
      75                 :         32 :       size_t nbytes = dest - tmpbuf;
      76                 :            : 
      77                 :            :       /* Make sure we have enough room.  */
      78         [ -  + ]:         32 :       if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
      79                 :          0 :         return -1;
      80                 :            : 
      81                 :            :       /* Copy the bytes.  */
      82         [ +  - ]:         32 :       if (likely (asmscn->type != SHT_NOBITS))
      83                 :         32 :         memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
      84                 :            : 
      85                 :            :       /* Adjust the pointer in the data buffer.  */
      86                 :         32 :       asmscn->content->len += nbytes;
      87                 :            : 
      88                 :            :       /* Increment the offset in the (sub)section.  */
      89                 :         32 :       asmscn->offset += nbytes;
      90                 :            :     }
      91                 :            : 
      92                 :         32 :   return 0;
      93                 :            : }

Generated by: LCOV version 1.14