summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp')
-rw-r--r--src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp104
1 files changed, 104 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp b/src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp
new file mode 100644
index 000000000..fe82205e0
--- /dev/null
+++ b/src/systemc/tests/systemc/kernel/sc_object_manager/test01/test01.cpp
@@ -0,0 +1,104 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ test01.cpp --
+
+ Original Author: Andy Goodrich, Forte Design Systems
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+#include "systemc.h"
+
+void dump_signals(const char* module_name)
+{
+ sc_simcontext* c_p = sc_get_curr_simcontext();
+ unsigned int mod_name_len = strlen(module_name);
+ sc_object* obj_p;
+ const char* obj_name_p;
+
+
+ for (obj_p = c_p->first_object(); obj_p; obj_p=c_p->next_object())
+ {
+ obj_name_p = obj_p->name();
+ if ( strlen(obj_name_p) > mod_name_len &&
+ !strncmp(obj_p->name(),module_name, mod_name_len) &&
+ !strcmp(obj_p->kind(),"sc_signal") )
+ {
+ cout << " " << obj_p->name() << ": " << obj_p->kind() << endl;
+ }
+ }
+ cout << endl;
+}
+
+SC_MODULE(A)
+{
+ SC_CTOR(A) : a("a"), b("b"), c("c")
+ {
+ }
+ sc_signal<int> a, b, c;
+ sc_in_clk m_clk;
+ sc_signal<int> x, y, z;
+};
+
+
+SC_MODULE(TB)
+{
+ SC_CTOR(TB)
+ {
+ SC_METHOD(sync);
+ sensitive << m_clk.pos();
+ dont_initialize();
+ }
+ void sync()
+ {
+ cout << "Internal: " << endl;
+ dump_signals("a");
+ }
+ sc_in_clk m_clk;
+};
+
+int sc_main(int argc, char* argv[])
+{
+ sc_clock clock;
+ sc_signal<int> dummy;
+ A module_a("a");
+ TB tb("tb");
+ module_a.m_clk(clock);
+ tb.m_clk(clock);
+
+ cout << "External: " << endl;
+ dump_signals(module_a.name());
+ sc_start(1, SC_NS);
+
+
+ cerr << "Program completed" << endl;
+ return 0;
+}