gem5
v20.1.0.5
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
•
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
typedef
BasicRouterParams
Params
;
43
BasicRouter
(
const
Params
*
p
);
44
const
Params
*
params
()
const
{
return
(
const
Params
*)
_params
; }
45
46
void
init
();
47
48
void
print
(std::ostream& out)
const
;
49
protected
:
50
//
51
// ID in relation to other routers in the system
52
//
53
uint32_t
m_id
;
54
uint32_t
m_latency
;
55
};
56
57
inline
std::ostream&
58
operator<<
(std::ostream& out,
const
BasicRouter
& obj)
59
{
60
obj.
print
(out);
61
out << std::flush;
62
return
out;
63
}
64
65
#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::params
const Params * params() const
Definition:
BasicRouter.hh:44
BasicRouter::BasicRouter
BasicRouter(const Params *p)
Definition:
BasicRouter.cc:31
BasicRouter::m_id
uint32_t m_id
Definition:
BasicRouter.hh:53
BasicRouter::m_latency
uint32_t m_latency
Definition:
BasicRouter.hh:54
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition:
clocked_object.hh:231
BasicRouter::Params
BasicRouterParams Params
Definition:
BasicRouter.hh:42
BasicRouter
Definition:
BasicRouter.hh:39
operator<<
std::ostream & operator<<(std::ostream &out, const BasicRouter &obj)
Definition:
BasicRouter.hh:58
SimObject::_params
const SimObjectParams * _params
Cached copy of the object parameters.
Definition:
sim_object.hh:110
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 Thu Mar 18 2021 12:09:18 for gem5 by
doxygen
1.8.17