1 | //===--- BuiltinHeaders.def - Builtin header info database ------*- C++ -*-===// |
---|---|
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 | //===----------------------------------------------------------------------===// |
8 | // |
9 | // This file defines the standard builtin function header locations. Users of |
10 | // this file must define the HEADER macro to make use of this information. |
11 | // |
12 | //===----------------------------------------------------------------------===// |
13 | |
14 | HEADER(NO_HEADER, nullptr) |
15 | HEADER(ARMACLE_H, "arm_acle.h") |
16 | HEADER(BLOCKS_H, "Blocks.h") |
17 | HEADER(COMPLEX_H, "complex.h") |
18 | HEADER(CTYPE_H, "ctype.h") |
19 | HEADER(EMMINTRIN_H, "emmintrin.h") |
20 | HEADER(FOUNDATION_NSOBJCRUNTIME_H, "Foundation/NSObjCRuntime.h") |
21 | HEADER(IMMINTRIN_H, "immintrin.h") |
22 | HEADER(INTRIN_H, "intrin.h") |
23 | HEADER(MALLOC_H, "malloc.h") |
24 | HEADER(MATH_H, "math.h") |
25 | HEADER(MEMORY, "memory") |
26 | HEADER(OBJC_MESSAGE_H, "objc/message.h") |
27 | HEADER(OBJC_OBJC_AUTO_H, "objc/objc-auto.h") |
28 | HEADER(OBJC_OBJC_EXCEPTION_H, "objc/objc-exception.h") |
29 | HEADER(OBJC_OBJC_SYNC_H, "objc/objc-sync.h") |
30 | HEADER(OBJC_RUNTIME_H, "objc/runtime.h") |
31 | HEADER(PTHREAD_H, "pthread.h") |
32 | HEADER(SETJMPEX_H, "setjmpex.h") |
33 | HEADER(SETJMP_H, "setjmp.h") |
34 | HEADER(STDARG_H, "stdarg.h") |
35 | HEADER(STDIO_H, "stdio.h") |
36 | HEADER(STDLIB_H, "stdlib.h") |
37 | HEADER(STRINGS_H, "strings.h") |
38 | HEADER(STRING_H, "string.h") |
39 | HEADER(UNISTD_H, "unistd.h") |
40 | HEADER(UTILITY, "utility") |
41 | HEADER(WCHAR_H, "wchar.h") |
42 | HEADER(XMMINTRIN_H, "xmmintrin.h") |
43 | |
44 | #undef HEADER |
45 |