gem5
v21.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
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
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
n
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
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
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
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
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
mem
ruby
network
BasicRouter.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2011 Advanced Micro Devices, Inc.
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*/
28
29
#ifndef __MEM_RUBY_NETWORK_BASICROUTER_HH__
30
#define __MEM_RUBY_NETWORK_BASICROUTER_HH__
31
32
#include <iostream>
33
#include <string>
34
#include <vector>
35
36
#include "params/BasicRouter.hh"
37
#include "
sim/clocked_object.hh
"
38
39
class
BasicRouter
:
public
ClockedObject
40
{
41
public
:
42
PARAMS
(
BasicRouter
);
43
BasicRouter
(
const
Params
&
p
);
44
45
void
init
();
46
47
void
print
(std::ostream& out)
const
;
48
protected
:
49
//
50
// ID in relation to other routers in the system
51
//
52
uint32_t
m_id
;
53
uint32_t
m_latency
;
54
};
55
56
inline
std::ostream&
57
operator<<
(std::ostream& out,
const
BasicRouter
& obj)
58
{
59
obj.
print
(out);
60
out << std::flush;
61
return
out;
62
}
63
64
#endif //__MEM_RUBY_NETWORK_BASICROUTER_HH__
BasicRouter::init
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition:
BasicRouter.cc:39
BasicRouter::m_id
uint32_t m_id
Definition:
BasicRouter.hh:52
BasicRouter::m_latency
uint32_t m_latency
Definition:
BasicRouter.hh:53
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition:
clocked_object.hh:231
ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition:
clocked_object.hh:237
BasicRouter::BasicRouter
BasicRouter(const Params &p)
Definition:
BasicRouter.cc:31
BasicRouter
Definition:
BasicRouter.hh:39
BasicRouter::PARAMS
PARAMS(BasicRouter)
operator<<
std::ostream & operator<<(std::ostream &out, const BasicRouter &obj)
Definition:
BasicRouter.hh:57
clocked_object.hh
BasicRouter::print
void print(std::ostream &out) const
Definition:
BasicRouter.cc:44
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
Generated on Tue Mar 23 2021 19:41:28 for gem5 by
doxygen
1.8.17