Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-archive.ll
blob252ea4c5fcf3c1c4908ef3174c4b8ba4d9c9c9da
1 ; REQUIRES: x86
2 ; RUN: rm -rf %t; split-file %s %t
3 ; RUN: llvm-as %t/foo.ll -o %t/foo.o
4 ; RUN: llvm-as %t/has-objc-symbol.ll -o %t/has-objc-symbol.o
5 ; RUN: llvm-as %t/has-objc-category.ll -o %t/has-objc-category.o
6 ; RUN: llvm-ar rcs %t/foo.a %t/foo.o
7 ; RUN: llvm-ar rcs %t/objc.a %t/has-objc-symbol.o %t/has-objc-category.o
9 ; RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/main.s -o %t/main.o
10 ; RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/references-foo.s -o %t/references-foo.o
12 ; RUN: %lld -lSystem %t/references-foo.o %t/foo.a -o /dev/null -why_load | FileCheck %s --check-prefix=FOO
13 ; FOO: _foo forced load of {{.+}}foo.a(foo.o)
15 ; RUN: %lld -lSystem -force_load %t/foo.a %t/main.o -o /dev/null -why_load | FileCheck %s --check-prefix=FORCE-LOAD
16 ; FORCE-LOAD: -force_load forced load of {{.+}}foo.a(foo.o)
18 ; RUN: %lld -lSystem -ObjC -framework CoreFoundation %t/objc.a %t/main.o \
19 ; RUN:   -o /dev/null -why_load | FileCheck %s --check-prefix=OBJC
20 ; OBJC: _OBJC_CLASS_$_Foo forced load of {{.+}}objc.a(has-objc-symbol.o)
21 ; OBJC: -ObjC forced load of {{.+}}objc.a(has-objc-category.o)
23 ; RUN: %lld -lSystem %t/foo.a %t/main.o -o %t/no-force-load -why_load | count 0
25 ; RUN: %lld -lSystem -framework CoreFoundation %t/objc.a %t/main.o -o %t/no-objc -why_load | count 0
27 ;--- foo.ll
29 target triple = "x86_64-apple-macosx10.15.0"
30 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
32 define void @foo() {
33   ret void
36 ;--- has-objc-symbol.ll
38 target triple = "x86_64-apple-macosx10.15.0"
39 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
41 %struct._class_t = type { i8 }
42 @"OBJC_CLASS_$_Foo" = global %struct._class_t { i8 123 }
44 ;--- has-objc-category.ll
46 target triple = "x86_64-apple-macosx10.15.0"
47 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
49 %struct._category_t = type { i8 }
51 @"_OBJC_$_CATEGORY_Foo_$_Bar" = internal global %struct._category_t { i8 123 },
52   section "__DATA, __objc_const", align 8
54 @"OBJC_LABEL_CATEGORY_$" = private global [1 x ptr] [
55   ptr @"_OBJC_$_CATEGORY_Foo_$_Bar"
56   ], section "__DATA,__objc_catlist,regular,no_dead_strip", align 8
58 @llvm.compiler.used = appending global [1 x ptr] [
59   ptr @"OBJC_LABEL_CATEGORY_$"
60   ], section "llvm.metadata"
62 ;--- main.s
64 .globl _main
65 _main:
66   ret
68 ;--- references-foo.s
70 .globl _main
71 _main:
72   callq _foo
73   ret