aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/mips-xgot-order.s
blob: 911731c713cd218f38d2e9f6ccdd548b437c4281 (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
# Check that GOT entries accessed via 16-bit indexing are allocated
# in the beginning of the GOT.

# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t.o
# RUN: ld.lld %t.o -o %t.exe
# RUN: llvm-objdump -d -s -t %t.exe | FileCheck %s

# REQUIRES: mips

# CHECK:      Disassembly of section .text:
# CHECK-NEXT: __start:
# CHECK-NEXT:    20000:       3c 02 00 00     lui     $2, 0
# CHECK-NEXT:    20004:       8c 42 80 24     lw      $2, -32732($2)
# CHECK-NEXT:    20008:       3c 02 00 00     lui     $2, 0
# CHECK-NEXT:    2000c:       8c 42 80 28     lw      $2, -32728($2)
#
# CHECK:      bar:
# CHECK-NEXT:    20010:       8c 42 80 20     lw      $2, -32736($2)
# CHECK-NEXT:    20014:       8c 42 80 18     lw      $2, -32744($2)
# CHECK-NEXT:    20018:       20 42 00 00     addi    $2, $2, 0

# CHECK:      Contents of section .got:
# CHECK-NEXT:  30010 00000000 80000000 00030000 00040000
#                                      ^ %hi(loc)
#                                               ^ redundant entry
# CHECK-NEXT:  30020 00020010 00020000 00030000
#                    ^ %got(bar)
#                             ^ %got_hi/lo(start)
#                                      ^ %got_hi/lo(loc)

# CHECK: 00030000         .data           00000000 loc
# CHECK: 00020000         .text           00000000 __start
# CHECK: 00020010         .text           00000000 bar

  .text
  .global __start, bar
__start:
  lui   $2, %got_hi(__start)
  lw    $2, %got_lo(__start)($2)
  lui   $2, %got_hi(loc)
  lw    $2, %got_lo(loc)($2)
bar:
  lw    $2, %got(bar)($2)
  lw    $2, %got(loc)($2)
  addi  $2, $2, %lo(loc)

  .data
loc:
  .word 0