/***************************************************************************** Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Accellera licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *****************************************************************************/ // child_proc_control.cpp -- test for // // Original Author: John Aynsley, Doulos Inc. // // MODIFICATION LOG - modifiers, enter your name, affiliation, date and // // $Log: child_proc_control.cpp,v $ // Revision 1.2 2011/05/08 19:18:46 acg // Andy Goodrich: remove extraneous + prefixes from git diff. // // Process control methods applied to child processes #define SC_INCLUDE_DYNAMIC_PROCESSES #include using namespace sc_core; using std::cout; using std::endl; struct Top: sc_module { Top(sc_module_name _name) : count(0) , n(155) , proc_count(0) { SC_THREAD(ctrl); SC_THREAD(observer); f0 = f1 = 0; given_birth = new bool[n]; c0 = new int[n]; c1 = new int[n]; c2 = new int[n]; c3 = new int[n]; c4 = new int[n]; c5 = new int[n]; for (int i = 0; i < n; i++) { given_birth[i] = false; c0[i] = c1[i] = c2[i] = c3[i] = c4[i] = c5[i] = 0; } } int count; int f0, f1; const int n; int proc_count; bool *given_birth; int *c0, *c1, *c2, *c3 ,*c4, *c5; sc_event ev; sc_process_handle ph; sc_event_and_list reset_event_list; sc_event_and_list terminated_event_list; void ctrl() { count = 1; ph = sc_spawn(sc_bind(&Top::parent_proc, this)); wait(10, SC_NS); count = 2; ph.reset(SC_INCLUDE_DESCENDANTS); wait(10, SC_NS); count = 3; ev.notify(); wait(10, SC_NS); count = 4; ph.suspend(SC_INCLUDE_DESCENDANTS); wait(10, SC_NS); count = 5; ev.notify(); wait(10, SC_NS); count = 6; ph.resume(SC_INCLUDE_DESCENDANTS); wait(10, SC_NS); count = 7; ph.kill(SC_INCLUDE_DESCENDANTS); wait(10, SC_NS); } void observer() { wait(SC_ZERO_TIME); wait(reset_event_list); sc_assert(sc_time_stamp() == sc_time(10, SC_NS)); f0 = 1; wait(terminated_event_list); sc_assert(sc_time_stamp() == sc_time(60, SC_NS)); f1 = 1; } void parent_proc() { sc_process_handle h; int level = 2; for (int i = 0; i < 5; i++) { if (proc_count < n) { h = sc_spawn(sc_bind(&Top::child_proc, this, proc_count++, level)); reset_event_list &= h.reset_event(); terminated_event_list &= h.terminated_event(); } } } void child_proc(int i, int level) { //cout << "Child " << i << " called at " << sc_time_stamp() << endl; if (level > 0) if ( !given_birth[i] ) { sc_process_handle h; for (int j = 0; j < 5; j++) { if (proc_count < n) { h = sc_spawn(sc_bind(&Top::child_proc, this, proc_count++, level-1)); reset_event_list &= h.reset_event(); terminated_event_list &= h.terminated_event(); given_birth[i] = true; } } } switch(count) { case 1: sc_assert(sc_time_stamp() == sc_time( 0, SC_NS)); c0[i] = 1; break; case 2: sc_assert(sc_time_stamp() == sc_time(10, SC_NS)); c2[i] = 1; break; default: sc_assert(false); break; } while(true) { try { wait(ev); } catch (const sc_unwind_exception& e) { switch(count) { case 2: sc_assert(sc_time_stamp() == sc_time(10, SC_NS)); sc_assert( e.is_reset() ); c1[i] = 1; break; case 7: sc_assert(sc_time_stamp() == sc_time(60, SC_NS)); sc_assert( !e.is_reset() ); c5[i] = 1; break; default: sc_assert(false); break; } sc_assert( sc_is_unwinding() ); throw e; } switch(count) { case 3: sc_assert(sc_time_stamp() == sc_time(20, SC_NS)); c3[i] = 1; break; case 6: sc_assert(sc_time_stamp() == sc_time(50, SC_NS)); c4[i] = 1; break; default: sc_assert(false); break; } } } SC_HAS_PROCESS(Top); }; int sc_main(int argc, char* argv[]) { Top top("top"); sc_start(); sc_assert( top.proc_count == top.n ); sc_assert( top.f0 ); sc_assert( top.f1 ); for (int i = 0; i < top.n; i++) { sc_assert( top.c0[i] ); sc_assert( top.c1[i] ); sc_assert( top.c2[i] ); sc_assert( top.c3[i] ); sc_assert( top.c4[i] ); sc_assert( top.c5[i] ); } cout << endl << "Success" << endl; return 0; }