1 // reloc.h -- relocate input files for gold -*- C++ -*-
3 // Copyright (C) 2006-2015 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
27 #ifdef HAVE_BYTESWAP_H
32 #include "workqueue.h"
37 class General_options
;
40 struct Read_relocs_data
;
49 template<int size
, bool big_endian
>
50 class Sized_relobj_file
;
55 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
56 class Output_data_reloc
;
58 // A class to read the relocations for an object file, and then queue
59 // up a task to see if they require any GOT/PLT/COPY relocations in
62 class Read_relocs
: public Task
65 // THIS_BLOCKER and NEXT_BLOCKER are passed along to a Scan_relocs
66 // or Gc_process_relocs task, so that they run in a deterministic
68 Read_relocs(Symbol_table
* symtab
, Layout
* layout
, Relobj
* object
,
69 Task_token
* this_blocker
, Task_token
* next_blocker
)
70 : symtab_(symtab
), layout_(layout
), object_(object
),
71 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
74 // The standard Task methods.
89 Symbol_table
* symtab_
;
92 Task_token
* this_blocker_
;
93 Task_token
* next_blocker_
;
96 // Process the relocs to figure out which sections are garbage.
97 // Very similar to scan relocs.
99 class Gc_process_relocs
: public Task
102 // THIS_BLOCKER prevents this task from running until the previous
103 // one is finished. NEXT_BLOCKER prevents the next task from
105 Gc_process_relocs(Symbol_table
* symtab
, Layout
* layout
, Relobj
* object
,
106 Read_relocs_data
* rd
, Task_token
* this_blocker
,
107 Task_token
* next_blocker
)
108 : symtab_(symtab
), layout_(layout
), object_(object
), rd_(rd
),
109 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
112 ~Gc_process_relocs();
114 // The standard Task methods.
129 Symbol_table
* symtab_
;
132 Read_relocs_data
* rd_
;
133 Task_token
* this_blocker_
;
134 Task_token
* next_blocker_
;
137 // Scan the relocations for an object to see if they require any
138 // GOT/PLT/COPY relocations.
140 class Scan_relocs
: public Task
143 // THIS_BLOCKER prevents this task from running until the previous
144 // one is finished. NEXT_BLOCKER prevents the next task from
146 Scan_relocs(Symbol_table
* symtab
, Layout
* layout
, Relobj
* object
,
147 Read_relocs_data
* rd
, Task_token
* this_blocker
,
148 Task_token
* next_blocker
)
149 : symtab_(symtab
), layout_(layout
), object_(object
), rd_(rd
),
150 this_blocker_(this_blocker
), next_blocker_(next_blocker
)
155 // The standard Task methods.
170 Symbol_table
* symtab_
;
173 Read_relocs_data
* rd_
;
174 Task_token
* this_blocker_
;
175 Task_token
* next_blocker_
;
178 // A class to perform all the relocations for an object file.
180 class Relocate_task
: public Task
183 Relocate_task(const Symbol_table
* symtab
, const Layout
* layout
,
184 Relobj
* object
, Output_file
* of
,
185 Task_token
* input_sections_blocker
,
186 Task_token
* output_sections_blocker
, Task_token
* final_blocker
)
187 : symtab_(symtab
), layout_(layout
), object_(object
), of_(of
),
188 input_sections_blocker_(input_sections_blocker
),
189 output_sections_blocker_(output_sections_blocker
),
190 final_blocker_(final_blocker
)
193 // The standard Task methods.
208 const Symbol_table
* symtab_
;
209 const Layout
* layout_
;
212 Task_token
* input_sections_blocker_
;
213 Task_token
* output_sections_blocker_
;
214 Task_token
* final_blocker_
;
217 // During a relocatable link, this class records how relocations
218 // should be handled for a single input reloc section. An instance of
219 // this class is created while scanning relocs, and it is used while
220 // processing relocs.
222 class Relocatable_relocs
225 // We use a vector of unsigned char to indicate how the input relocs
226 // should be handled. Each element is one of the following values.
227 // We create this vector when we initially scan the relocations.
230 // Copy the input reloc. Don't modify it other than updating the
231 // r_offset field and the r_sym part of the r_info field.
233 // Copy the input reloc which is against an STT_SECTION symbol.
234 // Update the r_offset and r_sym part of the r_info field. Adjust
235 // the addend by subtracting the value of the old local symbol and
236 // adding the value of the new local symbol. The addend is in the
237 // SHT_RELA reloc and the contents of the data section do not need
239 RELOC_ADJUST_FOR_SECTION_RELA
,
240 // Like RELOC_ADJUST_FOR_SECTION_RELA but the addend should not be
242 RELOC_ADJUST_FOR_SECTION_0
,
243 // Like RELOC_ADJUST_FOR_SECTION_RELA but the contents of the
244 // section need to be changed. The number indicates the number of
245 // bytes in the addend in the section contents.
246 RELOC_ADJUST_FOR_SECTION_1
,
247 RELOC_ADJUST_FOR_SECTION_2
,
248 RELOC_ADJUST_FOR_SECTION_4
,
249 RELOC_ADJUST_FOR_SECTION_8
,
250 // Like RELOC_ADJUST_FOR_SECTION_4 but for unaligned relocs.
251 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED
,
252 // Discard the input reloc--process it completely when relocating
253 // the data section contents.
255 // An input reloc which is not discarded, but which requires
256 // target specific processing in order to update it.
261 : reloc_strategies_(), output_reloc_count_(0), posd_(NULL
)
264 // Record the number of relocs.
266 set_reloc_count(size_t reloc_count
)
267 { this->reloc_strategies_
.reserve(reloc_count
); }
269 // Record what to do for the next reloc.
271 set_next_reloc_strategy(Reloc_strategy strategy
)
273 this->reloc_strategies_
.push_back(static_cast<unsigned char>(strategy
));
274 if (strategy
!= RELOC_DISCARD
)
275 ++this->output_reloc_count_
;
278 // Record the Output_data associated with this reloc section.
280 set_output_data(Output_data
* posd
)
282 gold_assert(this->posd_
== NULL
);
286 // Return the Output_data associated with this reloc section.
289 { return this->posd_
; }
291 // Return what to do for reloc I.
293 strategy(unsigned int i
) const
295 gold_assert(i
< this->reloc_strategies_
.size());
296 return static_cast<Reloc_strategy
>(this->reloc_strategies_
[i
]);
299 // Return the number of relocations to create in the output file.
301 output_reloc_count() const
302 { return this->output_reloc_count_
; }
305 typedef std::vector
<unsigned char> Reloc_strategies
;
307 // The strategies for the input reloc. There is one entry in this
308 // vector for each relocation in the input section.
309 Reloc_strategies reloc_strategies_
;
310 // The number of relocations to be created in the output file.
311 size_t output_reloc_count_
;
312 // The output data structure associated with this relocation.
316 // Standard relocation routines which are used on many targets. Here
317 // SIZE and BIG_ENDIAN refer to the target, not the relocation type.
319 template<int size
, bool big_endian
>
320 class Relocate_functions
323 // Do a simple relocation with the addend in the section contents.
324 // VALSIZE is the size of the value.
325 template<int valsize
>
327 rel(unsigned char* view
,
328 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
)
330 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
331 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
332 Valtype x
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
333 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
+ value
);
336 // Like the above but for relocs at unaligned addresses.
337 template<int valsize
>
339 rel_unaligned(unsigned char* view
,
340 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
)
342 typedef typename
elfcpp::Swap_unaligned
<valsize
, big_endian
>::Valtype
344 Valtype x
= elfcpp::Swap_unaligned
<valsize
, big_endian
>::readval(view
);
345 elfcpp::Swap_unaligned
<valsize
, big_endian
>::writeval(view
, x
+ value
);
348 // Do a simple relocation using a Symbol_value with the addend in
349 // the section contents. VALSIZE is the size of the value to
351 template<int valsize
>
353 rel(unsigned char* view
,
354 const Sized_relobj_file
<size
, big_endian
>* object
,
355 const Symbol_value
<size
>* psymval
)
357 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
358 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
359 Valtype x
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
360 x
= psymval
->value(object
, x
);
361 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
);
364 // Like the above but for relocs at unaligned addresses.
365 template<int valsize
>
367 rel_unaligned(unsigned char* view
,
368 const Sized_relobj_file
<size
, big_endian
>* object
,
369 const Symbol_value
<size
>* psymval
)
371 typedef typename
elfcpp::Swap_unaligned
<valsize
, big_endian
>::Valtype
373 Valtype x
= elfcpp::Swap_unaligned
<valsize
, big_endian
>::readval(view
);
374 x
= psymval
->value(object
, x
);
375 elfcpp::Swap_unaligned
<valsize
, big_endian
>::writeval(view
, x
);
378 // Do a simple relocation with the addend in the relocation.
379 // VALSIZE is the size of the value.
380 template<int valsize
>
382 rela(unsigned char* view
,
383 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
,
384 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype addend
)
386 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
387 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
388 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, value
+ addend
);
391 // Do a simple relocation using a symbol value with the addend in
392 // the relocation. VALSIZE is the size of the value.
393 template<int valsize
>
395 rela(unsigned char* view
,
396 const Sized_relobj_file
<size
, big_endian
>* object
,
397 const Symbol_value
<size
>* psymval
,
398 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype addend
)
400 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
401 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
402 Valtype x
= psymval
->value(object
, addend
);
403 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
);
406 // Do a simple PC relative relocation with the addend in the section
407 // contents. VALSIZE is the size of the value.
408 template<int valsize
>
410 pcrel(unsigned char* view
,
411 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
,
412 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
414 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
415 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
416 Valtype x
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
417 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
+ value
- address
);
420 // Like the above but for relocs at unaligned addresses.
421 template<int valsize
>
423 pcrel_unaligned(unsigned char* view
,
424 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
,
425 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
427 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
428 Valtype x
= elfcpp::Swap_unaligned
<valsize
, big_endian
>::readval(view
);
429 elfcpp::Swap_unaligned
<valsize
, big_endian
>::writeval(view
,
430 x
+ value
- address
);
433 // Do a simple PC relative relocation with a Symbol_value with the
434 // addend in the section contents. VALSIZE is the size of the
436 template<int valsize
>
438 pcrel(unsigned char* view
,
439 const Sized_relobj_file
<size
, big_endian
>* object
,
440 const Symbol_value
<size
>* psymval
,
441 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
443 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
444 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
445 Valtype x
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
446 x
= psymval
->value(object
, x
);
447 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
- address
);
450 // Do a simple PC relative relocation with the addend in the
451 // relocation. VALSIZE is the size of the value.
452 template<int valsize
>
454 pcrela(unsigned char* view
,
455 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype value
,
456 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype addend
,
457 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
459 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
460 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
461 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, value
+ addend
- address
);
464 // Do a simple PC relative relocation with a Symbol_value with the
465 // addend in the relocation. VALSIZE is the size of the value.
466 template<int valsize
>
468 pcrela(unsigned char* view
,
469 const Sized_relobj_file
<size
, big_endian
>* object
,
470 const Symbol_value
<size
>* psymval
,
471 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype addend
,
472 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
474 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
475 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
476 Valtype x
= psymval
->value(object
, addend
);
477 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, x
- address
);
480 typedef Relocate_functions
<size
, big_endian
> This
;
483 // Do a simple 8-bit REL relocation with the addend in the section
486 rel8(unsigned char* view
, unsigned char value
)
487 { This::template rel
<8>(view
, value
); }
490 rel8(unsigned char* view
,
491 const Sized_relobj_file
<size
, big_endian
>* object
,
492 const Symbol_value
<size
>* psymval
)
493 { This::template rel
<8>(view
, object
, psymval
); }
495 // Do an 8-bit RELA relocation with the addend in the relocation.
497 rela8(unsigned char* view
, unsigned char value
, unsigned char addend
)
498 { This::template rela
<8>(view
, value
, addend
); }
501 rela8(unsigned char* view
,
502 const Sized_relobj_file
<size
, big_endian
>* object
,
503 const Symbol_value
<size
>* psymval
,
504 unsigned char addend
)
505 { This::template rela
<8>(view
, object
, psymval
, addend
); }
507 // Do a simple 8-bit PC relative relocation with the addend in the
510 pcrel8(unsigned char* view
, unsigned char value
,
511 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
512 { This::template pcrel
<8>(view
, value
, address
); }
515 pcrel8(unsigned char* view
,
516 const Sized_relobj_file
<size
, big_endian
>* object
,
517 const Symbol_value
<size
>* psymval
,
518 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
519 { This::template pcrel
<8>(view
, object
, psymval
, address
); }
521 // Do a simple 8-bit PC relative RELA relocation with the addend in
524 pcrela8(unsigned char* view
, unsigned char value
, unsigned char addend
,
525 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
526 { This::template pcrela
<8>(view
, value
, addend
, address
); }
529 pcrela8(unsigned char* view
,
530 const Sized_relobj_file
<size
, big_endian
>* object
,
531 const Symbol_value
<size
>* psymval
,
532 unsigned char addend
,
533 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
534 { This::template pcrela
<8>(view
, object
, psymval
, addend
, address
); }
536 // Do a simple 16-bit REL relocation with the addend in the section
539 rel16(unsigned char* view
, elfcpp::Elf_Half value
)
540 { This::template rel
<16>(view
, value
); }
543 rel16(unsigned char* view
,
544 const Sized_relobj_file
<size
, big_endian
>* object
,
545 const Symbol_value
<size
>* psymval
)
546 { This::template rel
<16>(view
, object
, psymval
); }
548 // Do an 16-bit RELA relocation with the addend in the relocation.
550 rela16(unsigned char* view
, elfcpp::Elf_Half value
, elfcpp::Elf_Half addend
)
551 { This::template rela
<16>(view
, value
, addend
); }
554 rela16(unsigned char* view
,
555 const Sized_relobj_file
<size
, big_endian
>* object
,
556 const Symbol_value
<size
>* psymval
,
557 elfcpp::Elf_Half addend
)
558 { This::template rela
<16>(view
, object
, psymval
, addend
); }
560 // Do a simple 16-bit PC relative REL relocation with the addend in
561 // the section contents.
563 pcrel16(unsigned char* view
, elfcpp::Elf_Half value
,
564 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
565 { This::template pcrel
<16>(view
, value
, address
); }
568 pcrel16(unsigned char* view
,
569 const Sized_relobj_file
<size
, big_endian
>* object
,
570 const Symbol_value
<size
>* psymval
,
571 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
572 { This::template pcrel
<16>(view
, object
, psymval
, address
); }
574 // Do a simple 16-bit PC relative RELA relocation with the addend in
577 pcrela16(unsigned char* view
, elfcpp::Elf_Half value
,
578 elfcpp::Elf_Half addend
,
579 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
580 { This::template pcrela
<16>(view
, value
, addend
, address
); }
583 pcrela16(unsigned char* view
,
584 const Sized_relobj_file
<size
, big_endian
>* object
,
585 const Symbol_value
<size
>* psymval
,
586 elfcpp::Elf_Half addend
,
587 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
588 { This::template pcrela
<16>(view
, object
, psymval
, addend
, address
); }
590 // Do a simple 32-bit REL relocation with the addend in the section
593 rel32(unsigned char* view
, elfcpp::Elf_Word value
)
594 { This::template rel
<32>(view
, value
); }
596 // Like above but for relocs at unaligned addresses.
598 rel32_unaligned(unsigned char* view
, elfcpp::Elf_Word value
)
599 { This::template rel_unaligned
<32>(view
, value
); }
602 rel32(unsigned char* view
,
603 const Sized_relobj_file
<size
, big_endian
>* object
,
604 const Symbol_value
<size
>* psymval
)
605 { This::template rel
<32>(view
, object
, psymval
); }
607 // Like above but for relocs at unaligned addresses.
609 rel32_unaligned(unsigned char* view
,
610 const Sized_relobj_file
<size
, big_endian
>* object
,
611 const Symbol_value
<size
>* psymval
)
612 { This::template rel_unaligned
<32>(view
, object
, psymval
); }
614 // Do an 32-bit RELA relocation with the addend in the relocation.
616 rela32(unsigned char* view
, elfcpp::Elf_Word value
, elfcpp::Elf_Word addend
)
617 { This::template rela
<32>(view
, value
, addend
); }
620 rela32(unsigned char* view
,
621 const Sized_relobj_file
<size
, big_endian
>* object
,
622 const Symbol_value
<size
>* psymval
,
623 elfcpp::Elf_Word addend
)
624 { This::template rela
<32>(view
, object
, psymval
, addend
); }
626 // Do a simple 32-bit PC relative REL relocation with the addend in
627 // the section contents.
629 pcrel32(unsigned char* view
, elfcpp::Elf_Word value
,
630 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
631 { This::template pcrel
<32>(view
, value
, address
); }
633 // Unaligned version of the above.
635 pcrel32_unaligned(unsigned char* view
, elfcpp::Elf_Word value
,
636 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
637 { This::template pcrel_unaligned
<32>(view
, value
, address
); }
640 pcrel32(unsigned char* view
,
641 const Sized_relobj_file
<size
, big_endian
>* object
,
642 const Symbol_value
<size
>* psymval
,
643 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
644 { This::template pcrel
<32>(view
, object
, psymval
, address
); }
646 // Do a simple 32-bit PC relative RELA relocation with the addend in
649 pcrela32(unsigned char* view
, elfcpp::Elf_Word value
,
650 elfcpp::Elf_Word addend
,
651 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
652 { This::template pcrela
<32>(view
, value
, addend
, address
); }
655 pcrela32(unsigned char* view
,
656 const Sized_relobj_file
<size
, big_endian
>* object
,
657 const Symbol_value
<size
>* psymval
,
658 elfcpp::Elf_Word addend
,
659 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
660 { This::template pcrela
<32>(view
, object
, psymval
, addend
, address
); }
662 // Do a simple 64-bit REL relocation with the addend in the section
665 rel64(unsigned char* view
, elfcpp::Elf_Xword value
)
666 { This::template rel
<64>(view
, value
); }
669 rel64(unsigned char* view
,
670 const Sized_relobj_file
<size
, big_endian
>* object
,
671 const Symbol_value
<size
>* psymval
)
672 { This::template rel
<64>(view
, object
, psymval
); }
674 // Do a 64-bit RELA relocation with the addend in the relocation.
676 rela64(unsigned char* view
, elfcpp::Elf_Xword value
,
677 elfcpp::Elf_Xword addend
)
678 { This::template rela
<64>(view
, value
, addend
); }
681 rela64(unsigned char* view
,
682 const Sized_relobj_file
<size
, big_endian
>* object
,
683 const Symbol_value
<size
>* psymval
,
684 elfcpp::Elf_Xword addend
)
685 { This::template rela
<64>(view
, object
, psymval
, addend
); }
687 // Do a simple 64-bit PC relative REL relocation with the addend in
688 // the section contents.
690 pcrel64(unsigned char* view
, elfcpp::Elf_Xword value
,
691 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
692 { This::template pcrel
<64>(view
, value
, address
); }
695 pcrel64(unsigned char* view
,
696 const Sized_relobj_file
<size
, big_endian
>* object
,
697 const Symbol_value
<size
>* psymval
,
698 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
699 { This::template pcrel
<64>(view
, object
, psymval
, address
); }
701 // Do a simple 64-bit PC relative RELA relocation with the addend in
704 pcrela64(unsigned char* view
, elfcpp::Elf_Xword value
,
705 elfcpp::Elf_Xword addend
,
706 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
707 { This::template pcrela
<64>(view
, value
, addend
, address
); }
710 pcrela64(unsigned char* view
,
711 const Sized_relobj_file
<size
, big_endian
>* object
,
712 const Symbol_value
<size
>* psymval
,
713 elfcpp::Elf_Xword addend
,
714 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
715 { This::template pcrela
<64>(view
, object
, psymval
, addend
, address
); }
718 // Integer manipulation functions used by various targets when
719 // performing relocations.
725 // Sign extend an n-bit unsigned integer stored in a uint32_t into
726 // an int32_t. BITS must be between 1 and 32.
727 static inline int32_t
728 sign_extend32(uint32_t val
)
730 gold_assert(bits
> 0 && bits
<= 32);
732 return static_cast<int32_t>(val
);
733 uint32_t mask
= (~static_cast<uint32_t>(0)) >> (32 - bits
);
735 uint32_t top_bit
= 1U << (bits
- 1);
736 int32_t as_signed
= static_cast<int32_t>(val
);
737 if ((val
& top_bit
) != 0)
738 as_signed
-= static_cast<int32_t>(top_bit
* 2);
742 // Return true if VAL (stored in a uint32_t) has overflowed a signed
743 // value with BITS bits.
745 has_overflow32(uint32_t val
)
747 gold_assert(bits
> 0 && bits
<= 32);
750 int32_t max
= (1 << (bits
- 1)) - 1;
751 int32_t min
= -(1 << (bits
- 1));
752 int32_t as_signed
= static_cast<int32_t>(val
);
753 return as_signed
> max
|| as_signed
< min
;
756 // Return true if VAL (stored in a uint32_t) has overflowed both a
757 // signed and an unsigned value. E.g.,
758 // Bits<8>::has_signed_unsigned_overflow32 would check -128 <= VAL <
761 has_signed_unsigned_overflow32(uint32_t val
)
763 gold_assert(bits
> 0 && bits
<= 32);
766 int32_t max
= static_cast<int32_t>((1U << bits
) - 1);
767 int32_t min
= -(1 << (bits
- 1));
768 int32_t as_signed
= static_cast<int32_t>(val
);
769 return as_signed
> max
|| as_signed
< min
;
772 // Select bits from A and B using bits in MASK. For each n in
773 // [0..31], the n-th bit in the result is chosen from the n-th bits
774 // of A and B. A zero selects A and a one selects B.
775 static inline uint32_t
776 bit_select32(uint32_t a
, uint32_t b
, uint32_t mask
)
777 { return (a
& ~mask
) | (b
& mask
); }
779 // Sign extend an n-bit unsigned integer stored in a uint64_t into
780 // an int64_t. BITS must be between 1 and 64.
781 static inline int64_t
782 sign_extend(uint64_t val
)
784 gold_assert(bits
> 0 && bits
<= 64);
786 return static_cast<int64_t>(val
);
787 uint64_t mask
= (~static_cast<uint64_t>(0)) >> (64 - bits
);
789 uint64_t top_bit
= static_cast<uint64_t>(1) << (bits
- 1);
790 int64_t as_signed
= static_cast<int64_t>(val
);
791 if ((val
& top_bit
) != 0)
792 as_signed
-= static_cast<int64_t>(top_bit
* 2);
796 // Return true if VAL (stored in a uint64_t) has overflowed a signed
797 // value with BITS bits.
799 has_overflow(uint64_t val
)
801 gold_assert(bits
> 0 && bits
<= 64);
804 int64_t max
= (static_cast<int64_t>(1) << (bits
- 1)) - 1;
805 int64_t min
= -(static_cast<int64_t>(1) << (bits
- 1));
806 int64_t as_signed
= static_cast<int64_t>(val
);
807 return as_signed
> max
|| as_signed
< min
;
810 // Return true if VAL (stored in a uint64_t) has overflowed both a
811 // signed and an unsigned value. E.g.,
812 // Bits<8>::has_signed_unsigned_overflow would check -128 <= VAL <
815 has_signed_unsigned_overflow64(uint64_t val
)
817 gold_assert(bits
> 0 && bits
<= 64);
820 int64_t max
= static_cast<int64_t>((static_cast<uint64_t>(1) << bits
) - 1);
821 int64_t min
= -(static_cast<int64_t>(1) << (bits
- 1));
822 int64_t as_signed
= static_cast<int64_t>(val
);
823 return as_signed
> max
|| as_signed
< min
;
826 // Select bits from A and B using bits in MASK. For each n in
827 // [0..31], the n-th bit in the result is chosen from the n-th bits
828 // of A and B. A zero selects A and a one selects B.
829 static inline uint64_t
830 bit_select64(uint64_t a
, uint64_t b
, uint64_t mask
)
831 { return (a
& ~mask
) | (b
& mask
); }
834 // Track relocations while reading a section. This lets you ask for
835 // the relocation at a certain offset, and see how relocs occur
836 // between points of interest.
838 template<int size
, bool big_endian
>
843 : prelocs_(NULL
), len_(0), pos_(0), reloc_size_(0)
846 // Initialize the Track_relocs object. OBJECT is the object holding
847 // the reloc section, RELOC_SHNDX is the section index of the reloc
848 // section, and RELOC_TYPE is the type of the reloc section
849 // (elfcpp::SHT_REL or elfcpp::SHT_RELA). This returns false if
850 // something went wrong.
852 initialize(Object
* object
, unsigned int reloc_shndx
,
853 unsigned int reloc_type
);
855 // Return the offset in the data section to which the next reloc
856 // applies. This returns -1 if there is no next reloc.
860 // Return the symbol index of the next reloc. This returns -1U if
861 // there is no next reloc.
865 // Return the addend of the next reloc. This returns 0 if there is
870 // Advance to OFFSET within the data section, and return the number
871 // of relocs which would be skipped.
873 advance(off_t offset
);
875 // Checkpoint the current position in the reloc section.
878 { return this->pos_
; }
880 // Reset the position to CHECKPOINT.
882 reset(section_size_type checkpoint
)
883 { this->pos_
= checkpoint
; }
886 // The contents of the input object's reloc section.
887 const unsigned char* prelocs_
;
888 // The length of the reloc section.
889 section_size_type len_
;
890 // Our current position in the reloc section.
891 section_size_type pos_
;
892 // The size of the relocs in the section.
896 } // End namespace gold.
898 #endif // !defined(GOLD_RELOC_H)