aboutsummaryrefslogtreecommitdiff
path: root/test/elf/Mips/gp-sym-2.test
blob: 6b9e5a5e52d93deffcdb24be46e18a60432bfbb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Check that R_MIPS32 relocation against __gnu_local_gp causes emitting
# of R_MIPS_REL32 relocation in case of shared library file linking
# and does not produce any dynamic relocation in case of linking a non-shared
# executable file.

# Now the test failed because the __gnu_local_gp symbol becomes defined
# absolute symbol and we do not generate R_MIPS_REL32 in case of shared
# library linking.
# XFAIL: *

# RUN: yaml2obj -format=elf -docnum 1 %s > %t-so.o
# RUN: lld -flavor gnu -target mipsel -shared -o %t-1.so %t-so.o
# RUN: yaml2obj -format=elf -docnum 2 %s > %t-o.o
# RUN: lld -flavor gnu -target mipsel -e T0 -o %t.exe %t-o.o %t-1.so
# RUN: llvm-readobj -r %t.exe | FileCheck -check-prefix=EXE %s
# RUN: lld -flavor gnu -target mipsel -shared -o %t-2.so %t-o.o %t-1.so
# RUN: llvm-readobj -r %t-2.so | FileCheck -check-prefix=SO %s

# EXE:      Relocations [
# EXE-NEXT: ]

# SO:      Relocations [
# SO-NEXT:   Section (5) .rel.dyn {
# SO-NEXT:     0x0 R_MIPS_NONE - 0x0
# SO-NEXT:     0x2EC R_MIPS_REL32 __gnu_local_gp 0x0
# SO-NEXT:   }
# SO-NEXT: ]

# so.so
---
FileHeader:
  Class:   ELFCLASS32
  Data:    ELFDATA2LSB
  Type:    ET_REL
  Machine: EM_MIPS
  Flags:   [EF_MIPS_PIC, EF_MIPS_CPIC]

Sections:
  - Name:         .text
    Type:         SHT_PROGBITS
    Size:         0x0C
    AddressAlign: 16
    Flags:        [SHF_EXECINSTR, SHF_ALLOC]

Symbols:
  Global:
    - Name:    T1
      Section: .text
      Type:    STT_FUNC
      Value:   0x0
      Size:    4
    - Name:    T2
      Section: .text
      Type:    STT_FUNC
      Value:   0x4
      Size:    4

# o.o
---
FileHeader:
  Class:           ELFCLASS32
  Data:            ELFDATA2LSB
  OSABI:           ELFOSABI_GNU
  Type:            ET_REL
  Machine:         EM_MIPS
  Flags:           [ EF_MIPS_NOREORDER, EF_MIPS_CPIC, EF_MIPS_PIC,
                     EF_MIPS_ABI_O32, EF_MIPS_ARCH_32R2 ]
Sections:
  - Name:            .text
    Type:            SHT_PROGBITS
    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
    AddressAlign:    0x04
    Size:            12
  - Name:            .rel.text
    Type:            SHT_REL
    Link:            .symtab
    Info:            .text
    AddressAlign:    0x04
    Relocations:
      - Offset:          0x00
        Symbol:          __gnu_local_gp
        Type:            R_MIPS_32
      - Offset:          0x04
        Symbol:          T1
        Type:            R_MIPS_LO16
      - Offset:          0x08
        Symbol:          T2
        Type:            R_MIPS_CALL16

Symbols:
  Local:
    - Name:            .text
      Type:            STT_SECTION
      Section:         .text
  Global:
    - Name:            T0
      Type:            STT_FUNC
      Section:         .text
      Size:            0x08
    - Name:            __gnu_local_gp
    - Name:            T1
    - Name:            T2
...