aboutsummaryrefslogtreecommitdiff
path: root/lld/test/ELF/linkerscript/region-alias.s
blob: ec1582bd283cb816550324dae5ea13d1e325d1ba (plain)
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
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
# RUN: echo "MEMORY {                                  \
# RUN:   ROM (rwx): ORIGIN = 0x1000, LENGTH = 0x100    \
# RUN:   RAM (rwx): ORIGIN = 0x2000, LENGTH = 0x100    \
# RUN: }                                               \
# RUN: INCLUDE \"%t.script.inc\"                       \
# RUN: SECTIONS {                                      \
# RUN:  .text : { *(.text*) } > ALIAS_TEXT             \
# RUN:  .data : { *(.data*) } > ALIAS_DATA             \
# RUN: }" > %t.script

## .text to ROM, .data to RAM.
# RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" > %t.script.inc
# RUN: echo "REGION_ALIAS (\"ALIAS_DATA\", RAM);" >> %t.script.inc
# RUN: ld.lld %t --script %t.script -o %t2
# RUN: llvm-objdump -section-headers %t2 | FileCheck %s
# CHECK: .text       00000001 0000000000001000 TEXT
# CHECK: .data       00000008 0000000000002000 DATA

## All to ROM.
# RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" > %t.script.inc
# RUN: echo "REGION_ALIAS (\"ALIAS_DATA\", ROM);" >> %t.script.inc
# RUN: ld.lld %t --script %t.script -o %t2
# RUN: llvm-objdump -section-headers %t2 | FileCheck %s --check-prefix=RAM
# RAM: .text         00000001 0000000000001000 TEXT
# RAM: .data         00000008 0000000000001001 DATA

## Redefinition of region.
# RUN: echo "REGION_ALIAS (\"ROM\", ROM);" > %t.script.inc
# RUN: not ld.lld %t --script %t.script -o /dev/null 2>&1 | \
# RUN:   FileCheck %s --check-prefix=ERR1
# ERR1: {{.*}}script.inc:1: redefinition of memory region 'ROM'

## Redefinition of alias.
# RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" > %t.script.inc
# RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", ROM);" >> %t.script.inc
# RUN: not ld.lld %t --script %t.script -o /dev/null 2>&1 | \
# RUN:   FileCheck %s --check-prefix=ERR2
# ERR2: {{.*}}script.inc:2: redefinition of memory region 'ALIAS_TEXT'

## Attemp to create an alias for undefined region.
# RUN: echo "REGION_ALIAS (\"ALIAS_TEXT\", FOO);" > %t.script.inc
# RUN: not ld.lld %t --script %t.script -o /dev/null 2>&1 | \
# RUN:   FileCheck %s --check-prefix=ERR3
# ERR3: {{.*}}script.inc:1: memory region 'FOO' is not defined

.text
.global _start
_start:
 nop

.section .data,"aw"
.quad 0