LLVM
8.0.1
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
r
s
t
u
v
w
x
z
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
+
Enumerations
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
+
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
z
+
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
y
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
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
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
r
s
t
v
w
y
+
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
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
l
m
o
p
r
s
t
u
v
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
+
Macros
_
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
Examples
lib
Target
NVPTX
MCTargetDesc
NVPTXBaseInfo.h
Go to the documentation of this file.
1
//===-- NVPTXBaseInfo.h - Top-level definitions for NVPTX -------*- 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 contains small standalone helper functions and enum definitions for
11
// the NVPTX target useful for the compiler back-end and the MC libraries.
12
// As such, it deliberately does not include references to LLVM core
13
// code gen types, passes, etc..
14
//
15
//===----------------------------------------------------------------------===//
16
17
#ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXBASEINFO_H
18
#define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXBASEINFO_H
19
20
namespace
llvm
{
21
22
enum
AddressSpace
{
23
ADDRESS_SPACE_GENERIC
= 0,
24
ADDRESS_SPACE_GLOBAL
= 1,
25
ADDRESS_SPACE_SHARED
= 3,
26
ADDRESS_SPACE_CONST
= 4,
27
ADDRESS_SPACE_LOCAL
= 5,
28
29
// NVVM Internal
30
ADDRESS_SPACE_PARAM
= 101
31
};
32
33
namespace
NVPTXII {
34
enum
{
35
// These must be kept in sync with TSFlags in NVPTXInstrFormats.td
36
IsTexFlag
= 0x80,
37
IsSuldMask
= 0x300,
38
IsSuldShift
= 8,
39
IsSustFlag
= 0x400,
40
IsSurfTexQueryFlag
= 0x800,
41
IsTexModeUnifiedFlag
= 0x1000
42
};
43
}
// namespace NVPTXII
44
45
}
// namespace llvm
46
#endif
llvm
This class represents lattice values for constants.
Definition:
AllocatorList.h:24
llvm::ADDRESS_SPACE_LOCAL
Definition:
NVPTXBaseInfo.h:27
llvm::ADDRESS_SPACE_PARAM
Definition:
NVPTXBaseInfo.h:30
llvm::NVPTXII::IsSuldShift
Definition:
NVPTXBaseInfo.h:38
llvm::ADDRESS_SPACE_GLOBAL
Definition:
NVPTXBaseInfo.h:24
llvm::NVPTXII::IsSurfTexQueryFlag
Definition:
NVPTXBaseInfo.h:40
llvm::ADDRESS_SPACE_CONST
Definition:
NVPTXBaseInfo.h:26
llvm::ADDRESS_SPACE_SHARED
Definition:
NVPTXBaseInfo.h:25
llvm::AddressSpace
AddressSpace
Definition:
NVPTXBaseInfo.h:22
llvm::NVPTXII::IsTexModeUnifiedFlag
Definition:
NVPTXBaseInfo.h:41
llvm::ADDRESS_SPACE_GENERIC
Definition:
NVPTXBaseInfo.h:23
llvm::NVPTXII::IsSustFlag
Definition:
NVPTXBaseInfo.h:39
llvm::NVPTXII::IsTexFlag
Definition:
NVPTXBaseInfo.h:36
llvm::NVPTXII::IsSuldMask
Definition:
NVPTXBaseInfo.h:37
Generated on Sun Dec 20 2020 13:57:24 for LLVM by
1.8.13