Network.cc (6881:5a61a8a9009a) Network.cc (7054:7d6862b80049)
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;

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

36 m_virtual_networks = p->number_of_virtual_networks;
37 m_topology_ptr = p->topology;
38 m_buffer_size = p->buffer_size;
39 m_endpoint_bandwidth = p->endpoint_bandwidth;
40 m_adaptive_routing = p->adaptive_routing;
41 m_link_latency = p->link_latency;
42 m_control_msg_size = p->control_msg_size;
43
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;

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

36 m_virtual_networks = p->number_of_virtual_networks;
37 m_topology_ptr = p->topology;
38 m_buffer_size = p->buffer_size;
39 m_endpoint_bandwidth = p->endpoint_bandwidth;
40 m_adaptive_routing = p->adaptive_routing;
41 m_link_latency = p->link_latency;
42 m_control_msg_size = p->control_msg_size;
43
44 //
45 // Total nodes/controllers in network
46 // Must make sure this is called after the State Machine constructors
44 // Total nodes/controllers in network
45 // Must make sure this is called after the State Machine constructors
47 //
48 m_nodes = MachineType_base_number(MachineType_NUM);
46 m_nodes = MachineType_base_number(MachineType_NUM);
49 assert(m_nodes != 0);
50
51 assert(m_virtual_networks != 0);
52 assert(m_topology_ptr != NULL);
53
47 assert(m_nodes != 0);
48
49 assert(m_virtual_networks != 0);
50 assert(m_topology_ptr != NULL);
51
54 //
55 // Initialize the controller's network pointers
52 // Initialize the controller's network pointers
56 //
57 m_topology_ptr->initNetworkPtr(this);
58}
59
53 m_topology_ptr->initNetworkPtr(this);
54}
55
60void Network::init()
56void
57Network::init()
61{
58{
62 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
59 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
63}
64
60}
61
65int Network::MessageSizeType_to_int(MessageSizeType size_type)
62int
63Network::MessageSizeType_to_int(MessageSizeType size_type)
66{
64{
67 switch(size_type) {
68 case MessageSizeType_Undefined:
69 ERROR_MSG("Can't convert Undefined MessageSizeType to integer");
70 break;
71 case MessageSizeType_Control:
72 case MessageSizeType_Request_Control:
73 case MessageSizeType_Reissue_Control:
74 case MessageSizeType_Response_Control:
75 case MessageSizeType_Writeback_Control:
76 case MessageSizeType_Forwarded_Control:
77 case MessageSizeType_Invalidate_Control:
78 case MessageSizeType_Unblock_Control:
79 case MessageSizeType_Persistent_Control:
80 case MessageSizeType_Completion_Control:
81 return m_control_msg_size;
82 break;
83 case MessageSizeType_Data:
84 case MessageSizeType_Response_Data:
85 case MessageSizeType_ResponseLocal_Data:
86 case MessageSizeType_ResponseL2hit_Data:
87 case MessageSizeType_Writeback_Data:
88 return m_data_msg_size;
89 break;
90 default:
91 ERROR_MSG("Invalid range for type MessageSizeType");
92 break;
93 }
94 return 0;
65 switch(size_type) {
66 case MessageSizeType_Undefined:
67 ERROR_MSG("Can't convert Undefined MessageSizeType to integer");
68 break;
69 case MessageSizeType_Control:
70 case MessageSizeType_Request_Control:
71 case MessageSizeType_Reissue_Control:
72 case MessageSizeType_Response_Control:
73 case MessageSizeType_Writeback_Control:
74 case MessageSizeType_Forwarded_Control:
75 case MessageSizeType_Invalidate_Control:
76 case MessageSizeType_Unblock_Control:
77 case MessageSizeType_Persistent_Control:
78 case MessageSizeType_Completion_Control:
79 return m_control_msg_size;
80 case MessageSizeType_Data:
81 case MessageSizeType_Response_Data:
82 case MessageSizeType_ResponseLocal_Data:
83 case MessageSizeType_ResponseL2hit_Data:
84 case MessageSizeType_Writeback_Data:
85 return m_data_msg_size;
86 default:
87 ERROR_MSG("Invalid range for type MessageSizeType");
88 break;
89 }
90 return 0;
95}
91}
92
93const Vector<Throttle*>*
94Network::getThrottles(NodeID id) const
95{
96 return NULL;
97}