flit.cc (11666:10d59d546ea2) | flit.cc (11797:f61fbb7ceb88) |
---|---|
1/* 2 * Copyright (c) 2008 Princeton University 3 * Copyright (c) 2016 Georgia Institute of Technology 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 26 unchanged lines hidden (view full) --- 35 36// Constructor for the flit 37flit::flit(int id, int vc, int vnet, RouteInfo route, int size, 38 MsgPtr msg_ptr, Cycles curTime) 39{ 40 m_size = size; 41 m_msg_ptr = msg_ptr; 42 m_enqueue_time = curTime; | 1/* 2 * Copyright (c) 2008 Princeton University 3 * Copyright (c) 2016 Georgia Institute of Technology 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 26 unchanged lines hidden (view full) --- 35 36// Constructor for the flit 37flit::flit(int id, int vc, int vnet, RouteInfo route, int size, 38 MsgPtr msg_ptr, Cycles curTime) 39{ 40 m_size = size; 41 m_msg_ptr = msg_ptr; 42 m_enqueue_time = curTime; |
43 m_dequeue_time = curTime; |
|
43 m_time = curTime; 44 m_id = id; 45 m_vnet = vnet; 46 m_vc = vc; 47 m_route = route; 48 m_stage.first = I_; 49 m_stage.second = m_time; 50 --- 35 unchanged lines hidden --- | 44 m_time = curTime; 45 m_id = id; 46 m_vnet = vnet; 47 m_vc = vc; 48 m_route = route; 49 m_stage.first = I_; 50 m_stage.second = m_time; 51 --- 35 unchanged lines hidden --- |