[LoongArch] Fix incorrect pattern [X]VBITSELI_B instructions
[llvm-project.git] / libcxx / include / cinttypes
bloba5b9558abde12d276995e40fa854eaa945ca331c
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_CINTTYPES
11 #define _LIBCPP_CINTTYPES
14     cinttypes synopsis
16 This entire header is C99 / C++0X
18 #include <cstdint>  // <cinttypes> includes <cstdint>
20 Macros:
22     PRId8
23     PRId16
24     PRId32
25     PRId64
27     PRIdLEAST8
28     PRIdLEAST16
29     PRIdLEAST32
30     PRIdLEAST64
32     PRIdFAST8
33     PRIdFAST16
34     PRIdFAST32
35     PRIdFAST64
37     PRIdMAX
38     PRIdPTR
40     PRIi8
41     PRIi16
42     PRIi32
43     PRIi64
45     PRIiLEAST8
46     PRIiLEAST16
47     PRIiLEAST32
48     PRIiLEAST64
50     PRIiFAST8
51     PRIiFAST16
52     PRIiFAST32
53     PRIiFAST64
55     PRIiMAX
56     PRIiPTR
58     PRIo8
59     PRIo16
60     PRIo32
61     PRIo64
63     PRIoLEAST8
64     PRIoLEAST16
65     PRIoLEAST32
66     PRIoLEAST64
68     PRIoFAST8
69     PRIoFAST16
70     PRIoFAST32
71     PRIoFAST64
73     PRIoMAX
74     PRIoPTR
76     PRIu8
77     PRIu16
78     PRIu32
79     PRIu64
81     PRIuLEAST8
82     PRIuLEAST16
83     PRIuLEAST32
84     PRIuLEAST64
86     PRIuFAST8
87     PRIuFAST16
88     PRIuFAST32
89     PRIuFAST64
91     PRIuMAX
92     PRIuPTR
94     PRIx8
95     PRIx16
96     PRIx32
97     PRIx64
99     PRIxLEAST8
100     PRIxLEAST16
101     PRIxLEAST32
102     PRIxLEAST64
104     PRIxFAST8
105     PRIxFAST16
106     PRIxFAST32
107     PRIxFAST64
109     PRIxMAX
110     PRIxPTR
112     PRIX8
113     PRIX16
114     PRIX32
115     PRIX64
117     PRIXLEAST8
118     PRIXLEAST16
119     PRIXLEAST32
120     PRIXLEAST64
122     PRIXFAST8
123     PRIXFAST16
124     PRIXFAST32
125     PRIXFAST64
127     PRIXMAX
128     PRIXPTR
130     SCNd8
131     SCNd16
132     SCNd32
133     SCNd64
135     SCNdLEAST8
136     SCNdLEAST16
137     SCNdLEAST32
138     SCNdLEAST64
140     SCNdFAST8
141     SCNdFAST16
142     SCNdFAST32
143     SCNdFAST64
145     SCNdMAX
146     SCNdPTR
148     SCNi8
149     SCNi16
150     SCNi32
151     SCNi64
153     SCNiLEAST8
154     SCNiLEAST16
155     SCNiLEAST32
156     SCNiLEAST64
158     SCNiFAST8
159     SCNiFAST16
160     SCNiFAST32
161     SCNiFAST64
163     SCNiMAX
164     SCNiPTR
166     SCNo8
167     SCNo16
168     SCNo32
169     SCNo64
171     SCNoLEAST8
172     SCNoLEAST16
173     SCNoLEAST32
174     SCNoLEAST64
176     SCNoFAST8
177     SCNoFAST16
178     SCNoFAST32
179     SCNoFAST64
181     SCNoMAX
182     SCNoPTR
184     SCNu8
185     SCNu16
186     SCNu32
187     SCNu64
189     SCNuLEAST8
190     SCNuLEAST16
191     SCNuLEAST32
192     SCNuLEAST64
194     SCNuFAST8
195     SCNuFAST16
196     SCNuFAST32
197     SCNuFAST64
199     SCNuMAX
200     SCNuPTR
202     SCNx8
203     SCNx16
204     SCNx32
205     SCNx64
207     SCNxLEAST8
208     SCNxLEAST16
209     SCNxLEAST32
210     SCNxLEAST64
212     SCNxFAST8
213     SCNxFAST16
214     SCNxFAST32
215     SCNxFAST64
217     SCNxMAX
218     SCNxPTR
220 namespace std
223 Types:
225     imaxdiv_t
227 intmax_t  imaxabs(intmax_t j);
228 imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
229 intmax_t  strtoimax(const char* restrict nptr, char** restrict endptr, int base);
230 uintmax_t strtoumax(const char* restrict nptr, char** restrict endptr, int base);
231 intmax_t  wcstoimax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
232 uintmax_t wcstoumax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
234 }  // std
237 #include <__assert> // all public C++ headers provide the assertion handler
238 #include <__config>
240 // standard-mandated includes
242 // [cinttypes.syn]
243 #include <cstdint>
245 #include <inttypes.h>
247 #ifndef _LIBCPP_INTTYPES_H
248 #   error <cinttypes> tried including <inttypes.h> but didn't find libc++'s <inttypes.h> header. \
249           This usually means that your header search paths are not configured properly. \
250           The header search paths should contain the C++ Standard Library headers before \
251           any C Standard Library, and you are probably using compiler flags that make that \
252           not be the case.
253 #endif
255 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
256 #  pragma GCC system_header
257 #endif
259 _LIBCPP_BEGIN_NAMESPACE_STD
261 using ::imaxdiv_t _LIBCPP_USING_IF_EXISTS;
262 using ::imaxabs _LIBCPP_USING_IF_EXISTS;
263 using ::imaxdiv _LIBCPP_USING_IF_EXISTS;
264 using ::strtoimax _LIBCPP_USING_IF_EXISTS;
265 using ::strtoumax _LIBCPP_USING_IF_EXISTS;
266 using ::wcstoimax _LIBCPP_USING_IF_EXISTS;
267 using ::wcstoumax _LIBCPP_USING_IF_EXISTS;
269 _LIBCPP_END_NAMESPACE_STD
271 #endif // _LIBCPP_CINTTYPES