Network.cc revision 8645:89929730804b
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;
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#include "base/misc.hh"
30#include "mem/protocol/MachineType.hh"
31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
33#include "mem/ruby/system/System.hh"
34
35Network::Network(const Params *p)
36    : SimObject(p)
37{
38    m_virtual_networks = p->number_of_virtual_networks;
39    m_topology_ptr = p->topology;
40    m_control_msg_size = p->control_msg_size;
41
42    // Total nodes/controllers in network
43    // Must make sure this is called after the State Machine constructors
44    m_nodes = MachineType_base_number(MachineType_NUM);
45    assert(m_nodes != 0);
46
47    assert(m_virtual_networks != 0);
48    assert(m_topology_ptr != NULL);
49
50    // Initialize the controller's network pointers
51    m_topology_ptr->initNetworkPtr(this);
52    p->ruby_system->registerNetwork(this);
53}
54
55void
56Network::init()
57{
58    m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
59}
60
61int
62Network::MessageSizeType_to_int(MessageSizeType size_type)
63{
64    switch(size_type) {
65      case MessageSizeType_Undefined:
66        panic("Can't convert Undefined MessageSizeType to integer");
67        break;
68      case MessageSizeType_Control:
69      case MessageSizeType_Request_Control:
70      case MessageSizeType_Reissue_Control:
71      case MessageSizeType_Response_Control:
72      case MessageSizeType_Writeback_Control:
73      case MessageSizeType_Broadcast_Control:
74      case MessageSizeType_Multicast_Control:
75      case MessageSizeType_Forwarded_Control:
76      case MessageSizeType_Invalidate_Control:
77      case MessageSizeType_Unblock_Control:
78      case MessageSizeType_Persistent_Control:
79      case MessageSizeType_Completion_Control:
80        return m_control_msg_size;
81      case MessageSizeType_Data:
82      case MessageSizeType_Response_Data:
83      case MessageSizeType_ResponseLocal_Data:
84      case MessageSizeType_ResponseL2hit_Data:
85      case MessageSizeType_Writeback_Data:
86        return m_data_msg_size;
87      default:
88        panic("Invalid range for type MessageSizeType");
89        break;
90    }
91}
92
93const std::vector<Throttle*>*
94Network::getThrottles(NodeID id) const
95{
96    return NULL;
97}
98