clang
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
f
g
i
l
m
n
o
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Examples
include
clang
Driver
Options.h
Go to the documentation of this file.
1
//===--- Options.h - Option info & table ------------------------*- 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_CLANG_DRIVER_OPTIONS_H
10
#define LLVM_CLANG_DRIVER_OPTIONS_H
11
12
#include "llvm/Option/OptTable.h"
13
#include "llvm/Option/Option.h"
14
15
namespace
clang
{
16
namespace
driver {
17
18
namespace
options {
19
/// Flags specifically for clang options. Must not overlap with
20
/// llvm::opt::DriverFlag.
21
enum
ClangFlags
{
22
NoXarchOption
= (1 << 4),
23
LinkerInput
= (1 << 5),
24
NoArgumentUnused
= (1 << 6),
25
Unsupported
= (1 << 7),
26
LinkOption
= (1 << 8),
27
Ignored
= (1 << 9),
28
TargetSpecific
= (1 << 10),
29
};
30
31
// Flags specifically for clang option visibility. We alias DefaultVis to
32
// ClangOption, because "DefaultVis" is confusing in Options.td, which is used
33
// for multiple drivers (clang, cl, flang, etc).
34
enum
ClangVisibility
{
35
ClangOption
= llvm::opt::DefaultVis,
36
CLOption
= (1 << 1),
37
CC1Option
= (1 << 2),
38
CC1AsOption
= (1 << 3),
39
FlangOption
= (1 << 4),
40
FC1Option
= (1 << 5),
41
DXCOption
= (1 << 6),
42
};
43
44
enum
ID
{
45
OPT_INVALID
= 0,
// This is not an option ID.
46
#define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__),
47
#include "clang/Driver/Options.inc"
48
LastOption
49
#undef OPTION
50
};
51
}
52
53
const
llvm::opt::OptTable &
getDriverOptTable
();
54
}
55
}
56
57
#endif
clang::driver::options::ClangFlags
ClangFlags
Flags specifically for clang options.
Definition:
Options.h:21
clang::driver::options::TargetSpecific
@ TargetSpecific
Definition:
Options.h:28
clang::driver::options::Unsupported
@ Unsupported
Definition:
Options.h:25
clang::driver::options::NoArgumentUnused
@ NoArgumentUnused
Definition:
Options.h:24
clang::driver::options::LinkOption
@ LinkOption
Definition:
Options.h:26
clang::driver::options::Ignored
@ Ignored
Definition:
Options.h:27
clang::driver::options::NoXarchOption
@ NoXarchOption
Definition:
Options.h:22
clang::driver::options::LinkerInput
@ LinkerInput
Definition:
Options.h:23
clang::driver::options::ClangVisibility
ClangVisibility
Definition:
Options.h:34
clang::driver::options::FlangOption
@ FlangOption
Definition:
Options.h:39
clang::driver::options::CC1AsOption
@ CC1AsOption
Definition:
Options.h:38
clang::driver::options::CLOption
@ CLOption
Definition:
Options.h:36
clang::driver::options::FC1Option
@ FC1Option
Definition:
Options.h:40
clang::driver::options::ClangOption
@ ClangOption
Definition:
Options.h:35
clang::driver::options::CC1Option
@ CC1Option
Definition:
Options.h:37
clang::driver::options::DXCOption
@ DXCOption
Definition:
Options.h:41
clang::driver::options::ID
ID
Definition:
Options.h:44
clang::driver::options::LastOption
@ LastOption
Definition:
Options.h:48
clang::driver::options::OPT_INVALID
@ OPT_INVALID
Definition:
Options.h:45
clang::driver::getDriverOptTable
const llvm::opt::OptTable & getDriverOptTable()
Definition:
DriverOptions.cpp:49
clang
The JSON file list parser is used to communicate input to InstallAPI.
Definition:
CalledOnceCheck.h:17
Generated on Sat Feb 8 2025 07:13:03 for clang by
1.9.6