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,30 @@
# -*- Python -*-
#
# Dump out Xcode binary dependency file.
#
import sys
f = open(sys.argv[1], "rb")
byte = f.read(1)
while byte != b'':
if byte == b'\000':
sys.stdout.write("linker-vers: ")
elif byte == b'\020':
sys.stdout.write("input-file: ")
elif byte == b'\021':
sys.stdout.write("not-found: ")
elif byte == b'\100':
sys.stdout.write("output-file: ")
byte = f.read(1)
while byte != b'\000':
if byte != b'\012':
sys.stdout.write(byte.decode("ascii"))
byte = f.read(1)
sys.stdout.write("\n")
byte = f.read(1)
f.close()

View File

@@ -0,0 +1,6 @@
--- !mach-o
arch: x86_64
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: dyld_stub_binder

View File

@@ -0,0 +1,83 @@
--- !mach-o
arch: armv7
file-type: MH_OBJECT
flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
sections:
- segment: __TEXT
section: __text
type: S_REGULAR
attributes: [ S_ATTR_PURE_INSTRUCTIONS, S_ATTR_SOME_INSTRUCTIONS ]
alignment: 2
address: 0x0000000000000000
content: [ 0xFE, 0xFF, 0xFF, 0xEB, 0x02, 0x00, 0x00, 0xFA,
0xFC, 0xFF, 0xFF, 0xEB, 0xFB, 0xFF, 0xFF, 0xFA,
0x1E, 0xFF, 0x2F, 0xE1, 0x1E, 0xFF, 0x2F, 0xE1 ]
relocations:
- offset: 0x0000000C
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: true
symbol: 4
- offset: 0x00000008
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: true
symbol: 3
- offset: 0x00000004
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: false
symbol: 1
- offset: 0x00000000
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: false
symbol: 1
- segment: __DATA
section: __data
type: S_REGULAR
attributes: [ ]
address: 0x0000000000000018
content: [ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ]
relocations:
- offset: 0x00000004
type: ARM_RELOC_VANILLA
length: 2
pc-rel: false
extern: false
symbol: 1
- offset: 0x00000000
type: ARM_RELOC_VANILLA
length: 2
pc-rel: false
extern: true
symbol: 3
local-symbols:
- name: _d2
type: N_SECT
sect: 2
value: 0x0000000000000018
global-symbols:
- name: _a1
type: N_SECT
scope: [ N_EXT ]
sect: 1
value: 0x0000000000000000
- name: _a2
type: N_SECT
scope: [ N_EXT ]
sect: 1
value: 0x0000000000000014
undefined-symbols:
- name: _t1
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000
- name: _t2
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000

View File

@@ -0,0 +1,60 @@
--- !mach-o
arch: armv7
file-type: MH_OBJECT
flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
sections:
- segment: __TEXT
section: __text
type: S_REGULAR
attributes: [ S_ATTR_PURE_INSTRUCTIONS, S_ATTR_SOME_INSTRUCTIONS ]
alignment: 2
address: 0x0000000000000000
content: [ 0x00, 0xBF, 0xFF, 0xF7, 0xFE, 0xEF, 0xFF, 0xF7,
0xFB, 0xBF, 0x00, 0x00, 0x00, 0xF0, 0x20, 0xE3,
0xFA, 0xFF, 0xFF, 0xFA, 0xF9, 0xFF, 0xFF, 0xEA ]
relocations:
- offset: 0x00000014
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: true
symbol: 3
- offset: 0x00000010
type: ARM_RELOC_BR24
length: 2
pc-rel: true
extern: true
symbol: 3
- offset: 0x00000006
type: ARM_THUMB_RELOC_BR22
length: 2
pc-rel: true
extern: true
symbol: 2
- offset: 0x00000002
type: ARM_THUMB_RELOC_BR22
length: 2
pc-rel: true
extern: true
symbol: 2
global-symbols:
- name: _a2
type: N_SECT
scope: [ N_EXT ]
sect: 1
value: 0x000000000000000C
- name: _t2
type: N_SECT
scope: [ N_EXT ]
sect: 1
desc: [ N_ARM_THUMB_DEF ]
value: 0x0000000000000000
undefined-symbols:
- name: _a1
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000
- name: _t1
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000

View File

@@ -0,0 +1,13 @@
#
# For use by test cases that create dynamic output types which may needs stubs
# and therefore will need a dylib definition of dyld_stub_binder.
#
--- !mach-o
arch: arm64
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: dyld_stub_binder
...

View File

@@ -0,0 +1,13 @@
#
# For use by test cases that create dynamic output types which may needs stubs
# and therefore will need a dylib definition of dyld_stub_binder.
#
--- !mach-o
arch: armv7
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: dyld_stub_binder
...

View File

@@ -0,0 +1,18 @@
--- !mach-o
arch: x86_64
file-type: MH_OBJECT
flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
sections:
- segment: __TEXT
section: __text
type: S_REGULAR
attributes: [ S_ATTR_PURE_INSTRUCTIONS, S_ATTR_SOME_INSTRUCTIONS ]
address: 0x0000000000000000
content: [ 0xC3 ]
global-symbols:
- name: _bar
type: N_SECT
scope: [ N_EXT ]
sect: 1
value: 0x0000000000000000

View File

@@ -0,0 +1,25 @@
--- !mach-o
arch: x86_64
file-type: MH_OBJECT
flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
has-UUID: false
OS: unknown
sections:
- segment: __TEXT
section: __objc_methname
type: S_CSTRING_LITERALS
attributes: [ ]
address: 0x0000000000000000
content: [ 0x61, 0x62, 0x63, 0x00 ]
- segment: __TEXT
section: __objc_classname
type: S_CSTRING_LITERALS
attributes: [ ]
address: 0x0000000000000006
content: [ 0x61, 0x62, 0x63, 0x00 ]
- segment: __TEXT
section: __cstring
type: S_CSTRING_LITERALS
attributes: [ ]
address: 0x000000000000000A
content: [ 0x61, 0x62, 0x63, 0x00 ]

View File

@@ -0,0 +1,6 @@
#
# For use with exported_symbols_list.yaml
#
_foo
_b

View File

@@ -0,0 +1,3 @@
/foo/bar/a.o
/foo/bar/b.o
/foo/x.a

View File

@@ -0,0 +1,53 @@
--- !mach-o
arch: x86_64
file-type: MH_OBJECT
flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
sections:
- segment: __TEXT
section: __text
type: S_REGULAR
attributes: [ S_ATTR_PURE_INSTRUCTIONS, S_ATTR_SOME_INSTRUCTIONS ]
address: 0x0000000000000000
content: [ 0x55, 0x48, 0x89, 0xE5, 0x48, 0x8B, 0x0D, 0x00,
0x00, 0x00, 0x00, 0x48, 0x8B, 0x05, 0x00, 0x00,
0x00, 0x00, 0x8B, 0x00, 0x03, 0x01, 0x48, 0x8B,
0x0D, 0x00, 0x00, 0x00, 0x00, 0x03, 0x01, 0x5D,
0xC3 ]
relocations:
- offset: 0x00000019
type: X86_64_RELOC_GOT_LOAD
length: 2
pc-rel: true
extern: true
symbol: 2
- offset: 0x0000000E
type: X86_64_RELOC_GOT_LOAD
length: 2
pc-rel: true
extern: true
symbol: 1
- offset: 0x00000007
type: X86_64_RELOC_GOT_LOAD
length: 2
pc-rel: true
extern: true
symbol: 3
global-symbols:
- name: _main
type: N_SECT
scope: [ N_EXT ]
sect: 1
value: 0x0000000000000000
undefined-symbols:
- name: _bar
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000
- name: _foo
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000
- name: _zazzle
type: N_UNDF
scope: [ N_EXT ]
value: 0x0000000000000000

View File

@@ -0,0 +1,11 @@
--- !mach-o
arch: x86_64
file-type: MH_DYLIB
install-name: /usr/lib/libfoobar.dylib
exports:
- name: _bar
- name: _zazzle
- name: _foo
- name: _aaa
- name: _fff
- name: _zzz

View File

@@ -0,0 +1,8 @@
--- !mach-o
arch: arm64
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _fprintf
- name: ___stdoutp
- name: dyld_stub_binder

View File

@@ -0,0 +1,7 @@
--- !mach-o
arch: armv6
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _printf
- name: dyld_stub_binder

View File

@@ -0,0 +1,7 @@
--- !mach-o
arch: armv7
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _printf
- name: dyld_stub_binder

View File

@@ -0,0 +1,7 @@
--- !mach-o
arch: x86
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _printf
- name: dyld_stub_binder

View File

@@ -0,0 +1,8 @@
--- !mach-o
arch: x86_64
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _fprintf
- name: dyld_stub_binder
- name: ___stdoutp

View File

@@ -0,0 +1 @@
hello

View File

@@ -0,0 +1,6 @@
--- !mach-o
arch: x86_64
file-type: MH_DYLIB
install-name: /usr/lib/libSystem.B.dylib
exports:
- name: _open

View File

@@ -0,0 +1,8 @@
--- !mach-o
arch: x86_64
file-type: MH_DYLIB
install-name: /usr/lib/libfoo.dylib
compat-version: 2.0
current-version: 3.4
exports:
- name: _foo

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