brintos

brintos / llvm-project-archived public Read only

0
0
Text · 4.6 KiB · 78fec8b Raw
117 lines · plain
1## This test checks that a correct universal binary is produced when2## llvm-libtool-darwin is given object files for multiple architectures.3 4## Check that the subtypes of cputype CPU_TYPE_ARM are stored in a fat file:5# RUN: yaml2obj %s -o %t.armv6 -DTYPE=0xC -DSUBTYPE=0x6 -DSTRING=_armv66# RUN: yaml2obj %s -o %t.armv7 -DTYPE=0xC -DSUBTYPE=0x9 -DSTRING=_armv77 8# RUN: llvm-libtool-darwin -static -o %t.lib %t.armv6 %t.armv79 10## Check that architectures are present in the universal output:11# RUN: llvm-lipo -info %t.lib | \12# RUN:   FileCheck %s --check-prefix=ARCHS -DFILE=%t.lib13 14# ARCHS: Architectures in the fat file: [[FILE]] are: armv6 armv715 16## Check that the files with the same architecture are combined in an archive:17# RUN: llvm-libtool-darwin -static -o %t.lib %t.armv6 %t.armv6 %t.armv718# RUN: llvm-lipo -info %t.lib | \19# RUN:   FileCheck %s --check-prefix=ARCHS -DFILE=%t.lib20# RUN: llvm-objdump --macho --arch all --all-headers %t.lib | \21# RUN:   FileCheck %s --check-prefix=UNIVERSAL-MEMBERS -DFILE=%t.lib -DPREFIX=%basename_t.tmp --implicit-check-not=Archive22 23# UNIVERSAL-MEMBERS:      Archive : [[FILE]] (architecture armv6)24# UNIVERSAL-MEMBERS-NEXT: __.SYMDEF25# UNIVERSAL-MEMBERS-NEXT: [[PREFIX]].armv626# UNIVERSAL-MEMBERS-NEXT: [[PREFIX]].armv627# UNIVERSAL-MEMBERS:      Archive : [[FILE]] (architecture armv7)28# UNIVERSAL-MEMBERS-NEXT: __.SYMDEF29# UNIVERSAL-MEMBERS-NEXT: [[PREFIX]].armv730 31## Check that the files extracted from a universal output are archives:32# RUN: llvm-libtool-darwin -static -o %t.lib %t.armv6 %t.armv733# RUN: llvm-lipo %t.lib -thin armv7 -output %t-extracted-v7.a34# RUN: llvm-ar t %t-extracted-v7.a | \35# RUN:   FileCheck %s --check-prefix=EXTRACT --implicit-check-not={{.}} -DPREFIX=%basename_t.tmp36# RUN: llvm-nm --print-armap %t-extracted-v7.a | \37# RUN:   FileCheck %s --check-prefix=EXTRACT-SYMBOLS -DPREFIX=%basename_t.tmp --match-full-lines38 39# EXTRACT: [[PREFIX]].armv740 41# EXTRACT-SYMBOLS:      Archive map42# EXTRACT-SYMBOLS-NEXT: _armv7 in [[PREFIX]].armv743# EXTRACT-SYMBOLS-EMPTY:44 45## Check that the subtypes of cputype CPU_TYPE_X86_64 are stored in a fat file:46# RUN: yaml2obj %s -o %t.x86_64 -DTYPE=0x01000007 -DSUBTYPE=0x3 -DSTRING=_x86_6447# RUN: yaml2obj %s -o %t.x86_64_h -DTYPE=0x01000007 -DSUBTYPE=0x8 -DSTRING=_x86_64_h48# RUN: llvm-libtool-darwin -static -o %t.lib %t.x86_64 %t.x86_64_h49# RUN: llvm-lipo -info %t.lib | \50# RUN:   FileCheck %s --check-prefix=ARCHS-X86 -DFILE=%t.lib51 52# ARCHS-X86: Architectures in the fat file: [[FILE]] are: x86_64 x86_64h53 54## Check that the subtypes of cputype CPU_TYPE_ARM64 are stored in a fat file:55## Testing it using llvm-objdump as, currently, there is no support for arm64e56## under llvm/lib/Object/MachOObjectFile.cpp.57# RUN: yaml2obj %s -o %t.arm64 -DTYPE=0x0100000C -DSUBTYPE=0x0 -DSTRING=_arm64all58# RUN: yaml2obj %s -o %t.arm64e -DTYPE=0x0100000C -DSUBTYPE=0x2 -DSTRING=_arm64e59# RUN: llvm-libtool-darwin -static -o %t.lib %t.arm64 %t.arm64e60# RUN: llvm-objdump --macho --arch all --all-headers %t.lib | \61# RUN:   FileCheck %s --check-prefix=UNIVERSAL-MEMBERS-ARM64 -DFILE=%t.lib -DPREFIX=%basename_t.tmp --implicit-check-not=Archive62 63# UNIVERSAL-MEMBERS-ARM64:      Archive : [[FILE]] (architecture arm64)64# UNIVERSAL-MEMBERS-ARM64-NEXT: __.SYMDEF65# UNIVERSAL-MEMBERS-ARM64-NEXT: [[PREFIX]].arm6466# UNIVERSAL-MEMBERS-ARM64:      Archive : [[FILE]]67# UNIVERSAL-MEMBERS-ARM64-NEXT: __.SYMDEF68# UNIVERSAL-MEMBERS-ARM64-NEXT: [[PREFIX]].arm64e69 70## Check that different cputypes are stored together in a fat file:71# RUN: yaml2obj %s -o %t.ppc -DTYPE=0x12 -DSUBTYPE=0x0 -DSTRING=_ppcall72# RUN: llvm-libtool-darwin -static -o %t.lib %t.armv6 %t.ppc73# RUN: llvm-lipo -info %t.lib | \74# RUN:   FileCheck %s --check-prefix=ARCHS-CPU -DFILE=%t.lib75 76# ARCHS-CPU: Architectures in the fat file: [[FILE]] are: ppc armv677 78--- !mach-o79FileHeader:80  magic:           0xFEEDFACE81  cputype:         [[TYPE]]82  cpusubtype:      [[SUBTYPE]]83  filetype:        0x0000000184  ncmds:           285  sizeofcmds:      14886  flags:           0x0000200087LoadCommands:88  - cmd:             LC_SEGMENT89    cmdsize:         12490    segname:         ''91    vmaddr:          092    vmsize:          1093    fileoff:         28094    filesize:        1095    maxprot:         796    initprot:        797    nsects:          198    flags:           099  - cmd:             LC_SYMTAB100    cmdsize:         24101    symoff:          292102    nsyms:           1103    stroff:          304104    strsize:         8105LinkEditData:106  NameList:107    - n_strx:          1108      n_type:          0x0F109      n_sect:          1110      n_desc:          8111      n_value:         0112  StringTable:113    - ''114    - [[STRING]]115    - ''116...117