sc_process_int.cpp
来自「基于4个mips核的noc设计」· C++ 代码 · 共 611 行
CPP
611 行
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2002 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 2.3 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************//***************************************************************************** sc_process_int.cpp -- Process internals. Original Author: Stan Y. Liao, Synopsys, Inc. *****************************************************************************//***************************************************************************** MODIFICATION LOG - modifiers, enter your name, affiliation, date and changes you are making here. Name, Affiliation, Date: Description of Modification: *****************************************************************************/#include <assert.h>#include <stdlib.h>#include <cstddef>#include "systemc/kernel/sc_process_int.h"#include "systemc/kernel/sc_simcontext.h"#include "systemc/kernel/sc_simcontext_int.h"#include "systemc/utils/sc_exception.h"// ----------------------------------------------------------------------------// CLASS : sc_process_b//// Process base class.// ----------------------------------------------------------------------------const char* const sc_process_b::kind_string = "sc_process_b";sc_process_b::sc_process_b( const char* nm, SC_ENTRY_FUNC fn, sc_module* mod ): sc_object( nm ), entry_fn( fn ), module( mod ), proc_id( simcontext()->next_proc_id() ), m_do_initialize( true ), m_is_runnable( false ), m_trigger_type( STATIC ), m_event( 0 ), m_event_list( 0 ), m_event_count( 0 ), m_timed_out( false ){}sc_process_b::~sc_process_b(){}voidsc_process_b::add_static_event( const sc_event& e ){ // check if already in static events set for( int i = m_static_events.size() - 1; i >= 0; -- i ) { if( &e == m_static_events[i] ) { return; } } m_static_events.push_back( &e ); // not very nice, but it works sc_method_handle method_h = DCAST<sc_method_handle>( this ); if( method_h != 0 ) { e.add_static( method_h ); return; } sc_thread_handle thread_h = DCAST<sc_thread_handle>( this ); if( thread_h != 0 ) { e.add_static( thread_h ); return; } assert( false );}voidsc_process_b::remove_static_events(){ // not very nice, but it works sc_method_handle method_h = DCAST<sc_method_handle>( this ); if( method_h != 0 ) { for( int i = m_static_events.size() - 1; i >= 0; -- i ) { m_static_events[i]->remove_static( method_h ); } m_static_events.erase_all(); return; } sc_thread_handle thread_h = DCAST<sc_thread_handle>( this ); if( thread_h != 0 ) { for( int i = m_static_events.size() - 1; i >= 0; -- i ) { m_static_events[i]->remove_static( thread_h ); } m_static_events.erase_all(); return; } assert( false );}// ----------------------------------------------------------------------------// CLASS : sc_method_process//// Process class for SC_METHODs.// ----------------------------------------------------------------------------const char* const sc_method_process::kind_string = "sc_method_process";sc_method_process::sc_method_process( const char* nm, SC_ENTRY_FUNC fn, sc_module* mod ): sc_process_b( nm, fn, mod ){}sc_method_process::~sc_method_process(){}voidsc_method_process::clear_trigger(){ switch( m_trigger_type ) { case STATIC: { return; } case EVENT: { m_event->remove_dynamic( this ); m_event = 0; break; } case OR_LIST: { m_event_list->remove_dynamic( this, 0 ); m_event_list->auto_delete(); m_event_list = 0; break; } case AND_LIST: { m_event_list->remove_dynamic( this, 0 ); m_event_list->auto_delete(); m_event_list = 0; m_event_count = 0; break; } case TIMEOUT: { m_timeout_event.cancel(); m_timeout_event.reset(); break; } case EVENT_TIMEOUT: { m_timeout_event.cancel(); m_timeout_event.reset(); m_event->remove_dynamic( this ); m_event = 0; break; } case OR_LIST_TIMEOUT: { m_timeout_event.cancel(); m_timeout_event.reset(); m_event_list->remove_dynamic( this, 0 ); m_event_list->auto_delete(); m_event_list = 0; break; } case AND_LIST_TIMEOUT: { m_timeout_event.cancel(); m_timeout_event.reset(); m_event_list->remove_dynamic( this, 0 ); m_event_list->auto_delete(); m_event_list = 0; m_event_count = 0; break; } } m_trigger_type = STATIC;}boolsc_method_process::trigger_dynamic( sc_event* e ){ if( m_is_runnable ) { return false; } m_timed_out = false; switch( m_trigger_type ) { case EVENT: { m_event = 0; m_trigger_type = STATIC; return true; } case OR_LIST: { m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } case AND_LIST: { if( -- m_event_count == 0 ) { // no need to remove_dynamic m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } return false; } case TIMEOUT: { m_trigger_type = STATIC; return true; } case EVENT_TIMEOUT: { if( e == m_event ) { m_timeout_event.cancel(); m_timeout_event.reset(); } else { m_timed_out = true; m_event->remove_dynamic( this ); } m_event = 0; m_trigger_type = STATIC; return true; } case OR_LIST_TIMEOUT: { if( e != &m_timeout_event ) { m_timeout_event.cancel(); m_timeout_event.reset(); } else { m_timed_out = true; } m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } case AND_LIST_TIMEOUT: { if( e == &m_timeout_event ) { m_timed_out = true; m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } else if( -- m_event_count == 0 ) { m_timeout_event.cancel(); m_timeout_event.reset(); // no need to remove_dynamic m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } return false; } case STATIC: { // we should never get here assert( false ); } } return false;}// ----------------------------------------------------------------------------// CLASS : sc_thread_process//// Process class for SC_THREADs.// ----------------------------------------------------------------------------const char* const sc_thread_process::kind_string = "sc_thread_process";sc_thread_process::sc_thread_process( const char* nm, SC_ENTRY_FUNC fn, sc_module* mod, bool is_cthread_ ): sc_process_b( nm, fn, mod ), m_is_cthread( is_cthread_ ), m_stack_size( SC_DEFAULT_STACK_SIZE ), m_cor( 0 ){ if( m_is_cthread ) { do_initialize( false ); }}sc_thread_process::~sc_thread_process(){ if( m_cor != 0 ) { m_cor->stack_protect( false ); delete m_cor; }}voidsc_thread_process::set_stack_size( size_t size ){ m_stack_size = size;}voidsc_thread_process::prepare_for_simulation(){ m_cor = simcontext()->cor_pkg()->create( m_stack_size, sc_thread_cor_fn, this ); m_cor->stack_protect( true );}voidsc_thread_cor_fn( void* arg ){ sc_thread_handle thread_h = RCAST<sc_thread_handle>( arg ); try { thread_h->execute(); } catch( const sc_exception& ex ) { cout << "\n" << ex.what() << endl; thread_h->simcontext()->set_error(); } // if control reaches this point, then the process has gone to heaven thread_h->remove_static_events(); thread_h->entry_fn = SC_DEFUNCT_PROCESS_FUNCTION; // mark defunct // abort the current coroutine and resume the next sc_simcontext* simc = thread_h->simcontext(); simc->cor_pkg()->abort( simc->next_cor() );}boolsc_thread_process::trigger_dynamic( sc_event* e ){ if( m_is_runnable ) { return false; } m_timed_out = false; switch( m_trigger_type ) { case EVENT: { m_trigger_type = STATIC; return true; } case OR_LIST: { m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } case AND_LIST: { if( -- m_event_count == 0 ) { // no need to remove_dynamic m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } return false; } case TIMEOUT: { m_trigger_type = STATIC; return true; } case EVENT_TIMEOUT: { if( e == m_event ) { m_timeout_event.cancel(); m_timeout_event.reset(); } else { m_timed_out = true; m_event->remove_dynamic( this ); } m_event = 0; m_trigger_type = STATIC; return true; } case OR_LIST_TIMEOUT: { if( e != &m_timeout_event ) { m_timeout_event.cancel(); m_timeout_event.reset(); } else { m_timed_out = true; } m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } case AND_LIST_TIMEOUT: { if( e == &m_timeout_event ) { m_timed_out = true; m_event_list->remove_dynamic( this, e ); m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } else if( -- m_event_count == 0 ) { m_timeout_event.cancel(); m_timeout_event.reset(); // no need to remove_dynamic m_event_list->auto_delete(); m_event_list = 0; m_trigger_type = STATIC; return true; } return false; } case STATIC: { // we should never get here assert( false ); } } return false;}voidsc_set_stack_size( sc_thread_handle thread_h, size_t size ){ thread_h->set_stack_size( size );}// ----------------------------------------------------------------------------// CLASS : sc_cthread_process//// Process class for SC_CTHREADs.// ----------------------------------------------------------------------------const char* const sc_cthread_process::kind_string = "sc_cthread_process";sc_cthread_process::sc_cthread_process( const char* nm, SC_ENTRY_FUNC fn, sc_module* mod ): sc_thread_process( nm, fn, mod, true ), m_wait_state( UNKNOWN ), m_wait_cycles( 0 ), m_exception_level( -1 ), m_watchlists( SC_MAX_WATCH_LEVEL ){ __reset_watching(); for( int i = 0; i < SC_MAX_WATCH_LEVEL; ++ i ) { m_watchlists[i] = new sc_plist<sc_lambda_ptr*>; }}sc_cthread_process::~sc_cthread_process(){ for( int i = 0; i < SC_MAX_WATCH_LEVEL; ++ i ) { sc_plist<sc_lambda_ptr*>::iterator it( m_watchlists[i] ); while( ! it.empty() ) { delete *it; // this was created with `new sc_lambda_ptr' it.remove(); // and go on to next } delete m_watchlists[i]; }}voidsc_cthread_process::prepare_for_simulation(){ m_cor = simcontext()->cor_pkg()->create( m_stack_size, sc_cthread_cor_fn, this ); m_cor->stack_protect( true );}boolsc_cthread_process::ready_to_run(){ bool exception = eval_watchlist(); if( exception ) { return true; } bool ready; switch( m_wait_state ) { case CLOCK: ready = ( -- m_wait_cycles == 0 ); break; case LAMBDA: ready = m_wait_lambda->eval(); break; default: ready = true; break; } return ready;}voidsc_cthread_cor_fn( void* arg ){ sc_cthread_handle cthread_h = RCAST<sc_cthread_handle>( arg ); while( true ) { try { cthread_h->execute(); } catch( sc_user ) { assert( cthread_h->m_watch_level == 0 ); continue; } catch( sc_halt ) { cout << "Terminating process " << cthread_h->name() << endl; } catch( const sc_exception& ex ) { cout << "\n" << ex.what() << endl; cthread_h->simcontext()->set_error(); } break; } // if control reaches this point, then the process has gone to heaven cthread_h->remove_static_events(); cthread_h->entry_fn = SC_DEFUNCT_PROCESS_FUNCTION; // mark defunct // abort the current coroutine and resume the next sc_simcontext* simc = cthread_h->simcontext(); simc->cor_pkg()->abort( simc->next_cor() );}boolsc_cthread_process::eval_watchlist(){ int wlevel = __watch_level(); for( int i = 0; i <= wlevel; ++ i ) { sc_plist<sc_lambda_ptr*>& li = *(m_watchlists[i]); sc_plist<sc_lambda_ptr*>::iterator wit( li ); while( ! wit.empty() ) { if( (**wit)->eval() ) { m_exception_level = i; if( i == 0 ) /* never remove global watching */ i = 1; for( ; i <= wlevel; ++ i ) { sc_plist<sc_lambda_ptr*>& l = *(m_watchlists[i]); sc_plist<sc_lambda_ptr*>::iterator it( l ); while( ! it.empty() ) { delete *it; it.remove(); } } return true; } wit ++; } } m_exception_level = -1; return false;}boolsc_cthread_process::eval_watchlist_curr_level(){ int wlevel = m_watch_level; assert( wlevel > 0 ); sc_plist<sc_lambda_ptr*>& li = *m_watchlists[wlevel]; sc_plist<sc_lambda_ptr*>::iterator wit( li ); while( ! wit.empty() ) { if( (**wit)->eval() ) { m_exception_level = wlevel; wit.reset( li ); while( ! wit.empty() ) { delete *wit; wit.remove(); } return true; } wit ++; } m_exception_level = -1; return false;}// Taf!
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?