Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
llvm.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2021 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_
8#define ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_
9
10#ifndef ZEPHYR_INCLUDE_TOOLCHAIN_H_
11#error Please do not include toolchain-specific headers directly, use <zephyr/toolchain.h> instead
12#endif
13
14#define __no_optimization __attribute__((optnone))
15
16#if __clang_major__ >= 10
17#define __fallthrough __attribute__((fallthrough))
18#endif
19
20#define TOOLCHAIN_CLANG_VERSION \
21 ((__clang_major__ * 10000) + (__clang_minor__ * 100) + \
22 __clang_patchlevel__)
23
24#define TOOLCHAIN_HAS_PRAGMA_DIAG 1
25
26#if TOOLCHAIN_CLANG_VERSION >= 30800
27#define TOOLCHAIN_HAS_C_GENERIC 1
28#define TOOLCHAIN_HAS_C_AUTO_TYPE 1
29#endif
30
32
33#define TOOLCHAIN_DISABLE_CLANG_WARNING(warning) _TOOLCHAIN_DISABLE_WARNING(clang, warning)
34#define TOOLCHAIN_ENABLE_CLANG_WARNING(warning) _TOOLCHAIN_ENABLE_WARNING(clang, warning)
35
36/*
37 * Provide these definitions only when minimal libc is used.
38 * Avoid collision with defines from include/zephyr/toolchain/zephyr_stdint.h
39 */
40#ifdef CONFIG_MINIMAL_LIBC
41
42#define __int_c(v, suffix) v ## suffix
43#define int_c(v, suffix) __int_c(v, suffix)
44#define uint_c(v, suffix) __int_c(v ## U, suffix)
45
46#ifndef CONFIG_ENFORCE_ZEPHYR_STDINT
47
48#ifdef __INT64_TYPE__
49#undef __int_least64_c_suffix__
50#undef __int_least32_c_suffix__
51#undef __int_least16_c_suffix__
52#undef __int_least8_c_suffix__
53#ifdef __INT64_C_SUFFIX__
54#define __int_least64_c_suffix__ __INT64_C_SUFFIX__
55#define __int_least32_c_suffix__ __INT64_C_SUFFIX__
56#define __int_least16_c_suffix__ __INT64_C_SUFFIX__
57#define __int_least8_c_suffix__ __INT64_C_SUFFIX__
58#endif /* __INT64_C_SUFFIX__ */
59#endif /* __INT64_TYPE__ */
60
61#ifdef __INT_LEAST64_TYPE__
62#ifdef __int_least64_c_suffix__
63#define __INT64_C(x) int_c(x, __int_least64_c_suffix__)
64#define __UINT64_C(x) uint_c(x, __int_least64_c_suffix__)
65#else
66#define __INT64_C(x) x
67#define __UINT64_C(x) x ## U
68#endif /* __int_least64_c_suffix__ */
69#endif /* __INT_LEAST64_TYPE__ */
70
71#ifdef __INT32_TYPE__
72#undef __int_least32_c_suffix__
73#undef __int_least16_c_suffix__
74#undef __int_least8_c_suffix__
75#ifdef __INT32_C_SUFFIX__
76#define __int_least32_c_suffix__ __INT32_C_SUFFIX__
77#define __int_least16_c_suffix__ __INT32_C_SUFFIX__
78#define __int_least8_c_suffix__ __INT32_C_SUFFIX__
79#endif /* __INT32_C_SUFFIX__ */
80#endif /* __INT32_TYPE__ */
81
82#ifdef __INT_LEAST32_TYPE__
83#ifdef __int_least32_c_suffix__
84#define __INT32_C(x) int_c(x, __int_least32_c_suffix__)
85#define __UINT32_C(x) uint_c(x, __int_least32_c_suffix__)
86#else
87#define __INT32_C(x) x
88#define __UINT32_C(x) x ## U
89#endif /* __int_least32_c_suffix__ */
90#endif /* __INT_LEAST32_TYPE__ */
91
92#endif /* !CONFIG_ENFORCE_ZEPHYR_STDINT */
93
94#ifdef __INT16_TYPE__
95#undef __int_least16_c_suffix__
96#undef __int_least8_c_suffix__
97#ifdef __INT16_C_SUFFIX__
98#define __int_least16_c_suffix__ __INT16_C_SUFFIX__
99#define __int_least8_c_suffix__ __INT16_C_SUFFIX__
100#endif /* __INT16_C_SUFFIX__ */
101#endif /* __INT16_TYPE__ */
102
103#ifdef __INT_LEAST16_TYPE__
104#ifdef __int_least16_c_suffix__
105#define __INT16_C(x) int_c(x, __int_least16_c_suffix__)
106#define __UINT16_C(x) uint_c(x, __int_least16_c_suffix__)
107#else
108#define __INT16_C(x) x
109#define __UINT16_C(x) x ## U
110#endif /* __int_least16_c_suffix__ */
111#endif /* __INT_LEAST16_TYPE__ */
112
113#ifdef __INT8_TYPE__
114#undef __int_least8_c_suffix__
115#ifdef __INT8_C_SUFFIX__
116#define __int_least8_c_suffix__ __INT8_C_SUFFIX__
117#endif /* __INT8_C_SUFFIX__ */
118#endif /* __INT8_TYPE__ */
119
120#ifdef __INT_LEAST8_TYPE__
121#ifdef __int_least8_c_suffix__
122#define __INT8_C(x) int_c(x, __int_least8_c_suffix__)
123#define __UINT8_C(x) uint_c(x, __int_least8_c_suffix__)
124#else
125#define __INT8_C(x) x
126#define __UINT8_C(x) x ## U
127#endif /* __int_least8_c_suffix__ */
128#endif /* __INT_LEAST8_TYPE__ */
129
130#define __INTMAX_C(x) int_c(x, __INTMAX_C_SUFFIX__)
131#define __UINTMAX_C(x) int_c(x, __UINTMAX_C_SUFFIX__)
132
133#endif /* CONFIG_MINIMAL_LIBC */
134
135#endif /* ZEPHYR_INCLUDE_TOOLCHAIN_LLVM_H_ */
GCC toolchain abstraction.