Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 1 | /* |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2 | * Copyright (C) 2016 The Android Open Source Project |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 3 | * |
| 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 Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 9 | * |
| 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 Hughes | c0f4656 | 2018-11-09 15:38:52 -0800 | [diff] [blame] | 17 | #pragma once |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 18 | |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 19 | // 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 Hughes | c0f4656 | 2018-11-09 15:38:52 -0800 | [diff] [blame] | 23 | #define __INTRODUCED_IN(api_level) __attribute__((annotate("introduced_in=" #api_level))) |
Elliott Hughes | c0f4656 | 2018-11-09 15:38:52 -0800 | [diff] [blame] | 24 | #define __DEPRECATED_IN(api_level) __attribute__((annotate("deprecated_in=" #api_level))) |
| 25 | #define __REMOVED_IN(api_level) __attribute__((annotate("obsoleted_in=" #api_level))) |
| 26 | #define __INTRODUCED_IN_32(api_level) __attribute__((annotate("introduced_in_32=" #api_level))) |
| 27 | #define __INTRODUCED_IN_64(api_level) __attribute__((annotate("introduced_in_64=" #api_level))) |
| 28 | #define __INTRODUCED_IN_ARM(api_level) __attribute__((annotate("introduced_in_arm=" #api_level))) |
| 29 | #define __INTRODUCED_IN_X86(api_level) __attribute__((annotate("introduced_in_x86=" #api_level))) |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 30 | |
Josh Gao | fff29fe | 2016-09-07 18:29:08 -0700 | [diff] [blame] | 31 | #define __VERSIONER_NO_GUARD __attribute__((annotate("versioner_no_guard"))) |
Logan Chien | 5a750f3 | 2019-11-20 10:29:14 -0800 | [diff] [blame] | 32 | #define __VERSIONER_FORTIFY_INLINE __attribute__((annotate("versioner_fortify_inline"))) |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 33 | |
| 34 | #else |
| 35 | |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame^] | 36 | // When headers are not processed by the versioner (i.e. compiled into object files), |
| 37 | // the availability attributed is emitted instead. The clang compiler will make the symbol weak |
| 38 | // when targeting old api_level and enforce the reference to the symbol to be guarded with |
| 39 | // __builtin_available(android api_level, *). |
| 40 | |
| 41 | // The 'strict' flag is required for NDK clients where the use of "-Wunguarded-availability" cannot |
| 42 | // be enforced. In the case, the absence of 'strict' makes it possible to call an unavailable API |
| 43 | // without the __builtin_available check, which will cause a link error at runtime. |
| 44 | // Android platform build system defines this macro along with -Wunguarded-availability |
| 45 | #if defined(__ANDROID_UNGUARDED_AVAILABILITY__) |
| 46 | #define __MAYBE_STRICT |
| 47 | #else |
| 48 | #define __MAYBE_STRICT ,strict |
| 49 | #endif |
| 50 | |
| 51 | #define __INTRODUCED_IN(api_level) \ |
| 52 | __attribute__((availability(android __MAYBE_STRICT,introduced=api_level))) |
| 53 | #define __DEPRECATED_IN(api_level) \ |
| 54 | __attribute__((availability(android __MAYBE_STRICT,deprecated=api_level))) |
| 55 | #define __REMOVED_IN(api_level) \ |
| 56 | __attribute__((availability(android __MAYBE_STRICT,obsoleted=api_level))) |
| 57 | |
| 58 | // The same availability attribute can't be annotated multiple times. Therefore, the macros are |
| 59 | // defined for the configuration that it is valid for so that declarations like the below doesn't |
| 60 | // cause inconsistent availability values which is an error with -Wavailability: |
| 61 | // |
| 62 | // void foo() __INTRODUCED_IN_32(30) __INTRODUCED_IN_64(31); |
| 63 | // |
| 64 | // This also takes the advantage of the fact that we never use bitness-specific macro with |
| 65 | // arch-specific macro. In other words, |
| 66 | // |
| 67 | // void foo() __INTRODUCED_IN_ARM(30) __INTRODUCED_IN_64(31); |
| 68 | // |
| 69 | // hasn't been supported and won't be. |
| 70 | #if !defined(__LP64__) |
| 71 | #define __INTRODUCED_IN_32(api_level) \ |
| 72 | __attribute__((availability(android __MAYBE_STRICT,introduced=api_level))) |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 73 | #define __INTRODUCED_IN_64(api_level) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame^] | 74 | #else |
| 75 | #define __INTRODUCED_IN_32(api_level) |
| 76 | #define __INTRODUCED_IN_64(api_level) \ |
| 77 | __attribute__((availability(android __MAYBE_STRICT,introduced=api_level))) |
| 78 | #endif |
| 79 | |
| 80 | #if defined(__arm__) || defined(__aarch64__) |
| 81 | #define __INTRODUCED_IN_ARM(api_level) \ |
| 82 | __attribute__((availability(android __MAYBE_STRICT,introduced=api_level))) |
| 83 | #define __INTRODUCED_IN_X86(api_level) |
| 84 | #elif defined(__i386__) || defined(__x86_64__) |
| 85 | #define __INTRODUCED_IN_ARM(api_level) |
| 86 | #define __INTRODUCED_IN_X86(api_level) \ |
| 87 | __attribute__((availability(android __MAYBE_STRICT,introduced=api_level))) |
| 88 | #else |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 89 | #define __INTRODUCED_IN_ARM(api_level) |
| 90 | #define __INTRODUCED_IN_X86(api_level) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame^] | 91 | #endif |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 92 | |
| 93 | #define __VERSIONER_NO_GUARD |
Logan Chien | 5a750f3 | 2019-11-20 10:29:14 -0800 | [diff] [blame] | 94 | #define __VERSIONER_FORTIFY_INLINE |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 95 | |
| 96 | #endif // defined(__BIONIC_VERSIONER) |