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,17 @@
.globl _foo
_foo:
nop
nop
nop
nop
.globl _bar
_bar:
nop
nop
nop
.globl _dah
_dah:
nop
nop

View File

@@ -0,0 +1,5 @@
.global foo
.type foo, @function
foo:
.global bar
bar:

View File

@@ -0,0 +1,4 @@
.section .tdata,"awT",@progbits
.globl a
a:
.word 42

View File

@@ -0,0 +1,19 @@
.text
.global foo
.section .tdata,"awT",%progbits
.align 2
.type foo, %object
.size foo, 4
foo:
.word 5
.text
.text
.global bar
.section .tdata,"awT",%progbits
.align 2
.type bar, %object
.size bar, 4
bar:
.word 5
.text

View File

@@ -0,0 +1,12 @@
.globl _foo
_foo:
nop
nop
nop
nop
.globl _bar
_bar:
nop
nop
nop

View File

@@ -0,0 +1,3 @@
.global foo
.hidden foo
foo = 0x42

View File

@@ -0,0 +1,4 @@
.global abs
abs = 0x42
.global big
big = 0x1000000000

View File

@@ -0,0 +1,2 @@
.global foo
foo = 255

View File

@@ -0,0 +1,2 @@
.global foo
foo = 256

View File

@@ -0,0 +1,2 @@
.global foo
foo = 257

View File

@@ -0,0 +1,4 @@
.globl _bar
.type _bar, @function
_bar:
mov $2, %eax

View File

@@ -0,0 +1,3 @@
.globl _shared
_shared:
callq _unresolved@PLT

View File

@@ -0,0 +1,6 @@
.text
.globl kernel_0
.align 64
.amdgpu_hsa_kernel kernel_0
kernel_0:
s_endpgm

View File

@@ -0,0 +1,6 @@
.text
.globl kernel_1
.align 64
.amdgpu_hsa_kernel kernel_1
kernel_1:
s_endpgm

View File

@@ -0,0 +1,5 @@
.globl _start
_start:
.globl end
end:

View File

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

View File

@@ -0,0 +1,2 @@
.global bar
bar:

View File

@@ -0,0 +1 @@
.quad bar

View File

@@ -0,0 +1,29 @@
// Input that generates an object with a populated SHT_ARM_ATTRIBUTES section
.text
.syntax unified
.eabi_attribute 67, "2.09" @ Tag_conformance
.cpu cortex-a8
.eabi_attribute 6, 10 @ Tag_CPU_arch
.eabi_attribute 7, 65 @ Tag_CPU_arch_profile
.eabi_attribute 8, 1 @ Tag_ARM_ISA_use
.eabi_attribute 9, 2 @ Tag_THUMB_ISA_use
.fpu neon
.eabi_attribute 15, 1 @ Tag_ABI_PCS_RW_data
.eabi_attribute 16, 1 @ Tag_ABI_PCS_RO_data
.eabi_attribute 17, 2 @ Tag_ABI_PCS_GOT_use
.eabi_attribute 20, 1 @ Tag_ABI_FP_denormal
.eabi_attribute 21, 1 @ Tag_ABI_FP_exceptions
.eabi_attribute 23, 3 @ Tag_ABI_FP_number_model
.eabi_attribute 34, 1 @ Tag_CPU_unaligned_access
.eabi_attribute 24, 1 @ Tag_ABI_align_needed
.eabi_attribute 25, 1 @ Tag_ABI_align_preserved
.eabi_attribute 38, 1 @ Tag_ABI_FP_16bit_format
.eabi_attribute 18, 4 @ Tag_ABI_PCS_wchar_t
.eabi_attribute 26, 2 @ Tag_ABI_enum_size
.eabi_attribute 14, 0 @ Tag_ABI_PCS_R9_use
.eabi_attribute 68, 1 @ Tag_Virtualization_use
.globl func
.p2align 2
.type func,%function
func:
bx lr

View File

@@ -0,0 +1,40 @@
// Functions that will generate a .ARM.exidx section with SHF_LINK_ORDER
// dependency on the progbits section containing the .cantunwind directive
.syntax unified
.section .func1, "ax",%progbits
.globl func1
func1:
.fnstart
bx lr
.cantunwind
.fnend
.section .func2, "ax", %progbits
.globl func2
func2:
.fnstart
bx lr
.cantunwind
.fnend
.section .func3, "ax",%progbits
.globl func3
func3:
.fnstart
bx lr
.cantunwind
.fnend
.section .text, "ax",%progbits
.globl func4
func4:
.fnstart
bx lr
.cantunwind
.fnend
.globl func5
func5:
.fnstart
bx lr
.cantunwind
.fnend

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