[MLIR][NVVM] Add tcgen05 alloc/dealloc Ops (#125674)
[llvm-project.git] / clang / lib / Headers / llvm_libc_wrappers / stdlib.h
blob69afdf4a6897e07262cf03d0a7fa15eb638b302c
1 //===-- Wrapper for C standard stdlib.h declarations on the GPU -----------===//
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 __CLANG_LLVM_LIBC_WRAPPERS_STDLIB_H__
10 #define __CLANG_LLVM_LIBC_WRAPPERS_STDLIB_H__
12 #if !defined(_OPENMP) && !defined(__HIP__) && !defined(__CUDA__)
13 #error "This file is for GPU offloading compilation only"
14 #endif
16 #include_next <stdlib.h>
18 #if __has_include(<llvm-libc-decls/stdlib.h>)
20 #if defined(__HIP__) || defined(__CUDA__)
21 #define __LIBC_ATTRS __attribute__((device))
22 #endif
24 #pragma omp begin declare target
26 // The LLVM C library uses these named types so we forward declare them.
27 typedef void (*__atexithandler_t)(void);
28 typedef int (*__bsearchcompare_t)(const void *, const void *);
29 typedef int (*__qsortcompare_t)(const void *, const void *);
30 typedef int (*__qsortrcompare_t)(const void *, const void *, void *);
32 // Enforce ABI compatibility with the structs used by the LLVM C library.
33 _Static_assert(__builtin_offsetof(div_t, quot) == 0, "ABI mismatch!");
34 _Static_assert(__builtin_offsetof(ldiv_t, quot) == 0, "ABI mismatch!");
35 _Static_assert(__builtin_offsetof(lldiv_t, quot) == 0, "ABI mismatch!");
37 #if defined(__GLIBC__) && __cplusplus >= 201703L
38 #define at_quick_exit atexit
39 #endif
41 #include <llvm-libc-decls/stdlib.h>
43 #if defined(__GLIBC__) && __cplusplus >= 201703L
44 #undef at_quick_exit
45 #endif
47 #pragma omp end declare target
49 #undef __LIBC_ATTRS
51 #endif
53 #endif // __CLANG_LLVM_LIBC_WRAPPERS_STDLIB_H__