[llvm-dev] Possible bug in CLANG/LLVM

James Courtier-Dutton via llvm-dev llvm-dev at lists.llvm.org
Sun Mar 22 07:08:29 PDT 2020


Hi,

Taking a sample program:
/* A very simple function to test memory stores. */
static int mem1 = 0x123;
int *test99() {
        return &mem1;   // Return a 64bit pointer to the heap.
}

clang-10 -c -o test99.o -O1 test99.c

objdump -drt test99.o
test99.o:     file format elf64-x86-64
SYMBOL TABLE:
0000000000000000 l    df *ABS*  0000000000000000 test99.c
0000000000000000 l     O .data  0000000000000004 mem1
0000000000000000 l    d  .text  0000000000000000 .text
0000000000000000 l    d  .data  0000000000000000 .data
0000000000000000 g     F .text  0000000000000006 test99
Disassembly of section .text:
0000000000000000 <test99>:
   0:   b8 00 00 00 00          mov    $0x0,%eax    <---32 bit HERE
                        1: R_X86_64_32  .data
   5:   c3                      retq

In this case, %eax is supposed to be a 64bit pointer on x86-64
While mov $0x0,%eax zero extends to fill %rax. Can there be situation
where, when the program is linked and loaded as part of a larger
program or dynamically loaded as a .so lib, the address of .data might
be > 32bits ?

What is it that forces the .data segment to be loaded < 32bits address ?
I see that the linux elf loader, will fail to load the program if the
address is >32 bits, and also compiling with -fPIC gets round the
problem to an extent.

Kind Regards

James


More information about the llvm-dev mailing list