Imported Upstream version 6.10.0.49

Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2020-01-16 16:38:04 +00:00
parent d94e79959b
commit 468663ddbb
48518 changed files with 2789335 additions and 61176 deletions

View File

@ -0,0 +1,5 @@
.file 1 "test/ELF/linkerscript/Inputs/comdat_gc.s"
.section .text._Z3fooIiEvv,"axG",@progbits,_Z3fooIiEvv,comdat
.loc 1 5
ret

View File

@ -0,0 +1,2 @@
.comm common_uniq_1,8,8
.comm common_multiple,16,8

View File

@ -0,0 +1,2 @@
.comm common_uniq_2,16,16
.comm common_multiple,32,8

View File

@ -0,0 +1,3 @@
.section .debug_str
.asciz "CCC"
.asciz "DDD"

View File

@ -0,0 +1,5 @@
.global bar
.type bar, @object
.size bar, 8
bar:
.quad 0

View File

@ -0,0 +1,8 @@
.section .foo.1,"a"
.quad 4
.section .foo.2,"a"
.quad 5
.section .foo.3,"a"
.quad 6

View File

@ -0,0 +1,8 @@
.section .foo.1,"a"
.quad 7
.section .foo.2,"a"
.quad 8
.section .foo.3,"a"
.quad 9

View File

@ -0,0 +1,2 @@
.section .foo,"a"
.quad 0x11

View File

@ -0,0 +1,12 @@
PHDRS
{
ph_write PT_LOAD FLAGS(2);
ph_exec PT_LOAD FLAGS(1);
}
SECTIONS
{
.bar : { *(.bar) } : ph_exec
.foo : { *(.foo) }
.text : { *(.text) } : ph_write
}

View File

@ -0,0 +1,5 @@
.section .text
.globl _potato
_potato:
nop
nop

View File

@ -0,0 +1,2 @@
.section .keep, "a"
.long 0x41414141

View File

@ -0,0 +1,2 @@
.globl foo
foo:

View File

@ -0,0 +1,3 @@
.globl _bar,_dynamic
_bar:
_dynamic:

View File

@ -0,0 +1,3 @@
.globl _bar,_static
_bar:
_static:

View File

@ -0,0 +1,3 @@
.globl _start
_start:
.quad 0x11223344

View File

@ -0,0 +1,4 @@
.section .text
.globl tomato
tomato:
movl $1, %eax

View File

@ -0,0 +1,5 @@
.global foo
.size foo, 8
.type foo, @object
foo:
.quad 42

View File

@ -0,0 +1,7 @@
SECTIONS
{
PROVIDE (foobar1 = SEGMENT_START("text-segment", 0x8001));
PROVIDE (foobar2 = SEGMENT_START("data-segment", 0x8002));
PROVIDE (foobar3 = SEGMENT_START("bss-segment", 0x8000 + (4 - 1)));
PROVIDE (foobar4 = SEGMENT_START("abc-segment", 0x8004));
}

View File

@ -0,0 +1,10 @@
.global bar
.type bar, @function
bar:
.global bar2
.type bar2, @function
bar2:
.global zed
zed:

View File

@ -0,0 +1,7 @@
.section .aaa.1, "a"
.align 16
.quad 0x11
.section .aaa.2, "a"
.align 4
.quad 0x22

Some files were not shown because too many files have changed in this diff Show More