blob: 54ffc91a57d9a7776d8c52ee67e2684d9401ded0 [file] [log] [blame]
Josh Gaobfb6bae2016-07-15 17:25:21 -07001/*
Elliott Hughesdfb74c52016-10-24 12:53:17 -07002 * Copyright (C) 2016 The Android Open Source Project
Josh Gaobfb6bae2016-07-15 17:25:21 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
Elliott Hughesdfb74c52016-10-24 12:53:17 -07008 * http://www.apache.org/licenses/LICENSE-2.0
Josh Gaobfb6bae2016-07-15 17:25:21 -07009 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughesc0f46562018-11-09 15:38:52 -080017#pragma once
Josh Gaobfb6bae2016-07-15 17:25:21 -070018
Logan Chiend7d9ebc2019-11-27 07:25:07 -080019// The `annotate` attribute always pulls the annotated (inline) function into the object files, thus
20// we should only annotate headers when we are running versioner.
21#if defined(__BIONIC_VERSIONER)
22
Elliott Hughesc0f46562018-11-09 15:38:52 -080023#define __INTRODUCED_IN(api_level) __attribute__((annotate("introduced_in=" #api_level)))
Dan Alberteae41f82021-01-29 16:24:06 -080024#define __INTRODUCED_IN_NO_GUARD_FOR_NDK(api_level) __attribute__((annotate("introduced_in=" #api_level))) __VERSIONER_NO_GUARD
Elliott Hughesc0f46562018-11-09 15:38:52 -080025#define __DEPRECATED_IN(api_level) __attribute__((annotate("deprecated_in=" #api_level)))
26#define __REMOVED_IN(api_level) __attribute__((annotate("obsoleted_in=" #api_level)))
27#define __INTRODUCED_IN_32(api_level) __attribute__((annotate("introduced_in_32=" #api_level)))
28#define __INTRODUCED_IN_64(api_level) __attribute__((annotate("introduced_in_64=" #api_level)))
29#define __INTRODUCED_IN_ARM(api_level) __attribute__((annotate("introduced_in_arm=" #api_level)))
30#define __INTRODUCED_IN_X86(api_level) __attribute__((annotate("introduced_in_x86=" #api_level)))
Dan Alberteae41f82021-01-29 16:24:06 -080031#define __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(api_level) __attribute__((annotate("introduced_in_x86=" #api_level))) __VERSIONER_NO_GUARD
Josh Gaobfb6bae2016-07-15 17:25:21 -070032
Josh Gaofff29fe2016-09-07 18:29:08 -070033#define __VERSIONER_NO_GUARD __attribute__((annotate("versioner_no_guard")))
Logan Chien5a750f32019-11-20 10:29:14 -080034#define __VERSIONER_FORTIFY_INLINE __attribute__((annotate("versioner_fortify_inline")))
Logan Chiend7d9ebc2019-11-27 07:25:07 -080035
36#else
37
Jiyong Park23bfed22020-08-10 13:35:05 +090038// When headers are not processed by the versioner (i.e. compiled into object files),
39// the availability attributed is emitted instead. The clang compiler will make the symbol weak
40// when targeting old api_level and enforce the reference to the symbol to be guarded with
41// __builtin_available(android api_level, *).
42
43// The 'strict' flag is required for NDK clients where the use of "-Wunguarded-availability" cannot
44// be enforced. In the case, the absence of 'strict' makes it possible to call an unavailable API
45// without the __builtin_available check, which will cause a link error at runtime.
46// Android platform build system defines this macro along with -Wunguarded-availability
Dan Alberteae41f82021-01-29 16:24:06 -080047//
48// The _NO_GUARD_FOR_NDK variants keep the __VERSIONER_NO_GUARD behavior working for the NDK. This
49// allows libc++ to refer to these functions in inlines without needing to guard them, needed since
50// libc++ doesn't currently guard these calls. There's no risk to the apps though because using
51// those APIs will still cause a link error.
Jiyong Park23bfed22020-08-10 13:35:05 +090052#if defined(__ANDROID_UNGUARDED_AVAILABILITY__)
53#define __MAYBE_STRICT
Dan Alberteae41f82021-01-29 16:24:06 -080054#define __INTRODUCED_IN_NO_GUARD_FOR_NDK(api_level) __INTRODUCED_IN_X86(api_level)
55#define __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(api_level) __INTRODUCED_IN_X86(api_level)
Jiyong Park23bfed22020-08-10 13:35:05 +090056#else
57#define __MAYBE_STRICT ,strict
Dan Alberteae41f82021-01-29 16:24:06 -080058#define __INTRODUCED_IN_NO_GUARD_FOR_NDK(api_level)
59#define __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(api_level)
Jiyong Park23bfed22020-08-10 13:35:05 +090060#endif
61
62#define __INTRODUCED_IN(api_level) \
63 __attribute__((availability(android __MAYBE_STRICT,introduced=api_level)))
64#define __DEPRECATED_IN(api_level) \
65 __attribute__((availability(android __MAYBE_STRICT,deprecated=api_level)))
66#define __REMOVED_IN(api_level) \
67 __attribute__((availability(android __MAYBE_STRICT,obsoleted=api_level)))
68
69// The same availability attribute can't be annotated multiple times. Therefore, the macros are
70// defined for the configuration that it is valid for so that declarations like the below doesn't
71// cause inconsistent availability values which is an error with -Wavailability:
72//
73// void foo() __INTRODUCED_IN_32(30) __INTRODUCED_IN_64(31);
74//
75// This also takes the advantage of the fact that we never use bitness-specific macro with
76// arch-specific macro. In other words,
77//
78// void foo() __INTRODUCED_IN_ARM(30) __INTRODUCED_IN_64(31);
79//
80// hasn't been supported and won't be.
81#if !defined(__LP64__)
82#define __INTRODUCED_IN_32(api_level) \
83 __attribute__((availability(android __MAYBE_STRICT,introduced=api_level)))
Logan Chiend7d9ebc2019-11-27 07:25:07 -080084#define __INTRODUCED_IN_64(api_level)
Jiyong Park23bfed22020-08-10 13:35:05 +090085#else
86#define __INTRODUCED_IN_32(api_level)
87#define __INTRODUCED_IN_64(api_level) \
88 __attribute__((availability(android __MAYBE_STRICT,introduced=api_level)))
89#endif
90
91#if defined(__arm__) || defined(__aarch64__)
92#define __INTRODUCED_IN_ARM(api_level) \
93 __attribute__((availability(android __MAYBE_STRICT,introduced=api_level)))
94#define __INTRODUCED_IN_X86(api_level)
95#elif defined(__i386__) || defined(__x86_64__)
96#define __INTRODUCED_IN_ARM(api_level)
97#define __INTRODUCED_IN_X86(api_level) \
98 __attribute__((availability(android __MAYBE_STRICT,introduced=api_level)))
99#else
Logan Chiend7d9ebc2019-11-27 07:25:07 -0800100#define __INTRODUCED_IN_ARM(api_level)
101#define __INTRODUCED_IN_X86(api_level)
Jiyong Park23bfed22020-08-10 13:35:05 +0900102#endif
Logan Chiend7d9ebc2019-11-27 07:25:07 -0800103
104#define __VERSIONER_NO_GUARD
Logan Chien5a750f32019-11-20 10:29:14 -0800105#define __VERSIONER_FORTIFY_INLINE
Logan Chiend7d9ebc2019-11-27 07:25:07 -0800106
107#endif // defined(__BIONIC_VERSIONER)