File: mips-got-relocs.s

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 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 (66 lines) | stat: -rw-r--r-- 1,955 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
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
# REQUIRES: mips
# Check R_MIPS_GOT16 relocation calculation.

# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t-be.o
# RUN: ld.lld %t-be.o -o %t-be.exe
# RUN: llvm-readobj --sections -r --symbols --mips-plt-got %t-be.exe \
# RUN:   | FileCheck -check-prefixes=ELF,EXE %s
# RUN: llvm-objdump -d %t-be.exe | FileCheck -check-prefix=DIS %s

# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s -o %t-el.o
# RUN: ld.lld %t-el.o -o %t-el.exe
# RUN: llvm-readobj --sections -r --symbols --mips-plt-got %t-el.exe \
# RUN:   | FileCheck -check-prefixes=ELF,EXE %s
# RUN: llvm-objdump -d %t-el.exe | FileCheck -check-prefix=DIS %s

# RUN: ld.lld -shared %t-be.o -o %t-be.so
# RUN: llvm-readobj --sections -r --symbols --mips-plt-got %t-be.so \
# RUN:   | FileCheck -check-prefixes=ELF,DSO %s
# RUN: llvm-objdump -d %t-be.so | FileCheck -check-prefix=DIS %s

# RUN: ld.lld -shared %t-el.o -o %t-el.so
# RUN: llvm-readobj --sections -r --symbols --mips-plt-got %t-el.so \
# RUN:   | FileCheck -check-prefixes=ELF,DSO %s
# RUN: llvm-objdump -d %t-el.so | FileCheck -check-prefix=DIS %s

  .text
  .globl  __start
__start:
  lui $2, %got(v1)

  .data
  .globl v1
  .type  v1,@object
  .size  v1,4
v1:
  .word 0

# ELF:      Section {
# ELF:        Name: .got
# ELF:        Flags [
# ELF-NEXT:     SHF_ALLOC
# ELF-NEXT:     SHF_MIPS_GPREL
# ELF-NEXT:     SHF_WRITE
# ELF-NEXT:   ]
#
# ELF:      Relocations [
# ELF-NEXT: ]
#
# ELF:      Symbol {
# ELF:        Name: v1
# ELF-NEXT:   Value: 0x[[V1:[0-9A-F]+]]
#
# ELF:      {{.*}} GOT {
# EXE-NEXT:   Canonical gp value: 0x38000
# DSO-NEXT:   Canonical gp value: 0x28000
#
# ELF:        Entry {
# EXE:          Address: 0x30018
# DSO:          Address: 0x20018
# ELF-NEXT:     Access: -32744
# ELF-NEXT:     Initial: 0x[[V1]]

# "v1 GOT entry address" - _gp
# exe: 0x30018 - 0x38000 = -0x7fe8 == 0x8018 == 32792
# dso: 0x20018 - 0x28000 = -0x7fe8 == 0x8018 == 32792
# DIS:  {{.*}}  lui $2, 32792