File: mips-got16-relocatable.s

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,436 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (37 lines) | stat: -rw-r--r-- 1,394 bytes parent folder | download | duplicates (2)
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
# REQUIRES: mips
# Check writing updated addend for R_MIPS_GOT16 relocation,
# when produce a relocatable output.

# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux -o %t.o %s
# RUN: ld.lld -r -o %t %t.o %t.o
# RUN: llvm-objdump -d -r %t | FileCheck -check-prefix=OBJ %s
# RUN: ld.lld -shared -o %t.so %t
# RUN: llvm-objdump -d %t.so | FileCheck -check-prefix=SO %s

# OBJ:      Disassembly of section .text:
# OBJ-EMPTY:
# OBJ-NEXT: .text:
# OBJ-NEXT:        0:       8f 99 00 00     lw      $25, 0($gp)
# OBJ-NEXT:                         00000000:  R_MIPS_GOT16 .data
# OBJ-NEXT:        4:       27 24 00 00     addiu   $4, $25, 0
# OBJ-NEXT:                         00000004:  R_MIPS_LO16  .data
# OBJ:            10:       8f 99 00 00     lw      $25, 0($gp)
# OBJ-NEXT:                         00000010:  R_MIPS_GOT16 .data
# OBJ-NEXT:       14:       27 24 00 10     addiu   $4, $25, 16
# OBJ-NEXT:                         00000014:  R_MIPS_LO16  .data

# SO:      Disassembly of section .text:
# SO-EMPTY:
# SO-NEXT: .text:
# SO-NEXT:    10000:       8f 99 80 18     lw      $25, -32744($gp)
# SO-NEXT:    10004:       27 24 00 00     addiu   $4, $25, 0
# SO:         10010:       8f 99 80 18     lw      $25, -32744($gp)
# SO-NEXT:    10014:       27 24 00 10     addiu   $4, $25, 16

  .text
  lw     $t9, %got(.data)($gp)
  addiu  $a0, $t9, %lo(.data)

  .data
data:
  .word 0