Home | History | Annotate | Download | only in libasm
      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 (at) 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 asm_adduleb128 (AsmScn_t *asmscn, uint32_t num)
     42 {
     43   if (asmscn == NULL)
     44     return -1;
     45 
     46   if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
     47     {
     48       __libasm_seterrno (ASM_E_TYPE);
     49       return -1;
     50     }
     51 
     52   if (unlikely (asmscn->ctx->textp))
     53     fprintf (asmscn->ctx->out.file, "\t.uleb128\t%" PRIu32 "\n", num);
     54   else
     55     {
     56       char tmpbuf[(sizeof (num) * 8 + 6) / 7];
     57       char *dest = tmpbuf;
     58       uint32_t byte;
     59 
     60       while (1)
     61 	{
     62 	  byte = num & 0x7f;
     63 
     64 	  num >>= 7;
     65 	  if (num == 0)
     66 	    /* This is the last byte.  */
     67 	    break;
     68 
     69 	  *dest++ = byte | 0x80;
     70 	}
     71 
     72       *dest++ = byte;
     73 
     74       /* Number of bytes produced.  */
     75       size_t nbytes = dest - tmpbuf;
     76 
     77       /* Make sure we have enough room.  */
     78       if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
     79 	return -1;
     80 
     81       /* Copy the bytes.  */
     82       if (likely (asmscn->type != SHT_NOBITS))
     83 	memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
     84 
     85       /* Adjust the pointer in the data buffer.  */
     86       asmscn->content->len += nbytes;
     87 
     88       /* Increment the offset in the (sub)section.  */
     89       asmscn->offset += nbytes;
     90     }
     91 
     92   return 0;
     93 }
     94