Network.cc (9465:4ae4f3f4b870) Network.cc (9594:219ad5fe8c04)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

--- 14 unchanged lines hidden (view full) ---

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#include "base/misc.hh"
30#include "mem/protocol/MachineType.hh"
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

--- 14 unchanged lines hidden (view full) ---

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#include "base/misc.hh"
30#include "mem/protocol/MachineType.hh"
31#include "mem/ruby/network/BasicLink.hh"
31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
33#include "mem/ruby/system/System.hh"
34
35uint32_t Network::m_virtual_networks;
36uint32_t Network::m_control_msg_size;
37uint32_t Network::m_data_msg_size;
38
39Network::Network(const Params *p)
40 : ClockedObject(p)
41{
42 m_virtual_networks = p->number_of_virtual_networks;
33#include "mem/ruby/system/System.hh"
34
35uint32_t Network::m_virtual_networks;
36uint32_t Network::m_control_msg_size;
37uint32_t Network::m_data_msg_size;
38
39Network::Network(const Params *p)
40 : ClockedObject(p)
41{
42 m_virtual_networks = p->number_of_virtual_networks;
43 m_topology_ptr = p->topology;
44 m_control_msg_size = p->control_msg_size;
45
46 // Total nodes/controllers in network
47 // Must make sure this is called after the State Machine constructors
48 m_nodes = MachineType_base_number(MachineType_NUM);
49 assert(m_nodes != 0);
43 m_control_msg_size = p->control_msg_size;
44
45 // Total nodes/controllers in network
46 // Must make sure this is called after the State Machine constructors
47 m_nodes = MachineType_base_number(MachineType_NUM);
48 assert(m_nodes != 0);
50
51 assert(m_virtual_networks != 0);
49 assert(m_virtual_networks != 0);
52 assert(m_topology_ptr != NULL);
53
50
54 // Initialize the controller's network pointers
55 m_topology_ptr->initNetworkPtr(this);
51 m_topology_ptr = new Topology(p->routers.size(), p->ext_links,
52 p->int_links);
56 p->ruby_system->registerNetwork(this);
53 p->ruby_system->registerNetwork(this);
54
55 // Initialize the controller's network pointers
56 for (std::vector<BasicExtLink*>::const_iterator i = p->ext_links.begin();
57 i != p->ext_links.end(); ++i) {
58 BasicExtLink *ext_link = (*i);
59 AbstractController *abs_cntrl = ext_link->params()->ext_node;
60 abs_cntrl->initNetworkPtr(this);
61 }
57}
58
59void
60Network::init()
61{
62 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
63}
64

--- 37 unchanged lines hidden ---
62}
63
64void
65Network::init()
66{
67 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
68}
69

--- 37 unchanged lines hidden ---