gem5
v20.0.0.0
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
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
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
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
c
d
e
f
i
l
m
o
p
r
s
t
v
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
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
w
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
+
Enumerator
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
hsail
Brig.h
Go to the documentation of this file.
1
// University of Illinois/NCSA
2
// Open Source License
3
//
4
// Copyright (c) 2013, Advanced Micro Devices, Inc.
5
// All rights reserved.
6
//
7
// Developed by:
8
//
9
// HSA Team
10
//
11
// Advanced Micro Devices, Inc
12
//
13
// www.amd.com
14
//
15
// Permission is hereby granted, free of charge, to any person obtaining a copy of
16
// this software and associated documentation files (the "Software"), to deal with
17
// the Software without restriction, including without limitation the rights to
18
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
19
// of the Software, and to permit persons to whom the Software is furnished to do
20
// so, subject to the following conditions:
21
//
22
// * Redistributions of source code must retain the above copyright notice,
23
// this list of conditions and the following disclaimers.
24
//
25
// * Redistributions in binary form must reproduce the above copyright notice,
26
// this list of conditions and the following disclaimers in the
27
// documentation and/or other materials provided with the distribution.
28
//
29
// * Neither the names of the LLVM Team, University of Illinois at
30
// Urbana-Champaign, nor the names of its contributors may be used to
31
// endorse or promote products derived from this Software without specific
32
// prior written permission.
33
//
34
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
36
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37
// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
40
// SOFTWARE.
41
#ifndef INTERNAL_BRIG_H
42
#define INTERNAL_BRIG_H
43
44
#include <stdint.h>
45
46
namespace
Brig
{
47
#include "Brig_new.hpp"
48
49
// These typedefs provide some backward compatibility with earlier versions
50
// of Brig.h, reducing the number of code changes. The distinct names also
51
// increase legibility by showing the code's intent.
52
typedef
BrigBase
BrigDirective
;
53
typedef
BrigBase
BrigOperand
;
54
55
enum
BrigMemoryFenceSegments
{
// for internal use only
56
//.mnemo={ s/^BRIG_MEMORY_FENCE_SEGMENT_//;lc }
57
//.mnemo_token=_EMMemoryFenceSegments
58
//.mnemo_context=EInstModifierInstFenceContext
59
BRIG_MEMORY_FENCE_SEGMENT_GLOBAL
= 0,
60
BRIG_MEMORY_FENCE_SEGMENT_GROUP
= 1,
61
BRIG_MEMORY_FENCE_SEGMENT_IMAGE
= 2,
62
BRIG_MEMORY_FENCE_SEGMENT_LAST
= 3
//.skip
63
};
64
65
}
66
67
#endif // defined(INTERNAL_BRIG_H)
Brig::BrigDirective
BrigBase BrigDirective
Definition:
Brig.h:52
Brig::BrigMemoryFenceSegments
BrigMemoryFenceSegments
Definition:
Brig.h:55
Brig::BrigOperand
BrigBase BrigOperand
Definition:
Brig.h:53
Brig::BRIG_MEMORY_FENCE_SEGMENT_GLOBAL
Definition:
Brig.h:59
Brig::BRIG_MEMORY_FENCE_SEGMENT_IMAGE
Definition:
Brig.h:61
Brig::BRIG_MEMORY_FENCE_SEGMENT_GROUP
Definition:
Brig.h:60
Brig::BRIG_MEMORY_FENCE_SEGMENT_LAST
Definition:
Brig.h:62
Brig::BrigBase
Definition:
Brig.h:1178
Brig
Definition:
Brig.h:46
Generated on Thu May 28 2020 16:21:29 for gem5 by
doxygen
1.8.13