Network.cc (8645:89929730804b) Network.cc (9275:ef43e69c837a)
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;

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

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
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;

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

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
35uint32_t Network::m_virtual_networks;
36uint32_t Network::m_control_msg_size;
37uint32_t Network::m_data_msg_size;
38
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

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

53}
54
55void
56Network::init()
57{
58 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
59}
60
39Network::Network(const Params *p)
40 : SimObject(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

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

57}
58
59void
60Network::init()
61{
62 m_data_msg_size = RubySystem::getBlockSizeBytes() + m_control_msg_size;
63}
64
61int
65uint32_t
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:

--- 28 unchanged lines hidden ---
66Network::MessageSizeType_to_int(MessageSizeType size_type)
67{
68 switch(size_type) {
69 case MessageSizeType_Undefined:
70 panic("Can't convert Undefined MessageSizeType to integer");
71 break;
72 case MessageSizeType_Control:
73 case MessageSizeType_Request_Control:

--- 28 unchanged lines hidden ---