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