blob: c7e844a5f5b0b4602557b36cb2d4a0344e1f28c5 [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)))
Elliott Hughesc0f46562018-11-09 15:38:52 -080024#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)))
Elliott Hughes5f1165c2020-01-30 14:35:01 -080030#define __INTRODUCED_IN_MIPS(api_level)
Josh Gaobfb6bae2016-07-15 17:25:21 -070031
Josh Gaofff29fe2016-09-07 18:29:08 -070032#define __VERSIONER_NO_GUARD __attribute__((annotate("versioner_no_guard")))
Logan Chien5a750f32019-11-20 10:29:14 -080033#define __VERSIONER_FORTIFY_INLINE __attribute__((annotate("versioner_fortify_inline")))
Logan Chiend7d9ebc2019-11-27 07:25:07 -080034
35#else
36
37#define __INTRODUCED_IN(api_level)
38#define __DEPRECATED_IN(api_level)
39#define __REMOVED_IN(api_level)
40#define __INTRODUCED_IN_32(api_level)
41#define __INTRODUCED_IN_64(api_level)
42#define __INTRODUCED_IN_ARM(api_level)
43#define __INTRODUCED_IN_X86(api_level)
44#define __INTRODUCED_IN_MIPS(api_level)
45
46#define __VERSIONER_NO_GUARD
Logan Chien5a750f32019-11-20 10:29:14 -080047#define __VERSIONER_FORTIFY_INLINE
Logan Chiend7d9ebc2019-11-27 07:25:07 -080048
49#endif // defined(__BIONIC_VERSIONER)