Warning: That file was not part of the compilation database. It may have many parsing errors.
1 | //===--- Types.def - Driver Type info ---------------------------*- C++ -*-===// |
---|---|
2 | // |
3 | // The LLVM Compiler Infrastructure |
4 | // |
5 | // This file is distributed under the University of Illinois Open Source |
6 | // License. See LICENSE.TXT for details. |
7 | // |
8 | //===----------------------------------------------------------------------===// |
9 | // |
10 | // This file defines the driver type information. Users of this file |
11 | // must define the TYPE macro to make use of this information. |
12 | // |
13 | //===----------------------------------------------------------------------===// |
14 | |
15 | #ifndef TYPE |
16 | #error "Define TYPE prior to including this file!" |
17 | #endif |
18 | |
19 | // TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) |
20 | |
21 | // The first value is the type name as a string; for types which can |
22 | // be user specified this should be the equivalent -x option. |
23 | |
24 | // The second value is the type id, which will result in a |
25 | // clang::driver::types::TY_XX enum constant. |
26 | |
27 | // The third value is that id of the type for preprocessed inputs of |
28 | // this type, or INVALID if this type is not preprocessed. |
29 | |
30 | // The fourth value is the suffix to use when creating temporary files |
31 | // of this type, or null if unspecified. |
32 | |
33 | // The fifth value is a string containing option flags. Valid values: |
34 | // a - The type should only be assembled. |
35 | // p - The type should only be precompiled. |
36 | // u - The type can be user specified (with -x). |
37 | // m - Precompiling this type produces a module file. |
38 | // A - The type's temporary suffix should be appended when generating |
39 | // outputs of this type. |
40 | |
41 | |
42 | // C family source language (with and without preprocessing). |
43 | TYPE("cpp-output", PP_C, INVALID, "i", "u") |
44 | TYPE("c", C, PP_C, "c", "u") |
45 | TYPE("cl", CL, PP_C, "cl", "u") |
46 | TYPE("cuda-cpp-output", PP_CUDA, INVALID, "cui", "u") |
47 | TYPE("cuda", CUDA, PP_CUDA, "cu", "u") |
48 | TYPE("cuda", CUDA_DEVICE, PP_CUDA, "cu", "") |
49 | TYPE("hip-cpp-output", PP_HIP, INVALID, "cui", "u") |
50 | TYPE("hip", HIP, PP_HIP, "cu", "u") |
51 | TYPE("hip", HIP_DEVICE, PP_HIP, "cu", "") |
52 | TYPE("objective-c-cpp-output", PP_ObjC, INVALID, "mi", "u") |
53 | TYPE("objc-cpp-output", PP_ObjC_Alias, INVALID, "mi", "u") |
54 | TYPE("objective-c", ObjC, PP_ObjC, "m", "u") |
55 | TYPE("c++-cpp-output", PP_CXX, INVALID, "ii", "u") |
56 | TYPE("c++", CXX, PP_CXX, "cpp", "u") |
57 | TYPE("objective-c++-cpp-output", PP_ObjCXX, INVALID, "mii", "u") |
58 | TYPE("objc++-cpp-output", PP_ObjCXX_Alias, INVALID, "mii", "u") |
59 | TYPE("objective-c++", ObjCXX, PP_ObjCXX, "mm", "u") |
60 | TYPE("renderscript", RenderScript, PP_C, "rs", "u") |
61 | |
62 | // C family input files to precompile. |
63 | TYPE("c-header-cpp-output", PP_CHeader, INVALID, "i", "p") |
64 | TYPE("c-header", CHeader, PP_CHeader, "h", "pu") |
65 | TYPE("cl-header", CLHeader, PP_CHeader, "h", "pu") |
66 | TYPE("objective-c-header-cpp-output", PP_ObjCHeader, INVALID, "mi", "p") |
67 | TYPE("objective-c-header", ObjCHeader, PP_ObjCHeader, "h", "pu") |
68 | TYPE("c++-header-cpp-output", PP_CXXHeader, INVALID, "ii", "p") |
69 | TYPE("c++-header", CXXHeader, PP_CXXHeader, "hh", "pu") |
70 | TYPE("objective-c++-header-cpp-output", PP_ObjCXXHeader, INVALID, "mii", "p") |
71 | TYPE("objective-c++-header", ObjCXXHeader, PP_ObjCXXHeader, "h", "pu") |
72 | TYPE("c++-module", CXXModule, PP_CXXModule, "cppm", "mu") |
73 | TYPE("c++-module-cpp-output", PP_CXXModule, INVALID, "iim", "m") |
74 | |
75 | // Other languages. |
76 | TYPE("ada", Ada, INVALID, nullptr, "u") |
77 | TYPE("assembler", PP_Asm, INVALID, "s", "au") |
78 | TYPE("assembler-with-cpp", Asm, PP_Asm, "S", "au") |
79 | TYPE("f95", PP_Fortran, INVALID, nullptr, "u") |
80 | TYPE("f95-cpp-input", Fortran, PP_Fortran, nullptr, "u") |
81 | TYPE("java", Java, INVALID, nullptr, "u") |
82 | |
83 | // LLVM IR/LTO types. We define separate types for IR and LTO because LTO |
84 | // outputs should use the standard suffixes. |
85 | TYPE("ir", LLVM_IR, INVALID, "ll", "u") |
86 | TYPE("ir", LLVM_BC, INVALID, "bc", "u") |
87 | TYPE("lto-ir", LTO_IR, INVALID, "s", "") |
88 | TYPE("lto-bc", LTO_BC, INVALID, "o", "") |
89 | |
90 | // Misc. |
91 | TYPE("ast", AST, INVALID, "ast", "u") |
92 | TYPE("pcm", ModuleFile, INVALID, "pcm", "u") |
93 | TYPE("plist", Plist, INVALID, "plist", "") |
94 | TYPE("rewritten-objc", RewrittenObjC,INVALID, "cpp", "") |
95 | TYPE("rewritten-legacy-objc", RewrittenLegacyObjC,INVALID, "cpp", "") |
96 | TYPE("remap", Remap, INVALID, "remap", "") |
97 | TYPE("precompiled-header", PCH, INVALID, "gch", "A") |
98 | TYPE("object", Object, INVALID, "o", "") |
99 | TYPE("treelang", Treelang, INVALID, nullptr, "u") |
100 | TYPE("image", Image, INVALID, "out", "") |
101 | TYPE("dSYM", dSYM, INVALID, "dSYM", "A") |
102 | TYPE("dependencies", Dependencies, INVALID, "d", "") |
103 | TYPE("cuda-fatbin", CUDA_FATBIN, INVALID, "fatbin", "A") |
104 | TYPE("none", Nothing, INVALID, nullptr, "u") |
105 |
Warning: That file was not part of the compilation database. It may have many parsing errors.