]>
git.saurik.com Git - apple/objc4.git/blob - runtime/objc-config.h
2 * Copyright (c) 1999-2002, 2005-2008 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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.
21 * @APPLE_LICENSE_HEADER_END@
24 #ifndef _OBJC_CONFIG_H_
25 #define _OBJC_CONFIG_H_
27 #include <TargetConditionals.h>
29 // Define __OBJC2__ for the benefit of our asm files.
31 # if TARGET_OS_OSX && !TARGET_OS_IOSMAC && __i386__
38 // Avoid the !NDEBUG double negative.
45 // Define SUPPORT_GC_COMPAT=1 to enable compatibility where GC once was.
46 // OBJC_NO_GC and OBJC_NO_GC_API in objc-api.h mean something else.
48 # define SUPPORT_GC_COMPAT 0
50 # define SUPPORT_GC_COMPAT 1
53 // Define SUPPORT_ZONES=1 to enable malloc zone support in NXHashTable.
54 #if !(TARGET_OS_OSX || TARGET_OS_IOSMAC)
55 # define SUPPORT_ZONES 0
57 # define SUPPORT_ZONES 1
60 // Define SUPPORT_MOD=1 to use the mod operator in NXHashTable and objc-sel-set
62 # define SUPPORT_MOD 0
64 # define SUPPORT_MOD 1
67 // Define SUPPORT_PREOPT=1 to enable dyld shared cache optimizations
68 #if TARGET_OS_WIN32 || TARGET_OS_SIMULATOR
69 # define SUPPORT_PREOPT 0
71 # define SUPPORT_PREOPT 1
74 // Define SUPPORT_TAGGED_POINTERS=1 to enable tagged pointer objects
75 // Be sure to edit tagged pointer SPI in objc-internal.h as well.
76 #if !(__OBJC2__ && __LP64__)
77 # define SUPPORT_TAGGED_POINTERS 0
79 # define SUPPORT_TAGGED_POINTERS 1
82 // Define SUPPORT_MSB_TAGGED_POINTERS to use the MSB
83 // as the tagged pointer marker instead of the LSB.
84 // Be sure to edit tagged pointer SPI in objc-internal.h as well.
85 #if !SUPPORT_TAGGED_POINTERS || (TARGET_OS_OSX || TARGET_OS_IOSMAC)
86 # define SUPPORT_MSB_TAGGED_POINTERS 0
88 # define SUPPORT_MSB_TAGGED_POINTERS 1
91 // Define SUPPORT_INDEXED_ISA=1 on platforms that store the class in the isa
92 // field as an index into a class table.
93 // Note, keep this in sync with any .s files which also define it.
94 // Be sure to edit objc-abi.h as well.
95 #if __ARM_ARCH_7K__ >= 2 || (__arm64__ && !__LP64__)
96 # define SUPPORT_INDEXED_ISA 1
98 # define SUPPORT_INDEXED_ISA 0
101 // Define SUPPORT_PACKED_ISA=1 on platforms that store the class in the isa
102 // field as a maskable pointer with other data around it.
103 #if (!__LP64__ || TARGET_OS_WIN32 || \
104 (TARGET_OS_SIMULATOR && !TARGET_OS_IOSMAC))
105 # define SUPPORT_PACKED_ISA 0
107 # define SUPPORT_PACKED_ISA 1
110 // Define SUPPORT_NONPOINTER_ISA=1 on any platform that may store something
111 // in the isa field that is not a raw pointer.
112 #if !SUPPORT_INDEXED_ISA && !SUPPORT_PACKED_ISA
113 # define SUPPORT_NONPOINTER_ISA 0
115 # define SUPPORT_NONPOINTER_ISA 1
118 // Define SUPPORT_FIXUP=1 to repair calls sites for fixup dispatch.
119 // Fixup messaging itself is no longer supported.
120 // Be sure to edit objc-abi.h as well (objc_msgSend*_fixup)
121 #if !(defined(__x86_64__) && (TARGET_OS_OSX || TARGET_OS_SIMULATOR))
122 # define SUPPORT_FIXUP 0
124 # define SUPPORT_FIXUP 1
127 // Define SUPPORT_ZEROCOST_EXCEPTIONS to use "zero-cost" exceptions for OBJC2.
128 // Be sure to edit objc-exception.h as well (objc_add/removeExceptionHandler)
129 #if !__OBJC2__ || (defined(__arm__) && __USING_SJLJ_EXCEPTIONS__)
130 # define SUPPORT_ZEROCOST_EXCEPTIONS 0
132 # define SUPPORT_ZEROCOST_EXCEPTIONS 1
135 // Define SUPPORT_ALT_HANDLERS if you're using zero-cost exceptions
136 // but also need to support AppKit's alt-handler scheme
137 // Be sure to edit objc-exception.h as well (objc_add/removeExceptionHandler)
138 #if !SUPPORT_ZEROCOST_EXCEPTIONS || !TARGET_OS_OSX
139 # define SUPPORT_ALT_HANDLERS 0
141 # define SUPPORT_ALT_HANDLERS 1
144 // Define SUPPORT_RETURN_AUTORELEASE to optimize autoreleased return values
146 # define SUPPORT_RETURN_AUTORELEASE 0
148 # define SUPPORT_RETURN_AUTORELEASE 1
151 // Define SUPPORT_STRET on architectures that need separate struct-return ABI.
152 #if defined(__arm64__)
153 # define SUPPORT_STRET 0
155 # define SUPPORT_STRET 1
158 // Define SUPPORT_MESSAGE_LOGGING to enable NSObjCMessageLoggingEnabled
160 # define SUPPORT_MESSAGE_LOGGING 0
162 # define SUPPORT_MESSAGE_LOGGING 1
165 // OBJC_INSTRUMENTED controls whether message dispatching is dynamically
166 // monitored. Monitoring introduces substantial overhead.
167 // NOTE: To define this condition, do so in the build command, NOT by
168 // uncommenting the line here. This is because objc-class.h heeds this
169 // condition, but objc-class.h can not #include this file (objc-config.h)
170 // because objc-class.h is public and objc-config.h is not.
171 //#define OBJC_INSTRUMENTED