]>
Commit | Line | Data |
---|---|---|
a645023d A |
1 | ## |
2 | # Copyright (c) 2010 Apple Inc. All rights reserved. | |
3 | # | |
4 | # @APPLE_LICENSE_HEADER_START@ | |
5 | # | |
6 | # This file contains Original Code and/or Modifications of Original Code | |
7 | # as defined in and that are subject to the Apple Public Source License | |
8 | # Version 2.0 (the 'License'). You may not use this file except in | |
9 | # compliance with the License. Please obtain a copy of the License at | |
10 | # http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | # file. | |
12 | # | |
13 | # The Original Code and all software distributed under the License are | |
14 | # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | # Please see the License for the specific language governing rights and | |
19 | # limitations under the License. | |
20 | # | |
21 | # @APPLE_LICENSE_HEADER_END@ | |
22 | ## | |
23 | TESTROOT = ../.. | |
24 | include ${TESTROOT}/include/common.makefile | |
25 | ||
26 | # | |
27 | # Verify optimization where categories are merged into classes | |
28 | # | |
29 | OPTIONS = | |
30 | ||
31 | ifeq ($(ARCH),i386) | |
32 | OPTIONS = -fobjc-abi-version=2 -Wl,-objc_abi_version,2 | |
33 | endif | |
34 | ||
35 | all: all-${ARCH} | |
36 | ||
37 | all-ppc: | |
38 | ${PASS_IFF} true | |
39 | ||
40 | all-i386: all-rest | |
41 | all-x86_64: all-rest | |
42 | all-armv6: all-rest | |
43 | ||
44 | all-rest: | |
45 | # check optimization can be turned off | |
46 | ${CC} ${CCFLAGS} ${OPTIONS} -dynamiclib foo.m cat1.m cat2.m -framework Foundation -Wl,-no_objc_category_merging -o libno.dylib | |
47 | size -l libno.dylib | grep "__objc_catlist: 0" | ${FAIL_IF_STDIN} | |
48 | otool -ov libno.dylib | grep -A17 __objc_classlist | grep -A16 '_OBJC_CLASS_$$_Foo' | grep "count 1" | ${FAIL_IF_EMPTY} | |
49 | # check optimzation of category methods | |
50 | ${CC} ${CCFLAGS} ${OPTIONS} -dynamiclib foo.m cat1.m cat2.m -framework Foundation -o libfoo.dylib | |
51 | size -l libfoo.dylib | grep "__objc_catlist: 0" | ${FAIL_IF_EMPTY} | |
52 | otool -ov libfoo.dylib | grep -A20 __objc_classlist | grep -A20 '_OBJC_CLASS_$$_Foo' | grep "count 4" | ${FAIL_IF_EMPTY} | |
53 | # check optimzation of protocol and category methods | |
54 | ${CC} ${CCFLAGS} ${OPTIONS} -dynamiclib foo.m cat1.m cat2.m -DPROTOCOLS -framework Foundation -o libfoo2.dylib | |
55 | size -l libfoo2.dylib | grep "__objc_catlist: 0" | ${FAIL_IF_EMPTY} | |
56 | otool -ov libfoo2.dylib | grep -A20 __objc_classlist | grep -A20 '_OBJC_CLASS_$$_Foo' | grep "count 6" | ${FAIL_IF_EMPTY} | |
57 | # check optimzation of properties and category methods | |
58 | ${CC} ${CCFLAGS} ${OPTIONS} -dynamiclib foo.m cat1.m cat2.m -DPROPERTIES -framework Foundation -o libfoo3.dylib | |
59 | size -l libfoo3.dylib | grep "__objc_catlist: 0" | ${FAIL_IF_EMPTY} | |
60 | otool -ov libfoo3.dylib | grep -A20 __objc_classlist | grep -A20 '_OBJC_CLASS_$$_Foo' | grep "count 6" | ${FAIL_IF_EMPTY} | |
61 | # check optimzation of category methods and no base methods | |
62 | ${CC} ${CCFLAGS} ${OPTIONS} -dynamiclib foo.m cat1.m cat2.m -DNO_BASE_METHODS -framework Foundation -o libfoo4.dylib | |
63 | size -l libfoo4.dylib | grep "__objc_catlist: 0" | ${FAIL_IF_EMPTY} | |
64 | otool -ov libfoo4.dylib | grep -A20 __objc_classlist | grep -A20 '_OBJC_CLASS_$$_Foo' | grep "count 3" | ${FAIL_IF_EMPTY} | |
65 | otool -ov libfoo4.dylib | grep -A20 "Meta Class" | grep "count 2" | ${FAIL_IF_EMPTY} | |
66 | ${PASS_IFF_GOOD_MACHO} libfoo3.dylib | |
67 | ||
68 | ||
69 | ||
70 | clean: | |
71 | rm -rf lib*.dylib |