bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug gold/19567] Symbol_value::value doesn't support x32 overflow check


From: hjl.tools at gmail dot com
Subject: [Bug gold/19567] Symbol_value::value doesn't support x32 overflow check
Date: Thu, 04 Feb 2016 20:15:02 +0000

https://sourceware.org/bugzilla/show_bug.cgi?id=19567

--- Comment #5 from H.J. Lu <hjl.tools at gmail dot com> ---
address@hidden pr19567]$ cat x.s 
    .globl _start
_start:
    mov $_start,%rax
    mov _start,%rax
address@hidden pr19567]$ make
as --x32 -o x.o x.s
ld.gold -m elf32_x86_64 -Ttext-segment 0x80000000 -o x x.o
objdump -dw x

x:     file format elf32-x86-64


Disassembly of section .text:

80000074 <_start>:
80000074:       48 c7 c0 74 00 00 80    mov    $0xffffffff80000074,%rax
8000007b:       48 8b 04 25 74 00 00 80         mov    0xffffffff80000074,%rax
address@hidden pr19567]$ readelf -r x.o

Relocation section '.rela.text' at offset 0x9c contains 2 entries:
 Offset     Info    Type            Sym.Value  Sym. Name + Addend
00000003  0000040b R_X86_64_32S      00000000   _start + 0
0000000b  0000040b R_X86_64_32S      00000000   _start + 0
address@hidden pr19567]$ ld -m elf32_x86_64 -Ttext-segment 0x80000000 -o x x.o
x.o: In function `_start':
(.text+0x3): relocation truncated to fit: R_X86_64_32S against symbol `_start'
defined in .text section in x.o
x.o: In function `_start':
(.text+0xb): relocation truncated to fit: R_X86_64_32S against symbol `_start'
defined in .text section in x.o
address@hidden pr19567]$ 

To detect R_X86_64_32S overflow, Symbol_value::value to return 64-bit value
so that I can check if there is an overflow.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]