[AMDGPU] Make v8i16/v8f16 legal
[llvm-project.git] / libcxxabi / include / cxxabi.h
blobeaa324dc6867e850c18f854c7316dfb8917e1d93
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef __CXXABI_H
10 #define __CXXABI_H
13 * This header provides the interface to the C++ ABI as defined at:
14 * https://itanium-cxx-abi.github.io/cxx-abi/
17 #include <stddef.h>
18 #include <stdint.h>
20 #include <__cxxabi_config.h>
22 #define _LIBCPPABI_VERSION 1002
23 #define _LIBCXXABI_NORETURN __attribute__((noreturn))
24 #define _LIBCXXABI_ALWAYS_COLD __attribute__((cold))
26 #ifdef __cplusplus
28 namespace std {
29 #if defined(_WIN32)
30 class _LIBCXXABI_TYPE_VIS type_info; // forward declaration
31 #else
32 class type_info; // forward declaration
33 #endif
37 // runtime routines use C calling conventions, but are in __cxxabiv1 namespace
38 namespace __cxxabiv1 {
39 extern "C" {
41 // 2.4.2 Allocating the Exception Object
42 extern _LIBCXXABI_FUNC_VIS void *
43 __cxa_allocate_exception(size_t thrown_size) throw();
44 extern _LIBCXXABI_FUNC_VIS void
45 __cxa_free_exception(void *thrown_exception) throw();
47 // 2.4.3 Throwing the Exception Object
48 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void
49 __cxa_throw(void *thrown_exception, std::type_info *tinfo,
50 void (*dest)(void *));
52 // 2.5.3 Exception Handlers
53 extern _LIBCXXABI_FUNC_VIS void *
54 __cxa_get_exception_ptr(void *exceptionObject) throw();
55 extern _LIBCXXABI_FUNC_VIS void *
56 __cxa_begin_catch(void *exceptionObject) throw();
57 extern _LIBCXXABI_FUNC_VIS void __cxa_end_catch();
58 #if defined(_LIBCXXABI_ARM_EHABI)
59 extern _LIBCXXABI_FUNC_VIS bool
60 __cxa_begin_cleanup(void *exceptionObject) throw();
61 extern _LIBCXXABI_FUNC_VIS void __cxa_end_cleanup();
62 #endif
63 extern _LIBCXXABI_FUNC_VIS std::type_info *__cxa_current_exception_type();
65 // 2.5.4 Rethrowing Exceptions
66 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_rethrow();
68 // 2.6 Auxiliary Runtime APIs
69 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_bad_cast(void);
70 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_bad_typeid(void);
71 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void
72 __cxa_throw_bad_array_new_length(void);
74 // 3.2.6 Pure Virtual Function API
75 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_pure_virtual(void);
77 // 3.2.7 Deleted Virtual Function API
78 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_deleted_virtual(void);
80 // 3.3.2 One-time Construction API
81 #if defined(_LIBCXXABI_GUARD_ABI_ARM)
82 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD int __cxa_guard_acquire(uint32_t *);
83 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD void __cxa_guard_release(uint32_t *);
84 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD void __cxa_guard_abort(uint32_t *);
85 #else
86 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD int __cxa_guard_acquire(uint64_t *);
87 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD void __cxa_guard_release(uint64_t *);
88 extern _LIBCXXABI_FUNC_VIS _LIBCXXABI_ALWAYS_COLD void __cxa_guard_abort(uint64_t *);
89 #endif
91 // 3.3.3 Array Construction and Destruction API
92 extern _LIBCXXABI_FUNC_VIS void *
93 __cxa_vec_new(size_t element_count, size_t element_size, size_t padding_size,
94 void (*constructor)(void *), void (*destructor)(void *));
96 extern _LIBCXXABI_FUNC_VIS void *
97 __cxa_vec_new2(size_t element_count, size_t element_size, size_t padding_size,
98 void (*constructor)(void *), void (*destructor)(void *),
99 void *(*alloc)(size_t), void (*dealloc)(void *));
101 extern _LIBCXXABI_FUNC_VIS void *
102 __cxa_vec_new3(size_t element_count, size_t element_size, size_t padding_size,
103 void (*constructor)(void *), void (*destructor)(void *),
104 void *(*alloc)(size_t), void (*dealloc)(void *, size_t));
106 extern _LIBCXXABI_FUNC_VIS void
107 __cxa_vec_ctor(void *array_address, size_t element_count, size_t element_size,
108 void (*constructor)(void *), void (*destructor)(void *));
110 extern _LIBCXXABI_FUNC_VIS void __cxa_vec_dtor(void *array_address,
111 size_t element_count,
112 size_t element_size,
113 void (*destructor)(void *));
115 extern _LIBCXXABI_FUNC_VIS void __cxa_vec_cleanup(void *array_address,
116 size_t element_count,
117 size_t element_size,
118 void (*destructor)(void *));
120 extern _LIBCXXABI_FUNC_VIS void __cxa_vec_delete(void *array_address,
121 size_t element_size,
122 size_t padding_size,
123 void (*destructor)(void *));
125 extern _LIBCXXABI_FUNC_VIS void
126 __cxa_vec_delete2(void *array_address, size_t element_size, size_t padding_size,
127 void (*destructor)(void *), void (*dealloc)(void *));
129 extern _LIBCXXABI_FUNC_VIS void
130 __cxa_vec_delete3(void *__array_address, size_t element_size,
131 size_t padding_size, void (*destructor)(void *),
132 void (*dealloc)(void *, size_t));
134 extern _LIBCXXABI_FUNC_VIS void
135 __cxa_vec_cctor(void *dest_array, void *src_array, size_t element_count,
136 size_t element_size, void (*constructor)(void *, void *),
137 void (*destructor)(void *));
139 // 3.3.5.3 Runtime API
140 // These functions are part of the C++ ABI, but they are not defined in libc++abi:
141 // int __cxa_atexit(void (*)(void *), void *, void *);
142 // void __cxa_finalize(void *);
144 // 3.4 Demangler API
145 extern _LIBCXXABI_FUNC_VIS char *__cxa_demangle(const char *mangled_name,
146 char *output_buffer,
147 size_t *length, int *status);
149 // Apple additions to support C++ 0x exception_ptr class
150 // These are primitives to wrap a smart pointer around an exception object
151 extern _LIBCXXABI_FUNC_VIS void *__cxa_current_primary_exception() throw();
152 extern _LIBCXXABI_FUNC_VIS void
153 __cxa_rethrow_primary_exception(void *primary_exception);
154 extern _LIBCXXABI_FUNC_VIS void
155 __cxa_increment_exception_refcount(void *primary_exception) throw();
156 extern _LIBCXXABI_FUNC_VIS void
157 __cxa_decrement_exception_refcount(void *primary_exception) throw();
159 // Apple extension to support std::uncaught_exception()
160 extern _LIBCXXABI_FUNC_VIS bool __cxa_uncaught_exception() throw();
161 extern _LIBCXXABI_FUNC_VIS unsigned int __cxa_uncaught_exceptions() throw();
163 #if defined(__linux__) || defined(__Fuchsia__)
164 // Linux and Fuchsia TLS support. Not yet an official part of the Itanium ABI.
165 // https://sourceware.org/glibc/wiki/Destructor%20support%20for%20thread_local%20variables
166 extern _LIBCXXABI_FUNC_VIS int __cxa_thread_atexit(void (*)(void *), void *,
167 void *) throw();
168 #endif
170 } // extern "C"
171 } // namespace __cxxabiv1
173 namespace abi = __cxxabiv1;
175 #endif // __cplusplus
177 #endif // __CXXABI_H