diff options
author | 2016-10-26 15:00:50 +0200 | |
---|---|---|
committer | 2016-10-26 15:22:47 +0200 | |
commit | 7d129c00303a5df1d6af331781139dc2d447d0d8 (patch) | |
tree | b606ea8a8bde53a69a27d128f55b349a55e20a9b /src | |
parent | 270cf64af087f110fd69064017edc311ddf82025 (diff) |
fixed performance issue (moved STRECH case to low priority cases)
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'src')
-rwxr-xr-x | src/bp_sim.cpp | 66 | ||||
-rwxr-xr-x | src/bp_sim.h | 14 |
2 files changed, 56 insertions, 24 deletions
diff --git a/src/bp_sim.cpp b/src/bp_sim.cpp index c4cb0927..db273b18 100755 --- a/src/bp_sim.cpp +++ b/src/bp_sim.cpp @@ -3787,22 +3787,6 @@ inline int CNodeGenerator::flush_file_realtime(dsec_t max_time, } break; - /* a case called when a time strech happens */ - case scSTRECH: - { - dsec_t dt = cur_time - n_time; - handle_time_strech(cur_time, dt, offset, thread); - - /* re-read the top of the queue - it might have changed with messaging */ - node = m_p_queue.top(); - n_time = node->m_time + offset; - - /* go back to INIT */ - state = scINIT; - - } - break; - case scWORK: { int node_count = 0; @@ -3831,14 +3815,42 @@ inline int CNodeGenerator::flush_file_realtime(dsec_t max_time, do_sleep(cur_time,thread,n_time); // estimate loop state=scWORK; break; + + default: - assert(0); + handle_slow_operations(state, node, cur_time, n_time, offset, thread); + break; } /* switch */ + }/* while*/ return (teardown(thread,always,old_offset,offset)); } + +FORCE_NO_INLINE void CNodeGenerator::handle_slow_operations(sch_state_t &state, + CGenNode * &node, + dsec_t &cur_time, + dsec_t &n_time, + dsec_t &offset, + CFlowGenListPerThread *thread) { + switch (state) { + case scSTRECH: + { + handle_time_strech(node, cur_time, n_time, offset, thread); + + /* go back to work */ + state = scWORK; + + } + break; + + default: + assert(0); + } + +} + /** * when time is streched - the flow_sync node * might be postpond too much @@ -3849,18 +3861,26 @@ inline int CNodeGenerator::flush_file_realtime(dsec_t max_time, * @author imarom (7/31/2016) * */ -FORCE_NO_INLINE void CNodeGenerator::handle_time_strech(dsec_t cur_time, - dsec_t dt, - dsec_t &offset, - CFlowGenListPerThread *thread) { +void CNodeGenerator::handle_time_strech(CGenNode * &node, + dsec_t &cur_time, + dsec_t &n_time, + dsec_t &offset, + CFlowGenListPerThread *thread) { + + + /* fix the time offset */ + dsec_t dt = cur_time - n_time; + offset += dt; /* check if flow sync message was delayed too much */ if ( (cur_time - m_last_sync_time_sec) > SYNC_TIME_OUT ) { handle_maintenance(thread); + + /* re-read the top of the queue - it might have changed with messaging */ + node = m_p_queue.top(); + n_time = node->m_time + offset; } - /* fix the time offset */ - offset += dt; } int CNodeGenerator::flush_file_sim(dsec_t max_time, diff --git a/src/bp_sim.h b/src/bp_sim.h index 0af27b95..f7a1e73c 100755 --- a/src/bp_sim.h +++ b/src/bp_sim.h @@ -2142,7 +2142,19 @@ private: CFlowGenListPerThread * thread, double &old_offset); - FORCE_NO_INLINE void handle_time_strech(dsec_t cur_time, dsec_t dt, dsec_t &offset, CFlowGenListPerThread * thread); + FORCE_NO_INLINE void handle_slow_operations(sch_state_t &state, + CGenNode * &node, + dsec_t &cur_time, + dsec_t &n_time, + dsec_t &offset, + CFlowGenListPerThread *thread); + + void handle_time_strech(CGenNode * &node, + dsec_t &cur_time, + dsec_t &n_time, + dsec_t &offset, + CFlowGenListPerThread *thread); + private: void handle_command(CGenNode *node, CFlowGenListPerThread *thread, bool &exit_scheduler); |