]> Git Repo - binutils.git/blame - bfd/libbfd.c
* stabsread.c: Remove all uses of error(). Make error_type and
[binutils.git] / bfd / libbfd.c
CommitLineData
0d552306
KR
1/* Assorted BFD support routines, only used internally.
2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
f58809fd 3 Written by Cygnus Support.
4a81b561 4
f58809fd 5This file is part of BFD, the Binary File Descriptor library.
4a81b561 6
f58809fd 7This program is free software; you can redistribute it and/or modify
4a81b561 8it under the terms of the GNU General Public License as published by
f58809fd
SC
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
4a81b561 11
f58809fd 12This program is distributed in the hope that it will be useful,
4a81b561
DHW
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
f58809fd
SC
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
4a81b561 20
4a81b561 21#include "bfd.h"
f58809fd 22#include "sysdep.h"
4a81b561
DHW
23#include "libbfd.h"
24
f8e01940
JG
25/*
26SECTION
27 libbfd
28
29DESCRIPTION
30 This file contains various routines which are used within BFD.
31 They are not intended for export, but are documented here for
32 completeness.
33*/
4a81b561
DHW
34
35boolean
536b27a5
SC
36DEFUN(_bfd_dummy_new_section_hook,(ignore, ignore_newsect),
37 bfd *ignore AND
38 asection *ignore_newsect)
4a81b561
DHW
39{
40 return true;
41}
42
43boolean
536b27a5
SC
44DEFUN(bfd_false ,(ignore),
45 bfd *ignore)
4a81b561
DHW
46{
47 return false;
48}
49
50boolean
536b27a5
SC
51DEFUN(bfd_true,(ignore),
52 bfd *ignore)
4a81b561
DHW
53{
54 return true;
55}
56
d0ec7a8e 57PTR
536b27a5
SC
58DEFUN(bfd_nullvoidptr,(ignore),
59 bfd *ignore)
4a81b561 60{
d0ec7a8e 61 return (PTR)NULL;
4a81b561 62}
fc723380 63
4a81b561 64int
536b27a5
SC
65DEFUN(bfd_0,(ignore),
66 bfd *ignore)
4a81b561
DHW
67{
68 return 0;
69}
fc723380 70
4a81b561 71unsigned int
536b27a5
SC
72DEFUN(bfd_0u,(ignore),
73 bfd *ignore)
4a81b561
DHW
74{
75 return 0;
76}
77
78void
536b27a5
SC
79DEFUN(bfd_void,(ignore),
80 bfd *ignore)
4a81b561
DHW
81{
82}
83
84boolean
536b27a5
SC
85DEFUN(_bfd_dummy_core_file_matches_executable_p,(ignore_core_bfd, ignore_exec_bfd),
86 bfd *ignore_core_bfd AND
87 bfd *ignore_exec_bfd)
4a81b561
DHW
88{
89 bfd_error = invalid_operation;
90 return false;
91}
92
93/* of course you can't initialize a function to be the same as another, grr */
94
95char *
0f268757 96DEFUN(_bfd_dummy_core_file_failing_command,(ignore_abfd),
536b27a5 97 bfd *ignore_abfd)
4a81b561
DHW
98{
99 return (char *)NULL;
100}
101
102int
536b27a5
SC
103DEFUN(_bfd_dummy_core_file_failing_signal,(ignore_abfd),
104 bfd *ignore_abfd)
4a81b561
DHW
105{
106 return 0;
107}
108
109bfd_target *
536b27a5
SC
110DEFUN(_bfd_dummy_target,(ignore_abfd),
111 bfd *ignore_abfd)
4a81b561
DHW
112{
113 return 0;
114}
115\f
116/** zalloc -- allocate and clear storage */
117
118
119#ifndef zalloc
120char *
536b27a5
SC
121DEFUN(zalloc,(size),
122 bfd_size_type size)
4a81b561 123{
7ed4093a 124 char *ptr = (char *) malloc ((int)size);
4a81b561
DHW
125
126 if ((ptr != NULL) && (size != 0))
301dfc71 127 memset(ptr,0, size);
4a81b561
DHW
128
129 return ptr;
130}
131#endif
1e310759 132
f8e01940
JG
133/*
134INTERNAL_FUNCTION
135 bfd_xmalloc
136
137SYNOPSIS
138 PTR bfd_xmalloc( bfd_size_type size);
139
140DESCRIPTION
141 Like malloc, but exit if no more memory.
142
1e310759 143*/
f8e01940 144
1e310759
JG
145/** There is major inconsistency in how running out of memory is handled.
146 Some routines return a NULL, and set bfd_error to no_memory.
147 However, obstack routines can't do this ... */
148
149
150DEFUN(PTR bfd_xmalloc,(size),
151 bfd_size_type size)
152{
f8e01940 153 static CONST char no_memory_message[] = "Virtual memory exhausted!\n";
1e310759
JG
154 PTR ptr;
155 if (size == 0) size = 1;
156 ptr = (PTR)malloc(size);
1e310759
JG
157 if (!ptr)
158 {
159 write (2, no_memory_message, sizeof(no_memory_message)-1);
160 exit (-1);
161 }
162 return ptr;
163}
4a81b561
DHW
164\f
165/* Some IO code */
166
167
168/* Note that archive entries don't have streams; they share their parent's.
f58809fd 169 This allows someone to play with the iostream behind BFD's back.
4a81b561
DHW
170
171 Also, note that the origin pointer points to the beginning of a file's
172 contents (0 for non-archive elements). For archive entries this is the
173 first octet in the file, NOT the beginning of the archive header. */
174
7ed4093a
SC
175static
176int DEFUN(real_read,(where, a,b, file),
6f715d66
SC
177 PTR where AND
178 int a AND
179 int b AND
180 FILE *file)
7ed4093a
SC
181{
182 return fread(where, a,b,file);
183}
23b0b558 184bfd_size_type
7ed4093a
SC
185DEFUN(bfd_read,(ptr, size, nitems, abfd),
186 PTR ptr AND
187 bfd_size_type size AND
188 bfd_size_type nitems AND
189 bfd *abfd)
4a81b561 190{
0d552306
KR
191 int nread;
192 nread = real_read (ptr, 1, (int)(size*nitems), bfd_cache_lookup(abfd));
193#ifdef FILE_OFFSET_IS_CHAR_INDEX
194 if (nread > 0)
195 abfd->where += nread;
196#endif
197 return nread;
4a81b561
DHW
198}
199
23b0b558 200bfd_size_type
7ed4093a 201DEFUN(bfd_write,(ptr, size, nitems, abfd),
f58809fd 202 CONST PTR ptr AND
7ed4093a
SC
203 bfd_size_type size AND
204 bfd_size_type nitems AND
205 bfd *abfd)
4a81b561 206{
0d552306
KR
207 int nwrote = fwrite (ptr, 1, (int)(size*nitems), bfd_cache_lookup(abfd));
208#ifdef FILE_OFFSET_IS_CHAR_INDEX
209 if (nwrote > 0)
210 abfd->where += nwrote;
211#endif
212 return nwrote;
4a81b561
DHW
213}
214
f8e01940
JG
215/*
216INTERNAL_FUNCTION
217 bfd_write_bigendian_4byte_int
218
219SYNOPSIS
220 void bfd_write_bigendian_4byte_int(bfd *abfd, int i);
221
222DESCRIPTION
223 Writes a 4 byte integer to the outputing bfd, in big endian
224 mode regardless of what else is going on. This is usefull in
225 archives.
1e310759 226
1e310759 227*/
f58809fd
SC
228void
229DEFUN(bfd_write_bigendian_4byte_int,(abfd, i),
230 bfd *abfd AND
231 int i)
232{
1e310759 233 bfd_byte buffer[4];
f58809fd 234 _do_putb32(i, buffer);
1e310759 235 bfd_write((PTR)buffer, 4, 1, abfd);
f58809fd
SC
236}
237
0d552306
KR
238long
239DEFUN(bfd_tell,(abfd),
240 bfd *abfd)
241{
242 file_ptr ptr;
243
244 ptr = ftell (bfd_cache_lookup(abfd));
245
246 if (abfd->my_archive)
247 ptr -= abfd->origin;
248 abfd->where = ptr;
249 return ptr;
250}
251
4a81b561 252int
7ed4093a
SC
253DEFUN(bfd_seek,(abfd, position, direction),
254 bfd * CONST abfd AND
255 CONST file_ptr position AND
256 CONST int direction)
4a81b561 257{
0d552306
KR
258 int result;
259 FILE *f;
e5b02860 260 file_ptr file_position;
0d552306
KR
261 /* For the time being, a BFD may not seek to it's end. The problem
262 is that we don't easily have a way to recognize the end of an
263 element in an archive. */
264
265 BFD_ASSERT (direction == SEEK_SET || direction == SEEK_CUR);
266
b31d06ca 267 if (direction == SEEK_CUR && position == 0)
0d552306
KR
268 return 0;
269#ifdef FILE_OFFSET_IS_CHAR_INDEX
b6090f4d
JG
270 if (abfd->format != bfd_archive && abfd->my_archive == 0)
271 {
272#ifndef NDEBUG
273 /* Explanation for this code: I'm only about 95+% sure that the above
274 conditions are sufficient and that all i/o calls are properly
275 adjusting the `where' field. So this is sort of an `assert'
276 that the `where' field is correct. If we can go a while without
277 tripping the abort, we can probably safely disable this code,
278 so that the real optimizations happen. */
279 file_ptr where_am_i_now;
280 where_am_i_now = ftell (bfd_cache_lookup (abfd));
281 if (abfd->my_archive)
282 where_am_i_now -= abfd->origin;
283 if (where_am_i_now != abfd->where)
284 abort ();
285#endif
286 if (direction == SEEK_SET && position == abfd->where)
287 return 0;
288 }
289 else
290 {
291 /* We need something smarter to optimize access to archives.
292 Currently, anything inside an archive is read via the file
293 handle for the archive. Which means that a bfd_seek on one
294 component affects the `current position' in the archive, as
295 well as in any other component.
296
297 It might be sufficient to put a spike through the cache
298 abstraction, and look to the archive for the file position,
299 but I think we should try for something cleaner.
300
301 In the meantime, no optimization for archives. */
302 }
0d552306 303#endif
4a81b561 304
0d552306 305 f = bfd_cache_lookup (abfd);
e5b02860 306 file_position = position;
0d552306 307 if (direction == SEEK_SET && abfd->my_archive != NULL)
e5b02860
KR
308 file_position += abfd->origin;
309
310 result = fseek (f, file_position, direction);
311
312 if (result != 0)
313 /* Force redetermination of `where' field. */
314 bfd_tell (abfd);
0d552306
KR
315 else
316 {
e5b02860
KR
317#ifdef FILE_OFFSET_IS_CHAR_INDEX
318 /* Adjust `where' field. */
319 if (direction == SEEK_SET)
320 abfd->where = position;
321 else
322 abfd->where += position;
323#endif
0d552306 324 }
e5b02860 325 return result;
4a81b561
DHW
326}
327\f
328/** Make a string table */
329
6f715d66
SC
330/*>bfd.h<
331 Add string to table pointed to by table, at location starting with free_ptr.
4a81b561
DHW
332 resizes the table if necessary (if it's NULL, creates it, ignoring
333 table_length). Updates free_ptr, table, table_length */
334
335boolean
536b27a5
SC
336DEFUN(bfd_add_to_string_table,(table, new_string, table_length, free_ptr),
337 char **table AND
536b27a5 338 char *new_string AND
5ad1d830
SC
339 unsigned int *table_length AND
340 char **free_ptr)
4a81b561
DHW
341{
342 size_t string_length = strlen (new_string) + 1; /* include null here */
343 char *base = *table;
344 size_t space_length = *table_length;
345 unsigned int offset = (base ? *free_ptr - base : 0);
346
347 if (base == NULL) {
348 /* Avoid a useless regrow if we can (but of course we still
349 take it next time */
350 space_length = (string_length < DEFAULT_STRING_SPACE_SIZE ?
6f715d66 351 DEFAULT_STRING_SPACE_SIZE : string_length+1);
4a81b561
DHW
352 base = zalloc (space_length);
353
354 if (base == NULL) {
355 bfd_error = no_memory;
356 return false;
357 }
358 }
359
360 if ((size_t)(offset + string_length) >= space_length) {
361 /* Make sure we will have enough space */
362 while ((size_t)(offset + string_length) >= space_length)
363 space_length += space_length/2; /* grow by 50% */
364
365 base = (char *) realloc (base, space_length);
366 if (base == NULL) {
367 bfd_error = no_memory;
368 return false;
369 }
370
371 }
372
373 memcpy (base + offset, new_string, string_length);
374 *table = base;
375 *table_length = space_length;
376 *free_ptr = base + offset + string_length;
377
378 return true;
379}
380\f
381/** The do-it-yourself (byte) sex-change kit */
382
383/* The middle letter e.g. get<b>short indicates Big or Little endian
384 target machine. It doesn't matter what the byte order of the host
385 machine is; these routines work for either. */
386
387/* FIXME: Should these take a count argument?
388 Answer ([email protected]): No, but perhaps they should be inline
6f715d66
SC
389 functions in swap.h #ifdef __GNUC__.
390 Gprof them later and find out. */
391
f8e01940
JG
392/*
393FUNCTION
394 bfd_put_size
395FUNCTION
396 bfd_get_size
397
398DESCRIPTION
399 These macros as used for reading and writing raw data in
400 sections; each access (except for bytes) is vectored through
401 the target format of the BFD and mangled accordingly. The
402 mangling performs any necessary endian translations and
14e3c2e4
JK
403 removes alignment restrictions. Note that types accepted and
404 returned by these macros are identical so they can be swapped
405 around in macros--for example libaout.h defines GET_WORD to
406 either bfd_get_32 or bfd_get_64.
f8e01940 407
7e4db254
JK
408 In the put routines, val must be a bfd_vma. If we are on a
409 system without prototypes, the caller is responsible for making
410 sure that is true, with a cast if necessary. We don't cast
411 them in the macro definitions because that would prevent lint
412 or gcc -Wall from detecting sins such as passing a pointer.
413 To detect calling these with less than a bfd_vma, use gcc
414 -Wconversion on a host with 64 bit bfd_vma's.
415
f8e01940 416.#define bfd_put_8(abfd, val, ptr) \
14e3c2e4
JK
417. (*((unsigned char *)ptr) = (unsigned char)val)
418.#define bfd_put_signed_8(abfd, val, ptr) (*((char *)(ptr)) = (char)(val))
f8e01940 419.#define bfd_get_8(abfd, ptr) \
14e3c2e4
JK
420. (*((unsigned char *)(ptr)))
421.#define bfd_get_signed_8(abfd, ptr) (((*(char *)(ptr) ^ 0x80) & 0xff) - 0x80)
f8e01940 422.#define bfd_put_16(abfd, val, ptr) \
7e4db254 423. BFD_SEND(abfd, bfd_putx16, ((val),(ptr)))
14e3c2e4 424.#define bfd_put_signed_16 bfd_put_16
f8e01940
JG
425.#define bfd_get_16(abfd, ptr) \
426. BFD_SEND(abfd, bfd_getx16, (ptr))
14e3c2e4
JK
427.#define bfd_get_signed_16(abfd, ptr) \
428. BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
f8e01940 429.#define bfd_put_32(abfd, val, ptr) \
7e4db254 430. BFD_SEND(abfd, bfd_putx32, ((val),(ptr)))
14e3c2e4 431.#define bfd_put_signed_32 bfd_put_32
f8e01940
JG
432.#define bfd_get_32(abfd, ptr) \
433. BFD_SEND(abfd, bfd_getx32, (ptr))
14e3c2e4
JK
434.#define bfd_get_signed_32(abfd, ptr) \
435. BFD_SEND(abfd, bfd_getx_signed_32, (ptr))
f8e01940 436.#define bfd_put_64(abfd, val, ptr) \
7e4db254 437. BFD_SEND(abfd, bfd_putx64, ((val), (ptr)))
14e3c2e4 438.#define bfd_put_signed_64 bfd_put_64
f8e01940
JG
439.#define bfd_get_64(abfd, ptr) \
440. BFD_SEND(abfd, bfd_getx64, (ptr))
14e3c2e4
JK
441.#define bfd_get_signed_64(abfd, ptr) \
442. BFD_SEND(abfd, bfd_getx_signed_64, (ptr))
f8e01940
JG
443
444*/
445
446/*
447FUNCTION
448 bfd_h_put_size
449FUNCTION
450 bfd_h_get_size
451
452DESCRIPTION
453 These macros have the same function as their <<bfd_get_x>>
454 bretherin, except that they are used for removing information
455 for the header records of object files. Believe it or not,
456 some object files keep their header records in big endian
457 order, and their data in little endan order.
458
459.#define bfd_h_put_8(abfd, val, ptr) \
14e3c2e4
JK
460. (*((unsigned char *)ptr) = (unsigned char)val)
461.#define bfd_h_put_signed_8(abfd, val, ptr) (*((char *)(ptr)) = (char)(val))
f8e01940 462.#define bfd_h_get_8(abfd, ptr) \
14e3c2e4
JK
463. (*((unsigned char *)(ptr)))
464.#define bfd_h_get_signed_8 bfd_get_signed_8
f8e01940
JG
465.#define bfd_h_put_16(abfd, val, ptr) \
466. BFD_SEND(abfd, bfd_h_putx16,(val,ptr))
14e3c2e4 467.#define bfd_h_put_signed_16 bfd_h_put_16
f8e01940
JG
468.#define bfd_h_get_16(abfd, ptr) \
469. BFD_SEND(abfd, bfd_h_getx16,(ptr))
14e3c2e4
JK
470.#define bfd_h_get_signed_16(abfd, ptr) \
471. BFD_SEND(abfd, bfd_h_getx_signed_16, (ptr))
f8e01940
JG
472.#define bfd_h_put_32(abfd, val, ptr) \
473. BFD_SEND(abfd, bfd_h_putx32,(val,ptr))
14e3c2e4 474.#define bfd_h_put_signed_32 bfd_h_put_32
f8e01940
JG
475.#define bfd_h_get_32(abfd, ptr) \
476. BFD_SEND(abfd, bfd_h_getx32,(ptr))
14e3c2e4
JK
477.#define bfd_h_get_signed_32(abfd, ptr) \
478. BFD_SEND(abfd, bfd_h_getx_signed_32, (ptr))
f8e01940
JG
479.#define bfd_h_put_64(abfd, val, ptr) \
480. BFD_SEND(abfd, bfd_h_putx64,(val, ptr))
14e3c2e4 481.#define bfd_h_put_signed_64 bfd_h_put_64
f8e01940
JG
482.#define bfd_h_get_64(abfd, ptr) \
483. BFD_SEND(abfd, bfd_h_getx64,(ptr))
14e3c2e4
JK
484.#define bfd_h_get_signed_64(abfd, ptr) \
485. BFD_SEND(abfd, bfd_h_getx_signed_64, (ptr))
f8e01940
JG
486
487*/
4a81b561 488
14e3c2e4
JK
489/* Sign extension to bfd_signed_vma. */
490#define COERCE16(x) ((bfd_signed_vma) (((x) ^ 0x8000) - 0x8000))
491#define COERCE32(x) ((bfd_signed_vma) (((x) ^ 0x80000000) - 0x80000000))
492#define COERCE64(x) ((bfd_signed_vma)\
493 (((x) ^ 0x8000000000000000) - 0x8000000000000000))
494
f58809fd 495bfd_vma
536b27a5
SC
496DEFUN(_do_getb16,(addr),
497 register bfd_byte *addr)
4a81b561 498{
6f715d66 499 return (addr[0] << 8) | addr[1];
4a81b561
DHW
500}
501
f58809fd 502bfd_vma
536b27a5
SC
503DEFUN(_do_getl16,(addr),
504 register bfd_byte *addr)
4a81b561 505{
6f715d66 506 return (addr[1] << 8) | addr[0];
4a81b561
DHW
507}
508
14e3c2e4
JK
509bfd_signed_vma
510DEFUN(_do_getb_signed_16,(addr),
511 register bfd_byte *addr)
512{
513 return COERCE16((addr[0] << 8) | addr[1]);
514}
515
516bfd_signed_vma
517DEFUN(_do_getl_signed_16,(addr),
518 register bfd_byte *addr)
519{
520 return COERCE16((addr[1] << 8) | addr[0]);
521}
522
4a81b561 523void
536b27a5 524DEFUN(_do_putb16,(data, addr),
f58809fd 525 bfd_vma data AND
536b27a5 526 register bfd_byte *addr)
4a81b561 527{
6f715d66
SC
528 addr[0] = (bfd_byte)(data >> 8);
529 addr[1] = (bfd_byte )data;
4a81b561
DHW
530}
531
532void
536b27a5 533DEFUN(_do_putl16,(data, addr),
f58809fd 534 bfd_vma data AND
536b27a5 535 register bfd_byte *addr)
4a81b561 536{
6f715d66
SC
537 addr[0] = (bfd_byte )data;
538 addr[1] = (bfd_byte)(data >> 8);
4a81b561
DHW
539}
540
f58809fd 541bfd_vma
14e3c2e4
JK
542_do_getb32 (addr)
543 register bfd_byte *addr;
4a81b561 544{
6f715d66 545 return ((((addr[0] << 8) | addr[1]) << 8) | addr[2]) << 8 | addr[3];
4a81b561
DHW
546}
547
f58809fd 548bfd_vma
7ed4093a 549_do_getl32 (addr)
6f715d66 550 register bfd_byte *addr;
4a81b561 551{
6f715d66 552 return ((((addr[3] << 8) | addr[2]) << 8) | addr[1]) << 8 | addr[0];
4a81b561
DHW
553}
554
14e3c2e4
JK
555bfd_signed_vma
556_do_getb_signed_32 (addr)
557 register bfd_byte *addr;
558{
559 return COERCE32(((((addr[0] << 8) | addr[1]) << 8)
560 | addr[2]) << 8 | addr[3]);
561}
562
563bfd_signed_vma
564_do_getl_signed_32 (addr)
565 register bfd_byte *addr;
566{
567 return COERCE32(((((addr[3] << 8) | addr[2]) << 8)
568 | addr[1]) << 8 | addr[0]);
569}
570
f58809fd 571bfd_vma
536b27a5
SC
572DEFUN(_do_getb64,(addr),
573 register bfd_byte *addr)
7ed4093a 574{
536b27a5 575#ifdef HOST_64_BIT
b6090f4d 576 bfd_vma low, high;
536b27a5 577
7ed4093a 578 high= ((((((((addr[0]) << 8) |
6f715d66
SC
579 addr[1]) << 8) |
580 addr[2]) << 8) |
581 addr[3]) );
7ed4093a
SC
582
583 low = ((((((((addr[4]) << 8) |
6f715d66
SC
584 addr[5]) << 8) |
585 addr[6]) << 8) |
586 addr[7]));
7ed4093a
SC
587
588 return high << 32 | low;
589#else
590 BFD_FAIL();
f58809fd 591 return 0;
7ed4093a
SC
592#endif
593
594}
595
f58809fd 596bfd_vma
5ad1d830 597DEFUN(_do_getl64,(addr),
536b27a5 598 register bfd_byte *addr)
7ed4093a 599{
6f715d66 600
536b27a5 601#ifdef HOST_64_BIT
b6090f4d 602 bfd_vma low, high;
7ed4093a 603 high= (((((((addr[7] << 8) |
6f715d66
SC
604 addr[6]) << 8) |
605 addr[5]) << 8) |
606 addr[4]));
7ed4093a
SC
607
608 low = (((((((addr[3] << 8) |
6f715d66
SC
609 addr[2]) << 8) |
610 addr[1]) << 8) |
611 addr[0]) );
7ed4093a
SC
612
613 return high << 32 | low;
614#else
615 BFD_FAIL();
f58809fd 616 return 0;
7ed4093a 617#endif
6f715d66 618
7ed4093a
SC
619}
620
14e3c2e4
JK
621bfd_signed_vma
622DEFUN(_do_getb_signed_64,(addr),
623 register bfd_byte *addr)
624{
625#ifdef HOST_64_BIT
626 bfd_vma low, high;
627
628 high= ((((((((addr[0]) << 8) |
629 addr[1]) << 8) |
630 addr[2]) << 8) |
631 addr[3]) );
632
633 low = ((((((((addr[4]) << 8) |
634 addr[5]) << 8) |
635 addr[6]) << 8) |
636 addr[7]));
637
638 return COERCE64(high << 32 | low);
639#else
640 BFD_FAIL();
641 return 0;
642#endif
643
644}
645
646bfd_signed_vma
647DEFUN(_do_getl_signed_64,(addr),
648 register bfd_byte *addr)
649{
650
651#ifdef HOST_64_BIT
652 bfd_vma low, high;
653 high= (((((((addr[7] << 8) |
654 addr[6]) << 8) |
655 addr[5]) << 8) |
656 addr[4]));
657
658 low = (((((((addr[3] << 8) |
659 addr[2]) << 8) |
660 addr[1]) << 8) |
661 addr[0]) );
662
663 return COERCE64(high << 32 | low);
664#else
665 BFD_FAIL();
666 return 0;
667#endif
668
669}
670
4a81b561 671void
536b27a5 672DEFUN(_do_putb32,(data, addr),
f58809fd 673 bfd_vma data AND
536b27a5 674 register bfd_byte *addr)
4a81b561 675{
6f715d66
SC
676 addr[0] = (bfd_byte)(data >> 24);
677 addr[1] = (bfd_byte)(data >> 16);
678 addr[2] = (bfd_byte)(data >> 8);
679 addr[3] = (bfd_byte)data;
4a81b561
DHW
680}
681
682void
536b27a5 683DEFUN(_do_putl32,(data, addr),
f58809fd 684 bfd_vma data AND
536b27a5 685 register bfd_byte *addr)
4a81b561 686{
6f715d66
SC
687 addr[0] = (bfd_byte)data;
688 addr[1] = (bfd_byte)(data >> 8);
689 addr[2] = (bfd_byte)(data >> 16);
690 addr[3] = (bfd_byte)(data >> 24);
4a81b561 691}
7ed4093a 692void
536b27a5 693DEFUN(_do_putb64,(data, addr),
f58809fd 694 bfd_vma data AND
6f715d66 695 register bfd_byte *addr)
7ed4093a 696{
536b27a5
SC
697#ifdef HOST_64_BIT
698 addr[0] = (bfd_byte)(data >> (7*8));
699 addr[1] = (bfd_byte)(data >> (6*8));
700 addr[2] = (bfd_byte)(data >> (5*8));
701 addr[3] = (bfd_byte)(data >> (4*8));
702 addr[4] = (bfd_byte)(data >> (3*8));
703 addr[5] = (bfd_byte)(data >> (2*8));
704 addr[6] = (bfd_byte)(data >> (1*8));
705 addr[7] = (bfd_byte)(data >> (0*8));
7ed4093a 706#else
536b27a5 707 BFD_FAIL();
7ed4093a
SC
708#endif
709
710}
711
712void
536b27a5 713DEFUN(_do_putl64,(data, addr),
f58809fd 714 bfd_vma data AND
536b27a5 715 register bfd_byte *addr)
7ed4093a 716{
536b27a5
SC
717#ifdef HOST_64_BIT
718 addr[7] = (bfd_byte)(data >> (7*8));
719 addr[6] = (bfd_byte)(data >> (6*8));
720 addr[5] = (bfd_byte)(data >> (5*8));
721 addr[4] = (bfd_byte)(data >> (4*8));
722 addr[3] = (bfd_byte)(data >> (3*8));
723 addr[2] = (bfd_byte)(data >> (2*8));
724 addr[1] = (bfd_byte)(data >> (1*8));
725 addr[0] = (bfd_byte)(data >> (0*8));
7ed4093a 726#else
536b27a5 727 BFD_FAIL();
7ed4093a
SC
728#endif
729
730}
731
2203f786
JG
732\f
733/* Default implementation */
4a81b561 734
2203f786 735boolean
7ed4093a
SC
736DEFUN(bfd_generic_get_section_contents, (abfd, section, location, offset, count),
737 bfd *abfd AND
738 sec_ptr section AND
739 PTR location AND
740 file_ptr offset AND
741 bfd_size_type count)
2203f786
JG
742{
743 if (count == 0)
6f715d66 744 return true;
f8e01940
JG
745 if ((bfd_size_type)(offset+count) > section->_raw_size
746 || bfd_seek(abfd, (file_ptr)(section->filepos + offset), SEEK_SET) == -1
6f715d66
SC
747 || bfd_read(location, (bfd_size_type)1, count, abfd) != count)
748 return (false); /* on error */
2203f786
JG
749 return (true);
750}
6f715d66 751
f58809fd
SC
752/* This generic function can only be used in implementations where creating
753 NEW sections is disallowed. It is useful in patching existing sections
754 in read-write files, though. See other set_section_contents functions
755 to see why it doesn't work for new sections. */
756boolean
757DEFUN(bfd_generic_set_section_contents, (abfd, section, location, offset, count),
758 bfd *abfd AND
759 sec_ptr section AND
760 PTR location AND
761 file_ptr offset AND
762 bfd_size_type count)
763{
764 if (count == 0)
765 return true;
f8e01940 766 if ((bfd_size_type)(offset+count) > bfd_get_section_size_after_reloc(section)
f58809fd
SC
767 || bfd_seek(abfd, (file_ptr)(section->filepos + offset), SEEK_SET) == -1
768 || bfd_write(location, (bfd_size_type)1, count, abfd) != count)
769 return (false); /* on error */
770 return (true);
771}
772
f8e01940
JG
773/*
774INTERNAL_FUNCTION
775 bfd_log2
776
777DESCRIPTION
778 Return the log base 2 of the value supplied, rounded up. eg an
779 arg of 1025 would return 11.
780
781SYNOPSIS
782 bfd_vma bfd_log2(bfd_vma x);
783*/
6f715d66
SC
784
785bfd_vma bfd_log2(x)
786bfd_vma x;
787{
788 bfd_vma result = 0;
789 while ( (bfd_vma)(1<< result) < x)
790 result++;
791 return result;
792}
This page took 0.231691 seconds and 4 git commands to generate.