Network.cc (10303:71e0934af9f1) Network.cc (10311:ad9c042dce54)
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;

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

52
53 // Allocate to and from queues
54 // Queues that are getting messages from protocol
55 m_toNetQueues.resize(m_nodes);
56
57 // Queues that are feeding the protocol
58 m_fromNetQueues.resize(m_nodes);
59
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;

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

52
53 // Allocate to and from queues
54 // Queues that are getting messages from protocol
55 m_toNetQueues.resize(m_nodes);
56
57 // Queues that are feeding the protocol
58 m_fromNetQueues.resize(m_nodes);
59
60 for (int node = 0; node < m_nodes; node++) {
61 // Setting number of virtual message buffers per Network Queue
62 m_toNetQueues[node].resize(m_virtual_networks);
63 m_fromNetQueues[node].resize(m_virtual_networks);
64
65 // Instantiating the Message Buffers that
66 // interact with the coherence protocol
67 for (int j = 0; j < m_virtual_networks; j++) {
68 m_toNetQueues[node][j] = new MessageBuffer();
69 m_fromNetQueues[node][j] = new MessageBuffer();
70 }
71 }
72
73 m_in_use.resize(m_virtual_networks);
74 m_ordered.resize(m_virtual_networks);
75
76 for (int i = 0; i < m_virtual_networks; i++) {
77 m_in_use[i] = false;
78 m_ordered[i] = false;
79 }
80

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

90
91 // Register a callback function for combining the statistics
92 Stats::registerDumpCallback(new StatsCallback(this));
93}
94
95Network::~Network()
96{
97 for (int node = 0; node < m_nodes; node++) {
60 m_in_use.resize(m_virtual_networks);
61 m_ordered.resize(m_virtual_networks);
62
63 for (int i = 0; i < m_virtual_networks; i++) {
64 m_in_use[i] = false;
65 m_ordered[i] = false;
66 }
67

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

77
78 // Register a callback function for combining the statistics
79 Stats::registerDumpCallback(new StatsCallback(this));
80}
81
82Network::~Network()
83{
84 for (int node = 0; node < m_nodes; node++) {
85
98 // Delete the Message Buffers
86 // Delete the Message Buffers
99 for (int j = 0; j < m_virtual_networks; j++) {
100 delete m_toNetQueues[node][j];
101 delete m_fromNetQueues[node][j];
87 for (auto& it : m_toNetQueues[node]) {
88 delete it.second;
102 }
89 }
90
91 for (auto& it : m_fromNetQueues[node]) {
92 delete it.second;
93 }
103 }
104
105 delete m_topology_ptr;
106}
107
108void
109Network::init()
110{

--- 31 unchanged lines hidden ---
94 }
95
96 delete m_topology_ptr;
97}
98
99void
100Network::init()
101{

--- 31 unchanged lines hidden ---