LLVM 19.0.0git
FileTypes.h
Go to the documentation of this file.
1//===- llvm/TextAPI/FileTypes.h - TAPI Interface File -----------*- 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#ifndef LLVM_TEXTAPI_FILETYPES_H
10#define LLVM_TEXTAPI_FILETYPES_H
11
13namespace llvm::MachO {
14/// Defines the file type TextAPI files can represent.
15enum FileType : unsigned {
16 /// Invalid file type.
17 Invalid = 0U,
18
19 /// \brief MachO Dynamic Library file.
21
22 /// \brief MachO Dynamic Library Stub file.
24
25 /// \brief MachO Bundle file.
26 MachO_Bundle = 1U << 2,
27
28 /// Text-based stub file (.tbd) version 1.0
29 TBD_V1 = 1U << 3,
30
31 /// Text-based stub file (.tbd) version 2.0
32 TBD_V2 = 1U << 4,
33
34 /// Text-based stub file (.tbd) version 3.0
35 TBD_V3 = 1U << 5,
36
37 /// Text-based stub file (.tbd) version 4.0
38 TBD_V4 = 1U << 6,
39
40 /// Text-based stub file (.tbd) version 5.0
41 TBD_V5 = 1U << 7,
42
43 All = ~0U,
44
45 LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/All),
46};
47
48} // namespace llvm::MachO
49#endif // LLVM_TEXTAPI_FILETYPES_H
FileType
Defines the file type TextAPI files can represent.
Definition: FileTypes.h:15
@ Invalid
Invalid file type.
Definition: FileTypes.h:17
@ MachO_DynamicLibrary_Stub
MachO Dynamic Library Stub file.
Definition: FileTypes.h:23
@ TBD_V1
Text-based stub file (.tbd) version 1.0.
Definition: FileTypes.h:29
@ MachO_DynamicLibrary
MachO Dynamic Library file.
Definition: FileTypes.h:20
@ LLVM_MARK_AS_BITMASK_ENUM
Definition: FileTypes.h:45
@ MachO_Bundle
MachO Bundle file.
Definition: FileTypes.h:26
@ TBD_V3
Text-based stub file (.tbd) version 3.0.
Definition: FileTypes.h:35
@ TBD_V5
Text-based stub file (.tbd) version 5.0.
Definition: FileTypes.h:41
@ TBD_V4
Text-based stub file (.tbd) version 4.0.
Definition: FileTypes.h:38
@ TBD_V2
Text-based stub file (.tbd) version 2.0.
Definition: FileTypes.h:32