File: thunk-gen-mips.s

package info (click to toggle)
llvm-toolchain-6.0 1%3A6.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 598,080 kB
  • sloc: cpp: 3,046,253; ansic: 595,057; asm: 271,965; python: 128,926; objc: 106,554; sh: 21,906; lisp: 10,191; pascal: 6,094; ml: 5,544; perl: 5,265; makefile: 2,227; cs: 2,027; xml: 686; php: 212; csh: 117
file content (40 lines) | stat: -rw-r--r-- 1,021 bytes parent folder | download | duplicates (6)
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
# REQUIRES: mips
# RUN:	llvm-mc -filetype=obj -defsym=MAIN=1 -triple=mips-unknown-freebsd %s -o %t
# RUN:	llvm-mc -filetype=obj -defsym=TARGET=1 -triple=mips-unknown-freebsd %s -o %t1

# SECTIONS command with the first pattern that does not match.
# Linking a PIC and non-PIC object files triggers the LA25 thunk generation.
# RUN:		echo "SECTIONS { \
# RUN:		.text : { \
# RUN:			*(.nomatch) \
# RUN:			%t(.text) \
# RUN:			. = . + 0x100000 ; \
# RUN:			%t1(.text) \
# RUN:		} \
# RUN:	}" > %t.script
# RUN: ld.lld -o %t.exe --script %t.script %t %t1
# RUN: llvm-objdump -t %t.exe | FileCheck %s
# CHECK: SYMBOL TABLE:
# CHECK-ANY: 00000000         .text           00000000 _start
# CHECK-ANY: 0010000c l     F .text           00000010 __LA25Thunk_too_far
# CHECK-ANY: 00100020 g     F .text           00000024 too_far

.ifdef MAIN
.global _start
_start:
	j too_far
	nop
.endif

.ifdef TARGET
	.text
	.abicalls
	.set    noreorder
	.globl  too_far
	.ent    too_far
too_far:
	nop
	jr      $ra
	nop
	.end    too_far
.endif